Skip to content

Instantly share code, notes, and snippets.

@mejedi
Created January 15, 2024 12:52
Show Gist options
  • Save mejedi/17016554c3b932f9e36e44f4e6e70f0f to your computer and use it in GitHub Desktop.
Save mejedi/17016554c3b932f9e36e44f4e6e70f0f to your computer and use it in GitHub Desktop.
/home/nickz/flamegraph.git/flamegraph -- ./mapgauge.test -test.run=^$ -test.bench=. -test.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="726" onload="init(evt)" viewBox="0 0 1200 726" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="726.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >/home/nickz/flamegraph.git/flamegraph -- ./mapgauge.test -test.run=^$ -test.bench=. -test.v ./pkg/ebpf/mapgauge/</text>
<text id="details" x="10.00" y="709" > </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="709" > </text>
<g id="frames">
<g >
<title>send_signal_locked (5,584,655 samples, 0.02%)</title><rect x="298.4" y="405" width="0.3" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="301.44" y="415.5" ></text>
</g>
<g >
<title>prepare_task_switch (224,457,937 samples, 0.76%)</title><rect x="211.0" y="405" width="9.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="214.01" y="415.5" ></text>
</g>
<g >
<title>do_wp_page (13,185,082 samples, 0.04%)</title><rect x="599.1" y="197" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="602.10" y="207.5" ></text>
</g>
<g >
<title>runtime.mallocgc (13,107,597 samples, 0.04%)</title><rect x="596.5" y="309" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="599.46" y="319.5" ></text>
</g>
<g >
<title>__unfreeze_partials (6,602,674 samples, 0.02%)</title><rect x="162.2" y="213" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="165.21" y="223.5" ></text>
</g>
<g >
<title>do_user_addr_fault (10,655,677 samples, 0.04%)</title><rect x="572.1" y="453" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="575.13" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (11,638,138 samples, 0.04%)</title><rect x="602.1" y="229" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="605.07" y="239.5" ></text>
</g>
<g >
<title>get_page_from_freelist (191,362,206 samples, 0.65%)</title><rect x="765.8" y="149" width="7.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="768.80" y="159.5" ></text>
</g>
<g >
<title>__sys_bpf (5,645,170,667 samples, 19.07%)</title><rect x="712.1" y="357" width="225.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="715.11" y="367.5" >__sys_bpf</text>
</g>
<g >
<title>__handle_mm_fault (3,078,206 samples, 0.01%)</title><rect x="609.8" y="245" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="612.85" y="255.5" ></text>
</g>
<g >
<title>runtime.greyobject (15,826,456 samples, 0.05%)</title><rect x="584.1" y="389" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="587.10" y="399.5" ></text>
</g>
<g >
<title>post_alloc_hook (3,832,938 samples, 0.01%)</title><rect x="871.8" y="149" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="874.77" y="159.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (15,825,993 samples, 0.05%)</title><rect x="249.0" y="357" width="0.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="252.00" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign (887,309,577 samples, 3.00%)</title><rect x="594.6" y="501" width="35.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="597.58" y="511.5" >gi..</text>
</g>
<g >
<title>syscall.Syscall (13,145,474 samples, 0.04%)</title><rect x="16.3" y="613" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="19.28" y="623.5" ></text>
</g>
<g >
<title>do_nanosleep (21,055,380 samples, 0.07%)</title><rect x="17.5" y="485" width="0.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="20.51" y="495.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,141,385 samples, 0.03%)</title><rect x="270.8" y="405" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="273.81" y="415.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (8,345,351 samples, 0.03%)</title><rect x="732.4" y="325" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="735.43" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (3,119,132 samples, 0.01%)</title><rect x="774.2" y="85" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="777.22" y="95.5" ></text>
</g>
<g >
<title>rcu_core_si (2,999,957 samples, 0.01%)</title><rect x="60.5" y="357" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="63.51" y="367.5" ></text>
</g>
<g >
<title>rcu_core_si (10,437,139 samples, 0.04%)</title><rect x="247.3" y="293" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="250.27" y="303.5" ></text>
</g>
<g >
<title>runtime.mallocgc (8,503,631 samples, 0.03%)</title><rect x="608.4" y="293" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="611.37" y="303.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (16,788,205 samples, 0.06%)</title><rect x="283.9" y="469" width="0.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="286.87" y="479.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (9,898,738 samples, 0.03%)</title><rect x="580.5" y="533" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="583.53" y="543.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,570,994 samples, 0.02%)</title><rect x="228.2" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="231.20" y="431.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (2,951,878 samples, 0.01%)</title><rect x="514.1" y="405" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="517.06" y="415.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (7,071,251 samples, 0.02%)</title><rect x="90.6" y="405" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="93.64" y="415.5" ></text>
</g>
<g >
<title>memchr_inv (34,284,892 samples, 0.12%)</title><rect x="933.2" y="341" width="1.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="936.24" y="351.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (30,122,583 samples, 0.10%)</title><rect x="622.2" y="277" width="1.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="625.19" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (76,932,530 samples, 0.26%)</title><rect x="644.1" y="453" width="3.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="647.13" y="463.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createMapGaugeEbpf (888,833,924 samples, 3.00%)</title><rect x="594.5" y="533" width="35.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="597.52" y="543.5" >git..</text>
</g>
<g >
<title>free_slab (4,144,919 samples, 0.01%)</title><rect x="160.6" y="181" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="163.60" y="191.5" ></text>
</g>
<g >
<title>handle_pte_fault (22,283,752 samples, 0.08%)</title><rect x="631.0" y="453" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="633.96" y="463.5" ></text>
</g>
<g >
<title>security_file_free (28,367,147 samples, 0.10%)</title><rect x="284.7" y="469" width="1.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="287.71" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.LoadKernelSpec (521,613,541 samples, 1.76%)</title><rect x="608.9" y="405" width="20.8" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="611.89" y="415.5" ></text>
</g>
<g >
<title>mod_objcg_state (28,240,735 samples, 0.10%)</title><rect x="812.8" y="213" width="1.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="815.83" y="223.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,951,876 samples, 0.01%)</title><rect x="61.9" y="325" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="64.89" y="335.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (70,409,649 samples, 0.24%)</title><rect x="12.7" y="485" width="2.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="15.75" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_futex (4,127,728 samples, 0.01%)</title><rect x="11.6" y="437" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="14.57" y="447.5" ></text>
</g>
<g >
<title>runtime.growslice (17,753,443 samples, 0.06%)</title><rect x="596.3" y="325" width="0.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="599.34" y="335.5" ></text>
</g>
<g >
<title>__kmalloc_large_node (5,454,337 samples, 0.02%)</title><rect x="848.9" y="213" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="851.85" y="223.5" ></text>
</g>
<g >
<title>rcu_core_si (2,986,287 samples, 0.01%)</title><rect x="231.4" y="325" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="234.37" y="335.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (25,552,770 samples, 0.09%)</title><rect x="136.1" y="261" width="1.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="139.11" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (14,732,795 samples, 0.05%)</title><rect x="626.3" y="325" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="629.34" y="335.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (3,044,147 samples, 0.01%)</title><rect x="759.4" y="213" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="762.40" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (2,874,046 samples, 0.01%)</title><rect x="633.0" y="517" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="636.01" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,230,948 samples, 0.02%)</title><rect x="296.1" y="501" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="299.11" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (7,747,808 samples, 0.03%)</title><rect x="611.6" y="309" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="614.58" y="319.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (16,929,208 samples, 0.06%)</title><rect x="530.2" y="485" width="0.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="533.17" y="495.5" ></text>
</g>
<g >
<title>pick_next_entity (5,880,420 samples, 0.02%)</title><rect x="190.7" y="389" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="193.66" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,712,595,003 samples, 22.68%)</title><rect x="19.2" y="629" width="267.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="22.20" y="639.5" >do_syscall_64</text>
</g>
<g >
<title>cpuacct_charge (6,257,650 samples, 0.02%)</title><rect x="196.6" y="357" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="199.64" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,017,095 samples, 0.01%)</title><rect x="347.9" y="549" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="350.91" y="559.5" ></text>
</g>
<g >
<title>error_entry (4,615,234 samples, 0.02%)</title><rect x="10.4" y="581" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.41" y="591.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (22,252,214 samples, 0.08%)</title><rect x="779.3" y="213" width="0.9" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="782.31" y="223.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,653,720 samples, 0.01%)</title><rect x="579.1" y="485" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="582.05" y="495.5" ></text>
</g>
<g >
<title>__cond_resched (3,131,180 samples, 0.01%)</title><rect x="21.3" y="485" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="24.32" y="495.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (18,004,850 samples, 0.06%)</title><rect x="872.8" y="165" width="0.7" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="875.76" y="175.5" ></text>
</g>
<g >
<title>fput (23,476,988 samples, 0.08%)</title><rect x="35.4" y="469" width="0.9" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="38.37" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadKernelSpec (358,961,668 samples, 1.21%)</title><rect x="594.6" y="373" width="14.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="597.58" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (13,665,498 samples, 0.05%)</title><rect x="1180.5" y="373" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1183.55" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (782,339,645 samples, 2.64%)</title><rect x="540.5" y="405" width="31.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="543.53" y="415.5" >en..</text>
</g>
<g >
<title>file_free_rcu (7,690,393 samples, 0.03%)</title><rect x="243.5" y="261" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="246.48" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_lock (26,763,754 samples, 0.09%)</title><rect x="833.6" y="261" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="836.61" y="271.5" ></text>
</g>
<g >
<title>runtime.getpid.abi0 (5,212,992 samples, 0.02%)</title><rect x="297.5" y="517" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="300.45" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (2,778,518 samples, 0.01%)</title><rect x="1171.9" y="469" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1174.88" y="479.5" ></text>
</g>
<g >
<title>runtime.GC (38,640,322 samples, 0.13%)</title><rect x="520.3" y="581" width="1.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="523.33" y="591.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (298,273,429 samples, 1.01%)</title><rect x="178.6" y="405" width="11.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="181.57" y="415.5" ></text>
</g>
<g >
<title>cpuacct_charge (24,763,207 samples, 0.08%)</title><rect x="198.9" y="341" width="1.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="201.92" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (22,298,035 samples, 0.08%)</title><rect x="17.5" y="517" width="0.9" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="20.46" y="527.5" ></text>
</g>
<g >
<title>__handle_mm_fault (12,151,303 samples, 0.04%)</title><rect x="1180.6" y="341" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1183.61" y="351.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (58,645,573 samples, 0.20%)</title><rect x="560.4" y="245" width="2.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="563.45" y="255.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (4,494,970 samples, 0.02%)</title><rect x="13.2" y="437" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="16.17" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (47,972,520 samples, 0.16%)</title><rect x="87.4" y="421" width="1.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="90.39" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (53,500,989 samples, 0.18%)</title><rect x="719.4" y="341" width="2.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="722.42" y="351.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (8,545,455 samples, 0.03%)</title><rect x="537.8" y="469" width="0.4" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="540.83" y="479.5" ></text>
</g>
<g >
<title>rcu_core_si (5,116,259 samples, 0.02%)</title><rect x="20.6" y="405" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="23.60" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (5,329,323 samples, 0.02%)</title><rect x="1180.9" y="229" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1183.88" y="239.5" ></text>
</g>
<g >
<title>__do_softirq (5,235,890 samples, 0.02%)</title><rect x="286.2" y="405" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="289.20" y="415.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (10,558,545 samples, 0.04%)</title><rect x="186.3" y="325" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="189.27" y="335.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (8,713,399 samples, 0.03%)</title><rect x="145.5" y="325" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="148.54" y="335.5" ></text>
</g>
<g >
<title>do_send_specific (12,400,185 samples, 0.04%)</title><rect x="298.2" y="437" width="0.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="301.25" y="447.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,099,882 samples, 0.01%)</title><rect x="604.2" y="181" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="607.20" y="191.5" ></text>
</g>
<g >
<title>runtime.sysAlloc (10,766,126 samples, 0.04%)</title><rect x="1011.4" y="309" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1014.40" y="319.5" ></text>
</g>
<g >
<title>discard_slab (5,702,543 samples, 0.02%)</title><rect x="188.3" y="181" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="191.25" y="191.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (15,429,674 samples, 0.05%)</title><rect x="595.7" y="325" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="598.72" y="335.5" ></text>
</g>
<g >
<title>__free_slab (3,594,880 samples, 0.01%)</title><rect x="160.6" y="165" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="163.60" y="175.5" ></text>
</g>
<g >
<title>runtime.retake (4,756,663 samples, 0.02%)</title><rect x="17.1" y="565" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="20.14" y="575.5" ></text>
</g>
<g >
<title>runtime.persistentalloc1 (13,855,892 samples, 0.05%)</title><rect x="1011.3" y="325" width="0.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1014.28" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (9,142,924 samples, 0.03%)</title><rect x="834.7" y="261" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="837.68" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (18,641,504 samples, 0.06%)</title><rect x="618.8" y="261" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="621.85" y="271.5" ></text>
</g>
<g >
<title>array_map_alloc_check (18,151,243 samples, 0.06%)</title><rect x="903.2" y="325" width="0.7" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="906.21" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (8,537,236 samples, 0.03%)</title><rect x="602.2" y="165" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="605.19" y="175.5" ></text>
</g>
<g >
<title>__handle_mm_fault (12,406,856 samples, 0.04%)</title><rect x="602.0" y="245" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="605.04" y="255.5" ></text>
</g>
<g >
<title>handle_pte_fault (71,899,260 samples, 0.24%)</title><rect x="1007.0" y="293" width="2.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1010.02" y="303.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (946,046,346 samples, 3.20%)</title><rect x="854.8" y="261" width="37.7" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="857.81" y="271.5" >__k..</text>
</g>
<g >
<title>__bpf_map_inc_not_zero (155,692,183 samples, 0.53%)</title><rect x="468.4" y="261" width="6.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="471.37" y="271.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (10,916,668 samples, 0.04%)</title><rect x="593.3" y="469" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="596.26" y="479.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3,640,878 samples, 0.01%)</title><rect x="14.5" y="405" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="17.52" y="415.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (32,759,914 samples, 0.11%)</title><rect x="744.3" y="229" width="1.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="747.29" y="239.5" ></text>
</g>
<g >
<title>runtime.deferreturn (3,111,814 samples, 0.01%)</title><rect x="1176.5" y="517" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1179.50" y="527.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (3,112,686 samples, 0.01%)</title><rect x="483.2" y="277" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="486.19" y="287.5" ></text>
</g>
<g >
<title>new_slab (5,421,979 samples, 0.02%)</title><rect x="805.7" y="117" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="808.72" y="127.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (4,668,475 samples, 0.02%)</title><rect x="562.8" y="261" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="565.79" y="271.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (86,950,868 samples, 0.29%)</title><rect x="110.3" y="309" width="3.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="113.32" y="319.5" ></text>
</g>
<g >
<title>btf_put (9,949,450 samples, 0.03%)</title><rect x="165.7" y="437" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="168.72" y="447.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (8,245,005 samples, 0.03%)</title><rect x="152.3" y="373" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="155.35" y="383.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (4,649,433 samples, 0.02%)</title><rect x="742.3" y="245" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="745.30" y="255.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (5,391,961 samples, 0.02%)</title><rect x="580.3" y="517" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="583.31" y="527.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (11,171,476 samples, 0.04%)</title><rect x="243.4" y="341" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="246.41" y="351.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,120,780 samples, 0.01%)</title><rect x="631.7" y="405" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="634.72" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.walkType (10,872,176 samples, 0.04%)</title><rect x="613.3" y="341" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="616.31" y="351.5" ></text>
</g>
<g >
<title>runtime.memmove (10,084,715 samples, 0.03%)</title><rect x="612.7" y="325" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="615.66" y="335.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (784,664,254 samples, 2.65%)</title><rect x="540.5" y="469" width="31.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="543.50" y="479.5" >in..</text>
</g>
<g >
<title>asm_exc_page_fault (5,441,088 samples, 0.02%)</title><rect x="610.2" y="325" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="613.25" y="335.5" ></text>
</g>
<g >
<title>rcu_core (2,877,797 samples, 0.01%)</title><rect x="274.3" y="341" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="277.32" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (8,469,821 samples, 0.03%)</title><rect x="1175.4" y="485" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1178.36" y="495.5" ></text>
</g>
<g >
<title>runtime.gcMarkDone (3,661,237 samples, 0.01%)</title><rect x="286.9" y="613" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="289.92" y="623.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,137,832 samples, 0.01%)</title><rect x="286.6" y="357" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="289.64" y="367.5" ></text>
</g>
<g >
<title>__mod_memcg_state (3,078,357 samples, 0.01%)</title><rect x="786.7" y="181" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="789.75" y="191.5" ></text>
</g>
<g >
<title>sync_regs (2,916,476 samples, 0.01%)</title><rect x="1164.9" y="373" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1167.92" y="383.5" ></text>
</g>
<g >
<title>kmem_cache_free (5,474,701 samples, 0.02%)</title><rect x="240.2" y="229" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="243.19" y="239.5" ></text>
</g>
<g >
<title>runtime.unlock2 (23,633,170 samples, 0.08%)</title><rect x="1164.0" y="373" width="0.9" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1166.98" y="383.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (11,936,241 samples, 0.04%)</title><rect x="10.6" y="581" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.60" y="591.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (78,615,596 samples, 0.27%)</title><rect x="653.4" y="421" width="3.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="656.40" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,433,695 samples, 0.02%)</title><rect x="619.3" y="133" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="622.31" y="143.5" ></text>
</g>
<g >
<title>reflect.Value.Field (41,608,435 samples, 0.14%)</title><rect x="532.6" y="501" width="1.7" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="535.63" y="511.5" ></text>
</g>
<g >
<title>array_map_free_timers (4,645,730 samples, 0.02%)</title><rect x="165.5" y="421" width="0.2" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="168.52" y="431.5" ></text>
</g>
<g >
<title>do_check (3,708,366 samples, 0.01%)</title><rect x="629.8" y="229" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="632.78" y="239.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (277,838,763 samples, 0.94%)</title><rect x="543.9" y="293" width="11.0" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="546.86" y="303.5" ></text>
</g>
<g >
<title>rcu_core (8,141,385 samples, 0.03%)</title><rect x="270.8" y="341" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="273.81" y="351.5" ></text>
</g>
<g >
<title>runtime.findObject (29,590,216 samples, 0.10%)</title><rect x="1181.5" y="437" width="1.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1184.48" y="447.5" ></text>
</g>
<g >
<title>memcpy_orig (20,802,504 samples, 0.07%)</title><rect x="831.0" y="261" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="834.02" y="271.5" ></text>
</g>
<g >
<title>__schedule (1,326,015,333 samples, 4.48%)</title><rect x="175.3" y="421" width="52.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="178.33" y="431.5" >__sch..</text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (24,893,011 samples, 0.08%)</title><rect x="136.1" y="245" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="139.14" y="255.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (129,696,391 samples, 0.44%)</title><rect x="11.1" y="613" width="5.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="14.11" y="623.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (124,312,523 samples, 0.42%)</title><rect x="1177.8" y="501" width="4.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1180.77" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func1 (4,654,198 samples, 0.02%)</title><rect x="642.4" y="469" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="645.35" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,105,055 samples, 0.01%)</title><rect x="1183.2" y="501" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1186.19" y="511.5" ></text>
</g>
<g >
<title>runtime.gopreempt_m (3,861,404 samples, 0.01%)</title><rect x="1189.7" y="613" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1192.68" y="623.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (5,429,725 samples, 0.02%)</title><rect x="605.9" y="101" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="608.90" y="111.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (76,455,176 samples, 0.26%)</title><rect x="1185.2" y="517" width="3.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1188.18" y="527.5" ></text>
</g>
<g >
<title>wake_up_process (5,446,596 samples, 0.02%)</title><rect x="164.4" y="405" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="167.38" y="415.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (26,265,470 samples, 0.09%)</title><rect x="506.6" y="421" width="1.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="509.57" y="431.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (166,346,503 samples, 0.56%)</title><rect x="425.7" y="469" width="6.7" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="428.74" y="479.5" ></text>
</g>
<g >
<title>memset_orig (6,978,175 samples, 0.02%)</title><rect x="932.1" y="325" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="935.10" y="335.5" ></text>
</g>
<g >
<title>runtime.newobject (6,218,278 samples, 0.02%)</title><rect x="612.0" y="325" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="614.95" y="335.5" ></text>
</g>
<g >
<title>memcg_account_kmem (5,372,161 samples, 0.02%)</title><rect x="786.7" y="213" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="789.66" y="223.5" ></text>
</g>
<g >
<title>memcg_account_kmem (10,818,032 samples, 0.04%)</title><rect x="891.4" y="229" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="894.40" y="239.5" ></text>
</g>
<g >
<title>__do_softirq (5,157,466 samples, 0.02%)</title><rect x="73.3" y="373" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="76.28" y="383.5" ></text>
</g>
<g >
<title>dequeue_entity (12,665,090 samples, 0.04%)</title><rect x="13.6" y="389" width="0.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="16.59" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (9,067,912 samples, 0.03%)</title><rect x="1169.0" y="357" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1172.01" y="367.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (37,321,626 samples, 0.13%)</title><rect x="585.2" y="533" width="1.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="588.21" y="543.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (2,997,146 samples, 0.01%)</title><rect x="1010.8" y="357" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1013.76" y="367.5" ></text>
</g>
<g >
<title>__mutex_init (14,909,068 samples, 0.05%)</title><rect x="716.9" y="341" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="719.92" y="351.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (3,031,925 samples, 0.01%)</title><rect x="527.1" y="501" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="530.08" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_lock (35,369,704 samples, 0.12%)</title><rect x="260.6" y="437" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="263.60" y="447.5" ></text>
</g>
<g >
<title>rcu_core_si (168,951,401 samples, 0.57%)</title><rect x="157.6" y="325" width="6.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="160.59" y="335.5" ></text>
</g>
<g >
<title>allocate_slab (273,130,815 samples, 0.92%)</title><rect x="765.3" y="197" width="10.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="768.25" y="207.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (34,887,999 samples, 0.12%)</title><rect x="652.0" y="437" width="1.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="654.97" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (3,868,260 samples, 0.01%)</title><rect x="873.2" y="69" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="876.22" y="79.5" ></text>
</g>
<g >
<title>rcu_core_si (3,585,079 samples, 0.01%)</title><rect x="61.9" y="357" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="64.86" y="367.5" ></text>
</g>
<g >
<title>sync_regs (6,940,998 samples, 0.02%)</title><rect x="594.2" y="517" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="597.24" y="527.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (28,780,269 samples, 0.10%)</title><rect x="147.6" y="277" width="1.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="150.61" y="287.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (24,111,347 samples, 0.08%)</title><rect x="298.0" y="517" width="1.0" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="301.01" y="527.5" ></text>
</g>
<g >
<title>runtime.sigtramp.abi0 (9,067,781 samples, 0.03%)</title><rect x="1188.8" y="533" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1191.80" y="543.5" ></text>
</g>
<g >
<title>rcu_core (6,200,046 samples, 0.02%)</title><rect x="169.7" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="172.66" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (16,062,159 samples, 0.05%)</title><rect x="230.8" y="421" width="0.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="233.85" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (13,620,126,404 samples, 46.02%)</title><rect x="633.1" y="517" width="543.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="636.12" y="527.5" >github.com/cilium/ebpf.newMapWithOptions</text>
</g>
<g >
<title>slab_update_freelist.isra.0 (49,055,370 samples, 0.17%)</title><rect x="278.5" y="405" width="1.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="281.49" y="415.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,188,892 samples, 0.02%)</title><rect x="611.6" y="213" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="614.64" y="223.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (8,598,567 samples, 0.03%)</title><rect x="506.1" y="373" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="509.10" y="383.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (1,130,222,059 samples, 3.82%)</title><rect x="852.6" y="309" width="45.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="855.62" y="319.5" >bpf_..</text>
</g>
<g >
<title>vma_alloc_folio (14,268,363 samples, 0.05%)</title><rect x="659.9" y="325" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="662.91" y="335.5" ></text>
</g>
<g >
<title>new_slab (5,307,648 samples, 0.02%)</title><rect x="873.2" y="133" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="876.22" y="143.5" ></text>
</g>
<g >
<title>__schedule (5,281,897 samples, 0.02%)</title><rect x="296.1" y="437" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="299.11" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (6,730,721 samples, 0.02%)</title><rect x="1169.5" y="325" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1172.53" y="335.5" ></text>
</g>
<g >
<title>rcu_core (2,864,947 samples, 0.01%)</title><rect x="278.1" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="281.07" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,017,638 samples, 0.01%)</title><rect x="400.1" y="453" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="403.09" y="463.5" ></text>
</g>
<g >
<title>free_slab (6,602,674 samples, 0.02%)</title><rect x="162.2" y="181" width="0.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="165.21" y="191.5" ></text>
</g>
<g >
<title>runtime.efaceeq (4,506,310 samples, 0.02%)</title><rect x="430.4" y="453" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="433.37" y="463.5" ></text>
</g>
<g >
<title>runtime.makeslice (7,757,561 samples, 0.03%)</title><rect x="604.9" y="293" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="607.94" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (142,994,906 samples, 0.48%)</title><rect x="383.9" y="549" width="5.7" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="386.86" y="559.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (78,485,019 samples, 0.27%)</title><rect x="644.1" y="469" width="3.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="647.10" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (27,334,731 samples, 0.09%)</title><rect x="89.3" y="421" width="1.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="92.30" y="431.5" ></text>
</g>
<g >
<title>cpuset_node_allowed (3,093,550 samples, 0.01%)</title><rect x="799.5" y="197" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="802.52" y="207.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (16,744,327,946 samples, 56.58%)</title><rect x="521.9" y="597" width="667.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="524.87" y="607.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries</text>
</g>
<g >
<title>irq_exit_rcu (12,067,096 samples, 0.04%)</title><rect x="240.0" y="341" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="243.05" y="351.5" ></text>
</g>
<g >
<title>memcpy_orig (9,317,904 samples, 0.03%)</title><rect x="569.3" y="245" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="572.30" y="255.5" ></text>
</g>
<g >
<title>rcu_core_si (5,797,074 samples, 0.02%)</title><rect x="67.0" y="357" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="70.00" y="367.5" ></text>
</g>
<g >
<title>memset_orig (49,711,231 samples, 0.17%)</title><rect x="894.7" y="261" width="2.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="897.69" y="271.5" ></text>
</g>
<g >
<title>handle_pte_fault (13,181,418 samples, 0.04%)</title><rect x="626.4" y="245" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="629.37" y="255.5" ></text>
</g>
<g >
<title>put_cpu_partial (7,638,233 samples, 0.03%)</title><rect x="278.2" y="405" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="281.19" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (78,748,606 samples, 0.27%)</title><rect x="1006.9" y="325" width="3.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1009.90" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (13,180,411 samples, 0.04%)</title><rect x="602.0" y="277" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="605.04" y="287.5" ></text>
</g>
<g >
<title>runtime.mallocgc (8,613,121 samples, 0.03%)</title><rect x="1182.7" y="517" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1185.72" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (43,724,418 samples, 0.15%)</title><rect x="1008.0" y="213" width="1.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1011.02" y="223.5" ></text>
</g>
<g >
<title>sched_clock_cpu (34,855,910 samples, 0.12%)</title><rect x="135.8" y="309" width="1.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="138.83" y="319.5" ></text>
</g>
<g >
<title>syscall.pread (9,305,150 samples, 0.03%)</title><rect x="605.9" y="229" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="608.87" y="239.5" ></text>
</g>
<g >
<title>do_madvise (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="181" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1172.56" y="191.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (22,236,679 samples, 0.08%)</title><rect x="83.0" y="421" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="86.03" y="431.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (4,928,021 samples, 0.02%)</title><rect x="400.1" y="469" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="403.09" y="479.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (180,871,990 samples, 0.61%)</title><rect x="882.2" y="245" width="7.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="885.21" y="255.5" ></text>
</g>
<g >
<title>__alloc_pages (3,874,810 samples, 0.01%)</title><rect x="805.7" y="85" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="808.72" y="95.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,225,622 samples, 0.03%)</title><rect x="162.2" y="261" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="165.16" y="271.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (4,596,117 samples, 0.02%)</title><rect x="813.8" y="197" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="816.77" y="207.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (207,881,841 samples, 0.70%)</title><rect x="391.6" y="581" width="8.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="394.60" y="591.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (7,513,773 samples, 0.03%)</title><rect x="507.9" y="389" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="510.89" y="399.5" ></text>
</g>
<g >
<title>bpf_map_put (16,867,590 samples, 0.06%)</title><rect x="542.9" y="309" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="545.88" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4,160,750 samples, 0.01%)</title><rect x="157.4" y="373" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="160.42" y="383.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (78,615,596 samples, 0.27%)</title><rect x="653.4" y="437" width="3.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="656.40" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (20,676,013 samples, 0.07%)</title><rect x="652.1" y="357" width="0.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="655.10" y="367.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (3,859,292 samples, 0.01%)</title><rect x="1007.5" y="229" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1010.51" y="239.5" ></text>
</g>
<g >
<title>idr_get_next (144,485,269 samples, 0.49%)</title><rect x="475.5" y="261" width="5.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="478.53" y="271.5" ></text>
</g>
<g >
<title>free_slab (4,589,546 samples, 0.02%)</title><rect x="188.3" y="165" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="191.30" y="175.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (6,015,474 samples, 0.02%)</title><rect x="904.4" y="325" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="907.36" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,117,702 samples, 0.01%)</title><rect x="821.9" y="197" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="824.86" y="207.5" ></text>
</g>
<g >
<title>__folio_alloc (3,120,780 samples, 0.01%)</title><rect x="631.7" y="389" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="634.72" y="399.5" ></text>
</g>
<g >
<title>do_anonymous_page (11,638,138 samples, 0.04%)</title><rect x="602.1" y="213" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="605.07" y="223.5" ></text>
</g>
<g >
<title>[[vdso]] (6,174,456 samples, 0.02%)</title><rect x="297.7" y="501" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="300.73" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,384,749 samples, 0.02%)</title><rect x="10.0" y="565" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.01" y="575.5" ></text>
</g>
<g >
<title>x64_setup_rt_frame (3,032,113 samples, 0.01%)</title><rect x="1188.1" y="389" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1191.10" y="399.5" ></text>
</g>
<g >
<title>__free_one_page (4,209,350 samples, 0.01%)</title><rect x="162.3" y="85" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="165.28" y="95.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,939,250 samples, 0.01%)</title><rect x="232.5" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="235.51" y="383.5" ></text>
</g>
<g >
<title>alloc_pages (5,445,797 samples, 0.02%)</title><rect x="849.1" y="197" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="852.07" y="207.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (3,842,968 samples, 0.01%)</title><rect x="500.1" y="485" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="503.09" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,908,673 samples, 0.01%)</title><rect x="563.6" y="293" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="566.58" y="303.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (8,457,266 samples, 0.03%)</title><rect x="1011.5" y="197" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1014.46" y="207.5" ></text>
</g>
<g >
<title>runtime.sigreturn__sigaction.abi0 (4,512,441 samples, 0.02%)</title><rect x="1188.6" y="533" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1191.62" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (3,840,714 samples, 0.01%)</title><rect x="1173.5" y="501" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1176.49" y="511.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (5,325,886 samples, 0.02%)</title><rect x="930.7" y="309" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="933.70" y="319.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,112,262 samples, 0.01%)</title><rect x="787.0" y="229" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="790.02" y="239.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (20,571,809 samples, 0.07%)</title><rect x="969.3" y="389" width="0.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="972.33" y="399.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (4,660,867 samples, 0.02%)</title><rect x="572.7" y="517" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="575.68" y="527.5" ></text>
</g>
<g >
<title>rcu_do_batch (8,374,690 samples, 0.03%)</title><rect x="280.1" y="277" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="283.11" y="287.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (7,360,058 samples, 0.02%)</title><rect x="542.5" y="309" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="545.46" y="319.5" ></text>
</g>
<g >
<title>queue_work_on (1,649,945,454 samples, 5.57%)</title><rect x="99.4" y="421" width="65.8" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="102.41" y="431.5" >queue_w..</text>
</g>
<g >
<title>lockref_put_return (61,270,372 samples, 0.21%)</title><rect x="263.8" y="437" width="2.5" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="266.82" y="447.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (51,687,962 samples, 0.17%)</title><rect x="512.0" y="485" width="2.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="515.00" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,078,206 samples, 0.01%)</title><rect x="609.8" y="261" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="612.85" y="271.5" ></text>
</g>
<g >
<title>cache_from_obj (16,784,747 samples, 0.06%)</title><rect x="280.5" y="421" width="0.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="283.54" y="431.5" ></text>
</g>
<g >
<title>update_cfs_group (4,542,411 samples, 0.02%)</title><rect x="131.0" y="309" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="134.02" y="319.5" ></text>
</g>
<g >
<title>rmqueue (12,397,195 samples, 0.04%)</title><rect x="804.9" y="133" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="807.86" y="143.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,999,957 samples, 0.01%)</title><rect x="60.5" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="63.51" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,712,595,003 samples, 22.68%)</title><rect x="19.2" y="645" width="267.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="22.20" y="655.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>rmqueue_bulk (6,923,758 samples, 0.02%)</title><rect x="872.4" y="117" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="875.38" y="127.5" ></text>
</g>
<g >
<title>vma_alloc_folio (48,817,929 samples, 0.16%)</title><rect x="1007.8" y="261" width="2.0" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1010.85" y="271.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (10,437,139 samples, 0.04%)</title><rect x="247.3" y="373" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="250.27" y="383.5" ></text>
</g>
<g >
<title>seq_write (4,670,163 samples, 0.02%)</title><rect x="569.7" y="245" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="572.67" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (11,901,037 samples, 0.04%)</title><rect x="116.1" y="357" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="119.15" y="367.5" ></text>
</g>
<g >
<title>clear_page_erms (6,984,357 samples, 0.02%)</title><rect x="602.2" y="133" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="605.22" y="143.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,864,167 samples, 0.01%)</title><rect x="629.1" y="293" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="632.14" y="303.5" ></text>
</g>
<g >
<title>__mod_memcg_state (3,577,254 samples, 0.01%)</title><rect x="249.2" y="309" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="252.22" y="319.5" ></text>
</g>
<g >
<title>rcu_do_batch (3,658,441 samples, 0.01%)</title><rect x="166.0" y="309" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="168.97" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10,007,243 samples, 0.03%)</title><rect x="823.5" y="197" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="826.52" y="207.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,999,957 samples, 0.01%)</title><rect x="60.5" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="63.51" y="431.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,639,172 samples, 0.01%)</title><rect x="280.3" y="261" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="283.30" y="271.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (91,352,325 samples, 0.31%)</title><rect x="581.4" y="501" width="3.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="584.45" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (11,510,462 samples, 0.04%)</title><rect x="621.5" y="357" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="624.49" y="367.5" ></text>
</g>
<g >
<title>unmap_vmas (79,212,507 samples, 0.27%)</title><rect x="36.6" y="437" width="3.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="39.56" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (9,758,418 samples, 0.03%)</title><rect x="280.1" y="373" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="283.06" y="383.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (41,983,227 samples, 0.14%)</title><rect x="37.9" y="325" width="1.6" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="40.86" y="335.5" ></text>
</g>
<g >
<title>migrate_disable (6,210,294 samples, 0.02%)</title><rect x="570.9" y="293" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="573.86" y="303.5" ></text>
</g>
<g >
<title>__handle_mm_fault (73,454,809 samples, 0.25%)</title><rect x="1007.0" y="309" width="2.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1009.99" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_lock (45,429,386 samples, 0.15%)</title><rect x="155.3" y="405" width="1.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="158.31" y="415.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (3,310,526 samples, 0.01%)</title><rect x="17.9" y="437" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="20.93" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).fixupMagicFields (3,307,189 samples, 0.01%)</title><rect x="1173.2" y="501" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1176.24" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,890,654 samples, 0.02%)</title><rect x="621.1" y="357" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="624.09" y="367.5" ></text>
</g>
<g >
<title>xas_descend (6,910,646 samples, 0.02%)</title><rect x="827.3" y="197" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="830.30" y="207.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,006,352 samples, 0.01%)</title><rect x="249.4" y="277" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="252.36" y="287.5" ></text>
</g>
<g >
<title>sched_clock_cpu (40,193,646 samples, 0.14%)</title><rect x="147.2" y="341" width="1.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="150.25" y="351.5" ></text>
</g>
<g >
<title>rcu_core_si (2,920,944 samples, 0.01%)</title><rect x="240.8" y="245" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="243.76" y="255.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (7,513,773 samples, 0.03%)</title><rect x="507.9" y="421" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="510.89" y="431.5" ></text>
</g>
<g >
<title>testing.(*B).doBench.func1 (3,042,153,603 samples, 10.28%)</title><rect x="400.6" y="629" width="121.3" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="403.58" y="639.5" >testing.(*B).do..</text>
</g>
<g >
<title>runtime.nilinterequal (13,090,603 samples, 0.04%)</title><rect x="430.5" y="453" width="0.6" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="433.55" y="463.5" ></text>
</g>
<g >
<title>__rcu_read_lock (9,189,450 samples, 0.03%)</title><rect x="776.3" y="229" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="779.26" y="239.5" ></text>
</g>
<g >
<title>bpf_map_release (16,550,899 samples, 0.06%)</title><rect x="281.4" y="469" width="0.7" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="284.43" y="479.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (54,069,103 samples, 0.18%)</title><rect x="627.4" y="357" width="2.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="630.38" y="367.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (37,846,459 samples, 0.13%)</title><rect x="659.1" y="453" width="1.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="662.11" y="463.5" ></text>
</g>
<g >
<title>update_min_vruntime (10,999,515 samples, 0.04%)</title><rect x="205.4" y="357" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="208.39" y="367.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (35,054,261 samples, 0.12%)</title><rect x="147.4" y="309" width="1.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="150.43" y="319.5" ></text>
</g>
<g >
<title>vfs_read (6,971,148 samples, 0.02%)</title><rect x="605.9" y="133" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="608.90" y="143.5" ></text>
</g>
<g >
<title>idr_preload (8,455,512 samples, 0.03%)</title><rect x="724.7" y="341" width="0.4" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="727.75" y="351.5" ></text>
</g>
<g >
<title>refill_obj_stock (4,659,963 samples, 0.02%)</title><rect x="892.2" y="245" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="895.20" y="255.5" ></text>
</g>
<g >
<title>__do_softirq (91,232,434 samples, 0.31%)</title><rect x="186.8" y="325" width="3.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="189.78" y="335.5" ></text>
</g>
<g >
<title>rcu_core_si (8,141,385 samples, 0.03%)</title><rect x="270.8" y="357" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="273.81" y="367.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (9,305,150 samples, 0.03%)</title><rect x="605.9" y="213" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="608.87" y="223.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,364,103 samples, 0.02%)</title><rect x="887.7" y="229" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="890.73" y="239.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (64,823,904 samples, 0.22%)</title><rect x="879.3" y="229" width="2.6" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="882.34" y="239.5" ></text>
</g>
<g >
<title>cache_from_obj (2,521,919 samples, 0.01%)</title><rect x="161.2" y="245" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="164.23" y="255.5" ></text>
</g>
<g >
<title>kfree (11,480,782 samples, 0.04%)</title><rect x="241.4" y="293" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="244.39" y="303.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (12,067,096 samples, 0.04%)</title><rect x="240.0" y="325" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="243.05" y="335.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (29,054,163 samples, 0.10%)</title><rect x="226.7" y="357" width="1.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="229.65" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,868,260 samples, 0.01%)</title><rect x="873.2" y="85" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="876.22" y="95.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).fixupMagicFields (4,650,713 samples, 0.02%)</title><rect x="642.5" y="485" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="645.54" y="495.5" ></text>
</g>
<g >
<title>get_any_partial (10,812,098 samples, 0.04%)</title><rect x="799.2" y="213" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="802.21" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func2 (30,982,916 samples, 0.10%)</title><rect x="604.0" y="309" width="1.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="607.02" y="319.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (8,430,578 samples, 0.03%)</title><rect x="904.0" y="325" width="0.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="907.02" y="335.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,022,072 samples, 0.01%)</title><rect x="261.8" y="309" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="264.85" y="319.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4,510,459 samples, 0.02%)</title><rect x="571.5" y="373" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="574.55" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (13,653,714,141 samples, 46.13%)</title><rect x="632.2" y="533" width="544.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="635.25" y="543.5" >github.com/cilium/ebpf.NewMapWithOptions</text>
</g>
<g >
<title>__bpf_map_area_alloc (22,952,874 samples, 0.08%)</title><rect x="851.7" y="309" width="0.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="854.71" y="319.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,882,527 samples, 0.01%)</title><rect x="607.3" y="261" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="610.29" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_lock (11,633,221 samples, 0.04%)</title><rect x="113.8" y="357" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="116.79" y="367.5" ></text>
</g>
<g >
<title>rcu_core_si (21,963,224 samples, 0.07%)</title><rect x="83.0" y="357" width="0.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="86.04" y="367.5" ></text>
</g>
<g >
<title>security_bpf (14,570,444 samples, 0.05%)</title><rect x="936.4" y="341" width="0.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="939.42" y="351.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (30,122,583 samples, 0.10%)</title><rect x="622.2" y="261" width="1.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="625.19" y="271.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (391,836,313 samples, 1.32%)</title><rect x="814.3" y="229" width="15.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="817.26" y="239.5" ></text>
</g>
<g >
<title>handle_pte_fault (54,645,990 samples, 0.18%)</title><rect x="644.5" y="389" width="2.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="647.47" y="399.5" ></text>
</g>
<g >
<title>xas_start (42,103,175 samples, 0.14%)</title><rect x="825.6" y="181" width="1.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="828.62" y="191.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (37,996,652 samples, 0.13%)</title><rect x="506.1" y="437" width="1.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="509.10" y="447.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,616,202 samples, 0.01%)</title><rect x="284.4" y="421" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="287.40" y="431.5" ></text>
</g>
<g >
<title>runtime.findObject (26,831,733 samples, 0.09%)</title><rect x="293.1" y="565" width="1.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="296.11" y="575.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (78,615,596 samples, 0.27%)</title><rect x="653.4" y="389" width="3.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="656.40" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (19,988,852 samples, 0.07%)</title><rect x="1169.5" y="405" width="0.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1172.53" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (51,687,962 samples, 0.17%)</title><rect x="512.0" y="453" width="2.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="515.00" y="463.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (8,407,223,261 samples, 28.41%)</title><rect x="664.4" y="453" width="335.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="667.42" y="463.5" >syscall.Syscall.abi0</text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (120,872,391 samples, 0.41%)</title><rect x="166.9" y="437" width="4.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="169.90" y="447.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (10,078,452 samples, 0.03%)</title><rect x="805.0" y="117" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="807.95" y="127.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4,185,388 samples, 0.01%)</title><rect x="364.6" y="501" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="367.62" y="511.5" ></text>
</g>
<g >
<title>prepare_task_switch (3,566,723 samples, 0.01%)</title><rect x="14.8" y="421" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="17.83" y="431.5" ></text>
</g>
<g >
<title>map_create (3,122,125 samples, 0.01%)</title><rect x="937.8" y="357" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="940.77" y="367.5" ></text>
</g>
<g >
<title>runtime.casgstatus (53,973,264 samples, 0.18%)</title><rect x="668.0" y="389" width="2.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="671.00" y="399.5" ></text>
</g>
<g >
<title>update_load_avg (26,740,133 samples, 0.09%)</title><rect x="209.3" y="373" width="1.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="212.30" y="383.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (7,264,696 samples, 0.02%)</title><rect x="1158.8" y="309" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1161.75" y="319.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (5,329,984 samples, 0.02%)</title><rect x="581.2" y="469" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="584.23" y="479.5" ></text>
</g>
<g >
<title>__kmalloc_node (5,454,337 samples, 0.02%)</title><rect x="848.9" y="229" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="851.85" y="239.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (11,603,331 samples, 0.04%)</title><rect x="416.9" y="469" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="419.91" y="479.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (3,207,762 samples, 0.01%)</title><rect x="247.9" y="373" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="250.85" y="383.5" ></text>
</g>
<g >
<title>allocate_slab (5,307,648 samples, 0.02%)</title><rect x="873.2" y="117" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="876.22" y="127.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (51,687,962 samples, 0.17%)</title><rect x="512.0" y="421" width="2.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="515.00" y="431.5" ></text>
</g>
<g >
<title>gcWriteBarrier (3,020,241 samples, 0.01%)</title><rect x="621.4" y="357" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="624.37" y="367.5" ></text>
</g>
<g >
<title>refill_obj_stock (4,644,713 samples, 0.02%)</title><rect x="249.7" y="389" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="252.66" y="399.5" ></text>
</g>
<g >
<title>do_anonymous_page (15,560,447 samples, 0.05%)</title><rect x="585.8" y="421" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="588.80" y="431.5" ></text>
</g>
<g >
<title>file_free_rcu (3,051,455 samples, 0.01%)</title><rect x="280.1" y="261" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="283.11" y="271.5" ></text>
</g>
<g >
<title>put_cpu_partial (6,900,216 samples, 0.02%)</title><rect x="188.2" y="213" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="191.20" y="223.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (4,683,957 samples, 0.02%)</title><rect x="577.2" y="389" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="580.22" y="399.5" ></text>
</g>
<g >
<title>module_put (6,168,671 samples, 0.02%)</title><rect x="283.6" y="469" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="286.63" y="479.5" ></text>
</g>
<g >
<title>__folio_alloc (6,990,293 samples, 0.02%)</title><rect x="619.3" y="165" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="622.28" y="175.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,103,535 samples, 0.01%)</title><rect x="599.2" y="149" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="602.23" y="159.5" ></text>
</g>
<g >
<title>get_page_from_freelist (12,717,199 samples, 0.04%)</title><rect x="660.0" y="277" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="662.97" y="287.5" ></text>
</g>
<g >
<title>alloc_pages (346,833,400 samples, 1.17%)</title><rect x="858.9" y="197" width="13.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="861.85" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,196,538 samples, 0.02%)</title><rect x="629.8" y="341" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="632.75" y="351.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (97,861,847 samples, 0.33%)</title><rect x="12.3" y="549" width="3.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.34" y="559.5" ></text>
</g>
<g >
<title>schedule (54,399,794 samples, 0.18%)</title><rect x="13.4" y="453" width="2.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="16.38" y="463.5" ></text>
</g>
<g >
<title>check_ptr_to_btf_access (2,968,669 samples, 0.01%)</title><rect x="629.8" y="197" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="632.81" y="207.5" ></text>
</g>
<g >
<title>exc_page_fault (16,694,432 samples, 0.06%)</title><rect x="1180.5" y="389" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1183.55" y="399.5" ></text>
</g>
<g >
<title>psi_task_switch (9,574,024 samples, 0.03%)</title><rect x="15.0" y="421" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="17.99" y="431.5" ></text>
</g>
<g >
<title>__free_slab (4,760,348 samples, 0.02%)</title><rect x="278.3" y="341" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="281.29" y="351.5" ></text>
</g>
<g >
<title>runtime.handoffp (5,979,891 samples, 0.02%)</title><rect x="11.5" y="533" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="14.55" y="543.5" ></text>
</g>
<g >
<title>free_unref_page_commit (5,994,718 samples, 0.02%)</title><rect x="162.2" y="117" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="165.21" y="127.5" ></text>
</g>
<g >
<title>consume_obj_stock (26,130,359 samples, 0.09%)</title><rect x="890.4" y="229" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="893.36" y="239.5" ></text>
</g>
<g >
<title>__do_softirq (9,060,668 samples, 0.03%)</title><rect x="286.4" y="421" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="289.41" y="431.5" ></text>
</g>
<g >
<title>rcu_core (168,951,401 samples, 0.57%)</title><rect x="157.6" y="309" width="6.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="160.59" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (14,291,115 samples, 0.05%)</title><rect x="252.6" y="405" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="255.65" y="415.5" ></text>
</g>
<g >
<title>mod_memcg_state (5,372,161 samples, 0.02%)</title><rect x="786.7" y="197" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="789.66" y="207.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (16,702,645 samples, 0.06%)</title><rect x="416.0" y="469" width="0.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="419.03" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (6,984,605 samples, 0.02%)</title><rect x="626.6" y="165" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="629.62" y="175.5" ></text>
</g>
<g >
<title>discard_slab (6,198,185 samples, 0.02%)</title><rect x="278.2" y="373" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="281.24" y="383.5" ></text>
</g>
<g >
<title>enqueue_task_fair (169,881,001 samples, 0.57%)</title><rect x="124.9" y="325" width="6.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="127.89" y="335.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (3,047,009 samples, 0.01%)</title><rect x="937.1" y="341" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="940.06" y="351.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,570,994 samples, 0.02%)</title><rect x="228.2" y="389" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="231.20" y="399.5" ></text>
</g>
<g >
<title>sched_clock_cpu (69,607,811 samples, 0.24%)</title><rect x="149.5" y="341" width="2.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="152.50" y="351.5" ></text>
</g>
<g >
<title>__slab_free (16,903,257 samples, 0.06%)</title><rect x="188.0" y="229" width="0.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="190.98" y="239.5" ></text>
</g>
<g >
<title>vfs_read (773,961,777 samples, 2.62%)</title><rect x="540.7" y="341" width="30.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="543.69" y="351.5" >vf..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (3,028,427 samples, 0.01%)</title><rect x="348.1" y="517" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="351.06" y="527.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,999,957 samples, 0.01%)</title><rect x="60.5" y="325" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="63.51" y="335.5" ></text>
</g>
<g >
<title>rcu_core_si (2,897,719 samples, 0.01%)</title><rect x="59.2" y="357" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="62.17" y="367.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,986,287 samples, 0.01%)</title><rect x="231.4" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="234.37" y="415.5" ></text>
</g>
<g >
<title>pick_next_task (7,812,060 samples, 0.03%)</title><rect x="14.5" y="421" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="17.51" y="431.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,626,548 samples, 0.01%)</title><rect x="67.0" y="293" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="70.03" y="303.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,986,024 samples, 0.02%)</title><rect x="599.3" y="165" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="602.35" y="175.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3,973,960 samples, 0.01%)</title><rect x="791.5" y="261" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="794.53" y="271.5" ></text>
</g>
<g >
<title>error_entry (6,927,771 samples, 0.02%)</title><rect x="16.5" y="581" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="19.53" y="591.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (7,792,606 samples, 0.03%)</title><rect x="791.7" y="261" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="794.69" y="271.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).allocToCache (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="277" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1172.56" y="287.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,157,466 samples, 0.02%)</title><rect x="73.3" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="76.28" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,099,882 samples, 0.01%)</title><rect x="604.2" y="213" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="607.20" y="223.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (5,270,892 samples, 0.02%)</title><rect x="474.6" y="261" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="477.58" y="271.5" ></text>
</g>
<g >
<title>idr_get_next_ul (70,925,572 samples, 0.24%)</title><rect x="560.0" y="261" width="2.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="562.96" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (19,543,708 samples, 0.07%)</title><rect x="298.1" y="501" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="301.11" y="511.5" ></text>
</g>
<g >
<title>reflect.Value.Field (19,156,769 samples, 0.06%)</title><rect x="498.6" y="501" width="0.8" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="501.59" y="511.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (6,323,787 samples, 0.02%)</title><rect x="165.2" y="421" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="168.19" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (40,265,171 samples, 0.14%)</title><rect x="506.1" y="453" width="1.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="509.07" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (17,865,821 samples, 0.06%)</title><rect x="618.9" y="229" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="621.88" y="239.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (7,513,773 samples, 0.03%)</title><rect x="507.9" y="405" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="510.89" y="415.5" ></text>
</g>
<g >
<title>get_any_partial (6,821,295 samples, 0.02%)</title><rect x="764.9" y="213" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="767.92" y="223.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,979,980 samples, 0.02%)</title><rect x="628.8" y="261" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="631.83" y="271.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,852,022 samples, 0.01%)</title><rect x="382.0" y="533" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="385.00" y="543.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,658,441 samples, 0.01%)</title><rect x="166.0" y="421" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="168.97" y="431.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,984,605 samples, 0.02%)</title><rect x="626.6" y="197" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="629.62" y="207.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (81,015,597 samples, 0.27%)</title><rect x="556.2" y="277" width="3.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="559.23" y="287.5" ></text>
</g>
<g >
<title>runtime.typehash (4,662,411 samples, 0.02%)</title><rect x="538.7" y="453" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="541.72" y="463.5" ></text>
</g>
<g >
<title>psi_group_change (102,586,456 samples, 0.35%)</title><rect x="222.1" y="389" width="4.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="225.12" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,880,833 samples, 0.01%)</title><rect x="482.5" y="277" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="485.55" y="287.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (61,005,589 samples, 0.21%)</title><rect x="120.9" y="325" width="2.5" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="123.94" y="335.5" ></text>
</g>
<g >
<title>rcu_core (2,897,719 samples, 0.01%)</title><rect x="59.2" y="341" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="62.17" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (3,120,780 samples, 0.01%)</title><rect x="631.7" y="373" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="634.72" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,196,538 samples, 0.02%)</title><rect x="629.8" y="325" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="632.75" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,536,452,220 samples, 5.19%)</title><rect x="436.1" y="389" width="61.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="439.06" y="399.5" >entry_..</text>
</g>
<g >
<title>asm_exc_page_fault (21,748,827 samples, 0.07%)</title><rect x="618.8" y="309" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="621.76" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (11,611,870 samples, 0.04%)</title><rect x="604.4" y="277" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="607.36" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_lock (31,039,990 samples, 0.10%)</title><rect x="59.4" y="453" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="62.40" y="463.5" ></text>
</g>
<g >
<title>__do_softirq (10,437,139 samples, 0.04%)</title><rect x="247.3" y="309" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="250.27" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (3,865,627 samples, 0.01%)</title><rect x="928.6" y="181" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="931.58" y="191.5" ></text>
</g>
<g >
<title>security_file_alloc (8,737,254 samples, 0.03%)</title><rect x="789.7" y="245" width="0.4" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="792.71" y="255.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (22,819,349 samples, 0.08%)</title><rect x="1170.4" y="357" width="0.9" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1173.42" y="367.5" ></text>
</g>
<g >
<title>runtime.gopark (7,702,316 samples, 0.03%)</title><rect x="400.0" y="581" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="402.97" y="591.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (4,545,346 samples, 0.02%)</title><rect x="732.2" y="325" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="735.16" y="335.5" ></text>
</g>
<g >
<title>wp_page_copy (9,980,934 samples, 0.03%)</title><rect x="631.4" y="421" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="634.45" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (5,447,922 samples, 0.02%)</title><rect x="577.2" y="437" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="580.22" y="447.5" ></text>
</g>
<g >
<title>bpf_map_put (29,038,543 samples, 0.10%)</title><rect x="67.5" y="453" width="1.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="70.52" y="463.5" ></text>
</g>
<g >
<title>update_load_avg (24,563,558 samples, 0.08%)</title><rect x="207.8" y="357" width="1.0" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="210.81" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (5,454,337 samples, 0.02%)</title><rect x="848.9" y="197" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="851.85" y="207.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (56,210,999 samples, 0.19%)</title><rect x="656.6" y="437" width="2.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="659.62" y="447.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,977,304 samples, 0.03%)</title><rect x="280.1" y="341" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="283.09" y="351.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,022,072 samples, 0.01%)</title><rect x="261.8" y="389" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="264.85" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (174,553,082 samples, 0.59%)</title><rect x="157.4" y="405" width="7.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="160.42" y="415.5" ></text>
</g>
<g >
<title>__folio_alloc (3,099,882 samples, 0.01%)</title><rect x="604.2" y="165" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="607.20" y="175.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).put (2,961,866 samples, 0.01%)</title><rect x="382.1" y="533" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="385.15" y="543.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (3,791,399 samples, 0.01%)</title><rect x="508.2" y="469" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="511.22" y="479.5" ></text>
</g>
<g >
<title>migrate_enable (3,913,685 samples, 0.01%)</title><rect x="571.1" y="293" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="574.11" y="303.5" ></text>
</g>
<g >
<title>rcu_core (2,895,498 samples, 0.01%)</title><rect x="267.5" y="325" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="270.46" y="335.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (3,097,759 samples, 0.01%)</title><rect x="424.2" y="485" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="427.23" y="495.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (32,719,617 samples, 0.11%)</title><rect x="147.4" y="293" width="1.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="150.45" y="303.5" ></text>
</g>
<g >
<title>runtime.freedefer (6,877,171 samples, 0.02%)</title><rect x="1175.7" y="485" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1178.70" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (91,352,325 samples, 0.31%)</title><rect x="581.4" y="469" width="3.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="584.45" y="479.5" ></text>
</g>
<g >
<title>security_capable (90,176,595 samples, 0.30%)</title><rect x="899.6" y="293" width="3.5" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="902.55" y="303.5" ></text>
</g>
<g >
<title>task_work_run (6,196,312,850 samples, 20.94%)</title><rect x="39.7" y="501" width="247.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="42.72" y="511.5" >task_work_run</text>
</g>
<g >
<title>runtime.(*mcache).refill (33,487,538 samples, 0.11%)</title><rect x="652.0" y="421" width="1.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="654.97" y="431.5" ></text>
</g>
<g >
<title>sched_clock (27,371,448 samples, 0.09%)</title><rect x="136.1" y="293" width="1.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="139.08" y="303.5" ></text>
</g>
<g >
<title>runtime.profilealloc (2,951,878 samples, 0.01%)</title><rect x="514.1" y="485" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="517.06" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (8,429,537,716 samples, 28.48%)</title><rect x="663.5" y="469" width="336.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="666.53" y="479.5" >github.com/cilium/ebpf/internal/sys.BPF</text>
</g>
<g >
<title>_raw_spin_unlock_bh (5,465,238 samples, 0.02%)</title><rect x="467.8" y="277" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="470.75" y="287.5" ></text>
</g>
<g >
<title>do_send_specific (8,224,538 samples, 0.03%)</title><rect x="12.0" y="437" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="14.96" y="447.5" ></text>
</g>
<g >
<title>__do_softirq (6,025,327 samples, 0.02%)</title><rect x="67.0" y="373" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="70.00" y="383.5" ></text>
</g>
<g >
<title>mod_objcg_state (38,410,895 samples, 0.13%)</title><rect x="783.5" y="213" width="1.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="786.50" y="223.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (2,846,267 samples, 0.01%)</title><rect x="1175.1" y="421" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1178.07" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,445,797 samples, 0.02%)</title><rect x="849.1" y="165" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="852.07" y="175.5" ></text>
</g>
<g >
<title>encoding/binary.Read (2,675,804,883 samples, 9.04%)</title><rect x="402.5" y="517" width="106.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="405.54" y="527.5" >encoding/bina..</text>
</g>
<g >
<title>file_free_rcu (10,739,819 samples, 0.04%)</title><rect x="89.7" y="277" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="92.72" y="287.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (109,515,333 samples, 0.37%)</title><rect x="534.8" y="517" width="4.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="537.75" y="527.5" ></text>
</g>
<g >
<title>cache_from_obj (3,966,242 samples, 0.01%)</title><rect x="274.4" y="437" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="277.43" y="447.5" ></text>
</g>
<g >
<title>exc_page_fault (3,078,206 samples, 0.01%)</title><rect x="609.8" y="293" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="612.85" y="303.5" ></text>
</g>
<g >
<title>__unfreeze_partials (6,671,731 samples, 0.02%)</title><rect x="188.2" y="197" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="191.21" y="207.5" ></text>
</g>
<g >
<title>amd_clear_divider (9,098,655 samples, 0.03%)</title><rect x="938.1" y="373" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="941.05" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (236,240,704 samples, 0.80%)</title><rect x="620.2" y="373" width="9.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="623.21" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (17,256,564 samples, 0.06%)</title><rect x="89.7" y="341" width="0.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="92.70" y="351.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (7,411,050 samples, 0.03%)</title><rect x="161.8" y="245" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="164.77" y="255.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,920,944 samples, 0.01%)</title><rect x="240.8" y="309" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="243.76" y="319.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (17,643,952 samples, 0.06%)</title><rect x="968.3" y="341" width="0.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="971.27" y="351.5" ></text>
</g>
<g >
<title>__handle_mm_fault (57,723,065 samples, 0.20%)</title><rect x="644.3" y="405" width="2.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="647.34" y="415.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (22,272,886 samples, 0.08%)</title><rect x="773.9" y="149" width="0.9" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="776.92" y="159.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (12,936,783 samples, 0.04%)</title><rect x="1169.0" y="405" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1171.98" y="415.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,020,241 samples, 0.01%)</title><rect x="621.4" y="309" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="624.37" y="319.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (11,417,933 samples, 0.04%)</title><rect x="507.7" y="469" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="510.73" y="479.5" ></text>
</g>
<g >
<title>file_free_rcu (5,922,836 samples, 0.02%)</title><rect x="286.4" y="357" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="289.41" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (22,819,349 samples, 0.08%)</title><rect x="1170.4" y="373" width="0.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1173.42" y="383.5" ></text>
</g>
<g >
<title>runtime.publicationBarrier (3,767,811 samples, 0.01%)</title><rect x="508.9" y="485" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="511.89" y="495.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (26,722,637 samples, 0.09%)</title><rect x="136.1" y="277" width="1.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="139.11" y="287.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,570,994 samples, 0.02%)</title><rect x="228.2" y="373" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="231.20" y="383.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,100,149 samples, 0.01%)</title><rect x="274.3" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="277.31" y="431.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (480,231,614 samples, 1.62%)</title><rect x="299.1" y="549" width="19.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="302.07" y="559.5" ></text>
</g>
<g >
<title>runtime.memmove (12,438,098 samples, 0.04%)</title><rect x="497.5" y="485" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="500.47" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (8,457,266 samples, 0.03%)</title><rect x="1011.5" y="229" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1014.46" y="239.5" ></text>
</g>
<g >
<title>psi_group_change (43,960,195 samples, 0.15%)</title><rect x="133.9" y="309" width="1.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="136.93" y="319.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,999,957 samples, 0.01%)</title><rect x="60.5" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="63.51" y="415.5" ></text>
</g>
<g >
<title>rmqueue_bulk (6,255,637 samples, 0.02%)</title><rect x="805.1" y="101" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="808.10" y="111.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,865,627 samples, 0.01%)</title><rect x="928.6" y="165" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="931.58" y="175.5" ></text>
</g>
<g >
<title>runtime.retake (20,963,102 samples, 0.07%)</title><rect x="11.5" y="549" width="0.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="14.51" y="559.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (11,731,182 samples, 0.04%)</title><rect x="506.1" y="421" width="0.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="509.10" y="431.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (5,304,411 samples, 0.02%)</title><rect x="784.8" y="197" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="787.82" y="207.5" ></text>
</g>
<g >
<title>__do_softirq (2,999,957 samples, 0.01%)</title><rect x="60.5" y="373" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="63.51" y="383.5" ></text>
</g>
<g >
<title>memcg_account_kmem (7,448,672 samples, 0.03%)</title><rect x="249.2" y="341" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="252.18" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,401,702 samples, 0.02%)</title><rect x="658.2" y="357" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="661.17" y="367.5" ></text>
</g>
<g >
<title>__calc_delta (2,706,234 samples, 0.01%)</title><rect x="198.3" y="341" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="201.31" y="351.5" ></text>
</g>
<g >
<title>bpf_map_put (2,044,912,019 samples, 6.91%)</title><rect x="83.9" y="437" width="81.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="86.91" y="447.5" >bpf_map_put</text>
</g>
<g >
<title>apparmor_file_free_security (38,820,123 samples, 0.13%)</title><rect x="272.8" y="437" width="1.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="275.76" y="447.5" ></text>
</g>
<g >
<title>seq_write (3,114,957 samples, 0.01%)</title><rect x="569.9" y="261" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="572.86" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (14,598,252 samples, 0.05%)</title><rect x="733.9" y="325" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="736.86" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,157,466 samples, 0.02%)</title><rect x="73.3" y="389" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="76.28" y="399.5" ></text>
</g>
<g >
<title>golang.org/x/sys/unix.Syscall.abi0 (4,680,378 samples, 0.02%)</title><rect x="1172.0" y="469" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1174.99" y="479.5" ></text>
</g>
<g >
<title>mod_memcg_state (7,448,672 samples, 0.03%)</title><rect x="249.2" y="325" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="252.18" y="335.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps.func1 (14,026,363,812 samples, 47.39%)</title><rect x="630.0" y="549" width="559.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="632.96" y="559.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps.func1</text>
</g>
<g >
<title>new_slab (274,691,782 samples, 0.93%)</title><rect x="765.3" y="213" width="10.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="768.25" y="223.5" ></text>
</g>
<g >
<title>psi_flags_change (7,061,586 samples, 0.02%)</title><rect x="133.6" y="309" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="136.65" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (6,072,897 samples, 0.02%)</title><rect x="608.9" y="373" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="611.89" y="383.5" ></text>
</g>
<g >
<title>apparmor_capable (115,824,937 samples, 0.39%)</title><rect x="910.4" y="293" width="4.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="913.39" y="303.5" ></text>
</g>
<g >
<title>idr_get_next_ul (8,358,338 samples, 0.03%)</title><rect x="481.3" y="261" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="484.29" y="271.5" ></text>
</g>
<g >
<title>rcu_core_si (2,895,498 samples, 0.01%)</title><rect x="267.5" y="341" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="270.46" y="351.5" ></text>
</g>
<g >
<title>pte_offset_map_nolock (3,064,365 samples, 0.01%)</title><rect x="593.0" y="421" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="596.05" y="431.5" ></text>
</g>
<g >
<title>__folio_alloc (13,497,703 samples, 0.05%)</title><rect x="659.9" y="309" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="662.94" y="319.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (4,627,413 samples, 0.02%)</title><rect x="814.0" y="229" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="817.05" y="239.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (3,882,867 samples, 0.01%)</title><rect x="675.5" y="421" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="678.52" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (5,430,467 samples, 0.02%)</title><rect x="604.9" y="277" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="607.94" y="287.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,025,327 samples, 0.02%)</title><rect x="67.0" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="70.00" y="415.5" ></text>
</g>
<g >
<title>errors.Is (45,170,776 samples, 0.15%)</title><rect x="640.4" y="485" width="1.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="643.37" y="495.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,716,222 samples, 0.02%)</title><rect x="67.3" y="341" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="70.29" y="351.5" ></text>
</g>
<g >
<title>runtime.bgscavenge (8,270,967 samples, 0.03%)</title><rect x="400.0" y="613" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="402.97" y="623.5" ></text>
</g>
<g >
<title>dput (2,367,478,358 samples, 8.00%)</title><rect x="171.9" y="453" width="94.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="174.87" y="463.5" >dput</text>
</g>
<g >
<title>__mod_memcg_lruvec_state (3,423,733 samples, 0.01%)</title><rect x="247.7" y="357" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="250.70" y="367.5" ></text>
</g>
<g >
<title>__sys_bpf (5,196,538 samples, 0.02%)</title><rect x="629.8" y="293" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="632.75" y="303.5" ></text>
</g>
<g >
<title>rcu_core (3,585,079 samples, 0.01%)</title><rect x="61.9" y="341" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="64.86" y="351.5" ></text>
</g>
<g >
<title>select_task_rq_fair (9,879,980 samples, 0.03%)</title><rect x="106.8" y="373" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="109.81" y="383.5" ></text>
</g>
<g >
<title>do_check_common (3,708,366 samples, 0.01%)</title><rect x="629.8" y="245" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="632.78" y="255.5" ></text>
</g>
<g >
<title>runtime.mallocgc (5,439,744 samples, 0.02%)</title><rect x="612.0" y="309" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="614.98" y="319.5" ></text>
</g>
<g >
<title>pick_next_task (514,155,021 samples, 1.74%)</title><rect x="190.5" y="405" width="20.5" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="193.47" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (17,851,255 samples, 0.06%)</title><rect x="599.0" y="293" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="602.01" y="303.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,488,260 samples, 0.01%)</title><rect x="247.6" y="245" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="250.55" y="255.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (10,376,704 samples, 0.04%)</title><rect x="1169.8" y="357" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1172.83" y="367.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (9,327,720 samples, 0.03%)</title><rect x="480.9" y="245" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="483.92" y="255.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,157,466 samples, 0.02%)</title><rect x="73.3" y="325" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="76.28" y="335.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (8,527,733 samples, 0.03%)</title><rect x="605.9" y="197" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="608.90" y="207.5" ></text>
</g>
<g >
<title>__d_instantiate (37,319,012 samples, 0.13%)</title><rect x="832.1" y="261" width="1.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="835.13" y="271.5" ></text>
</g>
<g >
<title>os.(*File).Read (1,552,526,138 samples, 5.25%)</title><rect x="435.5" y="469" width="61.9" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="438.54" y="479.5" >os.(*F..</text>
</g>
<g >
<title>kmem_cache_free (8,427,104 samples, 0.03%)</title><rect x="89.8" y="261" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="92.79" y="271.5" ></text>
</g>
<g >
<title>update_curr (15,899,462 samples, 0.05%)</title><rect x="128.7" y="293" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="131.66" y="303.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (5,196,538 samples, 0.02%)</title><rect x="629.8" y="357" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="632.75" y="367.5" ></text>
</g>
<g >
<title>vma_alloc_folio (33,098,200 samples, 0.11%)</title><rect x="645.3" y="357" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="648.29" y="367.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,977,304 samples, 0.03%)</title><rect x="280.1" y="357" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="283.09" y="367.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,869,869 samples, 0.01%)</title><rect x="579.1" y="389" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="582.05" y="399.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,546,458,040 samples, 5.23%)</title><rect x="435.8" y="405" width="61.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="438.78" y="415.5" >runtim..</text>
</g>
<g >
<title>__slab_free (9,633,076 samples, 0.03%)</title><rect x="162.2" y="245" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="165.16" y="255.5" ></text>
</g>
<g >
<title>memcpy_orig (4,649,351 samples, 0.02%)</title><rect x="849.3" y="261" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="852.29" y="271.5" ></text>
</g>
<g >
<title>dnotify_flush (4,696,381 samples, 0.02%)</title><rect x="22.7" y="469" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="25.69" y="479.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,099,882 samples, 0.01%)</title><rect x="604.2" y="197" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="607.20" y="207.5" ></text>
</g>
<g >
<title>folio_add_lru (3,073,650 samples, 0.01%)</title><rect x="1186.1" y="389" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1189.05" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (13,181,418 samples, 0.04%)</title><rect x="626.4" y="293" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="629.37" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,200,046 samples, 0.02%)</title><rect x="169.7" y="389" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="172.66" y="399.5" ></text>
</g>
<g >
<title>put_prev_entity (11,253,726 samples, 0.04%)</title><rect x="210.4" y="389" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="213.36" y="399.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (4,668,642 samples, 0.02%)</title><rect x="511.3" y="517" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="514.33" y="527.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,740,382 samples, 0.01%)</title><rect x="245.5" y="325" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="248.53" y="335.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (12,086,916 samples, 0.04%)</title><rect x="12.9" y="453" width="0.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="15.90" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (47,718,062 samples, 0.16%)</title><rect x="1185.8" y="437" width="1.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1188.78" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,707,897 samples, 0.02%)</title><rect x="11.6" y="469" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="14.57" y="479.5" ></text>
</g>
<g >
<title>__do_softirq (2,920,944 samples, 0.01%)</title><rect x="240.8" y="261" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="243.76" y="271.5" ></text>
</g>
<g >
<title>runtime.gcBgMarkWorker.func2 (2,588,397,078 samples, 8.75%)</title><rect x="287.2" y="597" width="103.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="290.20" y="607.5" >runtime.gcBg..</text>
</g>
<g >
<title>rcu_do_batch (160,847,463 samples, 0.54%)</title><rect x="157.9" y="293" width="6.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="160.89" y="303.5" ></text>
</g>
<g >
<title>rcu_core (2,740,382 samples, 0.01%)</title><rect x="245.5" y="277" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="248.53" y="287.5" ></text>
</g>
<g >
<title>do_group_exit (6,707,356,879 samples, 22.66%)</title><rect x="19.3" y="533" width="267.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="22.34" y="543.5" >do_group_exit</text>
</g>
<g >
<title>bpf_map_seq_start (2,983,837 samples, 0.01%)</title><rect x="496.8" y="293" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="499.77" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (170,392,332 samples, 0.58%)</title><rect x="157.6" y="341" width="6.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="160.59" y="351.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).tryGet (5,299,464 samples, 0.02%)</title><rect x="292.9" y="565" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="295.90" y="575.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (3,843,377 samples, 0.01%)</title><rect x="399.4" y="565" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="402.42" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (12,067,096 samples, 0.04%)</title><rect x="240.0" y="373" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="243.05" y="383.5" ></text>
</g>
<g >
<title>security_file_free (258,140,003 samples, 0.87%)</title><rect x="271.1" y="453" width="10.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="274.13" y="463.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,593,826 samples, 0.01%)</title><rect x="348.1" y="533" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="351.06" y="543.5" ></text>
</g>
<g >
<title>alloc_pages (139,383,376 samples, 0.47%)</title><rect x="799.9" y="181" width="5.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="802.92" y="191.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,570,994 samples, 0.02%)</title><rect x="228.2" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="231.20" y="415.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (46,486,998 samples, 0.16%)</title><rect x="87.4" y="405" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="90.45" y="415.5" ></text>
</g>
<g >
<title>__do_softirq (2,877,797 samples, 0.01%)</title><rect x="274.3" y="373" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="277.32" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,094,595 samples, 0.03%)</title><rect x="628.7" y="293" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="631.71" y="303.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (3,857,836 samples, 0.01%)</title><rect x="591.3" y="341" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="594.28" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (14,732,056 samples, 0.05%)</title><rect x="602.0" y="293" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="605.04" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (33,812,018 samples, 0.11%)</title><rect x="577.1" y="469" width="1.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="580.13" y="479.5" ></text>
</g>
<g >
<title>runtime.makeslicecopy (6,997,245 samples, 0.02%)</title><rect x="612.4" y="325" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="615.38" y="335.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (20,670,318 samples, 0.07%)</title><rect x="262.9" y="437" width="0.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="265.87" y="447.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (18,546,931 samples, 0.06%)</title><rect x="538.2" y="469" width="0.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="541.17" y="479.5" ></text>
</g>
<g >
<title>__do_softirq (3,658,441 samples, 0.01%)</title><rect x="166.0" y="357" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="168.97" y="367.5" ></text>
</g>
<g >
<title>update_min_vruntime (4,527,159 samples, 0.02%)</title><rect x="199.9" y="341" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="202.90" y="351.5" ></text>
</g>
<g >
<title>handle_pte_fault (5,369,080 samples, 0.02%)</title><rect x="621.1" y="277" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="624.12" y="287.5" ></text>
</g>
<g >
<title>runtime.suspendG (44,244,430 samples, 0.15%)</title><rect x="297.2" y="533" width="1.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="300.21" y="543.5" ></text>
</g>
<g >
<title>__folio_alloc (8,537,236 samples, 0.03%)</title><rect x="602.2" y="181" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="605.19" y="191.5" ></text>
</g>
<g >
<title>rcu_core_si (3,616,202 samples, 0.01%)</title><rect x="284.4" y="373" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="287.40" y="383.5" ></text>
</g>
<g >
<title>exc_page_fault (3,884,260 samples, 0.01%)</title><rect x="610.3" y="309" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="613.31" y="319.5" ></text>
</g>
<g >
<title>__free_pages (6,602,674 samples, 0.02%)</title><rect x="162.2" y="149" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="165.21" y="159.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (25,458,923 samples, 0.09%)</title><rect x="820.8" y="197" width="1.0" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="823.75" y="207.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (314,450,568 samples, 1.06%)</title><rect x="483.3" y="277" width="12.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="486.31" y="287.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (3,555,262 samples, 0.01%)</title><rect x="161.6" y="229" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="164.62" y="239.5" ></text>
</g>
<g >
<title>clear_page_erms (3,207,938 samples, 0.01%)</title><rect x="1169.6" y="37" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1172.64" y="47.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (9,305,150 samples, 0.03%)</title><rect x="605.9" y="245" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="608.87" y="255.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,986,287 samples, 0.01%)</title><rect x="231.4" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="234.37" y="303.5" ></text>
</g>
<g >
<title>[unknown] (170,613,238 samples, 0.58%)</title><rect x="10.0" y="629" width="6.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="639.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (105,237,075 samples, 0.36%)</title><rect x="186.2" y="389" width="4.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="189.25" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,879,019 samples, 0.01%)</title><rect x="812.7" y="213" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="815.67" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*collectionLoader).loadProgram (887,309,577 samples, 3.00%)</title><rect x="594.6" y="453" width="35.4" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="597.58" y="463.5" >gi..</text>
</g>
<g >
<title>x86_pmu_disable (2,767,412 samples, 0.01%)</title><rect x="14.9" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="17.86" y="367.5" ></text>
</g>
<g >
<title>rcu_core_si (2,864,947 samples, 0.01%)</title><rect x="278.1" y="325" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="281.07" y="335.5" ></text>
</g>
<g >
<title>___slab_alloc (217,349,857 samples, 0.73%)</title><rect x="798.9" y="229" width="8.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="801.92" y="239.5" ></text>
</g>
<g >
<title>setup_object (6,198,922 samples, 0.02%)</title><rect x="759.0" y="133" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="762.02" y="143.5" ></text>
</g>
<g >
<title>runtime.memmove (19,375,100 samples, 0.07%)</title><rect x="611.2" y="325" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="614.18" y="335.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,166,941 samples, 0.02%)</title><rect x="889.4" y="245" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="892.42" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (107,340,678 samples, 0.36%)</title><rect x="589.4" y="517" width="4.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="592.42" y="527.5" ></text>
</g>
<g >
<title>__alloc_pages (31,590,259 samples, 0.11%)</title><rect x="645.4" y="325" width="1.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="648.35" y="335.5" ></text>
</g>
<g >
<title>testing.(*B).launch (3,042,153,603 samples, 10.28%)</title><rect x="400.6" y="613" width="121.3" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="403.58" y="623.5" >testing.(*B).la..</text>
</g>
<g >
<title>__unfreeze_partials (8,273,479 samples, 0.03%)</title><rect x="160.4" y="213" width="0.4" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="163.44" y="223.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (19,855,892 samples, 0.07%)</title><rect x="733.1" y="325" width="0.8" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="736.07" y="335.5" ></text>
</g>
<g >
<title>mod_node_page_state (5,429,431 samples, 0.02%)</title><rect x="873.8" y="197" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="876.79" y="207.5" ></text>
</g>
<g >
<title>file_free_rcu (53,434,468 samples, 0.18%)</title><rect x="187.1" y="261" width="2.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="190.06" y="271.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,329,323 samples, 0.02%)</title><rect x="1180.9" y="245" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1183.88" y="255.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,022,072 samples, 0.01%)</title><rect x="261.8" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="264.85" y="431.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (3,998,517,226 samples, 13.51%)</title><rect x="1005.6" y="389" width="159.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1008.61" y="399.5" >runtime.addfinalizer</text>
</g>
<g >
<title>runtime.growslice (39,342,231 samples, 0.13%)</title><rect x="621.9" y="357" width="1.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="624.95" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (11,654,007 samples, 0.04%)</title><rect x="600.6" y="293" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="603.56" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,527,733 samples, 0.03%)</title><rect x="605.9" y="181" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="608.90" y="191.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (78,615,596 samples, 0.27%)</title><rect x="653.4" y="405" width="3.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="656.40" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (7,710,765 samples, 0.03%)</title><rect x="18.5" y="613" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="21.54" y="623.5" ></text>
</g>
<g >
<title>__fput (12,863,577 samples, 0.04%)</title><rect x="285.9" y="485" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="288.89" y="495.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (12,917,532 samples, 0.04%)</title><rect x="437.6" y="309" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="440.62" y="319.5" ></text>
</g>
<g >
<title>__folio_alloc (6,787,401 samples, 0.02%)</title><rect x="572.3" y="357" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="575.28" y="367.5" ></text>
</g>
<g >
<title>idr_remove (10,052,067 samples, 0.03%)</title><rect x="166.1" y="437" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="169.12" y="447.5" ></text>
</g>
<g >
<title>lru_add_fn (3,111,877 samples, 0.01%)</title><rect x="631.0" y="373" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="634.02" y="383.5" ></text>
</g>
<g >
<title>anon_inode_getfd (2,891,872,250 samples, 9.77%)</title><rect x="734.4" y="325" width="115.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="737.45" y="335.5" >anon_inode_getfd</text>
</g>
<g >
<title>clockevents_program_event (3,161,618 samples, 0.01%)</title><rect x="13.2" y="405" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="16.21" y="415.5" ></text>
</g>
<g >
<title>sched_clock_cpu (34,878,437 samples, 0.12%)</title><rect x="226.4" y="389" width="1.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="229.45" y="399.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (3,887,853 samples, 0.01%)</title><rect x="579.2" y="517" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="582.23" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (66,713,382 samples, 0.23%)</title><rect x="1185.6" y="501" width="2.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1188.56" y="511.5" ></text>
</g>
<g >
<title>rcu_do_batch (6,200,046 samples, 0.02%)</title><rect x="169.7" y="309" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="172.66" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (7,034,029 samples, 0.02%)</title><rect x="559.6" y="277" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="562.55" y="287.5" ></text>
</g>
<g >
<title>__slab_free (6,317,981 samples, 0.02%)</title><rect x="241.6" y="261" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="244.57" y="271.5" ></text>
</g>
<g >
<title>cache_from_obj (44,822,138 samples, 0.15%)</title><rect x="243.9" y="389" width="1.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="246.86" y="399.5" ></text>
</g>
<g >
<title>clear_page_erms (298,692,330 samples, 1.01%)</title><rect x="859.9" y="149" width="11.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="862.86" y="159.5" ></text>
</g>
<g >
<title>runtime.growslice (169,342,190 samples, 0.57%)</title><rect x="1176.7" y="533" width="6.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1179.65" y="543.5" ></text>
</g>
<g >
<title>tick_sched_handle (5,658,902 samples, 0.02%)</title><rect x="186.5" y="293" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="189.46" y="303.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (4,037,673,231 samples, 13.64%)</title><rect x="1005.3" y="405" width="161.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1008.31" y="415.5" >runtime.SetFinalizer..</text>
</g>
<g >
<title>ptep_clear_flush (3,103,535 samples, 0.01%)</title><rect x="599.2" y="165" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="602.23" y="175.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,638,959 samples, 0.02%)</title><rect x="611.7" y="197" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="614.70" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,111,488 samples, 0.01%)</title><rect x="348.0" y="549" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="351.03" y="559.5" ></text>
</g>
<g >
<title>clear_page_erms (22,535,822 samples, 0.08%)</title><rect x="1186.5" y="341" width="0.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1189.54" y="351.5" ></text>
</g>
<g >
<title>available_idle_cpu (6,723,239 samples, 0.02%)</title><rect x="119.7" y="325" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="122.72" y="335.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,740,382 samples, 0.01%)</title><rect x="245.5" y="341" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="248.53" y="351.5" ></text>
</g>
<g >
<title>syscall.Syscall (8,388,822,273 samples, 28.34%)</title><rect x="665.2" y="437" width="334.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="668.15" y="447.5" >syscall.Syscall</text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,879,391 samples, 0.01%)</title><rect x="586.5" y="469" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="589.48" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (3,794,095 samples, 0.01%)</title><rect x="640.2" y="501" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="643.22" y="511.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,797,074 samples, 0.02%)</title><rect x="67.0" y="325" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="70.00" y="335.5" ></text>
</g>
<g >
<title>runtime.gcBgMarkWorker (2,595,518,548 samples, 8.77%)</title><rect x="286.9" y="629" width="103.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="289.91" y="639.5" >runtime.gcBg..</text>
</g>
<g >
<title>reflect.Value.Elem (2,986,115 samples, 0.01%)</title><rect x="511.5" y="517" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="514.52" y="527.5" ></text>
</g>
<g >
<title>do_user_addr_fault (20,233,015 samples, 0.07%)</title><rect x="659.7" y="405" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="662.72" y="415.5" ></text>
</g>
<g >
<title>__free_slab (21,069,889 samples, 0.07%)</title><rect x="241.0" y="309" width="0.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="244.02" y="319.5" ></text>
</g>
<g >
<title>vfree (3,907,687 samples, 0.01%)</title><rect x="36.3" y="453" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="39.31" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (14,741,161 samples, 0.05%)</title><rect x="599.0" y="213" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="602.04" y="223.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (3,111,877 samples, 0.01%)</title><rect x="631.0" y="357" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="634.02" y="367.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (14,844,393 samples, 0.05%)</title><rect x="164.6" y="405" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="167.60" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (59,664,724 samples, 0.20%)</title><rect x="660.9" y="485" width="2.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="663.93" y="495.5" ></text>
</g>
<g >
<title>file_free_rcu (3,478,683 samples, 0.01%)</title><rect x="270.9" y="309" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="273.86" y="319.5" ></text>
</g>
<g >
<title>runtime.scanblock (158,940,412 samples, 0.54%)</title><rect x="311.8" y="533" width="6.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="314.85" y="543.5" ></text>
</g>
<g >
<title>consume_obj_stock (2,933,814 samples, 0.01%)</title><rect x="819.3" y="213" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="822.29" y="223.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (3,094,459 samples, 0.01%)</title><rect x="658.9" y="373" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="661.89" y="383.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (37,164,150 samples, 0.13%)</title><rect x="241.9" y="373" width="1.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="244.93" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (132,758,860 samples, 0.45%)</title><rect x="634.9" y="501" width="5.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="637.93" y="511.5" ></text>
</g>
<g >
<title>exc_page_fault (21,767,587 samples, 0.07%)</title><rect x="659.7" y="421" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="662.72" y="431.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (182,849,208 samples, 0.62%)</title><rect x="212.6" y="373" width="7.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="215.64" y="383.5" ></text>
</g>
<g >
<title>memset_orig (22,545,057 samples, 0.08%)</title><rect x="787.4" y="245" width="0.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="790.39" y="255.5" ></text>
</g>
<g >
<title>new_slab (197,614,776 samples, 0.67%)</title><rect x="799.7" y="213" width="7.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="802.70" y="223.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,188,892 samples, 0.02%)</title><rect x="611.6" y="229" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="614.64" y="239.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,116,259 samples, 0.02%)</title><rect x="20.6" y="469" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="23.60" y="479.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,516,285 samples, 0.02%)</title><rect x="381.8" y="453" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="384.79" y="463.5" ></text>
</g>
<g >
<title>__irqentry_text_end (4,683,643 samples, 0.02%)</title><rect x="585.4" y="517" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="588.43" y="527.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (6,211,772 samples, 0.02%)</title><rect x="563.7" y="293" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="566.74" y="303.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (77,505,618 samples, 0.26%)</title><rect x="535.8" y="485" width="3.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="538.85" y="495.5" ></text>
</g>
<g >
<title>tick_program_event (4,380,635 samples, 0.01%)</title><rect x="13.2" y="421" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="16.17" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8,538,257 samples, 0.03%)</title><rect x="628.8" y="277" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="631.77" y="287.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="245" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1172.56" y="255.5" ></text>
</g>
<g >
<title>syscall.Syscall (11,936,241 samples, 0.04%)</title><rect x="10.6" y="597" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="13.60" y="607.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (3,121,122 samples, 0.01%)</title><rect x="930.6" y="309" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="933.57" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign.func1 (887,309,577 samples, 3.00%)</title><rect x="594.6" y="469" width="35.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="597.58" y="479.5" >gi..</text>
</g>
<g >
<title>runtime.mapassign (95,394,724 samples, 0.32%)</title><rect x="623.6" y="357" width="3.8" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="626.58" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (3,114,783 samples, 0.01%)</title><rect x="613.7" y="341" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="616.74" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (6,859,419 samples, 0.02%)</title><rect x="262.0" y="437" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="265.01" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (57,552,292 samples, 0.19%)</title><rect x="590.9" y="437" width="2.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="593.88" y="447.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (3,111,877 samples, 0.01%)</title><rect x="631.0" y="421" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="634.02" y="431.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (27,980,370 samples, 0.09%)</title><rect x="226.7" y="341" width="1.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="229.65" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (20,188,906 samples, 0.07%)</title><rect x="618.8" y="277" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="621.82" y="287.5" ></text>
</g>
<g >
<title>runtime.scanobject (80,033,325 samples, 0.27%)</title><rect x="581.9" y="405" width="3.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="584.90" y="415.5" ></text>
</g>
<g >
<title>runtime.stopm (6,457,047 samples, 0.02%)</title><rect x="400.0" y="501" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="403.02" y="511.5" ></text>
</g>
<g >
<title>__alloc_pages (3,066,313 samples, 0.01%)</title><rect x="858.6" y="197" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="861.64" y="207.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,756,881 samples, 0.04%)</title><rect x="11.9" y="485" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.90" y="495.5" ></text>
</g>
<g >
<title>file_free_rcu (10,953,535 samples, 0.04%)</title><rect x="83.0" y="309" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="86.04" y="319.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (9,221,014 samples, 0.03%)</title><rect x="774.4" y="133" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="777.44" y="143.5" ></text>
</g>
<g >
<title>wp_page_copy (13,181,418 samples, 0.04%)</title><rect x="626.4" y="213" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="629.37" y="223.5" ></text>
</g>
<g >
<title>__handle_mm_fault (22,283,752 samples, 0.08%)</title><rect x="631.0" y="469" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="633.96" y="479.5" ></text>
</g>
<g >
<title>shuffle_freelist (25,832,333 samples, 0.09%)</title><rect x="806.6" y="181" width="1.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="809.55" y="191.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,895,498 samples, 0.01%)</title><rect x="267.5" y="373" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="270.46" y="383.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (577,807,195 samples, 1.95%)</title><rect x="442.7" y="277" width="23.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="445.73" y="287.5" >_..</text>
</g>
<g >
<title>runtime.(*mcache).nextFree (41,692,853 samples, 0.14%)</title><rect x="506.1" y="469" width="1.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="509.07" y="479.5" ></text>
</g>
<g >
<title>runtime.sweepone (230,812,218 samples, 0.78%)</title><rect x="390.8" y="597" width="9.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="393.77" y="607.5" ></text>
</g>
<g >
<title>vfs_read (1,524,351,948 samples, 5.15%)</title><rect x="436.2" y="325" width="60.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="439.24" y="335.5" >vfs_read</text>
</g>
<g >
<title>discard_slab (6,602,674 samples, 0.02%)</title><rect x="162.2" y="197" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="165.21" y="207.5" ></text>
</g>
<g >
<title>rcu_do_batch (15,427,623 samples, 0.05%)</title><rect x="259.4" y="261" width="0.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="262.44" y="271.5" ></text>
</g>
<g >
<title>runtime.deferreturn (39,266,844 samples, 0.13%)</title><rect x="1174.4" y="501" width="1.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1177.41" y="511.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (21,334,097 samples, 0.07%)</title><rect x="17.5" y="501" width="0.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="20.50" y="511.5" ></text>
</g>
<g >
<title>consume_obj_stock (19,838,353 samples, 0.07%)</title><rect x="785.8" y="213" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="788.83" y="223.5" ></text>
</g>
<g >
<title>expand_files (26,959,113 samples, 0.09%)</title><rect x="848.5" y="277" width="1.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="851.49" y="287.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (53,045,524 samples, 0.18%)</title><rect x="673.2" y="405" width="2.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="676.16" y="415.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (112,005,581 samples, 0.38%)</title><rect x="780.6" y="229" width="4.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="783.57" y="239.5" ></text>
</g>
<g >
<title>runtime.park_m (7,702,316 samples, 0.03%)</title><rect x="400.0" y="549" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="402.97" y="559.5" ></text>
</g>
<g >
<title>dentry_free (475,776,777 samples, 1.61%)</title><rect x="231.5" y="421" width="19.0" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="234.49" y="431.5" ></text>
</g>
<g >
<title>do_user_addr_fault (17,865,741 samples, 0.06%)</title><rect x="585.7" y="485" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="588.74" y="495.5" ></text>
</g>
<g >
<title>__free_slab (4,589,546 samples, 0.02%)</title><rect x="188.3" y="149" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="191.30" y="159.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (2,842,344 samples, 0.01%)</title><rect x="271.0" y="309" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="274.02" y="319.5" ></text>
</g>
<g >
<title>rcu_core (4,022,072 samples, 0.01%)</title><rect x="261.8" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="264.85" y="335.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (17,850,131 samples, 0.06%)</title><rect x="605.6" y="309" width="0.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="608.59" y="319.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,369,080 samples, 0.02%)</title><rect x="621.1" y="325" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="624.12" y="335.5" ></text>
</g>
<g >
<title>d_flags_for_inode (3,873,320 samples, 0.01%)</title><rect x="835.0" y="261" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="838.05" y="271.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (8,598,567 samples, 0.03%)</title><rect x="506.1" y="405" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="509.10" y="415.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (245,412,546 samples, 0.83%)</title><rect x="484.9" y="261" width="9.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="487.85" y="271.5" ></text>
</g>
<g >
<title>update_load_avg (133,063,686 samples, 0.45%)</title><rect x="200.1" y="357" width="5.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="203.09" y="367.5" ></text>
</g>
<g >
<title>apparmor_capable (33,198,191 samples, 0.11%)</title><rect x="905.8" y="309" width="1.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="908.78" y="319.5" ></text>
</g>
<g >
<title>locks_remove_file (5,889,454 samples, 0.02%)</title><rect x="266.8" y="453" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="269.78" y="463.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (2,846,267 samples, 0.01%)</title><rect x="1175.1" y="437" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1178.07" y="447.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (17,540,587 samples, 0.06%)</title><rect x="919.3" y="325" width="0.7" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="922.31" y="335.5" ></text>
</g>
<g >
<title>iput (171,371,580 samples, 0.58%)</title><rect x="253.2" y="405" width="6.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="256.23" y="415.5" ></text>
</g>
<g >
<title>__radix_tree_preload (25,444,762 samples, 0.09%)</title><rect x="931.1" y="309" width="1.0" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="934.09" y="319.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (44,069,499 samples, 0.15%)</title><rect x="114.3" y="341" width="1.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="117.27" y="351.5" ></text>
</g>
<g >
<title>runtime.findObject (3,748,294 samples, 0.01%)</title><rect x="622.8" y="213" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="625.76" y="223.5" ></text>
</g>
<g >
<title>__cond_resched (12,802,613 samples, 0.04%)</title><rect x="20.8" y="501" width="0.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="23.81" y="511.5" ></text>
</g>
<g >
<title>runtime.findObject (22,301,939 samples, 0.08%)</title><rect x="583.2" y="389" width="0.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="586.21" y="399.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (50,055,300 samples, 0.17%)</title><rect x="150.2" y="293" width="2.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="153.22" y="303.5" ></text>
</g>
<g >
<title>check_mem_access (2,968,669 samples, 0.01%)</title><rect x="629.8" y="213" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="632.81" y="223.5" ></text>
</g>
<g >
<title>put_cpu_partial (35,133,334 samples, 0.12%)</title><rect x="240.5" y="373" width="1.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="243.53" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,884,260 samples, 0.01%)</title><rect x="610.3" y="293" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="613.31" y="303.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (27,724,782 samples, 0.09%)</title><rect x="872.7" y="197" width="1.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="875.68" y="207.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (3,871,318 samples, 0.01%)</title><rect x="788.3" y="245" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="791.29" y="255.5" ></text>
</g>
<g >
<title>strlen (8,887,766 samples, 0.03%)</title><rect x="839.5" y="293" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="842.49" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (30,818,268 samples, 0.10%)</title><rect x="645.4" y="309" width="1.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="648.35" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (3,850,384 samples, 0.01%)</title><rect x="660.8" y="485" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="663.77" y="495.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (7,796,809 samples, 0.03%)</title><rect x="531.2" y="485" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="534.22" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (22,081,808 samples, 0.07%)</title><rect x="652.1" y="405" width="0.9" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="655.10" y="415.5" ></text>
</g>
<g >
<title>_copy_from_user (47,815,056 samples, 0.16%)</title><rect x="717.5" y="341" width="1.9" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="720.51" y="351.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (11,545,533 samples, 0.04%)</title><rect x="475.1" y="245" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="478.07" y="255.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (8,106,365,945 samples, 27.39%)</title><rect x="675.7" y="421" width="323.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="678.70" y="431.5" >runtime/internal/syscall.Syscall6</text>
</g>
<g >
<title>security_capable (165,847,302 samples, 0.56%)</title><rect x="909.2" y="309" width="6.6" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="912.23" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (21,748,827 samples, 0.07%)</title><rect x="618.8" y="293" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="621.76" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (7,536,361 samples, 0.03%)</title><rect x="584.8" y="389" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="587.79" y="399.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,888,724 samples, 0.01%)</title><rect x="891.9" y="229" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="894.86" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (5,269,153 samples, 0.02%)</title><rect x="381.8" y="517" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="384.79" y="527.5" ></text>
</g>
<g >
<title>__rcu_read_lock (9,221,979 samples, 0.03%)</title><rect x="818.4" y="213" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="821.43" y="223.5" ></text>
</g>
<g >
<title>ima_file_free (3,589,317 samples, 0.01%)</title><rect x="282.6" y="469" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="285.58" y="479.5" ></text>
</g>
<g >
<title>new_slab (48,716,055 samples, 0.16%)</title><rect x="757.3" y="181" width="2.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="760.33" y="191.5" ></text>
</g>
<g >
<title>runtime.typehash (3,891,175 samples, 0.01%)</title><rect x="617.9" y="309" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="620.92" y="319.5" ></text>
</g>
<g >
<title>node_tag_clear (16,616,620 samples, 0.06%)</title><rect x="929.8" y="277" width="0.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="932.76" y="287.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (10,808,809 samples, 0.04%)</title><rect x="773.0" y="117" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="776.00" y="127.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9,885,421 samples, 0.03%)</title><rect x="572.2" y="421" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="575.16" y="431.5" ></text>
</g>
<g >
<title>runtime.memmove (196,226,171 samples, 0.66%)</title><rect x="586.7" y="533" width="7.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="589.70" y="543.5" ></text>
</g>
<g >
<title>runtime.callers (2,951,878 samples, 0.01%)</title><rect x="514.1" y="453" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="517.06" y="463.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (378,391,524 samples, 1.28%)</title><rect x="481.7" y="293" width="15.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="484.68" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (31,628,315 samples, 0.11%)</title><rect x="807.6" y="229" width="1.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="810.64" y="239.5" ></text>
</g>
<g >
<title>rcu_core (2,986,287 samples, 0.01%)</title><rect x="231.4" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="234.37" y="319.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (757,965,170 samples, 2.56%)</title><rect x="938.8" y="373" width="30.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="941.81" y="383.5" >sy..</text>
</g>
<g >
<title>__handle_mm_fault (49,980,837 samples, 0.17%)</title><rect x="1185.7" y="453" width="2.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1188.69" y="463.5" ></text>
</g>
<g >
<title>error_entry (13,666,478 samples, 0.05%)</title><rect x="593.7" y="517" width="0.5" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="596.70" y="527.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,874,958 samples, 0.01%)</title><rect x="626.5" y="181" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="629.46" y="191.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (4,596,117 samples, 0.02%)</title><rect x="813.8" y="181" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="816.77" y="191.5" ></text>
</g>
<g >
<title>rb_next (4,626,017 samples, 0.02%)</title><rect x="206.5" y="373" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="209.53" y="383.5" ></text>
</g>
<g >
<title>irqentry_exit (3,864,167 samples, 0.01%)</title><rect x="629.1" y="309" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="632.14" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,635,701 samples, 0.02%)</title><rect x="658.2" y="325" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="661.17" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock (33,124,144 samples, 0.11%)</title><rect x="737.3" y="277" width="1.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="740.28" y="287.5" ></text>
</g>
<g >
<title>runtime.mcall (5,139,117 samples, 0.02%)</title><rect x="390.6" y="581" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="393.57" y="591.5" ></text>
</g>
<g >
<title>rcu_core (3,006,352 samples, 0.01%)</title><rect x="249.4" y="213" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="252.36" y="223.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (8,419,326 samples, 0.03%)</title><rect x="185.6" y="389" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="188.61" y="399.5" ></text>
</g>
<g >
<title>security_bpf (3,870,837 samples, 0.01%)</title><rect x="937.9" y="357" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="940.90" y="367.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (6,433,021 samples, 0.02%)</title><rect x="109.9" y="357" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="112.88" y="367.5" ></text>
</g>
<g >
<title>try_charge_memcg (3,685,427 samples, 0.01%)</title><rect x="892.4" y="245" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="895.39" y="255.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (50,908,508 samples, 0.17%)</title><rect x="150.2" y="309" width="2.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="153.21" y="319.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (113,812,742 samples, 0.38%)</title><rect x="665.8" y="405" width="4.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="668.83" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (54,510,716 samples, 0.18%)</title><rect x="1185.7" y="469" width="2.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1188.69" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7,015,409,693 samples, 23.70%)</title><rect x="690.4" y="405" width="279.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="693.44" y="415.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>expand_files (2,949,139 samples, 0.01%)</title><rect x="849.6" y="293" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="852.57" y="303.5" ></text>
</g>
<g >
<title>__x64_sys_read (1,525,902,698 samples, 5.16%)</title><rect x="436.2" y="357" width="60.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="439.17" y="367.5" >__x64_..</text>
</g>
<g >
<title>__sys_bpf (13,566,870 samples, 0.05%)</title><rect x="711.0" y="373" width="0.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="713.98" y="383.5" ></text>
</g>
<g >
<title>fd_install (37,751,942 samples, 0.13%)</title><rect x="915.8" y="325" width="1.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="918.84" y="335.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (3,081,937 samples, 0.01%)</title><rect x="839.9" y="309" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="842.87" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (686,803,985 samples, 2.32%)</title><rect x="759.8" y="245" width="27.4" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="762.83" y="255.5" >k..</text>
</g>
<g >
<title>kmem_cache_free (38,450,310 samples, 0.13%)</title><rect x="187.6" y="245" width="1.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="190.62" y="255.5" ></text>
</g>
<g >
<title>runtime.interhash (3,887,682 samples, 0.01%)</title><rect x="613.9" y="341" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="616.90" y="351.5" ></text>
</g>
<g >
<title>free_slab (21,714,058 samples, 0.07%)</title><rect x="241.0" y="325" width="0.9" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="244.01" y="335.5" ></text>
</g>
<g >
<title>kmem_cache_free (74,112,571 samples, 0.25%)</title><rect x="159.2" y="261" width="3.0" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="162.20" y="271.5" ></text>
</g>
<g >
<title>__alloc_pages (4,485,627 samples, 0.02%)</title><rect x="1169.2" y="261" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1172.20" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,655,677 samples, 0.04%)</title><rect x="572.1" y="437" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="575.13" y="447.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (74,663,371 samples, 0.25%)</title><rect x="750.0" y="213" width="3.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="753.04" y="223.5" ></text>
</g>
<g >
<title>x86_pmu_disable (149,459,359 samples, 0.50%)</title><rect x="213.6" y="341" width="6.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="216.64" y="351.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (5,213,170 samples, 0.02%)</title><rect x="188.9" y="229" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="191.91" y="239.5" ></text>
</g>
<g >
<title>get_sigframe (3,032,113 samples, 0.01%)</title><rect x="1188.1" y="373" width="0.1" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="1191.10" y="383.5" ></text>
</g>
<g >
<title>rcu_core_si (2,877,797 samples, 0.01%)</title><rect x="274.3" y="357" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="277.32" y="367.5" ></text>
</g>
<g >
<title>fput (31,352,099 samples, 0.11%)</title><rect x="31.5" y="453" width="1.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="34.48" y="463.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (9,326,743 samples, 0.03%)</title><rect x="419.1" y="485" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="422.06" y="495.5" ></text>
</g>
<g >
<title>charge_memcg (3,106,381 samples, 0.01%)</title><rect x="644.7" y="341" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="647.71" y="351.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (3,842,690 samples, 0.01%)</title><rect x="596.8" y="293" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="599.83" y="303.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (32,060,705 samples, 0.11%)</title><rect x="657.1" y="421" width="1.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="660.11" y="431.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (8,217,481 samples, 0.03%)</title><rect x="123.6" y="341" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="126.62" y="351.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (3,847,155 samples, 0.01%)</title><rect x="646.4" y="277" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="649.43" y="287.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (783,884,968 samples, 2.65%)</title><rect x="540.5" y="421" width="31.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="543.53" y="431.5" >ru..</text>
</g>
<g >
<title>runtime.findRunnable (3,114,059 samples, 0.01%)</title><rect x="1189.7" y="565" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="1192.71" y="575.5" ></text>
</g>
<g >
<title>__update_load_avg_se (9,258,930 samples, 0.03%)</title><rect x="130.4" y="277" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="133.45" y="287.5" ></text>
</g>
<g >
<title>runtime.gcenable.func2 (8,270,967 samples, 0.03%)</title><rect x="400.0" y="629" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="402.97" y="639.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (17,427,804 samples, 0.06%)</title><rect x="904.6" y="325" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="907.60" y="335.5" ></text>
</g>
<g >
<title>_copy_from_user (11,652,882 samples, 0.04%)</title><rect x="937.2" y="357" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="940.18" y="367.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (5,595,821 samples, 0.02%)</title><rect x="402.3" y="517" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="405.32" y="527.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,868,925 samples, 0.01%)</title><rect x="628.5" y="341" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="631.46" y="351.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (45,754,830 samples, 0.15%)</title><rect x="150.4" y="277" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="153.39" y="287.5" ></text>
</g>
<g >
<title>runtime.goexit.abi0 (22,639,035,523 samples, 76.49%)</title><rect x="286.9" y="645" width="902.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="289.91" y="655.5" >runtime.goexit.abi0</text>
</g>
<g >
<title>runtime.makeslice (240,775,696 samples, 0.81%)</title><rect x="499.4" y="501" width="9.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="502.44" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (19,899,679 samples, 0.07%)</title><rect x="652.1" y="341" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="655.13" y="351.5" ></text>
</g>
<g >
<title>native_write_msr (149,036,840 samples, 0.50%)</title><rect x="213.7" y="325" width="5.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="216.66" y="335.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (54,330,166 samples, 0.18%)</title><rect x="269.0" y="453" width="2.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="271.97" y="463.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (79,212,507 samples, 0.27%)</title><rect x="36.6" y="389" width="3.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="39.56" y="399.5" ></text>
</g>
<g >
<title>runtime.memmove (6,944,778 samples, 0.02%)</title><rect x="619.9" y="357" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="622.93" y="367.5" ></text>
</g>
<g >
<title>__slab_free (139,573,088 samples, 0.47%)</title><rect x="237.8" y="389" width="5.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="240.85" y="399.5" ></text>
</g>
<g >
<title>__folio_alloc (6,986,024 samples, 0.02%)</title><rect x="599.3" y="149" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="602.35" y="159.5" ></text>
</g>
<g >
<title>__do_softirq (2,897,719 samples, 0.01%)</title><rect x="59.2" y="373" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="62.17" y="383.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,847,104 samples, 0.01%)</title><rect x="261.9" y="277" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="264.87" y="287.5" ></text>
</g>
<g >
<title>runtime.greyobject (13,542,128 samples, 0.05%)</title><rect x="655.9" y="325" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="658.93" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (100,108,824 samples, 0.34%)</title><rect x="1006.7" y="373" width="4.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1009.74" y="383.5" ></text>
</g>
<g >
<title>os.(*File).Read (784,664,254 samples, 2.65%)</title><rect x="540.5" y="485" width="31.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="543.50" y="495.5" >os..</text>
</g>
<g >
<title>d_alloc_pseudo (999,352,767 samples, 3.38%)</title><rect x="792.0" y="277" width="39.8" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="795.00" y="287.5" >d_a..</text>
</g>
<g >
<title>rcu_do_batch (9,435,283 samples, 0.03%)</title><rect x="243.5" y="277" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="246.48" y="287.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,401,702 samples, 0.02%)</title><rect x="658.2" y="373" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="661.17" y="383.5" ></text>
</g>
<g >
<title>runtime.callers (3,094,459 samples, 0.01%)</title><rect x="658.9" y="405" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="661.89" y="415.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,118,416 samples, 0.01%)</title><rect x="484.7" y="261" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="487.73" y="271.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (3,962,442 samples, 0.01%)</title><rect x="12.9" y="437" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="15.91" y="447.5" ></text>
</g>
<g >
<title>syscall.read (784,664,254 samples, 2.65%)</title><rect x="540.5" y="453" width="31.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="543.50" y="463.5" >sy..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,141,385 samples, 0.03%)</title><rect x="270.8" y="437" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="273.81" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (11,171,476 samples, 0.04%)</title><rect x="243.4" y="373" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="246.41" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,849,119 samples, 0.01%)</title><rect x="620.1" y="341" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="623.06" y="351.5" ></text>
</g>
<g >
<title>error_entry (4,655,081 samples, 0.02%)</title><rect x="617.0" y="325" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="619.96" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (21,233,817 samples, 0.07%)</title><rect x="1180.4" y="405" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1183.37" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (11,389,793 samples, 0.04%)</title><rect x="1180.6" y="325" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1183.64" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (6,918,434 samples, 0.02%)</title><rect x="631.1" y="389" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="634.14" y="399.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (4,942,404 samples, 0.02%)</title><rect x="227.9" y="405" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="230.88" y="415.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,530,209 samples, 0.01%)</title><rect x="259.9" y="245" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="262.92" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (13,003,326 samples, 0.04%)</title><rect x="572.1" y="485" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="575.13" y="495.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (195,912,166 samples, 0.66%)</title><rect x="841.9" y="309" width="7.8" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="844.87" y="319.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (3,793,604 samples, 0.01%)</title><rect x="938.7" y="373" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="941.66" y="383.5" ></text>
</g>
<g >
<title>file_free_rcu (10,041,008 samples, 0.03%)</title><rect x="259.4" y="245" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="262.45" y="255.5" ></text>
</g>
<g >
<title>resched_curr (9,571,825 samples, 0.03%)</title><rect x="122.9" y="309" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="125.90" y="319.5" ></text>
</g>
<g >
<title>runtime.memmove (25,626,208 samples, 0.09%)</title><rect x="618.7" y="325" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="621.66" y="335.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,185,388 samples, 0.01%)</title><rect x="364.6" y="533" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="367.62" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Union).copy (3,096,884 samples, 0.01%)</title><rect x="613.2" y="341" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="616.19" y="351.5" ></text>
</g>
<g >
<title>__do_softirq (11,171,476 samples, 0.04%)</title><rect x="243.4" y="325" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="246.41" y="335.5" ></text>
</g>
<g >
<title>free_unref_page_commit (3,127,132 samples, 0.01%)</title><rect x="36.3" y="405" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="39.34" y="415.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (21,222,348 samples, 0.07%)</title><rect x="918.3" y="309" width="0.9" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="921.35" y="319.5" ></text>
</g>
<g >
<title>__update_load_avg_se (34,398,594 samples, 0.12%)</title><rect x="204.0" y="341" width="1.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="207.02" y="351.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (6,895,646 samples, 0.02%)</title><rect x="165.4" y="437" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="168.44" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (4,320,560,107 samples, 14.60%)</title><rect x="999.6" y="469" width="172.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1002.62" y="479.5" >github.com/cilium/ebpf..</text>
</g>
<g >
<title>__radix_tree_preload (5,432,548 samples, 0.02%)</title><rect x="732.8" y="325" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="735.82" y="335.5" ></text>
</g>
<g >
<title>___slab_alloc (449,098,058 samples, 1.52%)</title><rect x="857.7" y="245" width="17.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="860.69" y="255.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (6,219,421 samples, 0.02%)</title><rect x="1183.1" y="517" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1186.07" y="527.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,188,892 samples, 0.02%)</title><rect x="611.6" y="277" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="614.64" y="287.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6,816,359 samples, 0.02%)</title><rect x="154.2" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="157.16" y="415.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,990,293 samples, 0.02%)</title><rect x="619.3" y="181" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="622.28" y="191.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (3,815,070 samples, 0.01%)</title><rect x="578.7" y="485" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="581.69" y="495.5" ></text>
</g>
<g >
<title>irqentry_exit (11,697,884 samples, 0.04%)</title><rect x="593.2" y="485" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="596.23" y="495.5" ></text>
</g>
<g >
<title>rcu_core_si (6,874,312 samples, 0.02%)</title><rect x="67.2" y="373" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="70.24" y="383.5" ></text>
</g>
<g >
<title>runtime.sysmon (38,259,817 samples, 0.13%)</title><rect x="17.0" y="581" width="1.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="19.99" y="591.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,956,328 samples, 0.02%)</title><rect x="824.7" y="181" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="827.65" y="191.5" ></text>
</g>
<g >
<title>mmap_region (4,619,799 samples, 0.02%)</title><rect x="1011.6" y="165" width="0.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="1014.62" y="175.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (45,082,339 samples, 0.15%)</title><rect x="37.9" y="357" width="1.8" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="40.86" y="367.5" ></text>
</g>
<g >
<title>perf_ctx_disable (2,767,412 samples, 0.01%)</title><rect x="14.9" y="373" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="17.86" y="383.5" ></text>
</g>
<g >
<title>file_free_rcu (104,149,216 samples, 0.35%)</title><rect x="158.0" y="277" width="4.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="161.01" y="287.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (3,789,248 samples, 0.01%)</title><rect x="109.7" y="357" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="112.70" y="367.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (103,341,109 samples, 0.35%)</title><rect x="535.0" y="501" width="4.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="538.00" y="511.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (11,628,885 samples, 0.04%)</title><rect x="198.4" y="341" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="201.42" y="351.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (8,011,113 samples, 0.03%)</title><rect x="297.7" y="517" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="300.66" y="527.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (3,829,993 samples, 0.01%)</title><rect x="247.7" y="373" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="250.69" y="383.5" ></text>
</g>
<g >
<title>do_sched_yield (5,281,897 samples, 0.02%)</title><rect x="296.1" y="469" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="299.11" y="479.5" ></text>
</g>
<g >
<title>rcu_core (8,977,304 samples, 0.03%)</title><rect x="280.1" y="293" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="283.09" y="303.5" ></text>
</g>
<g >
<title>new_slab (426,925,929 samples, 1.44%)</title><rect x="858.6" y="229" width="17.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="861.58" y="239.5" ></text>
</g>
<g >
<title>fd_install (47,102,985 samples, 0.16%)</title><rect x="840.0" y="309" width="1.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="842.99" y="319.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (453,751,246 samples, 1.53%)</title><rect x="405.6" y="501" width="18.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="408.58" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (2,920,944 samples, 0.01%)</title><rect x="240.8" y="341" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="243.76" y="351.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (3,741,219 samples, 0.01%)</title><rect x="784.9" y="181" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="787.89" y="191.5" ></text>
</g>
<g >
<title>allocate_slab (196,837,297 samples, 0.67%)</title><rect x="799.7" y="197" width="7.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="802.73" y="207.5" ></text>
</g>
<g >
<title>wp_page_copy (4,635,701 samples, 0.02%)</title><rect x="658.2" y="293" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="661.17" y="303.5" ></text>
</g>
<g >
<title>runtime.growslice (58,543,614 samples, 0.20%)</title><rect x="511.8" y="517" width="2.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="514.85" y="527.5" ></text>
</g>
<g >
<title>rcu_do_batch (7,519,213 samples, 0.03%)</title><rect x="270.8" y="325" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="273.83" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (5,447,885 samples, 0.02%)</title><rect x="599.4" y="101" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="602.38" y="111.5" ></text>
</g>
<g >
<title>file_free_rcu (3,296,657 samples, 0.01%)</title><rect x="67.0" y="309" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="70.00" y="319.5" ></text>
</g>
<g >
<title>runtime.markroot (571,875,802 samples, 1.93%)</title><rect x="296.0" y="565" width="22.8" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="299.01" y="575.5" >r..</text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (6,694,197 samples, 0.02%)</title><rect x="495.9" y="277" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="498.85" y="287.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,575,610 samples, 0.02%)</title><rect x="780.4" y="213" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="783.39" y="223.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (18,645,222 samples, 0.06%)</title><rect x="893.9" y="261" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="896.95" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadRawSpec (358,181,614 samples, 1.21%)</title><rect x="594.6" y="357" width="14.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="597.61" y="367.5" ></text>
</g>
<g >
<title>dentry_free (13,779,702 samples, 0.05%)</title><rect x="262.3" y="437" width="0.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="265.32" y="447.5" ></text>
</g>
<g >
<title>idr_preload (27,748,122 samples, 0.09%)</title><rect x="931.0" y="325" width="1.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="934.00" y="335.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (222,877,329 samples, 0.75%)</title><rect x="423.7" y="501" width="8.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="426.67" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (6,730,721 samples, 0.02%)</title><rect x="1169.5" y="309" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1172.53" y="319.5" ></text>
</g>
<g >
<title>memcg_account_kmem (4,582,197 samples, 0.02%)</title><rect x="829.5" y="197" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="832.52" y="207.5" ></text>
</g>
<g >
<title>runtime.efaceeq (5,388,658 samples, 0.02%)</title><rect x="430.9" y="437" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="433.85" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (9,224,259 samples, 0.03%)</title><rect x="1011.4" y="245" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1014.43" y="255.5" ></text>
</g>
<g >
<title>__get_random_u32_below (6,952,723 samples, 0.02%)</title><rect x="875.0" y="181" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="878.04" y="191.5" ></text>
</g>
<g >
<title>ttwu_do_activate (456,061,101 samples, 1.54%)</title><rect x="120.0" y="357" width="18.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="122.98" y="367.5" ></text>
</g>
<g >
<title>runtime.greyobject (9,847,128 samples, 0.03%)</title><rect x="622.9" y="213" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="625.91" y="223.5" ></text>
</g>
<g >
<title>__schedule (53,208,022 samples, 0.18%)</title><rect x="13.4" y="437" width="2.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="16.40" y="447.5" ></text>
</g>
<g >
<title>gcWriteBarrier (3,436,995 samples, 0.01%)</title><rect x="1175.0" y="485" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1178.04" y="495.5" ></text>
</g>
<g >
<title>irq_exit_rcu (9,060,668 samples, 0.03%)</title><rect x="286.4" y="453" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="289.41" y="463.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (28,425,814 samples, 0.10%)</title><rect x="182.3" y="325" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="185.33" y="335.5" ></text>
</g>
<g >
<title>runtime.profilealloc (3,094,459 samples, 0.01%)</title><rect x="658.9" y="437" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="661.89" y="447.5" ></text>
</g>
<g >
<title>runtime.memmove (19,379,659 samples, 0.07%)</title><rect x="626.2" y="341" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="629.22" y="351.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (36,408,207 samples, 0.12%)</title><rect x="751.6" y="197" width="1.4" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="754.57" y="207.5" ></text>
</g>
<g >
<title>complete_signal (4,334,419 samples, 0.01%)</title><rect x="298.5" y="373" width="0.1" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="301.47" y="383.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (1,820,545,605 samples, 6.15%)</title><rect x="521.9" y="549" width="72.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="524.94" y="559.5" >github.c..</text>
</g>
<g >
<title>runtime.exitsyscall (124,613,663 samples, 0.42%)</title><rect x="670.4" y="421" width="4.9" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="673.36" y="431.5" ></text>
</g>
<g >
<title>do_wp_page (7,763,253 samples, 0.03%)</title><rect x="600.6" y="213" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="603.59" y="223.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (5,398,736 samples, 0.02%)</title><rect x="530.8" y="485" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="533.85" y="495.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (3,827,275 samples, 0.01%)</title><rect x="524.5" y="517" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="527.52" y="527.5" ></text>
</g>
<g >
<title>check_preempt_curr (76,801,341 samples, 0.26%)</title><rect x="120.6" y="341" width="3.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="123.55" y="351.5" ></text>
</g>
<g >
<title>rcu_core_si (11,171,476 samples, 0.04%)</title><rect x="243.4" y="309" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="246.41" y="319.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2,526,258 samples, 0.01%)</title><rect x="298.8" y="469" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="301.77" y="479.5" ></text>
</g>
<g >
<title>file_free_rcu (6,762,088 samples, 0.02%)</title><rect x="157.6" y="293" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="160.59" y="303.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (4,839,645 samples, 0.02%)</title><rect x="14.3" y="421" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="17.32" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (9,009,977 samples, 0.03%)</title><rect x="11.9" y="469" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="14.93" y="479.5" ></text>
</g>
<g >
<title>init_file (33,104,186 samples, 0.11%)</title><rect x="790.2" y="261" width="1.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="793.21" y="271.5" ></text>
</g>
<g >
<title>mod_objcg_state (10,827,090 samples, 0.04%)</title><rect x="161.3" y="245" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="164.33" y="255.5" ></text>
</g>
<g >
<title>rcu_core_si (17,256,564 samples, 0.06%)</title><rect x="89.7" y="325" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="92.70" y="335.5" ></text>
</g>
<g >
<title>get_random_u32 (6,798,720 samples, 0.02%)</title><rect x="775.8" y="149" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="778.78" y="159.5" ></text>
</g>
<g >
<title>errors.Is (3,869,638 samples, 0.01%)</title><rect x="400.7" y="533" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="403.74" y="543.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (1,640,485,512 samples, 5.54%)</title><rect x="432.6" y="501" width="65.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="435.56" y="511.5" >io.Read..</text>
</g>
<g >
<title>do_user_addr_fault (4,516,285 samples, 0.02%)</title><rect x="381.8" y="501" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="384.79" y="511.5" ></text>
</g>
<g >
<title>__alloc_pages (6,787,401 samples, 0.02%)</title><rect x="572.3" y="341" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="575.28" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (3,132,615 samples, 0.01%)</title><rect x="506.4" y="405" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="509.44" y="415.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (2,995,744,926 samples, 10.12%)</title><rect x="400.9" y="533" width="119.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="403.89" y="543.5" >github.com/EMn..</text>
</g>
<g >
<title>__rcu_read_unlock (13,141,922 samples, 0.04%)</title><rect x="808.9" y="229" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="811.91" y="239.5" ></text>
</g>
<g >
<title>rcu_core (87,361,728 samples, 0.30%)</title><rect x="186.8" y="293" width="3.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="189.81" y="303.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8,658,116 samples, 0.03%)</title><rect x="15.6" y="501" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="18.57" y="511.5" ></text>
</g>
<g >
<title>alloc_empty_file (1,253,159,403 samples, 4.23%)</title><rect x="740.3" y="261" width="49.9" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="743.25" y="271.5" >alloc..</text>
</g>
<g >
<title>runtime.bgsweep (239,973,804 samples, 0.81%)</title><rect x="390.4" y="613" width="9.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="393.41" y="623.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (3,064,187 samples, 0.01%)</title><rect x="509.2" y="517" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="512.23" y="527.5" ></text>
</g>
<g >
<title>check_preempt_curr (3,362,413 samples, 0.01%)</title><rect x="116.6" y="357" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="119.62" y="367.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (9,305,150 samples, 0.03%)</title><rect x="605.9" y="261" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="608.87" y="271.5" ></text>
</g>
<g >
<title>__free_pages (3,431,253 samples, 0.01%)</title><rect x="278.3" y="325" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="281.29" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,423,104 samples, 0.02%)</title><rect x="604.1" y="293" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="607.14" y="303.5" ></text>
</g>
<g >
<title>_get_random_bytes (4,604,033 samples, 0.02%)</title><rect x="875.1" y="149" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="878.14" y="159.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (7,510,013 samples, 0.03%)</title><rect x="1169.5" y="357" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1172.53" y="367.5" ></text>
</g>
<g >
<title>zap_pte_range (62,175,804 samples, 0.21%)</title><rect x="37.2" y="373" width="2.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="40.24" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,078,206 samples, 0.01%)</title><rect x="609.8" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="612.85" y="287.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,022,072 samples, 0.01%)</title><rect x="261.8" y="373" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="264.85" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.CORERelocate (358,961,668 samples, 1.21%)</title><rect x="594.6" y="405" width="14.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="597.58" y="415.5" ></text>
</g>
<g >
<title>rcu_core (11,171,476 samples, 0.04%)</title><rect x="243.4" y="293" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="246.41" y="303.5" ></text>
</g>
<g >
<title>rcu_do_batch (3,006,352 samples, 0.01%)</title><rect x="249.4" y="197" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="252.36" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,874,312 samples, 0.02%)</title><rect x="67.2" y="453" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="70.24" y="463.5" ></text>
</g>
<g >
<title>get_signal (6,707,356,879 samples, 22.66%)</title><rect x="19.3" y="549" width="267.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="22.34" y="559.5" >get_signal</text>
</g>
<g >
<title>runtime.interequal (3,884,106 samples, 0.01%)</title><rect x="617.2" y="325" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="620.18" y="335.5" ></text>
</g>
<g >
<title>dequeue_task_fair (19,986,773 samples, 0.07%)</title><rect x="13.5" y="405" width="0.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="16.50" y="415.5" ></text>
</g>
<g >
<title>__do_softirq (2,939,250 samples, 0.01%)</title><rect x="232.5" y="325" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="235.51" y="335.5" ></text>
</g>
<g >
<title>bpf_seq_write (3,773,227 samples, 0.01%)</title><rect x="494.6" y="261" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="497.64" y="271.5" ></text>
</g>
<g >
<title>clear_page_erms (5,445,797 samples, 0.02%)</title><rect x="849.1" y="149" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="852.07" y="159.5" ></text>
</g>
<g >
<title>do_syscall_64 (12,883,594 samples, 0.04%)</title><rect x="678.0" y="405" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="681.02" y="415.5" ></text>
</g>
<g >
<title>psi_group_change (2,788,178 samples, 0.01%)</title><rect x="132.1" y="325" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="135.14" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,986,287 samples, 0.01%)</title><rect x="231.4" y="357" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="234.37" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (174,553,082 samples, 0.59%)</title><rect x="157.4" y="389" width="7.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="160.42" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.parseBTF (182,796,012 samples, 0.62%)</title><rect x="601.5" y="341" width="7.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="604.51" y="351.5" ></text>
</g>
<g >
<title>rcu_core (10,437,139 samples, 0.04%)</title><rect x="247.3" y="277" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="250.27" y="287.5" ></text>
</g>
<g >
<title>__vmalloc_node_range (5,445,797 samples, 0.02%)</title><rect x="849.1" y="229" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="852.07" y="239.5" ></text>
</g>
<g >
<title>____fput (36,664,465 samples, 0.12%)</title><rect x="19.3" y="501" width="1.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="22.34" y="511.5" ></text>
</g>
<g >
<title>new_slab (6,882,915 samples, 0.02%)</title><rect x="928.6" y="229" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="931.58" y="239.5" ></text>
</g>
<g >
<title>kmem_cache_free (171,489,640 samples, 0.58%)</title><rect x="274.6" y="437" width="6.8" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="277.59" y="447.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (13,145,474 samples, 0.04%)</title><rect x="16.3" y="597" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="19.28" y="607.5" ></text>
</g>
<g >
<title>rcu_core (9,060,668 samples, 0.03%)</title><rect x="286.4" y="389" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="289.41" y="399.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (3,663,862 samples, 0.01%)</title><rect x="106.7" y="373" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="109.66" y="383.5" ></text>
</g>
<g >
<title>rcu_core_si (12,067,096 samples, 0.04%)</title><rect x="240.0" y="293" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="243.05" y="303.5" ></text>
</g>
<g >
<title>capable (10,581,208 samples, 0.04%)</title><rect x="724.2" y="341" width="0.4" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="727.17" y="351.5" ></text>
</g>
<g >
<title>runtime.startm (5,626,996 samples, 0.02%)</title><rect x="11.6" y="517" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="14.56" y="527.5" ></text>
</g>
<g >
<title>rcu_core (3,658,441 samples, 0.01%)</title><rect x="166.0" y="325" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="168.97" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8,541,863 samples, 0.03%)</title><rect x="600.6" y="245" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="603.56" y="255.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (6,230,489 samples, 0.02%)</title><rect x="541.3" y="325" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="544.29" y="335.5" ></text>
</g>
<g >
<title>rmqueue_bulk (8,520,617 samples, 0.03%)</title><rect x="773.1" y="101" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="776.09" y="111.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (26,165,160 samples, 0.09%)</title><rect x="631.0" y="533" width="1.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="633.96" y="543.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4,160,750 samples, 0.01%)</title><rect x="157.4" y="357" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="160.42" y="367.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1172.56" y="159.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (18,543,437 samples, 0.06%)</title><rect x="805.5" y="181" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="808.48" y="191.5" ></text>
</g>
<g >
<title>clear_page_erms (161,462,594 samples, 0.55%)</title><rect x="766.4" y="133" width="6.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="769.38" y="143.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,119,132 samples, 0.01%)</title><rect x="774.2" y="69" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="777.22" y="79.5" ></text>
</g>
<g >
<title>filp_close (313,510,631 samples, 1.06%)</title><rect x="22.9" y="469" width="12.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="25.88" y="479.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (6,169,068 samples, 0.02%)</title><rect x="723.9" y="341" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="726.92" y="351.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (3,035,834 samples, 0.01%)</title><rect x="419.4" y="485" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="422.44" y="495.5" ></text>
</g>
<g >
<title>testing.(*B).run1.func1 (16,745,919,068 samples, 56.58%)</title><rect x="521.9" y="629" width="667.6" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="524.87" y="639.5" >testing.(*B).run1.func1</text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (22,819,349 samples, 0.08%)</title><rect x="1170.4" y="341" width="0.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1173.42" y="351.5" ></text>
</g>
<g >
<title>update_process_times (5,031,490 samples, 0.02%)</title><rect x="186.5" y="277" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="189.48" y="287.5" ></text>
</g>
<g >
<title>schedule (17,873,954 samples, 0.06%)</title><rect x="17.6" y="469" width="0.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="20.64" y="479.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (4,593,727 samples, 0.02%)</title><rect x="787.2" y="245" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="790.21" y="255.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (6,730,721 samples, 0.02%)</title><rect x="1169.5" y="293" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1172.53" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mspan).init (5,444,003 samples, 0.02%)</title><rect x="652.6" y="309" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="655.58" y="319.5" ></text>
</g>
<g >
<title>madvise_collapse (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="133" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1172.56" y="143.5" ></text>
</g>
<g >
<title>runtime.procyield.abi0 (12,408,618 samples, 0.04%)</title><rect x="296.6" y="533" width="0.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="299.57" y="543.5" ></text>
</g>
<g >
<title>__irqentry_text_end (10,113,762 samples, 0.03%)</title><rect x="589.0" y="517" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="592.02" y="527.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (7,662,182 samples, 0.03%)</title><rect x="928.5" y="261" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="931.54" y="271.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (209,364,514 samples, 0.71%)</title><rect x="211.6" y="389" width="8.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="214.59" y="399.5" ></text>
</g>
<g >
<title>rcu_core_si (2,939,250 samples, 0.01%)</title><rect x="232.5" y="309" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="235.51" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,207,938 samples, 0.01%)</title><rect x="1169.6" y="53" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1172.64" y="63.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.kernelSpec (358,961,668 samples, 1.21%)</title><rect x="594.6" y="389" width="14.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="597.58" y="399.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (7,513,773 samples, 0.03%)</title><rect x="507.9" y="437" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="510.89" y="447.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (22,236,679 samples, 0.08%)</title><rect x="83.0" y="437" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="86.03" y="447.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (170,392,332 samples, 0.58%)</title><rect x="157.6" y="357" width="6.8" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="160.59" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (17,418,927 samples, 0.06%)</title><rect x="259.4" y="357" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="262.37" y="367.5" ></text>
</g>
<g >
<title>native_write_msr (113,656,223 samples, 0.38%)</title><rect x="140.1" y="309" width="4.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="143.09" y="319.5" ></text>
</g>
<g >
<title>___slab_alloc (296,603,159 samples, 1.00%)</title><rect x="764.4" y="229" width="11.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="767.38" y="239.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (3,658,441 samples, 0.01%)</title><rect x="166.0" y="373" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="168.97" y="383.5" ></text>
</g>
<g >
<title>runtime.notesleep (4,928,021 samples, 0.02%)</title><rect x="400.1" y="485" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="403.09" y="495.5" ></text>
</g>
<g >
<title>migrate_enable (3,107,452 samples, 0.01%)</title><rect x="496.6" y="277" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="499.65" y="287.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (15,156,760 samples, 0.05%)</title><rect x="149.6" y="309" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="152.60" y="319.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (35,791,992 samples, 0.12%)</title><rect x="152.7" y="389" width="1.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="155.73" y="399.5" ></text>
</g>
<g >
<title>pick_next_task (2,535,414 samples, 0.01%)</title><rect x="18.1" y="437" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="21.06" y="447.5" ></text>
</g>
<g >
<title>do_wp_page (6,201,924 samples, 0.02%)</title><rect x="628.9" y="245" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="631.86" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (7,420,562 samples, 0.03%)</title><rect x="157.1" y="405" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="160.12" y="415.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (3,073,650 samples, 0.01%)</title><rect x="1186.1" y="405" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1189.05" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (19,988,852 samples, 0.07%)</title><rect x="1169.5" y="389" width="0.8" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1172.53" y="399.5" ></text>
</g>
<g >
<title>update_cfs_group (2,628,844 samples, 0.01%)</title><rect x="13.7" y="373" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="16.72" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock (12,302,701 samples, 0.04%)</title><rect x="105.0" y="389" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="108.00" y="399.5" ></text>
</g>
<g >
<title>runtime.findRunnable (3,228,941 samples, 0.01%)</title><rect x="287.1" y="549" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="290.07" y="559.5" ></text>
</g>
<g >
<title>syscall.Syscall (784,664,254 samples, 2.65%)</title><rect x="540.5" y="437" width="31.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="543.50" y="447.5" >sy..</text>
</g>
<g >
<title>do_futex (4,127,728 samples, 0.01%)</title><rect x="11.6" y="421" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="14.57" y="431.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (64,580,221 samples, 0.22%)</title><rect x="889.6" y="245" width="2.6" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="892.62" y="255.5" ></text>
</g>
<g >
<title>array_map_free_timers (5,685,125 samples, 0.02%)</title><rect x="82.8" y="437" width="0.2" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="85.80" y="447.5" ></text>
</g>
<g >
<title>__folio_alloc (30,139,844 samples, 0.10%)</title><rect x="1186.4" y="389" width="1.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1189.39" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (22,528,647 samples, 0.08%)</title><rect x="585.7" y="501" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="588.74" y="511.5" ></text>
</g>
<g >
<title>runtime.scanobject (27,872,321 samples, 0.09%)</title><rect x="622.3" y="229" width="1.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="625.28" y="239.5" ></text>
</g>
<g >
<title>__alloc_pages (5,445,797 samples, 0.02%)</title><rect x="849.1" y="181" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="852.07" y="191.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,132,854 samples, 0.01%)</title><rect x="116.0" y="357" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="119.02" y="367.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (45,388,365 samples, 0.15%)</title><rect x="169.9" y="421" width="1.8" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="172.91" y="431.5" ></text>
</g>
<g >
<title>runtime.deferprocStack (8,499,688 samples, 0.03%)</title><rect x="1176.2" y="517" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1179.16" y="527.5" ></text>
</g>
<g >
<title>do_user_addr_fault (12,185,932 samples, 0.04%)</title><rect x="1169.0" y="373" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1171.98" y="383.5" ></text>
</g>
<g >
<title>rcu_core_si (6,200,046 samples, 0.02%)</title><rect x="169.7" y="341" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="172.66" y="351.5" ></text>
</g>
<g >
<title>error_entry (4,657,051 samples, 0.02%)</title><rect x="601.1" y="309" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="604.05" y="319.5" ></text>
</g>
<g >
<title>_get_random_bytes (5,425,735 samples, 0.02%)</title><rect x="807.2" y="133" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="810.19" y="143.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (3,755,722 samples, 0.01%)</title><rect x="627.1" y="309" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="630.11" y="319.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,020,241 samples, 0.01%)</title><rect x="621.4" y="325" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="624.37" y="335.5" ></text>
</g>
<g >
<title>___slab_alloc (6,892,211 samples, 0.02%)</title><rect x="805.7" y="133" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="808.66" y="143.5" ></text>
</g>
<g >
<title>do_syscall_64 (25,584,895 samples, 0.09%)</title><rect x="17.4" y="533" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="20.43" y="543.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (5,406,734 samples, 0.02%)</title><rect x="889.2" y="197" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="892.20" y="207.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (3,742,357 samples, 0.01%)</title><rect x="440.1" y="293" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="443.09" y="303.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,635,701 samples, 0.02%)</title><rect x="658.2" y="341" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="661.17" y="351.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (91,352,325 samples, 0.31%)</title><rect x="581.4" y="437" width="3.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="584.45" y="447.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (4,565,690 samples, 0.02%)</title><rect x="896.7" y="261" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="899.67" y="271.5" ></text>
</g>
<g >
<title>rcu_do_batch (81,608,565 samples, 0.28%)</title><rect x="187.0" y="277" width="3.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="190.02" y="287.5" ></text>
</g>
<g >
<title>__folio_alloc (4,485,627 samples, 0.02%)</title><rect x="1169.2" y="277" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1172.20" y="287.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,126,450 samples, 0.01%)</title><rect x="511.9" y="453" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="514.88" y="463.5" ></text>
</g>
<g >
<title>get_random_u32 (6,952,723 samples, 0.02%)</title><rect x="875.0" y="165" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="878.04" y="175.5" ></text>
</g>
<g >
<title>wp_page_copy (17,089,152 samples, 0.06%)</title><rect x="618.9" y="197" width="0.7" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="621.88" y="207.5" ></text>
</g>
<g >
<title>handle_pte_fault (9,885,421 samples, 0.03%)</title><rect x="572.2" y="405" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="575.16" y="415.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (91,352,325 samples, 0.31%)</title><rect x="581.4" y="453" width="3.7" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="584.45" y="463.5" ></text>
</g>
<g >
<title>security_d_instantiate (3,839,475 samples, 0.01%)</title><rect x="837.7" y="277" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="840.70" y="287.5" ></text>
</g>
<g >
<title>reflect.Value.Field (10,090,700 samples, 0.03%)</title><rect x="572.9" y="517" width="0.4" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="575.86" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (8,527,733 samples, 0.03%)</title><rect x="605.9" y="165" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="608.90" y="175.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (85,817,887 samples, 0.29%)</title><rect x="12.5" y="533" width="3.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="15.50" y="543.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2,634,272 samples, 0.01%)</title><rect x="296.2" y="405" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="299.19" y="415.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (88,104,011 samples, 0.30%)</title><rect x="110.3" y="341" width="3.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="113.27" y="351.5" ></text>
</g>
<g >
<title>__free_pages (2,538,678 samples, 0.01%)</title><rect x="188.3" y="133" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="191.32" y="143.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,874,312 samples, 0.02%)</title><rect x="67.2" y="437" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="70.24" y="447.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).putBatch (32,588,106 samples, 0.11%)</title><rect x="1180.2" y="437" width="1.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1183.18" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (452,675,438 samples, 1.53%)</title><rect x="642.7" y="485" width="18.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="645.73" y="495.5" ></text>
</g>
<g >
<title>cap_capable (20,782,293 samples, 0.07%)</title><rect x="915.0" y="293" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="918.01" y="303.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (87,327,208 samples, 0.30%)</title><rect x="182.1" y="341" width="3.5" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="185.10" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (37,445,841 samples, 0.13%)</title><rect x="591.6" y="373" width="1.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="594.56" y="383.5" ></text>
</g>
<g >
<title>kick_process (3,109,499 samples, 0.01%)</title><rect x="298.5" y="357" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="301.47" y="367.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (2,951,878 samples, 0.01%)</title><rect x="514.1" y="421" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="517.06" y="431.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (267,901,741 samples, 0.91%)</title><rect x="138.2" y="357" width="10.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="141.17" y="367.5" ></text>
</g>
<g >
<title>runtime.mallocgc (10,080,039 samples, 0.03%)</title><rect x="606.3" y="293" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="609.33" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (27,085,912 samples, 0.09%)</title><rect x="17.4" y="549" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="20.37" y="559.5" ></text>
</g>
<g >
<title>_compound_head (16,260,224 samples, 0.05%)</title><rect x="36.6" y="373" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.56" y="383.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,102,864 samples, 0.01%)</title><rect x="610.3" y="245" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="613.31" y="255.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (124,312,523 samples, 0.42%)</title><rect x="1177.8" y="469" width="4.9" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1180.77" y="479.5" ></text>
</g>
<g >
<title>[unknown] (26,954,039 samples, 0.09%)</title><rect x="10.0" y="613" width="1.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="623.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (23,693,126 samples, 0.08%)</title><rect x="577.4" y="437" width="1.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="580.44" y="447.5" ></text>
</g>
<g >
<title>shuffle_freelist (29,048,015 samples, 0.10%)</title><rect x="775.0" y="181" width="1.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="777.98" y="191.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (12,415,414 samples, 0.04%)</title><rect x="818.8" y="213" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="821.80" y="223.5" ></text>
</g>
<g >
<title>runtime.mapassign (63,983,151 samples, 0.22%)</title><rect x="597.2" y="325" width="2.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="600.17" y="335.5" ></text>
</g>
<g >
<title>mod_objcg_state (4,859,409 samples, 0.02%)</title><rect x="250.0" y="405" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="253.02" y="415.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).pop (9,390,148 samples, 0.03%)</title><rect x="391.2" y="565" width="0.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="394.19" y="575.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (152,259,930 samples, 0.51%)</title><rect x="1176.7" y="517" width="6.0" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1179.65" y="527.5" ></text>
</g>
<g >
<title>errors.Is (26,607,664 samples, 0.09%)</title><rect x="510.0" y="517" width="1.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="513.02" y="527.5" ></text>
</g>
<g >
<title>bpf_check_uarg_tail_zero (3,104,889 samples, 0.01%)</title><rect x="937.6" y="357" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="940.65" y="367.5" ></text>
</g>
<g >
<title>btf_nested_type_is_trusted (2,968,669 samples, 0.01%)</title><rect x="629.8" y="181" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="632.81" y="191.5" ></text>
</g>
<g >
<title>__alloc_pages (29,369,545 samples, 0.10%)</title><rect x="1186.4" y="373" width="1.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1189.39" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_lock (8,685,987 samples, 0.03%)</title><rect x="231.8" y="405" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="234.81" y="415.5" ></text>
</g>
<g >
<title>new_slab (5,434,659 samples, 0.02%)</title><rect x="774.2" y="117" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="777.22" y="127.5" ></text>
</g>
<g >
<title>__do_softirq (4,022,072 samples, 0.01%)</title><rect x="261.8" y="357" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="264.85" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (6,730,721 samples, 0.02%)</title><rect x="1169.5" y="341" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1172.53" y="351.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (3,112,820 samples, 0.01%)</title><rect x="765.7" y="149" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="768.68" y="159.5" ></text>
</g>
<g >
<title>runtime.(*mspan).init (3,128,518 samples, 0.01%)</title><rect x="506.3" y="341" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="509.29" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (205,403,959 samples, 0.69%)</title><rect x="500.3" y="485" width="8.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="503.27" y="495.5" ></text>
</g>
<g >
<title>encoding/binary.Read (1,410,791,638 samples, 4.77%)</title><rect x="523.1" y="533" width="56.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="526.14" y="543.5" >encod..</text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (5,196,538 samples, 0.02%)</title><rect x="629.8" y="405" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="632.75" y="415.5" ></text>
</g>
<g >
<title>__kmalloc_node (9,195,760 samples, 0.03%)</title><rect x="897.3" y="293" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="900.32" y="303.5" ></text>
</g>
<g >
<title>file_free_rcu (7,871,255 samples, 0.03%)</title><rect x="240.1" y="245" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="243.09" y="255.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,864,947 samples, 0.01%)</title><rect x="278.1" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="281.07" y="415.5" ></text>
</g>
<g >
<title>handle_signal (3,032,113 samples, 0.01%)</title><rect x="1188.1" y="405" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.10" y="415.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (4,540,282 samples, 0.02%)</title><rect x="645.0" y="357" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="647.99" y="367.5" ></text>
</g>
<g >
<title>chacha_block_generic (3,124,233 samples, 0.01%)</title><rect x="807.2" y="117" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="810.19" y="127.5" ></text>
</g>
<g >
<title>file_free_rcu (3,068,185 samples, 0.01%)</title><rect x="186.8" y="277" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="189.81" y="287.5" ></text>
</g>
<g >
<title>seq_write (2,923,945 samples, 0.01%)</title><rect x="494.5" y="245" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="497.52" y="255.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (6,164,284 samples, 0.02%)</title><rect x="1182.8" y="485" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1185.82" y="495.5" ></text>
</g>
<g >
<title>__cond_resched (1,374,192,677 samples, 4.64%)</title><rect x="174.1" y="437" width="54.8" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="177.12" y="447.5" >__con..</text>
</g>
<g >
<title>reflect.Value.SetUint (42,349,673 samples, 0.14%)</title><rect x="417.4" y="469" width="1.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="420.38" y="479.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (2,511,197 samples, 0.01%)</title><rect x="17.5" y="469" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="20.54" y="479.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (3,127,132 samples, 0.01%)</title><rect x="36.3" y="389" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="39.34" y="399.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (7,557,923 samples, 0.03%)</title><rect x="10.0" y="581" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.01" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readStringTable (30,080,101 samples, 0.10%)</title><rect x="607.5" y="325" width="1.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="610.54" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mheap).nextSpanForSweep (2,909,875 samples, 0.01%)</title><rect x="520.5" y="549" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="523.45" y="559.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,534,236,952 samples, 5.18%)</title><rect x="436.1" y="373" width="61.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="439.14" y="383.5" >do_sys..</text>
</g>
<g >
<title>__check_object_size (12,312,896 samples, 0.04%)</title><rect x="711.6" y="357" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="714.62" y="367.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (4,347,864 samples, 0.01%)</title><rect x="188.5" y="213" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="191.48" y="223.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (12,717,976 samples, 0.04%)</title><rect x="186.3" y="357" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="189.26" y="367.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (11,678,195 samples, 0.04%)</title><rect x="160.8" y="229" width="0.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="163.77" y="239.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (6,964,511 samples, 0.02%)</title><rect x="653.0" y="405" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="655.98" y="415.5" ></text>
</g>
<g >
<title>__handle_mm_fault (18,089,257 samples, 0.06%)</title><rect x="659.8" y="373" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="662.76" y="383.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (12,998,637 samples, 0.04%)</title><rect x="18.5" y="629" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="21.54" y="639.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (9,201,987 samples, 0.03%)</title><rect x="892.5" y="261" width="0.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="895.53" y="271.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,920,944 samples, 0.01%)</title><rect x="240.8" y="325" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="243.76" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (4,638,959 samples, 0.02%)</title><rect x="611.7" y="165" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="614.70" y="175.5" ></text>
</g>
<g >
<title>page_remove_rmap (10,108,557 samples, 0.03%)</title><rect x="37.5" y="357" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="40.46" y="367.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (144,721,640 samples, 0.49%)</title><rect x="822.0" y="213" width="5.8" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="825.01" y="223.5" ></text>
</g>
<g >
<title>rcu_core (16,769,317 samples, 0.06%)</title><rect x="259.4" y="277" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="262.39" y="287.5" ></text>
</g>
<g >
<title>runtime.memmove (26,368,133 samples, 0.09%)</title><rect x="598.7" y="309" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="601.67" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,881,776 samples, 0.01%)</title><rect x="595.6" y="325" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="598.57" y="335.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (6,213,594 samples, 0.02%)</title><rect x="607.2" y="277" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="610.23" y="287.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,897,719 samples, 0.01%)</title><rect x="59.2" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="62.17" y="447.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,895,498 samples, 0.01%)</title><rect x="267.5" y="389" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="270.46" y="399.5" ></text>
</g>
<g >
<title>put_prev_entity (315,097,470 samples, 1.06%)</title><rect x="193.3" y="373" width="12.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="196.27" y="383.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (13,063,911 samples, 0.04%)</title><rect x="733.9" y="309" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="736.92" y="319.5" ></text>
</g>
<g >
<title>radix_tree_node_rcu_free (10,225,622 samples, 0.03%)</title><rect x="162.2" y="277" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="165.16" y="287.5" ></text>
</g>
<g >
<title>runtime.(*mheap).initSpan (6,656,463 samples, 0.02%)</title><rect x="652.3" y="309" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="655.31" y="319.5" ></text>
</g>
<g >
<title>mntget (35,786,635 samples, 0.12%)</title><rect x="836.3" y="277" width="1.4" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="839.28" y="287.5" ></text>
</g>
<g >
<title>psi_task_change (124,409,529 samples, 0.42%)</title><rect x="132.3" y="325" width="4.9" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="135.25" y="335.5" ></text>
</g>
<g >
<title>do_wp_page (13,181,418 samples, 0.04%)</title><rect x="626.4" y="229" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="629.37" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,017,638 samples, 0.01%)</title><rect x="400.1" y="437" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="403.09" y="447.5" ></text>
</g>
<g >
<title>file_free_rcu (5,824,979 samples, 0.02%)</title><rect x="247.3" y="245" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="250.32" y="255.5" ></text>
</g>
<g >
<title>indexbytebody (6,963,468 samples, 0.02%)</title><rect x="607.8" y="293" width="0.3" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="610.78" y="303.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,939,250 samples, 0.01%)</title><rect x="232.5" y="341" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="235.51" y="351.5" ></text>
</g>
<g >
<title>runtime.(*scavengeIndex).alloc (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="261" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1172.56" y="271.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,920,944 samples, 0.01%)</title><rect x="240.8" y="213" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="243.76" y="223.5" ></text>
</g>
<g >
<title>runtime.mallocgc (10,070,564 samples, 0.03%)</title><rect x="610.5" y="309" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="613.47" y="319.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (6,874,312 samples, 0.02%)</title><rect x="67.2" y="405" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="70.24" y="415.5" ></text>
</g>
<g >
<title>sched_clock_cpu (5,489,193 samples, 0.02%)</title><rect x="137.2" y="325" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="140.21" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (34,425,228 samples, 0.12%)</title><rect x="970.1" y="405" width="1.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="973.15" y="415.5" ></text>
</g>
<g >
<title>rcu_core_si (4,022,072 samples, 0.01%)</title><rect x="261.8" y="341" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="264.85" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (30,917,288 samples, 0.10%)</title><rect x="554.9" y="293" width="1.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="557.94" y="303.5" ></text>
</g>
<g >
<title>clear_page_erms (3,865,627 samples, 0.01%)</title><rect x="928.6" y="149" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="931.58" y="159.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,485,627 samples, 0.02%)</title><rect x="1169.2" y="293" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1172.20" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (99,354,151 samples, 0.34%)</title><rect x="1006.8" y="357" width="3.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1009.77" y="367.5" ></text>
</g>
<g >
<title>check_cfs_rq_runtime (5,952,902 samples, 0.02%)</title><rect x="192.7" y="373" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="195.65" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (4,683,957 samples, 0.02%)</title><rect x="577.2" y="373" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="580.22" y="383.5" ></text>
</g>
<g >
<title>__vmalloc_area_node (5,445,797 samples, 0.02%)</title><rect x="849.1" y="213" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="852.07" y="223.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (2,846,267 samples, 0.01%)</title><rect x="1175.1" y="469" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1178.07" y="479.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,235,890 samples, 0.02%)</title><rect x="286.2" y="437" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="289.20" y="447.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,116,259 samples, 0.02%)</title><rect x="20.6" y="373" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="23.60" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,369,080 samples, 0.02%)</title><rect x="621.1" y="309" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="624.12" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (5,196,538 samples, 0.02%)</title><rect x="629.8" y="309" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="632.75" y="319.5" ></text>
</g>
<g >
<title>__queue_work (1,320,569,915 samples, 4.46%)</title><rect x="101.5" y="405" width="52.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="104.50" y="415.5" >__que..</text>
</g>
<g >
<title>rmqueue (15,209,889 samples, 0.05%)</title><rect x="872.1" y="149" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="875.05" y="159.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,102,864 samples, 0.01%)</title><rect x="610.3" y="277" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="613.31" y="287.5" ></text>
</g>
<g >
<title>__handle_mm_fault (17,865,821 samples, 0.06%)</title><rect x="618.9" y="245" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="621.88" y="255.5" ></text>
</g>
<g >
<title>___slab_alloc (54,146,997 samples, 0.18%)</title><rect x="757.1" y="197" width="2.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="760.11" y="207.5" ></text>
</g>
<g >
<title>__handle_mm_fault (13,181,418 samples, 0.04%)</title><rect x="626.4" y="261" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="629.37" y="271.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (117,823,323 samples, 0.40%)</title><rect x="565.3" y="277" width="4.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="568.28" y="287.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,951,878 samples, 0.01%)</title><rect x="514.1" y="437" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="517.06" y="447.5" ></text>
</g>
<g >
<title>set_next_entity (51,958,628 samples, 0.18%)</title><rect x="206.7" y="373" width="2.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="209.72" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*copier).copy (263,810,298 samples, 0.89%)</title><rect x="609.3" y="357" width="10.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="612.26" y="367.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (165,716,417 samples, 0.56%)</title><rect x="139.3" y="341" width="6.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="142.28" y="351.5" ></text>
</g>
<g >
<title>wp_page_copy (4,516,285 samples, 0.02%)</title><rect x="381.8" y="421" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="384.79" y="431.5" ></text>
</g>
<g >
<title>[unknown] (7,736,416 samples, 0.03%)</title><rect x="10.0" y="597" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="607.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (5,453,084 samples, 0.02%)</title><rect x="753.0" y="213" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="756.02" y="223.5" ></text>
</g>
<g >
<title>runtime.greyobject (436,906,851 samples, 1.48%)</title><rect x="364.8" y="549" width="17.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="367.84" y="559.5" ></text>
</g>
<g >
<title>runtime.(*timeHistogram).record (3,798,343 samples, 0.01%)</title><rect x="673.0" y="389" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="676.01" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (6,108,757 samples, 0.02%)</title><rect x="435.8" y="389" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="438.81" y="399.5" ></text>
</g>
<g >
<title>place_entity (12,503,837 samples, 0.04%)</title><rect x="128.2" y="293" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="131.16" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,874,810 samples, 0.01%)</title><rect x="805.7" y="69" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="808.72" y="79.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (240,952,089 samples, 0.81%)</title><rect x="250.5" y="421" width="9.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="253.46" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,200,046 samples, 0.02%)</title><rect x="169.7" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="172.66" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (8,550,955 samples, 0.03%)</title><rect x="613.4" y="325" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="616.40" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (150,392,194 samples, 0.51%)</title><rect x="601.5" y="325" width="6.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="604.54" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (22,105,960 samples, 0.07%)</title><rect x="154.4" y="405" width="0.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="157.43" y="415.5" ></text>
</g>
<g >
<title>runtime.makeslice (147,288,920 samples, 0.50%)</title><rect x="573.3" y="517" width="5.9" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="576.33" y="527.5" ></text>
</g>
<g >
<title>__kmalloc_node (25,418,694 samples, 0.09%)</title><rect x="872.7" y="181" width="1.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="875.71" y="191.5" ></text>
</g>
<g >
<title>runtime.persistentalloc.func1 (13,855,892 samples, 0.05%)</title><rect x="1011.3" y="341" width="0.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1014.28" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (129,614,439 samples, 0.44%)</title><rect x="573.8" y="501" width="5.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="576.76" y="511.5" ></text>
</g>
<g >
<title>__do_softirq (2,864,947 samples, 0.01%)</title><rect x="278.1" y="341" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="281.07" y="351.5" ></text>
</g>
<g >
<title>__free_one_page (12,450,865 samples, 0.04%)</title><rect x="38.6" y="245" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="41.63" y="255.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (91,764,872 samples, 0.31%)</title><rect x="186.8" y="341" width="3.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="189.78" y="351.5" ></text>
</g>
<g >
<title>__folio_alloc (6,103,353 samples, 0.02%)</title><rect x="1180.8" y="277" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1183.85" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (21,767,587 samples, 0.07%)</title><rect x="659.7" y="437" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="662.72" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (20,676,013 samples, 0.07%)</title><rect x="652.1" y="373" width="0.8" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="655.10" y="383.5" ></text>
</g>
<g >
<title>file_free_rcu (4,570,994 samples, 0.02%)</title><rect x="228.2" y="293" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="231.20" y="303.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (64,583,605 samples, 0.22%)</title><rect x="819.4" y="213" width="2.6" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="822.41" y="223.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (6,765,305 samples, 0.02%)</title><rect x="578.9" y="501" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="581.93" y="511.5" ></text>
</g>
<g >
<title>__folio_alloc (6,984,605 samples, 0.02%)</title><rect x="626.6" y="181" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="629.62" y="191.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (8,457,266 samples, 0.03%)</title><rect x="1011.5" y="213" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1014.46" y="223.5" ></text>
</g>
<g >
<title>rcu_core_si (3,658,441 samples, 0.01%)</title><rect x="166.0" y="341" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="168.97" y="351.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,661,652 samples, 0.02%)</title><rect x="286.2" y="357" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="289.22" y="367.5" ></text>
</g>
<g >
<title>vma_alloc_folio (32,414,597 samples, 0.11%)</title><rect x="1186.3" y="405" width="1.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1189.30" y="415.5" ></text>
</g>
<g >
<title>allocate_slab (426,925,929 samples, 1.44%)</title><rect x="858.6" y="213" width="17.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="861.58" y="223.5" ></text>
</g>
<g >
<title>rcu_core (2,920,944 samples, 0.01%)</title><rect x="240.8" y="229" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="243.76" y="239.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (3,871,532 samples, 0.01%)</title><rect x="171.7" y="437" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="174.72" y="447.5" ></text>
</g>
<g >
<title>cap_capable (53,173,224 samples, 0.18%)</title><rect x="907.1" y="309" width="2.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="910.11" y="319.5" ></text>
</g>
<g >
<title>__radix_tree_delete (4,855,799 samples, 0.02%)</title><rect x="90.4" y="405" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="93.45" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit (9,115,822 samples, 0.03%)</title><rect x="1187.9" y="485" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1190.86" y="495.5" ></text>
</g>
<g >
<title>__do_softirq (21,963,224 samples, 0.07%)</title><rect x="83.0" y="373" width="0.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="86.04" y="383.5" ></text>
</g>
<g >
<title>bpf_seq_write (3,883,654 samples, 0.01%)</title><rect x="570.0" y="277" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="572.98" y="287.5" ></text>
</g>
<g >
<title>idr_get_next (78,650,732 samples, 0.27%)</title><rect x="559.8" y="277" width="3.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="562.84" y="287.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (17,256,564 samples, 0.06%)</title><rect x="89.7" y="357" width="0.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="92.70" y="367.5" ></text>
</g>
<g >
<title>psi_flags_change (10,302,865 samples, 0.03%)</title><rect x="131.7" y="325" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="134.73" y="335.5" ></text>
</g>
<g >
<title>lockref_mark_dead (3,180,601 samples, 0.01%)</title><rect x="263.7" y="437" width="0.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="266.70" y="447.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,648,863 samples, 0.02%)</title><rect x="881.9" y="229" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="884.93" y="239.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (17,886,717 samples, 0.06%)</title><rect x="1169.5" y="373" width="0.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1172.53" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (7,695,209 samples, 0.03%)</title><rect x="642.2" y="485" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="645.23" y="495.5" ></text>
</g>
<g >
<title>alloc_pages (15,462,746 samples, 0.05%)</title><rect x="757.4" y="149" width="0.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="760.36" y="159.5" ></text>
</g>
<g >
<title>__dentry_kill (4,145,728 samples, 0.01%)</title><rect x="58.5" y="453" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="61.50" y="463.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,101,083 samples, 0.01%)</title><rect x="598.9" y="293" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="601.89" y="303.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="117" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1172.56" y="127.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (3,943,122 samples, 0.01%)</title><rect x="252.5" y="405" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="255.49" y="415.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (492,319,141 samples, 1.66%)</title><rect x="543.6" y="309" width="19.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="546.55" y="319.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (31,777,820 samples, 0.11%)</title><rect x="788.4" y="245" width="1.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="791.45" y="255.5" ></text>
</g>
<g >
<title>runtime.unlock2 (28,249,485 samples, 0.10%)</title><rect x="1160.6" y="357" width="1.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1163.61" y="367.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (18,481,816 samples, 0.06%)</title><rect x="531.5" y="485" width="0.8" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="534.53" y="495.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (11,171,476 samples, 0.04%)</title><rect x="243.4" y="389" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="246.41" y="399.5" ></text>
</g>
<g >
<title>vma_alloc_folio (8,537,236 samples, 0.03%)</title><rect x="602.2" y="197" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="605.19" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,343,668 samples, 0.01%)</title><rect x="677.9" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="680.85" y="415.5" ></text>
</g>
<g >
<title>bufio.(*Scanner).Scan (11,588,036 samples, 0.04%)</title><rect x="607.7" y="309" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="610.72" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (14,132,904 samples, 0.05%)</title><rect x="757.4" y="117" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="760.39" y="127.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (9,318,174 samples, 0.03%)</title><rect x="579.4" y="533" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="582.39" y="543.5" ></text>
</g>
<g >
<title>bpf_prog_load (5,196,538 samples, 0.02%)</title><rect x="629.8" y="277" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="632.75" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (27,912,225 samples, 0.09%)</title><rect x="602.8" y="293" width="1.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="605.84" y="303.5" ></text>
</g>
<g >
<title>do_user_addr_fault (15,520,498 samples, 0.05%)</title><rect x="599.0" y="261" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="602.04" y="271.5" ></text>
</g>
<g >
<title>__free_pages (3,907,687 samples, 0.01%)</title><rect x="36.3" y="437" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="39.31" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (4,638,959 samples, 0.02%)</title><rect x="611.7" y="133" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="614.70" y="143.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,207,946 samples, 0.02%)</title><rect x="612.8" y="309" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="615.82" y="319.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (17,035,522 samples, 0.06%)</title><rect x="146.5" y="341" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="149.48" y="351.5" ></text>
</g>
<g >
<title>shuffle_freelist (36,169,022 samples, 0.12%)</title><rect x="874.2" y="197" width="1.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="877.16" y="207.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,747,833 samples, 0.02%)</title><rect x="259.7" y="229" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="262.66" y="239.5" ></text>
</g>
<g >
<title>rcu_core_si (8,977,304 samples, 0.03%)</title><rect x="280.1" y="309" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="283.09" y="319.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (3,008,520 samples, 0.01%)</title><rect x="381.8" y="373" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="384.79" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push (8,550,955 samples, 0.03%)</title><rect x="613.4" y="309" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="616.40" y="319.5" ></text>
</g>
<g >
<title>d_set_d_op (28,217,109 samples, 0.10%)</title><rect x="794.5" y="245" width="1.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="797.53" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (13,364,996,891 samples, 45.16%)</title><rect x="640.4" y="501" width="532.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="643.37" y="511.5" >github.com/cilium/ebpf.(*MapSpec).createMap</text>
</g>
<g >
<title>bpf_seq_read (750,160,608 samples, 2.53%)</title><rect x="541.5" y="325" width="30.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="544.54" y="335.5" >bp..</text>
</g>
<g >
<title>runtime.heapBitsForAddr (3,798,698 samples, 0.01%)</title><rect x="513.9" y="373" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="516.88" y="383.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (3,801,034 samples, 0.01%)</title><rect x="432.4" y="469" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="435.38" y="479.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,188,892 samples, 0.02%)</title><rect x="611.6" y="245" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="614.64" y="255.5" ></text>
</g>
<g >
<title>runtime.memmove (3,910,284 samples, 0.01%)</title><rect x="1176.0" y="501" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1179.00" y="511.5" ></text>
</g>
<g >
<title>do_anonymous_page (17,330,613 samples, 0.06%)</title><rect x="659.8" y="341" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="662.79" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (4,312,069,293 samples, 14.57%)</title><rect x="999.9" y="453" width="171.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1002.87" y="463.5" >github.com/cilium/ebpf..</text>
</g>
<g >
<title>free_unref_page (6,602,674 samples, 0.02%)</title><rect x="162.2" y="133" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="165.21" y="143.5" ></text>
</g>
<g >
<title>exc_page_fault (3,653,720 samples, 0.01%)</title><rect x="579.1" y="469" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="582.05" y="479.5" ></text>
</g>
<g >
<title>rmqueue (5,382,789 samples, 0.02%)</title><rect x="646.4" y="293" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="649.37" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (13,957,200 samples, 0.05%)</title><rect x="626.4" y="309" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="629.37" y="319.5" ></text>
</g>
<g >
<title>runtime.mallocgc (280,279,014 samples, 0.95%)</title><rect x="647.9" y="453" width="11.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="650.94" y="463.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (3,092,634 samples, 0.01%)</title><rect x="759.3" y="197" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="762.27" y="207.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (15,706,112 samples, 0.05%)</title><rect x="498.0" y="501" width="0.6" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="500.96" y="511.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (2,633,483,020 samples, 8.90%)</title><rect x="734.8" y="309" width="105.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="737.84" y="319.5" >__anon_inode..</text>
</g>
<g >
<title>runtime.findObject (415,284,360 samples, 1.40%)</title><rect x="348.3" y="549" width="16.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="351.29" y="559.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (26,872,899 samples, 0.09%)</title><rect x="773.8" y="181" width="1.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="776.76" y="191.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (205,888,931 samples, 0.70%)</title><rect x="424.3" y="485" width="8.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="427.35" y="495.5" ></text>
</g>
<g >
<title>shuffle_freelist (30,155,823 samples, 0.10%)</title><rect x="758.1" y="149" width="1.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="761.07" y="159.5" ></text>
</g>
<g >
<title>__alloc_pages (14,132,904 samples, 0.05%)</title><rect x="757.4" y="133" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="760.39" y="143.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (51,687,962 samples, 0.17%)</title><rect x="512.0" y="469" width="2.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="515.00" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (32,750,849 samples, 0.11%)</title><rect x="591.7" y="341" width="1.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="594.71" y="351.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (9,149,330 samples, 0.03%)</title><rect x="1172.5" y="485" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1175.48" y="495.5" ></text>
</g>
<g >
<title>apparmor_capable (62,565,586 samples, 0.21%)</title><rect x="900.5" y="277" width="2.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="903.51" y="287.5" ></text>
</g>
<g >
<title>psi_task_change (3,374,052 samples, 0.01%)</title><rect x="138.0" y="341" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="141.03" y="351.5" ></text>
</g>
<g >
<title>runtime.casgstatus (31,142,991 samples, 0.11%)</title><rect x="671.9" y="405" width="1.3" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="674.91" y="415.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1 (1,822,092,960 samples, 6.16%)</title><rect x="521.9" y="565" width="72.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="524.87" y="575.5" >github.c..</text>
</g>
<g >
<title>__irq_exit_rcu (10,437,139 samples, 0.04%)</title><rect x="247.3" y="325" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="250.27" y="335.5" ></text>
</g>
<g >
<title>rcu_core_si (2,740,382 samples, 0.01%)</title><rect x="245.5" y="293" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="248.53" y="303.5" ></text>
</g>
<g >
<title>__update_load_avg_se (3,845,604 samples, 0.01%)</title><rect x="128.0" y="293" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="131.00" y="303.5" ></text>
</g>
<g >
<title>rmqueue (9,755,132 samples, 0.03%)</title><rect x="1009.4" y="197" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1012.38" y="207.5" ></text>
</g>
<g >
<title>capable (264,540,549 samples, 0.89%)</title><rect x="905.3" y="325" width="10.5" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="908.29" y="335.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6,047,856 samples, 0.02%)</title><rect x="1188.0" y="453" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1190.98" y="463.5" ></text>
</g>
<g >
<title>do_futex (3,930,893 samples, 0.01%)</title><rect x="400.1" y="405" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="403.09" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (49,839,580 samples, 0.17%)</title><rect x="465.8" y="277" width="2.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="468.77" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (6,043,487 samples, 0.02%)</title><rect x="1172.2" y="485" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1175.24" y="495.5" ></text>
</g>
<g >
<title>dnotify_flush (3,093,059 samples, 0.01%)</title><rect x="31.4" y="453" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="34.36" y="463.5" ></text>
</g>
<g >
<title>array_map_alloc (1,340,972,429 samples, 4.53%)</title><rect x="849.7" y="325" width="53.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="852.74" y="335.5" >array..</text>
</g>
<g >
<title>bpf_map_put (44,808,506 samples, 0.15%)</title><rect x="440.3" y="293" width="1.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="443.30" y="303.5" ></text>
</g>
<g >
<title>runtime.scanblock (4,596,710 samples, 0.02%)</title><rect x="1170.7" y="277" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1173.69" y="287.5" ></text>
</g>
<g >
<title>rep_movs_alternative (45,412,146 samples, 0.15%)</title><rect x="934.6" y="341" width="1.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="937.61" y="351.5" ></text>
</g>
<g >
<title>rmqueue (14,503,571 samples, 0.05%)</title><rect x="772.9" y="133" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="775.85" y="143.5" ></text>
</g>
<g >
<title>runtime.findObject (3,039,426 samples, 0.01%)</title><rect x="1171.1" y="293" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1174.12" y="303.5" ></text>
</g>
<g >
<title>runtime.memmove (3,853,100 samples, 0.01%)</title><rect x="609.8" y="325" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="612.82" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,516,285 samples, 0.02%)</title><rect x="381.8" y="469" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="384.79" y="479.5" ></text>
</g>
<g >
<title>rcu_core_si (3,006,352 samples, 0.01%)</title><rect x="249.4" y="229" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="252.36" y="239.5" ></text>
</g>
<g >
<title>update_rq_clock (85,917,788 samples, 0.29%)</title><rect x="148.8" y="357" width="3.5" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="151.85" y="367.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (23,879,185 samples, 0.08%)</title><rect x="1010.9" y="373" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1013.88" y="383.5" ></text>
</g>
<g >
<title>__alloc_pages (343,173,924 samples, 1.16%)</title><rect x="859.0" y="181" width="13.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="861.97" y="191.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9,067,912 samples, 0.03%)</title><rect x="1169.0" y="341" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1172.01" y="351.5" ></text>
</g>
<g >
<title>rcu_core_si (5,235,890 samples, 0.02%)</title><rect x="286.2" y="389" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="289.20" y="399.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,882,013 samples, 0.01%)</title><rect x="228.1" y="405" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="231.07" y="415.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (4,655,444 samples, 0.02%)</title><rect x="564.0" y="293" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="566.99" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (4,570,994 samples, 0.02%)</title><rect x="228.2" y="357" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="231.20" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (45,831,338 samples, 0.15%)</title><rect x="1007.9" y="229" width="1.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1010.94" y="239.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (3,094,459 samples, 0.01%)</title><rect x="658.9" y="421" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="661.89" y="431.5" ></text>
</g>
<g >
<title>__cond_resched (3,077,112 samples, 0.01%)</title><rect x="749.8" y="213" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="752.83" y="223.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,235,890 samples, 0.02%)</title><rect x="286.2" y="469" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="289.20" y="479.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,552,489 samples, 0.02%)</title><rect x="286.5" y="341" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="289.46" y="351.5" ></text>
</g>
<g >
<title>__slab_free (2,551,791 samples, 0.01%)</title><rect x="83.2" y="277" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="86.23" y="287.5" ></text>
</g>
<g >
<title>mntput (21,535,370 samples, 0.07%)</title><rect x="282.8" y="469" width="0.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="285.77" y="479.5" ></text>
</g>
<g >
<title>update_load_avg (4,462,368 samples, 0.02%)</title><rect x="13.9" y="373" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="16.91" y="383.5" ></text>
</g>
<g >
<title>unmap_single_vma (79,212,507 samples, 0.27%)</title><rect x="36.6" y="421" width="3.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="39.56" y="431.5" ></text>
</g>
<g >
<title>bpf_map_release (2,342,874,026 samples, 7.92%)</title><rect x="73.5" y="453" width="93.4" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="76.49" y="463.5" >bpf_map_rel..</text>
</g>
<g >
<title>rcu_core (17,256,564 samples, 0.06%)</title><rect x="89.7" y="309" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="92.70" y="319.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (2,639,000 samples, 0.01%)</title><rect x="14.4" y="405" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="17.36" y="415.5" ></text>
</g>
<g >
<title>runtime.goschedIfBusy (5,893,397 samples, 0.02%)</title><rect x="390.5" y="597" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="393.54" y="607.5" ></text>
</g>
<g >
<title>runtime.main (6,985,895 samples, 0.02%)</title><rect x="400.3" y="629" width="0.3" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="403.30" y="639.5" ></text>
</g>
<g >
<title>cap_capable (11,399,126 samples, 0.04%)</title><rect x="899.1" y="293" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="902.10" y="303.5" ></text>
</g>
<g >
<title>cache_from_obj (7,955,269 samples, 0.03%)</title><rect x="232.3" y="405" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="235.31" y="415.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,235,890 samples, 0.02%)</title><rect x="286.2" y="421" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="289.20" y="431.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (14,033,175,428 samples, 47.42%)</title><rect x="630.0" y="565" width="559.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="632.96" y="575.5" >sync.(*Once).doSlow</text>
</g>
<g >
<title>irqentry_exit (7,719,523 samples, 0.03%)</title><rect x="646.9" y="437" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="649.89" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,094,459 samples, 0.01%)</title><rect x="658.9" y="389" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="661.89" y="399.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (4,444,267 samples, 0.02%)</title><rect x="660.3" y="245" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="663.30" y="255.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,846,267 samples, 0.01%)</title><rect x="1175.1" y="453" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1178.07" y="463.5" ></text>
</g>
<g >
<title>rcu_core (2,999,957 samples, 0.01%)</title><rect x="60.5" y="341" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="63.51" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (11,611,870 samples, 0.04%)</title><rect x="604.4" y="293" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="607.36" y="303.5" ></text>
</g>
<g >
<title>do_anonymous_page (10,626,284 samples, 0.04%)</title><rect x="1180.7" y="309" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1183.67" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,918,434 samples, 0.02%)</title><rect x="631.1" y="373" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="634.14" y="383.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (12,294,153 samples, 0.04%)</title><rect x="186.3" y="341" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="189.27" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (9,060,668 samples, 0.03%)</title><rect x="286.4" y="485" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="289.41" y="495.5" ></text>
</g>
<g >
<title>runtime.makeslice (3,873,633 samples, 0.01%)</title><rect x="514.2" y="517" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="517.18" y="527.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,869,869 samples, 0.01%)</title><rect x="579.1" y="453" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="582.05" y="463.5" ></text>
</g>
<g >
<title>sched_clock (8,462,015 samples, 0.03%)</title><rect x="149.2" y="341" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="152.16" y="351.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (341,650,580 samples, 1.15%)</title><rect x="468.0" y="277" width="13.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="471.00" y="287.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,864,947 samples, 0.01%)</title><rect x="278.1" y="357" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="281.07" y="367.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (6,559,777 samples, 0.02%)</title><rect x="1158.8" y="293" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1161.75" y="303.5" ></text>
</g>
<g >
<title>free_unref_page (3,127,132 samples, 0.01%)</title><rect x="36.3" y="421" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="39.34" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (44,502,753 samples, 0.15%)</title><rect x="114.2" y="357" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="117.25" y="367.5" ></text>
</g>
<g >
<title>free_unref_page (3,199,104 samples, 0.01%)</title><rect x="278.3" y="309" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="281.30" y="319.5" ></text>
</g>
<g >
<title>put_files_struct (375,326,139 samples, 1.27%)</title><rect x="21.6" y="485" width="15.0" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="24.60" y="495.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (3,616,202 samples, 0.01%)</title><rect x="284.4" y="405" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="287.40" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,113,445 samples, 0.01%)</title><rect x="846.2" y="293" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="849.21" y="303.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,570,994 samples, 0.02%)</title><rect x="228.2" y="309" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="231.20" y="319.5" ></text>
</g>
<g >
<title>rmqueue_bulk (3,082,890 samples, 0.01%)</title><rect x="1009.6" y="165" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1012.61" y="175.5" ></text>
</g>
<g >
<title>allocate_slab (6,882,915 samples, 0.02%)</title><rect x="928.6" y="213" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="931.58" y="223.5" ></text>
</g>
<g >
<title>lockref_put_return (8,382,634 samples, 0.03%)</title><rect x="266.4" y="453" width="0.4" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="269.44" y="463.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (134,434,280 samples, 0.45%)</title><rect x="876.8" y="245" width="5.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="879.85" y="255.5" ></text>
</g>
<g >
<title>free_unref_page (3,592,373 samples, 0.01%)</title><rect x="241.2" y="277" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="244.19" y="287.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,336,055 samples, 0.01%)</title><rect x="67.4" y="325" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="70.38" y="335.5" ></text>
</g>
<g >
<title>runtime.scanobject (7,513,773 samples, 0.03%)</title><rect x="507.9" y="373" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="510.89" y="383.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,877,797 samples, 0.01%)</title><rect x="274.3" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="277.32" y="399.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (3,881,012 samples, 0.01%)</title><rect x="510.9" y="501" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="513.93" y="511.5" ></text>
</g>
<g >
<title>runtime.morestack.abi0 (6,800,931 samples, 0.02%)</title><rect x="1189.6" y="645" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1192.59" y="655.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,157,466 samples, 0.02%)</title><rect x="73.3" y="437" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="76.28" y="447.5" ></text>
</g>
<g >
<title>do_anonymous_page (44,666,953 samples, 0.15%)</title><rect x="1185.8" y="421" width="1.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1188.81" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,939,250 samples, 0.01%)</title><rect x="232.5" y="389" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="235.51" y="399.5" ></text>
</g>
<g >
<title>x86_pmu_disable (8,342,958 samples, 0.03%)</title><rect x="219.6" y="357" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="222.60" y="367.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (161,790,213 samples, 0.55%)</title><rect x="564.2" y="293" width="6.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="567.17" y="303.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (41,096,656 samples, 0.14%)</title><rect x="599.7" y="325" width="1.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="602.72" y="335.5" ></text>
</g>
<g >
<title>__check_object_size (12,195,926 samples, 0.04%)</title><rect x="716.4" y="341" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="719.43" y="351.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (7,719,523 samples, 0.03%)</title><rect x="646.9" y="421" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="649.89" y="431.5" ></text>
</g>
<g >
<title>runtime.entersyscall (116,912,923 samples, 0.40%)</title><rect x="665.7" y="421" width="4.7" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="668.70" y="431.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,939,250 samples, 0.01%)</title><rect x="232.5" y="277" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="235.51" y="287.5" ></text>
</g>
<g >
<title>strings.LastIndex (15,429,674 samples, 0.05%)</title><rect x="595.7" y="309" width="0.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="598.72" y="319.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9,060,668 samples, 0.03%)</title><rect x="286.4" y="437" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="289.41" y="447.5" ></text>
</g>
<g >
<title>update_load_avg (9,582,290 samples, 0.03%)</title><rect x="131.3" y="309" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="134.28" y="319.5" ></text>
</g>
<g >
<title>ksys_read (776,266,267 samples, 2.62%)</title><rect x="540.6" y="357" width="30.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="543.60" y="367.5" >ks..</text>
</g>
<g >
<title>runtime.findObject (9,888,683 samples, 0.03%)</title><rect x="513.0" y="373" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="516.00" y="383.5" ></text>
</g>
<g >
<title>runtime.scanblock (14,920,569 samples, 0.05%)</title><rect x="318.2" y="549" width="0.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="321.21" y="559.5" ></text>
</g>
<g >
<title>mod_objcg_state (4,488,468 samples, 0.02%)</title><rect x="188.7" y="229" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="191.73" y="239.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (6,707,356,879 samples, 22.66%)</title><rect x="19.3" y="565" width="267.5" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="22.34" y="575.5" >arch_do_signal_or_restart</text>
</g>
<g >
<title>alloc_charge_hpage (3,207,938 samples, 0.01%)</title><rect x="1169.6" y="85" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1172.64" y="95.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (15,241,381 samples, 0.05%)</title><rect x="540.7" y="325" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="543.69" y="335.5" ></text>
</g>
<g >
<title>testing.(*B).runN (16,745,919,068 samples, 56.58%)</title><rect x="521.9" y="613" width="667.6" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="524.87" y="623.5" >testing.(*B).runN</text>
</g>
<g >
<title>free_unref_page_commit (14,002,550 samples, 0.05%)</title><rect x="38.6" y="277" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="41.57" y="287.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3,008,520 samples, 0.01%)</title><rect x="381.8" y="405" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="384.79" y="415.5" ></text>
</g>
<g >
<title>alloc_pages (209,599,838 samples, 0.71%)</title><rect x="765.4" y="181" width="8.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="768.41" y="191.5" ></text>
</g>
<g >
<title>refill_obj_stock (5,213,170 samples, 0.02%)</title><rect x="188.9" y="213" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="191.91" y="223.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (6,164,284 samples, 0.02%)</title><rect x="1182.8" y="501" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1185.82" y="511.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,787,401 samples, 0.02%)</title><rect x="572.3" y="325" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="575.28" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (2,986,287 samples, 0.01%)</title><rect x="231.4" y="341" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="234.37" y="351.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (3,585,079 samples, 0.01%)</title><rect x="61.9" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="64.86" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (12,763,968,579 samples, 43.13%)</title><rect x="663.3" y="485" width="508.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="666.34" y="495.5" >github.com/cilium/ebpf/internal/sys.MapCreate</text>
</g>
<g >
<title>runtime.markroot.func1 (74,269,475 samples, 0.25%)</title><rect x="296.0" y="549" width="3.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="299.01" y="559.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,141,385 samples, 0.03%)</title><rect x="270.8" y="389" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="273.81" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (15,495,560 samples, 0.05%)</title><rect x="602.0" y="309" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="605.01" y="319.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (5,486,134 samples, 0.02%)</title><rect x="399.7" y="565" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="402.67" y="575.5" ></text>
</g>
<g >
<title>allocate_slab (5,434,659 samples, 0.02%)</title><rect x="774.2" y="101" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="777.22" y="111.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (33,812,018 samples, 0.11%)</title><rect x="577.1" y="485" width="1.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="580.13" y="495.5" ></text>
</g>
<g >
<title>enqueue_entity (123,343,807 samples, 0.42%)</title><rect x="126.0" y="309" width="4.9" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="128.98" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.applyRelocations (358,961,668 samples, 1.21%)</title><rect x="594.6" y="421" width="14.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="597.58" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.copyTypes (274,627,663 samples, 0.93%)</title><rect x="609.3" y="373" width="10.9" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="612.26" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_lock (15,650,658 samples, 0.05%)</title><rect x="58.7" y="453" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="61.67" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (6,141,708 samples, 0.02%)</title><rect x="1173.6" y="501" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1176.64" y="511.5" ></text>
</g>
<g >
<title>__do_softirq (6,200,046 samples, 0.02%)</title><rect x="169.7" y="357" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="172.66" y="367.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (9,720,079 samples, 0.03%)</title><rect x="1158.8" y="357" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1161.75" y="367.5" ></text>
</g>
<g >
<title>do_wp_page (4,635,701 samples, 0.02%)</title><rect x="658.2" y="309" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="661.17" y="319.5" ></text>
</g>
<g >
<title>wp_page_copy (6,201,924 samples, 0.02%)</title><rect x="628.9" y="229" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="631.86" y="239.5" ></text>
</g>
<g >
<title>sched_clock (39,066,592 samples, 0.13%)</title><rect x="147.3" y="325" width="1.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="150.27" y="335.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (16,616,620 samples, 0.06%)</title><rect x="929.8" y="293" width="0.6" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="932.76" y="303.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,507,276 samples, 0.01%)</title><rect x="247.4" y="229" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="250.41" y="239.5" ></text>
</g>
<g >
<title>error_entry (2,826,920 samples, 0.01%)</title><rect x="11.0" y="565" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.96" y="575.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="165" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1172.56" y="175.5" ></text>
</g>
<g >
<title>folio_add_lru (3,111,877 samples, 0.01%)</title><rect x="631.0" y="405" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="634.02" y="415.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (38,446,500 samples, 0.13%)</title><rect x="17.0" y="629" width="1.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="19.98" y="639.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (3,859,292 samples, 0.01%)</title><rect x="1007.5" y="261" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1010.51" y="271.5" ></text>
</g>
<g >
<title>runtime.lock2 (43,543,342 samples, 0.15%)</title><rect x="1161.7" y="373" width="1.8" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1164.74" y="383.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,585,079 samples, 0.01%)</title><rect x="61.9" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="64.86" y="431.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (2,951,878 samples, 0.01%)</title><rect x="514.1" y="469" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="517.06" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (8,499,371 samples, 0.03%)</title><rect x="1159.2" y="357" width="0.3" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1162.17" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (4,683,957 samples, 0.02%)</title><rect x="577.2" y="421" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="580.22" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (91,352,325 samples, 0.31%)</title><rect x="581.4" y="485" width="3.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="584.45" y="495.5" ></text>
</g>
<g >
<title>irq_exit_rcu (170,392,332 samples, 0.58%)</title><rect x="157.6" y="373" width="6.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="160.59" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (9,109,321 samples, 0.03%)</title><rect x="10.6" y="565" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.60" y="575.5" ></text>
</g>
<g >
<title>rcu_core (4,570,994 samples, 0.02%)</title><rect x="228.2" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="231.20" y="335.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,740,382 samples, 0.01%)</title><rect x="245.5" y="373" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="248.53" y="383.5" ></text>
</g>
<g >
<title>ihold (32,607,385 samples, 0.11%)</title><rect x="837.9" y="293" width="1.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="840.95" y="303.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (3,006,352 samples, 0.01%)</title><rect x="249.4" y="261" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="252.36" y="271.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (2,724,130 samples, 0.01%)</title><rect x="647.8" y="453" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="650.83" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (87,063,791 samples, 0.29%)</title><rect x="1006.8" y="341" width="3.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1009.84" y="351.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (4,426,209 samples, 0.01%)</title><rect x="181.4" y="357" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="184.40" y="367.5" ></text>
</g>
<g >
<title>runtime.makeslice (4,652,840 samples, 0.02%)</title><rect x="611.0" y="325" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="613.96" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (105,122,400 samples, 0.36%)</title><rect x="186.3" y="373" width="4.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="189.25" y="383.5" ></text>
</g>
<g >
<title>do_anonymous_page (8,314,661 samples, 0.03%)</title><rect x="1169.0" y="309" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1172.04" y="319.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (11,348,273 samples, 0.04%)</title><rect x="86.9" y="421" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="89.93" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (6,207,946 samples, 0.02%)</title><rect x="612.8" y="293" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="615.82" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (6,982,551 samples, 0.02%)</title><rect x="606.5" y="277" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="609.46" y="287.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (3,126,450 samples, 0.01%)</title><rect x="511.9" y="469" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="514.88" y="479.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (30,122,583 samples, 0.10%)</title><rect x="622.2" y="245" width="1.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="625.19" y="255.5" ></text>
</g>
<g >
<title>sched_clock (30,463,004 samples, 0.10%)</title><rect x="226.6" y="373" width="1.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="229.59" y="383.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (7,850,708 samples, 0.03%)</title><rect x="534.3" y="501" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="537.29" y="511.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (8,598,567 samples, 0.03%)</title><rect x="506.1" y="389" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="509.10" y="399.5" ></text>
</g>
<g >
<title>__slab_free (117,482,690 samples, 0.40%)</title><rect x="275.8" y="421" width="4.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="278.76" y="431.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,920,944 samples, 0.01%)</title><rect x="240.8" y="293" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="243.76" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,791,430 samples, 0.01%)</title><rect x="104.9" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="107.85" y="399.5" ></text>
</g>
<g >
<title>[unknown] (228,621,842 samples, 0.77%)</title><rect x="10.0" y="645" width="9.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="655.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (841,649,548 samples, 2.84%)</title><rect x="539.1" y="517" width="33.6" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="542.12" y="527.5" >io..</text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (17,544,661 samples, 0.06%)</title><rect x="514.3" y="517" width="0.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="517.33" y="527.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (3,555,262 samples, 0.01%)</title><rect x="161.6" y="213" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="164.62" y="223.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (6,971,057 samples, 0.02%)</title><rect x="591.2" y="373" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="594.19" y="383.5" ></text>
</g>
<g >
<title>dput (9,752,193 samples, 0.03%)</title><rect x="282.2" y="469" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="285.19" y="479.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (23,127,540 samples, 0.08%)</title><rect x="144.6" y="309" width="0.9" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="147.62" y="319.5" ></text>
</g>
<g >
<title>runtime.mapassign (38,043,769 samples, 0.13%)</title><rect x="618.2" y="341" width="1.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="621.23" y="351.5" ></text>
</g>
<g >
<title>do_exit (6,707,356,879 samples, 22.66%)</title><rect x="19.3" y="517" width="267.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="22.34" y="527.5" >do_exit</text>
</g>
<g >
<title>__rmqueue_pcplist (8,221,070 samples, 0.03%)</title><rect x="1009.4" y="181" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1012.41" y="191.5" ></text>
</g>
<g >
<title>irq_exit_rcu (92,090,018 samples, 0.31%)</title><rect x="186.8" y="357" width="3.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="189.77" y="367.5" ></text>
</g>
<g >
<title>__radix_tree_replace (5,437,252 samples, 0.02%)</title><rect x="921.5" y="293" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="924.47" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,155,486 samples, 0.01%)</title><rect x="267.2" y="437" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="270.15" y="447.5" ></text>
</g>
<g >
<title>__do_softirq (16,769,317 samples, 0.06%)</title><rect x="259.4" y="309" width="0.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="262.39" y="319.5" ></text>
</g>
<g >
<title>filp_close (3,907,125 samples, 0.01%)</title><rect x="21.4" y="485" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="24.44" y="495.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,653,831 samples, 0.02%)</title><rect x="612.8" y="245" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="615.85" y="255.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,896,057 samples, 0.01%)</title><rect x="260.4" y="437" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="263.39" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (10,067,610 samples, 0.03%)</title><rect x="180.2" y="373" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="183.25" y="383.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (7,264,696 samples, 0.02%)</title><rect x="1158.8" y="325" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1161.75" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.assignValues (887,309,577 samples, 3.00%)</title><rect x="594.6" y="485" width="35.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="597.58" y="495.5" >gi..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,185,388 samples, 0.01%)</title><rect x="364.6" y="517" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="367.62" y="527.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (21,963,224 samples, 0.07%)</title><rect x="83.0" y="389" width="0.9" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="86.04" y="399.5" ></text>
</g>
<g >
<title>prep_compound_page (3,109,690 samples, 0.01%)</title><rect x="871.9" y="149" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="874.93" y="159.5" ></text>
</g>
<g >
<title>runtime.findRunnable (7,702,316 samples, 0.03%)</title><rect x="400.0" y="517" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="402.97" y="527.5" ></text>
</g>
<g >
<title>handle_pte_fault (15,560,447 samples, 0.05%)</title><rect x="585.8" y="437" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="588.80" y="447.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (5,392,853 samples, 0.02%)</title><rect x="10.4" y="597" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.38" y="607.5" ></text>
</g>
<g >
<title>runtime.slicebytetostring (10,041,485 samples, 0.03%)</title><rect x="608.3" y="309" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="611.31" y="319.5" ></text>
</g>
<g >
<title>__radix_tree_replace (18,989,907 samples, 0.06%)</title><rect x="928.9" y="277" width="0.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="931.94" y="287.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps (14,033,175,428 samples, 47.42%)</title><rect x="630.0" y="581" width="559.5" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="632.96" y="591.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps</text>
</g>
<g >
<title>clear_page_erms (10,430,738 samples, 0.04%)</title><rect x="757.5" y="101" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="760.45" y="111.5" ></text>
</g>
<g >
<title>do_user_addr_fault (57,597,560 samples, 0.19%)</title><rect x="1185.6" y="485" width="2.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1188.56" y="495.5" ></text>
</g>
<g >
<title>kmem_cache_free (6,667,863 samples, 0.02%)</title><rect x="83.2" y="293" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="86.21" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,897,719 samples, 0.01%)</title><rect x="59.2" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="62.17" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (86,950,868 samples, 0.29%)</title><rect x="110.3" y="325" width="3.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="113.32" y="335.5" ></text>
</g>
<g >
<title>charge_memcg (5,401,129 samples, 0.02%)</title><rect x="1007.2" y="245" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1010.21" y="255.5" ></text>
</g>
<g >
<title>runtime.deferprocStack (10,690,184 samples, 0.04%)</title><rect x="1174.0" y="501" width="0.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1176.98" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (12,151,303 samples, 0.04%)</title><rect x="1180.6" y="357" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1183.61" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,235,890 samples, 0.02%)</title><rect x="286.2" y="453" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="289.20" y="463.5" ></text>
</g>
<g >
<title>llist_add_batch (14,790,503 samples, 0.05%)</title><rect x="145.9" y="341" width="0.6" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="148.89" y="351.5" ></text>
</g>
<g >
<title>mod_objcg_state (55,161,040 samples, 0.19%)</title><rect x="245.6" y="389" width="2.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="248.64" y="399.5" ></text>
</g>
<g >
<title>exc_page_fault (6,141,966 samples, 0.02%)</title><rect x="621.1" y="341" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="624.12" y="351.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (48,846,459 samples, 0.17%)</title><rect x="827.8" y="213" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="830.78" y="223.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (120,764,393 samples, 0.41%)</title><rect x="68.7" y="453" width="4.8" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="71.67" y="463.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (3,068,925 samples, 0.01%)</title><rect x="631.6" y="373" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="634.60" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (58,334,440 samples, 0.20%)</title><rect x="590.8" y="453" width="2.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="593.85" y="463.5" ></text>
</g>
<g >
<title>__unfreeze_partials (7,325,003 samples, 0.02%)</title><rect x="278.2" y="389" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="281.20" y="399.5" ></text>
</g>
<g >
<title>wake_up_q (3,259,859 samples, 0.01%)</title><rect x="11.6" y="389" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="14.61" y="399.5" ></text>
</g>
<g >
<title>rcu_core (5,116,259 samples, 0.02%)</title><rect x="20.6" y="389" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="23.60" y="399.5" ></text>
</g>
<g >
<title>psi_task_switch (187,351,562 samples, 0.63%)</title><rect x="220.4" y="405" width="7.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="223.37" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Enum).copy (4,634,048 samples, 0.02%)</title><rect x="609.8" y="341" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="612.79" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (17,120,011 samples, 0.06%)</title><rect x="585.8" y="469" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="588.77" y="479.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (858,660,565 samples, 2.90%)</title><rect x="795.7" y="245" width="34.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="798.65" y="255.5" >km..</text>
</g>
<g >
<title>__irqentry_text_end (8,507,940 samples, 0.03%)</title><rect x="643.8" y="469" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="646.76" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (17,837,510 samples, 0.06%)</title><rect x="628.6" y="341" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="631.61" y="351.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (16,875,441 samples, 0.06%)</title><rect x="259.4" y="325" width="0.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="262.39" y="335.5" ></text>
</g>
<g >
<title>folio_add_lru (6,971,057 samples, 0.02%)</title><rect x="591.2" y="389" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="594.19" y="399.5" ></text>
</g>
<g >
<title>__kmem_cache_free (9,676,661 samples, 0.03%)</title><rect x="241.5" y="277" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="244.45" y="287.5" ></text>
</g>
<g >
<title>irq_exit_rcu (11,171,476 samples, 0.04%)</title><rect x="243.4" y="357" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="246.41" y="367.5" ></text>
</g>
<g >
<title>__slab_free (2,962,668 samples, 0.01%)</title><rect x="232.2" y="405" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="235.19" y="415.5" ></text>
</g>
<g >
<title>file_free_rcu (4,617,797 samples, 0.02%)</title><rect x="73.3" y="309" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="76.28" y="319.5" ></text>
</g>
<g >
<title>exit_mm (79,212,507 samples, 0.27%)</title><rect x="36.6" y="501" width="3.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="39.56" y="511.5" ></text>
</g>
<g >
<title>aeshashbody (3,072,314 samples, 0.01%)</title><rect x="595.4" y="325" width="0.2" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="598.45" y="335.5" ></text>
</g>
<g >
<title>runtime.scanobject (47,879,597 samples, 0.16%)</title><rect x="512.1" y="389" width="1.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="515.12" y="399.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (49,329,485 samples, 0.17%)</title><rect x="917.3" y="325" width="2.0" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="920.34" y="335.5" ></text>
</g>
<g >
<title>vma_alloc_folio (13,998,594 samples, 0.05%)</title><rect x="585.9" y="405" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="588.86" y="415.5" ></text>
</g>
<g >
<title>enqueue_task (338,332,828 samples, 1.14%)</title><rect x="123.9" y="341" width="13.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="126.94" y="351.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (76,372,463 samples, 0.26%)</title><rect x="653.5" y="357" width="3.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="656.46" y="367.5" ></text>
</g>
<g >
<title>capable (126,192,350 samples, 0.43%)</title><rect x="898.1" y="309" width="5.0" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="901.12" y="319.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (6,025,327 samples, 0.02%)</title><rect x="67.0" y="389" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="70.00" y="399.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,454,337 samples, 0.02%)</title><rect x="848.9" y="181" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="851.85" y="191.5" ></text>
</g>
<g >
<title>consume_obj_stock (28,254,580 samples, 0.10%)</title><rect x="828.4" y="197" width="1.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="831.39" y="207.5" ></text>
</g>
<g >
<title>runtime.newobject (19,379,629 samples, 0.07%)</title><rect x="606.7" y="309" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="609.74" y="319.5" ></text>
</g>
<g >
<title>refill_obj_stock (7,411,050 samples, 0.03%)</title><rect x="161.8" y="229" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="164.77" y="239.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,864,947 samples, 0.01%)</title><rect x="278.1" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="281.07" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (23,824,069 samples, 0.08%)</title><rect x="631.0" y="501" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="633.96" y="511.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,740,382 samples, 0.01%)</title><rect x="245.5" y="357" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="248.53" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (6,188,892 samples, 0.02%)</title><rect x="611.6" y="293" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="614.64" y="303.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (9,317,541 samples, 0.03%)</title><rect x="753.2" y="213" width="0.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="756.24" y="223.5" ></text>
</g>
<g >
<title>get_page_from_freelist (330,858,006 samples, 1.12%)</title><rect x="859.5" y="165" width="13.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="862.47" y="175.5" ></text>
</g>
<g >
<title>__alloc_pages (6,103,353 samples, 0.02%)</title><rect x="1180.8" y="261" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1183.85" y="271.5" ></text>
</g>
<g >
<title>runtime.typedmemmove (7,533,916 samples, 0.03%)</title><rect x="627.0" y="341" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="629.99" y="351.5" ></text>
</g>
<g >
<title>__dentry_kill (789,562,920 samples, 2.67%)</title><rect x="228.9" y="437" width="31.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="231.91" y="447.5" >__..</text>
</g>
<g >
<title>get_obj_cgroup_from_current (68,980,343 samples, 0.23%)</title><rect x="777.8" y="229" width="2.8" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="780.82" y="239.5" ></text>
</g>
<g >
<title>rcu_core (21,963,224 samples, 0.07%)</title><rect x="83.0" y="341" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="86.04" y="351.5" ></text>
</g>
<g >
<title>select_task_rq_fair (67,556,987 samples, 0.23%)</title><rect x="117.3" y="357" width="2.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="120.29" y="367.5" ></text>
</g>
<g >
<title>runtime.mallocgc (36,258,835 samples, 0.12%)</title><rect x="622.1" y="341" width="1.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="625.07" y="351.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (122,045,147 samples, 0.41%)</title><rect x="1177.9" y="453" width="4.8" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1180.86" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (19,899,679 samples, 0.07%)</title><rect x="652.1" y="325" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="655.13" y="335.5" ></text>
</g>
<g >
<title>__queue_work (4,446,924 samples, 0.02%)</title><rect x="86.8" y="421" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="89.76" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (13,218,133 samples, 0.04%)</title><rect x="585.9" y="357" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="588.89" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (134,722,582 samples, 0.46%)</title><rect x="800.0" y="165" width="5.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="802.98" y="175.5" ></text>
</g>
<g >
<title>runtime.greyobject (18,038,129 samples, 0.06%)</title><rect x="294.3" y="565" width="0.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="297.27" y="575.5" ></text>
</g>
<g >
<title>futex_wait (3,879,148 samples, 0.01%)</title><rect x="400.1" y="389" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="403.09" y="399.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (273,369,436 samples, 0.92%)</title><rect x="920.0" y="325" width="10.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="923.01" y="335.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6,191,177 samples, 0.02%)</title><rect x="938.4" y="373" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="941.41" y="383.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.loadMgObjects (888,833,924 samples, 3.00%)</title><rect x="594.5" y="517" width="35.5" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="597.52" y="527.5" >git..</text>
</g>
<g >
<title>__free_pages (7,144,599 samples, 0.02%)</title><rect x="241.1" y="293" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="244.09" y="303.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (5,400,974 samples, 0.02%)</title><rect x="578.5" y="485" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="581.48" y="495.5" ></text>
</g>
<g >
<title>consume_obj_stock (4,620,998 samples, 0.02%)</title><rect x="876.6" y="245" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="879.63" y="255.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (5,196,538 samples, 0.02%)</title><rect x="629.8" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="632.75" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,585,079 samples, 0.01%)</title><rect x="61.9" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="64.86" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,506,614,001 samples, 21.98%)</title><rect x="709.6" y="389" width="259.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="712.61" y="399.5" >do_syscall_64</text>
</g>
<g >
<title>runtime.futex.abi0 (4,985,316 samples, 0.02%)</title><rect x="11.6" y="485" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="14.56" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (30,683,727 samples, 0.10%)</title><rect x="577.2" y="453" width="1.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="580.19" y="463.5" ></text>
</g>
<g >
<title>runtime.newobject (122,835,042 samples, 0.42%)</title><rect x="1166.6" y="437" width="4.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1169.55" y="447.5" ></text>
</g>
<g >
<title>migrate_disable (13,229,971 samples, 0.04%)</title><rect x="496.1" y="277" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="499.12" y="287.5" ></text>
</g>
<g >
<title>runtime.interhash (18,682,388 samples, 0.06%)</title><rect x="617.3" y="325" width="0.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="620.33" y="335.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,897,719 samples, 0.01%)</title><rect x="59.2" y="325" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="62.17" y="335.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3,874,958 samples, 0.01%)</title><rect x="626.5" y="197" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="629.46" y="207.5" ></text>
</g>
<g >
<title>update_curr (12,783,770 samples, 0.04%)</title><rect x="208.8" y="373" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="211.79" y="383.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,523,523 samples, 0.01%)</title><rect x="73.3" y="293" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="76.33" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (26,334,092 samples, 0.09%)</title><rect x="1186.5" y="357" width="1.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1189.51" y="367.5" ></text>
</g>
<g >
<title>memset_orig (5,496,615 samples, 0.02%)</title><rect x="806.0" y="149" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="808.97" y="159.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,548,802,532 samples, 5.23%)</title><rect x="435.7" y="421" width="61.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="438.69" y="431.5" >syscal..</text>
</g>
<g >
<title>vma_alloc_folio (37,445,841 samples, 0.13%)</title><rect x="591.6" y="405" width="1.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="594.56" y="415.5" ></text>
</g>
<g >
<title>alloc_file (6,756,777 samples, 0.02%)</title><rect x="735.7" y="293" width="0.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="738.73" y="303.5" ></text>
</g>
<g >
<title>security_capable (3,089,703 samples, 0.01%)</title><rect x="933.1" y="325" width="0.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="936.12" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,269,153 samples, 0.02%)</title><rect x="381.8" y="533" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="384.79" y="543.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (24,345,796 samples, 0.08%)</title><rect x="189.3" y="261" width="0.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="192.28" y="271.5" ></text>
</g>
<g >
<title>sched_clock_cpu (3,660,631 samples, 0.01%)</title><rect x="117.1" y="357" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="120.06" y="367.5" ></text>
</g>
<g >
<title>handle_pte_fault (7,763,253 samples, 0.03%)</title><rect x="600.6" y="229" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="603.59" y="239.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (4,163,326,000 samples, 14.07%)</title><rect x="1000.4" y="437" width="165.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1003.36" y="447.5" >runtime.SetFinalizer</text>
</g>
<g >
<title>psi_group_change (7,341,405 samples, 0.02%)</title><rect x="220.1" y="405" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="223.08" y="415.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (6,160,511 samples, 0.02%)</title><rect x="891.6" y="181" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="894.59" y="191.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,008,520 samples, 0.01%)</title><rect x="381.8" y="389" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="384.79" y="399.5" ></text>
</g>
<g >
<title>do_anonymous_page (52,925,618 samples, 0.18%)</title><rect x="590.9" y="421" width="2.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="593.94" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (7,560,361 samples, 0.03%)</title><rect x="185.9" y="389" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="188.94" y="399.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (6,836,030 samples, 0.02%)</title><rect x="1172.8" y="485" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1175.85" y="495.5" ></text>
</g>
<g >
<title>mntput (47,943,811 samples, 0.16%)</title><rect x="267.0" y="453" width="1.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="270.01" y="463.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (34,394,997 samples, 0.12%)</title><rect x="202.6" y="341" width="1.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="205.65" y="351.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (6,193,099 samples, 0.02%)</title><rect x="605.9" y="117" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="608.90" y="127.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo (3,003,513,281 samples, 10.15%)</title><rect x="400.6" y="565" width="119.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="403.58" y="575.5" >github.com/EMn..</text>
</g>
<g >
<title>try_to_wake_up (1,130,480,989 samples, 3.82%)</title><rect x="107.2" y="373" width="45.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="110.20" y="383.5" >try_..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,141,385 samples, 0.03%)</title><rect x="270.8" y="421" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="273.81" y="431.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (104,721,992 samples, 0.35%)</title><rect x="614.1" y="341" width="4.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="617.06" y="351.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (8,437,504 samples, 0.03%)</title><rect x="809.5" y="229" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="812.51" y="239.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (34,604,448 samples, 0.12%)</title><rect x="436.2" y="309" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="439.24" y="319.5" ></text>
</g>
<g >
<title>do_send_sig_info (6,822,881 samples, 0.02%)</title><rect x="298.4" y="421" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="301.39" y="431.5" ></text>
</g>
<g >
<title>handle_pte_fault (9,067,912 samples, 0.03%)</title><rect x="1169.0" y="325" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1172.01" y="335.5" ></text>
</g>
<g >
<title>runtime.schedule (7,702,316 samples, 0.03%)</title><rect x="400.0" y="533" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="402.97" y="543.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2 (5,274,302 samples, 0.02%)</title><rect x="399.7" y="549" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="402.67" y="559.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,118,838 samples, 0.01%)</title><rect x="786.9" y="213" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="789.87" y="223.5" ></text>
</g>
<g >
<title>strings.LastIndex (11,510,462 samples, 0.04%)</title><rect x="621.5" y="341" width="0.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="624.49" y="351.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,683,957 samples, 0.02%)</title><rect x="577.2" y="405" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="580.22" y="415.5" ></text>
</g>
<g >
<title>___slab_alloc (5,434,659 samples, 0.02%)</title><rect x="774.2" y="133" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="777.22" y="143.5" ></text>
</g>
<g >
<title>allocate_slab (5,421,979 samples, 0.02%)</title><rect x="805.7" y="101" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="808.72" y="111.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (7,373,082 samples, 0.02%)</title><rect x="267.3" y="437" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="270.28" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (5,329,984 samples, 0.02%)</title><rect x="581.2" y="485" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="584.23" y="495.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (9,856,233 samples, 0.03%)</title><rect x="83.5" y="309" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="86.52" y="319.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,999,957 samples, 0.01%)</title><rect x="60.5" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="63.51" y="447.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (8,718,162 samples, 0.03%)</title><rect x="130.1" y="277" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="133.10" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (71,343,846 samples, 0.24%)</title><rect x="12.7" y="501" width="2.9" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="15.71" y="511.5" ></text>
</g>
<g >
<title>mntget (5,925,193 samples, 0.02%)</title><rect x="839.2" y="293" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="842.25" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (14,956,273 samples, 0.05%)</title><rect x="383.3" y="533" width="0.6" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="386.26" y="543.5" ></text>
</g>
<g >
<title>runtime.mallocgc (58,543,614 samples, 0.20%)</title><rect x="511.8" y="501" width="2.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="514.85" y="511.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (202,769,311 samples, 0.69%)</title><rect x="563.2" y="309" width="8.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="566.18" y="319.5" ></text>
</g>
<g >
<title>scheduler_tick (3,101,973 samples, 0.01%)</title><rect x="186.6" y="261" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="189.55" y="271.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (7,550,493 samples, 0.03%)</title><rect x="497.0" y="357" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="500.01" y="367.5" ></text>
</g>
<g >
<title>runtime.scanobject (65,218,322 samples, 0.22%)</title><rect x="653.9" y="341" width="2.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="656.90" y="351.5" ></text>
</g>
<g >
<title>locks_remove_posix (45,278,931 samples, 0.15%)</title><rect x="32.7" y="453" width="1.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="35.73" y="463.5" ></text>
</g>
<g >
<title>errors.Is (19,361,338 samples, 0.07%)</title><rect x="579.8" y="533" width="0.7" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="582.76" y="543.5" ></text>
</g>
<g >
<title>runtime.newstack (6,800,931 samples, 0.02%)</title><rect x="1189.6" y="629" width="0.3" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1192.59" y="639.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (5,428,428 samples, 0.02%)</title><rect x="653.0" y="389" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="656.04" y="399.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (7,365,214 samples, 0.02%)</title><rect x="139.6" y="325" width="0.3" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="142.63" y="335.5" ></text>
</g>
<g >
<title>delete_node (5,432,298 samples, 0.02%)</title><rect x="929.5" y="261" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="932.48" y="271.5" ></text>
</g>
<g >
<title>do_send_sig_info (6,189,346 samples, 0.02%)</title><rect x="12.0" y="421" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="15.03" y="431.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (3,887,396 samples, 0.01%)</title><rect x="580.9" y="533" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="583.92" y="543.5" ></text>
</g>
<g >
<title>seq_write (11,507,721 samples, 0.04%)</title><rect x="494.1" y="229" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="497.06" y="239.5" ></text>
</g>
<g >
<title>irq_exit_rcu (21,963,224 samples, 0.07%)</title><rect x="83.0" y="405" width="0.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="86.04" y="415.5" ></text>
</g>
<g >
<title>runtime.mallocgc (19,379,629 samples, 0.07%)</title><rect x="606.7" y="293" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="609.74" y="303.5" ></text>
</g>
<g >
<title>do_tkill (9,009,977 samples, 0.03%)</title><rect x="11.9" y="453" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="14.93" y="463.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (2,990,114 samples, 0.01%)</title><rect x="645.1" y="325" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="648.05" y="335.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (39,933,737 samples, 0.13%)</title><rect x="382.3" y="549" width="1.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="385.26" y="559.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3,112,603 samples, 0.01%)</title><rect x="296.4" y="517" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="299.45" y="527.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (9,720,079 samples, 0.03%)</title><rect x="1158.8" y="341" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1161.75" y="351.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (5,998,452 samples, 0.02%)</title><rect x="570.6" y="293" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="573.62" y="303.5" ></text>
</g>
<g >
<title>__update_load_avg_se (7,631,953 samples, 0.03%)</title><rect x="196.3" y="357" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="199.33" y="367.5" ></text>
</g>
<g >
<title>runtime.schedule (3,114,059 samples, 0.01%)</title><rect x="1189.7" y="581" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1192.71" y="591.5" ></text>
</g>
<g >
<title>mod_objcg_state (35,480,276 samples, 0.12%)</title><rect x="888.0" y="229" width="1.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="891.00" y="239.5" ></text>
</g>
<g >
<title>security_d_instantiate (7,004,560 samples, 0.02%)</title><rect x="835.2" y="261" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="838.20" y="271.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (3,008,520 samples, 0.01%)</title><rect x="381.8" y="357" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="384.79" y="367.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (11,642,170 samples, 0.04%)</title><rect x="605.8" y="293" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="608.78" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (4,585,071 samples, 0.02%)</title><rect x="1175.2" y="485" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1178.18" y="495.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,205,287 samples, 0.01%)</title><rect x="243.6" y="245" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="246.62" y="255.5" ></text>
</g>
<g >
<title>do_tkill (14,270,278 samples, 0.05%)</title><rect x="298.2" y="453" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="301.20" y="463.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (7,405,164 samples, 0.03%)</title><rect x="969.0" y="389" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="972.03" y="399.5" ></text>
</g>
<g >
<title>__kmalloc_node (25,320,536 samples, 0.09%)</title><rect x="773.8" y="165" width="1.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="776.82" y="175.5" ></text>
</g>
<g >
<title>clear_page_erms (6,139,694 samples, 0.02%)</title><rect x="631.1" y="357" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="634.14" y="367.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (16,175,819 samples, 0.05%)</title><rect x="971.5" y="405" width="0.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="974.52" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (13,209,280 samples, 0.04%)</title><rect x="600.5" y="309" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="603.49" y="319.5" ></text>
</g>
<g >
<title>__get_random_u32_below (5,425,735 samples, 0.02%)</title><rect x="807.2" y="165" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="810.19" y="175.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (9,115,822 samples, 0.03%)</title><rect x="1187.9" y="469" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1190.86" y="479.5" ></text>
</g>
<g >
<title>runtime.scanobject (11,296,920 samples, 0.04%)</title><rect x="1170.9" y="309" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1173.88" y="319.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (3,805,394 samples, 0.01%)</title><rect x="642.0" y="469" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="645.02" y="479.5" ></text>
</g>
<g >
<title>rb_erase (10,147,964 samples, 0.03%)</title><rect x="205.8" y="373" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="208.83" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,895,498 samples, 0.01%)</title><rect x="267.5" y="421" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="270.46" y="431.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (14,194,090 samples, 0.05%)</title><rect x="295.0" y="565" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="297.99" y="575.5" ></text>
</g>
<g >
<title>do_wp_page (17,089,152 samples, 0.06%)</title><rect x="618.9" y="213" width="0.7" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="621.88" y="223.5" ></text>
</g>
<g >
<title>release_pages (39,665,545 samples, 0.13%)</title><rect x="38.0" y="309" width="1.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="40.95" y="319.5" ></text>
</g>
<g >
<title>handle_mm_fault (12,406,856 samples, 0.04%)</title><rect x="602.0" y="261" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="605.04" y="271.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (17,418,927 samples, 0.06%)</title><rect x="259.4" y="373" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="262.37" y="383.5" ></text>
</g>
<g >
<title>unmap_page_range (79,212,507 samples, 0.27%)</title><rect x="36.6" y="405" width="3.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="39.56" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newProgramWithOptions (887,309,577 samples, 3.00%)</title><rect x="594.6" y="437" width="35.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="597.58" y="447.5" >gi..</text>
</g>
<g >
<title>encoding/binary.(*decoder).value (225,040,927 samples, 0.76%)</title><rect x="410.1" y="485" width="9.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="413.09" y="495.5" ></text>
</g>
<g >
<title>runtime.memmove (132,936,461 samples, 0.45%)</title><rect x="515.0" y="517" width="5.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="518.03" y="527.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (55,350,382 samples, 0.19%)</title><rect x="842.8" y="293" width="2.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="845.81" y="303.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (5,681,549,447 samples, 19.20%)</title><rect x="711.5" y="373" width="226.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="714.53" y="383.5" >__x64_sys_bpf</text>
</g>
<g >
<title>runtime.mallocgc (117,647,208 samples, 0.40%)</title><rect x="1166.7" y="421" width="4.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1169.73" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (10,788,897 samples, 0.04%)</title><rect x="631.0" y="437" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="633.99" y="447.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (2,767,412 samples, 0.01%)</title><rect x="14.9" y="389" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="17.86" y="399.5" ></text>
</g>
<g >
<title>__do_softirq (8,977,304 samples, 0.03%)</title><rect x="280.1" y="325" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="283.09" y="335.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (91,352,325 samples, 0.31%)</title><rect x="581.4" y="421" width="3.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="584.45" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfType (3,880,222 samples, 0.01%)</title><rect x="605.4" y="309" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="608.44" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,485,627 samples, 0.02%)</title><rect x="1169.2" y="245" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1172.20" y="255.5" ></text>
</g>
<g >
<title>handle_pte_fault (18,089,257 samples, 0.06%)</title><rect x="659.8" y="357" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="662.76" y="367.5" ></text>
</g>
<g >
<title>get_signal (3,015,743 samples, 0.01%)</title><rect x="1188.0" y="405" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1190.98" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,984,605 samples, 0.02%)</title><rect x="626.6" y="149" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="629.62" y="159.5" ></text>
</g>
<g >
<title>psi_flags_change (9,206,599 samples, 0.03%)</title><rect x="221.8" y="389" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="224.75" y="399.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (212,857,027 samples, 0.72%)</title><rect x="90.9" y="405" width="8.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="93.92" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (9,319,426 samples, 0.03%)</title><rect x="600.6" y="261" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="603.56" y="271.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,864,947 samples, 0.01%)</title><rect x="278.1" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="281.07" y="303.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (6,892,036 samples, 0.02%)</title><rect x="532.3" y="501" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="535.27" y="511.5" ></text>
</g>
<g >
<title>runtime.mstart0 (129,696,391 samples, 0.44%)</title><rect x="11.1" y="597" width="5.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="14.11" y="607.5" ></text>
</g>
<g >
<title>dequeue_task (3,516,720 samples, 0.01%)</title><rect x="17.8" y="437" width="0.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="20.75" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,020,241 samples, 0.01%)</title><rect x="621.4" y="341" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="624.37" y="351.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (32,799,299 samples, 0.11%)</title><rect x="520.6" y="549" width="1.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="523.57" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (17,359,066 samples, 0.06%)</title><rect x="89.7" y="405" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="92.70" y="415.5" ></text>
</g>
<g >
<title>record_times (4,136,871 samples, 0.01%)</title><rect x="226.0" y="373" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="229.04" y="383.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (8,440,455 samples, 0.03%)</title><rect x="1010.3" y="325" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1013.34" y="335.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,103,353 samples, 0.02%)</title><rect x="1180.8" y="293" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1183.85" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (27,912,225 samples, 0.09%)</title><rect x="602.8" y="309" width="1.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="605.84" y="319.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4,185,388 samples, 0.01%)</title><rect x="364.6" y="485" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="367.62" y="495.5" ></text>
</g>
<g >
<title>d_instantiate (91,063,878 samples, 0.31%)</title><rect x="831.8" y="277" width="3.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="834.85" y="287.5" ></text>
</g>
<g >
<title>free_swap_cache (3,099,112 samples, 0.01%)</title><rect x="39.5" y="325" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="42.53" y="335.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (6,708,992,894 samples, 22.67%)</title><rect x="19.3" y="581" width="267.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="22.34" y="591.5" >exit_to_user_mode_loop</text>
</g>
<g >
<title>newidle_balance (3,260,718 samples, 0.01%)</title><rect x="14.5" y="389" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="17.54" y="399.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (12,302,701 samples, 0.04%)</title><rect x="105.0" y="373" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="108.00" y="383.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (3,908,748 samples, 0.01%)</title><rect x="559.7" y="261" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="562.68" y="271.5" ></text>
</g>
<g >
<title>__folio_alloc (31,590,259 samples, 0.11%)</title><rect x="645.4" y="341" width="1.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="648.35" y="351.5" ></text>
</g>
<g >
<title>__handle_mm_fault (14,741,161 samples, 0.05%)</title><rect x="599.0" y="229" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="602.04" y="239.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (1,121,026,299 samples, 3.79%)</title><rect x="852.6" y="293" width="44.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="855.62" y="303.5" >__bp..</text>
</g>
<g >
<title>runtime.markroot (11,522,429 samples, 0.04%)</title><rect x="1170.4" y="309" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1173.42" y="319.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (3,861,404 samples, 0.01%)</title><rect x="1189.7" y="597" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1192.68" y="607.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,099,882 samples, 0.01%)</title><rect x="604.2" y="245" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="607.20" y="255.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).next (3,094,459 samples, 0.01%)</title><rect x="658.9" y="341" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="661.89" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,645,913 samples, 0.02%)</title><rect x="780.2" y="213" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="783.20" y="223.5" ></text>
</g>
<g >
<title>handle_mm_fault (19,637,717 samples, 0.07%)</title><rect x="659.7" y="389" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="662.72" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,343,668 samples, 0.01%)</title><rect x="677.9" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="680.85" y="399.5" ></text>
</g>
<g >
<title>rcu_core (3,616,202 samples, 0.01%)</title><rect x="284.4" y="357" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="287.40" y="367.5" ></text>
</g>
<g >
<title>pick_next_task (3,238,336 samples, 0.01%)</title><rect x="296.2" y="421" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="299.16" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (17,359,066 samples, 0.06%)</title><rect x="89.7" y="389" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="92.70" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,025,327 samples, 0.02%)</title><rect x="67.0" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="70.00" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (6,224,039 samples, 0.02%)</title><rect x="599.3" y="133" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="602.35" y="143.5" ></text>
</g>
<g >
<title>rcu_core_si (16,769,317 samples, 0.06%)</title><rect x="259.4" y="293" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="262.39" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (5,401,702 samples, 0.02%)</title><rect x="658.2" y="389" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="661.17" y="399.5" ></text>
</g>
<g >
<title>reflect.Value.Field (85,611,179 samples, 0.29%)</title><rect x="419.6" y="485" width="3.4" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="422.56" y="495.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (4,411,696 samples, 0.01%)</title><rect x="390.6" y="549" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="393.57" y="559.5" ></text>
</g>
<g >
<title>clear_page_erms (5,229,754 samples, 0.02%)</title><rect x="572.3" y="309" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="575.31" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (298,571,022 samples, 1.01%)</title><rect x="678.5" y="405" width="11.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="681.54" y="415.5" ></text>
</g>
<g >
<title>__mod_memcg_state (10,038,035 samples, 0.03%)</title><rect x="891.4" y="197" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="894.43" y="207.5" ></text>
</g>
<g >
<title>free_slab (5,300,085 samples, 0.02%)</title><rect x="278.3" y="357" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="281.28" y="367.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (6,139,733 samples, 0.02%)</title><rect x="829.9" y="245" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="832.89" y="255.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (46,013,586 samples, 0.16%)</title><rect x="745.6" y="229" width="1.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="748.59" y="239.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (24,771,351 samples, 0.08%)</title><rect x="708.6" y="389" width="1.0" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="711.62" y="399.5" ></text>
</g>
<g >
<title>runtime.mcall (3,228,941 samples, 0.01%)</title><rect x="287.1" y="597" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="290.07" y="607.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (26,959,766 samples, 0.09%)</title><rect x="226.7" y="325" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="229.69" y="335.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (5,298,391 samples, 0.02%)</title><rect x="281.2" y="421" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="284.21" y="431.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (148,012,291 samples, 0.50%)</title><rect x="179.7" y="389" width="5.9" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="182.71" y="399.5" ></text>
</g>
<g >
<title>__send_signal_locked (4,966,879 samples, 0.02%)</title><rect x="298.4" y="389" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="301.44" y="399.5" ></text>
</g>
<g >
<title>do_anonymous_page (53,088,677 samples, 0.18%)</title><rect x="644.5" y="373" width="2.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="647.50" y="383.5" ></text>
</g>
<g >
<title>rb_insert_color (7,463,269 samples, 0.03%)</title><rect x="206.2" y="373" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="209.23" y="383.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (7,713,353 samples, 0.03%)</title><rect x="664.8" y="437" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="667.85" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (59,899,947 samples, 0.20%)</title><rect x="590.8" y="469" width="2.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="593.78" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,099,882 samples, 0.01%)</title><rect x="604.2" y="261" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="607.20" y="271.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (3,094,459 samples, 0.01%)</title><rect x="658.9" y="357" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="661.89" y="367.5" ></text>
</g>
<g >
<title>runtime.memmove (130,825,601 samples, 0.44%)</title><rect x="1183.4" y="533" width="5.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1186.40" y="543.5" ></text>
</g>
<g >
<title>runtime.findObject (12,347,878 samples, 0.04%)</title><rect x="1004.3" y="421" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1007.27" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (9,758,418 samples, 0.03%)</title><rect x="280.1" y="389" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="283.06" y="399.5" ></text>
</g>
<g >
<title>rcu_do_batch (9,862,621 samples, 0.03%)</title><rect x="247.3" y="261" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="250.30" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (13,181,418 samples, 0.04%)</title><rect x="626.4" y="277" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="629.37" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (9,924,949 samples, 0.03%)</title><rect x="106.2" y="373" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="109.19" y="383.5" ></text>
</g>
<g >
<title>folio_add_lru (4,540,282 samples, 0.02%)</title><rect x="645.0" y="341" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="647.99" y="351.5" ></text>
</g>
<g >
<title>wp_page_copy (12,407,191 samples, 0.04%)</title><rect x="599.1" y="181" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="602.13" y="191.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (3,086,153 samples, 0.01%)</title><rect x="1175.6" y="469" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1178.58" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (18,550,339 samples, 0.06%)</title><rect x="474.8" y="261" width="0.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="477.79" y="271.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (3,063,486 samples, 0.01%)</title><rect x="1185.8" y="405" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1188.84" y="415.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (16,822,169 samples, 0.06%)</title><rect x="509.4" y="517" width="0.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="512.35" y="527.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (1,593,003,196 samples, 5.38%)</title><rect x="434.0" y="485" width="63.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="436.96" y="495.5" >bufio...</text>
</g>
<g >
<title>get_any_partial (7,754,348 samples, 0.03%)</title><rect x="858.2" y="229" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="861.17" y="239.5" ></text>
</g>
<g >
<title>__schedule (16,275,821 samples, 0.05%)</title><rect x="17.7" y="453" width="0.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="20.67" y="463.5" ></text>
</g>
<g >
<title>__slab_free (3,501,335 samples, 0.01%)</title><rect x="89.9" y="245" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="92.91" y="255.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,658,441 samples, 0.01%)</title><rect x="166.0" y="389" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="168.97" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_read (777,046,243 samples, 2.63%)</title><rect x="540.6" y="373" width="30.9" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="543.56" y="383.5" >__..</text>
</g>
<g >
<title>tlb_batch_pages_flush (45,082,339 samples, 0.15%)</title><rect x="37.9" y="341" width="1.8" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="40.86" y="351.5" ></text>
</g>
<g >
<title>testing.(*B).runN (3,042,153,603 samples, 10.28%)</title><rect x="400.6" y="597" width="121.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="403.58" y="607.5" >testing.(*B).runN</text>
</g>
<g >
<title>__x64_sys_tgkill (14,270,278 samples, 0.05%)</title><rect x="298.2" y="469" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="301.20" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (9,060,668 samples, 0.03%)</title><rect x="286.4" y="469" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="289.41" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (13,003,326 samples, 0.04%)</title><rect x="572.1" y="469" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="575.13" y="479.5" ></text>
</g>
<g >
<title>do_wp_page (4,516,285 samples, 0.02%)</title><rect x="381.8" y="437" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="384.79" y="447.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (145,143,648 samples, 0.49%)</title><rect x="753.6" y="213" width="5.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="756.61" y="223.5" ></text>
</g>
<g >
<title>exc_page_fault (3,105,055 samples, 0.01%)</title><rect x="1183.2" y="485" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1186.19" y="495.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (44,972,932 samples, 0.15%)</title><rect x="247.8" y="389" width="1.8" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="250.84" y="399.5" ></text>
</g>
<g >
<title>bpf_check (4,457,240 samples, 0.02%)</title><rect x="629.8" y="261" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="632.78" y="271.5" ></text>
</g>
<g >
<title>rcu_do_batch (3,616,202 samples, 0.01%)</title><rect x="284.4" y="341" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="287.40" y="351.5" ></text>
</g>
<g >
<title>runtime.growslice (98,978,082 samples, 0.33%)</title><rect x="581.2" y="533" width="3.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="584.20" y="543.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (12,035,583 samples, 0.04%)</title><rect x="658.4" y="421" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="661.38" y="431.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (24,349,725 samples, 0.08%)</title><rect x="1170.4" y="405" width="0.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1173.36" y="415.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (5,994,718 samples, 0.02%)</title><rect x="162.2" y="101" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="165.21" y="111.5" ></text>
</g>
<g >
<title>anon_inode_getfd (9,903,891 samples, 0.03%)</title><rect x="721.6" y="341" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="724.64" y="351.5" ></text>
</g>
<g >
<title>runtime.gopark (3,228,941 samples, 0.01%)</title><rect x="287.1" y="613" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="290.07" y="623.5" ></text>
</g>
<g >
<title>__slab_free (30,836,276 samples, 0.10%)</title><rect x="160.0" y="245" width="1.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="163.00" y="255.5" ></text>
</g>
<g >
<title>do_anonymous_page (67,320,433 samples, 0.23%)</title><rect x="1007.1" y="277" width="2.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1010.11" y="287.5" ></text>
</g>
<g >
<title>iput (5,270,215 samples, 0.02%)</title><rect x="260.1" y="421" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="263.07" y="431.5" ></text>
</g>
<g >
<title>discard_slab (25,064,485 samples, 0.08%)</title><rect x="240.9" y="341" width="1.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="243.87" y="351.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (5,262,662 samples, 0.02%)</title><rect x="511.6" y="517" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="514.64" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9,224,259 samples, 0.03%)</title><rect x="1011.4" y="261" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1014.43" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,102,864 samples, 0.01%)</title><rect x="610.3" y="261" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="613.31" y="271.5" ></text>
</g>
<g >
<title>exc_page_fault (12,936,783 samples, 0.04%)</title><rect x="1169.0" y="389" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1171.98" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,100,149 samples, 0.01%)</title><rect x="274.3" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="277.31" y="447.5" ></text>
</g>
<g >
<title>irq_exit_rcu (17,359,066 samples, 0.06%)</title><rect x="89.7" y="373" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="92.70" y="383.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (11,049,390 samples, 0.04%)</title><rect x="11.9" y="517" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="14.90" y="527.5" ></text>
</g>
<g >
<title>runtime.preemptone (13,114,193 samples, 0.04%)</title><rect x="11.8" y="533" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="14.81" y="543.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,897,719 samples, 0.01%)</title><rect x="59.2" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="62.17" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (3,903,774 samples, 0.01%)</title><rect x="511.8" y="485" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="514.85" y="495.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,794,947 samples, 0.01%)</title><rect x="260.3" y="421" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="263.28" y="431.5" ></text>
</g>
<g >
<title>__mmput (79,212,507 samples, 0.27%)</title><rect x="36.6" y="469" width="3.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="39.56" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (81,286,735 samples, 0.27%)</title><rect x="12.7" y="517" width="3.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.67" y="527.5" ></text>
</g>
<g >
<title>error_entry (5,287,872 samples, 0.02%)</title><rect x="18.8" y="613" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="21.84" y="623.5" ></text>
</g>
<g >
<title>__folio_alloc (46,608,840 samples, 0.16%)</title><rect x="1007.9" y="245" width="1.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1010.94" y="255.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,099,882 samples, 0.01%)</title><rect x="604.2" y="229" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="607.20" y="239.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (102,190,767 samples, 0.35%)</title><rect x="476.8" y="229" width="4.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="479.84" y="239.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (3,112,233 samples, 0.01%)</title><rect x="37.7" y="325" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="40.73" y="335.5" ></text>
</g>
<g >
<title>runtime.addspecial (3,758,351,921 samples, 12.70%)</title><rect x="1011.9" y="373" width="149.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1014.89" y="383.5" >runtime.addspecial</text>
</g>
<g >
<title>runtime.wirep (16,286,305 samples, 0.06%)</title><rect x="674.6" y="389" width="0.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="677.62" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Spec).Copy (521,613,541 samples, 1.76%)</title><rect x="608.9" y="389" width="20.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="611.89" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,401,702 samples, 0.02%)</title><rect x="658.2" y="405" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="661.17" y="415.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (9,353,009 samples, 0.03%)</title><rect x="39.2" y="293" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="42.16" y="303.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (127,160,814 samples, 0.43%)</title><rect x="527.2" y="501" width="5.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="530.20" y="511.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (31,986,619 samples, 0.11%)</title><rect x="431.1" y="453" width="1.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="434.07" y="463.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,025,327 samples, 0.02%)</title><rect x="67.0" y="437" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="70.00" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,022,072 samples, 0.01%)</title><rect x="261.8" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="264.85" y="415.5" ></text>
</g>
<g >
<title>__do_softirq (6,874,312 samples, 0.02%)</title><rect x="67.2" y="389" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="70.24" y="399.5" ></text>
</g>
<g >
<title>__unfreeze_partials (31,077,459 samples, 0.11%)</title><rect x="240.6" y="357" width="1.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="243.64" y="367.5" ></text>
</g>
<g >
<title>__irqentry_text_end (5,294,491 samples, 0.02%)</title><rect x="1188.8" y="517" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1191.83" y="527.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,427,824 samples, 0.02%)</title><rect x="612.8" y="261" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="615.82" y="271.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3,425,112 samples, 0.01%)</title><rect x="364.6" y="469" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="367.62" y="479.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,585,079 samples, 0.01%)</title><rect x="61.9" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="64.86" y="415.5" ></text>
</g>
<g >
<title>record_times (5,662,103 samples, 0.02%)</title><rect x="226.2" y="389" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="229.21" y="399.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (3,109,499 samples, 0.01%)</title><rect x="298.5" y="341" width="0.1" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="301.47" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,116,259 samples, 0.02%)</title><rect x="20.6" y="485" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="23.60" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="197" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1172.56" y="207.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6,708,992,894 samples, 22.67%)</title><rect x="19.3" y="597" width="267.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="22.34" y="607.5" >exit_to_user_mode_prepare</text>
</g>
<g >
<title>__mod_lruvec_page_state (4,660,194 samples, 0.02%)</title><rect x="37.7" y="341" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="40.67" y="351.5" ></text>
</g>
<g >
<title>cap_capable (3,709,348 samples, 0.01%)</title><rect x="903.0" y="277" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="906.00" y="287.5" ></text>
</g>
<g >
<title>runtime.findObject (5,886,590 samples, 0.02%)</title><rect x="653.5" y="341" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="656.52" y="351.5" ></text>
</g>
<g >
<title>rcu_core (5,157,466 samples, 0.02%)</title><rect x="73.3" y="341" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="76.28" y="351.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,991,001 samples, 0.01%)</title><rect x="274.3" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="277.31" y="415.5" ></text>
</g>
<g >
<title>__task_rq_lock (90,968,527 samples, 0.31%)</title><rect x="110.2" y="357" width="3.6" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="113.16" y="367.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (252,765,341 samples, 0.85%)</title><rect x="524.7" y="517" width="10.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="527.68" y="527.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,616,202 samples, 0.01%)</title><rect x="284.4" y="437" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="287.40" y="447.5" ></text>
</g>
<g >
<title>exc_page_fault (26,165,160 samples, 0.09%)</title><rect x="631.0" y="517" width="1.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="633.96" y="527.5" ></text>
</g>
<g >
<title>bpf_seq_write (41,446,148 samples, 0.14%)</title><rect x="492.9" y="245" width="1.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="495.87" y="255.5" ></text>
</g>
<g >
<title>do_user_addr_fault (63,003,490 samples, 0.21%)</title><rect x="590.7" y="485" width="2.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="593.72" y="495.5" ></text>
</g>
<g >
<title>kmem_cache_free (436,167,904 samples, 1.47%)</title><rect x="232.6" y="405" width="17.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="235.63" y="415.5" ></text>
</g>
<g >
<title>runtime.save (4,666,231 samples, 0.02%)</title><rect x="670.1" y="389" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="673.15" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (16,796,536 samples, 0.06%)</title><rect x="298.2" y="485" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="301.20" y="495.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (78,635,381 samples, 0.27%)</title><rect x="965.8" y="357" width="3.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="968.84" y="367.5" ></text>
</g>
<g >
<title>security_file_alloc (310,216,660 samples, 1.05%)</title><rect x="747.5" y="229" width="12.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="750.46" y="239.5" ></text>
</g>
<g >
<title>pick_next_entity (7,626,649 samples, 0.03%)</title><rect x="193.0" y="373" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="195.96" y="383.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (30,122,583 samples, 0.10%)</title><rect x="622.2" y="325" width="1.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="625.19" y="335.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (993,021,658 samples, 3.36%)</title><rect x="442.1" y="293" width="39.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="445.09" y="303.5" >bpf..</text>
</g>
<g >
<title>_raw_spin_unlock (8,772,000 samples, 0.03%)</title><rect x="105.5" y="389" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="108.49" y="399.5" ></text>
</g>
<g >
<title>rcu_core_si (4,570,994 samples, 0.02%)</title><rect x="228.2" y="341" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="231.20" y="351.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (2,667,300 samples, 0.01%)</title><rect x="241.7" y="245" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="244.71" y="255.5" ></text>
</g>
<g >
<title>runtime.memmove (22,318,233 samples, 0.08%)</title><rect x="571.8" y="501" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="574.79" y="511.5" ></text>
</g>
<g >
<title>memset_orig (3,806,523 samples, 0.01%)</title><rect x="873.5" y="165" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="876.54" y="175.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (103,019,313 samples, 0.35%)</title><rect x="809.8" y="229" width="4.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="812.85" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (76,999,529 samples, 0.26%)</title><rect x="590.6" y="501" width="3.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="593.63" y="511.5" ></text>
</g>
<g >
<title>idr_get_next_ul (123,554,424 samples, 0.42%)</title><rect x="476.0" y="245" width="4.9" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="478.99" y="255.5" ></text>
</g>
<g >
<title>__cond_resched (2,591,086 samples, 0.01%)</title><rect x="44.7" y="469" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="47.68" y="479.5" ></text>
</g>
<g >
<title>__do_softirq (8,141,385 samples, 0.03%)</title><rect x="270.8" y="373" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="273.81" y="383.5" ></text>
</g>
<g >
<title>runtime.unlock2 (3,106,390 samples, 0.01%)</title><rect x="1166.2" y="389" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1169.16" y="399.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,221,321 samples, 0.01%)</title><rect x="266.3" y="453" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="269.31" y="463.5" ></text>
</g>
<g >
<title>runtime.typehash (9,032,290 samples, 0.03%)</title><rect x="432.0" y="437" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="434.99" y="447.5" ></text>
</g>
<g >
<title>runtime.makeslice (10,859,393 samples, 0.04%)</title><rect x="606.3" y="309" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="609.30" y="319.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (4,644,500 samples, 0.02%)</title><rect x="675.3" y="421" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="678.33" y="431.5" ></text>
</g>
<g >
<title>consume_obj_stock (4,566,737 samples, 0.02%)</title><rect x="777.6" y="229" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="780.64" y="239.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (670,064,182 samples, 2.26%)</title><rect x="972.2" y="405" width="26.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="975.19" y="415.5" >s..</text>
</g>
<g >
<title>memset_orig (12,242,011 samples, 0.04%)</title><rect x="830.1" y="245" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="833.13" y="255.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3,291,996 samples, 0.01%)</title><rect x="157.4" y="341" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="160.42" y="351.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,789,658 samples, 0.04%)</title><rect x="11.9" y="501" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="14.90" y="511.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (10,437,139 samples, 0.04%)</title><rect x="247.3" y="357" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="250.27" y="367.5" ></text>
</g>
<g >
<title>irqentry_exit (4,662,906 samples, 0.02%)</title><rect x="586.5" y="485" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="589.45" y="495.5" ></text>
</g>
<g >
<title>migrate_enable (26,735,657 samples, 0.09%)</title><rect x="494.8" y="261" width="1.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="497.79" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="213" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1172.56" y="223.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (3,083,190 samples, 0.01%)</title><rect x="416.8" y="469" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="419.79" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (164,535,409 samples, 0.56%)</title><rect x="594.9" y="341" width="6.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="597.89" y="351.5" ></text>
</g>
<g >
<title>__mem_cgroup_uncharge_list (3,104,927 samples, 0.01%)</title><rect x="38.3" y="293" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="41.32" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (34,385,289 samples, 0.12%)</title><rect x="60.6" y="453" width="1.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="63.63" y="463.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,369,080 samples, 0.02%)</title><rect x="621.1" y="293" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="624.12" y="303.5" ></text>
</g>
<g >
<title>xa_load (84,830,133 samples, 0.29%)</title><rect x="823.9" y="197" width="3.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="826.92" y="207.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3,028,427 samples, 0.01%)</title><rect x="348.1" y="501" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="351.06" y="511.5" ></text>
</g>
<g >
<title>get_page_from_freelist (131,609,085 samples, 0.44%)</title><rect x="800.1" y="149" width="5.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="803.11" y="159.5" ></text>
</g>
<g >
<title>map_create (5,220,920,950 samples, 17.64%)</title><rect x="725.1" y="341" width="208.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="728.08" y="351.5" >map_create</text>
</g>
<g >
<title>alloc_fd (80,969,547 samples, 0.27%)</title><rect x="846.3" y="293" width="3.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="849.34" y="303.5" ></text>
</g>
<g >
<title>set_next_entity (2,769,428 samples, 0.01%)</title><rect x="210.8" y="389" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="213.81" y="399.5" ></text>
</g>
<g >
<title>get_page_from_freelist (8,537,236 samples, 0.03%)</title><rect x="602.2" y="149" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="605.19" y="159.5" ></text>
</g>
<g >
<title>errseq_sample (19,994,510 samples, 0.07%)</title><rect x="835.5" y="277" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="838.48" y="287.5" ></text>
</g>
<g >
<title>rcu_do_batch (21,963,224 samples, 0.07%)</title><rect x="83.0" y="325" width="0.9" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="86.04" y="335.5" ></text>
</g>
<g >
<title>select_idle_sibling (22,689,715 samples, 0.08%)</title><rect x="119.1" y="341" width="0.9" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="122.08" y="351.5" ></text>
</g>
<g >
<title>runtime.notewakeup (4,985,316 samples, 0.02%)</title><rect x="11.6" y="501" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="14.56" y="511.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (2,997,146 samples, 0.01%)</title><rect x="1010.8" y="341" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1013.76" y="351.5" ></text>
</g>
<g >
<title>refill_obj_stock (41,518,375 samples, 0.14%)</title><rect x="248.0" y="373" width="1.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="250.98" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (15,560,447 samples, 0.05%)</title><rect x="585.8" y="453" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="588.80" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (6,811,616 samples, 0.02%)</title><rect x="1189.2" y="549" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1192.19" y="559.5" ></text>
</g>
<g >
<title>schedule (5,281,897 samples, 0.02%)</title><rect x="296.1" y="453" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="299.11" y="463.5" ></text>
</g>
<g >
<title>syscall.read (1,549,572,909 samples, 5.24%)</title><rect x="435.7" y="437" width="61.7" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="438.66" y="447.5" >syscal..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,895,498 samples, 0.01%)</title><rect x="267.5" y="405" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="270.46" y="415.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,986,287 samples, 0.01%)</title><rect x="231.4" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="234.37" y="383.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo (2,710,926,884 samples, 9.16%)</title><rect x="521.9" y="581" width="108.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="524.87" y="591.5" >github.com/EM..</text>
</g>
<g >
<title>do_user_addr_fault (5,427,824 samples, 0.02%)</title><rect x="612.8" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="615.82" y="287.5" ></text>
</g>
<g >
<title>alloc_file (1,335,666,566 samples, 4.51%)</title><rect x="738.8" y="277" width="53.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="741.75" y="287.5" >alloc..</text>
</g>
<g >
<title>native_write_msr (53,199,601 samples, 0.18%)</title><rect x="183.5" y="325" width="2.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="186.46" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (3,006,352 samples, 0.01%)</title><rect x="249.4" y="245" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="252.36" y="255.5" ></text>
</g>
<g >
<title>error_entry (6,950,658 samples, 0.02%)</title><rect x="1188.3" y="517" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.28" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfParams (3,886,685 samples, 0.01%)</title><rect x="605.3" y="309" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="608.28" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (6,951,097 samples, 0.02%)</title><rect x="830.7" y="261" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="833.74" y="271.5" ></text>
</g>
<g >
<title>pick_next_task_fair (488,431,765 samples, 1.65%)</title><rect x="190.9" y="389" width="19.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="193.89" y="399.5" ></text>
</g>
<g >
<title>discard_slab (5,309,832 samples, 0.02%)</title><rect x="160.6" y="197" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="163.56" y="207.5" ></text>
</g>
<g >
<title>clear_page_erms (4,677,469 samples, 0.02%)</title><rect x="848.9" y="165" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="851.85" y="175.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (2,927,971 samples, 0.01%)</title><rect x="497.2" y="341" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="500.20" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (12,067,096 samples, 0.04%)</title><rect x="240.0" y="357" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="243.05" y="367.5" ></text>
</g>
<g >
<title>x86_pmu_enable (100,436,348 samples, 0.34%)</title><rect x="181.6" y="357" width="4.0" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="184.58" y="367.5" ></text>
</g>
<g >
<title>perf_ctx_disable (169,097,690 samples, 0.57%)</title><rect x="212.9" y="357" width="6.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="215.86" y="367.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,918,434 samples, 0.02%)</title><rect x="631.1" y="421" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="634.14" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (124,312,523 samples, 0.42%)</title><rect x="1177.8" y="485" width="4.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1180.77" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,078,206 samples, 0.01%)</title><rect x="609.8" y="309" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="612.85" y="319.5" ></text>
</g>
<g >
<title>runtime.(*activeSweep).end (3,739,014 samples, 0.01%)</title><rect x="391.0" y="581" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="393.98" y="591.5" ></text>
</g>
<g >
<title>runtime.scanstack (3,515,166 samples, 0.01%)</title><rect x="297.1" y="533" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="300.07" y="543.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (8,468,091 samples, 0.03%)</title><rect x="1171.5" y="437" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1174.45" y="447.5" ></text>
</g>
<g >
<title>rmqueue_bulk (2,930,298 samples, 0.01%)</title><rect x="660.4" y="229" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="663.36" y="239.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,658,441 samples, 0.01%)</title><rect x="166.0" y="405" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="168.97" y="415.5" ></text>
</g>
<g >
<title>do_nanosleep (69,657,536 samples, 0.24%)</title><rect x="12.8" y="469" width="2.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="15.77" y="479.5" ></text>
</g>
<g >
<title>get_page_from_freelist (35,877,075 samples, 0.12%)</title><rect x="591.6" y="357" width="1.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="594.59" y="367.5" ></text>
</g>
<g >
<title>futex_wake (4,127,728 samples, 0.01%)</title><rect x="11.6" y="405" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="14.57" y="415.5" ></text>
</g>
<g >
<title>rcu_core (12,067,096 samples, 0.04%)</title><rect x="240.0" y="277" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="243.05" y="287.5" ></text>
</g>
<g >
<title>kvfree (3,907,687 samples, 0.01%)</title><rect x="36.3" y="469" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="39.31" y="479.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,074,984 samples, 0.01%)</title><rect x="157.4" y="325" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="160.43" y="335.5" ></text>
</g>
<g >
<title>runtime.memhash64 (3,865,006 samples, 0.01%)</title><rect x="538.6" y="453" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="541.57" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (20,676,013 samples, 0.07%)</title><rect x="652.1" y="389" width="0.8" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="655.10" y="399.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (9,852,568 samples, 0.03%)</title><rect x="716.4" y="325" width="0.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="719.43" y="335.5" ></text>
</g>
<g >
<title>runtime.mstart1 (38,446,500 samples, 0.13%)</title><rect x="17.0" y="597" width="1.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="19.98" y="607.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (131,356,715 samples, 0.44%)</title><rect x="62.0" y="453" width="5.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="65.01" y="463.5" ></text>
</g>
<g >
<title>runtime.gcenable.func1 (239,973,804 samples, 0.81%)</title><rect x="390.4" y="629" width="9.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="393.41" y="639.5" ></text>
</g>
<g >
<title>do_wp_page (10,729,202 samples, 0.04%)</title><rect x="631.4" y="437" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="634.42" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*FuncProto).copy (34,135,485 samples, 0.12%)</title><rect x="610.9" y="341" width="1.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="613.87" y="351.5" ></text>
</g>
<g >
<title>lru_add_fn (5,406,044 samples, 0.02%)</title><rect x="591.2" y="357" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="594.22" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (3,876,240 samples, 0.01%)</title><rect x="604.2" y="277" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="607.20" y="287.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (8,454,832 samples, 0.03%)</title><rect x="932.8" y="325" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="935.78" y="335.5" ></text>
</g>
<g >
<title>setup_object (4,404,113 samples, 0.01%)</title><rect x="807.4" y="165" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="810.41" y="175.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (3,101,226 samples, 0.01%)</title><rect x="647.2" y="469" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="650.23" y="479.5" ></text>
</g>
<g >
<title>__radix_tree_delete (39,008,740 samples, 0.13%)</title><rect x="91.5" y="389" width="1.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="94.47" y="399.5" ></text>
</g>
<g >
<title>ksys_read (1,525,902,698 samples, 5.16%)</title><rect x="436.2" y="341" width="60.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="439.17" y="351.5" >ksys_r..</text>
</g>
<g >
<title>exit_to_user_mode_loop (6,047,856 samples, 0.02%)</title><rect x="1188.0" y="437" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1190.98" y="447.5" ></text>
</g>
<g >
<title>tick_sched_timer (7,803,883 samples, 0.03%)</title><rect x="186.4" y="309" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="189.37" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,923,519 samples, 0.01%)</title><rect x="677.9" y="373" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="680.85" y="383.5" ></text>
</g>
<g >
<title>___slab_alloc (6,882,915 samples, 0.02%)</title><rect x="928.6" y="245" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="931.58" y="255.5" ></text>
</g>
<g >
<title>__mutex_init (3,876,567 samples, 0.01%)</title><rect x="742.1" y="245" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="745.06" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).copy (20,958,765 samples, 0.07%)</title><rect x="612.3" y="341" width="0.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="615.32" y="351.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (6,971,057 samples, 0.02%)</title><rect x="591.2" y="405" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="594.19" y="415.5" ></text>
</g>
<g >
<title>all (29,596,039,589 samples, 100%)</title><rect x="10.0" y="677" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="687.5" ></text>
</g>
<g >
<title>handle_mm_fault (61,457,363 samples, 0.21%)</title><rect x="644.3" y="421" width="2.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="647.26" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (78,615,596 samples, 0.27%)</title><rect x="653.4" y="373" width="3.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="656.40" y="383.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,132,615 samples, 0.01%)</title><rect x="506.4" y="389" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="509.44" y="399.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (803,064,085 samples, 2.71%)</title><rect x="539.8" y="501" width="32.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="542.77" y="511.5" >bu..</text>
</g>
<g >
<title>runtime.greyobject (3,759,294 samples, 0.01%)</title><rect x="653.8" y="341" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="656.75" y="351.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (30,122,583 samples, 0.10%)</title><rect x="622.2" y="309" width="1.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="625.19" y="319.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (155,889,473 samples, 0.53%)</title><rect x="93.0" y="389" width="6.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="96.03" y="399.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (3,094,259 samples, 0.01%)</title><rect x="539.0" y="485" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="542.00" y="495.5" ></text>
</g>
<g >
<title>bpf_seq_read (1,475,287,724 samples, 4.98%)</title><rect x="438.1" y="309" width="58.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="441.13" y="319.5" >bpf_se..</text>
</g>
<g >
<title>__x64_sys_futex (3,930,893 samples, 0.01%)</title><rect x="400.1" y="421" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="403.09" y="431.5" ></text>
</g>
<g >
<title>sync_regs (3,888,804 samples, 0.01%)</title><rect x="660.6" y="469" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="663.62" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (3,207,938 samples, 0.01%)</title><rect x="1169.6" y="69" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1172.64" y="79.5" ></text>
</g>
<g >
<title>dequeue_task (20,579,009 samples, 0.07%)</title><rect x="13.5" y="421" width="0.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="16.48" y="431.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (12,450,865 samples, 0.04%)</title><rect x="38.6" y="261" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="41.63" y="271.5" ></text>
</g>
<g >
<title>__do_softirq (3,585,079 samples, 0.01%)</title><rect x="61.9" y="373" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="64.86" y="383.5" ></text>
</g>
<g >
<title>wake_up_process (1,172,415,839 samples, 3.96%)</title><rect x="106.0" y="389" width="46.7" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="108.98" y="399.5" >wake..</text>
</g>
<g >
<title>__rcu_read_unlock (11,578,826 samples, 0.04%)</title><rect x="876.1" y="245" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="879.14" y="255.5" ></text>
</g>
<g >
<title>idr_remove (225,337,777 samples, 0.76%)</title><rect x="90.4" y="421" width="9.0" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="93.42" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,864,947 samples, 0.01%)</title><rect x="278.1" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="281.07" y="399.5" ></text>
</g>
<g >
<title>send_signal_locked (4,402,644 samples, 0.01%)</title><rect x="12.1" y="405" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="15.10" y="415.5" ></text>
</g>
<g >
<title>rcu_core (2,939,250 samples, 0.01%)</title><rect x="232.5" y="293" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="235.51" y="303.5" ></text>
</g>
<g >
<title>put_cpu_partial (8,886,267 samples, 0.03%)</title><rect x="160.4" y="229" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="163.41" y="239.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (22,819,349 samples, 0.08%)</title><rect x="1170.4" y="325" width="0.9" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1173.42" y="335.5" ></text>
</g>
<g >
<title>update_load_avg (38,230,652 samples, 0.13%)</title><rect x="129.3" y="293" width="1.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="132.29" y="303.5" ></text>
</g>
<g >
<title>should_failslab (8,513,925 samples, 0.03%)</title><rect x="896.9" y="261" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="899.86" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,869,869 samples, 0.01%)</title><rect x="579.1" y="421" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="582.05" y="431.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (172,746,533 samples, 0.58%)</title><rect x="556.2" y="293" width="6.9" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="559.17" y="303.5" ></text>
</g>
<g >
<title>task_work_add (27,436,667 samples, 0.09%)</title><rect x="31.6" y="437" width="1.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="34.64" y="447.5" ></text>
</g>
<g >
<title>__cond_resched (2,780,484 samples, 0.01%)</title><rect x="58.4" y="453" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="61.39" y="463.5" ></text>
</g>
<g >
<title>clear_page_erms (8,272,932 samples, 0.03%)</title><rect x="660.0" y="261" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="662.97" y="271.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (3,847,232 samples, 0.01%)</title><rect x="716.3" y="341" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="719.28" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (4,652,840 samples, 0.02%)</title><rect x="611.0" y="309" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="613.96" y="319.5" ></text>
</g>
<g >
<title>radix_tree_node_alloc.constprop.0 (7,662,182 samples, 0.03%)</title><rect x="928.5" y="277" width="0.3" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="931.54" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (3,083,792 samples, 0.01%)</title><rect x="1173.4" y="501" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1176.37" y="511.5" ></text>
</g>
<g >
<title>syscall.Syscall (5,196,538 samples, 0.02%)</title><rect x="629.8" y="373" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="632.75" y="383.5" ></text>
</g>
<g >
<title>get_random_u32 (5,425,735 samples, 0.02%)</title><rect x="807.2" y="149" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="810.19" y="159.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (6,954,898 samples, 0.02%)</title><rect x="1007.2" y="261" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1010.17" y="271.5" ></text>
</g>
<g >
<title>native_write_msr (2,767,412 samples, 0.01%)</title><rect x="14.9" y="341" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="17.86" y="351.5" ></text>
</g>
<g >
<title>bpf_seq_write (13,988,067 samples, 0.05%)</title><rect x="569.3" y="261" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="572.30" y="271.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (2,997,146 samples, 0.01%)</title><rect x="1010.8" y="325" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1013.76" y="335.5" ></text>
</g>
<g >
<title>file_free_rcu (3,872,042 samples, 0.01%)</title><rect x="20.6" y="357" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="23.60" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,120,780 samples, 0.01%)</title><rect x="631.7" y="357" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="634.72" y="367.5" ></text>
</g>
<g >
<title>runtime.newobject (331,427,057 samples, 1.12%)</title><rect x="647.4" y="469" width="13.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="650.40" y="479.5" ></text>
</g>
<g >
<title>rcu_core (5,235,890 samples, 0.02%)</title><rect x="286.2" y="373" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="289.20" y="383.5" ></text>
</g>
<g >
<title>check_kill_permission (3,086,052 samples, 0.01%)</title><rect x="298.3" y="421" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="301.27" y="431.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3,119,134 samples, 0.01%)</title><rect x="497.3" y="389" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="500.31" y="399.5" ></text>
</g>
<g >
<title>xas_descend (18,343,459 samples, 0.06%)</title><rect x="824.9" y="181" width="0.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="827.89" y="191.5" ></text>
</g>
<g >
<title>check_stack_object (6,782,791 samples, 0.02%)</title><rect x="716.6" y="309" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="719.55" y="319.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (50,929,121 samples, 0.17%)</title><rect x="512.0" y="405" width="2.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="515.00" y="415.5" ></text>
</g>
<g >
<title>rcu_do_batch (16,708,291 samples, 0.06%)</title><rect x="89.7" y="293" width="0.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="92.72" y="303.5" ></text>
</g>
<g >
<title>delete_node (4,109,510 samples, 0.01%)</title><rect x="99.2" y="389" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="102.25" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,499,162 samples, 0.04%)</title><rect x="875.7" y="245" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="878.72" y="255.5" ></text>
</g>
<g >
<title>file_free_rcu (4,022,072 samples, 0.01%)</title><rect x="261.8" y="293" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="264.85" y="303.5" ></text>
</g>
<g >
<title>clear_page_erms (23,879,444 samples, 0.08%)</title><rect x="645.4" y="293" width="1.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="648.42" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,869,869 samples, 0.01%)</title><rect x="579.1" y="437" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="582.05" y="447.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (12,289,241 samples, 0.04%)</title><rect x="805.5" y="149" width="0.5" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="808.48" y="159.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (6,084,984 samples, 0.02%)</title><rect x="415.8" y="453" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="418.79" y="463.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (5,344,861 samples, 0.02%)</title><rect x="405.4" y="501" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="408.37" y="511.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,766,224 samples, 0.01%)</title><rect x="274.3" y="325" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="277.32" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (30,122,583 samples, 0.10%)</title><rect x="622.2" y="293" width="1.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="625.19" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock (11,821,632 samples, 0.04%)</title><rect x="178.0" y="405" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="181.05" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,447,885 samples, 0.02%)</title><rect x="599.4" y="117" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="602.38" y="127.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (24,220,821 samples, 0.08%)</title><rect x="415.1" y="469" width="0.9" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="418.07" y="479.5" ></text>
</g>
<g >
<title>runtime.findObject (28,529,246 samples, 0.10%)</title><rect x="654.8" y="325" width="1.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="657.79" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (13,497,703 samples, 0.05%)</title><rect x="659.9" y="293" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="662.94" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (13,998,594 samples, 0.05%)</title><rect x="585.9" y="373" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="588.86" y="383.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (11,418,156 samples, 0.04%)</title><rect x="295.6" y="565" width="0.4" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="298.55" y="575.5" ></text>
</g>
<g >
<title>gcWriteBarrier (2,997,146 samples, 0.01%)</title><rect x="1010.8" y="373" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1013.76" y="383.5" ></text>
</g>
<g >
<title>idr_get_free (179,560,576 samples, 0.61%)</title><rect x="921.7" y="293" width="7.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="924.69" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).finalize (3,105,552 samples, 0.01%)</title><rect x="632.1" y="533" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="635.12" y="543.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (3,099,739 samples, 0.01%)</title><rect x="606.6" y="261" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="609.61" y="271.5" ></text>
</g>
<g >
<title>mod_objcg_state (4,678,020 samples, 0.02%)</title><rect x="785.0" y="229" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="788.03" y="239.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1 (888,833,924 samples, 3.00%)</title><rect x="594.5" y="549" width="35.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="597.52" y="559.5" >git..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,897,719 samples, 0.01%)</title><rect x="59.2" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="62.17" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (98,978,082 samples, 0.33%)</title><rect x="581.2" y="517" width="3.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="584.20" y="527.5" ></text>
</g>
<g >
<title>update_curr (80,181,039 samples, 0.27%)</title><rect x="196.9" y="357" width="3.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="199.89" y="367.5" ></text>
</g>
<g >
<title>allocate_slab (48,716,055 samples, 0.16%)</title><rect x="757.3" y="165" width="2.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="760.33" y="175.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (23,927,533 samples, 0.08%)</title><rect x="776.6" y="229" width="1.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="779.63" y="239.5" ></text>
</g>
<g >
<title>runtime.sweepone (37,188,148 samples, 0.13%)</title><rect x="520.4" y="565" width="1.5" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="523.39" y="575.5" ></text>
</g>
<g >
<title>alloc_fdtable (11,679,474 samples, 0.04%)</title><rect x="848.8" y="261" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="851.82" y="271.5" ></text>
</g>
<g >
<title>exc_page_fault (16,285,549 samples, 0.06%)</title><rect x="628.7" y="325" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="631.67" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (25,650,496 samples, 0.09%)</title><rect x="585.6" y="517" width="1.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="588.61" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (3,092,036 samples, 0.01%)</title><rect x="604.8" y="293" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="607.82" y="303.5" ></text>
</g>
<g >
<title>rcu_do_batch (10,903,022 samples, 0.04%)</title><rect x="240.1" y="261" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="243.09" y="271.5" ></text>
</g>
<g >
<title>psi_flags_change (3,045,662 samples, 0.01%)</title><rect x="220.0" y="405" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="222.95" y="415.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (1,549,572,909 samples, 5.24%)</title><rect x="435.7" y="453" width="61.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="438.66" y="463.5" >intern..</text>
</g>
<g >
<title>ptep_clear_flush (3,068,925 samples, 0.01%)</title><rect x="631.6" y="405" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="634.60" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (8,598,567 samples, 0.03%)</title><rect x="506.1" y="357" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="509.10" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (3,868,260 samples, 0.01%)</title><rect x="873.2" y="101" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="876.22" y="111.5" ></text>
</g>
<g >
<title>set_next_buddy (3,017,351 samples, 0.01%)</title><rect x="123.4" y="325" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="126.45" y="335.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,437,139 samples, 0.04%)</title><rect x="247.3" y="341" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="250.27" y="351.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,063,536 samples, 0.01%)</title><rect x="1186.2" y="405" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1189.17" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (6,212,565 samples, 0.02%)</title><rect x="626.6" y="133" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="629.62" y="143.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,217,703 samples, 0.02%)</title><rect x="16.3" y="581" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="19.28" y="591.5" ></text>
</g>
<g >
<title>runtime.mstart1 (129,696,391 samples, 0.44%)</title><rect x="11.1" y="581" width="5.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="14.11" y="591.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,678,018 samples, 0.02%)</title><rect x="90.2" y="277" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="93.20" y="287.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,588,397,078 samples, 8.75%)</title><rect x="287.2" y="613" width="103.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="290.20" y="623.5" >runtime.syst..</text>
</g>
<g >
<title>collapse_huge_page (4,589,545 samples, 0.02%)</title><rect x="1169.6" y="101" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1172.58" y="111.5" ></text>
</g>
<g >
<title>mod_memcg_state (10,038,035 samples, 0.03%)</title><rect x="891.4" y="213" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="894.43" y="223.5" ></text>
</g>
<g >
<title>d_flags_for_inode (3,873,637 samples, 0.01%)</title><rect x="833.5" y="245" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="836.46" y="255.5" ></text>
</g>
<g >
<title>__alloc_pages (6,211,389 samples, 0.02%)</title><rect x="619.3" y="149" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="622.28" y="159.5" ></text>
</g>
<g >
<title>runtime.gosched_m (5,139,117 samples, 0.02%)</title><rect x="390.6" y="565" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="393.57" y="575.5" ></text>
</g>
<g >
<title>perf_ctx_enable (123,700,845 samples, 0.42%)</title><rect x="180.6" y="373" width="5.0" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="183.65" y="383.5" ></text>
</g>
<g >
<title>apparmor_capable (19,989,378 samples, 0.07%)</title><rect x="898.3" y="293" width="0.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="901.30" y="303.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (6,279,740 samples, 0.02%)</title><rect x="250.2" y="405" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="253.21" y="415.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (8,457,493 samples, 0.03%)</title><rect x="423.0" y="485" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="425.97" y="495.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (10,865,078 samples, 0.04%)</title><rect x="897.7" y="309" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="900.68" y="319.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6,708,992,894 samples, 22.67%)</title><rect x="19.3" y="613" width="267.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="22.34" y="623.5" >syscall_exit_to_user_mode</text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).finalize (6,904,179 samples, 0.02%)</title><rect x="632.7" y="517" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="635.73" y="527.5" ></text>
</g>
<g >
<title>rcu_core (5,797,074 samples, 0.02%)</title><rect x="67.0" y="341" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="70.00" y="351.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (4,172,214 samples, 0.01%)</title><rect x="208.4" y="341" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="211.44" y="351.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (3,003,513,281 samples, 10.15%)</title><rect x="400.6" y="581" width="119.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="403.58" y="591.5" >github.com/EMn..</text>
</g>
<g >
<title>delete_node (7,315,588 samples, 0.02%)</title><rect x="92.7" y="373" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="95.74" y="383.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (6,200,046 samples, 0.02%)</title><rect x="169.7" y="373" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="172.66" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (5,116,259 samples, 0.02%)</title><rect x="20.6" y="421" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="23.60" y="431.5" ></text>
</g>
<g >
<title>runtime.findObject (15,022,649 samples, 0.05%)</title><rect x="311.2" y="533" width="0.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="314.25" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).copy (22,502,133 samples, 0.08%)</title><rect x="610.0" y="341" width="0.9" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="612.97" y="351.5" ></text>
</g>
<g >
<title>__irqentry_text_end (6,748,614 samples, 0.02%)</title><rect x="1006.5" y="373" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1009.48" y="383.5" ></text>
</g>
<g >
<title>irqentry_exit (8,440,455 samples, 0.03%)</title><rect x="1010.3" y="341" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1013.34" y="351.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (5,385,235 samples, 0.02%)</title><rect x="1004.0" y="421" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1006.99" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,200,046 samples, 0.02%)</title><rect x="169.7" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="172.66" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (13,925,996 samples, 0.05%)</title><rect x="212.1" y="373" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="215.07" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,516,285 samples, 0.02%)</title><rect x="381.8" y="485" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="384.79" y="495.5" ></text>
</g>
<g >
<title>sched_clock (66,788,983 samples, 0.23%)</title><rect x="149.6" y="325" width="2.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="152.58" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,653,831 samples, 0.02%)</title><rect x="612.8" y="229" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="615.85" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (781,556,702 samples, 2.64%)</title><rect x="540.6" y="389" width="31.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="543.56" y="399.5" >do..</text>
</g>
<g >
<title>__mem_cgroup_charge (6,187,568 samples, 0.02%)</title><rect x="644.6" y="357" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="647.62" y="367.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,939,250 samples, 0.01%)</title><rect x="232.5" y="357" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="235.51" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (6,991,477 samples, 0.02%)</title><rect x="82.5" y="437" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="85.52" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mheap).freeSpanLocked (3,748,743 samples, 0.01%)</title><rect x="399.7" y="533" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="402.67" y="543.5" ></text>
</g>
<g >
<title>update_rq_clock (3,308,676 samples, 0.01%)</title><rect x="15.4" y="421" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="18.39" y="431.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (4,441,959 samples, 0.02%)</title><rect x="1010.0" y="325" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1013.04" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (2,895,498 samples, 0.01%)</title><rect x="267.5" y="357" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="270.46" y="367.5" ></text>
</g>
<g >
<title>runtime.(*scavengerState).park (7,702,316 samples, 0.03%)</title><rect x="400.0" y="597" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="402.97" y="607.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (51,687,962 samples, 0.17%)</title><rect x="512.0" y="437" width="2.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="515.00" y="447.5" ></text>
</g>
<g >
<title>___slab_alloc (6,841,644 samples, 0.02%)</title><rect x="873.2" y="149" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="876.15" y="159.5" ></text>
</g>
<g >
<title>runtime.park_m (3,228,941 samples, 0.01%)</title><rect x="287.1" y="581" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="290.07" y="591.5" ></text>
</g>
<g >
<title>rcu_core_si (9,060,668 samples, 0.03%)</title><rect x="286.4" y="405" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="289.41" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,006,352 samples, 0.01%)</title><rect x="249.4" y="309" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="252.36" y="319.5" ></text>
</g>
<g >
<title>clear_page_erms (33,969,286 samples, 0.11%)</title><rect x="1008.0" y="197" width="1.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1011.02" y="207.5" ></text>
</g>
<g >
<title>clear_page_erms (9,313,958 samples, 0.03%)</title><rect x="586.0" y="341" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="588.99" y="351.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,920,944 samples, 0.01%)</title><rect x="240.8" y="277" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="243.76" y="287.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,188,892 samples, 0.02%)</title><rect x="611.6" y="261" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="614.64" y="271.5" ></text>
</g>
<g >
<title>call_rcu (2,652,443 samples, 0.01%)</title><rect x="282.1" y="469" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="285.09" y="479.5" ></text>
</g>
<g >
<title>handle_mm_fault (14,741,161 samples, 0.05%)</title><rect x="599.0" y="245" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="602.04" y="255.5" ></text>
</g>
<g >
<title>queue_work_on (9,595,444 samples, 0.03%)</title><rect x="166.5" y="437" width="0.4" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="169.52" y="447.5" ></text>
</g>
<g >
<title>__free_slab (6,602,674 samples, 0.02%)</title><rect x="162.2" y="165" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="165.21" y="175.5" ></text>
</g>
<g >
<title>runtime.sysAllocOS (10,766,126 samples, 0.04%)</title><rect x="1011.4" y="293" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1014.40" y="303.5" ></text>
</g>
<g >
<title>rcu_core (6,874,312 samples, 0.02%)</title><rect x="67.2" y="357" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="70.24" y="367.5" ></text>
</g>
<g >
<title>runtime.newobject (10,070,564 samples, 0.03%)</title><rect x="610.5" y="325" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="613.47" y="335.5" ></text>
</g>
<g >
<title>errors.Is (7,657,592 samples, 0.03%)</title><rect x="634.6" y="501" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="637.62" y="511.5" ></text>
</g>
<g >
<title>runtime.lock2 (27,658,757 samples, 0.09%)</title><rect x="1159.5" y="357" width="1.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1162.51" y="367.5" ></text>
</g>
<g >
<title>refill_stock (3,559,609 samples, 0.01%)</title><rect x="249.5" y="341" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="252.49" y="351.5" ></text>
</g>
<g >
<title>runtime.scanobject (1,777,460,388 samples, 6.01%)</title><rect x="318.8" y="565" width="70.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="321.81" y="575.5" >runtime...</text>
</g>
<g >
<title>do_anonymous_page (3,852,752 samples, 0.01%)</title><rect x="621.1" y="261" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="624.12" y="271.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,102,864 samples, 0.01%)</title><rect x="610.3" y="229" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="613.31" y="239.5" ></text>
</g>
<g >
<title>clear_page_erms (113,812,628 samples, 0.38%)</title><rect x="800.3" y="133" width="4.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="803.29" y="143.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,682,716 samples, 0.01%)</title><rect x="59.3" y="453" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="62.29" y="463.5" ></text>
</g>
<g >
<title>idr_alloc_u32 (246,728,984 samples, 0.83%)</title><rect x="920.6" y="309" width="9.9" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="923.65" y="319.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (9,305,150 samples, 0.03%)</title><rect x="605.9" y="277" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="608.87" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_sched_yield (5,983,001 samples, 0.02%)</title><rect x="296.1" y="485" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="299.11" y="495.5" ></text>
</g>
<g >
<title>irqentry_exit (3,028,934 samples, 0.01%)</title><rect x="1181.1" y="373" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1184.09" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (2,740,382 samples, 0.01%)</title><rect x="245.5" y="309" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="248.53" y="319.5" ></text>
</g>
<g >
<title>runtime.schedule (3,228,941 samples, 0.01%)</title><rect x="287.1" y="565" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="290.07" y="575.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,837,436 samples, 0.01%)</title><rect x="1158.8" y="277" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1161.84" y="287.5" ></text>
</g>
<g >
<title>alloc_pages (3,865,627 samples, 0.01%)</title><rect x="928.6" y="197" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="931.58" y="207.5" ></text>
</g>
<g >
<title>runtime.mallocgc (2,852,981 samples, 0.01%)</title><rect x="1166.4" y="437" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1169.44" y="447.5" ></text>
</g>
<g >
<title>call_rcu (124,743,923 samples, 0.42%)</title><rect x="166.9" y="453" width="5.0" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="169.90" y="463.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (9,976,306 samples, 0.03%)</title><rect x="1170.5" y="293" width="0.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1173.48" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (196,632,008 samples, 0.66%)</title><rect x="765.6" y="165" width="7.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="768.59" y="175.5" ></text>
</g>
<g >
<title>__update_load_avg_se (4,642,764 samples, 0.02%)</title><rect x="208.6" y="341" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="211.60" y="351.5" ></text>
</g>
<g >
<title>migrate_enable (12,292,041 samples, 0.04%)</title><rect x="570.1" y="277" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="573.13" y="287.5" ></text>
</g>
<g >
<title>encoding/binary.Read (3,898,717 samples, 0.01%)</title><rect x="400.6" y="533" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="403.58" y="543.5" ></text>
</g>
<g >
<title>__kmalloc_node (17,785,856 samples, 0.06%)</title><rect x="805.5" y="165" width="0.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="808.48" y="175.5" ></text>
</g>
<g >
<title>runtime.scanobject (15,643,551 samples, 0.05%)</title><rect x="389.8" y="581" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="392.77" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.findProgramTargetInKernel (521,613,541 samples, 1.76%)</title><rect x="608.9" y="421" width="20.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="611.89" y="431.5" ></text>
</g>
<g >
<title>xas_start (5,271,082 samples, 0.02%)</title><rect x="827.6" y="197" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="830.57" y="207.5" ></text>
</g>
<g >
<title>memcpy_orig (29,166,796 samples, 0.10%)</title><rect x="492.9" y="229" width="1.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="495.90" y="239.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,485,404 samples, 0.03%)</title><rect x="296.1" y="517" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="299.06" y="527.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (165,734,591 samples, 0.56%)</title><rect x="253.5" y="389" width="6.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="256.45" y="399.5" ></text>
</g>
<g >
<title>do_mmap (8,457,266 samples, 0.03%)</title><rect x="1011.5" y="181" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1014.46" y="191.5" ></text>
</g>
<g >
<title>runtime.(*mheap).nextSpanForSweep (10,887,943 samples, 0.04%)</title><rect x="391.1" y="581" width="0.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="394.13" y="591.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,869,869 samples, 0.01%)</title><rect x="579.1" y="405" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="582.05" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (3,108,877 samples, 0.01%)</title><rect x="619.3" y="117" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="622.34" y="127.5" ></text>
</g>
<g >
<title>folio_add_lru (3,859,292 samples, 0.01%)</title><rect x="1007.5" y="245" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1010.51" y="255.5" ></text>
</g>
<g >
<title>__folio_alloc (4,638,959 samples, 0.02%)</title><rect x="611.7" y="181" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="614.70" y="191.5" ></text>
</g>
<g >
<title>wp_page_copy (6,985,161 samples, 0.02%)</title><rect x="600.6" y="197" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="603.62" y="207.5" ></text>
</g>
<g >
<title>kvmalloc_node (10,900,134 samples, 0.04%)</title><rect x="848.9" y="245" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="851.85" y="255.5" ></text>
</g>
<g >
<title>do_user_addr_fault (67,658,236 samples, 0.23%)</title><rect x="644.2" y="437" width="2.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="647.19" y="447.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,068,925 samples, 0.01%)</title><rect x="631.6" y="389" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="634.60" y="399.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (10,757,742 samples, 0.04%)</title><rect x="508.5" y="485" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="511.46" y="495.5" ></text>
</g>
<g >
<title>exc_page_fault (17,078,157 samples, 0.06%)</title><rect x="599.0" y="277" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="602.04" y="287.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (17,865,562 samples, 0.06%)</title><rect x="998.9" y="421" width="0.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1001.91" y="431.5" ></text>
</g>
<g >
<title>__d_alloc (968,494,118 samples, 3.27%)</title><rect x="792.1" y="261" width="38.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="795.07" y="271.5" >__d..</text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (57,332,440 samples, 0.19%)</title><rect x="661.0" y="469" width="2.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="664.02" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,325,787 samples, 0.01%)</title><rect x="297.5" y="501" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="300.45" y="511.5" ></text>
</g>
<g >
<title>rcu_core_si (87,476,228 samples, 0.30%)</title><rect x="186.8" y="309" width="3.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="189.81" y="319.5" ></text>
</g>
<g >
<title>runtime.persistentalloc (14,635,827 samples, 0.05%)</title><rect x="1011.2" y="357" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1014.25" y="367.5" ></text>
</g>
<g >
<title>__folio_alloc (13,998,594 samples, 0.05%)</title><rect x="585.9" y="389" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="588.86" y="399.5" ></text>
</g>
<g >
<title>runtime.memhash64 (8,358,914 samples, 0.03%)</title><rect x="431.7" y="437" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="434.65" y="447.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (5,261,982 samples, 0.02%)</title><rect x="423.5" y="485" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="426.46" y="495.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (888,833,924 samples, 3.00%)</title><rect x="594.5" y="565" width="35.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="597.52" y="575.5" >syn..</text>
</g>
<g >
<title>__irqentry_text_end (9,074,303 samples, 0.03%)</title><rect x="1184.8" y="517" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1187.81" y="527.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (2,960,512 samples, 0.01%)</title><rect x="410.0" y="485" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="412.97" y="495.5" ></text>
</g>
<g >
<title>runtime.mstart0 (38,446,500 samples, 0.13%)</title><rect x="17.0" y="613" width="1.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="19.98" y="623.5" ></text>
</g>
<g >
<title>exit_mmap (79,212,507 samples, 0.27%)</title><rect x="36.6" y="453" width="3.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="39.56" y="463.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (43,496,358 samples, 0.15%)</title><rect x="162.6" y="277" width="1.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="165.57" y="287.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (3,111,877 samples, 0.01%)</title><rect x="631.0" y="389" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="634.02" y="399.5" ></text>
</g>
<g >
<title>runtime.sysmon (128,177,342 samples, 0.43%)</title><rect x="11.1" y="565" width="5.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="14.13" y="575.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,787,401 samples, 0.02%)</title><rect x="572.3" y="373" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="575.28" y="383.5" ></text>
</g>
<g >
<title>runtime.memhash64 (3,894,762 samples, 0.01%)</title><rect x="617.8" y="309" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="620.77" y="319.5" ></text>
</g>
<g >
<title>sync_regs (2,999,281 samples, 0.01%)</title><rect x="389.6" y="549" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="392.56" y="559.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (140,894,663 samples, 0.48%)</title><rect x="139.9" y="325" width="5.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="142.92" y="335.5" ></text>
</g>
<g >
<title>psi_group_change (4,236,827 samples, 0.01%)</title><rect x="15.1" y="405" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="18.09" y="415.5" ></text>
</g>
<g >
<title>array_map_alloc_check (45,254,736 samples, 0.15%)</title><rect x="722.1" y="341" width="1.8" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="725.12" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (3,099,882 samples, 0.01%)</title><rect x="604.2" y="149" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="607.20" y="159.5" ></text>
</g>
<g >
<title>runtime.mcall (7,702,316 samples, 0.03%)</title><rect x="400.0" y="565" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="402.97" y="575.5" ></text>
</g>
<g >
<title>task_work_add (21,038,682 samples, 0.07%)</title><rect x="34.5" y="453" width="0.9" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="37.54" y="463.5" ></text>
</g>
<g >
<title>runtime.efaceeq (5,420,724 samples, 0.02%)</title><rect x="537.6" y="469" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="540.61" y="479.5" ></text>
</g>
<g >
<title>runtime.getempty (30,326,230 samples, 0.10%)</title><rect x="1180.2" y="421" width="1.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1183.21" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,157,466 samples, 0.02%)</title><rect x="73.3" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="76.28" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,707,897 samples, 0.02%)</title><rect x="11.6" y="453" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.57" y="463.5" ></text>
</g>
<g >
<title>[[vdso]] (3,044,662 samples, 0.01%)</title><rect x="297.3" y="517" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="300.31" y="527.5" ></text>
</g>
<g >
<title>security_bpf_map (9,992,901 samples, 0.03%)</title><rect x="932.4" y="325" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="935.38" y="335.5" ></text>
</g>
<g >
<title>put_cpu_partial (6,602,674 samples, 0.02%)</title><rect x="162.2" y="229" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="165.21" y="239.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (2,968,292 samples, 0.01%)</title><rect x="286.3" y="341" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="289.29" y="351.5" ></text>
</g>
<g >
<title>rcu_do_batch (9,060,668 samples, 0.03%)</title><rect x="286.4" y="373" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="289.41" y="383.5" ></text>
</g>
<g >
<title>do_user_addr_fault (10,097,192 samples, 0.03%)</title><rect x="600.6" y="277" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="603.56" y="287.5" ></text>
</g>
<g >
<title>dequeue_task_fair (3,262,615 samples, 0.01%)</title><rect x="17.8" y="421" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="20.76" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,006,352 samples, 0.01%)</title><rect x="249.4" y="293" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="252.36" y="303.5" ></text>
</g>
<g >
<title>clear_page_erms (3,874,810 samples, 0.01%)</title><rect x="805.7" y="53" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="808.72" y="63.5" ></text>
</g>
<g >
<title>mntput_no_expire (33,831,558 samples, 0.11%)</title><rect x="267.6" y="437" width="1.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="270.57" y="447.5" ></text>
</g>
<g >
<title>____fput (6,048,854,537 samples, 20.44%)</title><rect x="44.7" y="485" width="241.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="47.67" y="495.5" >____fput</text>
</g>
<g >
<title>rcu_core_si (5,157,466 samples, 0.02%)</title><rect x="73.3" y="357" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="76.28" y="367.5" ></text>
</g>
<g >
<title>runtime.greyobject (10,636,635 samples, 0.04%)</title><rect x="513.4" y="373" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="516.40" y="383.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,874,312 samples, 0.02%)</title><rect x="67.2" y="421" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="70.24" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,638,959 samples, 0.02%)</title><rect x="611.7" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="614.70" y="159.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,616,202 samples, 0.01%)</title><rect x="284.4" y="453" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="287.40" y="463.5" ></text>
</g>
<g >
<title>rmqueue (4,444,267 samples, 0.02%)</title><rect x="660.3" y="261" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="663.30" y="271.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,089,728,265 samples, 3.68%)</title><rect x="853.7" y="277" width="43.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="856.75" y="287.5" >__km..</text>
</g>
<g >
<title>memset_orig (6,988,356 samples, 0.02%)</title><rect x="759.5" y="213" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="762.52" y="223.5" ></text>
</g>
<g >
<title>__slab_free (6,273,416 samples, 0.02%)</title><rect x="272.5" y="437" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="275.51" y="447.5" ></text>
</g>
<g >
<title>mmput (79,212,507 samples, 0.27%)</title><rect x="36.6" y="485" width="3.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="39.56" y="495.5" ></text>
</g>
<g >
<title>clear_page_erms (4,485,627 samples, 0.02%)</title><rect x="1169.2" y="229" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1172.20" y="239.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (12,226,090 samples, 0.04%)</title><rect x="482.7" y="277" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="485.70" y="287.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,116,259 samples, 0.02%)</title><rect x="20.6" y="437" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="23.60" y="447.5" ></text>
</g>
<g >
<title>exc_page_fault (3,110,693 samples, 0.01%)</title><rect x="595.6" y="309" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="598.60" y="319.5" ></text>
</g>
<g >
<title>file_free_rcu (3,182,664 samples, 0.01%)</title><rect x="169.7" y="293" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="172.69" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (3,081,221 samples, 0.01%)</title><rect x="620.1" y="325" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="623.09" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,986,287 samples, 0.01%)</title><rect x="231.4" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="234.37" y="399.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (2,554,588,894 samples, 8.63%)</title><rect x="736.0" y="293" width="101.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="739.00" y="303.5" >alloc_file_p..</text>
</g>
<g >
<title>try_to_wake_up (3,259,859 samples, 0.01%)</title><rect x="11.6" y="373" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="14.61" y="383.5" ></text>
</g>
<g >
<title>_get_random_bytes (3,853,999 samples, 0.01%)</title><rect x="775.9" y="133" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="778.89" y="143.5" ></text>
</g>
<g >
<title>handle_mm_fault (22,283,752 samples, 0.08%)</title><rect x="631.0" y="485" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="633.96" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.ProgLoad (5,196,538 samples, 0.02%)</title><rect x="629.8" y="421" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="632.75" y="431.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,116,259 samples, 0.02%)</title><rect x="20.6" y="453" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="23.60" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock (30,030,864 samples, 0.10%)</title><rect x="845.0" y="293" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="848.02" y="303.5" ></text>
</g>
<g >
<title>free_unref_page_list (17,123,793 samples, 0.06%)</title><rect x="38.5" y="293" width="0.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="41.48" y="303.5" ></text>
</g>
<g >
<title>try_charge_memcg (4,528,307 samples, 0.02%)</title><rect x="892.0" y="229" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="895.02" y="239.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (3,566,723 samples, 0.01%)</title><rect x="14.8" y="405" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="17.83" y="415.5" ></text>
</g>
<g >
<title>runtime.sysMmap.abi0 (10,006,215 samples, 0.03%)</title><rect x="1011.4" y="277" width="0.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1014.43" y="287.5" ></text>
</g>
<g >
<title>runtime.osyield.abi0 (13,478,332 samples, 0.05%)</title><rect x="296.0" y="533" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="299.03" y="543.5" ></text>
</g>
<g >
<title>do_anonymous_page (9,885,421 samples, 0.03%)</title><rect x="572.2" y="389" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="575.16" y="399.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (22,819,349 samples, 0.08%)</title><rect x="1170.4" y="389" width="0.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1173.42" y="399.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (3,105,130 samples, 0.01%)</title><rect x="612.5" y="293" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="615.51" y="303.5" ></text>
</g>
<g >
<title>setup_object (6,921,604 samples, 0.02%)</title><rect x="875.3" y="181" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="878.32" y="191.5" ></text>
</g>
<g >
<title>__folio_alloc (37,445,841 samples, 0.13%)</title><rect x="591.6" y="389" width="1.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="594.56" y="399.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1 (3,003,513,281 samples, 10.15%)</title><rect x="400.6" y="549" width="119.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="403.58" y="559.5" >github.com/EMn..</text>
</g>
<g >
<title>runtime.heapBitsSetType (3,091,065 samples, 0.01%)</title><rect x="610.7" y="293" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="613.71" y="303.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (44,460,433 samples, 0.15%)</title><rect x="785.3" y="229" width="1.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="788.25" y="239.5" ></text>
</g>
<g >
<title>idr_get_next (3,127,075 samples, 0.01%)</title><rect x="563.1" y="293" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="566.06" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (12,067,096 samples, 0.04%)</title><rect x="240.0" y="309" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="243.05" y="319.5" ></text>
</g>
<g >
<title>enqueue_task_fair (15,006,308 samples, 0.05%)</title><rect x="137.4" y="341" width="0.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="140.43" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (5,443,815 samples, 0.02%)</title><rect x="612.4" y="309" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="615.45" y="319.5" ></text>
</g>
<g >
<title>__do_softirq (3,616,202 samples, 0.01%)</title><rect x="284.4" y="389" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="287.40" y="399.5" ></text>
</g>
<g >
<title>__fput (5,935,373,324 samples, 20.05%)</title><rect x="44.8" y="469" width="236.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="47.78" y="479.5" >__fput</text>
</g>
<g >
<title>init_file (434,812,784 samples, 1.47%)</title><rect x="742.5" y="245" width="17.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="745.49" y="255.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,206,985 samples, 0.02%)</title><rect x="1169.6" y="229" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1172.56" y="239.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (6,047,856 samples, 0.02%)</title><rect x="1188.0" y="421" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1190.98" y="431.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (13,820,620 samples, 0.05%)</title><rect x="872.1" y="133" width="0.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="875.11" y="143.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (20,536,313 samples, 0.07%)</title><rect x="928.9" y="293" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="931.94" y="303.5" ></text>
</g>
<g >
<title>runtime.findObject (54,582,886 samples, 0.18%)</title><rect x="316.0" y="517" width="2.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="319.01" y="527.5" ></text>
</g>
<g >
<title>should_failslab (3,861,369 samples, 0.01%)</title><rect x="790.1" y="245" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="793.06" y="255.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (7,884,159 samples, 0.03%)</title><rect x="15.9" y="533" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="18.93" y="543.5" ></text>
</g>
<g >
<title>__send_signal_locked (4,349,831 samples, 0.01%)</title><rect x="12.1" y="389" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="15.10" y="399.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (5,434,211 samples, 0.02%)</title><rect x="511.1" y="517" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="514.11" y="527.5" ></text>
</g>
<g >
<title>__get_random_u32_below (7,578,783 samples, 0.03%)</title><rect x="775.7" y="165" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="778.75" y="175.5" ></text>
</g>
<g >
<title>runtime.gcDrain (2,569,553,660 samples, 8.68%)</title><rect x="287.2" y="581" width="102.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="290.23" y="591.5" >runtime.gcDr..</text>
</g>
<g >
<title>do_user_addr_fault (11,645,080 samples, 0.04%)</title><rect x="628.7" y="309" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="631.67" y="319.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (7,513,773 samples, 0.03%)</title><rect x="507.9" y="453" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="510.89" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,052,917,858 samples, 13.69%)</title><rect x="1004.8" y="421" width="161.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1007.76" y="431.5" >runtime.systemstack...</text>
</g>
<g >
<title>mod_memcg_lruvec_state (6,962,746 samples, 0.02%)</title><rect x="889.1" y="213" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="892.14" y="223.5" ></text>
</g>
<g >
<title>mapgauge.test (29,596,007,566 samples, 100.00%)</title><rect x="10.0" y="661" width="1180.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="13.00" y="671.5" >mapgauge.test</text>
</g>
<g >
<title>mod_node_page_state (3,019,842 samples, 0.01%)</title><rect x="806.2" y="181" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="809.22" y="191.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (6,971,148 samples, 0.02%)</title><rect x="605.9" y="149" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="608.90" y="159.5" ></text>
</g>
<g >
<title>runtime.spanOfHeap (10,239,920 samples, 0.03%)</title><rect x="1163.6" y="373" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1166.57" y="383.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (3,876,274 samples, 0.01%)</title><rect x="423.3" y="485" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="426.31" y="495.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (4,257,606 samples, 0.01%)</title><rect x="249.8" y="389" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="252.85" y="399.5" ></text>
</g>
<g >
<title>__folio_alloc (6,918,434 samples, 0.02%)</title><rect x="631.1" y="405" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="634.14" y="415.5" ></text>
</g>
<g >
<title>kmalloc_slab (26,317,141 samples, 0.09%)</title><rect x="892.9" y="261" width="1.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="895.90" y="271.5" ></text>
</g>
<g >
<title>try_to_wake_up (3,584,034 samples, 0.01%)</title><rect x="105.8" y="389" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="108.84" y="399.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,876,294 samples, 0.01%)</title><rect x="612.8" y="213" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="615.85" y="223.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (29,650,102 samples, 0.10%)</title><rect x="17.3" y="565" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="20.33" y="575.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,031,767 samples, 0.01%)</title><rect x="240.4" y="245" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="243.41" y="255.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (6,764,672 samples, 0.02%)</title><rect x="627.0" y="325" width="0.3" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="630.02" y="335.5" ></text>
</g>
<g >
<title>irq_exit_rcu (16,875,441 samples, 0.06%)</title><rect x="259.4" y="341" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="262.39" y="351.5" ></text>
</g>
<g >
<title>kthread_is_per_cpu (4,593,151 samples, 0.02%)</title><rect x="116.8" y="357" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="119.80" y="367.5" ></text>
</g>
<g >
<title>psi_task_switch (4,707,825 samples, 0.02%)</title><rect x="228.6" y="421" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="231.57" y="431.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (10,714,702 samples, 0.04%)</title><rect x="195.9" y="357" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="198.91" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (3,849,450 samples, 0.01%)</title><rect x="859.7" y="149" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="862.68" y="159.5" ></text>
</g>
<g >
<title>put_pid (4,244,415 samples, 0.01%)</title><rect x="284.5" y="469" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="287.54" y="479.5" ></text>
</g>
<g >
<title>exit_files (382,364,444 samples, 1.29%)</title><rect x="21.3" y="501" width="15.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="24.32" y="511.5" ></text>
</g>
<g >
<title>runtime.lock2 (27,531,643 samples, 0.09%)</title><rect x="1165.1" y="389" width="1.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1168.07" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (6,109,067 samples, 0.02%)</title><rect x="581.2" y="501" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="584.20" y="511.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (9,821,552 samples, 0.03%)</title><rect x="439.7" y="293" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="442.70" y="303.5" ></text>
</g>
</g>
</svg>
This file has been truncated, but you can view the full file.
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime.clone.abi0;__irqentry_text_end 178493
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 5384749
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_sysvec_apic_timer_interrupt 1393018
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;error_entry 780156
mapgauge.test;[unknown];[unknown];[unknown];io.(*SectionReader).Read;os.(*File).ReadAt;internal/poll.(*FD).Pread;syscall.pread;syscall.Syscall6;runtime/internal/syscall.Syscall6;error_entry 764894
mapgauge.test;[unknown];[unknown];[unknown];runtime.clone.abi0;error_entry 59519
mapgauge.test;[unknown];[unknown];[unknown];runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule 532058
mapgauge.test;[unknown];[unknown];[unknown];runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair 532058
mapgauge.test;[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 777619
mapgauge.test;[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;error_entry 4615234
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 9109321
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;error_entry 2826920
mapgauge.test;[unknown];[unknown];runtime.clone.abi0;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 18411
mapgauge.test;[unknown];[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;native_apic_msr_eoi_write 25561
mapgauge.test;[unknown];[unknown];runtime.memmove;error_entry 773362
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.gcTrigger.test 317805
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.lock2 126817
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.netpoll 79940
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.retake 132270
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 3255574
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;[[vdso]] 1339499
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;__vdso_clock_gettime 248739
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.gcTrigger.test 50415
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.lock2 408621
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0 694904
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 1085420
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll 172715
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe 44398
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;__x64_sys_epoll_pwait 141559
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;do_epoll_wait;__fdget;__fget_light 1072226
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;do_epoll_wait;__fget_light 120962
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;do_epoll_wait;ep_poll 60636
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_wait 59970
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;set_user_sigmask 61065
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 44398
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 171899
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;syscall_return_via_sysret 319393
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 1053617
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp 246762
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.lock2 59040
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0 209072
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64 68347
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake 867869
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;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 134996
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair 112988
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity 778291
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr;__cgroup_account_cputime 65417
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;__update_load_avg_cfs_rq 101449
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;__update_load_avg_se 41359
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group;reweight_entity 225127
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group;reweight_entity;update_curr;__calc_delta 446782
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_load_avg 44398
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_load_avg;__update_load_avg_se 102500
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 427346
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 779206
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 116377
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule 152040
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable;x86_pmu_disable;native_write_msr 120874
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;pick_next_entity 72337
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;psi_task_switch;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 118541
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.unlock2 641680
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.unlock2;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;do_futex 47093
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked 39385
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.lock2 668463
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone 196341
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe 137638
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getpid;__task_pid_nr_ns 904684
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;syscall_return_via_sysret 826140
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_tgkill 32777
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 758789
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill 785439
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;__task_pid_nr_ns 508317
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;apparmor_task_kill 781385
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;audit_signal_info 45862
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;audit_signal_info_syscall 107586
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill 61065
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill;aa_may_signal 56953
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill;apparmor_task_kill 100797
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill;apparmor_task_kill;aa_may_signal 48754
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill;apparmor_task_kill;aa_may_signal;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair;update_load_avg;__update_load_avg_se 118940
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;__send_signal_locked 81771
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 1704931
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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;inc_rlimit_get_ucounts 240660
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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 515974
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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;get_obj_cgroup_from_current;__get_obj_cgroup_from_memcg 97900
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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 114132
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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;obj_cgroup_charge 743298
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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;should_failslab 765397
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;complete_signal;kick_process 50395
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;complete_signal;kick_process;native_smp_send_reschedule;native_write_msr 130545
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;complete_signal;task_curr 732670
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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;inc_rlimit_get_ucounts 94027
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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;kick_process 65417
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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;prepare_signal 46527
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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;task_curr 752889
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;prepare_signal 52813
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;find_task_by_vpid;idr_find;radix_tree_lookup;__radix_tree_lookup 150359
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;idr_find 55174
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;do_tkill 112101
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;exit_to_user_mode_prepare 42647
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 833367
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;syscall_return_via_sysret 259732
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.signalM 107553
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 1644047
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair 732670
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;do_syscall_64 259286
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 1199563
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 4419729
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 1039067
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;do_nanosleep 76124
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;get_timespec64 99730
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;get_timespec64;_copy_from_user 758343
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep 580252
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep 2334960
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;__hrtimer_start_range_ns 91497
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_active 88749
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_reprogram 655620
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns 265052
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns 816745
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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;rb_insert_color 531977
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 1678493
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;get_nohz_timer_target 138761
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;ktime_get 407808
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;ktime_get;kvm_clock_get_cycles 106450
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;kvm_clock_get_cycles 152106
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;timerqueue_add 130102
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__raw_spin_lock_irqsave 172630
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 981862
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;_raw_spin_unlock_irqrestore 78421
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;get_nohz_timer_target 1222805
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram 114335
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event 921422
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event 218880
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;ktime_get 89114
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;kvm_clock_get_cycles 138655
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;lapic_next_deadline 345587
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;native_write_msr 2369382
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;lapic_next_deadline 297595
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;ktime_get 835856
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;tick_program_event 72878
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule 396554
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 1310371
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;__perf_event_task_sched_out 37204
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;_raw_spin_lock 743553
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task 592236
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair 2083640
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;clear_buddies 188981
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity 1062082
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;__update_load_avg_cfs_rq 755655
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;__update_load_avg_se 577583
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;clear_buddies 721620
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;reweight_entity 92081
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 2261509
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_cfs_group;reweight_entity 367335
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 868654
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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;__calc_delta 750103
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 184952
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;cpuacct_charge 292114
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg 2008347
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg;__update_load_avg_cfs_rq 878998
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg;__update_load_avg_se 1575023
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_min_vruntime 269034
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_cfs_group 1361194
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity;update_curr 363032
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity;update_curr;__calc_delta 650792
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_curr 60866
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_load_avg 1592263
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_load_avg;__update_load_avg_se 779485
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_min_vruntime 241430
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task_fair 451066
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0 1063819
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 937065
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 293188
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 202216
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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.isra.0 110118
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 121450
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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;__intel_pmu_enable_all.isra.0 505592
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 469371
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__rcu_read_lock 648871
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__rcu_read_unlock 64929
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;_raw_spin_unlock 175591
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair 109130
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 138305
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task 122210
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;check_cfs_rq_runtime 100797
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;newidle_balance 52867
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair 89875
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;__msecs_to_jiffies 173985
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;__rcu_read_lock 116300
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 740921
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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;find_busiest_group 76451
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;detach_tasks;can_migrate_task 128187
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0 1227571
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_sg_lb_stats 102500
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 101079
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 502509
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 106532
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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;_raw_spin_rq_lock_irqsave 114474
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_dl_rq_load_avg 69315
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_dl_rq_load_avg 91179
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;put_prev_entity 640390
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;put_prev_task_fair 758789
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 1085582
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;set_next_entity 744417
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;update_curr 666130
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task_idle 241901
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 136154
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 562360
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_ctx_disable 100797
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 2767412
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_flags_change 141715
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_group_change 167419
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch 1873522
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;psi_flags_change 675034
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;psi_group_change 3671027
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;psi_group_change;record_times 565800
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;record_times 366373
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 655155
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 1680741
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_noinstr 86372
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;put_prev_task_fair 223288
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;rcu_note_context_switch 211368
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock 722297
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock 79571
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu 83102
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock 118225
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock;kvm_sched_clock_read 52870
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read 92773
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 2159838
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;dequeue_task 253144
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;pick_next_task 108318
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;prepare_task_switch 162123
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;psi_task_switch 108779
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;update_rq_clock 162854
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;hrtimer_active 171861
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;exit_to_user_mode_prepare 245706
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 6307865
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 263060
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;fpregs_assert_state_consistent 659912
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return 391258
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;fpregs_assert_state_consistent 77498
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;switch_fpu_return 958523
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;syscall_exit_to_user_mode 111423
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_safe_stack 324235
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 7884159
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0 862217
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 6217703
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;error_entry 6927771
mapgauge.test;[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;randomize_stack_top;get_random_u64 47082
mapgauge.test;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;rep_stos_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_cow_fault;__do_fault;filemap_fault;__filemap_get_folio;filemap_get_entry 189768
mapgauge.test;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_arg_pages;shift_arg_pages;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache 103636
mapgauge.test;[unknown];github.com/cilium/ebpf/btf.splitNull;os.(*File).ReadAt;internal/poll.(*FD).Pread;syscall.pread;syscall.Syscall6;runtime/internal/syscall.Syscall6;asm_exc_page_fault 776422
mapgauge.test;[unknown];github.com/cilium/ebpf/btf.splitNull;os.(*File).ReadAt;internal/poll.(*FD).Pread;syscall.pread;syscall.Syscall6;runtime/internal/syscall.Syscall6;error_entry 752948
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;entry_SYSCALL_64 1555700
mapgauge.test;[unknown];runtime.(*mcentral).grow;runtime.(*mspan).initHeapBits;runtime/internal/syscall.Syscall6;asm_exc_page_fault 760721
mapgauge.test;[unknown];runtime.clone.abi0;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__pte_offset_map_lock;_raw_spin_lock;native_queued_spin_lock_slowpath 112922
mapgauge.test;[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0 119117
mapgauge.test;[unknown];runtime.futex.abi0;entry_SYSCALL_64 86313
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.schedule;runtime.checkIdleGCNoP;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 129636
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 1033323
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.gcTrigger.test 641004
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 930418
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll 65887
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;__fdget 156371
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;do_epoll_wait;__fdget;__fget_light 57047
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;do_epoll_pwait.part.0 190525
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0;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 778477
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 1299854
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp 781609
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up 76027
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr 77389
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock_noinstr 82598
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;futex_wake 168170
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.pidleput 162947
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone 152327
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64 95239
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 156371
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_sig_info 113676
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific 113676
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;apparmor_task_kill 168170
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;audit_signal_info_syscall 168170
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill 95239
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill;aa_may_signal 50204
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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 100753
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;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;inc_rlimit_get_ucounts 780568
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;find_task_by_vpid 113676
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 843179
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 103432
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 1444147
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_nanosleep 56870
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 903363
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep 140891
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;_copy_from_user 173622
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;get_timespec64 82084
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;get_timespec64;rep_movs_alternative 567341
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep 162095
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_active 670229
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 778477
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;ktime_get 778477
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;ktime_get;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 465934
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;native_write_msr 415506
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;ktime_get 72803
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule 940491
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 1910590
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;_raw_spin_lock 105813
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task 197661
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair 718175
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity 160725
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;__cgroup_account_cputime 88898
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 932325
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_cfs_group;reweight_entity 107204
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 326345
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 133088
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_rstat_updated 82007
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;cpuacct_charge 168170
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg;__update_load_avg_cfs_rq 52948
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg;__update_load_avg_se 158434
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_min_vruntime 87378
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity 246918
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;set_next_buddy 56444
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task_fair 788892
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;error_return 74938
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0 718907
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 781257
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_disable 661603
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_disable;x86_pmu_disable;native_write_msr 650708
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 117516
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 196577
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__rcu_read_unlock 9043
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_do_timer 44554
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;call_timer_fn;tcp_orphan_update;mod_timer;__mod_timer;lock_timer_base;__raw_spin_lock_irqsave 110782
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 19579
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task 859608
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;newidle_balance 585945
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 215976
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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;_raw_spin_rq_lock_irqsave 94019
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;_find_next_and_bit 83877
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sg_lb_stats 133088
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 162326
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 98579
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 133088
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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_dl_rq_load_avg 55232
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;put_prev_task_fair 113676
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;__rcu_read_lock 205411
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 69072
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out 570386
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable 622147
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 776777
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_group_change 538863
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch 186351
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;psi_group_change 732428
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;put_prev_task_fair 233514
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;sched_clock_cpu 97979
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;dequeue_task 657642
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;hrtimer_active 116622
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;get_timespec64 168170
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 1339857
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 113676
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;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 662816
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;switch_fpu_return 98978
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 1617579
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0 57047
mapgauge.test;[unknown];runtime.sysMmap.abi0;asm_exc_page_fault 430927
mapgauge.test;[unknown];runtime.systemstack.abi0;runtime.(*mheap).alloc.func1;runtime.(*mheap).allocSpan;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 74938
mapgauge.test;[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 7710765
mapgauge.test;[unknown];runtime/internal/syscall.Syscall6;error_entry 5287872
mapgauge.test;[unknown];syscall.pread;[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 776546
mapgauge.test;[unknown];syscall.pread;[unknown];runtime/internal/syscall.Syscall6;error_entry 776427
mapgauge.test;__switch_to 714278
mapgauge.test;__switch_to_asm 43863
mapgauge.test;__sysvec_apic_timer_interrupt 106126
mapgauge.test;__wrgsbase_inactive 600777
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_mm_irqs_off 651892
mapgauge.test;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;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 645297
mapgauge.test;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;__cond_resched;__schedule;prepare_task_switch 659577
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;intel_pmu_enable_all 655389
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 68652
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;switch_mm_irqs_off 225127
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch 705896
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;intel_pmu_enable_all 642171
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;____fput 31548206
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;____fput;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 1956993
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;____fput;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 747377
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;____fput;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;slab_update_freelist.isra.0 597277
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;____fput;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 570395
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;____fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1244217
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;__cond_resched 12541739
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;__cond_resched;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;slab_update_freelist.isra.0 108713
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;__cond_resched;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;mod_objcg_state;mod_memcg_lruvec_state 152161
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;__cond_resched 3131180
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;filp_close 3907125
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct 27382773
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;dnotify_flush 4696381
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;filp_close 212747860
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;filp_close;dnotify_flush 3093059
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;filp_close;fput 3915432
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;filp_close;fput;task_work_add 27436667
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;filp_close;locks_remove_posix 45278931
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;filp_close;task_work_add 21038682
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;fput 23476988
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;kvfree;vfree;__free_pages 780555
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;kvfree;vfree;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk 1563141
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;kvfree;vfree;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk;__free_one_page 1563991
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;locks_remove_posix 2351679
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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 16260224
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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;page_remove_rmap 776479
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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 5425654
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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 5448363
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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 1547961
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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 776934
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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 783556
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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;cgroup_rstat_updated 776819
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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 774924
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache 780114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;_raw_spin_unlock_irqrestore 763896
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;lru_gen_del_folio.constprop.0 773672
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages 9304557
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;__mem_cgroup_uncharge_list;__rcu_read_unlock 778939
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;__mem_cgroup_uncharge_list;uncharge_folio 2325988
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_commit 779259
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list 2342267
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_commit 769933
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_commit;__free_one_page 781752
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_commit;free_pcppages_bulk;__free_one_page 11669618
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_commit;free_pcppages_bulk;__free_one_page;__mod_zone_page_state 781247
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_prepare 778976
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0 5442635
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_lruvec_state;__mod_memcg_lruvec_state 1571767
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 780498
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_memcg_lruvec_state 773692
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_zone_page_state 784417
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_swap_cache 3099112
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;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;vm_normal_page 1559254
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run 124267078
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput 105491
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__cond_resched 2591086
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput 338833141
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__call_rcu_common.constprop.0 2494343
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__cond_resched 2780484
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__dentry_kill 4145728
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__rcu_read_lock 12752939
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__rcu_read_lock;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;put_cpu_partial;__unfreeze_partials 555359
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__rcu_read_lock;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_update_freelist.isra.0 599669
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__rcu_read_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1742691
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__rcu_read_unlock 2682716
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_lock 28040033
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_lock;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 1126585
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_lock;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;slab_update_freelist.isra.0 625598
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_lock;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;mod_objcg_state 600080
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 647694
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_trylock 30800210
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_trylock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 633203
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_trylock;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;__free_one_page 608556
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_trylock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 2343320
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security 125331388
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;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 670109
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;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 113246
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;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;slab_update_freelist.isra.0 626226
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;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 729383
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;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;obj_cgroup_uncharge_pages 583882
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;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;obj_cgroup_uncharge_pages;__refill_stock 573811
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 2500417
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;update_rt_rq_load_avg 102985
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;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;mix_interrupt_randomness 125268
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 1158090
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;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 553070
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;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;cache_from_obj 586679
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;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 248736
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;discard_slab 121056
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;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;mod_objcg_state 593579
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;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 172184
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;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;obj_cgroup_uncharge 104863
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 3336055
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put 29038543
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref 115606927
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;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 1094274
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;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 573320
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;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 548977
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;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;put_cpu_partial;__unfreeze_partials;discard_slab 573285
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;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;put_cpu_partial;discard_slab 625864
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;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;slab_update_freelist.isra.0 601686
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;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 600391
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;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;kmem_cache_free 539669
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release 225834957
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;_raw_spin_lock_irqsave 721162
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;_raw_spin_unlock_irqrestore 4696223
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;_raw_spin_unlock_irqrestore;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 1169556
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;_raw_spin_unlock_irqrestore;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;slab_update_freelist.isra.0 540357
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 585341
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;array_map_free_timers 5685125
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;enqueue_hrtimer;timerqueue_add 115139
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;account_process_tick;account_system_time;__cgroup_account_cputime_field 158316
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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 3668550
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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;__slab_free 617122
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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 611436
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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 1834099
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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;put_cpu_partial;__unfreeze_partials 127240
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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;slab_update_freelist.isra.0 590452
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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;mod_objcg_state 2389819
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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 554516
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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_update_freelist.isra.0 560301
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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;kmem_cache_free 615151
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;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;__free_one_page 538305
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 9856233
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put 71307202
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;__queue_work 4446924
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;__raw_spin_lock_irqsave 11348273
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_lock_irqsave 1485522
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 44135853
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave;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 1197207
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1153938
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore 9975665
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__do_softirq 102502
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 548273
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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 1660327
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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;__rcu_read_lock 103445
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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 2855049
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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;__rcu_read_lock 103401
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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 1688504
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_trylock 615082
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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;slab_update_freelist.isra.0 1197749
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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;mod_objcg_state 576445
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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 754552
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state 636322
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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;mod_objcg_state 548943
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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 588577
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;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;__free_one_page 561301
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 4678018
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_segcblist_get_seglen 140576
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;asm_sysvec_apic_timer_interrupt 791614
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;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;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state 103737
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove 553700
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove;__radix_tree_delete 4855799
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove;__radix_tree_lookup 7071251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove;radix_tree_delete_item 13849304
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove;radix_tree_delete_item;__radix_tree_delete 31693152
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove;radix_tree_delete_item;__radix_tree_delete;delete_node 5902406
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove;radix_tree_delete_item;__radix_tree_delete;delete_node;__call_rcu_common.constprop.0 202676
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove;radix_tree_delete_item;__radix_tree_delete;delete_node;call_rcu;__call_rcu_common.constprop.0;rcu_segcblist_enqueue 1210506
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove;radix_tree_delete_item;__radix_tree_lookup 155889473
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;idr_remove;radix_tree_delete_item;delete_node 4109510
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on 52556188
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work 83911919
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;__rcu_read_lock 3791430
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;_raw_spin_lock;native_queued_spin_lock_slowpath 12302701
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;_raw_spin_unlock 8772000
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;try_to_wake_up 3584034
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process 1125699
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;_raw_spin_lock_irqsave 1760479
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;_raw_spin_unlock 2313603
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;_raw_spin_unlock_irqrestore 9924949
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;kthread_is_per_cpu 1840319
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;raw_spin_rq_lock_nested 3663862
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;select_task_rq_fair 9879980
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up 62673501
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;__raw_spin_lock_irqsave 3789248
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;__rcu_read_lock 712363
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;__rcu_read_unlock 6433021
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;__smp_call_single_queue 574952
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;__task_rq_lock 2323661
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;__task_rq_lock;_raw_spin_lock 540855
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;__task_rq_lock;raw_spin_rq_lock_nested 1153143
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;__task_rq_lock;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 86950868
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;_raw_spin_lock 11633221
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;_raw_spin_lock_irqsave 433254
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 44069499
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;_raw_spin_unlock 3132854
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;_raw_spin_unlock_irqrestore 11901037
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;check_preempt_curr 3362413
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;enqueue_task 1129984
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;kthread_is_per_cpu 4593151
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;raw_spin_rq_lock_nested 1993515
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;sched_clock_cpu 3660631
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;select_idle_sibling 1982201
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;select_task_rq_fair 41089054
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;select_task_rq_fair;__rcu_read_lock 1427730
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;select_task_rq_fair;available_idle_cpu 2350488
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;select_task_rq_fair;select_idle_sibling 15422947
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;select_task_rq_fair;select_idle_sibling;__raw_callee_save___kvm_vcpu_is_preempted 543529
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;select_task_rq_fair;select_idle_sibling;available_idle_cpu 6723239
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate 14329091
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr 9756381
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;check_preempt_wakeup 48973176
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;check_preempt_wakeup;resched_curr 9571825
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;check_preempt_wakeup;update_curr 2460588
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;resched_curr 1769848
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;set_next_buddy 3017351
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;update_curr 1252172
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_wakeup 8217481
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task 21356943
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_entity 2382713
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair 27402149
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity 48805080
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;__update_load_avg_cfs_rq 1881460
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;__update_load_avg_se 3845604
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;place_entity 12503837
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr 14430188
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr;__calc_delta 433895
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr;update_min_vruntime 1035379
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg 20253560
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;__update_load_avg_cfs_rq 8718162
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;__update_load_avg_se 9258930
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_min_vruntime 2177712
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;place_entity 1201724
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;rb_insert_color 1746103
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group 4542411
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_curr 2062517
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_load_avg 9582290
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;hrtick_update 1722406
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_flags_change 10302865
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_group_change 2788178
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change 34993985
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_flags_change 7061586
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 42709488
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change;record_times 1250707
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;record_times 2082836
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock 1455017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu 6410875
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock 441740
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock;kvm_sched_clock_read 207071
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock;sched_clock_noinstr 103438
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read 659759
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 24893011
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock;sched_clock_noinstr;pvclock_clocksource_read_nowd 1066429
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock_noinstr 1073587
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;sched_clock_cpu 5489193
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task_fair 15006308
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;psi_task_change 3374052
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist 27915211
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue 8743141
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue;call_function_single_prep_ipi 7365214
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue;native_send_call_func_single_ipi 4110900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue;native_send_call_func_single_ipi;native_write_msr 113656223
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue;native_send_call_func_single_ipi;x2apic_send_IPI 23127540
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue;x2apic_send_IPI 8713399
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;llist_add_batch 14790503
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;native_send_call_func_single_ipi 17035522
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock 2250442
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu 561615
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu;sched_clock 1686650
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu;sched_clock;kvm_sched_clock_read 2325681
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu;sched_clock;sched_clock_noinstr 546768
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read 3939348
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 28780269
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu;sched_clock;sched_clock_noinstr;pvclock_clocksource_read_nowd 1787876
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu;sched_clock_noinstr 565439
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock 7847962
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock;sched_clock 8462015
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock;sched_clock_cpu 1937537
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock;sched_clock_cpu;sched_clock 723715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock;sched_clock_cpu;sched_clock;kvm_sched_clock_read 15156760
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr 311064
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read 4300470
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 45754830
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;pvclock_clocksource_read_nowd 542144
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;update_rq_clock;sched_clock_cpu;sched_clock_noinstr 881291
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;ttwu_do_activate 1871015
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;ttwu_queue_wakelist 8245005
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;update_rq_clock 1309939
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wq_select_unbound_cpu 35791992
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__rcu_read_lock 6816359
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__rcu_read_unlock 22105960
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;_raw_spin_lock 45429386
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;_raw_spin_unlock 7420562
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_common_interrupt;common_interrupt;__common_interrupt;handle_edge_irq;add_interrupt_randomness 102199
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;enqueue_hrtimer;timerqueue_add 103718
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 113294
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer 224383
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 543628
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle 557466
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;irq_work_tick 103111
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 104613
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;perf_event_task_tick 104718
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 104403
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 542199
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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_cfs_group;reweight_entity 517586
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;native_send_call_func_single_ipi;native_write_msr 116110
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;update_cfs_group 156767
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;ktime_get_update_offsets_now 657265
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 105021
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event 106468
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 143024
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 6762088
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_segcblist_advance 103815
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_cblist_dequeue 556077
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 2976267
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 25905611
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;__rcu_read_lock 553920
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;__slab_free 2448251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;cache_from_obj 1128863
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 20053410
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 10271814
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial 612788
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials 2417449
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 546198
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;discard_slab 1164913
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages 554851
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page 569294
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 642024
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;discard_slab 561991
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials 554618
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;slab_update_freelist.isra.0 601482
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;mod_node_page_state 110620
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;kfree 550039
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;slab_update_freelist.isra.0 11678195
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 2521919
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;mod_objcg_state 7271828
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state 1160677
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 2394585
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 3696665
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;__rcu_read_lock 587598
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;__rcu_read_unlock 634708
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;obj_cgroup_uncharge_pages 579305
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state 543066
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;cgroup_rstat_updated 193966
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;obj_cgroup_uncharge_pages;refill_stock 552844
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;refill_stock 622898
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;refill_obj_stock 580529
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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_update_freelist.isra.0 1882297
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 1373291
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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 1785368
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;__free_one_page 4209350
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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_prepare;free_tail_page_prepare 607956
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;slab_update_freelist.isra.0 1657111
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;cache_from_obj 592546
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 43496358
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_report_qs_rnp;rcu_gp_kthread_wake;swake_up_one;_raw_spin_unlock_irqrestore 538934
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair 140311
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;update_dl_rq_load_avg 485091
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;call_timer_fn;process_timeout;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change 115893
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;call_timer_fn;process_timeout;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 573127
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;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;serial8250_backup_timeout;mod_timer;__mod_timer;get_nohz_timer_target 126509
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task;enqueue_task_fair 100814
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;wake_up_process 5446596
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;wq_select_unbound_cpu 14844393
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;radix_tree_delete_item 6323787
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put_uref 1855331
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put_uref;array_map_free_timers 4645730
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put_uref;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 113900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put_uref;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 110716
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put_uref;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;mod_objcg_state 169969
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;btf_put 6291009
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;btf_put;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 646268
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;btf_put;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 626004
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;btf_put;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;__free_one_page 1097867
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;btf_put;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1288302
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;idr_remove 10052067
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;queue_work_on 9595444
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0 69283980
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch 626484
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 1841750
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 601203
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 608996
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock 130715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 2390898
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;rcu_segcblist_enqueue 45388365
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;rcu_segcblist_enqueue 3871532
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput 56308983
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched 30304380
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule 66968844
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;__perf_event_task_sched_in 843218
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;__perf_event_task_sched_out 413493
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;_raw_spin_lock 11821632
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;_raw_spin_unlock 780386
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;asm_sysvec_apic_timer_interrupt 503383
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer 105251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0 28450358
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in 13513412
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;_raw_spin_unlock 10067610
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable 18838288
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;intel_pmu_enable_all 4426209
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable 12047719
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;__intel_pmu_enable_all.isra.0 1061421
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all 5701793
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 28425814
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 53199601
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;x86_pmu_enable 730424
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__rcu_read_unlock 8419326
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;_raw_spin_unlock 7560361
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;irqentry_exit 114675
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__irq_exit_rcu 211776
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt 103128
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;_raw_spin_unlock_irqrestore 141427
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt 102334
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues 487788
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;__remove_hrtimer;rb_next 201735
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;enqueue_hrtimer;timerqueue_add 695232
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity 162520
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr 126134
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;__update_load_avg_se 105354
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change 311589
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 381649
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_update_jiffies64 174779
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer 112876
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;_raw_spin_lock 447755
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;timekeeping_advance 115062
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance 103427
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 167467
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;pvclock_clocksource_read_nowd 101270
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_adjust.constprop.0 283431
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;raw_notifier_call_chain;notifier_call_chain 103003
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;raw_notifier_call_chain;pvclock_gtod_notify 103192
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;update_fast_timekeeper 116668
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;update_vdso_data.constprop.0 108898
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;update_fast_timekeeper 207153
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;account_process_tick 144068
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;irq_work_tick 102796
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;profile_tick 104507
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;run_posix_cpu_timers 276041
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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 102124
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;account_process_tick;account_system_index_time 163872
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;account_process_tick;account_system_time;account_system_index_time 205156
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;account_process_tick;account_system_time;account_system_index_time;__cgroup_account_cputime_field 101655
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;account_process_tick;account_system_time;account_system_index_time;cpuacct_account_field 205853
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;account_process_tick;account_system_time;acct_account_cputime 101537
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;arch_scale_freq_tick 101175
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;perf_event_task_tick 217830
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;rcu_sched_clock_irq 318798
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;rcu_segcblist_ready_cbs 104313
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;sched_clock_tick 103467
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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 116985
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;arch_scale_freq_tick 105041
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_disable;intel_pmu_disable_all 106296
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_disable;native_write_msr 293643
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 104244
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 147960
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;task_tick_fair;__update_load_avg_se 102281
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;task_tick_fair;hrtimer_active 102820
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;task_tick_fair;update_cfs_group 517462
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;task_tick_fair;update_cfs_group;reweight_entity 106813
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;task_tick_fair;update_curr;cpuacct_charge 206186
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;task_tick_fair;update_curr;update_min_vruntime 162174
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;task_tick_fair;update_load_avg 103157
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;trigger_load_balance 104262
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;trigger_load_balance;__rcu_read_unlock 143552
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;trigger_load_balance;nohz_balancer_kick 368997
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;update_cfs_group 207532
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;update_rq_clock;sched_clock_cpu;sched_clock;kvm_sched_clock_read 102568
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;task_tick_fair 101070
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__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;update_rq_clock 102667
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;timerqueue_add 282661
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;clockevents_program_event 139701
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;hrtimer_update_next_event 105457
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;hrtimer_update_next_event;__hrtimer_next_event_base 336236
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event 117069
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 102825
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;ktime_get;pvclock_clocksource_read_nowd 128330
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;lapic_next_deadline 239519
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;native_write_msr 464137
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;native_apic_msr_eoi_write 179268
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;hrtimer_interrupt 102630
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__do_softirq 216965
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq 499770
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core 209459
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core 108533
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 3068185
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;invoke_rcu_core;__raise_softirq_irqoff 118991
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;invoke_rcu_core;raise_softirq 127701
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes 102042
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;__note_gp_changes;rcu_accelerate_cbs;rcu_segcblist_accelerate 111589
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;__note_gp_changes;rcu_accelerate_cbs;rcu_start_this_gp 114303
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up 103943
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;__raw_spin_lock_irqsave 106641
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue 103429
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue;native_send_call_func_single_ipi;native_write_msr 228677
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;call_function_single_prep_ipi 127035
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;native_send_call_func_single_ipi 102954
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_segcblist_advance 265036
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_segcblist_pend_cbs 102348
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;swake_up_one 102977
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;radix_tree_node_rcu_free 112487
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_cblist_dequeue 139822
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 971534
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 13283768
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;__rcu_read_lock 104768
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;__rcu_read_unlock 420745
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;__slab_free 168912
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;cache_from_obj 173282
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 8617265
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;__rcu_read_lock 358329
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 5655177
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial 228485
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials 757862
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 211326
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab 467328
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;__free_slab 645669
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab 620087
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages 205978
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_trylock 105374
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page 1017708
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit 127215
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_prepare 1082403
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree 115178
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 646272
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;slab_update_freelist.isra.0 669331
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;slab_update_freelist.isra.0 4347864
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 2081911
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;mod_objcg_state 4269907
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;mod_objcg_state;mod_memcg_lruvec_state 102298
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 116263
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 3457542
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;__rcu_read_lock 208264
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;__rcu_read_unlock 125235
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;obj_cgroup_uncharge_pages 129487
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;obj_cgroup_uncharge_pages;memcg_account_kmem 112183
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state 115038
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state 105958
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state;cgroup_rstat_updated 103149
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;cgroup_rstat_updated 127931
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;obj_cgroup_uncharge_pages;refill_stock 266861
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;obj_cgroup_uncharge_pages;refill_stock;__refill_stock 461522
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;refill_obj_stock 362295
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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_update_freelist.isra.0 425615
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;mod_objcg_state 615239
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;obj_cgroup_uncharge 217444
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;kmem_cache_free 244058
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;local_clock;local_clock_noinstr;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 217200
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 231069
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 127187
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 1050083
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 109375
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 103590
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;__free_one_page 110276
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;cache_from_obj 142197
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 24345796
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_nocb_unlock_irqrestore.part.0 142382
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_segcblist_add_len 211913
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_segcblist_get_seglen 167437
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_gp_kthread_wake 146769
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_report_qs_rnp;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;select_task_rq_fair;select_idle_sibling;__raw_callee_save___kvm_vcpu_is_preempted 129245
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_report_qs_rnp;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;call_function_single_prep_ipi 115612
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_segcblist_ready_cbs 114844
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_segcblist_ready_cbs 114500
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;load_balance 129866
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;rebalance_domains 116394
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;rebalance_domains;__bitmap_and 102503
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;rebalance_domains;load_balance 101879
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair 748738
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair;update_load_avg 140676
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair;update_load_avg;__update_load_avg_se 221677
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers 116212
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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 109858
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;__rcu_read_unlock 116221
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;tcp_orphan_update 103729
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;tcp_orphan_update;mod_timer;__mod_timer;get_nohz_timer_target 141642
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;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;tcp_orphan_update;tcp_orphan_count_sum 109067
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;wake_up_process;try_to_wake_up 246115
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;wake_up_process;try_to_wake_up;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 106427
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;wake_up_process;try_to_wake_up;ttwu_do_activate 110301
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;check_preempt_wakeup 105693
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair 102442
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 117537
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;rcu_core_si 532438
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;idle_cpu 108181
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg 156742
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;perf_ctx_enable 437276
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task 3976568
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;check_cfs_rq_runtime 766194
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_entity 5880420
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair 44242691
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;check_cfs_rq_runtime 5952902
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;clear_buddies 1792272
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;pick_next_entity 7626649
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity 64697094
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;__calc_delta 209906
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;__cgroup_account_cputime 1341925
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;__update_load_avg_cfs_rq 10714702
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;__update_load_avg_se 7631953
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;cpuacct_charge 6257650
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr 35629387
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr;__calc_delta 2706234
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr;__cgroup_account_cputime 9168869
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr;__cgroup_account_cputime;cgroup_rstat_updated 2353464
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr;__cgroup_account_cputime;cgroup_rstat_updated;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave;native_queued_spin_lock_slowpath 106552
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr;cgroup_rstat_updated 926167
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr;cpuacct_charge 24763207
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr;update_min_vruntime 4527159
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_load_avg 64270095
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_load_avg;__update_load_avg_cfs_rq 34394997
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_load_avg;__update_load_avg_se 34398594
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_min_vruntime 10999515
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;rb_erase 10147964
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;rb_insert_color 7463269
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;rb_next 4626017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;set_next_entity 21817408
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;set_next_entity;__update_load_avg_cfs_rq 2168030
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;set_next_entity;__update_load_avg_se 1609521
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;set_next_entity;clear_buddies 1800111
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;set_next_entity;update_load_avg 15748580
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;set_next_entity;update_load_avg;__update_load_avg_cfs_rq 4172214
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;set_next_entity;update_load_avg;__update_load_avg_se 4642764
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;update_curr 12783770
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;update_load_avg 26740133
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;put_prev_entity 11253726
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;set_next_entity 2769428
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task;update_curr 1076920
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;pick_next_task_fair 1014191
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch 14539664
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out 8936734
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;__rcu_read_lock 1080131
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;__rcu_read_unlock 2259017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;_raw_spin_lock 13925996
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_ctx_disable 313428
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out 4742744
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;__rcu_read_lock 665816
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable 18597715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;intel_pmu_disable_all 1040616
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;intel_pmu_disable_all 422519
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 149036840
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;x86_pmu_disable 8342958
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;perf_event_context_sched_out 553759
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_flags_change 3045662
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_group_change 7341405
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch 34663511
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;psi_flags_change 9206599
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;psi_group_change 98449585
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;psi_group_change;record_times 4136871
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;record_times 5662103
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;sched_clock 354456
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;sched_clock_cpu 3659960
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;sched_clock_cpu;sched_clock 958099
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;sched_clock_cpu;sched_clock;kvm_sched_clock_read 450742
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read 1020604
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 26959766
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;sched_clock_cpu;sched_clock;sched_clock_noinstr;pvclock_clocksource_read_nowd 1073793
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;sched_clock_cpu;sched_clock_noinstr 755473
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;raw_spin_rq_lock_nested 958451
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;rcu_note_context_switch 4942404
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;sched_clock_cpu 2882013
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;sysvec_apic_timer_interrupt 157051
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;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 2572826
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;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 1894820
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;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;mod_objcg_state 103348
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;finish_task_switch.isra.0 1449721
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;pick_next_task 1319251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;prepare_task_switch 2007138
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;psi_task_switch 4707825
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;raw_spin_rq_lock_nested 1566324
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;rcu_note_context_switch 893961
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;update_rq_clock 1357750
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill 48122316
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;__cond_resched;__schedule 584417
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock 13075872
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;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 1773818
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;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;put_cpu_partial;__unfreeze_partials;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 568836
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 643633
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free 7978733
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;__rcu_read_lock 8685987
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;__rcu_read_unlock 887067
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;__slab_free 2962668
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;cache_from_obj 5016019
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;cache_from_obj;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 1250722
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;cache_from_obj;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;slab_update_freelist.isra.0 543925
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;cache_from_obj;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1144603
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free 128267455
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__rcu_read_lock 1753481
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__rcu_read_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 245984
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__rcu_read_unlock 672650
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free 55208508
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 1164074
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;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 2396554
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;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 3079546
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;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 586009
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;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 543916
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;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;mod_objcg_state 1265230
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 3031767
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial 2818004
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials 2657558
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;__raw_spin_lock_irqsave 103598
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 113716
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;_raw_spin_unlock_irqrestore;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 577984
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;_raw_spin_unlock_irqrestore;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;put_cpu_partial;__unfreeze_partials 630136
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;_raw_spin_unlock_irqrestore;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 605267
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;_raw_spin_unlock_irqrestore;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 554146
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;_raw_spin_unlock_irqrestore;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;__free_one_page 553411
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab 3350427
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab 329610
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_pages 104210
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab 1776270
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages 844020
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_trylock 1392826
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_unlock 149785
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page 2209325
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_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 835186
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_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_prepare 547862
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page_commit 567902
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page_prepare 597693
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__kmem_cache_free 201169
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree 1702637
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free 2793652
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 2408719
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;put_cpu_partial 602831
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials 113870
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_pages 173506
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_prepare 225174
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;put_cpu_partial;discard_slab 126581
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;slab_update_freelist.isra.0 2667300
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;slab_update_freelist.isra.0 565028
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__slab_free 101484
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;mod_node_page_state 467069
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;kfree 103867
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;mod_node_page_state 106482
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;free_slab 217158
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;discard_slab 1237871
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 37164150
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 1736193
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;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 3485106
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;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 1729547
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;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 662821
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 601533
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;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 623827
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;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;refill_obj_stock 587559
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1744890
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;cache_from_obj 42081756
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;cache_from_obj;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 610523
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;cache_from_obj;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages 555270
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;cache_from_obj;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1574589
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state 39995899
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;__mod_memcg_lruvec_state 650331
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;__rcu_read_lock 247678
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_cblist_dequeue 574518
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_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 549382
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_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 2317703
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_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 632688
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_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;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page 608130
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_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;__slab_free;slab_update_freelist.isra.0 549129
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_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;cache_from_obj 1177749
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_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;mod_objcg_state 539580
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_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;rcu_cblist_dequeue 3488260
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;mod_memcg_lruvec_state 302608
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state 1925182
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 1498551
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;mod_memcg_lruvec_state;cgroup_rstat_updated 103652
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge 246795
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;obj_cgroup_uncharge_pages 3207762
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock 22507585
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;__rcu_read_lock 1287464
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;__rcu_read_unlock 1306851
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;memcg_account_kmem 590482
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages 3647300
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;__rcu_read_lock 311886
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;__refill_stock 552512
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state 865066
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state 1989037
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state;cgroup_rstat_updated 1588217
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_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 648641
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_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;__slab_free 601388
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_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;cache_from_obj 574670
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_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;obj_cgroup_uncharge;refill_obj_stock 555127
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_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;rcu_cblist_dequeue 626526
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;mod_memcg_state 306014
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock 1650372
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock;__refill_stock 1589466
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock;__refill_stock;drain_stock;page_counter_uncharge;page_counter_cancel 216493
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock;__refill_stock;page_counter_uncharge 103278
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;put_cpu_partial 625341
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;refill_obj_stock 4644713
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;slab_update_freelist.isra.0 4257606
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;mod_objcg_state 4859409
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;obj_cgroup_uncharge 6174843
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;obj_cgroup_uncharge;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;notifier_call_chain 104897
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode 50955273
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_atomic_dec_and_lock 3691976
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_atomic_dec_and_lock;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 147580
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_atomic_dec_and_lock;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 103566
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_raw_spin_unlock 11927609
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_raw_spin_unlock;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 626296
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_raw_spin_unlock;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;put_cpu_partial;__unfreeze_partials 560537
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1176673
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;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 168396
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;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 109689
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 112914
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput 5534975
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock 148315664
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;kvm_clock_get_cycles 543486
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 1236115
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one 105579
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;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 128412
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;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 5293175
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;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 2294597
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;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 1189518
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;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;mod_objcg_state 653925
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;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 609793
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;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;kmem_cache_free 555390
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;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 540474
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;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;__free_one_page 632130
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 3530209
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;wake_up_process 106124
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;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 102014
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;iput 2842153
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;iput;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 1154332
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;iput;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;slab_update_freelist.isra.0 553107
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;iput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 616426
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;iput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;delayed_work_timer_fn 104197
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;kmem_cache_free 2794947
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__rcu_read_lock 2896057
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__schedule 2407716
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock 31347632
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;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 624208
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;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 1723193
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_prepare 577844
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 546067
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;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;obj_cgroup_uncharge 550760
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_unlock 4509567
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_unlock;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 552444
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_unlock;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;mod_objcg_state 572447
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_unlock;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;obj_cgroup_uncharge 599768
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 625193
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;asm_sysvec_apic_timer_interrupt 102526
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;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 153142
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;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 114275
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;discard_slab 103960
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 505986
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;dentry_free 13779702
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;dentry_unlink_inode 20670318
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_mark_dead 3180601
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return 60151754
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return;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 568005
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 550613
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;ima_file_free 1220334
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;kmem_cache_free 3221321
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;lockref_put_return 8382634
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;locks_remove_file 5889454
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput 3583685
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput;__rcu_read_lock 3155486
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput;__rcu_read_unlock 4477584
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput;__rcu_read_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 547344
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput;__rcu_read_unlock;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 601086
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput;__rcu_read_unlock;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 626630
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput;__rcu_read_unlock;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;__free_one_page 547419
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput;__rcu_read_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 573019
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput;mntput_no_expire 32440514
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput;mntput_no_expire;__rcu_read_lock 1391044
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput_no_expire 1102982
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch 46188781
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 622172
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;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 625871
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;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 1152226
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;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 600447
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;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 547270
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;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;mod_objcg_state 1178740
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;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;kmem_cache_free 572315
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 2842344
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free 34490433
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;__slab_free 6273416
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;apparmor_file_free_security 38333181
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;apparmor_file_free_security;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 151819
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;apparmor_file_free_security;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 117020
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;apparmor_file_free_security;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 218103
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;native_apic_msr_eoi_write 109148
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__do_softirq 113204
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 111573
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;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 273609
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;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 597515
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;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 721667
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;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;mod_objcg_state 623422
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;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 550011
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;cache_from_obj 3966242
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free 29476283
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free 57924140
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;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 555117
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;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;__rcu_read_unlock 538662
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;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;__free_one_page 562468
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1208700
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial 313230
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials 1026314
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 100504
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab 783184
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;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;__rcu_read_unlock 114916
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab 220144
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages 113216
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_unlock 118933
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page 1229417
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_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 171217
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_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;__free_one_page 558433
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_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_prepare 1240037
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;mod_node_page_state 777144
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;mod_node_page_state;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_flags_change 551951
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;kfree 103562
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;mod_node_page_state 216031
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 39296952
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.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 781114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 602614
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;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 1235283
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;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;__rcu_read_lock 543806
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;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 574080
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;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 698286
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;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;kmem_cache_free 584911
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;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;__free_one_page 558180
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;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;__free_one_page;__mod_zone_page_state 540972
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 3639172
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;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 600473
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;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;put_cpu_partial;__unfreeze_partials;discard_slab 614788
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;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;slab_update_freelist.isra.0 637129
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 595139
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;cache_from_obj 16784747
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;slab_update_freelist.isra.0 5298391
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;bpf_map_release 16550899
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;call_rcu 2652443
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;dput 7425889
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;dput;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 1112487
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;dput;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 1213817
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;ima_file_free 3589317
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;locks_remove_file 1135976
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;mntput 21535370
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;module_put 6168671
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch 13172003
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;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 639586
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;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;__rcu_read_lock 547456
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit 562958
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment