Skip to content

Instantly share code, notes, and snippets.

@mejedi
Created January 15, 2024 12:56
Show Gist options
  • Save mejedi/2db96036dae6dcbeea065f631d569a61 to your computer and use it in GitHub Desktop.
Save mejedi/2db96036dae6dcbeea065f631d569a61 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="710" onload="init(evt)" viewBox="0 0 1200 710" 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="710.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="693" > </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="693" > </text>
<g id="frames">
<g >
<title>__alloc_pages (10,839,336 samples, 0.04%)</title><rect x="579.2" y="149" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="582.20" y="159.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (11,328,204 samples, 0.04%)</title><rect x="630.0" y="261" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="633.02" y="271.5" ></text>
</g>
<g >
<title>get_page_from_freelist (7,746,606 samples, 0.03%)</title><rect x="859.4" y="69" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="862.38" y="79.5" ></text>
</g>
<g >
<title>runtime.gcenable.func1 (246,053,066 samples, 0.86%)</title><rect x="364.7" y="613" width="10.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="367.73" y="623.5" ></text>
</g>
<g >
<title>____fput (4,940,675,890 samples, 17.26%)</title><rect x="46.6" y="469" width="203.7" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="49.62" y="479.5" >____fput</text>
</g>
<g >
<title>___slab_alloc (207,628,229 samples, 0.73%)</title><rect x="786.9" y="213" width="8.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="789.94" y="223.5" ></text>
</g>
<g >
<title>handle_mm_fault (16,220,844 samples, 0.06%)</title><rect x="645.5" y="373" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="648.47" y="383.5" ></text>
</g>
<g >
<title>rcu_core_si (2,873,907 samples, 0.01%)</title><rect x="194.3" y="309" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="197.25" y="319.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (4,606,230 samples, 0.02%)</title><rect x="558.0" y="469" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="561.00" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func2 (28,490,617 samples, 0.10%)</title><rect x="581.4" y="293" width="1.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="584.37" y="303.5" ></text>
</g>
<g >
<title>ptep_clear_flush (4,608,498 samples, 0.02%)</title><rect x="614.6" y="389" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="617.63" y="399.5" ></text>
</g>
<g >
<title>syscall.Syscall (4,466,588 samples, 0.02%)</title><rect x="612.4" y="357" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="615.44" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,998,598 samples, 0.02%)</title><rect x="12.2" y="485" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="15.21" y="495.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (4,606,211 samples, 0.02%)</title><rect x="583.4" y="181" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="586.44" y="191.5" ></text>
</g>
<g >
<title>__radix_tree_preload (8,538,846 samples, 0.03%)</title><rect x="719.9" y="309" width="0.3" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="722.88" y="319.5" ></text>
</g>
<g >
<title>mntput_no_expire (37,779,153 samples, 0.13%)</title><rect x="231.5" y="421" width="1.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="234.54" y="431.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (21,085,526 samples, 0.07%)</title><rect x="127.3" y="309" width="0.9" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="130.30" y="319.5" ></text>
</g>
<g >
<title>task_work_add (21,164,720 samples, 0.07%)</title><rect x="36.0" y="437" width="0.9" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="39.02" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (3,050,482 samples, 0.01%)</title><rect x="1173.0" y="485" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1176.03" y="495.5" ></text>
</g>
<g >
<title>[[vdso]] (2,469,241 samples, 0.01%)</title><rect x="263.1" y="501" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="266.10" y="511.5" ></text>
</g>
<g >
<title>runtime.gcDrain (2,730,349,711 samples, 9.54%)</title><rect x="251.6" y="565" width="112.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="254.55" y="575.5" >runtime.gcDrain</text>
</g>
<g >
<title>kmem_cache_free (12,398,672 samples, 0.04%)</title><rect x="161.8" y="245" width="0.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="164.84" y="255.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,594,302,291 samples, 5.57%)</title><rect x="412.3" y="405" width="65.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="415.28" y="415.5" >syscall..</text>
</g>
<g >
<title>irqentry_exit (4,545,574 samples, 0.02%)</title><rect x="1189.1" y="469" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1192.11" y="479.5" ></text>
</g>
<g >
<title>rmqueue (5,438,338 samples, 0.02%)</title><rect x="569.4" y="325" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="572.37" y="335.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (4,556,396 samples, 0.02%)</title><rect x="521.6" y="293" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="524.56" y="303.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (11,502,919 samples, 0.04%)</title><rect x="766.2" y="197" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="769.25" y="207.5" ></text>
</g>
<g >
<title>resched_curr (3,195,003 samples, 0.01%)</title><rect x="128.0" y="293" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="131.01" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (3,118,766 samples, 0.01%)</title><rect x="519.9" y="389" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="522.86" y="399.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (390,943,831 samples, 1.37%)</title><rect x="801.9" y="213" width="16.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="804.94" y="223.5" ></text>
</g>
<g >
<title>security_capable (154,482,685 samples, 0.54%)</title><rect x="895.6" y="293" width="6.4" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="898.58" y="303.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (11,910,217 samples, 0.04%)</title><rect x="904.5" y="293" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="907.49" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (12,891,182 samples, 0.05%)</title><rect x="485.9" y="341" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="488.89" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (42,869,481 samples, 0.15%)</title><rect x="485.9" y="437" width="1.7" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="488.86" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,854,317 samples, 0.02%)</title><rect x="600.5" y="341" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="603.48" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mheap).initSpan (5,412,991 samples, 0.02%)</title><rect x="636.2" y="293" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="639.20" y="303.5" ></text>
</g>
<g >
<title>syscall.Syscall (15,767,671 samples, 0.06%)</title><rect x="10.9" y="581" width="0.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="13.94" y="591.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,921,025 samples, 0.02%)</title><rect x="926.4" y="293" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="929.37" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,692,484 samples, 0.01%)</title><rect x="185.7" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="188.66" y="367.5" ></text>
</g>
<g >
<title>rcu_core (2,880,135 samples, 0.01%)</title><rect x="210.3" y="261" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="213.29" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (10,880,183 samples, 0.04%)</title><rect x="552.6" y="469" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="555.63" y="479.5" ></text>
</g>
<g >
<title>apparmor_task_kill (3,249,575 samples, 0.01%)</title><rect x="264.7" y="373" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="267.68" y="383.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,838,023 samples, 0.04%)</title><rect x="76.2" y="389" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="79.18" y="399.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (55,651,194 samples, 0.19%)</title><rect x="641.6" y="421" width="2.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="644.62" y="431.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (35,626,673 samples, 0.12%)</title><rect x="142.2" y="293" width="1.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="145.21" y="303.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).putBatch (36,345,772 samples, 0.13%)</title><rect x="1179.8" y="421" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1182.83" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,613,750,814 samples, 19.61%)</title><rect x="19.5" y="613" width="231.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="22.54" y="623.5" >do_syscall_64</text>
</g>
<g >
<title>locks_remove_file (6,864,095 samples, 0.02%)</title><rect x="230.8" y="437" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="233.77" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (4,677,390 samples, 0.02%)</title><rect x="552.8" y="293" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="555.76" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (22,534,203 samples, 0.08%)</title><rect x="561.7" y="485" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="564.71" y="495.5" ></text>
</g>
<g >
<title>unmap_page_range (78,302,385 samples, 0.27%)</title><rect x="37.9" y="389" width="3.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="40.93" y="399.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (14,814,124 samples, 0.05%)</title><rect x="489.4" y="453" width="0.6" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="492.36" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (66,932,909 samples, 0.23%)</title><rect x="1185.3" y="469" width="2.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1188.34" y="479.5" ></text>
</g>
<g >
<title>update_load_avg (3,012,863 samples, 0.01%)</title><rect x="130.5" y="293" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="133.47" y="303.5" ></text>
</g>
<g >
<title>kmem_cache_free (7,551,583 samples, 0.03%)</title><rect x="87.7" y="277" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="90.65" y="287.5" ></text>
</g>
<g >
<title>_compound_head (17,787,863 samples, 0.06%)</title><rect x="37.9" y="357" width="0.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="40.93" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2,862,073 samples, 0.01%)</title><rect x="112.8" y="357" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="115.82" y="367.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (6,824,876 samples, 0.02%)</title><rect x="14.6" y="549" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="17.62" y="559.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (3,884,423 samples, 0.01%)</title><rect x="1171.6" y="453" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1174.59" y="463.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,172,373 samples, 0.02%)</title><rect x="588.8" y="245" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="591.75" y="255.5" ></text>
</g>
<g >
<title>vma_expand (3,096,469 samples, 0.01%)</title><rect x="1002.1" y="133" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1005.11" y="143.5" ></text>
</g>
<g >
<title>free_slab (5,304,128 samples, 0.02%)</title><rect x="159.5" y="165" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="162.52" y="175.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (3,824,753 samples, 0.01%)</title><rect x="582.1" y="277" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="585.14" y="287.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,081,027,114 samples, 14.26%)</title><rect x="995.7" y="405" width="168.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="998.72" y="415.5" >runtime.systemstack.a..</text>
</g>
<g >
<title>asm_sysvec_call_function_single (3,040,691 samples, 0.01%)</title><rect x="317.1" y="533" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="320.08" y="543.5" ></text>
</g>
<g >
<title>rcu_core (5,644,076 samples, 0.02%)</title><rect x="250.7" y="373" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="253.70" y="383.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (894,641,235 samples, 3.13%)</title><rect x="842.2" y="245" width="36.9" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="845.18" y="255.5" >__k..</text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (3,153,189 samples, 0.01%)</title><rect x="15.3" y="533" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="18.27" y="543.5" ></text>
</g>
<g >
<title>cache_from_obj (4,879,495 samples, 0.02%)</title><rect x="194.4" y="389" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="197.37" y="399.5" ></text>
</g>
<g >
<title>get_random_u32 (4,647,558 samples, 0.02%)</title><rect x="861.7" y="149" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="864.69" y="159.5" ></text>
</g>
<g >
<title>runtime.preemptone (7,651,393 samples, 0.03%)</title><rect x="15.5" y="533" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="18.53" y="543.5" ></text>
</g>
<g >
<title>idr_get_next (5,391,466 samples, 0.02%)</title><rect x="460.4" y="261" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="463.40" y="271.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,114,739 samples, 0.01%)</title><rect x="464.2" y="245" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="467.23" y="255.5" ></text>
</g>
<g >
<title>xas_descend (23,959,075 samples, 0.08%)</title><rect x="812.9" y="165" width="1.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="815.92" y="175.5" ></text>
</g>
<g >
<title>security_bpf (17,459,933 samples, 0.06%)</title><rect x="923.8" y="325" width="0.7" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="926.76" y="335.5" ></text>
</g>
<g >
<title>mntget (26,726,166 samples, 0.09%)</title><rect x="825.1" y="261" width="1.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="828.11" y="271.5" ></text>
</g>
<g >
<title>rmqueue (11,475,121 samples, 0.04%)</title><rect x="792.8" y="117" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="795.83" y="127.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3,125,728 samples, 0.01%)</title><rect x="262.2" y="501" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="265.22" y="511.5" ></text>
</g>
<g >
<title>free_slab (9,450,002 samples, 0.03%)</title><rect x="161.9" y="165" width="0.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="164.93" y="175.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (133,482,028 samples, 0.47%)</title><rect x="358.5" y="533" width="5.5" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="361.52" y="543.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,872,087 samples, 0.01%)</title><rect x="1156.6" y="261" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1159.60" y="271.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (7,724,611 samples, 0.03%)</title><rect x="408.8" y="453" width="0.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="411.78" y="463.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (4,598,855 samples, 0.02%)</title><rect x="926.1" y="357" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="929.05" y="367.5" ></text>
</g>
<g >
<title>idr_preload (10,695,336 samples, 0.04%)</title><rect x="712.1" y="325" width="0.4" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="715.10" y="335.5" ></text>
</g>
<g >
<title>runtime.sysMmap.abi0 (11,264,180 samples, 0.04%)</title><rect x="1001.9" y="261" width="0.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1004.86" y="271.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (9,093,007 samples, 0.03%)</title><rect x="797.5" y="213" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="800.49" y="223.5" ></text>
</g>
<g >
<title>rcu_do_batch (6,981,063 samples, 0.02%)</title><rect x="202.9" y="245" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="205.88" y="255.5" ></text>
</g>
<g >
<title>xas_start (40,512,046 samples, 0.14%)</title><rect x="813.9" y="165" width="1.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="816.91" y="175.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,646,017 samples, 0.02%)</title><rect x="15.6" y="501" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="18.58" y="511.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (9,002,130 samples, 0.03%)</title><rect x="719.5" y="309" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="722.48" y="319.5" ></text>
</g>
<g >
<title>runtime.sweepone (35,822,806 samples, 0.13%)</title><rect x="501.8" y="549" width="1.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="504.77" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,867,438 samples, 0.01%)</title><rect x="248.2" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="251.20" y="447.5" ></text>
</g>
<g >
<title>errors.Is (35,848,257 samples, 0.13%)</title><rect x="491.8" y="501" width="1.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="494.83" y="511.5" ></text>
</g>
<g >
<title>kmem_cache_free (95,155,403 samples, 0.33%)</title><rect x="157.7" y="245" width="3.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="160.72" y="255.5" ></text>
</g>
<g >
<title>error_entry (4,177,856 samples, 0.01%)</title><rect x="611.8" y="325" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="614.78" y="335.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (4,623,312 samples, 0.02%)</title><rect x="380.5" y="485" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="383.46" y="495.5" ></text>
</g>
<g >
<title>error_entry (4,366,926 samples, 0.02%)</title><rect x="10.5" y="549" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.45" y="559.5" ></text>
</g>
<g >
<title>setup_object (5,442,250 samples, 0.02%)</title><rect x="861.9" y="165" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="864.92" y="175.5" ></text>
</g>
<g >
<title>runtime.scanblock (9,145,337 samples, 0.03%)</title><rect x="489.0" y="325" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="491.98" y="335.5" ></text>
</g>
<g >
<title>schedule (25,522,749 samples, 0.09%)</title><rect x="13.0" y="437" width="1.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="16.02" y="447.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (4,602,144 samples, 0.02%)</title><rect x="636.7" y="133" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="639.67" y="143.5" ></text>
</g>
<g >
<title>allocate_slab (241,857,255 samples, 0.84%)</title><rect x="753.5" y="181" width="10.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="756.50" y="191.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4,641,207 samples, 0.02%)</title><rect x="477.8" y="373" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="480.81" y="383.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (68,594,062 samples, 0.24%)</title><rect x="15.9" y="549" width="2.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="18.85" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,327,470 samples, 0.03%)</title><rect x="1188.4" y="501" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1191.44" y="511.5" ></text>
</g>
<g >
<title>handle_pte_fault (14,853,811 samples, 0.05%)</title><rect x="645.5" y="341" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="648.50" y="351.5" ></text>
</g>
<g >
<title>task_work_run (5,088,632,097 samples, 17.78%)</title><rect x="41.2" y="485" width="209.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="44.16" y="495.5" >task_work_run</text>
</g>
<g >
<title>bpf_map_release (2,183,195,666 samples, 7.63%)</title><rect x="76.6" y="437" width="90.0" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="79.63" y="447.5" >bpf_map_re..</text>
</g>
<g >
<title>get_obj_cgroup_from_current (55,888,210 samples, 0.20%)</title><rect x="808.1" y="197" width="2.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="811.09" y="207.5" ></text>
</g>
<g >
<title>__slab_free (112,178,618 samples, 0.39%)</title><rect x="240.1" y="405" width="4.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="243.06" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (8,291,755 samples, 0.03%)</title><rect x="1167.7" y="229" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1170.66" y="239.5" ></text>
</g>
<g >
<title>__free_slab (5,304,128 samples, 0.02%)</title><rect x="159.5" y="149" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="162.52" y="159.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1 (3,061,052,222 samples, 10.69%)</title><rect x="375.4" y="533" width="126.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="378.37" y="543.5" >github.com/EMni..</text>
</g>
<g >
<title>hrtimer_nanosleep (48,357,982 samples, 0.17%)</title><rect x="16.3" y="485" width="2.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="19.26" y="495.5" ></text>
</g>
<g >
<title>do_wp_page (9,327,446 samples, 0.03%)</title><rect x="575.4" y="181" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="578.41" y="191.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (6,206,549 samples, 0.02%)</title><rect x="567.3" y="357" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="570.33" y="367.5" ></text>
</g>
<g >
<title>kmem_cache_free (9,608,027 samples, 0.03%)</title><rect x="223.9" y="213" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="226.90" y="223.5" ></text>
</g>
<g >
<title>__free_pages (9,450,002 samples, 0.03%)</title><rect x="161.9" y="133" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="164.93" y="143.5" ></text>
</g>
<g >
<title>exc_page_fault (4,659,958 samples, 0.02%)</title><rect x="590.7" y="277" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="593.67" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (6,170,846 samples, 0.02%)</title><rect x="614.1" y="373" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="617.12" y="383.5" ></text>
</g>
<g >
<title>rcu_core_si (8,224,750 samples, 0.03%)</title><rect x="235.3" y="341" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="238.27" y="351.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (161,077,437 samples, 0.56%)</title><rect x="544.4" y="277" width="6.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="547.42" y="287.5" ></text>
</g>
<g >
<title>do_tkill (5,624,266 samples, 0.02%)</title><rect x="15.6" y="453" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="18.58" y="463.5" ></text>
</g>
<g >
<title>radix_tree_node_rcu_free (12,398,672 samples, 0.04%)</title><rect x="161.8" y="261" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="164.84" y="271.5" ></text>
</g>
<g >
<title>runtime.retake (10,648,411 samples, 0.04%)</title><rect x="15.4" y="549" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="18.41" y="559.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,841,740 samples, 0.01%)</title><rect x="230.0" y="357" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="232.97" y="367.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5,385,167 samples, 0.02%)</title><rect x="154.8" y="325" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="157.78" y="335.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (3,159,964 samples, 0.01%)</title><rect x="16.4" y="437" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="19.42" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (3,111,222 samples, 0.01%)</title><rect x="577.7" y="101" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="580.71" y="111.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (9,870,871 samples, 0.03%)</title><rect x="643.5" y="405" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="646.51" y="415.5" ></text>
</g>
<g >
<title>encoding/binary.Read (3,014,046 samples, 0.01%)</title><rect x="503.3" y="533" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="506.27" y="543.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,981,063 samples, 0.02%)</title><rect x="202.9" y="341" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="205.88" y="351.5" ></text>
</g>
<g >
<title>runtime.memmove (26,244,193 samples, 0.09%)</title><rect x="597.3" y="309" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="600.32" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (2,684,092 samples, 0.01%)</title><rect x="605.4" y="309" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="608.42" y="319.5" ></text>
</g>
<g >
<title>__schedule (33,164,569 samples, 0.12%)</title><rect x="16.8" y="437" width="1.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="19.81" y="447.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (89,673,033 samples, 0.31%)</title><rect x="608.6" y="341" width="3.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="611.62" y="351.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (3,787,628 samples, 0.01%)</title><rect x="416.6" y="277" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="419.65" y="287.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (11,659,289 samples, 0.04%)</title><rect x="261.3" y="549" width="0.5" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="264.29" y="559.5" ></text>
</g>
<g >
<title>rcu_core (5,225,460 samples, 0.02%)</title><rect x="69.4" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="72.39" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (282,725,211 samples, 0.99%)</title><rect x="847.1" y="149" width="11.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="850.05" y="159.5" ></text>
</g>
<g >
<title>handle_pte_fault (9,322,466 samples, 0.03%)</title><rect x="577.5" y="213" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="580.45" y="223.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (33,505,646 samples, 0.12%)</title><rect x="488.0" y="437" width="1.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="490.98" y="447.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (3,680,657 samples, 0.01%)</title><rect x="12.9" y="421" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="15.86" y="431.5" ></text>
</g>
<g >
<title>__do_softirq (2,867,438 samples, 0.01%)</title><rect x="248.2" y="373" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="251.20" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,682,483 samples, 0.01%)</title><rect x="355.5" y="517" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="358.46" y="527.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (2,989,129 samples, 0.01%)</title><rect x="520.7" y="309" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="523.72" y="319.5" ></text>
</g>
<g >
<title>check_kill_permission (4,510,726 samples, 0.02%)</title><rect x="264.6" y="405" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="267.63" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (10,005,717 samples, 0.03%)</title><rect x="581.7" y="277" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="584.72" y="287.5" ></text>
</g>
<g >
<title>testing.(*B).doBench.func1 (3,102,703,472 samples, 10.84%)</title><rect x="375.4" y="613" width="127.9" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="378.37" y="623.5" >testing.(*B).doB..</text>
</g>
<g >
<title>alloc_pages (5,469,254 samples, 0.02%)</title><rect x="837.8" y="181" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="840.78" y="191.5" ></text>
</g>
<g >
<title>__get_random_u32_below (3,065,663 samples, 0.01%)</title><rect x="795.0" y="149" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="798.03" y="159.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (18,542,419 samples, 0.06%)</title><rect x="213.3" y="389" width="0.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="216.27" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (12,891,182 samples, 0.05%)</title><rect x="485.9" y="357" width="0.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="488.89" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (75,892,148 samples, 0.27%)</title><rect x="1185.3" y="485" width="3.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1188.31" y="495.5" ></text>
</g>
<g >
<title>__handle_mm_fault (26,687,574 samples, 0.09%)</title><rect x="606.0" y="245" width="1.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="609.00" y="255.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (3,855,688 samples, 0.01%)</title><rect x="514.0" y="485" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="517.05" y="495.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (3,068,854 samples, 0.01%)</title><rect x="452.5" y="245" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="455.49" y="255.5" ></text>
</g>
<g >
<title>rcu_core (17,924,323 samples, 0.06%)</title><rect x="223.8" y="261" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="226.79" y="271.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (2,997,498 samples, 0.01%)</title><rect x="511.6" y="469" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="514.60" y="479.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (6,843,939 samples, 0.02%)</title><rect x="452.7" y="229" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="455.68" y="239.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,108,001 samples, 0.02%)</title><rect x="600.5" y="309" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="603.52" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (15,046,675 samples, 0.05%)</title><rect x="1156.5" y="325" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1159.45" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (3,083,363 samples, 0.01%)</title><rect x="595.6" y="293" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="598.56" y="303.5" ></text>
</g>
<g >
<title>inc_slabs_node (2,742,473 samples, 0.01%)</title><rect x="787.4" y="197" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="790.44" y="207.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,909,621 samples, 0.01%)</title><rect x="355.6" y="453" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="358.65" y="463.5" ></text>
</g>
<g >
<title>consume_obj_stock (3,753,862 samples, 0.01%)</title><rect x="863.5" y="229" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="866.47" y="239.5" ></text>
</g>
<g >
<title>bpf_map_seq_start (4,423,887 samples, 0.02%)</title><rect x="477.1" y="277" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="480.12" y="287.5" ></text>
</g>
<g >
<title>update_rq_clock (25,198,252 samples, 0.09%)</title><rect x="149.0" y="341" width="1.0" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="152.00" y="351.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (10,615,755 samples, 0.04%)</title><rect x="96.2" y="389" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="99.18" y="399.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,867,438 samples, 0.01%)</title><rect x="248.2" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="251.20" y="415.5" ></text>
</g>
<g >
<title>wake_up_process (910,063,587 samples, 3.18%)</title><rect x="112.7" y="373" width="37.6" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="115.74" y="383.5" >wak..</text>
</g>
<g >
<title>runtime.nilinterequal (19,969,291 samples, 0.07%)</title><rect x="406.5" y="437" width="0.8" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="409.48" y="447.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (3,554,617 samples, 0.01%)</title><rect x="19.6" y="581" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="22.62" y="591.5" ></text>
</g>
<g >
<title>__alloc_pages (5,469,254 samples, 0.02%)</title><rect x="837.8" y="165" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="840.78" y="175.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (630,090,334 samples, 2.20%)</title><rect x="747.7" y="229" width="26.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="750.73" y="239.5" >k..</text>
</g>
<g >
<title>_atomic_dec_and_lock (5,246,004 samples, 0.02%)</title><rect x="216.1" y="389" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="219.07" y="399.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4,059,429 samples, 0.01%)</title><rect x="177.7" y="341" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="180.71" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_sched_yield (3,261,765 samples, 0.01%)</title><rect x="261.9" y="469" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="264.90" y="479.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,838,023 samples, 0.04%)</title><rect x="76.2" y="373" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="79.18" y="383.5" ></text>
</g>
<g >
<title>dequeue_entity (5,240,156 samples, 0.02%)</title><rect x="13.2" y="373" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="16.16" y="383.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (58,983,794 samples, 0.21%)</title><rect x="146.2" y="277" width="2.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="149.23" y="287.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,747,340 samples, 0.03%)</title><rect x="244.3" y="373" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="247.33" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (3,901,044 samples, 0.01%)</title><rect x="560.8" y="469" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="563.85" y="479.5" ></text>
</g>
<g >
<title>reflect.Value.Field (4,569,385 samples, 0.02%)</title><rect x="553.5" y="501" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="556.46" y="511.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (19,426,115 samples, 0.07%)</title><rect x="1168.3" y="341" width="0.8" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1171.28" y="351.5" ></text>
</g>
<g >
<title>scheduler_tick (3,178,390 samples, 0.01%)</title><rect x="154.9" y="261" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="157.88" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (38,557,416 samples, 0.13%)</title><rect x="12.6" y="501" width="1.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.65" y="511.5" ></text>
</g>
<g >
<title>runtime.findObject (27,269,801 samples, 0.10%)</title><rect x="639.8" y="309" width="1.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="642.78" y="319.5" ></text>
</g>
<g >
<title>update_process_times (3,090,953 samples, 0.01%)</title><rect x="1156.6" y="229" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1159.63" y="239.5" ></text>
</g>
<g >
<title>__x64_sys_read (1,575,049,834 samples, 5.50%)</title><rect x="412.6" y="341" width="64.9" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="415.57" y="351.5" >__x64_s..</text>
</g>
<g >
<title>runtime.osyield.abi0 (13,312,525 samples, 0.05%)</title><rect x="261.8" y="517" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="264.80" y="527.5" ></text>
</g>
<g >
<title>irq_exit_rcu (227,701,362 samples, 0.80%)</title><rect x="155.0" y="357" width="9.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="158.03" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (15,213,579 samples, 0.05%)</title><rect x="485.9" y="405" width="0.6" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="488.86" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,244,202 samples, 0.01%)</title><rect x="364.8" y="437" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="367.84" y="447.5" ></text>
</g>
<g >
<title>put_cpu_partial (5,432,951 samples, 0.02%)</title><rect x="242.9" y="389" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="245.90" y="399.5" ></text>
</g>
<g >
<title>do_wp_page (13,166,790 samples, 0.05%)</title><rect x="614.4" y="421" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="617.37" y="431.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (3,717,639 samples, 0.01%)</title><rect x="891.6" y="309" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="894.59" y="319.5" ></text>
</g>
<g >
<title>sched_clock (67,232,547 samples, 0.23%)</title><rect x="146.2" y="309" width="2.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="149.16" y="319.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (4,656,908 samples, 0.02%)</title><rect x="643.9" y="357" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="646.95" y="367.5" ></text>
</g>
<g >
<title>rcu_core (24,515,274 samples, 0.09%)</title><rect x="94.7" y="293" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="97.73" y="303.5" ></text>
</g>
<g >
<title>__mem_cgroup_uncharge_list (3,116,333 samples, 0.01%)</title><rect x="39.6" y="277" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="42.59" y="287.5" ></text>
</g>
<g >
<title>exit_mmap (78,302,385 samples, 0.27%)</title><rect x="37.9" y="437" width="3.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="40.93" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (8,991,614 samples, 0.03%)</title><rect x="600.8" y="277" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="603.82" y="287.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (3,041,030 samples, 0.01%)</title><rect x="12.0" y="469" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="15.00" y="479.5" ></text>
</g>
<g >
<title>dequeue_task (12,496,372 samples, 0.04%)</title><rect x="16.9" y="421" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="19.93" y="431.5" ></text>
</g>
<g >
<title>psi_task_change (38,226,313 samples, 0.13%)</title><rect x="130.8" y="309" width="1.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="133.79" y="319.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (12,910,631 samples, 0.05%)</title><rect x="891.7" y="309" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="894.74" y="319.5" ></text>
</g>
<g >
<title>runtime.findObject (7,591,216 samples, 0.03%)</title><rect x="494.5" y="357" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="497.50" y="367.5" ></text>
</g>
<g >
<title>irq_exit_rcu (17,924,323 samples, 0.06%)</title><rect x="223.8" y="325" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="226.79" y="335.5" ></text>
</g>
<g >
<title>runtime.efaceeq (7,642,930 samples, 0.03%)</title><rect x="407.0" y="421" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="409.99" y="431.5" ></text>
</g>
<g >
<title>should_failslab (5,962,641 samples, 0.02%)</title><rect x="883.6" y="245" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="886.65" y="255.5" ></text>
</g>
<g >
<title>rcu_core_si (24,470,405 samples, 0.09%)</title><rect x="69.7" y="357" width="1.0" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="72.65" y="367.5" ></text>
</g>
<g >
<title>rcu_core_si (2,841,740 samples, 0.01%)</title><rect x="230.0" y="325" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="232.97" y="335.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (10,838,023 samples, 0.04%)</title><rect x="76.2" y="421" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="79.18" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,013,335 samples, 0.02%)</title><rect x="244.7" y="405" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="247.69" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,945,887 samples, 0.01%)</title><rect x="355.5" y="469" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="358.49" y="479.5" ></text>
</g>
<g >
<title>runtime.mstart1 (64,365,424 samples, 0.22%)</title><rect x="11.7" y="565" width="2.7" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="14.70" y="575.5" ></text>
</g>
<g >
<title>runtime.newobject (6,998,337 samples, 0.02%)</title><rect x="589.1" y="309" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="592.13" y="319.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (12,840,634 samples, 0.04%)</title><rect x="1172.0" y="469" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1174.97" y="479.5" ></text>
</g>
<g >
<title>ptep_clear_flush (9,779,368 samples, 0.03%)</title><rect x="611.0" y="197" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="613.98" y="207.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (42,354,453 samples, 0.15%)</title><rect x="123.0" y="341" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="126.00" y="351.5" ></text>
</g>
<g >
<title>rcu_do_batch (6,013,335 samples, 0.02%)</title><rect x="244.7" y="293" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="247.69" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (7,315,203 samples, 0.03%)</title><rect x="316.8" y="533" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="319.78" y="543.5" ></text>
</g>
<g >
<title>testing.(*B).runN (3,102,703,472 samples, 10.84%)</title><rect x="375.4" y="581" width="127.9" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="378.37" y="591.5" >testing.(*B).runN</text>
</g>
<g >
<title>io.(*SectionReader).Read (6,161,533 samples, 0.02%)</title><rect x="583.4" y="261" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="586.37" y="271.5" ></text>
</g>
<g >
<title>exc_page_fault (6,197,644 samples, 0.02%)</title><rect x="574.9" y="277" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="577.90" y="287.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (227,878,003 samples, 0.80%)</title><rect x="385.5" y="469" width="9.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="388.49" y="479.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (3,910,138 samples, 0.01%)</title><rect x="560.7" y="517" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="563.65" y="527.5" ></text>
</g>
<g >
<title>__alloc_pages (14,011,069 samples, 0.05%)</title><rect x="562.0" y="357" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="565.00" y="367.5" ></text>
</g>
<g >
<title>runtime.mallocgc (11,564,676 samples, 0.04%)</title><rect x="585.8" y="277" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="588.82" y="287.5" ></text>
</g>
<g >
<title>__queue_work (1,056,739,913 samples, 3.69%)</title><rect x="108.2" y="389" width="43.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="111.16" y="399.5" >__qu..</text>
</g>
<g >
<title>runtime.(*mcache).nextFree (32,386,553 samples, 0.11%)</title><rect x="556.4" y="469" width="1.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="559.44" y="479.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,781,341 samples, 0.01%)</title><rect x="612.1" y="309" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="615.13" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (24,011,953 samples, 0.08%)</title><rect x="580.0" y="293" width="1.0" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="583.00" y="303.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,076,923 samples, 0.01%)</title><rect x="494.0" y="437" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="496.97" y="447.5" ></text>
</g>
<g >
<title>schedule (2,996,584 samples, 0.01%)</title><rect x="364.9" y="357" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="367.85" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,879,795 samples, 0.01%)</title><rect x="490.0" y="405" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="492.97" y="415.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,644,076 samples, 0.02%)</title><rect x="250.7" y="437" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="253.70" y="447.5" ></text>
</g>
<g >
<title>__handle_mm_fault (66,798,488 samples, 0.23%)</title><rect x="567.0" y="437" width="2.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="569.97" y="447.5" ></text>
</g>
<g >
<title>lockref_put_return (10,787,606 samples, 0.04%)</title><rect x="230.3" y="437" width="0.5" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="233.33" y="447.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,889,056 samples, 0.01%)</title><rect x="212.0" y="309" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="214.98" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,966,455 samples, 0.01%)</title><rect x="598.9" y="165" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="601.93" y="175.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4,427,125 samples, 0.02%)</title><rect x="262.0" y="469" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="265.04" y="479.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (3,031,540 samples, 0.01%)</title><rect x="631.4" y="437" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="634.38" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (25,537,513 samples, 0.09%)</title><rect x="614.0" y="485" width="1.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="616.96" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (23,923,886 samples, 0.08%)</title><rect x="151.9" y="389" width="1.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="154.93" y="399.5" ></text>
</g>
<g >
<title>migrate_disable (9,061,851 samples, 0.03%)</title><rect x="551.3" y="277" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="554.31" y="287.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (26,646,504 samples, 0.09%)</title><rect x="607.5" y="309" width="1.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="610.47" y="319.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (12,530,801 samples, 0.04%)</title><rect x="212.1" y="341" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="215.10" y="351.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4,440,932 samples, 0.02%)</title><rect x="316.8" y="485" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="319.81" y="495.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,687,986 samples, 0.01%)</title><rect x="611.7" y="277" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="614.67" y="287.5" ></text>
</g>
<g >
<title>runtime.makeslice (269,513,554 samples, 0.94%)</title><rect x="479.4" y="485" width="11.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="482.45" y="495.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (157,810,775 samples, 0.55%)</title><rect x="99.1" y="373" width="6.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="102.08" y="383.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (3,726,399 samples, 0.01%)</title><rect x="365.0" y="533" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="368.05" y="543.5" ></text>
</g>
<g >
<title>irqentry_exit (4,634,837 samples, 0.02%)</title><rect x="1001.0" y="325" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1003.99" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (30,818,713 samples, 0.11%)</title><rect x="556.4" y="437" width="1.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="559.44" y="447.5" ></text>
</g>
<g >
<title>__radix_tree_replace (14,475,355 samples, 0.05%)</title><rect x="917.0" y="261" width="0.6" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="919.96" y="271.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (5,426,405 samples, 0.02%)</title><rect x="514.2" y="485" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="517.21" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (42,418,907 samples, 0.15%)</title><rect x="12.5" y="517" width="1.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="15.49" y="527.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2,988,470 samples, 0.01%)</title><rect x="551.8" y="357" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="554.85" y="367.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,388,441 samples, 0.02%)</title><rect x="766.7" y="197" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="769.72" y="207.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (78,302,385 samples, 0.27%)</title><rect x="37.9" y="373" width="3.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="40.93" y="383.5" ></text>
</g>
<g >
<title>runtime.persistentalloc1 (14,046,918 samples, 0.05%)</title><rect x="1001.7" y="309" width="0.6" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1004.75" y="319.5" ></text>
</g>
<g >
<title>runtime.gcMarkTermination (4,167,892 samples, 0.01%)</title><rect x="251.1" y="581" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="254.11" y="591.5" ></text>
</g>
<g >
<title>runtime.(*scavengeIndex).alloc (4,602,144 samples, 0.02%)</title><rect x="636.7" y="277" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="639.67" y="287.5" ></text>
</g>
<g >
<title>runtime.sysAlloc (11,264,180 samples, 0.04%)</title><rect x="1001.9" y="293" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1004.86" y="303.5" ></text>
</g>
<g >
<title>get_any_partial (7,528,524 samples, 0.03%)</title><rect x="846.0" y="213" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="849.03" y="223.5" ></text>
</g>
<g >
<title>discard_slab (2,474,500 samples, 0.01%)</title><rect x="243.0" y="357" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="246.02" y="367.5" ></text>
</g>
<g >
<title>handle_pte_fault (67,384,283 samples, 0.24%)</title><rect x="627.8" y="373" width="2.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="630.77" y="383.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,880,135 samples, 0.01%)</title><rect x="210.3" y="245" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="213.29" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (9,333,972 samples, 0.03%)</title><rect x="216.3" y="389" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="219.29" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (8,562,813 samples, 0.03%)</title><rect x="552.6" y="421" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="555.63" y="431.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (2,528,516 samples, 0.01%)</title><rect x="99.0" y="309" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="101.97" y="319.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,879,250 samples, 0.01%)</title><rect x="590.7" y="197" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="593.67" y="207.5" ></text>
</g>
<g >
<title>__mod_memcg_state (6,927,562 samples, 0.02%)</title><rect x="877.9" y="181" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="880.90" y="191.5" ></text>
</g>
<g >
<title>errors.Is (38,250,468 samples, 0.13%)</title><rect x="623.8" y="469" width="1.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="626.84" y="479.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (94,823,100 samples, 0.33%)</title><rect x="175.2" y="389" width="3.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="178.17" y="399.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (134,797,251 samples, 0.47%)</title><rect x="1177.5" y="453" width="5.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1180.49" y="463.5" ></text>
</g>
<g >
<title>__unfreeze_partials (9,450,002 samples, 0.03%)</title><rect x="161.9" y="197" width="0.4" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="164.93" y="207.5" ></text>
</g>
<g >
<title>file_free_rcu (3,231,583 samples, 0.01%)</title><rect x="250.7" y="341" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="253.70" y="351.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (4,029,552,753 samples, 14.08%)</title><rect x="996.4" y="373" width="166.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="999.42" y="383.5" >runtime.addfinalizer</text>
</g>
<g >
<title>__hrtimer_run_queues (7,383,854 samples, 0.03%)</title><rect x="1156.5" y="277" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1159.45" y="287.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (4,917,245 samples, 0.02%)</title><rect x="364.8" y="469" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="367.81" y="479.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (9,926,903 samples, 0.03%)</title><rect x="792.9" y="101" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="795.89" y="111.5" ></text>
</g>
<g >
<title>consume_obj_stock (5,277,522 samples, 0.02%)</title><rect x="764.7" y="213" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="767.73" y="223.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (13,888,889 samples, 0.05%)</title><rect x="511.7" y="469" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="514.72" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,274,555 samples, 0.02%)</title><rect x="10.9" y="549" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.94" y="559.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (3,093,129 samples, 0.01%)</title><rect x="584.6" y="261" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="587.55" y="271.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (6,824,876 samples, 0.02%)</title><rect x="14.6" y="597" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="17.62" y="607.5" ></text>
</g>
<g >
<title>check_stack_object (6,728,902 samples, 0.02%)</title><rect x="704.1" y="293" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="707.11" y="303.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (16,902,205 samples, 0.06%)</title><rect x="495.3" y="501" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="498.25" y="511.5" ></text>
</g>
<g >
<title>runtime.growslice (5,460,928 samples, 0.02%)</title><rect x="560.8" y="517" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="563.81" y="527.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (35,405,163 samples, 0.12%)</title><rect x="150.3" y="373" width="1.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="153.26" y="383.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (12,895,106 samples, 0.05%)</title><rect x="10.1" y="565" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.10" y="575.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).next (3,098,125 samples, 0.01%)</title><rect x="644.0" y="325" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="646.98" y="335.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,104,904 samples, 0.01%)</title><rect x="235.4" y="293" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="238.44" y="303.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,067,496 samples, 0.01%)</title><rect x="588.1" y="293" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="591.08" y="303.5" ></text>
</g>
<g >
<title>dput (10,425,567 samples, 0.04%)</title><rect x="246.6" y="453" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="249.60" y="463.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo (3,061,052,222 samples, 10.69%)</title><rect x="375.4" y="549" width="126.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="378.37" y="559.5" >github.com/EMni..</text>
</g>
<g >
<title>exc_page_fault (84,373,730 samples, 0.29%)</title><rect x="627.5" y="437" width="3.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="630.45" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (164,015,469 samples, 0.57%)</title><rect x="571.3" y="325" width="6.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="574.30" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (13,650,344 samples, 0.05%)</title><rect x="1167.5" y="373" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1170.50" y="383.5" ></text>
</g>
<g >
<title>array_map_alloc (1,256,779,059 samples, 4.39%)</title><rect x="838.4" y="309" width="51.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="841.42" y="319.5" >array..</text>
</g>
<g >
<title>syscall.RawSyscall6 (3,766,807 samples, 0.01%)</title><rect x="651.1" y="421" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="654.06" y="431.5" ></text>
</g>
<g >
<title>idr_get_next_ul (3,887,616 samples, 0.01%)</title><rect x="543.0" y="261" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="545.98" y="271.5" ></text>
</g>
<g >
<title>dnotify_flush (3,135,837 samples, 0.01%)</title><rect x="32.9" y="437" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="35.92" y="447.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (101,426,555 samples, 0.35%)</title><rect x="637.4" y="373" width="4.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="640.38" y="383.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (113,411,907 samples, 0.40%)</title><rect x="656.4" y="405" width="4.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="659.42" y="415.5" ></text>
</g>
<g >
<title>rcu_core (2,905,151 samples, 0.01%)</title><rect x="246.5" y="341" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="249.48" y="351.5" ></text>
</g>
<g >
<title>cache_from_obj (5,205,572 samples, 0.02%)</title><rect x="238.4" y="421" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="241.38" y="431.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (8,991,614 samples, 0.03%)</title><rect x="600.8" y="293" width="0.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="603.82" y="303.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (125,381,367 samples, 0.44%)</title><rect x="71.5" y="437" width="5.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="74.46" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (17,924,323 samples, 0.06%)</title><rect x="223.8" y="341" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="226.79" y="351.5" ></text>
</g>
<g >
<title>runtime.getempty (30,280,047 samples, 0.11%)</title><rect x="1180.0" y="405" width="1.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1182.96" y="415.5" ></text>
</g>
<g >
<title>wp_page_copy (4,616,754 samples, 0.02%)</title><rect x="643.3" y="277" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="646.29" y="287.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (6,130,538 samples, 0.02%)</title><rect x="190.4" y="325" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="193.40" y="335.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,062,056 samples, 0.01%)</title><rect x="1184.7" y="501" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1187.68" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (3,092,711 samples, 0.01%)</title><rect x="556.5" y="405" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="559.54" y="415.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (5,444,045 samples, 0.02%)</title><rect x="628.0" y="341" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="630.99" y="351.5" ></text>
</g>
<g >
<title>x86_pmu_disable (4,156,191 samples, 0.01%)</title><rect x="17.8" y="357" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="20.77" y="367.5" ></text>
</g>
<g >
<title>kfree (13,448,271 samples, 0.05%)</title><rect x="203.9" y="277" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="206.88" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,646,017 samples, 0.02%)</title><rect x="15.6" y="485" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="18.58" y="495.5" ></text>
</g>
<g >
<title>__do_softirq (6,013,335 samples, 0.02%)</title><rect x="244.7" y="341" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="247.69" y="351.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (3,120,044 samples, 0.01%)</title><rect x="569.4" y="309" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="572.44" y="319.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (3,886,891 samples, 0.01%)</title><rect x="567.4" y="325" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="570.42" y="335.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (5,211,893 samples, 0.02%)</title><rect x="391.7" y="437" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="394.73" y="447.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (5,444,304 samples, 0.02%)</title><rect x="39.0" y="325" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="42.04" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,616,754 samples, 0.02%)</title><rect x="643.3" y="309" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="646.29" y="319.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,781,341 samples, 0.01%)</title><rect x="612.1" y="277" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="615.13" y="287.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (15,795,942 samples, 0.06%)</title><rect x="394.9" y="469" width="0.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="397.88" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (35,696,193 samples, 0.12%)</title><rect x="567.9" y="325" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="570.90" y="335.5" ></text>
</g>
<g >
<title>memcpy_orig (6,162,731 samples, 0.02%)</title><rect x="838.0" y="245" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="841.01" y="255.5" ></text>
</g>
<g >
<title>do_wp_page (4,616,754 samples, 0.02%)</title><rect x="643.3" y="293" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="646.29" y="303.5" ></text>
</g>
<g >
<title>set_next_entity (16,084,013 samples, 0.06%)</title><rect x="184.0" y="357" width="0.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="186.97" y="367.5" ></text>
</g>
<g >
<title>runtime.mstart0 (89,226,032 samples, 0.31%)</title><rect x="15.0" y="597" width="3.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="18.02" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.copyTypes (278,611,076 samples, 0.97%)</title><rect x="587.6" y="357" width="11.5" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="590.60" y="367.5" ></text>
</g>
<g >
<title>runtime.getempty (6,023,188 samples, 0.02%)</title><rect x="356.0" y="501" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="358.99" y="511.5" ></text>
</g>
<g >
<title>file_free_rcu (10,591,594 samples, 0.04%)</title><rect x="155.1" y="277" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="158.08" y="287.5" ></text>
</g>
<g >
<title>rmqueue_bulk (7,616,087 samples, 0.03%)</title><rect x="793.0" y="85" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="795.99" y="95.5" ></text>
</g>
<g >
<title>__x64_sys_futex (3,056,897 samples, 0.01%)</title><rect x="364.9" y="421" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="367.85" y="431.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (143,608,684 samples, 0.50%)</title><rect x="810.4" y="197" width="5.9" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="813.39" y="207.5" ></text>
</g>
<g >
<title>__kmalloc_node (20,646,083 samples, 0.07%)</title><rect x="793.4" y="149" width="0.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="796.42" y="159.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (3,790,255 samples, 0.01%)</title><rect x="1173.2" y="485" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1176.16" y="495.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (10,649,555 samples, 0.04%)</title><rect x="606.4" y="149" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="609.36" y="159.5" ></text>
</g>
<g >
<title>__alloc_pages (10,042,997 samples, 0.04%)</title><rect x="597.9" y="133" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="600.92" y="143.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (3,864,674 samples, 0.01%)</title><rect x="579.7" y="293" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="582.68" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,266,232 samples, 0.02%)</title><rect x="606.8" y="133" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="609.83" y="143.5" ></text>
</g>
<g >
<title>runtime.newMarkBits (3,730,308 samples, 0.01%)</title><rect x="374.3" y="549" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="377.32" y="559.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (34,561,008 samples, 0.12%)</title><rect x="12.7" y="485" width="1.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="15.66" y="495.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,225,460 samples, 0.02%)</title><rect x="69.4" y="373" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="72.39" y="383.5" ></text>
</g>
<g >
<title>kvfree (3,925,146 samples, 0.01%)</title><rect x="37.7" y="453" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="40.67" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (3,866,445 samples, 0.01%)</title><rect x="571.7" y="293" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="574.74" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (32,941,853 samples, 0.12%)</title><rect x="177.7" y="373" width="1.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="180.71" y="383.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (22,451,207 samples, 0.08%)</title><rect x="357.6" y="517" width="0.9" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="360.59" y="527.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,849,312 samples, 0.02%)</title><rect x="868.4" y="213" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="871.38" y="223.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (3,719,261 samples, 0.01%)</title><rect x="210.4" y="357" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="213.41" y="367.5" ></text>
</g>
<g >
<title>do_anonymous_page (9,819,756 samples, 0.03%)</title><rect x="1167.6" y="293" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1170.59" y="303.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (4,602,144 samples, 0.02%)</title><rect x="636.7" y="181" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="639.67" y="191.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (15,298,062 samples, 0.05%)</title><rect x="164.7" y="389" width="0.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="167.74" y="399.5" ></text>
</g>
<g >
<title>update_load_avg (35,124,877 samples, 0.12%)</title><rect x="182.1" y="341" width="1.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="185.15" y="351.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (19,211,286 samples, 0.07%)</title><rect x="645.4" y="421" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="648.44" y="431.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4,298,751 samples, 0.02%)</title><rect x="663.6" y="325" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="666.62" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (63,678,108 samples, 0.22%)</title><rect x="567.1" y="421" width="2.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="570.10" y="431.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (2,760,824 samples, 0.01%)</title><rect x="180.8" y="341" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="183.84" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,880,135 samples, 0.01%)</title><rect x="210.3" y="357" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="213.29" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,746,898,434 samples, 9.60%)</title><rect x="251.5" y="597" width="113.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="254.49" y="607.5" >runtime.syste..</text>
</g>
<g >
<title>lock_vma_under_rcu (5,408,839 samples, 0.02%)</title><rect x="1000.7" y="309" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1003.73" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (3,888,061 samples, 0.01%)</title><rect x="577.7" y="133" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="580.67" y="143.5" ></text>
</g>
<g >
<title>__handle_mm_fault (23,919,321 samples, 0.08%)</title><rect x="597.4" y="229" width="1.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="600.38" y="239.5" ></text>
</g>
<g >
<title>mas_walk (3,119,673 samples, 0.01%)</title><rect x="569.8" y="437" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="572.76" y="447.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (6,793,674 samples, 0.02%)</title><rect x="760.7" y="101" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="763.66" y="111.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,966,455 samples, 0.01%)</title><rect x="598.9" y="245" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="601.93" y="255.5" ></text>
</g>
<g >
<title>runtime.unlock2 (26,850,950 samples, 0.09%)</title><rect x="1158.2" y="341" width="1.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1161.25" y="351.5" ></text>
</g>
<g >
<title>__mmput (78,302,385 samples, 0.27%)</title><rect x="37.9" y="453" width="3.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="40.93" y="463.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (6,063,666 samples, 0.02%)</title><rect x="998.3" y="245" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1001.33" y="255.5" ></text>
</g>
<g >
<title>__kmalloc_node (6,137,382 samples, 0.02%)</title><rect x="837.5" y="213" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="840.53" y="223.5" ></text>
</g>
<g >
<title>memcg_account_kmem (3,053,230 samples, 0.01%)</title><rect x="817.6" y="181" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="820.58" y="191.5" ></text>
</g>
<g >
<title>handle_mm_fault (25,589,049 samples, 0.09%)</title><rect x="610.6" y="277" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="613.59" y="287.5" ></text>
</g>
<g >
<title>do_nanosleep (31,863,374 samples, 0.11%)</title><rect x="12.8" y="453" width="1.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="15.76" y="463.5" ></text>
</g>
<g >
<title>runtime.newstack (4,018,353 samples, 0.01%)</title><rect x="1189.6" y="613" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1192.64" y="623.5" ></text>
</g>
<g >
<title>rcu_core (6,981,063 samples, 0.02%)</title><rect x="202.9" y="261" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="205.88" y="271.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (22,964,649 samples, 0.08%)</title><rect x="636.0" y="341" width="1.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="639.04" y="351.5" ></text>
</g>
<g >
<title>release_pages (41,923,513 samples, 0.15%)</title><rect x="39.3" y="293" width="1.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="42.30" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,013,335 samples, 0.02%)</title><rect x="244.7" y="373" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="247.69" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,582,779,033 samples, 5.53%)</title><rect x="412.5" y="373" width="65.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="415.53" y="383.5" >entry_S..</text>
</g>
<g >
<title>asm_exc_page_fault (3,108,702 samples, 0.01%)</title><rect x="591.8" y="293" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="594.85" y="303.5" ></text>
</g>
<g >
<title>cpuacct_charge (4,096,279 samples, 0.01%)</title><rect x="181.0" y="341" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="183.98" y="351.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (28,136,009 samples, 0.10%)</title><rect x="642.3" y="405" width="1.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="645.35" y="415.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,623,570 samples, 0.02%)</title><rect x="316.8" y="517" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="319.81" y="527.5" ></text>
</g>
<g >
<title>bpf_seq_write (3,077,108 samples, 0.01%)</title><rect x="550.5" y="261" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="553.46" y="271.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (55,326,711 samples, 0.19%)</title><rect x="356.2" y="533" width="2.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="359.23" y="543.5" ></text>
</g>
<g >
<title>do_anonymous_page (19,455,559 samples, 0.07%)</title><rect x="561.8" y="405" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="564.77" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit (2,687,986 samples, 0.01%)</title><rect x="611.7" y="293" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="614.67" y="303.5" ></text>
</g>
<g >
<title>encoding/binary.Read (3,877,083 samples, 0.01%)</title><rect x="375.4" y="517" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="378.37" y="527.5" ></text>
</g>
<g >
<title>errseq_sample (18,188,070 samples, 0.06%)</title><rect x="824.4" y="261" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="827.36" y="271.5" ></text>
</g>
<g >
<title>rmqueue (9,902,504 samples, 0.03%)</title><rect x="760.5" y="117" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="763.53" y="127.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,866,445 samples, 0.01%)</title><rect x="571.7" y="245" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="574.74" y="255.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (13,968,833 samples, 0.05%)</title><rect x="720.3" y="309" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="723.33" y="319.5" ></text>
</g>
<g >
<title>runtime.sigtramp.abi0 (6,056,577 samples, 0.02%)</title><rect x="1189.1" y="517" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1192.05" y="527.5" ></text>
</g>
<g >
<title>mod_objcg_state (24,995,823 samples, 0.09%)</title><rect x="800.7" y="197" width="1.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="803.75" y="207.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (8,991,614 samples, 0.03%)</title><rect x="600.8" y="325" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="603.82" y="335.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (3,897,271 samples, 0.01%)</title><rect x="818.1" y="229" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="821.05" y="239.5" ></text>
</g>
<g >
<title>file_free_rcu (4,064,892 samples, 0.01%)</title><rect x="169.3" y="277" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="172.33" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (7,509,013 samples, 0.03%)</title><rect x="1172.7" y="485" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1175.72" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,875,330,886 samples, 24.02%)</title><rect x="675.8" y="389" width="283.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="678.78" y="399.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>check_mem_access (4,466,588 samples, 0.02%)</title><rect x="612.4" y="197" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="615.44" y="207.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (2,571,008,496 samples, 8.98%)</title><rect x="722.4" y="293" width="106.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="725.38" y="303.5" >__anon_inode..</text>
</g>
<g >
<title>do_syscall_64 (2,455,198 samples, 0.01%)</title><rect x="263.4" y="469" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="266.36" y="479.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (6,233,921 samples, 0.02%)</title><rect x="511.2" y="469" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="514.18" y="479.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,071,026 samples, 0.01%)</title><rect x="585.0" y="213" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="587.97" y="223.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (5,267,322 samples, 0.02%)</title><rect x="1183.2" y="485" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1186.18" y="495.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (4,642,990 samples, 0.02%)</title><rect x="539.2" y="245" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="542.16" y="255.5" ></text>
</g>
<g >
<title>map_create (5,053,461,760 samples, 17.65%)</title><rect x="712.5" y="325" width="208.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="715.54" y="335.5" >map_create</text>
</g>
<g >
<title>rcu_core (6,013,335 samples, 0.02%)</title><rect x="244.7" y="309" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="247.69" y="319.5" ></text>
</g>
<g >
<title>migrate_disable (13,581,852 samples, 0.05%)</title><rect x="476.4" y="261" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="479.35" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (15,523,979 samples, 0.05%)</title><rect x="577.3" y="293" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="580.29" y="303.5" ></text>
</g>
<g >
<title>__folio_alloc (4,677,390 samples, 0.02%)</title><rect x="552.8" y="341" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="555.76" y="351.5" ></text>
</g>
<g >
<title>syscall.Syscall (784,997,572 samples, 2.74%)</title><rect x="519.8" y="421" width="32.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="522.83" y="431.5" >sy..</text>
</g>
<g >
<title>handle_pte_fault (3,067,496 samples, 0.01%)</title><rect x="588.1" y="245" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="591.08" y="255.5" ></text>
</g>
<g >
<title>__do_softirq (5,766,083 samples, 0.02%)</title><rect x="206.4" y="277" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="209.36" y="287.5" ></text>
</g>
<g >
<title>___slab_alloc (12,416,890 samples, 0.04%)</title><rect x="859.4" y="133" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="862.38" y="143.5" ></text>
</g>
<g >
<title>try_to_wake_up (3,266,900 samples, 0.01%)</title><rect x="112.6" y="373" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="115.61" y="383.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,796,597 samples, 0.01%)</title><rect x="878.2" y="213" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="881.21" y="223.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (128,769,846 samples, 0.45%)</title><rect x="1177.7" y="437" width="5.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1180.74" y="447.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (8,249,023,889 samples, 28.82%)</title><rect x="650.5" y="437" width="340.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="653.50" y="447.5" >syscall.Syscall.abi0</text>
</g>
<g >
<title>memcpy_orig (23,564,050 samples, 0.08%)</title><rect x="819.4" y="245" width="1.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="822.44" y="255.5" ></text>
</g>
<g >
<title>__alloc_pages (8,291,755 samples, 0.03%)</title><rect x="1167.7" y="245" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1170.66" y="255.5" ></text>
</g>
<g >
<title>__folio_alloc (4,858,156 samples, 0.02%)</title><rect x="611.4" y="181" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="614.39" y="191.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (4,128,118 samples, 0.01%)</title><rect x="610.8" y="197" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="613.79" y="207.5" ></text>
</g>
<g >
<title>_raw_spin_lock (11,948,017 samples, 0.04%)</title><rect x="111.5" y="373" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="114.54" y="383.5" ></text>
</g>
<g >
<title>runtime.entersyscall (113,171,651 samples, 0.40%)</title><rect x="651.8" y="405" width="4.6" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="654.76" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,087,995 samples, 0.01%)</title><rect x="821.9" y="229" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="824.87" y="239.5" ></text>
</g>
<g >
<title>rcu_do_batch (23,942,907 samples, 0.08%)</title><rect x="94.7" y="277" width="1.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="97.75" y="287.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (3,099,193 samples, 0.01%)</title><rect x="862.3" y="229" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="865.30" y="239.5" ></text>
</g>
<g >
<title>free_unref_page (4,726,577 samples, 0.02%)</title><rect x="203.6" y="261" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="206.65" y="271.5" ></text>
</g>
<g >
<title>file_free_rcu (5,935,128 samples, 0.02%)</title><rect x="76.2" y="293" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="79.21" y="303.5" ></text>
</g>
<g >
<title>runtime.memmove (24,603,608 samples, 0.09%)</title><rect x="552.2" y="485" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="555.19" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,083,063 samples, 0.07%)</title><rect x="264.6" y="469" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="267.55" y="479.5" ></text>
</g>
<g >
<title>new_slab (243,393,502 samples, 0.85%)</title><rect x="753.5" y="197" width="10.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="756.47" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (15,828,169 samples, 0.06%)</title><rect x="1156.4" y="341" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1159.42" y="351.5" ></text>
</g>
<g >
<title>rmqueue_bulk (4,619,451 samples, 0.02%)</title><rect x="858.5" y="101" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="861.49" y="111.5" ></text>
</g>
<g >
<title>runtime.procyield.abi0 (11,835,653 samples, 0.04%)</title><rect x="262.3" y="517" width="0.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="265.35" y="527.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (6,013,335 samples, 0.02%)</title><rect x="244.7" y="357" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="247.69" y="367.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (30,520,877 samples, 0.11%)</title><rect x="264.3" y="501" width="1.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="267.28" y="511.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (3,881,504 samples, 0.01%)</title><rect x="399.9" y="469" width="0.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="402.90" y="479.5" ></text>
</g>
<g >
<title>runtime.memmove (7,467,803 samples, 0.03%)</title><rect x="598.8" y="341" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="601.78" y="351.5" ></text>
</g>
<g >
<title>__irqentry_text_end (4,660,723 samples, 0.02%)</title><rect x="610.3" y="325" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="613.26" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (28,149,900 samples, 0.10%)</title><rect x="63.1" y="437" width="1.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="66.10" y="447.5" ></text>
</g>
<g >
<title>dequeue_task_fair (7,311,771 samples, 0.03%)</title><rect x="13.1" y="389" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="16.13" y="399.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (26,656,488 samples, 0.09%)</title><rect x="1169.3" y="277" width="1.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1172.34" y="287.5" ></text>
</g>
<g >
<title>runtime.growslice (29,241,492 samples, 0.10%)</title><rect x="601.9" y="341" width="1.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="604.87" y="351.5" ></text>
</g>
<g >
<title>runtime.greyobject (3,775,351 samples, 0.01%)</title><rect x="637.8" y="325" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="640.81" y="335.5" ></text>
</g>
<g >
<title>perf_ctx_disable (4,156,191 samples, 0.01%)</title><rect x="17.8" y="373" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="20.77" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (5,225,460 samples, 0.02%)</title><rect x="69.4" y="357" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="72.39" y="367.5" ></text>
</g>
<g >
<title>bpf_check (4,466,588 samples, 0.02%)</title><rect x="612.4" y="245" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="615.44" y="255.5" ></text>
</g>
<g >
<title>rcu_core_si (17,924,323 samples, 0.06%)</title><rect x="223.8" y="277" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="226.79" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (45,281,131 samples, 0.16%)</title><rect x="628.6" y="309" width="1.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="631.62" y="319.5" ></text>
</g>
<g >
<title>mntput_no_expire (2,429,605 samples, 0.01%)</title><rect x="233.1" y="437" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="236.10" y="447.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2 (5,971,835 samples, 0.02%)</title><rect x="374.5" y="533" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="377.47" y="543.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,074,464 samples, 0.02%)</title><rect x="663.6" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="666.62" y="383.5" ></text>
</g>
<g >
<title>mntput (27,894,077 samples, 0.10%)</title><rect x="247.2" y="453" width="1.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="250.17" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (20,446,715 samples, 0.07%)</title><rect x="1180.2" y="373" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1183.20" y="383.5" ></text>
</g>
<g >
<title>runtime.growslice (14,669,912 samples, 0.05%)</title><rect x="572.5" y="309" width="0.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="575.48" y="319.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (101,426,555 samples, 0.35%)</title><rect x="637.4" y="357" width="4.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="640.38" y="367.5" ></text>
</g>
<g >
<title>iput (187,081,212 samples, 0.65%)</title><rect x="216.8" y="389" width="7.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="219.81" y="399.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (801,032,676 samples, 2.80%)</title><rect x="519.2" y="485" width="33.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="522.17" y="495.5" >bu..</text>
</g>
<g >
<title>new_slab (192,743,674 samples, 0.67%)</title><rect x="787.6" y="197" width="7.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="790.55" y="207.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (134,797,251 samples, 0.47%)</title><rect x="1177.5" y="485" width="5.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1180.49" y="495.5" ></text>
</g>
<g >
<title>runtime.retake (10,802,291 samples, 0.04%)</title><rect x="12.0" y="533" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="14.98" y="543.5" ></text>
</g>
<g >
<title>runtime.findRunnable (5,131,235 samples, 0.02%)</title><rect x="364.8" y="517" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="367.80" y="527.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (8,010,421 samples, 0.03%)</title><rect x="490.1" y="469" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="493.13" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.findProgramTargetInKernel (629,474,359 samples, 2.20%)</title><rect x="586.4" y="405" width="26.0" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="589.43" y="415.5" >g..</text>
</g>
<g >
<title>obj_cgroup_uncharge (51,417,939 samples, 0.18%)</title><rect x="210.6" y="373" width="2.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="213.56" y="383.5" ></text>
</g>
<g >
<title>vma_alloc_folio (10,815,015 samples, 0.04%)</title><rect x="597.9" y="165" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="600.92" y="175.5" ></text>
</g>
<g >
<title>apparmor_capable (27,024,387 samples, 0.09%)</title><rect x="892.9" y="293" width="1.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="895.94" y="303.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (9,681,362 samples, 0.03%)</title><rect x="134.8" y="309" width="0.4" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="137.76" y="319.5" ></text>
</g>
<g >
<title>ttwu_do_activate (136,930,961 samples, 0.48%)</title><rect x="127.0" y="341" width="5.7" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="130.01" y="351.5" ></text>
</g>
<g >
<title>__schedule (2,578,417 samples, 0.01%)</title><rect x="477.7" y="277" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="480.68" y="287.5" ></text>
</g>
<g >
<title>capable (124,446,925 samples, 0.43%)</title><rect x="885.0" y="293" width="5.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="888.01" y="303.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (8,378,474 samples, 0.03%)</title><rect x="819.1" y="245" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="822.10" y="255.5" ></text>
</g>
<g >
<title>__task_rq_lock (165,084,968 samples, 0.58%)</title><rect x="116.1" y="341" width="6.8" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="119.06" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.kernelSpec (377,144,888 samples, 1.32%)</title><rect x="570.9" y="373" width="15.5" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="573.88" y="383.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (210,957,354 samples, 0.74%)</title><rect x="366.0" y="565" width="8.7" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="369.02" y="575.5" ></text>
</g>
<g >
<title>__d_instantiate (4,643,637 samples, 0.02%)</title><rect x="724.9" y="261" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="727.93" y="271.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (5,408,079 samples, 0.02%)</title><rect x="998.0" y="245" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1001.04" y="255.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (3,084,043 samples, 0.01%)</title><rect x="712.0" y="325" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="714.97" y="335.5" ></text>
</g>
<g >
<title>memcpy_orig (13,230,313 samples, 0.05%)</title><rect x="549.7" y="229" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="552.66" y="239.5" ></text>
</g>
<g >
<title>free_slab (24,492,320 samples, 0.09%)</title><rect x="203.5" y="309" width="1.0" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="206.46" y="319.5" ></text>
</g>
<g >
<title>sync_regs (3,866,304 samples, 0.01%)</title><rect x="570.6" y="501" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="573.63" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (5,494,498,678 samples, 19.20%)</title><rect x="699.0" y="357" width="226.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="702.04" y="367.5" >__x64_sys_bpf</text>
</g>
<g >
<title>__folio_alloc (14,011,069 samples, 0.05%)</title><rect x="562.0" y="373" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="565.00" y="383.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (227,597,287 samples, 0.80%)</title><rect x="155.0" y="341" width="9.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="158.03" y="351.5" ></text>
</g>
<g >
<title>__free_pages (3,925,146 samples, 0.01%)</title><rect x="37.7" y="421" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="40.67" y="431.5" ></text>
</g>
<g >
<title>wp_page_copy (6,990,354 samples, 0.02%)</title><rect x="577.5" y="181" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="580.55" y="191.5" ></text>
</g>
<g >
<title>error_entry (6,819,731 samples, 0.02%)</title><rect x="19.1" y="597" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="22.12" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (138,095,158 samples, 0.48%)</title><rect x="618.0" y="485" width="5.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="620.99" y="495.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,431,491 samples, 0.02%)</title><rect x="793.7" y="53" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="796.67" y="63.5" ></text>
</g>
<g >
<title>_copy_from_user (13,623,308 samples, 0.05%)</title><rect x="924.8" y="341" width="0.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="927.79" y="351.5" ></text>
</g>
<g >
<title>rcu_core_si (5,225,460 samples, 0.02%)</title><rect x="69.4" y="341" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="72.39" y="351.5" ></text>
</g>
<g >
<title>apparmor_capable (113,144,321 samples, 0.40%)</title><rect x="896.7" y="277" width="4.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="899.68" y="287.5" ></text>
</g>
<g >
<title>sched_clock (6,833,235 samples, 0.02%)</title><rect x="190.4" y="357" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="193.40" y="367.5" ></text>
</g>
<g >
<title>allocate_slab (12,416,890 samples, 0.04%)</title><rect x="859.4" y="101" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="862.38" y="111.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (5,355,353 samples, 0.02%)</title><rect x="1189.3" y="533" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1192.30" y="543.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (7,722,198 samples, 0.03%)</title><rect x="875.4" y="197" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="878.40" y="207.5" ></text>
</g>
<g >
<title>__alloc_pages (6,623,032 samples, 0.02%)</title><rect x="606.8" y="149" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="609.80" y="159.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,395,485 samples, 0.01%)</title><rect x="606.2" y="181" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="609.19" y="191.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2 (3,029,531 samples, 0.01%)</title><rect x="503.1" y="501" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="506.12" y="511.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (45,029,012 samples, 0.16%)</title><rect x="39.3" y="341" width="1.9" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="42.30" y="351.5" ></text>
</g>
<g >
<title>runtime.lock (3,727,281 samples, 0.01%)</title><rect x="374.6" y="517" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="377.57" y="527.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (49,716,764 samples, 0.17%)</title><rect x="412.6" y="293" width="2.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="415.63" y="303.5" ></text>
</g>
<g >
<title>runtime.mapassign (70,404,254 samples, 0.25%)</title><rect x="573.2" y="309" width="2.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="576.18" y="319.5" ></text>
</g>
<g >
<title>gcWriteBarrier (8,211,624 samples, 0.03%)</title><rect x="612.0" y="325" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="614.95" y="335.5" ></text>
</g>
<g >
<title>mmput (78,302,385 samples, 0.27%)</title><rect x="37.9" y="469" width="3.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="40.93" y="479.5" ></text>
</g>
<g >
<title>delete_node (4,583,898 samples, 0.02%)</title><rect x="105.6" y="373" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="108.58" y="383.5" ></text>
</g>
<g >
<title>__cond_resched (2,959,035 samples, 0.01%)</title><rect x="738.2" y="197" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="741.23" y="207.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,747,340 samples, 0.03%)</title><rect x="244.3" y="341" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="247.33" y="351.5" ></text>
</g>
<g >
<title>runtime.notesleep (5,026,046 samples, 0.02%)</title><rect x="364.8" y="485" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="367.80" y="495.5" ></text>
</g>
<g >
<title>runtime.memmove (3,891,562 samples, 0.01%)</title><rect x="588.3" y="309" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="591.27" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (26,021,555 samples, 0.09%)</title><rect x="606.0" y="229" width="1.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="609.03" y="239.5" ></text>
</g>
<g >
<title>irqentry_exit (10,916,298 samples, 0.04%)</title><rect x="569.9" y="469" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="572.92" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (23,742,567 samples, 0.08%)</title><rect x="636.0" y="373" width="1.0" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="639.01" y="383.5" ></text>
</g>
<g >
<title>rcu_core_si (6,008,065 samples, 0.02%)</title><rect x="169.3" y="325" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="172.33" y="335.5" ></text>
</g>
<g >
<title>rcu_core_si (5,644,076 samples, 0.02%)</title><rect x="250.7" y="389" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="253.70" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (12,097,212 samples, 0.04%)</title><rect x="1167.5" y="325" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1170.53" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.walkType (10,843,530 samples, 0.04%)</title><rect x="592.3" y="325" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="595.33" y="335.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (3,664,239 samples, 0.01%)</title><rect x="355.6" y="485" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="358.65" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (134,797,251 samples, 0.47%)</title><rect x="1177.5" y="469" width="5.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1180.49" y="479.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (64,365,424 samples, 0.22%)</title><rect x="11.7" y="597" width="2.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="14.70" y="607.5" ></text>
</g>
<g >
<title>anon_inode_getfd (2,836,232,580 samples, 9.91%)</title><rect x="721.5" y="309" width="116.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="724.50" y="319.5" >anon_inode_getfd</text>
</g>
<g >
<title>runtime.mapassign (131,384,321 samples, 0.46%)</title><rect x="603.2" y="341" width="5.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="606.20" y="351.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8,562,813 samples, 0.03%)</title><rect x="552.6" y="405" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="555.63" y="415.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (318,674,130 samples, 1.11%)</title><rect x="905.8" y="309" width="13.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="908.84" y="319.5" ></text>
</g>
<g >
<title>runtime.deferprocStack (20,612,636 samples, 0.07%)</title><rect x="1173.3" y="485" width="0.9" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1176.31" y="495.5" ></text>
</g>
<g >
<title>get_signal (5,607,602,296 samples, 19.59%)</title><rect x="19.8" y="533" width="231.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="22.76" y="543.5" >get_signal</text>
</g>
<g >
<title>runtime.wbBufFlush1 (3,696,111 samples, 0.01%)</title><rect x="608.4" y="245" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="611.41" y="255.5" ></text>
</g>
<g >
<title>mod_objcg_state (11,287,294 samples, 0.04%)</title><rect x="160.4" y="229" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="163.41" y="239.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (101,426,555 samples, 0.35%)</title><rect x="637.4" y="405" width="4.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="640.38" y="415.5" ></text>
</g>
<g >
<title>delete_node (3,878,452 samples, 0.01%)</title><rect x="917.6" y="261" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="920.56" y="271.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (19,129,068 samples, 0.07%)</title><rect x="916.9" y="277" width="0.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="919.93" y="287.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (6,186,368 samples, 0.02%)</title><rect x="585.3" y="277" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="588.32" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_free (13,411,546 samples, 0.05%)</title><rect x="178.2" y="229" width="0.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="181.18" y="239.5" ></text>
</g>
<g >
<title>runtime.scanobject (12,851,241 samples, 0.04%)</title><rect x="1170.5" y="293" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1173.47" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (39,576,161 samples, 0.14%)</title><rect x="1186.3" y="357" width="1.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1189.25" y="367.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (254,633,028 samples, 0.89%)</title><rect x="214.0" y="405" width="10.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="217.03" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (88,420,561 samples, 0.31%)</title><rect x="997.5" y="341" width="3.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1000.53" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,966,455 samples, 0.01%)</title><rect x="598.9" y="293" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="601.93" y="303.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,971,388 samples, 0.01%)</title><rect x="443.2" y="229" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="446.24" y="239.5" ></text>
</g>
<g >
<title>idr_get_next (3,000,402 samples, 0.01%)</title><rect x="477.2" y="245" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="480.18" y="255.5" ></text>
</g>
<g >
<title>dentry_free (498,959,339 samples, 1.74%)</title><rect x="193.5" y="405" width="20.5" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="196.46" y="415.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (102,979,907 samples, 0.36%)</title><rect x="637.3" y="421" width="4.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="640.31" y="431.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (3,032,613 samples, 0.01%)</title><rect x="711.8" y="325" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="714.84" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (18,429,197 samples, 0.06%)</title><rect x="645.4" y="389" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="648.44" y="399.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (41,809,111 samples, 0.15%)</title><rect x="1169.3" y="357" width="1.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1172.27" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (73,824,561 samples, 0.26%)</title><rect x="566.9" y="469" width="3.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="569.88" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,013,335 samples, 0.02%)</title><rect x="244.7" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="247.69" y="399.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,933,122 samples, 0.02%)</title><rect x="224.3" y="229" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="227.32" y="239.5" ></text>
</g>
<g >
<title>update_curr (4,174,236 samples, 0.01%)</title><rect x="184.6" y="357" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="187.63" y="367.5" ></text>
</g>
<g >
<title>runtime.newobject (3,105,633 samples, 0.01%)</title><rect x="592.0" y="309" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="595.04" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_lock (27,478,575 samples, 0.10%)</title><rect x="795.6" y="213" width="1.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="798.63" y="223.5" ></text>
</g>
<g >
<title>runtime.makeslice (6,972,824 samples, 0.02%)</title><rect x="583.7" y="293" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="586.69" y="303.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (33,505,646 samples, 0.12%)</title><rect x="488.0" y="389" width="1.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="490.98" y="399.5" ></text>
</g>
<g >
<title>memset_orig (55,366,316 samples, 0.19%)</title><rect x="881.2" y="245" width="2.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="884.17" y="255.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10,629,956 samples, 0.04%)</title><rect x="796.8" y="213" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="799.76" y="223.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (9,752,628 samples, 0.03%)</title><rect x="182.8" y="325" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="185.84" y="335.5" ></text>
</g>
<g >
<title>memset_orig (12,271,256 samples, 0.04%)</title><rect x="860.0" y="149" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="863.02" y="159.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).finalize (5,456,564 samples, 0.02%)</title><rect x="615.6" y="501" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="618.63" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,545,574 samples, 0.02%)</title><rect x="1189.1" y="501" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1192.11" y="511.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (6,824,876 samples, 0.02%)</title><rect x="14.6" y="581" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="17.62" y="591.5" ></text>
</g>
<g >
<title>__slab_free (32,429,929 samples, 0.11%)</title><rect x="158.9" y="229" width="1.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="161.87" y="239.5" ></text>
</g>
<g >
<title>ksys_read (771,235,637 samples, 2.69%)</title><rect x="520.0" y="341" width="31.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="523.02" y="351.5" >ks..</text>
</g>
<g >
<title>errors.Is (7,622,013 samples, 0.03%)</title><rect x="617.7" y="485" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="620.68" y="495.5" ></text>
</g>
<g >
<title>__unfreeze_partials (4,307,822 samples, 0.02%)</title><rect x="242.9" y="373" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="245.94" y="383.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,225,460 samples, 0.02%)</title><rect x="69.4" y="389" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="72.39" y="399.5" ></text>
</g>
<g >
<title>handle_pte_fault (23,603,103 samples, 0.08%)</title><rect x="610.6" y="245" width="1.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="613.61" y="255.5" ></text>
</g>
<g >
<title>__alloc_pages (3,071,026 samples, 0.01%)</title><rect x="585.0" y="149" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="587.97" y="159.5" ></text>
</g>
<g >
<title>rcu_core (8,834,284 samples, 0.03%)</title><rect x="95.7" y="309" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="98.74" y="319.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,143,220 samples, 0.01%)</title><rect x="14.1" y="485" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="17.11" y="495.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (192,694,079 samples, 0.67%)</title><rect x="830.4" y="293" width="8.0" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="833.45" y="303.5" ></text>
</g>
<g >
<title>runtime.GC (41,016,580 samples, 0.14%)</title><rect x="501.6" y="565" width="1.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="504.56" y="575.5" ></text>
</g>
<g >
<title>runtime.scanobject (85,527,743 samples, 0.30%)</title><rect x="638.0" y="325" width="3.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="641.00" y="335.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (3,082,543 samples, 0.01%)</title><rect x="625.3" y="453" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="628.29" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,469,254 samples, 0.02%)</title><rect x="837.8" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="840.78" y="159.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (7,611,069 samples, 0.03%)</title><rect x="774.5" y="229" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="777.47" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (58,113,057 samples, 0.20%)</title><rect x="16.1" y="517" width="2.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="19.08" y="527.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (5,264,881 samples, 0.02%)</title><rect x="747.0" y="197" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="750.00" y="207.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).allocToCache (6,161,273 samples, 0.02%)</title><rect x="636.6" y="293" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="639.61" y="303.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,335,501 samples, 0.01%)</title><rect x="607.1" y="261" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="610.13" y="271.5" ></text>
</g>
<g >
<title>runtime.interhash (2,886,398 samples, 0.01%)</title><rect x="605.7" y="325" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="608.67" y="335.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (6,669,568 samples, 0.02%)</title><rect x="628.2" y="341" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="631.21" y="351.5" ></text>
</g>
<g >
<title>mntput (49,511,854 samples, 0.17%)</title><rect x="231.1" y="437" width="2.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="234.06" y="447.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,834,284 samples, 0.03%)</title><rect x="95.7" y="405" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="98.74" y="415.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocker).tryAcquire (3,011,289 samples, 0.01%)</title><rect x="374.7" y="565" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="377.72" y="575.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (1,058,884,507 samples, 3.70%)</title><rect x="840.5" y="277" width="43.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="843.53" y="287.5" >__bp..</text>
</g>
<g >
<title>memcg_account_kmem (11,439,922 samples, 0.04%)</title><rect x="877.7" y="213" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="880.74" y="223.5" ></text>
</g>
<g >
<title>__vmalloc_area_node (5,469,254 samples, 0.02%)</title><rect x="837.8" y="197" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="840.78" y="207.5" ></text>
</g>
<g >
<title>tick_sched_timer (2,650,127 samples, 0.01%)</title><rect x="177.8" y="293" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="180.76" y="303.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (42,012,738 samples, 0.15%)</title><rect x="123.0" y="325" width="1.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="126.02" y="335.5" ></text>
</g>
<g >
<title>bpf_seq_write (36,029,374 samples, 0.13%)</title><rect x="472.8" y="229" width="1.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="475.79" y="239.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (157,711,981 samples, 0.55%)</title><rect x="116.4" y="325" width="6.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="119.37" y="335.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (2,950,305 samples, 0.01%)</title><rect x="627.9" y="341" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="630.87" y="351.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (4,654,936 samples, 0.02%)</title><rect x="557.8" y="469" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="560.81" y="479.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (2,771,953 samples, 0.01%)</title><rect x="611.2" y="101" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="614.18" y="111.5" ></text>
</g>
<g >
<title>memcg_account_kmem (6,173,558 samples, 0.02%)</title><rect x="773.0" y="197" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="776.04" y="207.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (457,627,732 samples, 1.60%)</title><rect x="265.7" y="533" width="18.9" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="268.71" y="543.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (5,961,411 samples, 0.02%)</title><rect x="165.6" y="421" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="168.61" y="431.5" ></text>
</g>
<g >
<title>consume_stock (3,074,516 samples, 0.01%)</title><rect x="878.7" y="197" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="881.68" y="207.5" ></text>
</g>
<g >
<title>gosave_systemstack_switch (6,188,014 samples, 0.02%)</title><rect x="994.9" y="405" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="997.92" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (15,495,796 samples, 0.05%)</title><rect x="579.0" y="277" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="582.04" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (5,266,232 samples, 0.02%)</title><rect x="606.8" y="117" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="609.83" y="127.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,088,156 samples, 0.01%)</title><rect x="21.3" y="357" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="24.27" y="367.5" ></text>
</g>
<g >
<title>do_anonymous_page (63,039,673 samples, 0.22%)</title><rect x="997.9" y="261" width="2.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1000.95" y="271.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,906,369 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.42" y="399.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (10,016,392 samples, 0.03%)</title><rect x="226.9" y="421" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="229.90" y="431.5" ></text>
</g>
<g >
<title>wp_page_copy (2,859,891 samples, 0.01%)</title><rect x="600.6" y="229" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="603.61" y="239.5" ></text>
</g>
<g >
<title>__slab_free (4,676,232 samples, 0.02%)</title><rect x="237.1" y="421" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="240.09" y="431.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (19,377,435 samples, 0.07%)</title><rect x="859.1" y="149" width="0.8" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="862.12" y="159.5" ></text>
</g>
<g >
<title>lru_add_fn (3,119,903 samples, 0.01%)</title><rect x="998.4" y="197" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1001.42" y="207.5" ></text>
</g>
<g >
<title>os.(*File).Read (1,595,086,060 samples, 5.57%)</title><rect x="412.3" y="453" width="65.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="415.28" y="463.5" >os.(*Fi..</text>
</g>
<g >
<title>get_page_from_freelist (3,073,742 samples, 0.01%)</title><rect x="636.7" y="69" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="639.74" y="79.5" ></text>
</g>
<g >
<title>rcu_do_batch (8,289,513 samples, 0.03%)</title><rect x="95.8" y="293" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="98.76" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,899,263 samples, 0.01%)</title><rect x="810.2" y="181" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="813.20" y="191.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (761,587,818 samples, 2.66%)</title><rect x="926.6" y="357" width="31.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="929.65" y="367.5" >sy..</text>
</g>
<g >
<title>new_slab (9,132,116 samples, 0.03%)</title><rect x="916.4" y="213" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="919.39" y="223.5" ></text>
</g>
<g >
<title>handle_pte_fault (23,975,899 samples, 0.08%)</title><rect x="614.0" y="437" width="0.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="616.96" y="447.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (135,162,328 samples, 0.47%)</title><rect x="454.3" y="213" width="5.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="457.35" y="223.5" ></text>
</g>
<g >
<title>rcu_core_si (8,834,284 samples, 0.03%)</title><rect x="95.7" y="325" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="98.74" y="335.5" ></text>
</g>
<g >
<title>vfree (3,925,146 samples, 0.01%)</title><rect x="37.7" y="437" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="40.67" y="447.5" ></text>
</g>
<g >
<title>wake_up_process (2,732,628 samples, 0.01%)</title><rect x="1156.5" y="245" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1159.48" y="255.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (3,090,106 samples, 0.01%)</title><rect x="597.7" y="133" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="600.70" y="143.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (11,420,979 samples, 0.04%)</title><rect x="1175.3" y="453" width="0.5" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1178.32" y="463.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (6,731,510 samples, 0.02%)</title><rect x="190.4" y="341" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="193.40" y="351.5" ></text>
</g>
<g >
<title>delete_node (11,397,352 samples, 0.04%)</title><rect x="98.6" y="357" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="101.61" y="367.5" ></text>
</g>
<g >
<title>__unfreeze_partials (8,220,653 samples, 0.03%)</title><rect x="159.4" y="197" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="162.40" y="207.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,224,750 samples, 0.03%)</title><rect x="235.3" y="389" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="238.27" y="399.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (28,099,060 samples, 0.10%)</title><rect x="739.7" y="181" width="1.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="742.68" y="191.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (2,971,863 samples, 0.01%)</title><rect x="377.3" y="501" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="380.30" y="511.5" ></text>
</g>
<g >
<title>runtime.spanOfHeap (8,511,176 samples, 0.03%)</title><rect x="1161.0" y="357" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1163.95" y="367.5" ></text>
</g>
<g >
<title>irq_exit_rcu (24,470,405 samples, 0.09%)</title><rect x="69.7" y="405" width="1.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="72.65" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (6,972,200 samples, 0.02%)</title><rect x="570.9" y="325" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="573.91" y="335.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (1,071,198,072 samples, 3.74%)</title><rect x="840.5" y="293" width="44.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="843.49" y="303.5" >bpf_..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (233,627,322 samples, 0.82%)</title><rect x="154.8" y="389" width="9.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="157.78" y="399.5" ></text>
</g>
<g >
<title>handle_pte_fault (20,197,725 samples, 0.07%)</title><rect x="561.8" y="421" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="564.77" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (3,026,163 samples, 0.01%)</title><rect x="1168.1" y="293" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1171.13" y="303.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (6,186,368 samples, 0.02%)</title><rect x="585.3" y="261" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="588.32" y="271.5" ></text>
</g>
<g >
<title>runtime.scanobject (18,238,585 samples, 0.06%)</title><rect x="494.2" y="373" width="0.8" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="497.22" y="383.5" ></text>
</g>
<g >
<title>put_cpu_partial (8,388,666 samples, 0.03%)</title><rect x="159.4" y="213" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="162.39" y="223.5" ></text>
</g>
<g >
<title>update_process_times (3,743,754 samples, 0.01%)</title><rect x="154.9" y="277" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="157.85" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,968,062 samples, 0.01%)</title><rect x="12.0" y="453" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="15.00" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (3,026,163 samples, 0.01%)</title><rect x="1168.1" y="325" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1171.13" y="335.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,841,740 samples, 0.01%)</title><rect x="230.0" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="232.97" y="383.5" ></text>
</g>
<g >
<title>runtime.markroot (33,505,646 samples, 0.12%)</title><rect x="488.0" y="357" width="1.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="490.98" y="367.5" ></text>
</g>
<g >
<title>bpf_map_put (33,815,042 samples, 0.12%)</title><rect x="521.8" y="293" width="1.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="524.84" y="303.5" ></text>
</g>
<g >
<title>rcu_core_si (10,838,023 samples, 0.04%)</title><rect x="76.2" y="341" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="79.18" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (27,070,018 samples, 0.09%)</title><rect x="614.0" y="501" width="1.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="616.96" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (18,175,092 samples, 0.06%)</title><rect x="1180.2" y="357" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1183.20" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (156,657,915 samples, 0.55%)</title><rect x="116.4" y="309" width="6.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="119.39" y="319.5" ></text>
</g>
<g >
<title>syscall.pread (5,418,148 samples, 0.02%)</title><rect x="585.3" y="229" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="588.32" y="239.5" ></text>
</g>
<g >
<title>cpuacct_charge (8,483,516 samples, 0.03%)</title><rect x="181.7" y="325" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="184.74" y="335.5" ></text>
</g>
<g >
<title>do_mmap (7,459,766 samples, 0.03%)</title><rect x="1001.9" y="165" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1004.93" y="175.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,659,958 samples, 0.02%)</title><rect x="590.7" y="245" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="593.67" y="255.5" ></text>
</g>
<g >
<title>exc_page_fault (5,854,317 samples, 0.02%)</title><rect x="600.5" y="325" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="603.48" y="335.5" ></text>
</g>
<g >
<title>runtime.findObject (13,313,120 samples, 0.05%)</title><rect x="276.6" y="517" width="0.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="279.61" y="527.5" ></text>
</g>
<g >
<title>vma_alloc_folio (2,966,455 samples, 0.01%)</title><rect x="598.9" y="213" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="601.93" y="223.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (5,361,440 samples, 0.02%)</title><rect x="875.5" y="181" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="878.50" y="191.5" ></text>
</g>
<g >
<title>clear_page_erms (7,746,606 samples, 0.03%)</title><rect x="859.4" y="53" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="862.38" y="63.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5,335,678 samples, 0.02%)</title><rect x="18.3" y="501" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="21.26" y="511.5" ></text>
</g>
<g >
<title>dequeue_task (7,311,771 samples, 0.03%)</title><rect x="13.1" y="405" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="16.13" y="415.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (122,636,721 samples, 0.43%)</title><rect x="545.4" y="261" width="5.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="548.40" y="271.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,852,123 samples, 0.01%)</title><rect x="558.4" y="437" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="561.44" y="447.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps.func1 (13,988,601,512 samples, 48.87%)</title><rect x="612.6" y="533" width="576.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="615.63" y="543.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps.func1</text>
</g>
<g >
<title>consume_obj_stock (18,558,949 samples, 0.06%)</title><rect x="816.8" y="181" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="819.81" y="191.5" ></text>
</g>
<g >
<title>__handle_mm_fault (23,975,899 samples, 0.08%)</title><rect x="614.0" y="453" width="0.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="616.96" y="463.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (24,515,274 samples, 0.09%)</title><rect x="94.7" y="341" width="1.0" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="97.73" y="351.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,008,660 samples, 0.01%)</title><rect x="356.0" y="485" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="359.05" y="495.5" ></text>
</g>
<g >
<title>[unknown] (38,675,550 samples, 0.14%)</title><rect x="10.0" y="597" width="1.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="607.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,172,373 samples, 0.02%)</title><rect x="588.8" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="591.75" y="287.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (33,505,646 samples, 0.12%)</title><rect x="488.0" y="373" width="1.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="490.98" y="383.5" ></text>
</g>
<g >
<title>vma_alloc_folio (45,811,006 samples, 0.16%)</title><rect x="567.7" y="389" width="1.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="570.74" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (12,869,150 samples, 0.04%)</title><rect x="1167.5" y="357" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1170.50" y="367.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (6,674,924 samples, 0.02%)</title><rect x="741.1" y="197" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="744.12" y="207.5" ></text>
</g>
<g >
<title>runtime.markroot (563,587,807 samples, 1.97%)</title><rect x="261.8" y="549" width="23.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="264.77" y="559.5" >r..</text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (9,538,158 samples, 0.03%)</title><rect x="124.8" y="341" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="127.81" y="351.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (41,809,111 samples, 0.15%)</title><rect x="1169.3" y="325" width="1.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1172.27" y="335.5" ></text>
</g>
<g >
<title>_get_random_bytes (3,089,571 samples, 0.01%)</title><rect x="861.8" y="133" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="864.76" y="143.5" ></text>
</g>
<g >
<title>__do_softirq (2,880,135 samples, 0.01%)</title><rect x="210.3" y="293" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="213.29" y="303.5" ></text>
</g>
<g >
<title>refill_obj_stock (15,063,171 samples, 0.05%)</title><rect x="160.9" y="213" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="163.87" y="223.5" ></text>
</g>
<g >
<title>exc_page_fault (3,852,123 samples, 0.01%)</title><rect x="558.4" y="453" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="561.44" y="463.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,071,026 samples, 0.01%)</title><rect x="585.0" y="229" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="587.97" y="239.5" ></text>
</g>
<g >
<title>rcu_core_si (27,016,740 samples, 0.09%)</title><rect x="177.9" y="293" width="1.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="180.89" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (3,818,626 samples, 0.01%)</title><rect x="1175.0" y="469" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1177.98" y="479.5" ></text>
</g>
<g >
<title>__vmalloc_node_range (5,469,254 samples, 0.02%)</title><rect x="837.8" y="213" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="840.78" y="223.5" ></text>
</g>
<g >
<title>handle_signal (3,012,841 samples, 0.01%)</title><rect x="1188.3" y="389" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1191.32" y="399.5" ></text>
</g>
<g >
<title>__fput (4,832,434,792 samples, 16.88%)</title><rect x="46.7" y="453" width="199.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="49.73" y="463.5" >__fput</text>
</g>
<g >
<title>syscall_return_via_sysret (691,974,922 samples, 2.42%)</title><rect x="961.6" y="389" width="28.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="964.59" y="399.5" >sy..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,466,588 samples, 0.02%)</title><rect x="612.4" y="325" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="615.44" y="335.5" ></text>
</g>
<g >
<title>pick_next_task_fair (3,639,814 samples, 0.01%)</title><rect x="17.6" y="405" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="20.58" y="415.5" ></text>
</g>
<g >
<title>runtime.scanblock (4,082,839 samples, 0.01%)</title><rect x="265.5" y="517" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="268.54" y="527.5" ></text>
</g>
<g >
<title>runtime.typedmemmove (29,586,775 samples, 0.10%)</title><rect x="607.3" y="325" width="1.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="610.35" y="335.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,081,954 samples, 0.01%)</title><rect x="76.3" y="277" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="79.28" y="287.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (10,808,452 samples, 0.04%)</title><rect x="793.5" y="133" width="0.4" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="796.48" y="143.5" ></text>
</g>
<g >
<title>handle_pte_fault (17,414,900 samples, 0.06%)</title><rect x="1180.2" y="309" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1183.24" y="319.5" ></text>
</g>
<g >
<title>__free_slab (9,450,002 samples, 0.03%)</title><rect x="161.9" y="149" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="164.93" y="159.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (4,634,837 samples, 0.02%)</title><rect x="1001.0" y="309" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1003.99" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (3,851,074 samples, 0.01%)</title><rect x="588.8" y="165" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="591.85" y="175.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (5,393,102 samples, 0.02%)</title><rect x="630.7" y="405" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="633.71" y="415.5" ></text>
</g>
<g >
<title>mod_node_page_state (3,843,027 samples, 0.01%)</title><rect x="794.3" y="165" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="797.27" y="175.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (24,011,953 samples, 0.08%)</title><rect x="580.0" y="277" width="1.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="583.00" y="287.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (20,516,280 samples, 0.07%)</title><rect x="494.2" y="405" width="0.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="497.16" y="415.5" ></text>
</g>
<g >
<title>bpf_map_put (44,334,473 samples, 0.15%)</title><rect x="417.0" y="277" width="1.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="419.99" y="287.5" ></text>
</g>
<g >
<title>do_user_addr_fault (83,785,724 samples, 0.29%)</title><rect x="997.5" y="325" width="3.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1000.53" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (3,851,074 samples, 0.01%)</title><rect x="588.8" y="133" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="591.85" y="143.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (7,026,398 samples, 0.02%)</title><rect x="643.9" y="405" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="646.92" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (16,992,992 samples, 0.06%)</title><rect x="264.6" y="453" width="0.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="267.55" y="463.5" ></text>
</g>
<g >
<title>runtime.handoffp (3,041,030 samples, 0.01%)</title><rect x="12.0" y="517" width="0.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="15.00" y="527.5" ></text>
</g>
<g >
<title>__handle_mm_fault (60,829,378 samples, 0.21%)</title><rect x="1185.5" y="437" width="2.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1188.50" y="447.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (20,646,083 samples, 0.07%)</title><rect x="793.4" y="165" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="796.42" y="175.5" ></text>
</g>
<g >
<title>handle_pte_fault (9,327,446 samples, 0.03%)</title><rect x="575.4" y="197" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="578.41" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,225,460 samples, 0.02%)</title><rect x="69.4" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="72.39" y="431.5" ></text>
</g>
<g >
<title>rcu_do_batch (22,280,628 samples, 0.08%)</title><rect x="69.7" y="325" width="1.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="72.74" y="335.5" ></text>
</g>
<g >
<title>runtime.scanobject (11,980,615 samples, 0.04%)</title><rect x="364.2" y="565" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="367.24" y="575.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (5,269,528 samples, 0.02%)</title><rect x="461.8" y="261" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="464.84" y="271.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (3,831,878 samples, 0.01%)</title><rect x="614.7" y="341" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="617.66" y="351.5" ></text>
</g>
<g >
<title>__do_softirq (13,297,647 samples, 0.05%)</title><rect x="87.6" y="357" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="90.63" y="367.5" ></text>
</g>
<g >
<title>do_wp_page (6,990,354 samples, 0.02%)</title><rect x="577.5" y="197" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="580.55" y="207.5" ></text>
</g>
<g >
<title>runtime.mcall (4,474,519 samples, 0.02%)</title><rect x="365.0" y="565" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="368.05" y="575.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (1,014,968,457 samples, 3.55%)</title><rect x="570.8" y="549" width="41.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="573.79" y="559.5" >syn..</text>
</g>
<g >
<title>new_slab (385,716,576 samples, 1.35%)</title><rect x="846.4" y="213" width="15.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="849.37" y="223.5" ></text>
</g>
<g >
<title>__alloc_pages (4,129,588 samples, 0.01%)</title><rect x="611.4" y="165" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="614.39" y="175.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (251,159,138 samples, 0.88%)</title><rect x="133.9" y="325" width="10.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="136.91" y="335.5" ></text>
</g>
<g >
<title>encoding/binary.Read (2,750,310,270 samples, 9.61%)</title><rect x="377.4" y="501" width="113.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="380.42" y="511.5" >encoding/binar..</text>
</g>
<g >
<title>clear_page_erms (11,665,548 samples, 0.04%)</title><rect x="562.1" y="325" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="565.06" y="335.5" ></text>
</g>
<g >
<title>kick_process (4,454,992 samples, 0.02%)</title><rect x="264.9" y="341" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="267.94" y="351.5" ></text>
</g>
<g >
<title>queue_work_on (1,445,805,406 samples, 5.05%)</title><rect x="105.8" y="405" width="59.6" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="108.77" y="415.5" >queue_..</text>
</g>
<g >
<title>vma_alloc_folio (4,858,156 samples, 0.02%)</title><rect x="611.4" y="197" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="614.39" y="207.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,225,460 samples, 0.02%)</title><rect x="69.4" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="72.39" y="415.5" ></text>
</g>
<g >
<title>rcu_core_si (5,766,083 samples, 0.02%)</title><rect x="206.4" y="261" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="209.36" y="271.5" ></text>
</g>
<g >
<title>crng_make_state (3,870,456 samples, 0.01%)</title><rect x="763.1" y="101" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="766.09" y="111.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (53,559,917 samples, 0.19%)</title><rect x="658.8" y="389" width="2.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="661.76" y="399.5" ></text>
</g>
<g >
<title>__do_softirq (6,981,063 samples, 0.02%)</title><rect x="202.9" y="293" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="205.88" y="303.5" ></text>
</g>
<g >
<title>file_free_rcu (2,867,438 samples, 0.01%)</title><rect x="248.2" y="309" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="251.20" y="319.5" ></text>
</g>
<g >
<title>cache_from_obj (42,767,715 samples, 0.15%)</title><rect x="206.6" y="373" width="1.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="209.61" y="383.5" ></text>
</g>
<g >
<title>do_tkill (16,992,992 samples, 0.06%)</title><rect x="264.6" y="437" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="267.55" y="447.5" ></text>
</g>
<g >
<title>exc_page_fault (19,211,286 samples, 0.07%)</title><rect x="645.4" y="405" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="648.44" y="415.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (39,013,116 samples, 0.14%)</title><rect x="732.5" y="213" width="1.6" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="735.45" y="223.5" ></text>
</g>
<g >
<title>runtime.typehash (3,882,981 samples, 0.01%)</title><rect x="596.6" y="293" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="599.55" y="303.5" ></text>
</g>
<g >
<title>runtime.memmove (136,002,357 samples, 0.48%)</title><rect x="495.9" y="501" width="5.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="498.95" y="511.5" ></text>
</g>
<g >
<title>runtime.slicebytetostring (15,425,063 samples, 0.05%)</title><rect x="585.7" y="293" width="0.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="588.67" y="303.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (112,702,997 samples, 0.39%)</title><rect x="166.6" y="421" width="4.7" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="169.63" y="431.5" ></text>
</g>
<g >
<title>__sigqueue_alloc (2,463,663 samples, 0.01%)</title><rect x="264.8" y="357" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="267.84" y="367.5" ></text>
</g>
<g >
<title>runtime.greyobject (3,805,860 samples, 0.01%)</title><rect x="494.8" y="357" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="497.82" y="367.5" ></text>
</g>
<g >
<title>discard_slab (25,366,179 samples, 0.09%)</title><rect x="203.4" y="325" width="1.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="206.42" y="335.5" ></text>
</g>
<g >
<title>prepare_task_switch (5,582,924 samples, 0.02%)</title><rect x="17.7" y="421" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="20.74" y="431.5" ></text>
</g>
<g >
<title>memcpy_orig (21,931,598 samples, 0.08%)</title><rect x="472.9" y="213" width="0.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="475.91" y="223.5" ></text>
</g>
<g >
<title>vfs_read (771,235,637 samples, 2.69%)</title><rect x="520.0" y="325" width="31.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="523.02" y="335.5" >vf..</text>
</g>
<g >
<title>prep_compound_page (3,584,766 samples, 0.01%)</title><rect x="858.0" y="133" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="860.96" y="143.5" ></text>
</g>
<g >
<title>runtime.markroot.func1 (90,755,006 samples, 0.32%)</title><rect x="261.8" y="533" width="3.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="264.80" y="543.5" ></text>
</g>
<g >
<title>exc_page_fault (3,008,660 samples, 0.01%)</title><rect x="356.0" y="469" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="359.05" y="479.5" ></text>
</g>
<g >
<title>memcg_account_kmem (5,737,171 samples, 0.02%)</title><rect x="212.3" y="325" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="215.25" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (31,602,484 samples, 0.11%)</title><rect x="556.4" y="453" width="1.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="559.44" y="463.5" ></text>
</g>
<g >
<title>__mutex_init (6,876,388 samples, 0.02%)</title><rect x="730.0" y="229" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="733.02" y="239.5" ></text>
</g>
<g >
<title>rcu_do_batch (10,252,114 samples, 0.04%)</title><rect x="76.2" y="309" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="79.21" y="319.5" ></text>
</g>
<g >
<title>clear_page_erms (3,073,742 samples, 0.01%)</title><rect x="636.7" y="53" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="639.74" y="63.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (4,643,366 samples, 0.02%)</title><rect x="1164.5" y="405" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1167.49" y="415.5" ></text>
</g>
<g >
<title>apparmor_capable (46,981,368 samples, 0.16%)</title><rect x="887.9" y="261" width="2.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="890.94" y="271.5" ></text>
</g>
<g >
<title>__free_pages (7,041,269 samples, 0.02%)</title><rect x="203.6" y="277" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="206.57" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (863,982,844 samples, 3.02%)</title><rect x="782.4" y="229" width="35.7" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="785.44" y="239.5" >kme..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,654,642 samples, 0.02%)</title><rect x="21.2" y="453" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="24.24" y="463.5" ></text>
</g>
<g >
<title>[[vdso]] (3,062,781 samples, 0.01%)</title><rect x="15.1" y="533" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="18.14" y="543.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (58,504,030 samples, 0.20%)</title><rect x="233.2" y="437" width="2.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="236.20" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (88,125,371 samples, 0.31%)</title><rect x="1184.8" y="501" width="3.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1187.81" y="511.5" ></text>
</g>
<g >
<title>runtime.mallocgc (312,044,391 samples, 1.09%)</title><rect x="631.5" y="437" width="12.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="634.53" y="447.5" ></text>
</g>
<g >
<title>__do_softirq (17,924,323 samples, 0.06%)</title><rect x="223.8" y="293" width="0.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="226.79" y="303.5" ></text>
</g>
<g >
<title>runtime.getpid.abi0 (13,299,379 samples, 0.05%)</title><rect x="263.2" y="501" width="0.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="266.20" y="511.5" ></text>
</g>
<g >
<title>pick_next_task (152,598,510 samples, 0.53%)</title><rect x="179.1" y="389" width="6.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="182.08" y="399.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,696,111 samples, 0.01%)</title><rect x="608.4" y="277" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="611.41" y="287.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (8,537,613 samples, 0.03%)</title><rect x="40.7" y="277" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="43.68" y="287.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,137,382 samples, 0.02%)</title><rect x="837.5" y="165" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="840.53" y="175.5" ></text>
</g>
<g >
<title>runtime.makeslicecopy (3,867,950 samples, 0.01%)</title><rect x="591.4" y="309" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="594.40" y="319.5" ></text>
</g>
<g >
<title>alloc_pages (20,031,399 samples, 0.07%)</title><rect x="744.9" y="133" width="0.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="747.87" y="143.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (23,040,034 samples, 0.08%)</title><rect x="486.5" y="405" width="1.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="489.52" y="415.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,747,340 samples, 0.03%)</title><rect x="244.3" y="325" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="247.33" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (2,841,740 samples, 0.01%)</title><rect x="230.0" y="341" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="232.97" y="351.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (2,646,147 samples, 0.01%)</title><rect x="181.6" y="325" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="184.62" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (5,218,730 samples, 0.02%)</title><rect x="643.3" y="373" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="646.26" y="383.5" ></text>
</g>
<g >
<title>gcWriteBarrier (3,025,513 samples, 0.01%)</title><rect x="1174.9" y="469" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1177.85" y="479.5" ></text>
</g>
<g >
<title>do_anonymous_page (13,941,509 samples, 0.05%)</title><rect x="579.1" y="197" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="582.07" y="207.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,867,438 samples, 0.01%)</title><rect x="248.2" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="251.20" y="431.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (19,578,154 samples, 0.07%)</title><rect x="491.0" y="501" width="0.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="494.02" y="511.5" ></text>
</g>
<g >
<title>__alloc_pages (5,431,491 samples, 0.02%)</title><rect x="793.7" y="69" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="796.67" y="79.5" ></text>
</g>
<g >
<title>runtime.interhash (20,969,123 samples, 0.07%)</title><rect x="595.8" y="309" width="0.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="598.85" y="319.5" ></text>
</g>
<g >
<title>runtime.gcenable.func2 (3,186,425 samples, 0.01%)</title><rect x="374.9" y="613" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="377.87" y="623.5" ></text>
</g>
<g >
<title>capable (3,866,039 samples, 0.01%)</title><rect x="711.7" y="325" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="714.68" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (4,545,574 samples, 0.02%)</title><rect x="1189.1" y="485" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1192.11" y="495.5" ></text>
</g>
<g >
<title>memchr_inv (31,145,354 samples, 0.11%)</title><rect x="920.9" y="325" width="1.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="923.86" y="335.5" ></text>
</g>
<g >
<title>all (28,623,713,834 samples, 100%)</title><rect x="10.0" y="661" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>runtime.memmove (18,563,058 samples, 0.06%)</title><rect x="590.1" y="309" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="593.13" y="319.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (5,138,222 samples, 0.02%)</title><rect x="88.0" y="293" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="90.97" y="303.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (4,473,745 samples, 0.02%)</title><rect x="719.3" y="309" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="722.29" y="319.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (3,688,302 samples, 0.01%)</title><rect x="477.2" y="261" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="480.15" y="271.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,644,076 samples, 0.02%)</title><rect x="250.7" y="421" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="253.70" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,704,166 samples, 0.02%)</title><rect x="926.4" y="341" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="929.37" y="351.5" ></text>
</g>
<g >
<title>runtime.gcMarkDone (5,608,619 samples, 0.02%)</title><rect x="251.1" y="597" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="254.11" y="607.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,905,151 samples, 0.01%)</title><rect x="246.5" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="249.48" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (27,033,506 samples, 0.09%)</title><rect x="999.0" y="181" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1001.96" y="191.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (48,293,817 samples, 0.17%)</title><rect x="485.8" y="453" width="2.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="488.77" y="463.5" ></text>
</g>
<g >
<title>syscall.read (784,997,572 samples, 2.74%)</title><rect x="519.8" y="437" width="32.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="522.83" y="447.5" >sy..</text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createMapGaugeEbpf (1,014,968,457 samples, 3.55%)</title><rect x="570.8" y="517" width="41.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="573.79" y="527.5" >git..</text>
</g>
<g >
<title>do_user_addr_fault (20,971,820 samples, 0.07%)</title><rect x="561.7" y="469" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="564.74" y="479.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (3,096,779 samples, 0.01%)</title><rect x="630.5" y="405" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="633.55" y="415.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (3,143,078 samples, 0.01%)</title><rect x="628.1" y="325" width="0.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="631.08" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (13,848,576 samples, 0.05%)</title><rect x="87.6" y="405" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="90.61" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (105,748,619 samples, 0.37%)</title><rect x="566.0" y="501" width="4.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="569.01" y="511.5" ></text>
</g>
<g >
<title>do_nanosleep (3,554,617 samples, 0.01%)</title><rect x="19.6" y="565" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="22.62" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (4,602,144 samples, 0.02%)</title><rect x="636.7" y="213" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="639.67" y="223.5" ></text>
</g>
<g >
<title>runtime.callers (4,656,908 samples, 0.02%)</title><rect x="643.9" y="389" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="646.95" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,154,066 samples, 0.01%)</title><rect x="364.8" y="453" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="367.81" y="463.5" ></text>
</g>
<g >
<title>__send_signal_locked (3,762,000 samples, 0.01%)</title><rect x="15.6" y="389" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="18.63" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,067,496 samples, 0.01%)</title><rect x="588.1" y="325" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="591.08" y="335.5" ></text>
</g>
<g >
<title>runtime.findObject (3,818,311 samples, 0.01%)</title><rect x="637.7" y="325" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="640.66" y="335.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (4,508,778 samples, 0.02%)</title><rect x="374.1" y="549" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="377.13" y="559.5" ></text>
</g>
<g >
<title>btf_find_by_name_kind (2,976,757 samples, 0.01%)</title><rect x="612.4" y="149" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="615.44" y="159.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,679,090 samples, 0.04%)</title><rect x="645.6" y="261" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="648.61" y="271.5" ></text>
</g>
<g >
<title>__folio_alloc (3,101,295 samples, 0.01%)</title><rect x="590.7" y="165" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="593.70" y="175.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,987,939 samples, 0.01%)</title><rect x="800.6" y="197" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="803.59" y="207.5" ></text>
</g>
<g >
<title>call_rcu (114,252,477 samples, 0.40%)</title><rect x="166.6" y="437" width="4.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="169.63" y="447.5" ></text>
</g>
<g >
<title>setup_object (6,111,714 samples, 0.02%)</title><rect x="795.2" y="149" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="798.15" y="159.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,905,151 samples, 0.01%)</title><rect x="246.5" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="249.48" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (7,746,606 samples, 0.03%)</title><rect x="859.4" y="85" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="862.38" y="95.5" ></text>
</g>
<g >
<title>runtime.bgsweep (245,300,243 samples, 0.86%)</title><rect x="364.7" y="597" width="10.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="367.73" y="607.5" ></text>
</g>
<g >
<title>__alloc_pages (6,137,382 samples, 0.02%)</title><rect x="837.5" y="181" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="840.53" y="191.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (10,649,555 samples, 0.04%)</title><rect x="606.4" y="133" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="609.36" y="143.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (3,100,225 samples, 0.01%)</title><rect x="490.0" y="373" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="493.00" y="383.5" ></text>
</g>
<g >
<title>do_send_specific (15,147,275 samples, 0.05%)</title><rect x="264.6" y="421" width="0.7" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="267.63" y="431.5" ></text>
</g>
<g >
<title>runtime.preemptone (6,431,856 samples, 0.02%)</title><rect x="12.2" y="517" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="15.15" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (24,599,186 samples, 0.09%)</title><rect x="264.4" y="485" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="267.37" y="495.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3,788,282 samples, 0.01%)</title><rect x="552.0" y="389" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="555.03" y="399.5" ></text>
</g>
<g >
<title>collapse_huge_page (4,602,144 samples, 0.02%)</title><rect x="636.7" y="117" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="639.67" y="127.5" ></text>
</g>
<g >
<title>runtime.typehash (3,649,920 samples, 0.01%)</title><rect x="408.6" y="437" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="411.63" y="447.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (8,701,043 samples, 0.03%)</title><rect x="176.4" y="309" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="179.39" y="319.5" ></text>
</g>
<g >
<title>do_tkill (3,630,079 samples, 0.01%)</title><rect x="12.3" y="437" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="15.26" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (493,565,519 samples, 1.72%)</title><rect x="626.0" y="469" width="20.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="629.02" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (6,824,876 samples, 0.02%)</title><rect x="14.6" y="613" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="17.62" y="623.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,105,633 samples, 0.01%)</title><rect x="592.0" y="293" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="595.04" y="303.5" ></text>
</g>
<g >
<title>reflect.Value.Field (31,632,484 samples, 0.11%)</title><rect x="512.5" y="485" width="1.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="515.46" y="495.5" ></text>
</g>
<g >
<title>clear_page_erms (8,510,125 samples, 0.03%)</title><rect x="579.2" y="117" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="582.23" y="127.5" ></text>
</g>
<g >
<title>exit_mm (78,302,385 samples, 0.27%)</title><rect x="37.9" y="485" width="3.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="40.93" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (74,321,162 samples, 0.26%)</title><rect x="627.5" y="405" width="3.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="630.48" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,851,074 samples, 0.01%)</title><rect x="588.8" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="591.85" y="159.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,940,191 samples, 0.01%)</title><rect x="905.0" y="293" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="908.04" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,873,907 samples, 0.01%)</title><rect x="194.3" y="357" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="197.25" y="367.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (8,388,098 samples, 0.03%)</title><rect x="70.3" y="309" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="73.32" y="319.5" ></text>
</g>
<g >
<title>dnotify_flush (3,142,359 samples, 0.01%)</title><rect x="23.1" y="453" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="26.05" y="463.5" ></text>
</g>
<g >
<title>runtime.mallocgc (244,648,962 samples, 0.85%)</title><rect x="480.0" y="469" width="10.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="483.05" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (116,478,012 samples, 0.41%)</title><rect x="788.0" y="117" width="4.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="790.99" y="127.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,225,460 samples, 0.02%)</title><rect x="69.4" y="309" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="72.39" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (52,519,690 samples, 0.18%)</title><rect x="16.1" y="501" width="2.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="19.09" y="511.5" ></text>
</g>
<g >
<title>wake_up_process (7,990,695 samples, 0.03%)</title><rect x="164.4" y="389" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="167.42" y="399.5" ></text>
</g>
<g >
<title>rcu_core_si (13,297,647 samples, 0.05%)</title><rect x="87.6" y="341" width="0.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="90.63" y="351.5" ></text>
</g>
<g >
<title>runtime.growslice (27,404,895 samples, 0.10%)</title><rect x="494.0" y="501" width="1.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="496.97" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (11,651,130 samples, 0.04%)</title><rect x="577.4" y="245" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="580.35" y="255.5" ></text>
</g>
<g >
<title>__slab_free (155,217,215 samples, 0.54%)</title><rect x="200.2" y="373" width="6.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="203.19" y="383.5" ></text>
</g>
<g >
<title>newidle_balance (2,592,271 samples, 0.01%)</title><rect x="17.6" y="389" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="20.59" y="399.5" ></text>
</g>
<g >
<title>idr_get_free (6,197,603 samples, 0.02%)</title><rect x="918.4" y="293" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="921.37" y="303.5" ></text>
</g>
<g >
<title>__check_object_size (5,448,338 samples, 0.02%)</title><rect x="699.1" y="341" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="702.07" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,487,216 samples, 0.01%)</title><rect x="216.7" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="219.67" y="383.5" ></text>
</g>
<g >
<title>sched_clock_cpu (9,347,376 samples, 0.03%)</title><rect x="190.3" y="373" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="193.31" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (776,560,157 samples, 2.71%)</title><rect x="520.0" y="389" width="32.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="522.99" y="399.5" >en..</text>
</g>
<g >
<title>hrtimer_start_range_ns (5,607,667 samples, 0.02%)</title><rect x="12.8" y="437" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="15.79" y="447.5" ></text>
</g>
<g >
<title>runtime.memmove (37,700,748 samples, 0.13%)</title><rect x="605.8" y="325" width="1.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="608.79" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,058,680 samples, 0.02%)</title><rect x="916.4" y="149" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="919.42" y="159.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (65,992,436 samples, 0.23%)</title><rect x="831.3" y="277" width="2.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="834.27" y="287.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,966,455 samples, 0.01%)</title><rect x="598.9" y="261" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="601.93" y="271.5" ></text>
</g>
<g >
<title>mmap_region (6,692,167 samples, 0.02%)</title><rect x="1002.0" y="149" width="0.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="1004.96" y="159.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (27,070,018 samples, 0.09%)</title><rect x="614.0" y="517" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="616.96" y="527.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4,298,751 samples, 0.02%)</title><rect x="663.6" y="341" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="666.62" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (8,581,147 samples, 0.03%)</title><rect x="1183.1" y="501" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1186.07" y="511.5" ></text>
</g>
<g >
<title>runtime.morestack.abi0 (4,018,353 samples, 0.01%)</title><rect x="1189.6" y="629" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1192.64" y="639.5" ></text>
</g>
<g >
<title>refill_obj_stock (6,082,666 samples, 0.02%)</title><rect x="212.7" y="373" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="215.71" y="383.5" ></text>
</g>
<g >
<title>testing.(*B).launch (3,102,703,472 samples, 10.84%)</title><rect x="375.4" y="597" width="127.9" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="378.37" y="607.5" >testing.(*B).lau..</text>
</g>
<g >
<title>do_user_addr_fault (78,201,242 samples, 0.27%)</title><rect x="627.5" y="421" width="3.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="630.45" y="431.5" ></text>
</g>
<g >
<title>clockevents_program_event (3,081,674 samples, 0.01%)</title><rect x="12.9" y="389" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="15.89" y="399.5" ></text>
</g>
<g >
<title>__cond_resched (3,868,631 samples, 0.01%)</title><rect x="842.0" y="245" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="845.02" y="255.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,696,111 samples, 0.01%)</title><rect x="608.4" y="261" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="611.41" y="271.5" ></text>
</g>
<g >
<title>alloc_fd (3,747,377 samples, 0.01%)</title><rect x="828.4" y="293" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="831.37" y="303.5" ></text>
</g>
<g >
<title>tick_program_event (3,086,734 samples, 0.01%)</title><rect x="16.6" y="421" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="19.55" y="431.5" ></text>
</g>
<g >
<title>page_remove_rmap (9,312,857 samples, 0.03%)</title><rect x="38.9" y="341" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="41.92" y="351.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (13,993,956,865 samples, 48.89%)</title><rect x="612.6" y="549" width="576.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="615.63" y="559.5" >sync.(*Once).doSlow</text>
</g>
<g >
<title>runtime.gcAssistAlloc (20,516,280 samples, 0.07%)</title><rect x="494.2" y="453" width="0.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="497.16" y="463.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (41,809,111 samples, 0.15%)</title><rect x="1169.3" y="309" width="1.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1172.27" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (137,237,258 samples, 0.48%)</title><rect x="787.7" y="149" width="5.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="790.67" y="159.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (5,805,445 samples, 0.02%)</title><rect x="91.9" y="405" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="94.92" y="415.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (18,593,466 samples, 0.06%)</title><rect x="260.5" y="549" width="0.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="263.52" y="559.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (88,420,561 samples, 0.31%)</title><rect x="997.5" y="357" width="3.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1000.53" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (291,128,317 samples, 1.02%)</title><rect x="846.8" y="165" width="12.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="849.80" y="175.5" ></text>
</g>
<g >
<title>runtime.findObject (3,018,682 samples, 0.01%)</title><rect x="1177.5" y="437" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1180.49" y="447.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (3,141,477 samples, 0.01%)</title><rect x="37.7" y="373" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="40.67" y="383.5" ></text>
</g>
<g >
<title>runtime.trygetfull (6,726,864 samples, 0.02%)</title><rect x="258.0" y="533" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="261.00" y="543.5" ></text>
</g>
<g >
<title>psi_flags_change (2,953,187 samples, 0.01%)</title><rect x="188.8" y="373" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="191.79" y="383.5" ></text>
</g>
<g >
<title>do_send_sig_info (3,851,972 samples, 0.01%)</title><rect x="15.6" y="421" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="18.63" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push (6,996,559 samples, 0.02%)</title><rect x="592.5" y="293" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="595.46" y="303.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps (13,993,956,865 samples, 48.89%)</title><rect x="612.6" y="565" width="576.9" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="615.63" y="575.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps</text>
</g>
<g >
<title>file_free_rcu (3,500,422 samples, 0.01%)</title><rect x="202.9" y="229" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="205.90" y="239.5" ></text>
</g>
<g >
<title>runtime.persistentalloc (14,046,918 samples, 0.05%)</title><rect x="1001.7" y="341" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1004.75" y="351.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (5,407,132 samples, 0.02%)</title><rect x="10.7" y="581" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.72" y="591.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (4,042,215 samples, 0.01%)</title><rect x="1156.9" y="293" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1159.91" y="303.5" ></text>
</g>
<g >
<title>runtime.memmove (3,019,250 samples, 0.01%)</title><rect x="1182.9" y="421" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1185.86" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (43,742,460 samples, 0.15%)</title><rect x="628.7" y="293" width="1.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="631.68" y="303.5" ></text>
</g>
<g >
<title>do_sched_yield (3,261,765 samples, 0.01%)</title><rect x="261.9" y="453" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="264.90" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (16,172,808 samples, 0.06%)</title><rect x="745.0" y="101" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="747.97" y="111.5" ></text>
</g>
<g >
<title>runtime.profilealloc (7,026,398 samples, 0.02%)</title><rect x="643.9" y="421" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="646.92" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,905,151 samples, 0.01%)</title><rect x="246.5" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="249.48" y="431.5" ></text>
</g>
<g >
<title>runtime.sysmon (88,570,097 samples, 0.31%)</title><rect x="15.0" y="565" width="3.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="18.03" y="575.5" ></text>
</g>
<g >
<title>vfs_read (1,573,484,591 samples, 5.50%)</title><rect x="412.6" y="309" width="64.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="415.63" y="319.5" >vfs_read</text>
</g>
<g >
<title>do_user_addr_fault (12,428,550 samples, 0.04%)</title><rect x="575.4" y="245" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="578.41" y="255.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (36,970,753 samples, 0.13%)</title><rect x="393.4" y="453" width="1.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="396.36" y="463.5" ></text>
</g>
<g >
<title>sched_clock (9,192,112 samples, 0.03%)</title><rect x="132.0" y="277" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="134.97" y="287.5" ></text>
</g>
<g >
<title>runtime.markrootBlock (4,082,839 samples, 0.01%)</title><rect x="265.5" y="533" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="268.54" y="543.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,946,827 samples, 0.02%)</title><rect x="355.6" y="517" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="358.62" y="527.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (43,585,942 samples, 0.15%)</title><rect x="175.6" y="373" width="1.8" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="178.58" y="383.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (8,878,465 samples, 0.03%)</title><rect x="132.0" y="245" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="134.98" y="255.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,368,610 samples, 0.02%)</title><rect x="1171.1" y="421" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1174.12" y="431.5" ></text>
</g>
<g >
<title>idr_get_next (87,905,447 samples, 0.31%)</title><rect x="539.4" y="261" width="3.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="542.35" y="271.5" ></text>
</g>
<g >
<title>runtime.main (8,654,382 samples, 0.03%)</title><rect x="375.0" y="613" width="0.4" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="378.01" y="623.5" ></text>
</g>
<g >
<title>rcu_core (27,016,740 samples, 0.09%)</title><rect x="177.9" y="277" width="1.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="180.89" y="287.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,677,390 samples, 0.02%)</title><rect x="552.8" y="309" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="555.76" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,750,705 samples, 0.03%)</title><rect x="663.8" y="389" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="666.83" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (13,626,700 samples, 0.05%)</title><rect x="192.9" y="405" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="195.90" y="415.5" ></text>
</g>
<g >
<title>ksys_read (1,575,049,834 samples, 5.50%)</title><rect x="412.6" y="325" width="64.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="415.57" y="335.5" >ksys_read</text>
</g>
<g >
<title>runtime.persistentalloc.func1 (14,046,918 samples, 0.05%)</title><rect x="1001.7" y="325" width="0.6" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1004.75" y="335.5" ></text>
</g>
<g >
<title>__sys_bpf (15,229,710 samples, 0.05%)</title><rect x="698.4" y="357" width="0.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="701.41" y="367.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (1,631,483,196 samples, 5.70%)</title><rect x="410.8" y="469" width="67.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="413.78" y="479.5" >bufio.(..</text>
</g>
<g >
<title>runtime.(*mcache).nextFree (27,028,267 samples, 0.09%)</title><rect x="1168.1" y="389" width="1.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1171.10" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (233,627,322 samples, 0.82%)</title><rect x="154.8" y="373" width="9.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="157.78" y="383.5" ></text>
</g>
<g >
<title>__folio_alloc (41,493,628 samples, 0.14%)</title><rect x="998.8" y="229" width="1.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1001.80" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (3,682,483 samples, 0.01%)</title><rect x="355.5" y="501" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="358.46" y="511.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (25,992,175 samples, 0.09%)</title><rect x="636.0" y="389" width="1.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="638.98" y="399.5" ></text>
</g>
<g >
<title>memset_orig (6,773,791 samples, 0.02%)</title><rect x="794.0" y="133" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="796.99" y="143.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,968,062 samples, 0.01%)</title><rect x="12.0" y="437" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.00" y="447.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (4,185,547,503 samples, 14.62%)</title><rect x="991.4" y="421" width="172.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="994.41" y="431.5" >runtime.SetFinalizer</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,841,740 samples, 0.01%)</title><rect x="230.0" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="232.97" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.ProgLoad (4,466,588 samples, 0.02%)</title><rect x="612.4" y="405" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="615.44" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (26,819,631 samples, 0.09%)</title><rect x="834.0" y="277" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="836.99" y="287.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (20,516,280 samples, 0.07%)</title><rect x="494.2" y="421" width="0.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="497.16" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (11,577,452 samples, 0.04%)</title><rect x="572.5" y="293" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="575.54" y="303.5" ></text>
</g>
<g >
<title>update_curr (3,580,724 samples, 0.01%)</title><rect x="129.7" y="277" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="132.68" y="287.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (15,063,171 samples, 0.05%)</title><rect x="160.9" y="229" width="0.6" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="163.87" y="239.5" ></text>
</g>
<g >
<title>update_process_times (3,744,871 samples, 0.01%)</title><rect x="663.6" y="277" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="666.64" y="287.5" ></text>
</g>
<g >
<title>__handle_mm_fault (69,195,850 samples, 0.24%)</title><rect x="997.8" y="293" width="2.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1000.79" y="303.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (9,002,326 samples, 0.03%)</title><rect x="1001.9" y="197" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1004.86" y="207.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (3,419,147 samples, 0.01%)</title><rect x="13.4" y="405" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="16.44" y="415.5" ></text>
</g>
<g >
<title>memset_orig (17,606,776 samples, 0.06%)</title><rect x="818.2" y="229" width="0.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="821.22" y="239.5" ></text>
</g>
<g >
<title>d_instantiate (3,883,396 samples, 0.01%)</title><rect x="826.4" y="277" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="829.37" y="287.5" ></text>
</g>
<g >
<title>cap_capable (6,246,104 samples, 0.02%)</title><rect x="889.9" y="261" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="892.88" y="271.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,854,224 samples, 0.01%)</title><rect x="230.2" y="437" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="233.21" y="447.5" ></text>
</g>
<g >
<title>fd_install (25,115,028 samples, 0.09%)</title><rect x="902.0" y="309" width="1.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="904.95" y="319.5" ></text>
</g>
<g >
<title>__sys_bpf (4,466,588 samples, 0.02%)</title><rect x="612.4" y="277" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="615.44" y="287.5" ></text>
</g>
<g >
<title>schedule (2,587,084 samples, 0.01%)</title><rect x="1157.0" y="245" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1159.97" y="255.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (126,195,073 samples, 0.44%)</title><rect x="403.6" y="453" width="5.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="406.58" y="463.5" ></text>
</g>
<g >
<title>do_madvise (4,602,144 samples, 0.02%)</title><rect x="636.7" y="197" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="639.67" y="207.5" ></text>
</g>
<g >
<title>__free_slab (22,844,765 samples, 0.08%)</title><rect x="203.5" y="293" width="0.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="206.50" y="303.5" ></text>
</g>
<g >
<title>folio_add_lru (6,063,666 samples, 0.02%)</title><rect x="998.3" y="229" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1001.33" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (13,977,588 samples, 0.05%)</title><rect x="577.4" y="277" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="580.35" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,197,644 samples, 0.02%)</title><rect x="574.9" y="293" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="577.90" y="303.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,067,496 samples, 0.01%)</title><rect x="588.1" y="261" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="591.08" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,466,588 samples, 0.02%)</title><rect x="612.4" y="309" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="615.44" y="319.5" ></text>
</g>
<g >
<title>runtime.mallocgc (9,295,869 samples, 0.03%)</title><rect x="589.7" y="293" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="592.68" y="303.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,093,747 samples, 0.01%)</title><rect x="817.8" y="197" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="820.77" y="207.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,867,438 samples, 0.01%)</title><rect x="248.2" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="251.20" y="399.5" ></text>
</g>
<g >
<title>rcu_core_si (2,880,135 samples, 0.01%)</title><rect x="210.3" y="277" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="213.29" y="287.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (3,086,734 samples, 0.01%)</title><rect x="16.6" y="437" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="19.55" y="447.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (3,054,203 samples, 0.01%)</title><rect x="614.7" y="325" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="617.66" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9,327,446 samples, 0.03%)</title><rect x="575.4" y="213" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="578.41" y="223.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,688,890 samples, 0.03%)</title><rect x="261.9" y="485" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="264.90" y="495.5" ></text>
</g>
<g >
<title>ihold (22,296,739 samples, 0.08%)</title><rect x="826.5" y="277" width="0.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="829.53" y="287.5" ></text>
</g>
<g >
<title>array_map_alloc_check (15,283,557 samples, 0.05%)</title><rect x="890.2" y="309" width="0.7" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="893.23" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (34,725,175 samples, 0.12%)</title><rect x="94.3" y="405" width="1.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="97.30" y="415.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6,186,134 samples, 0.02%)</title><rect x="809.9" y="181" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="812.94" y="191.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,204,427 samples, 0.02%)</title><rect x="598.8" y="325" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="601.84" y="335.5" ></text>
</g>
<g >
<title>__cond_resched (425,779,255 samples, 1.49%)</title><rect x="173.3" y="421" width="17.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="176.34" y="431.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (4,623,764 samples, 0.02%)</title><rect x="883.5" y="245" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="886.46" y="255.5" ></text>
</g>
<g >
<title>enqueue_task (99,215,465 samples, 0.35%)</title><rect x="128.3" y="325" width="4.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="131.34" y="335.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (5,281,181 samples, 0.02%)</title><rect x="1188.2" y="421" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1191.22" y="431.5" ></text>
</g>
<g >
<title>bpf_map_put (1,878,259,846 samples, 6.56%)</title><rect x="88.2" y="421" width="77.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="91.18" y="431.5" >bpf_map_..</text>
</g>
<g >
<title>bpf_iter_run_prog (2,971,780 samples, 0.01%)</title><rect x="416.8" y="277" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="419.80" y="287.5" ></text>
</g>
<g >
<title>idr_get_next_ul (3,000,402 samples, 0.01%)</title><rect x="477.2" y="229" width="0.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="480.18" y="239.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,766,083 samples, 0.02%)</title><rect x="206.4" y="309" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="209.36" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (171,884,020 samples, 0.60%)</title><rect x="753.9" y="149" width="7.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="756.85" y="159.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,880,135 samples, 0.01%)</title><rect x="210.3" y="309" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="213.29" y="319.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (11,466,601 samples, 0.04%)</title><rect x="703.9" y="309" width="0.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="706.92" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,879,250 samples, 0.01%)</title><rect x="590.7" y="229" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="593.67" y="239.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (4,067,191,078 samples, 14.21%)</title><rect x="996.2" y="389" width="167.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="999.20" y="399.5" >runtime.SetFinalizer...</text>
</g>
<g >
<title>do_anonymous_page (6,172,373 samples, 0.02%)</title><rect x="588.8" y="213" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="591.75" y="223.5" ></text>
</g>
<g >
<title>wp_page_copy (7,774,593 samples, 0.03%)</title><rect x="575.5" y="165" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="578.47" y="175.5" ></text>
</g>
<g >
<title>node_tag_clear (3,896,219 samples, 0.01%)</title><rect x="916.8" y="277" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="919.77" y="287.5" ></text>
</g>
<g >
<title>new_slab (6,190,892 samples, 0.02%)</title><rect x="793.7" y="101" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="796.67" y="111.5" ></text>
</g>
<g >
<title>runtime.unlock2 (25,390,942 samples, 0.09%)</title><rect x="1161.3" y="357" width="1.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1164.30" y="367.5" ></text>
</g>
<g >
<title>runtime.mallocgc (27,404,895 samples, 0.10%)</title><rect x="494.0" y="485" width="1.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="496.97" y="495.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (4,602,144 samples, 0.02%)</title><rect x="636.7" y="165" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="639.67" y="175.5" ></text>
</g>
<g >
<title>file_free_rcu (19,198,429 samples, 0.07%)</title><rect x="178.0" y="245" width="0.8" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="180.99" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign (1,013,407,623 samples, 3.54%)</title><rect x="570.8" y="485" width="41.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="573.85" y="495.5" >git..</text>
</g>
<g >
<title>__update_load_avg_cfs_rq (2,592,699 samples, 0.01%)</title><rect x="130.1" y="261" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="133.13" y="271.5" ></text>
</g>
<g >
<title>runtime.unlock2 (3,115,550 samples, 0.01%)</title><rect x="1163.7" y="373" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1166.74" y="383.5" ></text>
</g>
<g >
<title>consume_obj_stock (12,822,023 samples, 0.04%)</title><rect x="772.5" y="197" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="775.51" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,613,750,814 samples, 19.61%)</title><rect x="19.5" y="629" width="231.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="22.54" y="639.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>runtime.gopark (5,322,270 samples, 0.02%)</title><rect x="364.8" y="581" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="367.80" y="591.5" ></text>
</g>
<g >
<title>runtime.goexit.abi0 (22,765,693,848 samples, 79.53%)</title><rect x="251.1" y="629" width="938.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="254.08" y="639.5" >runtime.goexit.abi0</text>
</g>
<g >
<title>__cond_resched (3,811,362 samples, 0.01%)</title><rect x="739.5" y="181" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="742.52" y="191.5" ></text>
</g>
<g >
<title>runtime.profilealloc (3,879,795 samples, 0.01%)</title><rect x="490.0" y="453" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="492.97" y="463.5" ></text>
</g>
<g >
<title>native_write_msr (4,156,191 samples, 0.01%)</title><rect x="17.8" y="341" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="20.77" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_read (772,018,718 samples, 2.70%)</title><rect x="520.0" y="357" width="31.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="523.02" y="367.5" >__..</text>
</g>
<g >
<title>__rcu_read_lock (5,085,818 samples, 0.02%)</title><rect x="151.7" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="154.72" y="399.5" ></text>
</g>
<g >
<title>rcu_core (10,838,023 samples, 0.04%)</title><rect x="76.2" y="325" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="79.18" y="335.5" ></text>
</g>
<g >
<title>__folio_alloc (11,416,038 samples, 0.04%)</title><rect x="645.6" y="293" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="648.57" y="303.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,889,056 samples, 0.01%)</title><rect x="212.0" y="325" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="214.98" y="335.5" ></text>
</g>
<g >
<title>init_file (34,602,504 samples, 0.12%)</title><rect x="777.2" y="245" width="1.4" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="780.17" y="255.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (16,137,575 samples, 0.06%)</title><rect x="18.7" y="613" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="21.73" y="623.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,871,627 samples, 0.02%)</title><rect x="231.1" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="234.12" y="431.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (7,735,011 samples, 0.03%)</title><rect x="567.3" y="389" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="570.26" y="399.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (3,913,236 samples, 0.01%)</title><rect x="60.8" y="437" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="63.79" y="447.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (3,055,041,539 samples, 10.67%)</title><rect x="375.6" y="517" width="126.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="378.61" y="527.5" >github.com/EMni..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,834,271 samples, 0.01%)</title><rect x="583.4" y="165" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="586.44" y="175.5" ></text>
</g>
<g >
<title>free_unref_page_prepare (2,936,495 samples, 0.01%)</title><rect x="203.7" y="245" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="206.72" y="255.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (3,947,442 samples, 0.01%)</title><rect x="606.6" y="101" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="609.58" y="111.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (12,342,188 samples, 0.04%)</title><rect x="248.4" y="453" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="251.42" y="463.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (17,034,816 samples, 0.06%)</title><rect x="839.8" y="293" width="0.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="842.79" y="303.5" ></text>
</g>
<g >
<title>runtime.mallocgc (17,746,627 samples, 0.06%)</title><rect x="584.1" y="277" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="587.07" y="287.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (6,861,538 samples, 0.02%)</title><rect x="543.8" y="277" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="546.79" y="287.5" ></text>
</g>
<g >
<title>runtime.findObject (3,061,430 samples, 0.01%)</title><rect x="1169.9" y="261" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1172.93" y="271.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (8,770,301 samples, 0.03%)</title><rect x="132.0" y="229" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="134.98" y="239.5" ></text>
</g>
<g >
<title>do_wp_page (22,838,911 samples, 0.08%)</title><rect x="610.6" y="229" width="1.0" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="613.64" y="239.5" ></text>
</g>
<g >
<title>rep_movs_alternative (39,048,823 samples, 0.14%)</title><rect x="922.1" y="325" width="1.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="925.15" y="335.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (10,681,517 samples, 0.04%)</title><rect x="916.3" y="245" width="0.5" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="919.33" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (5,358,854 samples, 0.02%)</title><rect x="539.1" y="261" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="542.13" y="271.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,104,280 samples, 0.01%)</title><rect x="95.9" y="261" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="98.88" y="271.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (22,998,806 samples, 0.08%)</title><rect x="958.3" y="373" width="0.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="961.26" y="383.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (45,000,392 samples, 0.16%)</title><rect x="774.8" y="229" width="1.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="777.78" y="239.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (13,588,682,430 samples, 47.47%)</title><rect x="615.9" y="501" width="560.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="618.95" y="511.5" >github.com/cilium/ebpf.newMapWithOptions</text>
</g>
<g >
<title>do_user_addr_fault (11,651,130 samples, 0.04%)</title><rect x="577.4" y="261" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="580.35" y="271.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (8,660,822 samples, 0.03%)</title><rect x="1156.5" y="293" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1159.45" y="303.5" ></text>
</g>
<g >
<title>wp_page_copy (24,714,939 samples, 0.09%)</title><rect x="606.1" y="197" width="1.0" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="609.05" y="207.5" ></text>
</g>
<g >
<title>expand_files (23,925,571 samples, 0.08%)</title><rect x="837.4" y="261" width="1.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="840.37" y="271.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (26,547,875 samples, 0.09%)</title><rect x="237.3" y="421" width="1.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="240.28" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (32,296,035 samples, 0.11%)</title><rect x="610.4" y="325" width="1.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="613.45" y="335.5" ></text>
</g>
<g >
<title>__kmem_cache_free (4,108,037 samples, 0.01%)</title><rect x="159.5" y="117" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="162.54" y="127.5" ></text>
</g>
<g >
<title>runtime.greyobject (11,340,357 samples, 0.04%)</title><rect x="640.9" y="309" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="643.90" y="319.5" ></text>
</g>
<g >
<title>place_entity (4,184,250 samples, 0.01%)</title><rect x="129.5" y="277" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="132.51" y="287.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (3,119,673 samples, 0.01%)</title><rect x="569.8" y="453" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="572.76" y="463.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,095,796 samples, 0.01%)</title><rect x="644.2" y="421" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="647.21" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (41,809,111 samples, 0.15%)</title><rect x="1169.3" y="373" width="1.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1172.27" y="383.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (150,125,892 samples, 0.52%)</title><rect x="446.3" y="245" width="6.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="449.30" y="255.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (20,516,280 samples, 0.07%)</title><rect x="494.2" y="437" width="0.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="497.16" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newProgramWithOptions (1,013,407,623 samples, 3.54%)</title><rect x="570.8" y="421" width="41.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="573.85" y="431.5" >git..</text>
</g>
<g >
<title>bufio.(*Reader).Read (11,559,034 samples, 0.04%)</title><rect x="583.2" y="277" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="586.15" y="287.5" ></text>
</g>
<g >
<title>errors.Is (21,428,187 samples, 0.07%)</title><rect x="559.4" y="517" width="0.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="562.36" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,111,222 samples, 0.01%)</title><rect x="577.7" y="117" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="580.71" y="127.5" ></text>
</g>
<g >
<title>file_free_rcu (2,958,868 samples, 0.01%)</title><rect x="235.3" y="293" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="238.30" y="303.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,867,438 samples, 0.01%)</title><rect x="248.2" y="325" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="251.20" y="335.5" ></text>
</g>
<g >
<title>vma_alloc_folio (8,291,755 samples, 0.03%)</title><rect x="1167.7" y="277" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1170.66" y="287.5" ></text>
</g>
<g >
<title>inc_slabs_node (5,219,161 samples, 0.02%)</title><rect x="753.3" y="197" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="756.26" y="207.5" ></text>
</g>
<g >
<title>security_d_instantiate (2,993,853 samples, 0.01%)</title><rect x="826.2" y="261" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="829.21" y="271.5" ></text>
</g>
<g >
<title>__get_random_u32_below (4,647,558 samples, 0.02%)</title><rect x="861.7" y="165" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="864.69" y="175.5" ></text>
</g>
<g >
<title>native_write_msr (14,958,192 samples, 0.05%)</title><rect x="176.7" y="309" width="0.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="179.75" y="319.5" ></text>
</g>
<g >
<title>fd_install (45,270,973 samples, 0.16%)</title><rect x="828.6" y="293" width="1.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="831.58" y="303.5" ></text>
</g>
<g >
<title>rmqueue (9,809,360 samples, 0.03%)</title><rect x="1187.5" y="325" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1190.48" y="335.5" ></text>
</g>
<g >
<title>consume_obj_stock (7,664,556 samples, 0.03%)</title><rect x="807.8" y="197" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="810.77" y="207.5" ></text>
</g>
<g >
<title>clear_page_erms (6,056,579 samples, 0.02%)</title><rect x="1180.5" y="213" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1183.55" y="223.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (11,591,022 samples, 0.04%)</title><rect x="879.1" y="245" width="0.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="882.06" y="255.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (1,001,246,749 samples, 3.50%)</title><rect x="779.1" y="261" width="41.3" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="782.14" y="271.5" >d_a..</text>
</g>
<g >
<title>runtime.findObject (4,570,313 samples, 0.02%)</title><rect x="1170.2" y="245" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1173.25" y="255.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,654,642 samples, 0.02%)</title><rect x="21.2" y="421" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="24.24" y="431.5" ></text>
</g>
<g >
<title>idr_get_free (229,420,162 samples, 0.80%)</title><rect x="907.3" y="277" width="9.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="910.31" y="287.5" ></text>
</g>
<g >
<title>get_page_from_freelist (9,832,712 samples, 0.03%)</title><rect x="1180.5" y="229" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1183.52" y="239.5" ></text>
</g>
<g >
<title>__cond_resched (8,402,192 samples, 0.03%)</title><rect x="61.0" y="437" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="63.95" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,129,588 samples, 0.01%)</title><rect x="611.4" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="614.39" y="159.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,879,250 samples, 0.01%)</title><rect x="590.7" y="213" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="593.67" y="223.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (16,646,595,588 samples, 58.16%)</title><rect x="503.3" y="581" width="686.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="506.27" y="591.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries</text>
</g>
<g >
<title>entry_SYSCALL_64 (4,517,543 samples, 0.02%)</title><rect x="14.6" y="533" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="17.62" y="543.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (205,887,503 samples, 0.72%)</title><rect x="543.3" y="293" width="8.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="546.29" y="303.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (11,948,017 samples, 0.04%)</title><rect x="111.5" y="357" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="114.54" y="367.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (16,099,421 samples, 0.06%)</title><rect x="149.4" y="293" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="152.36" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock (28,246,572 samples, 0.10%)</title><rect x="725.1" y="261" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="728.12" y="271.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,473,393 samples, 0.01%)</title><rect x="257.7" y="533" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="260.68" y="543.5" ></text>
</g>
<g >
<title>do_syscall_64 (8,327,470 samples, 0.03%)</title><rect x="1188.4" y="485" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1191.44" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,349,343,247 samples, 22.18%)</title><rect x="696.3" y="373" width="261.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="699.29" y="383.5" >do_syscall_64</text>
</g>
<g >
<title>do_wp_page (2,859,891 samples, 0.01%)</title><rect x="600.6" y="245" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="603.61" y="255.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (3,018,800 samples, 0.01%)</title><rect x="1185.7" y="389" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1188.72" y="399.5" ></text>
</g>
<g >
<title>select_idle_sibling (9,759,848 samples, 0.03%)</title><rect x="126.6" y="325" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="129.61" y="335.5" ></text>
</g>
<g >
<title>d_set_d_op (23,174,638 samples, 0.08%)</title><rect x="781.5" y="229" width="0.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="784.48" y="239.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.LoadKernelSpec (629,474,359 samples, 2.20%)</title><rect x="586.4" y="389" width="26.0" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="589.43" y="399.5" >g..</text>
</g>
<g >
<title>__do_softirq (2,873,907 samples, 0.01%)</title><rect x="194.3" y="325" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="197.25" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (33,505,646 samples, 0.12%)</title><rect x="488.0" y="421" width="1.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="490.98" y="431.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (5,608,412,843 samples, 19.59%)</title><rect x="19.8" y="565" width="231.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="22.76" y="575.5" >exit_to_user_mode_loop</text>
</g>
<g >
<title>get_random_u32 (6,979,025 samples, 0.02%)</title><rect x="763.0" y="133" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="765.96" y="143.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (22,203,146 samples, 0.08%)</title><rect x="636.0" y="309" width="1.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="639.04" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,945,887 samples, 0.01%)</title><rect x="355.5" y="453" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="358.49" y="463.5" ></text>
</g>
<g >
<title>dequeue_task_fair (10,910,220 samples, 0.04%)</title><rect x="17.0" y="405" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="19.99" y="415.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (9,799,851 samples, 0.03%)</title><rect x="926.2" y="357" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="929.24" y="367.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (27,925,038 samples, 0.10%)</title><rect x="390.8" y="453" width="1.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="393.80" y="463.5" ></text>
</g>
<g >
<title>__radix_tree_replace (5,430,203 samples, 0.02%)</title><rect x="907.1" y="277" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="910.09" y="287.5" ></text>
</g>
<g >
<title>__d_instantiate (34,614,615 samples, 0.12%)</title><rect x="820.7" y="245" width="1.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="823.73" y="255.5" ></text>
</g>
<g >
<title>runtime.sysmon (63,795,606 samples, 0.22%)</title><rect x="11.7" y="549" width="2.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="14.72" y="559.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (15,695,650 samples, 0.05%)</title><rect x="149.4" y="277" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="152.37" y="287.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (7,459,766 samples, 0.03%)</title><rect x="1001.9" y="181" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1004.93" y="191.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (3,879,795 samples, 0.01%)</title><rect x="490.0" y="437" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="492.97" y="447.5" ></text>
</g>
<g >
<title>runtime.makeslice (10,070,762 samples, 0.04%)</title><rect x="589.7" y="309" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="592.68" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,026,163 samples, 0.01%)</title><rect x="1168.1" y="277" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1171.13" y="287.5" ></text>
</g>
<g >
<title>__radix_tree_preload (15,978,118 samples, 0.06%)</title><rect x="919.0" y="293" width="0.7" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="922.01" y="303.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (12,227,734 samples, 0.04%)</title><rect x="392.9" y="453" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="395.86" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (6,948,255 samples, 0.02%)</title><rect x="588.8" y="293" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="591.75" y="303.5" ></text>
</g>
<g >
<title>testing.(*B).runN (16,648,029,806 samples, 58.16%)</title><rect x="503.3" y="597" width="686.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="506.27" y="607.5" >testing.(*B).runN</text>
</g>
<g >
<title>_raw_spin_lock_bh (45,306,601 samples, 0.16%)</title><rect x="707.3" y="325" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="710.29" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (24,515,274 samples, 0.09%)</title><rect x="94.7" y="325" width="1.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="97.73" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,581,996,182 samples, 5.53%)</title><rect x="412.6" y="357" width="65.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="415.57" y="367.5" >do_sysc..</text>
</g>
<g >
<title>_raw_spin_lock (26,770,467 samples, 0.09%)</title><rect x="62.0" y="437" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="65.00" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (160,601,478 samples, 0.56%)</title><rect x="578.2" y="309" width="6.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="581.25" y="319.5" ></text>
</g>
<g >
<title>[unknown] (227,975,245 samples, 0.80%)</title><rect x="10.0" y="629" width="9.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="639.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (49,034,130 samples, 0.17%)</title><rect x="162.3" y="261" width="2.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="165.35" y="271.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (3,061,052,222 samples, 10.69%)</title><rect x="375.4" y="565" width="126.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="378.37" y="575.5" >github.com/EMni..</text>
</g>
<g >
<title>clear_page_erms (248,523,852 samples, 0.87%)</title><rect x="847.7" y="133" width="10.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="850.66" y="143.5" ></text>
</g>
<g >
<title>runtime.deferreturn (43,407,969 samples, 0.15%)</title><rect x="1174.2" y="485" width="1.8" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1177.16" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).TypeName (3,667,583 samples, 0.01%)</title><rect x="587.4" y="357" width="0.1" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="590.39" y="367.5" ></text>
</g>
<g >
<title>__schedule (2,996,584 samples, 0.01%)</title><rect x="364.9" y="341" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="367.85" y="351.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (6,153,931 samples, 0.02%)</title><rect x="572.7" y="277" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="575.73" y="287.5" ></text>
</g>
<g >
<title>syscall.read (1,594,302,291 samples, 5.57%)</title><rect x="412.3" y="421" width="65.7" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="415.28" y="431.5" >syscall..</text>
</g>
<g >
<title>select_task_rq_fair (10,090,191 samples, 0.04%)</title><rect x="113.3" y="357" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="116.32" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (2,959,376 samples, 0.01%)</title><rect x="835.1" y="277" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="838.09" y="287.5" ></text>
</g>
<g >
<title>runtime.findObject (6,031,554 samples, 0.02%)</title><rect x="600.9" y="261" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="603.94" y="271.5" ></text>
</g>
<g >
<title>runtime.freedefer (3,880,702 samples, 0.01%)</title><rect x="1175.8" y="469" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1178.79" y="479.5" ></text>
</g>
<g >
<title>rcu_core_si (2,905,151 samples, 0.01%)</title><rect x="246.5" y="357" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="249.48" y="367.5" ></text>
</g>
<g >
<title>runtime.typehash (3,099,917 samples, 0.01%)</title><rect x="408.5" y="421" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="411.50" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (20,197,725 samples, 0.07%)</title><rect x="561.8" y="437" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="564.77" y="447.5" ></text>
</g>
<g >
<title>btf_put (5,251,465 samples, 0.02%)</title><rect x="165.9" y="421" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="168.85" y="431.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (2,764,168 samples, 0.01%)</title><rect x="17.4" y="421" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="20.45" y="431.5" ></text>
</g>
<g >
<title>do_user_addr_fault (24,698,254 samples, 0.09%)</title><rect x="597.3" y="261" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="600.35" y="271.5" ></text>
</g>
<g >
<title>psi_group_change (12,704,441 samples, 0.04%)</title><rect x="131.3" y="293" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="134.32" y="303.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (5,390,316 samples, 0.02%)</title><rect x="918.8" y="293" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="921.75" y="303.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (4,678,760 samples, 0.02%)</title><rect x="730.4" y="229" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="733.39" y="239.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,090,071 samples, 0.01%)</title><rect x="265.3" y="453" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="268.25" y="463.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (40,374,780 samples, 0.14%)</title><rect x="561.2" y="517" width="1.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="564.23" y="527.5" ></text>
</g>
<g >
<title>__alloc_pages (3,886,284 samples, 0.01%)</title><rect x="846.5" y="181" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="849.45" y="191.5" ></text>
</g>
<g >
<title>rcu_core (5,766,083 samples, 0.02%)</title><rect x="206.4" y="245" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="209.36" y="255.5" ></text>
</g>
<g >
<title>handle_mm_fault (67,578,181 samples, 0.24%)</title><rect x="567.0" y="453" width="2.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="569.97" y="463.5" ></text>
</g>
<g >
<title>clear_page_erms (150,682,258 samples, 0.53%)</title><rect x="754.3" y="117" width="6.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="757.32" y="127.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (67,115,575 samples, 0.23%)</title><rect x="540.0" y="229" width="2.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="543.02" y="239.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,389,059 samples, 0.02%)</title><rect x="614.2" y="357" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="617.15" y="367.5" ></text>
</g>
<g >
<title>rcu_do_batch (8,224,750 samples, 0.03%)</title><rect x="235.3" y="309" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="238.27" y="319.5" ></text>
</g>
<g >
<title>dput (1,425,072,308 samples, 4.98%)</title><rect x="171.3" y="437" width="58.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="174.34" y="447.5" >dput</text>
</g>
<g >
<title>__handle_mm_fault (15,452,377 samples, 0.05%)</title><rect x="645.5" y="357" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="648.47" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,656,908 samples, 0.02%)</title><rect x="643.9" y="373" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="646.95" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,798,370 samples, 0.03%)</title><rect x="235.2" y="421" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="238.25" y="431.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,812,074 samples, 0.01%)</title><rect x="316.8" y="453" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="319.83" y="463.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (96,980,163 samples, 0.34%)</title><rect x="592.8" y="325" width="4.0" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="595.84" y="335.5" ></text>
</g>
<g >
<title>runtime.mstart0 (64,365,424 samples, 0.22%)</title><rect x="11.7" y="581" width="2.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="14.70" y="591.5" ></text>
</g>
<g >
<title>cache_from_obj (18,652,782 samples, 0.07%)</title><rect x="244.9" y="405" width="0.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="247.94" y="415.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (11,380,772 samples, 0.04%)</title><rect x="159.7" y="213" width="0.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="162.74" y="223.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (3,749,473 samples, 0.01%)</title><rect x="395.5" y="469" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="398.54" y="479.5" ></text>
</g>
<g >
<title>vma_alloc_folio (14,011,069 samples, 0.05%)</title><rect x="562.0" y="389" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="565.00" y="399.5" ></text>
</g>
<g >
<title>sched_clock_cpu (12,026,062 samples, 0.04%)</title><rect x="131.9" y="293" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="134.87" y="303.5" ></text>
</g>
<g >
<title>rcu_do_batch (17,387,658 samples, 0.06%)</title><rect x="223.8" y="245" width="0.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="226.81" y="255.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (10,916,298 samples, 0.04%)</title><rect x="569.9" y="453" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="572.92" y="463.5" ></text>
</g>
<g >
<title>do_futex (3,056,897 samples, 0.01%)</title><rect x="364.9" y="405" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="367.85" y="415.5" ></text>
</g>
<g >
<title>rb_erase (3,188,537 samples, 0.01%)</title><rect x="183.7" y="357" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="186.70" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (9,269,086 samples, 0.03%)</title><rect x="597.9" y="117" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="600.92" y="127.5" ></text>
</g>
<g >
<title>kmalloc_slab (19,847,511 samples, 0.07%)</title><rect x="879.5" y="245" width="0.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="882.54" y="255.5" ></text>
</g>
<g >
<title>cap_capable (36,515,946 samples, 0.13%)</title><rect x="894.1" y="293" width="1.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="897.08" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,426,098 samples, 0.02%)</title><rect x="770.0" y="197" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="773.03" y="207.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (1,594,302,291 samples, 5.57%)</title><rect x="412.3" y="437" width="65.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="415.28" y="447.5" >interna..</text>
</g>
<g >
<title>runtime.(*mspan).init (4,514,194 samples, 0.02%)</title><rect x="636.4" y="293" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="639.42" y="303.5" ></text>
</g>
<g >
<title>schedule (3,554,617 samples, 0.01%)</title><rect x="19.6" y="549" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="22.62" y="559.5" ></text>
</g>
<g >
<title>allocate_slab (6,190,892 samples, 0.02%)</title><rect x="793.7" y="85" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="796.67" y="95.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (7,969,563,430 samples, 27.84%)</title><rect x="661.6" y="405" width="328.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="664.58" y="415.5" >runtime/internal/syscall.Syscall6</text>
</g>
<g >
<title>exit_to_user_mode_prepare (5,281,181 samples, 0.02%)</title><rect x="1188.2" y="437" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1191.22" y="447.5" ></text>
</g>
<g >
<title>free_unref_page_list (20,951,340 samples, 0.07%)</title><rect x="39.8" y="277" width="0.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="42.78" y="287.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (3,058,337 samples, 0.01%)</title><rect x="265.0" y="325" width="0.1" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="267.97" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,704,166 samples, 0.02%)</title><rect x="926.4" y="325" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="929.37" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,945,887 samples, 0.01%)</title><rect x="355.5" y="437" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="358.49" y="447.5" ></text>
</g>
<g >
<title>rcu_core (3,487,216 samples, 0.01%)</title><rect x="216.7" y="293" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="219.67" y="303.5" ></text>
</g>
<g >
<title>lockref_mark_dead (3,577,785 samples, 0.01%)</title><rect x="227.3" y="421" width="0.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="230.32" y="431.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (5,364,194 samples, 0.02%)</title><rect x="1185.9" y="357" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1188.90" y="367.5" ></text>
</g>
<g >
<title>runtime.doInit1 (3,110,926 samples, 0.01%)</title><rect x="375.1" y="597" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="378.14" y="607.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (99,195,111 samples, 0.35%)</title><rect x="637.4" y="341" width="4.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="640.44" y="351.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (41,641,118 samples, 0.15%)</title><rect x="859.0" y="181" width="1.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="862.03" y="191.5" ></text>
</g>
<g >
<title>rcu_core_si (2,867,438 samples, 0.01%)</title><rect x="248.2" y="357" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="251.20" y="367.5" ></text>
</g>
<g >
<title>runtime.makeslice (3,768,776 samples, 0.01%)</title><rect x="495.1" y="501" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="498.10" y="511.5" ></text>
</g>
<g >
<title>get_timespec64 (2,689,465 samples, 0.01%)</title><rect x="16.1" y="485" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="19.15" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (8,380,868 samples, 0.03%)</title><rect x="452.6" y="245" width="0.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="455.62" y="255.5" ></text>
</g>
<g >
<title>memset_orig (16,852,443 samples, 0.06%)</title><rect x="773.8" y="229" width="0.7" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="776.77" y="239.5" ></text>
</g>
<g >
<title>__check_object_size (17,612,872 samples, 0.06%)</title><rect x="703.9" y="325" width="0.7" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="706.92" y="335.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,863,879 samples, 0.01%)</title><rect x="998.6" y="245" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1001.58" y="255.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,889,056 samples, 0.01%)</title><rect x="212.0" y="341" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="214.98" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (321,639,928 samples, 1.12%)</title><rect x="599.1" y="357" width="13.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="602.09" y="367.5" ></text>
</g>
<g >
<title>send_signal_locked (9,408,266 samples, 0.03%)</title><rect x="264.8" y="389" width="0.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="267.84" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,342,788 samples, 0.02%)</title><rect x="263.3" y="485" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="266.28" y="495.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (32,258,761 samples, 0.11%)</title><rect x="407.3" y="437" width="1.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="410.30" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (6,162,534 samples, 0.02%)</title><rect x="598.0" y="101" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="600.95" y="111.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,682,749 samples, 0.01%)</title><rect x="12.3" y="469" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.26" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,178,867 samples, 0.02%)</title><rect x="355.6" y="501" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="358.65" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (66,808,080 samples, 0.23%)</title><rect x="646.7" y="453" width="2.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="649.74" y="463.5" ></text>
</g>
<g >
<title>runtime.mallocgc (5,429,228 samples, 0.02%)</title><rect x="583.8" y="277" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="586.76" y="287.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,322,564 samples, 0.01%)</title><rect x="224.8" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="227.84" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (3,851,233 samples, 0.01%)</title><rect x="584.9" y="277" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="587.93" y="287.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,654,642 samples, 0.02%)</title><rect x="21.2" y="469" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="24.24" y="479.5" ></text>
</g>
<g >
<title>put_files_struct (382,829,963 samples, 1.34%)</title><rect x="22.1" y="469" width="15.8" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="25.15" y="479.5" ></text>
</g>
<g >
<title>kfree (4,108,037 samples, 0.01%)</title><rect x="159.5" y="133" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="162.54" y="143.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Enum).copy (4,669,206 samples, 0.02%)</title><rect x="588.2" y="325" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="591.24" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,105,576 samples, 0.01%)</title><rect x="558.4" y="421" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="561.44" y="431.5" ></text>
</g>
<g >
<title>runtime.memmove (191,388,057 samples, 0.67%)</title><rect x="562.9" y="517" width="7.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="565.90" y="527.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,905,627 samples, 0.02%)</title><rect x="169.3" y="293" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="172.33" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (84,740,859 samples, 0.30%)</title><rect x="566.9" y="485" width="3.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="569.88" y="495.5" ></text>
</g>
<g >
<title>__unfreeze_partials (30,288,515 samples, 0.11%)</title><rect x="203.2" y="341" width="1.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="206.22" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (4,685,737 samples, 0.02%)</title><rect x="560.8" y="485" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="563.81" y="495.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (3,083,079 samples, 0.01%)</title><rect x="598.6" y="341" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="601.62" y="351.5" ></text>
</g>
<g >
<title>delete_node (6,966,449 samples, 0.02%)</title><rect x="917.3" y="245" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="920.27" y="255.5" ></text>
</g>
<g >
<title>__alloc_pages (44,244,247 samples, 0.15%)</title><rect x="567.8" y="357" width="1.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="570.77" y="367.5" ></text>
</g>
<g >
<title>array_map_free_timers (5,146,394 samples, 0.02%)</title><rect x="87.4" y="421" width="0.2" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="90.39" y="431.5" ></text>
</g>
<g >
<title>update_load_avg (6,122,894 samples, 0.02%)</title><rect x="184.4" y="341" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="187.38" y="351.5" ></text>
</g>
<g >
<title>error_entry (3,096,722 samples, 0.01%)</title><rect x="10.8" y="565" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.82" y="575.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (124,720,690 samples, 0.44%)</title><rect x="863.6" y="229" width="5.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="866.63" y="239.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (8,660,822 samples, 0.03%)</title><rect x="1156.5" y="309" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1159.45" y="319.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (165,558,728 samples, 0.58%)</title><rect x="868.9" y="229" width="6.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="871.89" y="239.5" ></text>
</g>
<g >
<title>complete_signal (5,069,662 samples, 0.02%)</title><rect x="264.9" y="357" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="267.94" y="367.5" ></text>
</g>
<g >
<title>error_entry (6,202,210 samples, 0.02%)</title><rect x="570.4" y="501" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="573.37" y="511.5" ></text>
</g>
<g >
<title>rmqueue (9,788,534 samples, 0.03%)</title><rect x="1000.1" y="181" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1003.08" y="191.5" ></text>
</g>
<g >
<title>handle_mm_fault (26,687,574 samples, 0.09%)</title><rect x="606.0" y="261" width="1.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="609.00" y="271.5" ></text>
</g>
<g >
<title>update_min_vruntime (2,547,639 samples, 0.01%)</title><rect x="183.6" y="341" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="186.59" y="351.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (8,329,196 samples, 0.03%)</title><rect x="558.3" y="485" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="561.29" y="495.5" ></text>
</g>
<g >
<title>runtime.sysAllocOS (11,264,180 samples, 0.04%)</title><rect x="1001.9" y="277" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1004.86" y="287.5" ></text>
</g>
<g >
<title>security_capable (78,651,355 samples, 0.27%)</title><rect x="886.9" y="277" width="3.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="889.89" y="287.5" ></text>
</g>
<g >
<title>__rcu_read_lock (7,949,773 samples, 0.03%)</title><rect x="193.8" y="389" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="196.81" y="399.5" ></text>
</g>
<g >
<title>runtime.netpoll (3,295,990 samples, 0.01%)</title><rect x="15.3" y="549" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="18.27" y="559.5" ></text>
</g>
<g >
<title>refill_stock (2,502,603 samples, 0.01%)</title><rect x="212.5" y="325" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="215.51" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (11,319,309 samples, 0.04%)</title><rect x="1167.5" y="309" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1170.53" y="319.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (202,114,657 samples, 0.71%)</title><rect x="506.1" y="501" width="8.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="509.10" y="511.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,747,340 samples, 0.03%)</title><rect x="244.3" y="357" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="247.33" y="367.5" ></text>
</g>
<g >
<title>__cond_resched (11,689,900 samples, 0.04%)</title><rect x="21.4" y="485" width="0.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="24.43" y="495.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (4,466,588 samples, 0.02%)</title><rect x="612.4" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="615.44" y="383.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5,608,412,843 samples, 19.59%)</title><rect x="19.8" y="597" width="231.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="22.76" y="607.5" >syscall_exit_to_user_mode</text>
</g>
<g >
<title>runtime.goschedIfBusy (5,181,969 samples, 0.02%)</title><rect x="365.0" y="581" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="368.02" y="591.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (13,580,235 samples, 0.05%)</title><rect x="149.5" y="261" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="152.45" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,172,373 samples, 0.02%)</title><rect x="588.8" y="261" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="591.75" y="271.5" ></text>
</g>
<g >
<title>rcu_core (2,841,740 samples, 0.01%)</title><rect x="230.0" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="232.97" y="319.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (3,879,795 samples, 0.01%)</title><rect x="490.0" y="389" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="492.97" y="399.5" ></text>
</g>
<g >
<title>__d_alloc (963,887,385 samples, 3.37%)</title><rect x="779.3" y="245" width="39.7" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="782.27" y="255.5" >__d..</text>
</g>
<g >
<title>runtime.lock2 (37,209,752 samples, 0.13%)</title><rect x="1159.4" y="357" width="1.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1162.39" y="367.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (8,539,070 samples, 0.03%)</title><rect x="884.7" y="293" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="887.65" y="303.5" ></text>
</g>
<g >
<title>bpf_seq_read (750,584,788 samples, 2.62%)</title><rect x="520.8" y="309" width="31.0" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="523.84" y="319.5" >bp..</text>
</g>
<g >
<title>_raw_spin_unlock (3,528,565 samples, 0.01%)</title><rect x="177.6" y="373" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="180.56" y="383.5" ></text>
</g>
<g >
<title>__alloc_pages (40,712,197 samples, 0.14%)</title><rect x="998.8" y="213" width="1.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1001.80" y="223.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (4,466,588 samples, 0.02%)</title><rect x="612.4" y="293" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="615.44" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (10,838,023 samples, 0.04%)</title><rect x="76.2" y="357" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="79.18" y="367.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (25,637,172 samples, 0.09%)</title><rect x="1001.3" y="357" width="1.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1004.27" y="367.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (57,506,750 samples, 0.20%)</title><rect x="185.8" y="357" width="2.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="188.81" y="367.5" ></text>
</g>
<g >
<title>fput (19,628,231 samples, 0.07%)</title><rect x="33.0" y="437" width="0.9" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="36.05" y="447.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (3,364,296 samples, 0.01%)</title><rect x="1156.9" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1159.93" y="287.5" ></text>
</g>
<g >
<title>prepare_task_switch (2,981,116 samples, 0.01%)</title><rect x="19.6" y="517" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="22.62" y="527.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,889,056 samples, 0.01%)</title><rect x="212.0" y="229" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="214.98" y="239.5" ></text>
</g>
<g >
<title>alloc_pages (7,586,120 samples, 0.03%)</title><rect x="916.4" y="181" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="919.39" y="191.5" ></text>
</g>
<g >
<title>alloc_empty_file (1,195,377,844 samples, 4.18%)</title><rect x="727.9" y="245" width="49.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="730.89" y="255.5" >allo..</text>
</g>
<g >
<title>get_page_from_freelist (168,863,633 samples, 0.59%)</title><rect x="754.0" y="133" width="6.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="756.98" y="143.5" ></text>
</g>
<g >
<title>filp_close (332,635,241 samples, 1.16%)</title><rect x="23.2" y="453" width="13.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="26.18" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mheap).nextSpanForSweep (9,030,923 samples, 0.03%)</title><rect x="365.7" y="565" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="368.65" y="575.5" ></text>
</g>
<g >
<title>free_unref_page (9,450,002 samples, 0.03%)</title><rect x="161.9" y="117" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="164.93" y="127.5" ></text>
</g>
<g >
<title>allocate_slab (9,132,116 samples, 0.03%)</title><rect x="916.4" y="197" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="919.39" y="207.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*FuncProto).copy (41,011,699 samples, 0.14%)</title><rect x="589.4" y="325" width="1.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="592.42" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*collectionLoader).loadProgram (1,013,407,623 samples, 3.54%)</title><rect x="570.8" y="437" width="41.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="573.85" y="447.5" >git..</text>
</g>
<g >
<title>runtime.assertI2I2 (8,380,682 samples, 0.03%)</title><rect x="493.0" y="485" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="495.96" y="495.5" ></text>
</g>
<g >
<title>get_any_partial (10,058,564 samples, 0.04%)</title><rect x="752.8" y="197" width="0.5" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="755.84" y="207.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (4,497,932 samples, 0.02%)</title><rect x="847.5" y="133" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="850.47" y="143.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (84,373,730 samples, 0.29%)</title><rect x="627.5" y="453" width="3.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="630.45" y="463.5" ></text>
</g>
<g >
<title>__folio_alloc (3,888,061 samples, 0.01%)</title><rect x="577.7" y="149" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="580.67" y="159.5" ></text>
</g>
<g >
<title>runtime.newobject (164,891,373 samples, 0.58%)</title><rect x="1164.3" y="421" width="6.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1167.33" y="431.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (7,500,085 samples, 0.03%)</title><rect x="510.9" y="469" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="513.87" y="479.5" ></text>
</g>
<g >
<title>psi_flags_change (3,508,969 samples, 0.01%)</title><rect x="130.6" y="309" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="133.62" y="319.5" ></text>
</g>
<g >
<title>memset_orig (8,370,205 samples, 0.03%)</title><rect x="919.7" y="309" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="922.66" y="319.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (1,671,410,850 samples, 5.84%)</title><rect x="409.4" y="485" width="69.0" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="412.45" y="495.5" >io.Read..</text>
</g>
<g >
<title>irq_exit_rcu (2,880,135 samples, 0.01%)</title><rect x="210.3" y="325" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="213.29" y="335.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (10,578,563 samples, 0.04%)</title><rect x="493.3" y="501" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="496.31" y="511.5" ></text>
</g>
<g >
<title>do_check (4,466,588 samples, 0.02%)</title><rect x="612.4" y="213" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="615.44" y="223.5" ></text>
</g>
<g >
<title>__slab_free (3,564,283 samples, 0.01%)</title><rect x="87.7" y="261" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="90.70" y="271.5" ></text>
</g>
<g >
<title>runtime.memhash64 (3,109,792 samples, 0.01%)</title><rect x="596.4" y="293" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="599.42" y="303.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,873,907 samples, 0.01%)</title><rect x="194.3" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="197.25" y="383.5" ></text>
</g>
<g >
<title>free_unref_page_commit (18,621,722 samples, 0.07%)</title><rect x="39.8" y="261" width="0.8" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="42.85" y="271.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (6,008,065 samples, 0.02%)</title><rect x="169.3" y="357" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="172.33" y="367.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,766,083 samples, 0.02%)</title><rect x="206.4" y="229" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="209.36" y="239.5" ></text>
</g>
<g >
<title>check_ptr_to_btf_access (4,466,588 samples, 0.02%)</title><rect x="612.4" y="181" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="615.44" y="191.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3,664,239 samples, 0.01%)</title><rect x="355.6" y="469" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="358.65" y="479.5" ></text>
</g>
<g >
<title>__do_softirq (8,224,750 samples, 0.03%)</title><rect x="235.3" y="357" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="238.27" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,834,284 samples, 0.03%)</title><rect x="95.7" y="389" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="98.74" y="399.5" ></text>
</g>
<g >
<title>__folio_alloc (6,170,846 samples, 0.02%)</title><rect x="614.1" y="389" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="617.12" y="399.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (9,779,368 samples, 0.03%)</title><rect x="611.0" y="149" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="613.98" y="159.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (5,174,026 samples, 0.02%)</title><rect x="263.5" y="485" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="266.54" y="495.5" ></text>
</g>
<g >
<title>handle_pte_fault (56,356,519 samples, 0.20%)</title><rect x="1185.7" y="421" width="2.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1188.65" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (7,777,696 samples, 0.03%)</title><rect x="592.5" y="309" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="595.46" y="319.5" ></text>
</g>
<g >
<title>clear_page_erms (3,853,024 samples, 0.01%)</title><rect x="614.2" y="341" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="617.18" y="351.5" ></text>
</g>
<g >
<title>_copy_from_user (49,433,781 samples, 0.17%)</title><rect x="705.2" y="325" width="2.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="708.25" y="335.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4,703,078 samples, 0.02%)</title><rect x="18.5" y="533" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="21.49" y="543.5" ></text>
</g>
<g >
<title>security_file_alloc (6,133,675 samples, 0.02%)</title><rect x="776.6" y="229" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="779.63" y="239.5" ></text>
</g>
<g >
<title>rcu_core (4,654,642 samples, 0.02%)</title><rect x="21.2" y="373" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="24.24" y="383.5" ></text>
</g>
<g >
<title>syscall.Syscall (6,193,181 samples, 0.02%)</title><rect x="14.4" y="597" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="17.35" y="607.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,113,914 samples, 0.01%)</title><rect x="224.7" y="405" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="227.67" y="415.5" ></text>
</g>
<g >
<title>put_prev_entity (90,755,303 samples, 0.32%)</title><rect x="180.0" y="357" width="3.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="182.96" y="367.5" ></text>
</g>
<g >
<title>testing.(*B).run1.func1 (16,648,029,806 samples, 58.16%)</title><rect x="503.3" y="613" width="686.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="506.27" y="623.5" >testing.(*B).run1.func1</text>
</g>
<g >
<title>__schedule (2,510,078 samples, 0.01%)</title><rect x="261.9" y="421" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="264.90" y="431.5" ></text>
</g>
<g >
<title>__irqentry_text_end (6,904,536 samples, 0.02%)</title><rect x="645.2" y="421" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="648.16" y="431.5" ></text>
</g>
<g >
<title>runtime.memhash64 (6,121,137 samples, 0.02%)</title><rect x="517.9" y="437" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="520.90" y="447.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,487,216 samples, 0.01%)</title><rect x="216.7" y="357" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="219.67" y="367.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (90,246,067 samples, 0.32%)</title><rect x="514.7" y="485" width="3.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="517.75" y="495.5" ></text>
</g>
<g >
<title>runtime.mallocgc (156,399,459 samples, 0.55%)</title><rect x="1164.7" y="405" width="6.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1167.68" y="415.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (2,485,629,387 samples, 8.68%)</title><rect x="723.9" y="277" width="102.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="726.86" y="287.5" >alloc_file_p..</text>
</g>
<g >
<title>alloc_pages (178,774,715 samples, 0.62%)</title><rect x="753.7" y="165" width="7.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="756.70" y="175.5" ></text>
</g>
<g >
<title>vma_alloc_folio (41,090,424 samples, 0.14%)</title><rect x="1186.2" y="389" width="1.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1189.22" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,745,190 samples, 0.02%)</title><rect x="250.7" y="453" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="253.70" y="463.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (6,690,311 samples, 0.02%)</title><rect x="476.1" y="261" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="479.08" y="271.5" ></text>
</g>
<g >
<title>folio_add_lru (6,669,568 samples, 0.02%)</title><rect x="628.2" y="325" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="631.21" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,417,716 samples, 0.02%)</title><rect x="14.4" y="565" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="17.35" y="575.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (5,405,493 samples, 0.02%)</title><rect x="797.2" y="213" width="0.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="800.23" y="223.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,684,092 samples, 0.01%)</title><rect x="605.4" y="325" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="608.42" y="335.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (11,969,199 samples, 0.04%)</title><rect x="391.9" y="453" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="394.95" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (15,495,796 samples, 0.05%)</title><rect x="579.0" y="293" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="582.04" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,264,586 samples, 0.01%)</title><rect x="122.9" y="341" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="125.87" y="351.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (5,435,629 samples, 0.02%)</title><rect x="560.2" y="517" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="563.24" y="527.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (2,732,628 samples, 0.01%)</title><rect x="1156.5" y="261" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1159.48" y="271.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,008,065 samples, 0.02%)</title><rect x="169.3" y="373" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="172.33" y="383.5" ></text>
</g>
<g >
<title>sync_regs (4,476,538 samples, 0.02%)</title><rect x="1162.4" y="357" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1165.35" y="367.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,218,730 samples, 0.02%)</title><rect x="643.3" y="325" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="646.26" y="335.5" ></text>
</g>
<g >
<title>do_anonymous_page (16,661,887 samples, 0.06%)</title><rect x="1180.2" y="293" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1183.24" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,981,063 samples, 0.02%)</title><rect x="202.9" y="357" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="205.88" y="367.5" ></text>
</g>
<g >
<title>try_to_wake_up (880,456,222 samples, 3.08%)</title><rect x="113.7" y="357" width="36.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="116.74" y="367.5" >try..</text>
</g>
<g >
<title>ttwu_queue_wakelist (4,462,114 samples, 0.02%)</title><rect x="150.1" y="357" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="153.06" y="367.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,644,076 samples, 0.02%)</title><rect x="250.7" y="357" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="253.70" y="367.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (88,127,172 samples, 0.31%)</title><rect x="508.7" y="485" width="3.6" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="511.66" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,966,455 samples, 0.01%)</title><rect x="598.9" y="277" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="601.93" y="287.5" ></text>
</g>
<g >
<title>try_to_wake_up (2,732,628 samples, 0.01%)</title><rect x="1156.5" y="229" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1159.48" y="239.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (3,690,460 samples, 0.01%)</title><rect x="501.6" y="517" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="504.62" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (14,739,654 samples, 0.05%)</title><rect x="575.4" y="261" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="578.41" y="271.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (129,722,642 samples, 0.45%)</title><rect x="64.3" y="437" width="5.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="67.26" y="447.5" ></text>
</g>
<g >
<title>alloc_pages (298,875,299 samples, 1.04%)</title><rect x="846.7" y="181" width="12.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="849.71" y="191.5" ></text>
</g>
<g >
<title>radix_tree_node_alloc.constprop.0 (10,681,517 samples, 0.04%)</title><rect x="916.3" y="261" width="0.5" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="919.33" y="271.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (6,897,426 samples, 0.02%)</title><rect x="957.8" y="341" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="960.76" y="351.5" ></text>
</g>
<g >
<title>rmqueue_bulk (7,507,275 samples, 0.03%)</title><rect x="1187.6" y="293" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1190.57" y="303.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,704,343 samples, 0.01%)</title><rect x="76.5" y="293" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="79.48" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (3,101,295 samples, 0.01%)</title><rect x="590.7" y="149" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="593.70" y="159.5" ></text>
</g>
<g >
<title>rmqueue (2,922,852 samples, 0.01%)</title><rect x="645.9" y="245" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="648.92" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (9,267,010 samples, 0.03%)</title><rect x="588.7" y="309" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="591.66" y="319.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (784,243,067 samples, 2.74%)</title><rect x="519.9" y="405" width="32.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="522.86" y="415.5" >ru..</text>
</g>
<g >
<title>__rcu_read_unlock (5,360,575 samples, 0.02%)</title><rect x="231.3" y="421" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="234.32" y="431.5" ></text>
</g>
<g >
<title>pick_next_task (4,059,576 samples, 0.01%)</title><rect x="17.6" y="421" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="20.56" y="431.5" ></text>
</g>
<g >
<title>locks_remove_posix (52,534,082 samples, 0.18%)</title><rect x="33.9" y="437" width="2.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="36.86" y="447.5" ></text>
</g>
<g >
<title>runtime.gopark (3,724,251 samples, 0.01%)</title><rect x="251.3" y="597" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="254.34" y="607.5" ></text>
</g>
<g >
<title>runtime.lock2 (29,099,879 samples, 0.10%)</title><rect x="1162.5" y="373" width="1.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1165.54" y="383.5" ></text>
</g>
<g >
<title>file_free_rcu (4,185,929 samples, 0.01%)</title><rect x="244.7" y="277" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="247.69" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,602,144 samples, 0.02%)</title><rect x="636.7" y="245" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="639.67" y="255.5" ></text>
</g>
<g >
<title>runtime.findObject (37,097,689 samples, 0.13%)</title><rect x="1181.3" y="421" width="1.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1184.33" y="431.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (14,497,771 samples, 0.05%)</title><rect x="807.2" y="197" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="810.17" y="207.5" ></text>
</g>
<g >
<title>__update_load_avg_se (8,524,010 samples, 0.03%)</title><rect x="183.2" y="325" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="186.24" y="335.5" ></text>
</g>
<g >
<title>pick_next_task_fair (4,242,867 samples, 0.01%)</title><rect x="13.6" y="389" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="16.59" y="399.5" ></text>
</g>
<g >
<title>__folio_alloc (10,815,015 samples, 0.04%)</title><rect x="597.9" y="149" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="600.92" y="159.5" ></text>
</g>
<g >
<title>__folio_alloc (46,049,183 samples, 0.16%)</title><rect x="628.6" y="325" width="1.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="631.62" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,418,148 samples, 0.02%)</title><rect x="585.3" y="181" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="588.32" y="191.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (24,846,336 samples, 0.09%)</title><rect x="561.6" y="501" width="1.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="564.62" y="511.5" ></text>
</g>
<g >
<title>get_page_from_freelist (134,894,923 samples, 0.47%)</title><rect x="787.7" y="133" width="5.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="790.74" y="143.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,510,802 samples, 0.01%)</title><rect x="69.5" y="293" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="72.46" y="303.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (841,798,524 samples, 2.94%)</title><rect x="518.5" y="501" width="34.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="521.50" y="511.5" >io..</text>
</g>
<g >
<title>obj_cgroup_charge (35,411,211 samples, 0.12%)</title><rect x="816.3" y="197" width="1.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="819.31" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (17,924,323 samples, 0.06%)</title><rect x="223.8" y="357" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="226.79" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.parseBTF (200,736,624 samples, 0.70%)</title><rect x="578.1" y="325" width="8.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="581.12" y="335.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (348,835,937 samples, 1.22%)</title><rect x="446.0" y="261" width="14.4" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="449.02" y="271.5" ></text>
</g>
<g >
<title>vma_alloc_folio (12,970,822 samples, 0.05%)</title><rect x="645.6" y="309" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="648.57" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (61,700,188 samples, 0.22%)</title><rect x="15.9" y="533" width="2.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="18.94" y="543.5" ></text>
</g>
<g >
<title>__do_softirq (2,889,056 samples, 0.01%)</title><rect x="212.0" y="277" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="214.98" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (7,741,589 samples, 0.03%)</title><rect x="445.7" y="261" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="448.70" y="271.5" ></text>
</g>
<g >
<title>do_user_addr_fault (26,256,937 samples, 0.09%)</title><rect x="610.6" y="293" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="613.59" y="303.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,629,617 samples, 0.01%)</title><rect x="251.2" y="565" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="254.17" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_lock (41,307,780 samples, 0.14%)</title><rect x="152.9" y="389" width="1.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="155.92" y="399.5" ></text>
</g>
<g >
<title>rmqueue_bulk (5,263,725 samples, 0.02%)</title><rect x="760.7" y="85" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="763.72" y="95.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (6,161,533 samples, 0.02%)</title><rect x="583.4" y="245" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="586.37" y="255.5" ></text>
</g>
<g >
<title>mod_objcg_state (52,637,658 samples, 0.18%)</title><rect x="208.4" y="373" width="2.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="211.39" y="383.5" ></text>
</g>
<g >
<title>__alloc_pages (6,829,947 samples, 0.02%)</title><rect x="916.4" y="165" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="919.42" y="175.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (13,297,647 samples, 0.05%)</title><rect x="87.6" y="373" width="0.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="90.63" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,302,474 samples, 0.03%)</title><rect x="261.9" y="501" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="264.88" y="511.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (10,838,023 samples, 0.04%)</title><rect x="76.2" y="405" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="79.18" y="415.5" ></text>
</g>
<g >
<title>bpf_seq_write (19,426,557 samples, 0.07%)</title><rect x="549.6" y="245" width="0.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="552.59" y="255.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (10,015,098 samples, 0.03%)</title><rect x="778.7" y="245" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="781.73" y="255.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,880,130 samples, 0.01%)</title><rect x="202.9" y="213" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="205.93" y="223.5" ></text>
</g>
<g >
<title>__do_softirq (8,747,340 samples, 0.03%)</title><rect x="244.3" y="309" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="247.33" y="319.5" ></text>
</g>
<g >
<title>d_flags_for_inode (3,741,529 samples, 0.01%)</title><rect x="822.0" y="229" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="825.00" y="239.5" ></text>
</g>
<g >
<title>node_tag_clear (15,783,740 samples, 0.06%)</title><rect x="917.7" y="261" width="0.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="920.72" y="271.5" ></text>
</g>
<g >
<title>alloc_pages (140,170,990 samples, 0.49%)</title><rect x="787.6" y="165" width="5.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="790.64" y="175.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (13,969,343 samples, 0.05%)</title><rect x="957.2" y="325" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="960.15" y="335.5" ></text>
</g>
<g >
<title>rcu_core (13,297,647 samples, 0.05%)</title><rect x="87.6" y="325" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="90.63" y="335.5" ></text>
</g>
<g >
<title>do_send_specific (3,397,183 samples, 0.01%)</title><rect x="12.3" y="421" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="15.26" y="431.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,851,074 samples, 0.01%)</title><rect x="588.8" y="197" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="591.85" y="207.5" ></text>
</g>
<g >
<title>___slab_alloc (274,657,397 samples, 0.96%)</title><rect x="752.2" y="213" width="11.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="755.18" y="223.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (3,839,510 samples, 0.01%)</title><rect x="709.2" y="325" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="712.15" y="335.5" ></text>
</g>
<g >
<title>__folio_alloc (10,839,336 samples, 0.04%)</title><rect x="579.2" y="165" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="582.20" y="175.5" ></text>
</g>
<g >
<title>__folio_alloc (45,811,006 samples, 0.16%)</title><rect x="567.7" y="373" width="1.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="570.74" y="383.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (4,491,928 samples, 0.02%)</title><rect x="1183.2" y="469" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1186.21" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (3,073,742 samples, 0.01%)</title><rect x="636.7" y="85" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="639.74" y="95.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,310,429 samples, 0.02%)</title><rect x="663.6" y="389" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="666.57" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (20,197,725 samples, 0.07%)</title><rect x="561.8" y="453" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="564.77" y="463.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,473,393 samples, 0.01%)</title><rect x="257.7" y="549" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="260.68" y="559.5" ></text>
</g>
<g >
<title>runtime.mallocgc (5,460,928 samples, 0.02%)</title><rect x="560.8" y="501" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="563.81" y="511.5" ></text>
</g>
<g >
<title>mod_memcg_state (6,173,558 samples, 0.02%)</title><rect x="773.0" y="181" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="776.04" y="191.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (16,283,404 samples, 0.06%)</title><rect x="905.2" y="309" width="0.6" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="908.17" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_lock (36,773,174 samples, 0.13%)</title><rect x="822.2" y="245" width="1.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="825.16" y="255.5" ></text>
</g>
<g >
<title>idr_get_next (178,044,600 samples, 0.62%)</title><rect x="453.0" y="245" width="7.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="455.96" y="255.5" ></text>
</g>
<g >
<title>handle_mm_fault (62,342,311 samples, 0.22%)</title><rect x="1185.5" y="453" width="2.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1188.47" y="463.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (4,641,763 samples, 0.02%)</title><rect x="560.1" y="501" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="563.05" y="511.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (6,951,360 samples, 0.02%)</title><rect x="513.8" y="485" width="0.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="516.76" y="495.5" ></text>
</g>
<g >
<title>vma_alloc_folio (43,052,087 samples, 0.15%)</title><rect x="998.8" y="245" width="1.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1001.77" y="255.5" ></text>
</g>
<g >
<title>runtime.mcall (2,968,852 samples, 0.01%)</title><rect x="251.4" y="581" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="254.37" y="591.5" ></text>
</g>
<g >
<title>discard_slab (5,839,671 samples, 0.02%)</title><rect x="159.5" y="181" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="162.49" y="191.5" ></text>
</g>
<g >
<title>handle_mm_fault (13,941,509 samples, 0.05%)</title><rect x="579.1" y="245" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="582.07" y="255.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).tryGet (11,227,403 samples, 0.04%)</title><rect x="257.8" y="549" width="0.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="260.82" y="559.5" ></text>
</g>
<g >
<title>get_page_from_freelist (13,229,654 samples, 0.05%)</title><rect x="562.0" y="341" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="565.03" y="351.5" ></text>
</g>
<g >
<title>runtime.efaceeq (3,880,292 samples, 0.01%)</title><rect x="517.2" y="437" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="520.23" y="447.5" ></text>
</g>
<g >
<title>tick_sched_timer (4,327,784 samples, 0.02%)</title><rect x="154.8" y="309" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="157.83" y="319.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (9,326,754 samples, 0.03%)</title><rect x="459.9" y="229" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="462.92" y="239.5" ></text>
</g>
<g >
<title>__rcu_read_lock (9,988,691 samples, 0.03%)</title><rect x="763.7" y="213" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="766.65" y="223.5" ></text>
</g>
<g >
<title>update_curr (24,090,221 samples, 0.08%)</title><rect x="181.2" y="341" width="0.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="184.15" y="351.5" ></text>
</g>
<g >
<title>idr_get_next_ul (160,427,968 samples, 0.56%)</title><rect x="453.3" y="229" width="6.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="456.31" y="239.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (10,847,739 samples, 0.04%)</title><rect x="990.1" y="405" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="993.12" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (10,005,717 samples, 0.03%)</title><rect x="581.7" y="261" width="0.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="584.72" y="271.5" ></text>
</g>
<g >
<title>cap_capable (14,731,822 samples, 0.05%)</title><rect x="901.3" y="277" width="0.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="904.34" y="287.5" ></text>
</g>
<g >
<title>lru_add_fn (4,605,377 samples, 0.02%)</title><rect x="1185.9" y="341" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1188.94" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).copy (23,296,255 samples, 0.08%)</title><rect x="591.2" y="325" width="1.0" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="594.21" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (16,034,206 samples, 0.06%)</title><rect x="1175.1" y="469" width="0.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1178.13" y="479.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (17,965,195 samples, 0.06%)</title><rect x="145.1" y="325" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="148.10" y="335.5" ></text>
</g>
<g >
<title>__slab_free (5,197,585 samples, 0.02%)</title><rect x="224.0" y="197" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="226.97" y="207.5" ></text>
</g>
<g >
<title>rcu_core_si (2,889,056 samples, 0.01%)</title><rect x="212.0" y="261" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="214.98" y="271.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (5,921,025 samples, 0.02%)</title><rect x="926.4" y="309" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="929.37" y="319.5" ></text>
</g>
<g >
<title>rcu_core (8,747,340 samples, 0.03%)</title><rect x="244.3" y="277" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="247.33" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (15,395,184 samples, 0.05%)</title><rect x="745.0" y="85" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="748.00" y="95.5" ></text>
</g>
<g >
<title>[[vdso]] (10,092,358 samples, 0.04%)</title><rect x="263.8" y="485" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="266.84" y="495.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,905,151 samples, 0.01%)</title><rect x="246.5" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="249.48" y="415.5" ></text>
</g>
<g >
<title>ptep_clear_flush (11,302,155 samples, 0.04%)</title><rect x="606.3" y="181" width="0.5" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="609.33" y="191.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (184,591,136 samples, 0.64%)</title><rect x="216.9" y="373" width="7.6" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="219.92" y="383.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (3,867,261 samples, 0.01%)</title><rect x="771.4" y="165" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="774.43" y="175.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,100,295 samples, 0.01%)</title><rect x="582.3" y="261" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="585.29" y="271.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (6,189,733 samples, 0.02%)</title><rect x="553.2" y="501" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="556.20" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (9,317,844 samples, 0.03%)</title><rect x="18.7" y="597" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="21.73" y="607.5" ></text>
</g>
<g >
<title>irq_exit_rcu (24,515,274 samples, 0.09%)</title><rect x="94.7" y="357" width="1.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="97.73" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (13,650,344 samples, 0.05%)</title><rect x="1167.5" y="389" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1170.50" y="399.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,696,111 samples, 0.01%)</title><rect x="608.4" y="293" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="611.41" y="303.5" ></text>
</g>
<g >
<title>rcu_core (2,889,056 samples, 0.01%)</title><rect x="212.0" y="245" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="214.98" y="255.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (49,722,379 samples, 0.17%)</title><rect x="204.5" y="357" width="2.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="207.54" y="367.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (3,487,216 samples, 0.01%)</title><rect x="216.7" y="341" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="219.67" y="351.5" ></text>
</g>
<g >
<title>__mod_memcg_state (3,838,718 samples, 0.01%)</title><rect x="773.1" y="165" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="776.14" y="175.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (14,844,237 samples, 0.05%)</title><rect x="761.1" y="133" width="0.6" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="764.13" y="143.5" ></text>
</g>
<g >
<title>security_capable (2,954,555 samples, 0.01%)</title><rect x="920.7" y="309" width="0.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="923.74" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadKernelSpec (377,144,888 samples, 1.32%)</title><rect x="570.9" y="357" width="15.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="573.88" y="367.5" ></text>
</g>
<g >
<title>runtime.findObject (4,572,262 samples, 0.02%)</title><rect x="1170.7" y="277" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1173.72" y="287.5" ></text>
</g>
<g >
<title>rcu_core (24,470,405 samples, 0.09%)</title><rect x="69.7" y="341" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="72.65" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (3,108,702 samples, 0.01%)</title><rect x="591.8" y="277" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="594.85" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (5,469,254 samples, 0.02%)</title><rect x="837.8" y="133" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="840.78" y="143.5" ></text>
</g>
<g >
<title>put_cpu_partial (33,373,614 samples, 0.12%)</title><rect x="203.2" y="357" width="1.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="206.17" y="367.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5,262,176 samples, 0.02%)</title><rect x="926.4" y="277" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="929.40" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (10,586,844 samples, 0.04%)</title><rect x="1180.5" y="245" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1183.49" y="255.5" ></text>
</g>
<g >
<title>do_user_addr_fault (8,562,813 samples, 0.03%)</title><rect x="552.6" y="437" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="555.63" y="447.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (2,690,766 samples, 0.01%)</title><rect x="610.8" y="181" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="613.79" y="191.5" ></text>
</g>
<g >
<title>update_load_avg (12,943,827 samples, 0.05%)</title><rect x="129.8" y="277" width="0.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="132.83" y="287.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,029,314 samples, 0.01%)</title><rect x="316.7" y="533" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="319.65" y="543.5" ></text>
</g>
<g >
<title>runtime.markroot (27,418,702 samples, 0.10%)</title><rect x="1169.3" y="293" width="1.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1172.34" y="303.5" ></text>
</g>
<g >
<title>runtime.findObject (3,022,870 samples, 0.01%)</title><rect x="612.2" y="245" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="615.17" y="255.5" ></text>
</g>
<g >
<title>futex_wait (3,056,897 samples, 0.01%)</title><rect x="364.9" y="389" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="367.85" y="399.5" ></text>
</g>
<g >
<title>new_slab (4,520,144 samples, 0.02%)</title><rect x="761.3" y="101" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="764.31" y="111.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (9,277,460 samples, 0.03%)</title><rect x="581.0" y="293" width="0.4" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="583.99" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (13,313,804,933 samples, 46.51%)</title><rect x="623.8" y="485" width="548.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="626.81" y="495.5" >github.com/cilium/ebpf.(*MapSpec).createMap</text>
</g>
<g >
<title>do_nanosleep (45,133,774 samples, 0.16%)</title><rect x="16.4" y="469" width="1.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="19.35" y="479.5" ></text>
</g>
<g >
<title>setup_object (3,077,855 samples, 0.01%)</title><rect x="861.0" y="181" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="864.00" y="191.5" ></text>
</g>
<g >
<title>error_entry (3,462,715 samples, 0.01%)</title><rect x="1188.8" y="501" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.78" y="511.5" ></text>
</g>
<g >
<title>file_free_rcu (145,901,851 samples, 0.51%)</title><rect x="155.7" y="261" width="6.0" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="158.72" y="271.5" ></text>
</g>
<g >
<title>dequeue_entity (6,337,407 samples, 0.02%)</title><rect x="17.1" y="389" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="20.09" y="399.5" ></text>
</g>
<g >
<title>runtime.makeslice (5,415,672 samples, 0.02%)</title><rect x="582.3" y="277" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="585.29" y="287.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (9,779,368 samples, 0.03%)</title><rect x="611.0" y="133" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="613.98" y="143.5" ></text>
</g>
<g >
<title>__handle_mm_fault (11,651,130 samples, 0.04%)</title><rect x="577.4" y="229" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="580.35" y="239.5" ></text>
</g>
<g >
<title>[unknown] (15,364,118 samples, 0.05%)</title><rect x="10.0" y="581" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>security_task_kill (3,249,575 samples, 0.01%)</title><rect x="264.7" y="389" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="267.68" y="399.5" ></text>
</g>
<g >
<title>xas_start (4,520,398 samples, 0.02%)</title><rect x="816.1" y="181" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="819.12" y="191.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,866,445 samples, 0.01%)</title><rect x="571.7" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="574.74" y="287.5" ></text>
</g>
<g >
<title>consume_obj_stock (33,593,674 samples, 0.12%)</title><rect x="876.4" y="213" width="1.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="879.35" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfType (6,168,100 samples, 0.02%)</title><rect x="582.8" y="293" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="585.77" y="303.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,115,821 samples, 0.01%)</title><rect x="561.5" y="501" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="564.49" y="511.5" ></text>
</g>
<g >
<title>__do_softirq (8,834,284 samples, 0.03%)</title><rect x="95.7" y="341" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="98.74" y="351.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,901,044 samples, 0.01%)</title><rect x="560.8" y="453" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="563.85" y="463.5" ></text>
</g>
<g >
<title>__free_one_page (11,659,560 samples, 0.04%)</title><rect x="40.1" y="229" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="43.13" y="239.5" ></text>
</g>
<g >
<title>strings.LastIndex (16,601,448 samples, 0.06%)</title><rect x="601.2" y="325" width="0.7" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="604.19" y="335.5" ></text>
</g>
<g >
<title>send_signal_locked (3,762,000 samples, 0.01%)</title><rect x="15.6" y="405" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="18.63" y="415.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (12,942,806 samples, 0.05%)</title><rect x="721.0" y="293" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="723.97" y="303.5" ></text>
</g>
<g >
<title>file_free_rcu (16,805,122 samples, 0.06%)</title><rect x="94.7" y="261" width="0.7" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="97.75" y="271.5" ></text>
</g>
<g >
<title>handle_pte_fault (23,919,321 samples, 0.08%)</title><rect x="597.4" y="213" width="1.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="600.38" y="223.5" ></text>
</g>
<g >
<title>rcu_do_batch (3,487,216 samples, 0.01%)</title><rect x="216.7" y="277" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="219.67" y="287.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (3,862,108 samples, 0.01%)</title><rect x="585.4" y="117" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="588.38" y="127.5" ></text>
</g>
<g >
<title>exc_page_fault (28,944,923 samples, 0.10%)</title><rect x="610.6" y="309" width="1.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="613.59" y="319.5" ></text>
</g>
<g >
<title>btf_nested_type_is_trusted (4,466,588 samples, 0.02%)</title><rect x="612.4" y="165" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="615.44" y="175.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,071,026 samples, 0.01%)</title><rect x="585.0" y="133" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="587.97" y="143.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (5,418,148 samples, 0.02%)</title><rect x="585.3" y="245" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="588.32" y="255.5" ></text>
</g>
<g >
<title>try_charge_memcg (3,837,094 samples, 0.01%)</title><rect x="773.5" y="197" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="776.45" y="207.5" ></text>
</g>
<g >
<title>new_slab (47,808,154 samples, 0.17%)</title><rect x="744.8" y="165" width="2.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="747.84" y="175.5" ></text>
</g>
<g >
<title>runtime.mcall (5,322,270 samples, 0.02%)</title><rect x="364.8" y="565" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="367.80" y="575.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).copy (24,015,429 samples, 0.08%)</title><rect x="588.4" y="325" width="1.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="591.43" y="335.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (46,671,567 samples, 0.16%)</title><rect x="771.7" y="213" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="774.69" y="223.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (71,933,361 samples, 0.25%)</title><rect x="875.9" y="229" width="2.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="878.88" y="239.5" ></text>
</g>
<g >
<title>discard_slab (9,450,002 samples, 0.03%)</title><rect x="161.9" y="181" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="164.93" y="191.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (3,554,617 samples, 0.01%)</title><rect x="19.6" y="597" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="22.62" y="607.5" ></text>
</g>
<g >
<title>rcu_core_si (3,487,216 samples, 0.01%)</title><rect x="216.7" y="309" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="219.67" y="319.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,831,878 samples, 0.01%)</title><rect x="614.7" y="373" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="617.66" y="383.5" ></text>
</g>
<g >
<title>__slab_free (3,687,076 samples, 0.01%)</title><rect x="70.0" y="277" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="73.04" y="287.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (68,907,766 samples, 0.24%)</title><rect x="536.3" y="261" width="2.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="539.26" y="271.5" ></text>
</g>
<g >
<title>clear_page_erms (5,989,321 samples, 0.02%)</title><rect x="1167.7" y="213" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1170.69" y="223.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,834,284 samples, 0.03%)</title><rect x="95.7" y="373" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="98.74" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (13,608,828,419 samples, 47.54%)</title><rect x="615.3" y="517" width="561.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="618.28" y="527.5" >github.com/cilium/ebpf.NewMapWithOptions</text>
</g>
<g >
<title>flush_tlb_mm_range (9,779,368 samples, 0.03%)</title><rect x="611.0" y="181" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="613.98" y="191.5" ></text>
</g>
<g >
<title>migrate_enable (5,117,523 samples, 0.02%)</title><rect x="476.9" y="261" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="479.91" y="271.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (8,241,588 samples, 0.03%)</title><rect x="602.4" y="309" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="605.40" y="319.5" ></text>
</g>
<g >
<title>shuffle_freelist (34,674,174 samples, 0.12%)</title><rect x="762.0" y="165" width="1.5" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="765.05" y="175.5" ></text>
</g>
<g >
<title>mod_memcg_state (3,053,230 samples, 0.01%)</title><rect x="817.6" y="165" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="820.58" y="175.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (3,093,798 samples, 0.01%)</title><rect x="614.5" y="357" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="617.50" y="367.5" ></text>
</g>
<g >
<title>runtime.scanstack (3,768,591 samples, 0.01%)</title><rect x="262.8" y="517" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="265.83" y="527.5" ></text>
</g>
<g >
<title>rcu_core (6,008,065 samples, 0.02%)</title><rect x="169.3" y="309" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="172.33" y="319.5" ></text>
</g>
<g >
<title>wp_page_copy (22,838,911 samples, 0.08%)</title><rect x="610.6" y="213" width="1.0" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="613.64" y="223.5" ></text>
</g>
<g >
<title>irq_exit_rcu (28,755,261 samples, 0.10%)</title><rect x="177.9" y="341" width="1.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="180.88" y="351.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,071,026 samples, 0.01%)</title><rect x="585.0" y="197" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="587.97" y="207.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,076,923 samples, 0.01%)</title><rect x="494.0" y="405" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="496.97" y="415.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5,458,392 samples, 0.02%)</title><rect x="552.8" y="357" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="555.76" y="367.5" ></text>
</g>
<g >
<title>bpf_prog_load (4,466,588 samples, 0.02%)</title><rect x="612.4" y="261" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="615.44" y="271.5" ></text>
</g>
<g >
<title>shuffle_freelist (24,627,073 samples, 0.09%)</title><rect x="861.1" y="181" width="1.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="864.13" y="191.5" ></text>
</g>
<g >
<title>cap_capable (18,287,075 samples, 0.06%)</title><rect x="886.1" y="277" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="889.14" y="287.5" ></text>
</g>
<g >
<title>rmqueue_bulk (3,120,044 samples, 0.01%)</title><rect x="569.4" y="293" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="572.44" y="303.5" ></text>
</g>
<g >
<title>scheduler_tick (3,744,871 samples, 0.01%)</title><rect x="663.6" y="261" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="666.64" y="271.5" ></text>
</g>
<g >
<title>xas_descend (13,171,773 samples, 0.05%)</title><rect x="815.6" y="181" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="818.58" y="191.5" ></text>
</g>
<g >
<title>__zone_watermark_ok (3,831,412 samples, 0.01%)</title><rect x="847.3" y="133" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="850.31" y="143.5" ></text>
</g>
<g >
<title>__do_softirq (28,626,815 samples, 0.10%)</title><rect x="177.9" y="309" width="1.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="180.89" y="319.5" ></text>
</g>
<g >
<title>sched_clock (20,251,208 samples, 0.07%)</title><rect x="149.2" y="309" width="0.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="152.19" y="319.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (576,286,745 samples, 2.01%)</title><rect x="419.6" y="261" width="23.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="422.61" y="271.5" >_..</text>
</g>
<g >
<title>free_unref_page_commit (9,450,002 samples, 0.03%)</title><rect x="161.9" y="101" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="164.93" y="111.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (13,848,576 samples, 0.05%)</title><rect x="87.6" y="421" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="90.61" y="431.5" ></text>
</g>
<g >
<title>put_prev_entity (3,385,719 samples, 0.01%)</title><rect x="185.2" y="373" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="188.18" y="383.5" ></text>
</g>
<g >
<title>___slab_alloc (49,336,623 samples, 0.17%)</title><rect x="744.8" y="181" width="2.0" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="747.78" y="191.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (32,028,097 samples, 0.11%)</title><rect x="605.9" y="309" width="1.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="608.94" y="319.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3,323,375 samples, 0.01%)</title><rect x="177.7" y="309" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="180.73" y="319.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,093,798 samples, 0.01%)</title><rect x="614.5" y="389" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="617.50" y="399.5" ></text>
</g>
<g >
<title>policy_nodemask (3,122,511 samples, 0.01%)</title><rect x="860.9" y="181" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="863.87" y="191.5" ></text>
</g>
<g >
<title>security_bpf_map (7,716,462 samples, 0.03%)</title><rect x="920.0" y="309" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="923.01" y="319.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (6,617,733 samples, 0.02%)</title><rect x="148.7" y="277" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="151.66" y="287.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (33,505,646 samples, 0.12%)</title><rect x="488.0" y="405" width="1.4" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="490.98" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (4,677,390 samples, 0.02%)</title><rect x="552.8" y="325" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="555.76" y="335.5" ></text>
</g>
<g >
<title>bufio.(*Scanner).Scan (11,594,189 samples, 0.04%)</title><rect x="585.1" y="293" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="588.09" y="303.5" ></text>
</g>
<g >
<title>rmqueue_bulk (4,523,452 samples, 0.02%)</title><rect x="1000.3" y="149" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1003.29" y="159.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (6,221,184 samples, 0.02%)</title><rect x="625.5" y="469" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="628.51" y="479.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (4,682,224 samples, 0.02%)</title><rect x="998.4" y="213" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1001.39" y="223.5" ></text>
</g>
<g >
<title>vfs_read (4,639,594 samples, 0.02%)</title><rect x="585.3" y="133" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="588.35" y="143.5" ></text>
</g>
<g >
<title>runtime.gosched_m (3,690,460 samples, 0.01%)</title><rect x="501.6" y="533" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="504.62" y="543.5" ></text>
</g>
<g >
<title>array_map_free_timers (2,855,041 samples, 0.01%)</title><rect x="165.7" y="405" width="0.2" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="168.74" y="415.5" ></text>
</g>
<g >
<title>alloc_file (1,278,250,311 samples, 4.47%)</title><rect x="726.4" y="261" width="52.7" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="729.44" y="271.5" >alloc..</text>
</g>
<g >
<title>__rcu_read_unlock (7,706,387 samples, 0.03%)</title><rect x="863.2" y="229" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="866.15" y="239.5" ></text>
</g>
<g >
<title>array_map_alloc_check (36,242,937 samples, 0.13%)</title><rect x="710.0" y="325" width="1.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="713.00" y="335.5" ></text>
</g>
<g >
<title>rcu_do_batch (24,939,409 samples, 0.09%)</title><rect x="178.0" y="261" width="1.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="180.97" y="271.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,682,483 samples, 0.01%)</title><rect x="355.5" y="485" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="358.46" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,863,545 samples, 0.01%)</title><rect x="157.6" y="245" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="160.57" y="255.5" ></text>
</g>
<g >
<title>sched_clock_cpu (71,465,897 samples, 0.25%)</title><rect x="146.1" y="325" width="2.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="149.05" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (6,008,065 samples, 0.02%)</title><rect x="169.3" y="341" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="172.33" y="351.5" ></text>
</g>
<g >
<title>__get_random_u32_below (6,979,025 samples, 0.02%)</title><rect x="763.0" y="149" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="765.96" y="159.5" ></text>
</g>
<g >
<title>available_idle_cpu (2,700,077 samples, 0.01%)</title><rect x="126.9" y="309" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="129.90" y="319.5" ></text>
</g>
<g >
<title>idr_alloc_u32 (290,513,236 samples, 1.01%)</title><rect x="906.4" y="293" width="12.0" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="909.39" y="303.5" ></text>
</g>
<g >
<title>x86_pmu_disable (2,778,396 samples, 0.01%)</title><rect x="188.1" y="341" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="191.07" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).finalize (3,423,063 samples, 0.01%)</title><rect x="615.1" y="517" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="618.14" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (25,566,585 samples, 0.09%)</title><rect x="69.6" y="437" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="72.61" y="447.5" ></text>
</g>
<g >
<title>__send_signal_locked (8,790,575 samples, 0.03%)</title><rect x="264.8" y="373" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="267.84" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfParams (3,079,775 samples, 0.01%)</title><rect x="582.6" y="293" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="585.64" y="303.5" ></text>
</g>
<g >
<title>refill_obj_stock (50,110,956 samples, 0.18%)</title><rect x="210.6" y="357" width="2.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="213.62" y="367.5" ></text>
</g>
<g >
<title>runtime.growslice (172,194,510 samples, 0.60%)</title><rect x="1176.4" y="517" width="7.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1179.39" y="527.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (2,927,758 samples, 0.01%)</title><rect x="650.9" y="421" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="653.94" y="431.5" ></text>
</g>
<g >
<title>rcu_core_si (6,981,063 samples, 0.02%)</title><rect x="202.9" y="277" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="205.88" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (4,661,445 samples, 0.02%)</title><rect x="793.7" y="37" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="796.71" y="47.5" ></text>
</g>
<g >
<title>__mutex_init (14,719,321 samples, 0.05%)</title><rect x="704.6" y="325" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="707.64" y="335.5" ></text>
</g>
<g >
<title>alloc_fdtable (11,606,636 samples, 0.04%)</title><rect x="837.5" y="245" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="840.53" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (25,467,196 samples, 0.09%)</title><rect x="597.3" y="293" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="600.35" y="303.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (25,566,585 samples, 0.09%)</title><rect x="69.6" y="421" width="1.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="72.61" y="431.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (20,516,280 samples, 0.07%)</title><rect x="494.2" y="469" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="497.16" y="479.5" ></text>
</g>
<g >
<title>lru_add_fn (4,670,639 samples, 0.02%)</title><rect x="567.4" y="341" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="570.39" y="351.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (400,328,957 samples, 1.40%)</title><rect x="460.6" y="277" width="16.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="463.62" y="287.5" ></text>
</g>
<g >
<title>madvise_collapse (4,602,144 samples, 0.02%)</title><rect x="636.7" y="149" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="639.67" y="159.5" ></text>
</g>
<g >
<title>security_file_alloc (284,202,754 samples, 0.99%)</title><rect x="736.0" y="213" width="11.7" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="739.02" y="223.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).put (6,782,402 samples, 0.02%)</title><rect x="356.0" y="517" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="358.95" y="527.5" ></text>
</g>
<g >
<title>runtime.addspecial (3,808,336,398 samples, 13.30%)</title><rect x="1002.4" y="357" width="157.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1005.39" y="367.5" >runtime.addspecial</text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (5,418,148 samples, 0.02%)</title><rect x="585.3" y="197" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="588.32" y="207.5" ></text>
</g>
<g >
<title>do_anonymous_page (53,305,265 samples, 0.19%)</title><rect x="1185.7" y="405" width="2.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1188.72" y="415.5" ></text>
</g>
<g >
<title>do_anonymous_page (14,853,811 samples, 0.05%)</title><rect x="645.5" y="325" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="648.50" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_disable (48,078,911 samples, 0.17%)</title><rect x="186.1" y="325" width="2.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="189.08" y="335.5" ></text>
</g>
<g >
<title>security_d_instantiate (6,946,850 samples, 0.02%)</title><rect x="824.1" y="245" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="827.07" y="255.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).pop (7,522,991 samples, 0.03%)</title><rect x="365.7" y="549" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="368.71" y="559.5" ></text>
</g>
<g >
<title>alloc_fd (76,205,035 samples, 0.27%)</title><rect x="835.2" y="277" width="3.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="838.22" y="287.5" ></text>
</g>
<g >
<title>seq_write (4,661,709 samples, 0.02%)</title><rect x="550.2" y="229" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="553.20" y="239.5" ></text>
</g>
<g >
<title>security_bpf_map (3,114,674 samples, 0.01%)</title><rect x="924.5" y="325" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="927.48" y="335.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (10,042,898 samples, 0.04%)</title><rect x="920.3" y="309" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="923.33" y="319.5" ></text>
</g>
<g >
<title>get_any_partial (4,617,964 samples, 0.02%)</title><rect x="787.2" y="197" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="790.22" y="207.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,778,837 samples, 0.01%)</title><rect x="111.4" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="114.39" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (13,917,858 samples, 0.05%)</title><rect x="112.0" y="373" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="115.04" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,866,445 samples, 0.01%)</title><rect x="571.7" y="309" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="574.74" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Spec).Copy (629,474,359 samples, 2.20%)</title><rect x="586.4" y="373" width="26.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="589.43" y="383.5" >g..</text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo (2,652,638,723 samples, 9.27%)</title><rect x="503.3" y="565" width="109.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="506.27" y="575.5" >github.com/EM..</text>
</g>
<g >
<title>vma_alloc_folio (3,071,026 samples, 0.01%)</title><rect x="585.0" y="181" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="587.97" y="191.5" ></text>
</g>
<g >
<title>bpf_seq_write (7,483,275 samples, 0.03%)</title><rect x="474.4" y="245" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="477.37" y="255.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,061,486 samples, 0.04%)</title><rect x="579.2" y="133" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="582.23" y="143.5" ></text>
</g>
<g >
<title>clockevents_program_event (2,823,481 samples, 0.01%)</title><rect x="16.6" y="405" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="19.56" y="415.5" ></text>
</g>
<g >
<title>runtime.startm (3,041,030 samples, 0.01%)</title><rect x="12.0" y="501" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="15.00" y="511.5" ></text>
</g>
<g >
<title>__fput (9,734,333 samples, 0.03%)</title><rect x="250.3" y="469" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="253.30" y="479.5" ></text>
</g>
<g >
<title>xa_load (83,852,242 samples, 0.29%)</title><rect x="812.1" y="181" width="3.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="815.12" y="191.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,074,795 samples, 0.01%)</title><rect x="572.8" y="261" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="575.83" y="271.5" ></text>
</g>
<g >
<title>bpf_map_put (19,409,472 samples, 0.07%)</title><rect x="70.7" y="437" width="0.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="73.66" y="447.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (7,770,076 samples, 0.03%)</title><rect x="544.1" y="277" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="547.10" y="287.5" ></text>
</g>
<g >
<title>runtime.notewakeup (3,041,030 samples, 0.01%)</title><rect x="12.0" y="485" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="15.00" y="495.5" ></text>
</g>
<g >
<title>x64_setup_rt_frame (3,012,841 samples, 0.01%)</title><rect x="1188.3" y="373" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1191.32" y="383.5" ></text>
</g>
<g >
<title>handle_pte_fault (66,857,133 samples, 0.23%)</title><rect x="997.9" y="277" width="2.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1000.88" y="287.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (10,649,555 samples, 0.04%)</title><rect x="606.4" y="165" width="0.4" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="609.36" y="175.5" ></text>
</g>
<g >
<title>runtime.casgstatus (24,367,456 samples, 0.09%)</title><rect x="657.8" y="389" width="1.0" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="660.75" y="399.5" ></text>
</g>
<g >
<title>runtime.findObject (55,216,808 samples, 0.19%)</title><rect x="282.3" y="501" width="2.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="285.26" y="511.5" ></text>
</g>
<g >
<title>new_slab (12,416,890 samples, 0.04%)</title><rect x="859.4" y="117" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="862.38" y="127.5" ></text>
</g>
<g >
<title>__handle_mm_fault (18,175,092 samples, 0.06%)</title><rect x="1180.2" y="325" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1183.20" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (47,136,611 samples, 0.16%)</title><rect x="959.2" y="389" width="2.0" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="962.21" y="399.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (2,970,469 samples, 0.01%)</title><rect x="161.4" y="197" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="164.37" y="207.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (20,725,640 samples, 0.07%)</title><rect x="517.4" y="453" width="0.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="520.39" y="463.5" ></text>
</g>
<g >
<title>runtime.greyobject (488,121,645 samples, 1.71%)</title><rect x="336.1" y="533" width="20.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="339.11" y="543.5" ></text>
</g>
<g >
<title>runtime.memmove (7,578,360 samples, 0.03%)</title><rect x="478.0" y="469" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="481.04" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (13,941,509 samples, 0.05%)</title><rect x="579.1" y="261" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="582.07" y="271.5" ></text>
</g>
<g >
<title>security_bpf (3,897,131 samples, 0.01%)</title><rect x="925.4" y="341" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="928.38" y="351.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (46,521,059 samples, 0.16%)</title><rect x="12.4" y="533" width="1.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.43" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (12,667,836,136 samples, 44.26%)</title><rect x="649.5" y="469" width="522.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="652.52" y="479.5" >github.com/cilium/ebpf/internal/sys.MapCreate</text>
</g>
<g >
<title>unmap_vmas (78,302,385 samples, 0.27%)</title><rect x="37.9" y="421" width="3.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="40.93" y="431.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (98,767,187 samples, 0.35%)</title><rect x="514.4" y="501" width="4.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="517.43" y="511.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (50,008,224 samples, 0.17%)</title><rect x="92.2" y="389" width="2.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="95.24" y="399.5" ></text>
</g>
<g >
<title>native_write_msr (2,632,186 samples, 0.01%)</title><rect x="606.6" y="85" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="609.58" y="95.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (41,923,513 samples, 0.15%)</title><rect x="39.3" y="309" width="1.7" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="42.30" y="319.5" ></text>
</g>
<g >
<title>do_wp_page (25,369,833 samples, 0.09%)</title><rect x="606.0" y="213" width="1.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="609.03" y="223.5" ></text>
</g>
<g >
<title>should_failslab (6,910,055 samples, 0.02%)</title><rect x="776.9" y="229" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="779.89" y="239.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6,946,348 samples, 0.02%)</title><rect x="477.5" y="341" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="480.50" y="351.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,905,151 samples, 0.01%)</title><rect x="246.5" y="325" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="249.48" y="335.5" ></text>
</g>
<g >
<title>x86_pmu_enable (28,620,362 samples, 0.10%)</title><rect x="176.2" y="341" width="1.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="179.18" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (30,683,275 samples, 0.11%)</title><rect x="606.0" y="293" width="1.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="609.00" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (56,616,584 samples, 0.20%)</title><rect x="443.4" y="261" width="2.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="446.36" y="271.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (9,450,002 samples, 0.03%)</title><rect x="161.9" y="85" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="164.93" y="95.5" ></text>
</g>
<g >
<title>rmqueue_bulk (9,003,000 samples, 0.03%)</title><rect x="630.1" y="245" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="633.11" y="255.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (1,014,060,227 samples, 3.54%)</title><rect x="418.8" y="277" width="41.8" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="421.82" y="287.5" >bpf..</text>
</g>
<g >
<title>runtime.mapassign (39,413,025 samples, 0.14%)</title><rect x="596.8" y="325" width="1.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="599.84" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (11,416,038 samples, 0.04%)</title><rect x="645.6" y="277" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="648.57" y="287.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).resolveInternal (3,098,125 samples, 0.01%)</title><rect x="644.0" y="309" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="646.98" y="319.5" ></text>
</g>
<g >
<title>folio_add_lru (7,735,011 samples, 0.03%)</title><rect x="567.3" y="373" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="570.26" y="383.5" ></text>
</g>
<g >
<title>__kmem_cache_free (11,420,211 samples, 0.04%)</title><rect x="204.0" y="261" width="0.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="206.97" y="271.5" ></text>
</g>
<g >
<title>file_free_rcu (6,552,476 samples, 0.02%)</title><rect x="244.3" y="245" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="247.33" y="255.5" ></text>
</g>
<g >
<title>runtime.callers (3,879,795 samples, 0.01%)</title><rect x="490.0" y="421" width="0.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="492.97" y="431.5" ></text>
</g>
<g >
<title>alloc_file (10,692,532 samples, 0.04%)</title><rect x="723.4" y="277" width="0.5" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="726.42" y="287.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,101,295 samples, 0.01%)</title><rect x="590.7" y="181" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="593.70" y="191.5" ></text>
</g>
<g >
<title>allocate_slab (4,520,144 samples, 0.02%)</title><rect x="761.3" y="85" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="764.31" y="95.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,090,106 samples, 0.01%)</title><rect x="597.7" y="165" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="600.70" y="175.5" ></text>
</g>
<g >
<title>__handle_mm_fault (71,217,443 samples, 0.25%)</title><rect x="627.6" y="389" width="2.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="630.61" y="399.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (43,347,719 samples, 0.15%)</title><rect x="1169.2" y="389" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1172.21" y="399.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (4,466,588 samples, 0.02%)</title><rect x="612.4" y="341" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="615.44" y="351.5" ></text>
</g>
<g >
<title>rcu_core_si (226,368,696 samples, 0.79%)</title><rect x="155.1" y="309" width="9.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="158.06" y="319.5" ></text>
</g>
<g >
<title>runtime.scanblock (10,365,477 samples, 0.04%)</title><rect x="284.6" y="533" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="287.57" y="543.5" ></text>
</g>
<g >
<title>gcWriteBarrier (11,200,177 samples, 0.04%)</title><rect x="600.7" y="341" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="603.73" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (22,964,649 samples, 0.08%)</title><rect x="636.0" y="325" width="1.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="639.04" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (52,135,459 samples, 0.18%)</title><rect x="92.2" y="405" width="2.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="95.16" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.applyRelocations (377,916,183 samples, 1.32%)</title><rect x="570.8" y="405" width="15.6" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="573.85" y="415.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,834,284 samples, 0.03%)</title><rect x="95.7" y="357" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="98.74" y="367.5" ></text>
</g>
<g >
<title>___slab_alloc (6,957,422 samples, 0.02%)</title><rect x="793.6" y="117" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="796.64" y="127.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (6,161,533 samples, 0.02%)</title><rect x="583.4" y="229" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="586.37" y="239.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,873,907 samples, 0.01%)</title><rect x="194.3" y="389" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="197.25" y="399.5" ></text>
</g>
<g >
<title>runtime.(*timeHistogram).record (3,880,891 samples, 0.01%)</title><rect x="658.6" y="373" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="661.60" y="383.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (59,572,052 samples, 0.21%)</title><rect x="738.4" y="197" width="2.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="741.38" y="207.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4,440,932 samples, 0.02%)</title><rect x="316.8" y="469" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="319.81" y="479.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,851,233 samples, 0.01%)</title><rect x="584.9" y="261" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="587.93" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (4,614,405 samples, 0.02%)</title><rect x="412.3" y="373" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="415.34" y="383.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (211,554,793 samples, 0.74%)</title><rect x="400.7" y="485" width="8.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="403.73" y="495.5" ></text>
</g>
<g >
<title>__folio_alloc (3,851,074 samples, 0.01%)</title><rect x="588.8" y="181" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="591.85" y="191.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (486,911,089 samples, 1.70%)</title><rect x="380.7" y="485" width="20.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="383.65" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (13,948,896 samples, 0.05%)</title><rect x="571.9" y="309" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="574.90" y="319.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (25,074,861 samples, 0.09%)</title><rect x="94.7" y="389" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="97.70" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,847,197 samples, 0.01%)</title><rect x="811.9" y="181" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="814.94" y="191.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4,440,932 samples, 0.02%)</title><rect x="316.8" y="501" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="319.81" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (29,455,886 samples, 0.10%)</title><rect x="534.8" y="277" width="1.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="537.79" y="287.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (15,767,671 samples, 0.06%)</title><rect x="10.9" y="565" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.94" y="575.5" ></text>
</g>
<g >
<title>vma_alloc_folio (10,839,336 samples, 0.04%)</title><rect x="579.2" y="181" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="582.20" y="191.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (3,879,964 samples, 0.01%)</title><rect x="746.8" y="181" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="749.84" y="191.5" ></text>
</g>
<g >
<title>d_instantiate (95,636,734 samples, 0.33%)</title><rect x="820.4" y="261" width="4.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="823.42" y="271.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,889,160 samples, 0.01%)</title><rect x="577.1" y="293" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="580.13" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (3,076,923 samples, 0.01%)</title><rect x="494.0" y="421" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="496.97" y="431.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (2,981,116 samples, 0.01%)</title><rect x="19.6" y="501" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="22.62" y="511.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (3,714,614 samples, 0.01%)</title><rect x="1189.7" y="581" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1192.66" y="591.5" ></text>
</g>
<g >
<title>file_free_rcu (6,005,410 samples, 0.02%)</title><rect x="95.8" y="277" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="98.76" y="287.5" ></text>
</g>
<g >
<title>enqueue_task_fair (4,625,104 samples, 0.02%)</title><rect x="132.4" y="325" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="135.43" y="335.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (9,083,632 samples, 0.03%)</title><rect x="132.0" y="261" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="134.97" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,218,730 samples, 0.02%)</title><rect x="643.3" y="341" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="646.26" y="351.5" ></text>
</g>
<g >
<title>allocate_slab (47,808,154 samples, 0.17%)</title><rect x="744.8" y="149" width="2.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="747.84" y="159.5" ></text>
</g>
<g >
<title>clear_page_erms (3,071,026 samples, 0.01%)</title><rect x="585.0" y="117" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="587.97" y="127.5" ></text>
</g>
<g >
<title>__schedule (406,762,215 samples, 1.42%)</title><rect x="174.0" y="405" width="16.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="177.01" y="415.5" ></text>
</g>
<g >
<title>kmem_cache_free (9,865,484 samples, 0.03%)</title><rect x="95.0" y="245" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="98.03" y="255.5" ></text>
</g>
<g >
<title>wp_page_copy (20,844,185 samples, 0.07%)</title><rect x="597.5" y="181" width="0.9" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="600.51" y="191.5" ></text>
</g>
<g >
<title>mod_memcg_state (9,889,484 samples, 0.03%)</title><rect x="877.8" y="197" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="880.80" y="207.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (340,098,222 samples, 1.19%)</title><rect x="462.1" y="261" width="14.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="465.06" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (24,251,697 samples, 0.08%)</title><rect x="610.6" y="261" width="1.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="613.59" y="271.5" ></text>
</g>
<g >
<title>file_free_rcu (8,159,425 samples, 0.03%)</title><rect x="87.6" y="293" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="90.63" y="303.5" ></text>
</g>
<g >
<title>__folio_alloc (10,586,844 samples, 0.04%)</title><rect x="1180.5" y="261" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1183.49" y="271.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (9,050,931 samples, 0.03%)</title><rect x="1187.5" y="309" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1190.51" y="319.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (38,904,474 samples, 0.14%)</title><rect x="487.8" y="453" width="1.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="490.76" y="463.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (5,360,093 samples, 0.02%)</title><rect x="385.3" y="469" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="388.27" y="479.5" ></text>
</g>
<g >
<title>idr_preload (15,978,118 samples, 0.06%)</title><rect x="919.0" y="309" width="0.7" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="922.01" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (10,880,183 samples, 0.04%)</title><rect x="552.6" y="453" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="555.63" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).fixupMagicFields (6,113,904 samples, 0.02%)</title><rect x="625.8" y="469" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="628.76" y="479.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (3,630,079 samples, 0.01%)</title><rect x="12.3" y="453" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="15.26" y="463.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (64,123,547 samples, 0.22%)</title><rect x="515.7" y="469" width="2.6" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="518.67" y="479.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (5,607,602,296 samples, 19.59%)</title><rect x="19.8" y="549" width="231.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="22.76" y="559.5" >arch_do_signal_or_restart</text>
</g>
<g >
<title>error_entry (2,755,338 samples, 0.01%)</title><rect x="605.5" y="325" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="608.53" y="335.5" ></text>
</g>
<g >
<title>rcu_core (8,224,750 samples, 0.03%)</title><rect x="235.3" y="325" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="238.27" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (16,601,448 samples, 0.06%)</title><rect x="601.2" y="341" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="604.19" y="351.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (3,094,305 samples, 0.01%)</title><rect x="585.4" y="101" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="588.41" y="111.5" ></text>
</g>
<g >
<title>rcu_core (2,873,907 samples, 0.01%)</title><rect x="194.3" y="293" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="197.25" y="303.5" ></text>
</g>
<g >
<title>runtime.park_m (5,322,270 samples, 0.02%)</title><rect x="364.8" y="549" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="367.80" y="559.5" ></text>
</g>
<g >
<title>free_unref_page_commit (3,141,477 samples, 0.01%)</title><rect x="37.7" y="389" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="40.67" y="399.5" ></text>
</g>
<g >
<title>check_stack_object (6,146,271 samples, 0.02%)</title><rect x="704.4" y="309" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="707.39" y="319.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (53,933,742 samples, 0.19%)</title><rect x="764.9" y="213" width="2.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="767.94" y="223.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (10,730,123 samples, 0.04%)</title><rect x="478.4" y="485" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="481.35" y="495.5" ></text>
</g>
<g >
<title>runtime.newobject (4,630,903 samples, 0.02%)</title><rect x="590.9" y="309" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="593.89" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,398,041 samples, 0.02%)</title><rect x="595.5" y="309" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="598.46" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (25,074,861 samples, 0.09%)</title><rect x="94.7" y="373" width="1.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="97.70" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (227,597,287 samples, 0.80%)</title><rect x="155.0" y="325" width="9.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="158.03" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (8,271,213,932 samples, 28.90%)</title><rect x="649.6" y="453" width="341.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="652.59" y="463.5" >github.com/cilium/ebpf/internal/sys.BPF</text>
</g>
<g >
<title>update_load_avg (9,265,511 samples, 0.03%)</title><rect x="184.8" y="357" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="187.80" y="367.5" ></text>
</g>
<g >
<title>do_check_common (4,466,588 samples, 0.02%)</title><rect x="612.4" y="229" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="615.44" y="239.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,461,424 samples, 0.02%)</title><rect x="177.4" y="373" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="180.38" y="383.5" ></text>
</g>
<g >
<title>runtime.findObject (11,596,653 samples, 0.04%)</title><rect x="995.2" y="405" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="998.24" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (39,034,847 samples, 0.14%)</title><rect x="485.9" y="421" width="1.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="488.86" y="431.5" ></text>
</g>
<g >
<title>error_entry (4,658,153 samples, 0.02%)</title><rect x="562.7" y="501" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="565.67" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,226,206 samples, 0.01%)</title><rect x="175.0" y="389" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="178.00" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,487,216 samples, 0.01%)</title><rect x="216.7" y="389" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="219.67" y="399.5" ></text>
</g>
<g >
<title>prepare_task_switch (2,488,945 samples, 0.01%)</title><rect x="13.8" y="405" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="16.78" y="415.5" ></text>
</g>
<g >
<title>runtime.findObject (27,924,108 samples, 0.10%)</title><rect x="258.3" y="549" width="1.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="261.28" y="559.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (106,609,898 samples, 0.37%)</title><rect x="767.2" y="213" width="4.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="770.20" y="223.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (32,814,690 samples, 0.11%)</title><rect x="177.7" y="357" width="1.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="180.71" y="367.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,766,083 samples, 0.02%)</title><rect x="206.4" y="293" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="209.36" y="303.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,959,325 samples, 0.01%)</title><rect x="169.4" y="261" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="172.38" y="271.5" ></text>
</g>
<g >
<title>irqentry_exit (4,042,215 samples, 0.01%)</title><rect x="1156.9" y="309" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1159.91" y="319.5" ></text>
</g>
<g >
<title>free_unref_page (3,925,146 samples, 0.01%)</title><rect x="37.7" y="405" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="40.67" y="415.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (47,396,518 samples, 0.17%)</title><rect x="734.1" y="213" width="1.9" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="737.06" y="223.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3,747,392 samples, 0.01%)</title><rect x="177.7" y="325" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="180.72" y="335.5" ></text>
</g>
<g >
<title>__queue_work (13,941,931 samples, 0.05%)</title><rect x="91.3" y="405" width="0.6" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="94.34" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readStringTable (34,736,686 samples, 0.12%)</title><rect x="584.9" y="309" width="1.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="587.87" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,798,370 samples, 0.03%)</title><rect x="235.2" y="405" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="238.25" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (39,154,838 samples, 0.14%)</title><rect x="998.9" y="197" width="1.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1001.87" y="207.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (16,201,085 samples, 0.06%)</title><rect x="583.0" y="293" width="0.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="586.02" y="303.5" ></text>
</g>
<g >
<title>call_rcu (4,819,774 samples, 0.02%)</title><rect x="246.4" y="453" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="249.40" y="463.5" ></text>
</g>
<g >
<title>mod_objcg_state (30,867,372 samples, 0.11%)</title><rect x="770.3" y="197" width="1.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="773.32" y="207.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (29,774,768 samples, 0.10%)</title><rect x="695.1" y="373" width="1.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="698.07" y="383.5" ></text>
</g>
<g >
<title>idr_remove (234,637,679 samples, 0.82%)</title><rect x="96.1" y="405" width="9.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="99.10" y="415.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,873,907 samples, 0.01%)</title><rect x="194.3" y="341" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="197.25" y="351.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (12,388,643 samples, 0.04%)</title><rect x="400.2" y="469" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="403.22" y="479.5" ></text>
</g>
<g >
<title>do_send_specific (5,476,445 samples, 0.02%)</title><rect x="15.6" y="437" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="18.58" y="447.5" ></text>
</g>
<g >
<title>syscall.Syscall (8,231,717,108 samples, 28.76%)</title><rect x="651.2" y="421" width="339.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="654.22" y="431.5" >syscall.Syscall</text>
</g>
<g >
<title>runtime.(*mheap).initSpan (5,229,529 samples, 0.02%)</title><rect x="486.0" y="325" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="488.99" y="335.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (2,578,417 samples, 0.01%)</title><rect x="477.7" y="309" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="480.68" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_free (5,946,795 samples, 0.02%)</title><rect x="244.4" y="229" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="247.35" y="239.5" ></text>
</g>
<g >
<title>tick_sched_handle (3,743,754 samples, 0.01%)</title><rect x="154.9" y="293" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="157.85" y="303.5" ></text>
</g>
<g >
<title>__sys_bpf (5,469,975,443 samples, 19.11%)</title><rect x="699.3" y="341" width="225.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="702.29" y="351.5" >__sys_bpf</text>
</g>
<g >
<title>runtime.exitsyscallfast_reacquired (3,875,417 samples, 0.01%)</title><rect x="660.0" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="663.03" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (3,487,216 samples, 0.01%)</title><rect x="216.7" y="325" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="219.67" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.assignValues (1,013,407,623 samples, 3.54%)</title><rect x="570.8" y="469" width="41.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="573.85" y="479.5" >git..</text>
</g>
<g >
<title>get_obj_cgroup_from_current (52,838,296 samples, 0.18%)</title><rect x="903.0" y="309" width="2.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="905.99" y="319.5" ></text>
</g>
<g >
<title>[unknown] (111,735,805 samples, 0.39%)</title><rect x="10.0" y="613" width="4.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="623.5" ></text>
</g>
<g >
<title>capable (234,693,216 samples, 0.82%)</title><rect x="892.3" y="309" width="9.7" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="895.28" y="319.5" ></text>
</g>
<g >
<title>rcu_core (2,867,438 samples, 0.01%)</title><rect x="248.2" y="341" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="251.20" y="351.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (17,924,323 samples, 0.06%)</title><rect x="223.8" y="309" width="0.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="226.79" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (15,361,288 samples, 0.05%)</title><rect x="764.1" y="213" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="767.06" y="223.5" ></text>
</g>
<g >
<title>enqueue_task_fair (49,341,955 samples, 0.17%)</title><rect x="128.6" y="309" width="2.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="131.56" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (37,617,992 samples, 0.13%)</title><rect x="635.7" y="421" width="1.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="638.73" y="431.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (5,418,148 samples, 0.02%)</title><rect x="585.3" y="213" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="588.32" y="223.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (41,334,178 samples, 0.14%)</title><rect x="169.6" y="405" width="1.7" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="172.57" y="415.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (8,410,239 samples, 0.03%)</title><rect x="16.4" y="453" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="19.39" y="463.5" ></text>
</g>
<g >
<title>__cond_resched (3,100,492 samples, 0.01%)</title><rect x="795.5" y="213" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="798.50" y="223.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (6,646,017 samples, 0.02%)</title><rect x="15.6" y="517" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="18.58" y="527.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (4,808,308 samples, 0.02%)</title><rect x="17.8" y="389" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="20.77" y="399.5" ></text>
</g>
<g >
<title>strlen (20,057,344 samples, 0.07%)</title><rect x="827.5" y="277" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="830.54" y="287.5" ></text>
</g>
<g >
<title>idr_remove (5,517,924 samples, 0.02%)</title><rect x="166.1" y="421" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="169.07" y="431.5" ></text>
</g>
<g >
<title>__slab_free (6,361,788 samples, 0.02%)</title><rect x="178.3" y="213" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="181.33" y="223.5" ></text>
</g>
<g >
<title>runtime.mcall (4,433,810 samples, 0.02%)</title><rect x="501.6" y="549" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="504.59" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,506,048 samples, 0.04%)</title><rect x="1001.9" y="245" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1004.86" y="255.5" ></text>
</g>
<g >
<title>prepare_task_switch (67,690,663 samples, 0.24%)</title><rect x="185.4" y="389" width="2.8" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="188.39" y="399.5" ></text>
</g>
<g >
<title>___slab_alloc (4,520,144 samples, 0.02%)</title><rect x="761.3" y="117" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="764.31" y="127.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (486,622,464 samples, 1.70%)</title><rect x="523.2" y="293" width="20.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="526.23" y="303.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (45,029,012 samples, 0.16%)</title><rect x="39.3" y="325" width="1.9" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="42.30" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,781,341 samples, 0.01%)</title><rect x="612.1" y="293" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="615.13" y="303.5" ></text>
</g>
<g >
<title>setup_object (4,613,452 samples, 0.02%)</title><rect x="746.6" y="117" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="749.62" y="127.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,218,730 samples, 0.02%)</title><rect x="643.3" y="357" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="646.26" y="367.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (9,002,326 samples, 0.03%)</title><rect x="1001.9" y="213" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1004.86" y="223.5" ></text>
</g>
<g >
<title>get_page_from_freelist (43,484,752 samples, 0.15%)</title><rect x="567.8" y="341" width="1.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="570.81" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,067,496 samples, 0.01%)</title><rect x="588.1" y="277" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="591.08" y="287.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (3,781,341 samples, 0.01%)</title><rect x="612.1" y="261" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="615.13" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadRawSpec (377,144,888 samples, 1.32%)</title><rect x="570.9" y="341" width="15.5" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="573.88" y="351.5" ></text>
</g>
<g >
<title>do_group_exit (5,607,602,296 samples, 19.59%)</title><rect x="19.8" y="517" width="231.1" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="22.76" y="527.5" >do_group_exit</text>
</g>
<g >
<title>wp_page_copy (11,609,352 samples, 0.04%)</title><rect x="614.4" y="405" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="617.44" y="415.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (785,756,718 samples, 2.75%)</title><rect x="519.8" y="453" width="32.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="522.80" y="463.5" >in..</text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (4,544,161 samples, 0.02%)</title><rect x="1157.1" y="341" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1160.07" y="351.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (5,281,181 samples, 0.02%)</title><rect x="1188.2" y="405" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1191.22" y="415.5" ></text>
</g>
<g >
<title>irq_exit_rcu (13,297,647 samples, 0.05%)</title><rect x="87.6" y="389" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="90.63" y="399.5" ></text>
</g>
<g >
<title>do_anonymous_page (61,333,331 samples, 0.21%)</title><rect x="567.1" y="405" width="2.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="570.10" y="415.5" ></text>
</g>
<g >
<title>perf_ctx_enable (36,206,190 samples, 0.13%)</title><rect x="175.9" y="357" width="1.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="178.87" y="367.5" ></text>
</g>
<g >
<title>mod_objcg_state (30,800,815 samples, 0.11%)</title><rect x="874.4" y="213" width="1.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="877.45" y="223.5" ></text>
</g>
<g >
<title>runtime.wirep (18,132,227 samples, 0.06%)</title><rect x="660.2" y="373" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="663.22" y="383.5" ></text>
</g>
<g >
<title>idr_get_next_ul (76,331,150 samples, 0.27%)</title><rect x="539.6" y="245" width="3.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="542.64" y="255.5" ></text>
</g>
<g >
<title>clear_page_erms (30,925,851 samples, 0.11%)</title><rect x="628.7" y="277" width="1.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="631.68" y="287.5" ></text>
</g>
<g >
<title>runtime.memmove (19,407,073 samples, 0.07%)</title><rect x="575.2" y="293" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="578.25" y="303.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (2,578,417 samples, 0.01%)</title><rect x="477.7" y="325" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="480.68" y="335.5" ></text>
</g>
<g >
<title>tick_sched_handle (3,090,953 samples, 0.01%)</title><rect x="1156.6" y="245" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1159.63" y="255.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (9,779,368 samples, 0.03%)</title><rect x="611.0" y="165" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="613.98" y="175.5" ></text>
</g>
<g >
<title>__rcu_read_lock (12,152,614 samples, 0.04%)</title><rect x="61.4" y="437" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="64.43" y="447.5" ></text>
</g>
<g >
<title>__handle_mm_fault (13,941,509 samples, 0.05%)</title><rect x="579.1" y="229" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="582.07" y="239.5" ></text>
</g>
<g >
<title>do_user_addr_fault (27,347,774 samples, 0.10%)</title><rect x="606.0" y="277" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="609.00" y="287.5" ></text>
</g>
<g >
<title>lockref_put_return (63,677,261 samples, 0.22%)</title><rect x="227.5" y="421" width="2.6" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="230.46" y="431.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,821,981 samples, 0.02%)</title><rect x="178.8" y="245" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="181.80" y="255.5" ></text>
</g>
<g >
<title>syscall.pread (6,161,533 samples, 0.02%)</title><rect x="583.4" y="213" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="586.37" y="223.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,101,295 samples, 0.01%)</title><rect x="590.7" y="133" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="593.70" y="143.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,971,388 samples, 0.01%)</title><rect x="443.2" y="197" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="446.24" y="207.5" ></text>
</g>
<g >
<title>perf_ctx_disable (53,394,072 samples, 0.19%)</title><rect x="185.9" y="341" width="2.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="188.86" y="351.5" ></text>
</g>
<g >
<title>do_wp_page (23,147,819 samples, 0.08%)</title><rect x="597.4" y="197" width="1.0" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="600.41" y="207.5" ></text>
</g>
<g >
<title>apparmor_capable (22,851,688 samples, 0.08%)</title><rect x="885.2" y="277" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="888.20" y="287.5" ></text>
</g>
<g >
<title>____fput (40,543,961 samples, 0.14%)</title><rect x="19.8" y="485" width="1.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="22.76" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,218,730 samples, 0.02%)</title><rect x="643.3" y="389" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="646.26" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (4,639,594 samples, 0.02%)</title><rect x="585.3" y="149" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="588.35" y="159.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,071,223 samples, 0.01%)</title><rect x="583.5" y="149" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="586.47" y="159.5" ></text>
</g>
<g >
<title>sched_clock (5,078,352 samples, 0.02%)</title><rect x="145.8" y="325" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="148.84" y="335.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (4,656,908 samples, 0.02%)</title><rect x="643.9" y="341" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="646.95" y="351.5" ></text>
</g>
<g >
<title>exit_files (388,329,875 samples, 1.36%)</title><rect x="21.9" y="485" width="16.0" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="24.92" y="495.5" ></text>
</g>
<g >
<title>mod_memcg_state (4,521,299 samples, 0.02%)</title><rect x="212.3" y="309" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="215.30" y="319.5" ></text>
</g>
<g >
<title>bpf_seq_read (1,516,006,429 samples, 5.30%)</title><rect x="414.9" y="293" width="62.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="417.90" y="303.5" >bpf_se..</text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (4,621,210 samples, 0.02%)</title><rect x="494.0" y="469" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="496.97" y="479.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (63,390,551 samples, 0.22%)</title><rect x="185.6" y="373" width="2.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="188.57" y="383.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (8,408,094 samples, 0.03%)</title><rect x="409.1" y="453" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="412.10" y="463.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,008,065 samples, 0.02%)</title><rect x="169.3" y="405" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="172.33" y="415.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (5,813,989 samples, 0.02%)</title><rect x="190.4" y="309" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="193.41" y="319.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (95,059,540 samples, 0.33%)</title><rect x="797.9" y="213" width="3.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="800.86" y="223.5" ></text>
</g>
<g >
<title>clear_page_erms (25,954,186 samples, 0.09%)</title><rect x="1186.3" y="325" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1189.35" y="335.5" ></text>
</g>
<g >
<title>os.(*File).Read (785,756,718 samples, 2.75%)</title><rect x="519.8" y="469" width="32.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="522.80" y="479.5" >os..</text>
</g>
<g >
<title>runtime.gcBgMarkWorker.func2 (2,746,898,434 samples, 9.60%)</title><rect x="251.5" y="581" width="113.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="254.49" y="591.5" >runtime.gcBgM..</text>
</g>
<g >
<title>handle_pte_fault (6,172,373 samples, 0.02%)</title><rect x="588.8" y="229" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="591.75" y="239.5" ></text>
</g>
<g >
<title>runtime.scanblock (9,125,060 samples, 0.03%)</title><rect x="1170.1" y="261" width="0.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1173.06" y="271.5" ></text>
</g>
<g >
<title>call_rcu (2,966,137 samples, 0.01%)</title><rect x="99.0" y="341" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="101.96" y="351.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (191,870,992 samples, 0.67%)</title><rect x="401.5" y="469" width="7.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="404.54" y="479.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (5,407,542 samples, 0.02%)</title><rect x="766.9" y="197" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="769.94" y="207.5" ></text>
</g>
<g >
<title>kmem_cache_free (451,448,830 samples, 1.58%)</title><rect x="194.6" y="389" width="18.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="197.57" y="399.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,592,815,324 samples, 5.56%)</title><rect x="412.3" y="389" width="65.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="415.34" y="399.5" >runtime..</text>
</g>
<g >
<title>do_user_addr_fault (3,008,660 samples, 0.01%)</title><rect x="356.0" y="453" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="359.05" y="463.5" ></text>
</g>
<g >
<title>do_anonymous_page (65,778,408 samples, 0.23%)</title><rect x="627.8" y="357" width="2.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="630.80" y="367.5" ></text>
</g>
<g >
<title>runtime.stopm (5,026,046 samples, 0.02%)</title><rect x="364.8" y="501" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="367.80" y="511.5" ></text>
</g>
<g >
<title>runtime.gosched_m (4,474,519 samples, 0.02%)</title><rect x="365.0" y="549" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="368.05" y="559.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (8,717,991 samples, 0.03%)</title><rect x="608.1" y="293" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="611.05" y="303.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (63,372,481 samples, 0.22%)</title><rect x="865.8" y="213" width="2.6" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="868.77" y="223.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (3,090,106 samples, 0.01%)</title><rect x="597.7" y="149" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="600.70" y="159.5" ></text>
</g>
<g >
<title>__rcu_read_lock (13,119,900 samples, 0.05%)</title><rect x="806.6" y="197" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="809.63" y="207.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,841,740 samples, 0.01%)</title><rect x="230.0" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="232.97" y="399.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,695,409 samples, 0.01%)</title><rect x="878.8" y="229" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="881.84" y="239.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (3,093,798 samples, 0.01%)</title><rect x="614.5" y="373" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="617.50" y="383.5" ></text>
</g>
<g >
<title>__slab_free (2,444,450 samples, 0.01%)</title><rect x="244.5" y="213" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="247.48" y="223.5" ></text>
</g>
<g >
<title>do_exit (5,607,602,296 samples, 19.59%)</title><rect x="19.8" y="501" width="231.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="22.76" y="511.5" >do_exit</text>
</g>
<g >
<title>runtime.mallocgc (4,630,903 samples, 0.02%)</title><rect x="590.9" y="293" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="593.89" y="303.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (5,409,806 samples, 0.02%)</title><rect x="771.4" y="181" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="774.37" y="191.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (16,116,352 samples, 0.06%)</title><rect x="520.1" y="309" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="523.05" y="319.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (3,758,747 samples, 0.01%)</title><rect x="554.0" y="485" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="557.00" y="495.5" ></text>
</g>
<g >
<title>native_write_msr (47,976,900 samples, 0.17%)</title><rect x="186.1" y="309" width="2.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="189.09" y="319.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (6,193,181 samples, 0.02%)</title><rect x="14.4" y="581" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="17.35" y="591.5" ></text>
</g>
<g >
<title>__do_softirq (24,470,405 samples, 0.09%)</title><rect x="69.7" y="373" width="1.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="72.65" y="383.5" ></text>
</g>
<g >
<title>__kmalloc_node (11,532,422 samples, 0.04%)</title><rect x="884.2" y="277" width="0.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="887.18" y="287.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (5,582,924 samples, 0.02%)</title><rect x="17.7" y="405" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="20.74" y="415.5" ></text>
</g>
<g >
<title>schedule (35,914,855 samples, 0.13%)</title><rect x="16.7" y="453" width="1.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="19.73" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4,659,958 samples, 0.02%)</title><rect x="590.7" y="261" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="593.67" y="271.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (101,426,555 samples, 0.35%)</title><rect x="637.4" y="389" width="4.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="640.38" y="399.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (33,631,277 samples, 0.12%)</title><rect x="501.9" y="533" width="1.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="504.86" y="543.5" ></text>
</g>
<g >
<title>__irqentry_text_end (7,714,633 samples, 0.03%)</title><rect x="997.2" y="357" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1000.22" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (5,363,998 samples, 0.02%)</title><rect x="1171.8" y="469" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1174.75" y="479.5" ></text>
</g>
<g >
<title>do_anonymous_page (10,053,222 samples, 0.04%)</title><rect x="614.0" y="421" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="616.96" y="431.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (170,694,434 samples, 0.60%)</title><rect x="536.1" y="277" width="7.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="539.10" y="287.5" ></text>
</g>
<g >
<title>task_work_add (16,482,821 samples, 0.06%)</title><rect x="33.2" y="421" width="0.7" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="36.18" y="431.5" ></text>
</g>
<g >
<title>schedule (3,261,765 samples, 0.01%)</title><rect x="261.9" y="437" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="264.90" y="447.5" ></text>
</g>
<g >
<title>reflect.Value.Field (101,998,523 samples, 0.36%)</title><rect x="395.7" y="469" width="4.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="398.69" y="479.5" ></text>
</g>
<g >
<title>runtime.scanobject (1,917,523,687 samples, 6.70%)</title><rect x="285.1" y="549" width="79.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="288.06" y="559.5" >runtime.s..</text>
</g>
<g >
<title>do_syscall_64 (4,639,594 samples, 0.02%)</title><rect x="585.3" y="165" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="588.35" y="175.5" ></text>
</g>
<g >
<title>__slab_free (4,108,037 samples, 0.01%)</title><rect x="159.5" y="101" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="162.54" y="111.5" ></text>
</g>
<g >
<title>iput (3,569,699 samples, 0.01%)</title><rect x="224.5" y="405" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="227.53" y="415.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,952,787 samples, 0.02%)</title><rect x="614.1" y="405" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="617.09" y="415.5" ></text>
</g>
<g >
<title>sched_clock_cpu (20,888,540 samples, 0.07%)</title><rect x="149.2" y="325" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="152.17" y="335.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (9,922,029 samples, 0.03%)</title><rect x="858.3" y="117" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="861.27" y="127.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,851,233 samples, 0.01%)</title><rect x="584.9" y="293" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="587.93" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (4,466,588 samples, 0.02%)</title><rect x="612.4" y="389" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="615.44" y="399.5" ></text>
</g>
<g >
<title>___slab_alloc (9,902,104 samples, 0.03%)</title><rect x="916.4" y="229" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="919.36" y="239.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (5,836,749 samples, 0.02%)</title><rect x="761.5" y="117" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="764.50" y="127.5" ></text>
</g>
<g >
<title>psi_task_switch (57,842,289 samples, 0.20%)</title><rect x="188.3" y="389" width="2.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="191.31" y="399.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (6,078,815 samples, 0.02%)</title><rect x="401.3" y="469" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="404.29" y="479.5" ></text>
</g>
<g >
<title>_get_random_bytes (4,649,493 samples, 0.02%)</title><rect x="763.1" y="117" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="766.06" y="127.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (3,093,129 samples, 0.01%)</title><rect x="584.6" y="245" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="587.55" y="255.5" ></text>
</g>
<g >
<title>__irqentry_text_end (12,351,670 samples, 0.04%)</title><rect x="626.9" y="453" width="0.6" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="629.94" y="463.5" ></text>
</g>
<g >
<title>__folio_alloc (6,623,032 samples, 0.02%)</title><rect x="606.8" y="165" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="609.80" y="175.5" ></text>
</g>
<g >
<title>__x64_sys_rt_sigreturn (5,299,760 samples, 0.02%)</title><rect x="1188.4" y="469" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1191.44" y="479.5" ></text>
</g>
<g >
<title>__kmalloc_node (19,167,135 samples, 0.07%)</title><rect x="761.1" y="149" width="0.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="764.06" y="159.5" ></text>
</g>
<g >
<title>strings.LastIndex (13,948,896 samples, 0.05%)</title><rect x="571.9" y="293" width="0.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="574.90" y="303.5" ></text>
</g>
<g >
<title>rcu_core_si (24,515,274 samples, 0.09%)</title><rect x="94.7" y="309" width="1.0" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="97.73" y="319.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,654,642 samples, 0.02%)</title><rect x="21.2" y="437" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="24.24" y="447.5" ></text>
</g>
<g >
<title>runtime.makeslice (122,419,303 samples, 0.43%)</title><rect x="553.6" y="501" width="5.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="556.65" y="511.5" ></text>
</g>
<g >
<title>__alloc_pages (16,172,808 samples, 0.06%)</title><rect x="745.0" y="117" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="747.97" y="127.5" ></text>
</g>
<g >
<title>irqentry_exit (3,335,501 samples, 0.01%)</title><rect x="607.1" y="277" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="610.13" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,602,144 samples, 0.02%)</title><rect x="636.7" y="229" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="639.67" y="239.5" ></text>
</g>
<g >
<title>file_free_rcu (11,322,187 samples, 0.04%)</title><rect x="223.8" y="229" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="226.83" y="239.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (1,633,873,830 samples, 5.71%)</title><rect x="503.4" y="533" width="67.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="506.43" y="543.5" >github...</text>
</g>
<g >
<title>bpf_map_seq_show (5,438,234 samples, 0.02%)</title><rect x="414.7" y="293" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="417.68" y="303.5" ></text>
</g>
<g >
<title>put_pid (3,441,216 samples, 0.01%)</title><rect x="248.9" y="453" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="251.93" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (12,891,182 samples, 0.05%)</title><rect x="485.9" y="373" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="488.89" y="383.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (16,901,949 samples, 0.06%)</title><rect x="890.9" y="309" width="0.7" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="893.89" y="319.5" ></text>
</g>
<g >
<title>__free_one_page (7,727,722 samples, 0.03%)</title><rect x="162.0" y="69" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="165.00" y="79.5" ></text>
</g>
<g >
<title>rcu_core_si (8,747,340 samples, 0.03%)</title><rect x="244.3" y="293" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="247.33" y="303.5" ></text>
</g>
<g >
<title>shuffle_freelist (24,693,344 samples, 0.09%)</title><rect x="745.8" y="133" width="1.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="748.79" y="143.5" ></text>
</g>
<g >
<title>rmqueue (14,478,528 samples, 0.05%)</title><rect x="858.1" y="133" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="861.11" y="143.5" ></text>
</g>
<g >
<title>exc_page_fault (2,966,455 samples, 0.01%)</title><rect x="598.9" y="309" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="601.93" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (5,108,001 samples, 0.02%)</title><rect x="600.5" y="261" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="603.52" y="271.5" ></text>
</g>
<g >
<title>security_file_free (250,794,003 samples, 0.88%)</title><rect x="235.6" y="437" width="10.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="238.61" y="447.5" ></text>
</g>
<g >
<title>kvmalloc_node (11,606,636 samples, 0.04%)</title><rect x="837.5" y="229" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="840.53" y="239.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (19,756,127 samples, 0.07%)</title><rect x="494.2" y="389" width="0.8" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="497.16" y="399.5" ></text>
</g>
<g >
<title>security_file_free (29,624,917 samples, 0.10%)</title><rect x="249.1" y="453" width="1.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="252.07" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,571,832 samples, 0.01%)</title><rect x="175.7" y="357" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="178.72" y="367.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (15,783,740 samples, 0.06%)</title><rect x="917.7" y="277" width="0.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="920.72" y="287.5" ></text>
</g>
<g >
<title>__do_softirq (2,905,151 samples, 0.01%)</title><rect x="246.5" y="373" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="249.48" y="383.5" ></text>
</g>
<g >
<title>migrate_enable (11,452,212 samples, 0.04%)</title><rect x="550.6" y="261" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="553.58" y="271.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (6,038,990 samples, 0.02%)</title><rect x="628.2" y="309" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="631.24" y="319.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (263,475,340 samples, 0.92%)</title><rect x="523.9" y="277" width="10.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="526.93" y="287.5" ></text>
</g>
<g >
<title>amd_clear_divider (12,329,391 samples, 0.04%)</title><rect x="925.5" y="357" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="928.54" y="367.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (47,188,683 samples, 0.16%)</title><rect x="576.1" y="309" width="1.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="579.08" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (13,941,509 samples, 0.05%)</title><rect x="579.1" y="213" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="582.07" y="223.5" ></text>
</g>
<g >
<title>__irqentry_text_end (8,542,810 samples, 0.03%)</title><rect x="565.7" y="501" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="568.66" y="511.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (4,630,538 samples, 0.02%)</title><rect x="542.8" y="245" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="545.79" y="255.5" ></text>
</g>
<g >
<title>runtime.makemap (3,075,912 samples, 0.01%)</title><rect x="603.1" y="341" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="606.08" y="351.5" ></text>
</g>
<g >
<title>runtime.sweepone (233,172,718 samples, 0.81%)</title><rect x="365.2" y="581" width="9.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="368.23" y="591.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,888,061 samples, 0.01%)</title><rect x="577.7" y="165" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="580.67" y="175.5" ></text>
</g>
<g >
<title>runtime.bgscavenge (3,186,425 samples, 0.01%)</title><rect x="374.9" y="597" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="377.87" y="607.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (7,745,128 samples, 0.03%)</title><rect x="10.1" y="549" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.10" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,971,388 samples, 0.01%)</title><rect x="443.2" y="245" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="446.24" y="255.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (5,407,383 samples, 0.02%)</title><rect x="556.4" y="421" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="559.44" y="431.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (46,199,320 samples, 0.16%)</title><rect x="644.4" y="437" width="1.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="647.40" y="447.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,604,781 samples, 0.01%)</title><rect x="200.1" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="203.07" y="383.5" ></text>
</g>
<g >
<title>psi_task_switch (2,952,019 samples, 0.01%)</title><rect x="18.0" y="421" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="20.97" y="431.5" ></text>
</g>
<g >
<title>fput (18,808,844 samples, 0.07%)</title><rect x="36.9" y="453" width="0.8" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="39.90" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (3,079,973 samples, 0.01%)</title><rect x="787.8" y="117" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="790.83" y="127.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (41,809,111 samples, 0.15%)</title><rect x="1169.3" y="341" width="1.7" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1172.27" y="351.5" ></text>
</g>
<g >
<title>file_free_rcu (13,892,530 samples, 0.05%)</title><rect x="69.7" y="309" width="0.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="72.74" y="319.5" ></text>
</g>
<g >
<title>runtime.efaceeq (6,232,399 samples, 0.02%)</title><rect x="406.2" y="437" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="409.22" y="447.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (14,231,298 samples, 0.05%)</title><rect x="143.7" y="309" width="0.6" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="146.68" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (16,294,042 samples, 0.06%)</title><rect x="575.3" y="277" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="578.35" y="287.5" ></text>
</g>
<g >
<title>mod_node_page_state (3,097,037 samples, 0.01%)</title><rect x="860.7" y="181" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="863.74" y="191.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,740,575 samples, 0.01%)</title><rect x="461.4" y="261" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="464.43" y="271.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (8,387,511 samples, 0.03%)</title><rect x="961.2" y="389" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="964.16" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (6,943,075 samples, 0.02%)</title><rect x="87.1" y="421" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="90.11" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,998,337 samples, 0.02%)</title><rect x="589.1" y="293" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="592.13" y="303.5" ></text>
</g>
<g >
<title>rcu_do_batch (211,594,691 samples, 0.74%)</title><rect x="155.6" y="277" width="8.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="158.65" y="287.5" ></text>
</g>
<g >
<title>__radix_tree_delete (45,418,937 samples, 0.16%)</title><rect x="97.2" y="373" width="1.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="100.21" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,945,677 samples, 0.01%)</title><rect x="116.2" y="325" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="119.21" y="335.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,027,710 samples, 0.01%)</title><rect x="1188.7" y="469" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1191.66" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,766,083 samples, 0.02%)</title><rect x="206.4" y="325" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="209.36" y="335.5" ></text>
</g>
<g >
<title>module_put (2,502,988 samples, 0.01%)</title><rect x="248.3" y="453" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="251.32" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,026,163 samples, 0.01%)</title><rect x="1168.1" y="309" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1171.13" y="319.5" ></text>
</g>
<g >
<title>chacha_block_generic (3,087,273 samples, 0.01%)</title><rect x="763.1" y="69" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="766.12" y="79.5" ></text>
</g>
<g >
<title>allocate_slab (190,433,141 samples, 0.67%)</title><rect x="787.6" y="181" width="7.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="790.55" y="191.5" ></text>
</g>
<g >
<title>_raw_spin_lock (29,656,762 samples, 0.10%)</title><rect x="225.0" y="421" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="228.03" y="431.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (6,981,063 samples, 0.02%)</title><rect x="202.9" y="309" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="205.88" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (5,664,342 samples, 0.02%)</title><rect x="15.6" y="469" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="18.58" y="479.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,237,621 samples, 0.02%)</title><rect x="552.7" y="389" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="555.72" y="399.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,623,032 samples, 0.02%)</title><rect x="606.8" y="181" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="609.80" y="191.5" ></text>
</g>
<g >
<title>pick_next_task (4,639,608 samples, 0.02%)</title><rect x="13.6" y="405" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="16.58" y="415.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (3,831,878 samples, 0.01%)</title><rect x="614.7" y="357" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="617.66" y="367.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (4,627,753 samples, 0.02%)</title><rect x="711.5" y="325" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="714.49" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,851,233 samples, 0.01%)</title><rect x="584.9" y="245" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="587.93" y="255.5" ></text>
</g>
<g >
<title>file_free_rcu (3,430,875 samples, 0.01%)</title><rect x="206.4" y="213" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="209.36" y="223.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (4,016,074 samples, 0.01%)</title><rect x="149.2" y="293" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="152.19" y="303.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,029,531 samples, 0.01%)</title><rect x="503.1" y="517" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="506.12" y="527.5" ></text>
</g>
<g >
<title>crng_fast_key_erasure (3,087,273 samples, 0.01%)</title><rect x="763.1" y="85" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="766.12" y="95.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (65,601,527 samples, 0.23%)</title><rect x="146.2" y="293" width="2.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="149.23" y="303.5" ></text>
</g>
<g >
<title>runtime.suspendG (61,838,237 samples, 0.22%)</title><rect x="263.0" y="517" width="2.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="265.99" y="527.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (396,478,903 samples, 1.39%)</title><rect x="132.7" y="341" width="16.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="135.65" y="351.5" ></text>
</g>
<g >
<title>runtime.gcBgMarkWorker (2,756,991,335 samples, 9.63%)</title><rect x="251.1" y="613" width="113.6" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="254.08" y="623.5" >runtime.gcBgMa..</text>
</g>
<g >
<title>allocate_slab (382,627,546 samples, 1.34%)</title><rect x="846.4" y="197" width="15.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="849.37" y="207.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (13,004,227 samples, 0.05%)</title><rect x="558.8" y="517" width="0.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="561.82" y="527.5" ></text>
</g>
<g >
<title>runtime.mallocgc (100,291,329 samples, 0.35%)</title><rect x="554.2" y="485" width="4.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="557.15" y="495.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,032,734,846 samples, 3.61%)</title><rect x="841.3" y="261" width="42.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="844.32" y="271.5" >__km..</text>
</g>
<g >
<title>irqentry_exit (5,393,102 samples, 0.02%)</title><rect x="630.7" y="421" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="633.71" y="431.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,008,660 samples, 0.01%)</title><rect x="356.0" y="437" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="359.05" y="447.5" ></text>
</g>
<g >
<title>vma_alloc_folio (10,586,844 samples, 0.04%)</title><rect x="1180.5" y="277" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1183.49" y="287.5" ></text>
</g>
<g >
<title>rcu_do_batch (8,747,340 samples, 0.03%)</title><rect x="244.3" y="261" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="247.33" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (14,482,281 samples, 0.05%)</title><rect x="720.9" y="309" width="0.6" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="723.90" y="319.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (19,827,532 samples, 0.07%)</title><rect x="880.4" y="245" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="883.36" y="255.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (3,083,035 samples, 0.01%)</title><rect x="918.6" y="293" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="921.62" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,236,905 samples, 0.01%)</title><rect x="226.2" y="421" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="229.25" y="431.5" ></text>
</g>
<g >
<title>handle_mm_fault (24,754,838 samples, 0.09%)</title><rect x="614.0" y="469" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="616.96" y="479.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.loadMgObjects (1,014,968,457 samples, 3.55%)</title><rect x="570.8" y="501" width="41.8" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="573.79" y="511.5" >git..</text>
</g>
<g >
<title>runtime.mstart1 (89,226,032 samples, 0.31%)</title><rect x="15.0" y="581" width="3.7" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="18.02" y="591.5" ></text>
</g>
<g >
<title>flush_tlb_func (2,771,953 samples, 0.01%)</title><rect x="611.2" y="117" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="614.18" y="127.5" ></text>
</g>
<g >
<title>tick_program_event (3,610,603 samples, 0.01%)</title><rect x="12.9" y="405" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="15.87" y="415.5" ></text>
</g>
<g >
<title>__do_softirq (5,644,076 samples, 0.02%)</title><rect x="250.7" y="405" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="253.70" y="415.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (24,868,610 samples, 0.09%)</title><rect x="176.3" y="325" width="1.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="179.34" y="335.5" ></text>
</g>
<g >
<title>runtime.scanblock (179,129,287 samples, 0.63%)</title><rect x="277.2" y="517" width="7.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="280.19" y="527.5" ></text>
</g>
<g >
<title>put_cpu_partial (9,450,002 samples, 0.03%)</title><rect x="161.9" y="213" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="164.93" y="223.5" ></text>
</g>
<g >
<title>runtime.memmove (134,124,543 samples, 0.47%)</title><rect x="1183.5" y="517" width="5.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1186.49" y="527.5" ></text>
</g>
<g >
<title>handle_mm_fault (76,058,645 samples, 0.27%)</title><rect x="997.6" y="309" width="3.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1000.60" y="319.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (33,505,646 samples, 0.12%)</title><rect x="488.0" y="341" width="1.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="490.98" y="351.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (5,114,857 samples, 0.02%)</title><rect x="12.2" y="501" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="15.21" y="511.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (50,591,177 samples, 0.18%)</title><rect x="146.6" y="261" width="2.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="149.57" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,506,048 samples, 0.04%)</title><rect x="1001.9" y="229" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1004.86" y="239.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (5,377,994 samples, 0.02%)</title><rect x="958.0" y="373" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="961.04" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,745,190 samples, 0.02%)</title><rect x="250.7" y="469" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="253.70" y="479.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (4,491,684 samples, 0.02%)</title><rect x="924.6" y="325" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="927.61" y="335.5" ></text>
</g>
<g >
<title>do_send_sig_info (10,019,833 samples, 0.04%)</title><rect x="264.8" y="405" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="267.81" y="415.5" ></text>
</g>
<g >
<title>main.main (2,598,162 samples, 0.01%)</title><rect x="375.0" y="597" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="378.03" y="607.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (5,409,509 samples, 0.02%)</title><rect x="661.1" y="405" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="664.10" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (5,971,835 samples, 0.02%)</title><rect x="374.5" y="549" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="377.47" y="559.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (22,703,345 samples, 0.08%)</title><rect x="586.4" y="357" width="1.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="589.43" y="367.5" ></text>
</g>
<g >
<title>kthread_is_per_cpu (2,481,766 samples, 0.01%)</title><rect x="125.3" y="341" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="128.27" y="351.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (13,969,787 samples, 0.05%)</title><rect x="40.0" y="245" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="43.04" y="255.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (5,625,842 samples, 0.02%)</title><rect x="165.4" y="405" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="168.38" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*copier).copy (261,883,660 samples, 0.91%)</title><rect x="587.7" y="341" width="10.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="590.73" y="351.5" ></text>
</g>
<g >
<title>fpu__restore_sig (5,299,760 samples, 0.02%)</title><rect x="1188.4" y="437" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1191.44" y="447.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (3,888,358 samples, 0.01%)</title><rect x="400.1" y="469" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="403.06" y="479.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,766,083 samples, 0.02%)</title><rect x="206.4" y="341" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="209.36" y="351.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (3,034,477 samples, 0.01%)</title><rect x="161.5" y="229" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="164.52" y="239.5" ></text>
</g>
<g >
<title>runtime.makeslice (4,654,992 samples, 0.02%)</title><rect x="561.0" y="517" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="564.04" y="527.5" ></text>
</g>
<g >
<title>__do_softirq (4,654,642 samples, 0.02%)</title><rect x="21.2" y="405" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="24.24" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (282,158,044 samples, 0.99%)</title><rect x="664.1" y="389" width="11.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="667.15" y="399.5" ></text>
</g>
<g >
<title>setup_object (4,623,859 samples, 0.02%)</title><rect x="763.3" y="149" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="766.28" y="159.5" ></text>
</g>
<g >
<title>__slab_free (12,398,672 samples, 0.04%)</title><rect x="161.8" y="229" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="164.84" y="239.5" ></text>
</g>
<g >
<title>runtime.casgstatus (44,007,006 samples, 0.15%)</title><rect x="654.5" y="373" width="1.8" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="657.51" y="383.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (75,988,579 samples, 0.27%)</title><rect x="954.6" y="341" width="3.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="957.63" y="351.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (8,991,614 samples, 0.03%)</title><rect x="600.8" y="309" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="603.82" y="319.5" ></text>
</g>
<g >
<title>reflect.Value.Field (14,461,455 samples, 0.05%)</title><rect x="478.8" y="485" width="0.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="481.79" y="495.5" ></text>
</g>
<g >
<title>llist_add_batch (17,972,578 samples, 0.06%)</title><rect x="144.4" y="325" width="0.7" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="147.36" y="335.5" ></text>
</g>
<g >
<title>runtime.newMarkBits (3,050,872 samples, 0.01%)</title><rect x="486.1" y="309" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="489.08" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.CORERelocate (377,916,183 samples, 1.32%)</title><rect x="570.8" y="389" width="15.6" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="573.85" y="399.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (21,991,741 samples, 0.08%)</title><rect x="809.0" y="181" width="0.9" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="812.04" y="191.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,744,871 samples, 0.01%)</title><rect x="663.6" y="309" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="666.64" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (3,867,729 samples, 0.01%)</title><rect x="1171.4" y="453" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1174.43" y="463.5" ></text>
</g>
<g >
<title>runtime.newobject (20,069,556 samples, 0.07%)</title><rect x="584.0" y="293" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="587.01" y="303.5" ></text>
</g>
<g >
<title>unmap_single_vma (78,302,385 samples, 0.27%)</title><rect x="37.9" y="405" width="3.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="40.93" y="415.5" ></text>
</g>
<g >
<title>__folio_alloc (8,291,755 samples, 0.03%)</title><rect x="1167.7" y="261" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1170.66" y="271.5" ></text>
</g>
<g >
<title>shuffle_freelist (3,891,948 samples, 0.01%)</title><rect x="859.7" y="85" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="862.73" y="95.5" ></text>
</g>
<g >
<title>clear_page_erms (6,137,382 samples, 0.02%)</title><rect x="837.5" y="149" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="840.53" y="159.5" ></text>
</g>
<g >
<title>runtime.gcFlushBgCredit (3,066,060 samples, 0.01%)</title><rect x="364.1" y="565" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="367.11" y="575.5" ></text>
</g>
<g >
<title>ima_file_free (2,937,925 samples, 0.01%)</title><rect x="230.1" y="437" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="233.09" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (38,820,674 samples, 0.14%)</title><rect x="1186.3" y="341" width="1.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1189.28" y="351.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (33,296,687 samples, 0.12%)</title><rect x="12.7" y="469" width="1.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="15.71" y="479.5" ></text>
</g>
<g >
<title>encoding/binary.Read (1,318,072,139 samples, 4.60%)</title><rect x="504.5" y="517" width="54.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="507.49" y="527.5" >encod..</text>
</g>
<g >
<title>runtime.(*mheap).alloc (3,076,923 samples, 0.01%)</title><rect x="494.0" y="453" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="496.97" y="463.5" ></text>
</g>
<g >
<title>__schedule (24,367,952 samples, 0.09%)</title><rect x="13.1" y="421" width="1.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="16.06" y="431.5" ></text>
</g>
<g >
<title>rmqueue (11,328,204 samples, 0.04%)</title><rect x="630.0" y="277" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="633.02" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3,110,046 samples, 0.01%)</title><rect x="778.6" y="245" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="781.60" y="255.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (6,904,135 samples, 0.02%)</title><rect x="1185.9" y="389" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1188.87" y="399.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (3,073,742 samples, 0.01%)</title><rect x="636.7" y="101" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="639.74" y="111.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (2,954,404 samples, 0.01%)</title><rect x="623.7" y="485" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="626.68" y="495.5" ></text>
</g>
<g >
<title>shuffle_freelist (22,229,321 samples, 0.08%)</title><rect x="794.5" y="165" width="0.9" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="797.49" y="175.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (19,167,135 samples, 0.07%)</title><rect x="761.1" y="165" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="764.06" y="175.5" ></text>
</g>
<g >
<title>error_entry (9,111,305 samples, 0.03%)</title><rect x="11.2" y="549" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="14.19" y="559.5" ></text>
</g>
<g >
<title>runtime.gopreempt_m (3,714,614 samples, 0.01%)</title><rect x="1189.7" y="597" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="1192.66" y="607.5" ></text>
</g>
<g >
<title>free_swap_cache (3,105,499 samples, 0.01%)</title><rect x="41.0" y="309" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="44.03" y="319.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (8,555,246 samples, 0.03%)</title><rect x="517.0" y="453" width="0.4" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="520.04" y="463.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,880,135 samples, 0.01%)</title><rect x="210.3" y="341" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="213.29" y="351.5" ></text>
</g>
<g >
<title>rcu_core_si (6,013,335 samples, 0.02%)</title><rect x="244.7" y="325" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="247.69" y="335.5" ></text>
</g>
<g >
<title>runtime.memmove (11,659,823 samples, 0.04%)</title><rect x="591.6" y="309" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="594.56" y="319.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (6,824,876 samples, 0.02%)</title><rect x="14.6" y="565" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="17.62" y="575.5" ></text>
</g>
<g >
<title>__rcu_read_lock (17,604,509 samples, 0.06%)</title><rect x="862.4" y="229" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="865.43" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (25,467,196 samples, 0.09%)</title><rect x="597.3" y="277" width="1.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="600.35" y="287.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (5,925,960 samples, 0.02%)</title><rect x="154.8" y="357" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="157.78" y="367.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (110,832,907 samples, 0.39%)</title><rect x="651.9" y="389" width="4.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="654.85" y="399.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (136,071,516 samples, 0.48%)</title><rect x="741.4" y="197" width="5.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="744.39" y="207.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,841,740 samples, 0.01%)</title><rect x="230.0" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="232.97" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (22,964,649 samples, 0.08%)</title><rect x="636.0" y="357" width="1.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="639.04" y="367.5" ></text>
</g>
<g >
<title>select_task_rq_fair (35,791,773 samples, 0.13%)</title><rect x="125.5" y="341" width="1.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="128.53" y="351.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,237,621 samples, 0.02%)</title><rect x="552.7" y="373" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="555.72" y="383.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,025,450 samples, 0.01%)</title><rect x="244.7" y="261" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="247.74" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (5,988,617 samples, 0.02%)</title><rect x="646.4" y="469" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="649.36" y="479.5" ></text>
</g>
<g >
<title>scheduler_tick (3,090,953 samples, 0.01%)</title><rect x="1156.6" y="213" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1159.63" y="223.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (26,320,437 samples, 0.09%)</title><rect x="1168.1" y="373" width="1.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1171.10" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (23,919,321 samples, 0.08%)</title><rect x="597.4" y="245" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="600.38" y="255.5" ></text>
</g>
<g >
<title>runtime.greyobject (24,837,308 samples, 0.09%)</title><rect x="259.5" y="549" width="1.0" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="262.50" y="559.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (38,074,930 samples, 0.13%)</title><rect x="243.1" y="389" width="1.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="246.12" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (7,078,456 samples, 0.02%)</title><rect x="113.0" y="357" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="115.97" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,987,902 samples, 0.01%)</title><rect x="154.6" y="389" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="157.62" y="399.5" ></text>
</g>
<g >
<title>__schedule (3,554,617 samples, 0.01%)</title><rect x="19.6" y="533" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="22.62" y="543.5" ></text>
</g>
<g >
<title>irqentry_exit (8,183,487 samples, 0.03%)</title><rect x="1188.1" y="469" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1191.10" y="479.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (4,913,847 samples, 0.02%)</title><rect x="213.0" y="373" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="215.98" y="383.5" ></text>
</g>
<g >
<title>enqueue_entity (36,710,692 samples, 0.13%)</title><rect x="128.9" y="293" width="1.5" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="131.89" y="303.5" ></text>
</g>
<g >
<title>__folio_alloc (40,334,531 samples, 0.14%)</title><rect x="1186.3" y="373" width="1.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1189.25" y="383.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1 (1,637,670,266 samples, 5.72%)</title><rect x="503.3" y="549" width="67.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="506.27" y="559.5" >github...</text>
</g>
<g >
<title>__irq_exit_rcu (2,889,056 samples, 0.01%)</title><rect x="212.0" y="293" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="214.98" y="303.5" ></text>
</g>
<g >
<title>bpf_map_release (10,889,427 samples, 0.04%)</title><rect x="245.9" y="453" width="0.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="248.95" y="463.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (222,056,150 samples, 0.78%)</title><rect x="96.6" y="389" width="9.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="99.62" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (6,209,091 samples, 0.02%)</title><rect x="461.6" y="261" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="464.58" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (69,910,914 samples, 0.24%)</title><rect x="646.6" y="469" width="2.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="649.61" y="479.5" ></text>
</g>
<g >
<title>runtime.memhash64 (13,852,658 samples, 0.05%)</title><rect x="407.9" y="421" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="410.93" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,966,455 samples, 0.01%)</title><rect x="598.9" y="229" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="601.93" y="239.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (5,781,588 samples, 0.02%)</title><rect x="245.7" y="405" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="248.71" y="415.5" ></text>
</g>
<g >
<title>queue_work_on (8,110,676 samples, 0.03%)</title><rect x="166.3" y="421" width="0.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="169.30" y="431.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (3,848,441 samples, 0.01%)</title><rect x="661.3" y="405" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="664.32" y="415.5" ></text>
</g>
<g >
<title>runtime.schedule (5,322,270 samples, 0.02%)</title><rect x="364.8" y="533" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="367.80" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (7,522,071 samples, 0.03%)</title><rect x="823.7" y="245" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="826.67" y="255.5" ></text>
</g>
<g >
<title>__mod_memcg_state (4,521,299 samples, 0.02%)</title><rect x="212.3" y="293" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="215.30" y="303.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,224,750 samples, 0.03%)</title><rect x="235.3" y="373" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="238.27" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,108,001 samples, 0.02%)</title><rect x="600.5" y="293" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="603.52" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (18,175,092 samples, 0.06%)</title><rect x="1180.2" y="341" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1183.20" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,906,369 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.42" y="415.5" ></text>
</g>
<g >
<title>__kmalloc_node (37,066,959 samples, 0.13%)</title><rect x="859.1" y="165" width="1.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="862.06" y="175.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (24,470,405 samples, 0.09%)</title><rect x="69.7" y="389" width="1.0" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="72.65" y="399.5" ></text>
</g>
<g >
<title>newidle_balance (2,663,366 samples, 0.01%)</title><rect x="13.6" y="373" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="16.62" y="383.5" ></text>
</g>
<g >
<title>kmem_cache_free (8,497,405 samples, 0.03%)</title><rect x="69.9" y="293" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="72.94" y="303.5" ></text>
</g>
<g >
<title>kmalloc_slab (3,029,284 samples, 0.01%)</title><rect x="860.6" y="165" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="863.62" y="175.5" ></text>
</g>
<g >
<title>folio_add_lru (6,904,135 samples, 0.02%)</title><rect x="1185.9" y="373" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1188.87" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,105,576 samples, 0.01%)</title><rect x="558.4" y="405" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="561.44" y="415.5" ></text>
</g>
<g >
<title>runtime.lock2 (24,005,497 samples, 0.08%)</title><rect x="1157.3" y="341" width="0.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1160.26" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (33,758,893 samples, 0.12%)</title><rect x="635.8" y="405" width="1.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="638.79" y="415.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (242,103,513 samples, 0.85%)</title><rect x="464.4" y="245" width="10.0" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="467.39" y="255.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (28,626,815 samples, 0.10%)</title><rect x="177.9" y="325" width="1.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="180.89" y="335.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (6,221,544 samples, 0.02%)</title><rect x="551.1" y="277" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="554.06" y="287.5" ></text>
</g>
<g >
<title>dentry_free (12,110,776 samples, 0.04%)</title><rect x="226.4" y="421" width="0.5" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="229.40" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (3,067,496 samples, 0.01%)</title><rect x="588.1" y="309" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="591.08" y="319.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,821,503 samples, 0.01%)</title><rect x="490.6" y="485" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="493.56" y="495.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (6,091,208 samples, 0.02%)</title><rect x="740.9" y="197" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="743.87" y="207.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (4,545,574 samples, 0.02%)</title><rect x="1189.1" y="453" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1192.11" y="463.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (6,078,393 samples, 0.02%)</title><rect x="1177.2" y="485" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1180.24" y="495.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (9,788,534 samples, 0.03%)</title><rect x="1000.1" y="165" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1003.08" y="175.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,008,660 samples, 0.01%)</title><rect x="356.0" y="421" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="359.05" y="431.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (12,120,108 samples, 0.04%)</title><rect x="263.8" y="501" width="0.5" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="266.75" y="511.5" ></text>
</g>
<g >
<title>memset_orig (10,864,900 samples, 0.04%)</title><rect x="747.2" y="197" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="750.22" y="207.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (5,608,412,843 samples, 19.59%)</title><rect x="19.8" y="581" width="231.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="22.76" y="591.5" >exit_to_user_mode_prepare</text>
</g>
<g >
<title>rcu_do_batch (13,297,647 samples, 0.05%)</title><rect x="87.6" y="309" width="0.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="90.63" y="319.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (4,602,144 samples, 0.02%)</title><rect x="636.7" y="261" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="639.67" y="271.5" ></text>
</g>
<g >
<title>cache_from_obj (4,896,810 samples, 0.02%)</title><rect x="160.2" y="229" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="163.20" y="239.5" ></text>
</g>
<g >
<title>try_charge_memcg (11,572,276 samples, 0.04%)</title><rect x="878.4" y="213" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="881.37" y="223.5" ></text>
</g>
<g >
<title>kmalloc_slab (4,588,825 samples, 0.02%)</title><rect x="884.0" y="261" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="886.99" y="271.5" ></text>
</g>
<g >
<title>tick_sched_handle (3,744,871 samples, 0.01%)</title><rect x="663.6" y="293" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="666.64" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,436,482 samples, 0.02%)</title><rect x="590.6" y="293" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="593.63" y="303.5" ></text>
</g>
<g >
<title>__dentry_kill (823,488,983 samples, 2.88%)</title><rect x="190.9" y="421" width="33.9" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="193.90" y="431.5" >__..</text>
</g>
<g >
<title>kmem_cache_free (178,369,384 samples, 0.62%)</title><rect x="238.6" y="421" width="7.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="241.59" y="431.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (9,946,542 samples, 0.03%)</title><rect x="606.4" y="117" width="0.4" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="609.39" y="127.5" ></text>
</g>
<g >
<title>do_syscall_64 (775,007,188 samples, 2.71%)</title><rect x="520.0" y="373" width="32.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="523.02" y="383.5" >do..</text>
</g>
<g >
<title>filp_close (3,142,501 samples, 0.01%)</title><rect x="22.0" y="469" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="25.02" y="479.5" ></text>
</g>
<g >
<title>__folio_alloc (3,071,026 samples, 0.01%)</title><rect x="585.0" y="165" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="587.97" y="175.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,981,063 samples, 0.02%)</title><rect x="202.9" y="325" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="205.88" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (5,427,374 samples, 0.02%)</title><rect x="645.7" y="245" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="648.70" y="255.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (3,782,647 samples, 0.01%)</title><rect x="1168.1" y="341" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1171.13" y="351.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (25,411,330 samples, 0.09%)</title><rect x="556.7" y="421" width="1.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="559.67" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign.func1 (1,013,407,623 samples, 3.54%)</title><rect x="570.8" y="453" width="41.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="573.85" y="463.5" >git..</text>
</g>
<g >
<title>__dentry_kill (3,194,431 samples, 0.01%)</title><rect x="61.3" y="437" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="64.30" y="447.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (156,657,915 samples, 0.55%)</title><rect x="116.4" y="293" width="6.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="119.39" y="303.5" ></text>
</g>
<g >
<title>psi_group_change (31,237,840 samples, 0.11%)</title><rect x="188.9" y="373" width="1.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="191.91" y="383.5" ></text>
</g>
<g >
<title>migrate_enable (33,852,480 samples, 0.12%)</title><rect x="474.7" y="245" width="1.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="477.68" y="255.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (3,824,618 samples, 0.01%)</title><rect x="1186.0" y="325" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1188.97" y="335.5" ></text>
</g>
<g >
<title>__update_load_avg_se (3,152,970 samples, 0.01%)</title><rect x="130.2" y="261" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="133.24" y="271.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (13,649,613 samples, 0.05%)</title><rect x="485.9" y="389" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="488.86" y="399.5" ></text>
</g>
<g >
<title>___slab_alloc (407,627,268 samples, 1.42%)</title><rect x="845.5" y="229" width="16.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="848.47" y="239.5" ></text>
</g>
<g >
<title>init_file (415,858,064 samples, 1.45%)</title><rect x="730.6" y="229" width="17.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="733.59" y="239.5" ></text>
</g>
<g >
<title>__slab_free (8,604,483 samples, 0.03%)</title><rect x="204.1" y="245" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="207.08" y="255.5" ></text>
</g>
<g >
<title>futex_wait_queue (2,996,584 samples, 0.01%)</title><rect x="364.9" y="373" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="367.85" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (12,869,150 samples, 0.04%)</title><rect x="1167.5" y="341" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1170.50" y="351.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (5,988,641 samples, 0.02%)</title><rect x="95.5" y="261" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="98.49" y="271.5" ></text>
</g>
<g >
<title>runtime.mallocgc (20,950,263 samples, 0.07%)</title><rect x="602.0" y="325" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="604.97" y="335.5" ></text>
</g>
<g >
<title>pick_next_task_fair (144,025,794 samples, 0.50%)</title><rect x="179.2" y="373" width="6.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="182.25" y="383.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,092,711 samples, 0.01%)</title><rect x="556.5" y="389" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="559.54" y="399.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4,298,751 samples, 0.02%)</title><rect x="663.6" y="357" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="666.62" y="367.5" ></text>
</g>
<g >
<title>seq_write (11,178,968 samples, 0.04%)</title><rect x="473.8" y="213" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="476.81" y="223.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (2,966,137 samples, 0.01%)</title><rect x="99.0" y="325" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="101.96" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (5,277,455 samples, 0.02%)</title><rect x="916.4" y="133" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="919.42" y="143.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,108,001 samples, 0.02%)</title><rect x="600.5" y="277" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="603.52" y="287.5" ></text>
</g>
<g >
<title>update_curr (3,246,088 samples, 0.01%)</title><rect x="17.1" y="373" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="20.12" y="383.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,971,388 samples, 0.01%)</title><rect x="443.2" y="213" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="446.24" y="223.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (89,226,032 samples, 0.31%)</title><rect x="15.0" y="613" width="3.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="18.02" y="623.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (206,626,874 samples, 0.72%)</title><rect x="135.2" y="309" width="8.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="138.16" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (4,387,325,446 samples, 15.33%)</title><rect x="990.6" y="453" width="180.8" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="993.57" y="463.5" >github.com/cilium/ebpf/..</text>
</g>
<g >
<title>idr_get_next (3,125,555 samples, 0.01%)</title><rect x="543.2" y="277" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="546.17" y="287.5" ></text>
</g>
<g >
<title>schedule (2,578,417 samples, 0.01%)</title><rect x="477.7" y="293" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="480.68" y="303.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (6,161,533 samples, 0.02%)</title><rect x="583.4" y="197" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="586.37" y="207.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (23,455,989 samples, 0.08%)</title><rect x="1180.1" y="389" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1183.08" y="399.5" ></text>
</g>
<g >
<title>runtime.park_m (2,968,852 samples, 0.01%)</title><rect x="251.4" y="565" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="254.37" y="575.5" ></text>
</g>
<g >
<title>anon_inode_getfd (14,385,694 samples, 0.05%)</title><rect x="709.3" y="325" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="712.31" y="335.5" ></text>
</g>
<g >
<title>vma_alloc_folio (47,605,830 samples, 0.17%)</title><rect x="628.6" y="341" width="1.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="631.55" y="351.5" ></text>
</g>
<g >
<title>uncharge_folio (3,116,333 samples, 0.01%)</title><rect x="39.6" y="261" width="0.1" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="42.59" y="271.5" ></text>
</g>
<g >
<title>clear_page_erms (2,644,818 samples, 0.01%)</title><rect x="611.4" y="133" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="614.42" y="143.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (6,188,338 samples, 0.02%)</title><rect x="392.6" y="453" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="395.60" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (23,208,762 samples, 0.08%)</title><rect x="1168.1" y="357" width="1.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1171.13" y="367.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,364,296 samples, 0.01%)</title><rect x="1156.9" y="261" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1159.93" y="271.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (6,665,030 samples, 0.02%)</title><rect x="1188.2" y="453" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1191.16" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (4,379,616,141 samples, 15.30%)</title><rect x="990.8" y="437" width="180.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="993.76" y="447.5" >github.com/cilium/ebpf/..</text>
</g>
<g >
<title>encoding/binary.dataSize (5,296,025 samples, 0.02%)</title><rect x="490.8" y="501" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="493.80" y="511.5" ></text>
</g>
<g >
<title>runtime.(*activeSweep).end (2,987,663 samples, 0.01%)</title><rect x="365.5" y="565" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="368.53" y="575.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (3,834,709 samples, 0.01%)</title><rect x="392.4" y="453" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="395.44" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,866,445 samples, 0.01%)</title><rect x="571.7" y="261" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="574.74" y="271.5" ></text>
</g>
<g >
<title>zap_pte_range (59,757,966 samples, 0.21%)</title><rect x="38.7" y="357" width="2.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="41.69" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (2,966,455 samples, 0.01%)</title><rect x="598.9" y="181" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="601.93" y="191.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (161,339,091 samples, 0.56%)</title><rect x="1176.4" y="501" width="6.6" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1179.39" y="511.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1 (1,014,968,457 samples, 3.55%)</title><rect x="570.8" y="533" width="41.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="573.79" y="543.5" >git..</text>
</g>
<g >
<title>check_preempt_curr (25,373,816 samples, 0.09%)</title><rect x="127.2" y="325" width="1.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="130.21" y="335.5" ></text>
</g>
<g >
<title>runtime.newobject (368,194,305 samples, 1.29%)</title><rect x="631.2" y="453" width="15.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="634.15" y="463.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,852,123 samples, 0.01%)</title><rect x="558.4" y="469" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="561.44" y="479.5" ></text>
</g>
<g >
<title>__kmalloc_large_node (6,137,382 samples, 0.02%)</title><rect x="837.5" y="197" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="840.53" y="207.5" ></text>
</g>
<g >
<title>clear_page_erms (2,966,455 samples, 0.01%)</title><rect x="598.9" y="149" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="601.93" y="159.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,008,065 samples, 0.02%)</title><rect x="169.3" y="389" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="172.33" y="399.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (3,328,071 samples, 0.01%)</title><rect x="15.1" y="549" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="18.13" y="559.5" ></text>
</g>
<g >
<title>get_random_u32 (3,065,663 samples, 0.01%)</title><rect x="795.0" y="133" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="798.03" y="143.5" ></text>
</g>
<g >
<title>rcu_core_si (4,654,642 samples, 0.02%)</title><rect x="21.2" y="389" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="24.24" y="399.5" ></text>
</g>
<g >
<title>restore_sigcontext (5,299,760 samples, 0.02%)</title><rect x="1188.4" y="453" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1191.44" y="463.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3,835,567 samples, 0.01%)</title><rect x="265.4" y="485" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="268.38" y="495.5" ></text>
</g>
<g >
<title>rcu_core (225,271,894 samples, 0.79%)</title><rect x="155.1" y="293" width="9.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="158.08" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,876,820 samples, 0.04%)</title><rect x="575.4" y="229" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="578.41" y="239.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,925,960 samples, 0.02%)</title><rect x="154.8" y="341" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="157.78" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (5,943,858 samples, 0.02%)</title><rect x="1164.1" y="421" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1167.08" y="431.5" ></text>
</g>
<g >
<title>__folio_alloc (2,966,455 samples, 0.01%)</title><rect x="598.9" y="197" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="601.93" y="207.5" ></text>
</g>
<g >
<title>runtime.findObject (457,853,353 samples, 1.60%)</title><rect x="317.2" y="533" width="18.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="320.24" y="543.5" ></text>
</g>
<g >
<title>mapgauge.test (28,623,681,827 samples, 100.00%)</title><rect x="10.0" y="645" width="1180.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="13.00" y="655.5" >mapgauge.test</text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (5,265,519 samples, 0.02%)</title><rect x="602.8" y="325" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="605.83" y="335.5" ></text>
</g>
<g >
<title>native_write_msr (165,453,626 samples, 0.58%)</title><rect x="135.4" y="293" width="6.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="138.39" 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];[unknown];[unknown];runtime.memmove;asm_exc_page_fault 1545609
mapgauge.test;[unknown];[unknown];[unknown];[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;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;post_alloc_hook 144760
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime.memmove;error_entry 778643
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 7745128
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_sysvec_apic_timer_interrupt 783052
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;error_entry 4366926
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 763835
mapgauge.test;[unknown];[unknown];[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;call_timer_fn;serial8250_backup_timeout 81976
mapgauge.test;[unknown];[unknown];[unknown];runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.nanotime1.abi0 587088
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_rt_rq_load_avg 587088
mapgauge.test;[unknown];[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 116642
mapgauge.test;[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 2310410
mapgauge.test;[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;error_entry 3096722
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 5274555
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_sysvec_apic_timer_interrupt 656760
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;error_entry 9111305
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;sync_regs 725051
mapgauge.test;[unknown];[unknown];runtime.(*mcentral).grow;runtime.(*mheap).alloc;runtime.systemstack.abi0;runtime.(*mheap).alloc.func1;runtime.(*mheap).allocSpan;runtime.(*mspan).init;entry_SYSCALL_64 778874
mapgauge.test;[unknown];[unknown];runtime.(*mspan).refillAllocCache;entry_SYSCALL_64 781002
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 37852
mapgauge.test;[unknown];[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;raw_notifier_call_chain;notifier_call_chain 46233
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.checkTimersNoP 763179
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm 45268
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;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 49242
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.gcTrigger.test 221097
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.lock2 44528
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.nanotime1.abi0 60541
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.retake 175608
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 1523533
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;[[vdso]] 295823
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;__vdso_clock_gettime 65183
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.gcTrigger.test 266964
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.handoffp 195953
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.lock2 165960
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0 844359
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 636525
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll 86127
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64 104675
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe 56482
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 146670
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 34810
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;__fdget 68590
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 83147
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 1225551
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 179988
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 65117
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;do_epoll_pwait.part.0 67128
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 122574
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 102528
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 404956
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 72968
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 86127
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;try_to_wake_up 64152
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;select_task_rq_fair 60313
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;select_idle_sibling 102868
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;check_preempt_curr;check_preempt_wakeup 269052
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 105593
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;place_entity 174683
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 54198
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 93889
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 195584
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;update_cfs_group 72968
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_queue_wakelist;llist_add_batch 780269
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 663322
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 122562
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;set_next_entity;clear_buddies 122482
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked 779532
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;__x64_sys_getpid 390931
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 71907
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 617117
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;syscall_enter_from_user_mode 45892
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;syscall_exit_to_user_mode 68590
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.signalM 122562
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 520434
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 795415
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 85906
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 51780
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 44476
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 83064
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 91096
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 808256
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 34810
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;profile_signal_perm 921903
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 112914
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 50634
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 168934
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;__rcu_read_unlock 105189
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 89846
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 68590
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;x2apic_send_IPI 58885
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;native_smp_send_reschedule 40339
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;wake_up_state;try_to_wake_up;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 57424
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 78096
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 33083
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;__sigqueue_alloc 44314
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 184242
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;security_task_kill 183402
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;find_task_by_vpid 89577
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;from_kuid_munged;map_id_up 143319
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 52670
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;syscall_return_via_sysret 116259
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.signalM 144917
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.unlock2 134569
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 59205
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;asm_sysvec_call_function_single 67549
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 1264578
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 3786796
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_nanosleep 74695
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 296472
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 903697
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;_copy_from_user 89194
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 51040
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;rep_movs_alternative 220390
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 865265
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_init 231328
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 268747
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 121784
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 124289
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 218138
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 89322
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 79810
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 129487
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 271147
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 335917
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 57158
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;pvclock_clocksource_read_nowd 206124
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 107765
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 90466
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 346437
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 159832
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 70054
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 528929
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 315649
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 59724
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;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 232072
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 1528526
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 945703
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 53545
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 1082504
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 1012204
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 698508
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 587353
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 799737
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 127452
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 109667
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;cpuacct_charge 109086
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 283441
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 61522
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 501010
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 588232
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 199311
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;cgroup_rstat_updated 52132
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 60313
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 380320
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 857425
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 893561
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 216947
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;reweight_entity 668261
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 652569
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 81840
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 81592
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 192636
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 1233382
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 132087
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;_raw_spin_unlock 231300
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 63043
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 204039
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 852627
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 61681
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;__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 68516
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 269484
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;rebalance_domains;load_balance;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 146354
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 156634
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 73010
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 789281
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 61421
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_unlock 63283
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 649936
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;__rcu_read_lock 750779
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 49586
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 105366
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;cpu_util 123420
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 71907
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;cpu_util 104727
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 807645
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;set_next_entity;__update_load_avg_se 665516
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 63346
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;check_cfs_rq_runtime 62145
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 198240
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 76567
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 109770
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 234906
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 135941
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 703334
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 1184522
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;x86_pmu_disable 120472
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 410327
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 1254316
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 145846
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 149349
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 62823
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 73824
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;kvm_sched_clock_read 113205
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 189851
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_rq_lock_nested 99703
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 284692
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 1371017
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 98312
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 275301
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 72293
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 191527
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;schedule 145193
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;amd_clear_divider 54023
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 342408
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;get_timespec64 160285
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 2204555
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 247074
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 413280
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 83513
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 194798
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_safe_stack 1047720
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 1663100
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0 68044
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 5417716
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;error_entry 775465
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;pte_alloc_one;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms 190994
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;flush_tlb_mm_range 104152
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_new_exec;get_random_u64 46700
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;entry_SYSCALL_64 4517543
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;entry_SYSCALL_64_safe_stack 781759
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;runtime.(*fixalloc).alloc;runtime.persistentalloc;runtime.persistentalloc.func1;runtime.persistentalloc1;entry_SYSCALL_64 777139
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;runtime.addspecial;entry_SYSCALL_64_safe_stack 748435
mapgauge.test;[unknown];runtime.(*mcache).nextFree;runtime.(*mcache).refill;runtime.(*mcentral).cacheSpan;runtime.(*mcentral).grow;runtime.(*mspan).initHeapBits;runtime.writeHeapBits.flush;asm_exc_page_fault 782721
mapgauge.test;[unknown];runtime.(*mcache).nextFree;runtime.(*mcache).refill;runtime.(*mcentral).cacheSpan;runtime.(*mcentral).grow;runtime.(*mspan).initHeapBits;runtime/internal/syscall.Syscall6;asm_exc_page_fault 782240
mapgauge.test;[unknown];runtime.(*mcache).nextFree;runtime.(*mcache).refill;runtime.(*mcentral).cacheSpan;runtime.(*mcentral).grow;runtime.(*mspan).initHeapBits;runtime/internal/syscall.Syscall6;error_entry 780899
mapgauge.test;[unknown];runtime.(*mheap).alloc;runtime.systemstack.abi0;runtime.(*mheap).alloc.func1;runtime.(*mheap).allocSpan;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 183402
mapgauge.test;[unknown];runtime.init.0;[unknown];[unknown];runtime.newm;runtime.newm1;runtime.newosproc;runtime.retryOnEAGAIN;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 1
mapgauge.test;[unknown];runtime.mallocgc;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_idle 200453
mapgauge.test;[unknown];runtime.mallocgc;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 226566
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.lock2 80647
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.minit;runtime.minitSignals;runtime.minitSignalStack;runtime.sigaltstack.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 96168
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 1450117
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;[[vdso]] 618467
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;__vdso_clock_gettime 107043
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;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 60363
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.gcTrigger.test 173594
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0 265290
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 3062781
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll 142801
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6 71445
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 1347875
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;ep_poll 892528
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;syscall_exit_to_user_mode 60541
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;syscall_return_via_sysret 780800
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;schedule;__schedule;pick_next_task;pick_next_task_fair;__rcu_read_lock 176112
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 383890
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 45268
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;__x64_sys_futex 147821
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_hash 49242
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 760525
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_queue_wakelist;__smp_call_single_queue;native_send_call_func_single_ipi;native_write_msr 780019
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;syscall_exit_to_user_mode;exit_to_user_mode_prepare 40277
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule 56028
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.lock2 733948
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64 67746
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;__x64_sys_getpid;__task_pid_nr_ns 766407
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 40189
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.signalM 131034
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;__task_pid_nr_ns 63916
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;__rcu_read_unlock 48194
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 83970
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 102953
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;apparmor_task_kill;aa_may_signal 116748
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;apparmor_task_kill;aa_may_signal;profile_signal_perm 53747
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;apparmor_task_kill;get_task_cred 777531
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;_raw_spin_unlock_irqrestore 89972
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 774667
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;inc_rlimit_get_ucounts 109830
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 272063
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;get_obj_cgroup_from_current 94358
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 1224997
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;obj_cgroup_charge;consume_obj_stock 150535
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;complete_signal;kick_process;native_smp_send_reschedule;native_write_msr 52216
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;complete_signal;native_smp_send_reschedule 65407
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;kick_process 930252
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;prepare_signal 87675
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;find_task_by_vpid;idr_find;radix_tree_lookup;__radix_tree_lookup 295112
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;idr_find 82302
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 147821
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;from_kuid_munged 40076
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;do_tkill 781358
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;syscall_exit_to_user_mode 116748
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;syscall_exit_to_user_mode;exit_to_user_mode_prepare 83569
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.unlock2 117867
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 60726
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 2064480
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 3359299
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_nanosleep 72858
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 72083
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 808027
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 664216
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;_copy_from_user 1214960
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 1474505
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 2336835
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 147821
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 660859
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 764559
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 139559
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 342195
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;get_nohz_timer_target 1593077
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 222833
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 700936
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;pvclock_clocksource_read_nowd 44754
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;timerqueue_add 116610
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;_raw_spin_unlock_irqrestore 68651
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 263253
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 315997
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;ktime_get;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 112454
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;kvm_clock_get_cycles 1310418
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;lapic_next_deadline 152002
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 932610
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 520733
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;tick_program_event 809598
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 1770855
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 2955371
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 859009
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_entity 727143
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 2267436
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 344322
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_se 109063
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 90045
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 291173
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 2644429
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;__calc_delta 431010
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 78096
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 92553
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 886016
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 1171323
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 199377
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 510007
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 705015
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_curr 133114
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_load_avg 737177
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_min_vruntime 220064
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 130996
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 216144
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 793183
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;_raw_spin_unlock 60636
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 155053
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 69256
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;__intel_pmu_enable_all.isra.0 84984
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 916605
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_rebalance_domains;update_blocked_averages;__update_blocked_fair 158016
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_rebalance_domains;update_blocked_averages;update_rq_clock;sched_clock 115850
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 24246
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 29656
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 63916
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_ctx_enable 76623
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 208831
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 73770
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 303126
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;__rcu_read_lock 60135
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 453349
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 206828
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;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 296837
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;calculate_imbalance 59394
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 159634
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;update_group_capacity 63916
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;update_sg_lb_stats 146555
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;update_sg_lb_stats;cpu_util 146555
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_queue 59220
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 460684
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_load_avg_cfs_rq 58319
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_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 321768
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_rt_rq_load_avg 159212
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;update_load_avg 684282
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 137161
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_idle 109796
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 774616
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 4156191
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;x86_pmu_disable 652117
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 830558
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_flags_change 72094
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 1362142
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;record_times 67597
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;record_times 195038
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;sched_clock_cpu 89310
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;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 335280
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;update_rq_clock 757006
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;update_rq_clock;sched_clock_cpu 112132
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;update_rq_clock;sched_clock_cpu;sched_clock;kvm_sched_clock_read 410264
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;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 833945
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;pick_next_task 864062
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;raw_spin_rq_lock_nested 115369
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 887373
mapgauge.test;[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 58106
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;hrtimer_nanosleep 127500
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 3600751
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 768445
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 209132
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 662089
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 95261
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;syscall_exit_to_user_mode 154974
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;error_entry 65590
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 4703078
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0 479120
mapgauge.test;[unknown];runtime.wbBufFlush;runtime.systemstack.abi0;runtime.wbBufFlush.func1;runtime.wbBufFlush1;runtime.(*gcWork).putBatch;runtime.getempty;error_entry 752829
mapgauge.test;[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 9317844
mapgauge.test;[unknown];runtime/internal/syscall.Syscall6;error_entry 6819731
mapgauge.test;__switch_to 691859
mapgauge.test;__switch_to_asm 666588
mapgauge.test;__wrgsbase_inactive 653634
mapgauge.test;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out 754502
mapgauge.test;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 755754
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__kmem_cache_alloc_node;__cond_resched;__schedule 661096
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;slab_pre_alloc_hook.constprop.0;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable 606066
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;get_unused_fd_flags;alloc_fd;expand_files;synchronize_rcu;__wait_rcu_gp;wait_for_completion;schedule_timeout;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out 368115
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule 68872
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 79205
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;__rcu_read_unlock 736290
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 741946
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;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 1502880
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;switch_mm_irqs_off 573501
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 35889319
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;file_free_rcu 566486
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 620691
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 594268
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;put_cpu_partial;__unfreeze_partials 620089
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 545725
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;kmem_cache_free 593828
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;radix_tree_node_rcu_free;kmem_cache_free;__slab_free 565745
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 547810
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 11689900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;asm_sysvec_apic_timer_interrupt 104078
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2357411
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3142501
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 21964950
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3142359
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 236172371
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3135837
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3145410
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 16482821
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 52534082
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 21164720
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 18808844
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2357116
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 784361
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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_prepare;__memcg_kmem_uncharge_page;obj_cgroup_uncharge_pages 783669
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2353423
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 17787863
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 756556
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 5416097
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3091471
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2326088
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 780654
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 777305
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 780668
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;__rcu_read_lock 779589
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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_state 777082
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 7006196
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2335101
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;__rcu_read_lock 781232
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;__mod_zone_page_state 773976
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 777760
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1548390
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 4651935
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2310227
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 11659560
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 781228
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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_prepare 760295
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 5435200
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1558017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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_node_page_state 775913
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 768483
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3105499
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run 132476684
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput 652020
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 2112818
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput 340964243
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3913236
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 7865345
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__schedule;psi_task_switch;psi_group_change 536847
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3194431
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 12152614
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1603850
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 26770467
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 27607329
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 542571
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 124497182
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 605761
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__rcu_read_unlock 550530
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 558367
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3510802
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__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 533928
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__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 562252
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2189777
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 4634205
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__rcu_read_lock 104890
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2466595
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 639514
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__free_pages;_raw_spin_trylock 592414
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;kfree 114038
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;slab_update_freelist.isra.0 2341110
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;cache_from_obj 1178381
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1165353
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;mod_objcg_state 656030
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 8388098
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 19409472
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 114543344
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;file_free_rcu 585909
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 1293435
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;__rcu_read_unlock 559739
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 2197980
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 632123
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state 671950
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;obj_cgroup_uncharge;refill_obj_stock 579901
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;radix_tree_node_rcu_free;kmem_cache_free;__slab_free 612643
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;rcu_cblist_dequeue 3704343
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release 252420531
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1735768
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 6943075
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5146394
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;scheduler_tick;task_tick_fair 550929
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 607842
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1171390
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2353574
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1210709
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;cache_from_obj 1715161
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1100749
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5138222
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 76748625
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 13941931
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5805445
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2127235
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 50008224
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 9650314
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair 559587
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 572367
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 6365686
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__slab_free 573952
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3617633
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1652756
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;cache_from_obj 1116229
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2365142
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;refill_stock 561528
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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_update_freelist.isra.0 552196
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;kmem_cache_free 544943
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 604201
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5988641
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;file_free_rcu 544771
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2901130
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 646976
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__slab_free;slab_update_freelist.isra.0 1166439
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;cache_from_obj 666216
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 624649
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;local_clock;local_clock_noinstr;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 567971
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;rcu_cblist_dequeue 1716132
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1176084
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 789690
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 10615755
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 14242540
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 34021585
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 8316525
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 114690
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 437621
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2528516
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 157810775
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 4583898
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 57844028
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 78359551
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3778837
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 11948017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 13917858
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3266900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1808800
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2862073
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 768211
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7078456
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 439461
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1086290
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 10090191
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 51655991
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1162758
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 311452
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2142620
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1120401
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3427310
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3945677
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 520153
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 156657915
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;native_queued_spin_lock_slowpath 533913
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3264586
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 341715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 42012738
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1479544
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 9538158
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1336246
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 308328
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2481766
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 400171
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1924503
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1490388
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 24881006
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 102468
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1048451
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7059771
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2700077
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 4854164
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2243910
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 17138452
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3195003
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 752071
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 421546
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1302917
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 319917
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2128182
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 4043605
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1251680
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7941676
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 12340389
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 543289
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2271231
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 4184250
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3259849
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 102829
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 218046
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7198158
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2592699
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3152970
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 846982
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 99674
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 416263
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 637351
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 523436
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3012863
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 537410
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3508969
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 733398
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 11227413
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1601557
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 12492655
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 211786
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 545781
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 121059
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2373601
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 108480
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 103076
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 108164
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 8770301
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 102091
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 460349
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1572135
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 4625104
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 734230
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 30550108
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 20619604
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 9681362
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5546575
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 165453626
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 35626673
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 14231298
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;call_function_single_prep_ipi 2287635
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 17972578
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 17965195
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5078352
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2623654
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 520635
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1110385
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 8392617
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 50591177
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 6617733
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1609696
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2930890
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1378822
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 314902
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 135713
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 4016074
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 198891
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2115415
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 13580235
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 204880
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 322430
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 687727
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 4462114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 324042
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 35405163
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5085818
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 23923886
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 41307780
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3987902
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_cfs_group 505447
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 551936
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;profile_tick 584030
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;account_process_tick;account_system_time;acct_account_cputime 565364
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;_raw_spin_lock 106308
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 543824
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 551783
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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_curr 107600
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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_curr;update_min_vruntime 622566
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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_load_avg 161333
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;kick_ilb 547928
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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_rq_clock 537048
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;clockevents_program_event;lapic_next_deadline 540793
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__do_softirq 104075
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 648847
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 549679
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 10591594
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__note_gp_changes;rcu_start_this_gp 533059
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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_gp_kthread_wake;swake_up_one 547557
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;radix_tree_node_rcu_free 1322216
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 682777
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1844930
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 43112124
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1802314
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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_unlock 2863545
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 622312
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 27893986
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 12660491
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 168013
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2380982
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 535543
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 633474
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2947585
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;free_slab;__free_slab;__free_pages 620041
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 540411
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 562617
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 11380772
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 4896810
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 9416238
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 552643
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 672232
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 646181
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 11526690
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 566012
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1183267
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 560746
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 675779
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 550677
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 549736
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3034477
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;mod_objcg_state 1214857
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;obj_cgroup_uncharge 1131296
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;kmem_cache_free 675650
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;local_clock;local_clock_noinstr;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 1739458
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2327673
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1722280
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7727722
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 620997
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 49034130
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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_do_batch 547123
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;tcp_orphan_update;tcp_orphan_count_sum 579744
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7990695
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 15298062
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5625842
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3106370
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2310760
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;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 544281
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5251465
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 5517924
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7671142
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;asm_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 128302
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;asm_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 311232
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 65360754
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 102438
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 556935
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__rcu_read_unlock 548632
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1838158
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;mod_objcg_state 559556
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__rcu_read_unlock 561611
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;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 589018
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1251717
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 41334178
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1549480
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput 48560527
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched 16279951
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule 23439115
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 307787
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 101168
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3226206
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 751006
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 115509
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 10000866
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3475066
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3571832
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6388646
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1197182
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3751752
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1209375
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 8701043
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 14958192
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 332854
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4461424
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3528565
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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_common_interrupt;common_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;net_rx_action;__napi_poll;virtnet_poll_tx;free_old_xmit_skbs;napi_consume_skb;skb_release_data;skb_free_head;kmem_cache_free;cache_from_obj 101274
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 127163
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 102236
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 109532
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 108328
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 114548
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 203679
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 115669
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 106091
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;record_times 133261
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;profile_tick 101801
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;ntp_tick_length 107641
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 103707
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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_vsyscall 366066
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;raise_softirq 105140
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 115892
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 109034
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 103002
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 243389
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 154577
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 108259
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 104085
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 106453
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 102044
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 101097
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 159184
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 204792
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 113814
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 140150
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;_raw_spin_unlock_irqrestore 110628
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;ktime_get_update_offsets_now 102650
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 102411
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 100269
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 128446
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 160981
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1495825
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;select_task_rq_fair;select_idle_sibling 105200
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;call_function_single_prep_ipi 103313
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 101640
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 446979
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4480693
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 103353
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3679180
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3066681
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 340796
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 134171
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 267204
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 103482
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 293763
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 537754
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 102590
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 140959
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;discard_slab 162846
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1211542
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 675828
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1544758
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 524577
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 109076
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;refill_stock 120097
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 293292
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 102950
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 178240
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1024597
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 127143
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 127412
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 105757
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 111708
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4821981
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;llist_add_batch 156895
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;ttwu_queue_wakelist 114458
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;find_busiest_group;update_sg_lb_stats 102982
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 413071
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 215212
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity 115899
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;serial8250_backup_timeout;io_serial_out 107960
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;tcp_orphan_update 137989
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;check_preempt_curr 114723
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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_fair 125314
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 115944
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 101648
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 101528
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1255401
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 855382
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2049554
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 13654201
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1747149
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 101695
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1754508
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 20086577
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 202250
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 974585
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2760824
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 872051
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4096279
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 10838299
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 457017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1918347
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 727800
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 319422
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 8483516
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1345820
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 16848239
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 9752628
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 8524010
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2547639
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3188537
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1739867
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1560774
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 7378156
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1340436
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 345269
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 897258
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3315586
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 656659
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2150649
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4174236
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 9265511
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3385719
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 927489
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 99171
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 661425
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4192983
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1474123
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 512667
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 204527
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3692484
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 907846
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 426436
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4879858
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 435303
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 102011
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 47976900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2778396
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 107129
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 928262
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2128447
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 11678309
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2953187
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 29961483
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1276357
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2273291
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 352286
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2123127
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 101725
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 316549
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5813989
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 600972
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 391014
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 218544
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1290743
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 639441
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1054730
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 310904
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 205213
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 618424
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 133300
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 102732
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 311786
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 48055925
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;prepare_task_switch 530378
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 13626700
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 8477142
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 7949773
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1904176
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 893928
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;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 1164153
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 546476
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 596172
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 567106
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 4342070
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;mod_objcg_state 537425
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 133252273
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2604781
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 509619
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 65140159
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 567969
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 620292
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1729630
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;mod_node_page_state 556130
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;slab_update_freelist.isra.0 594370
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;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 630007
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2282665
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1314381
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 4804073
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 873859
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 573020
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 526224
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1726733
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1263092
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 548460
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;_raw_spin_unlock 542771
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1247311
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2936495
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 503140
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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_unref_page 522407
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2028060
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2700720
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 4826412
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch 535502
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1176397
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 101926
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;mod_node_page_state 99179
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1865067
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 115008
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 106085
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 548311
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 118263
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 527276
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1243442
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 43956296
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 1776997
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 555914
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 555247
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 542717
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 610633
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 1724575
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;__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 101617
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 113363
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 101777
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 42767715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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_memcg_lruvec_state 541126
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 45465423
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 572839
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1141297
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 543900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;obj_cgroup_uncharge;refill_obj_stock;refill_stock 570303
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;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 624635
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 675912
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 307134
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1421554
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1314661
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 550326
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 756657
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 32091727
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 671910
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 211380
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 1143862
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 545900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 626382
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;asm_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 572912
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 101782
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2174755
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1570463
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 660103
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 555769
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2672510
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1848789
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 545809
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 634331
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1217479
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 102487
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 548306
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;refill_stock 1614300
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 663262
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 5535649
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;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 547017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;restore_regs_and_return_to_kernel 523972
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 4913847
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1989669
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 18542419
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 49484624
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 5246004
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 9333972
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 565419
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;slab_update_freelist.isra.0 539655
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;mod_objcg_state 1161915
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;local_clock_noinstr 587996
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;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 632231
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2490076
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 166666813
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 536665
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 540332
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1714160
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1674074
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2315515
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;put_cpu_partial;__unfreeze_partials 622530
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages 596638
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;slab_update_freelist.isra.0 544047
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;slab_update_freelist.isra.0 1118855
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1278992
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 605748
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 717097
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;obj_cgroup_uncharge_pages 134531
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 592017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 4933122
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 3569699
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 4113914
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 3322564
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1122393
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 29656762
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 3134900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 102005
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 522705
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 12110776
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 10016392
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 3577785
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 60835521
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 537671
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 589694
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;__slab_free;put_cpu_partial 560926
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1153449
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2937925
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2854224
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 10787606
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 6864095
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1500499
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 4871627
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2454206
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__sysvec_apic_timer_interrupt;hrtimer_interrupt;hrtimer_update_next_event;__hrtimer_next_event_base 551874
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 574463
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__rcu_read_unlock 627766
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 549859
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 602407
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 36669285
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1109868
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2328785
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;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 100820
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 48464611
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;_raw_spin_unlock 1241049
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_adjust.constprop.0 573620
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 616403
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2958868
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;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 544575
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 4104904
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 35890826
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 4676232
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 26547875
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;rcu_sched_clock_irq 104114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 5205572
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 35643535
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 68670737
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1125129
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1251062
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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_unlock_irqrestore 582260
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 515522
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 618684
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 99009
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 534602
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 102979
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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_prepare 502518
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 101186
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 29327590
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 605681
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2309922
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 649701
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1191599
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_trylock 624645
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;slab_update_freelist.isra.0 628206
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;refill_stock 542722
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave;native_queued_spin_lock_slowpath 566559
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1628305
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1160479
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 113800
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;free_slab;__free_slab;__free_pages 589956
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit 634164
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;obj_cgroup_uncharge;refill_obj_stock 582272
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages 1105258
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;radix_tree_node_rcu_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 616629
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1210777
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 18652782
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;put_cpu_partial 99526
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 5781588
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 10889427
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 1914623
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_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 550785
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_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 576790
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_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 629431
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_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 1148145
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 10425567
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 1566829
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 1969277
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 25026639
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_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 595629
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_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 540799
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_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 542455
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_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 621904
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_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 566651
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 2502988
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 12342188
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;put_pid 3441216
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;security_file_free 29624917
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;__fput 9734333
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;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;x86_pmu_disable 101114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;asm_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 1760213
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;asm_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 108905
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;asm_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 662550
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;asm_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 126437
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;asm_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 573478
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;asm_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 668800
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;asm_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 547087
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;asm_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 1196606
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule 701746
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch 108801
mapgauge.test;os_xsave 667641
mapgauge.test;runtime.(*mheap).allocSpan;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 58002
mapgauge.test;runtime.(*mheap).allocSpan;[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 57076
mapgauge.test;runtime.(*mheap).allocSpan;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe 754818
mapgauge.test;runtime.(*mspan).initHeapBits;runtime/internal/syscall.Syscall6;error_entry 784552
mapgauge.test;runtime.check 287316
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;gcWriteBarrier 760031
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.mProf_Flush;runtime.mProf_FlushLocked;runtime.(*bucket).mp 758966
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.prepareFreeWorkbufs 779309
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func2;runtime.gcSweep;runtime.unlock2 757993
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 108696
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 335394
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;runtime.(*spanSetBlockAlloc).alloc 92735
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;runtime.(*spanSetBlockAlloc).alloc;runtime.persistentalloc;runtime.persistentalloc.func1;runtime.persistentalloc1;runtime.sysAlloc;runtime.sysAllocOS;runtime.sysMmap.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;vma_expand;mas_wr_store_entry.isra.0 251467
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;runtime.persistentalloc;runtime.persistentalloc.func1;runtime.persistentalloc1 168856
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked;runtime.(*sysMemStat).add 304755
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.newMarkBits;runtime.newArenaMayUnlock;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 237641
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func4;runtime.forEachP;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;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;check_preempt_wakeup 372080
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;runtime.gcMarkDone.func1.1;runtime.(*wbBuf).reset 423393
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;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 50094
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;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_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 24088
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;syscall_return_via_sysret 25120
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;runtime.preemptall;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe 79795
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func2;runtime.stopTheWorldWithSema;runtime.preemptall;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 79795
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func3;runtime.wbBufFlush1;runtime.findObject 758442
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark 755399
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;gcWriteBarrier;runtime.wbBufFlush;runtime.wbBufFlush.func1;runtime.findObject 760309
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.(*gcControllerState).findRunnableGCWorker 761866
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 576121
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;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;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 109280
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.wakep;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 761276
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.(*gcWork).tryGet 748332
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.casgstatus 753716
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain 148506616
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;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 523991
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;native_write_msr 684483
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;__next_timer_interrupt 757484
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;dequeue_signal;collect_signal 756754
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;psi_task_switch;psi_flags_change 750681
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet 1519423
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.(*workbuf).checknonempty;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_load_avg;__update_load_avg_se 761817
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.putempty;runtime.(*lfstack).push 2219299
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.trygetfull 6726864
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.findObject 27170624
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.findObject;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue 753484
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.gcFlushBgCredit 1520656
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.greyobject 24278807
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.greyobject;asm_sysvec_apic_timer_interrupt 558501
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.heapBits.next 18593466
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.heapBitsForAddr 11659289
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot 756753
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;do_syscall_64 610707
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;entry_SYSCALL_64 1273616
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe 613584
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule 1273643
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule;raw_spin_rq_lock_nested 614962
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 621473
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;pick_next_task 751687
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 3195055
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 1232070
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0;syscall_return_via_sysret 3125728
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.procyield.abi0 11835653
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.scanstack;runtime.(*stackScanState).getPtr 764190
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.scanstack;runtime.(*unwinder).next;runtime.(*unwinder).resolveInternal 757511
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.scanstack;runtime.scanframeworker 754713
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.scanstack;runtime.scanframeworker;runtime.(*stkframe).getStackMap 1492177
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG 2728269
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;[[vdso]] 2469241
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.getpid.abi0;entry_SYSCALL_64 1933273
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe 1887590
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getpid;__task_pid_nr_ns 608506
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_enter_from_user_mode 618139
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 1228553
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.getpid.abi0;entry_SYSCALL_64_safe_stack 1849292
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.getpid.abi0;syscall_return_via_sysret 5174026
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.nanotime1.abi0 2027750
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.nanotime1.abi0;[[vdso]] 10092358
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe 700363
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.tgkill.abi0;entry_SYSCALL_64 2086124
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe 4516123
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill 616903
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;__rcu_read_unlock 1228814
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 644956
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 616195
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 2634549
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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;profile_signal_perm 615026
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;__rcu_read_lock 611567
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 618474
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 620010
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 614251
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 610928
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 676662
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 1225238
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 1833099
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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;x2apic_send_IPI 719993
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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;wake_up_state;try_to_wake_up;__raw_spin_lock_irqsave 614670
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 1257250
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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;__task_pid_nr_ns 617691
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;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 616716
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 3090071
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.tgkill.abi0;syscall_return_via_sysret 3835567
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock 2725458
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock;__irqentry_text_end 359731
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock;runtime.findObject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 124482
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock;runtime.greyobject;asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 93628
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock;runtime.greyobject;runtime.(*gcWork).put;runtime.(*gcWork).init;runtime.getempty;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page 779540
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans 260083289
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues 578906
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;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 760552
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;asm_sysvec_call_function_single 758267
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;native_apic_msr_eoi_write 768361
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;fpregs_assert_state_consistent 715314
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;error_entry 761127
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.findObject 12556190
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.findObject;asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode 756930
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.lock2 759509
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock 121613247
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;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 763452
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;error_entry 769894
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;runtime.findObject 51476290
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;runtime.findObject;__irqentry_text_end 1525475
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;runtime.findObject;asm_sysvec_call_function_single 737179
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;runtime.findObject;asm_sysvec_call_function_single;sysvec_call_function_single;irq_exit_rcu;__irq_exit_rcu;idle_cpu 764517
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;runtime.findObject;error_entry 713347
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;sync_regs 765886
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.scanblock 10365477
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.pollFractionalWorkerExit;__vdso_clock_gettime 732050
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.pollFractionalWorkerExit;runtime.nanotime1.abi0 763928
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject 766337831
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;__irqentry_text_end 3029314
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;irq_exit_rcu 691633
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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 628858
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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 763724
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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_update 764712
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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 756741
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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 763514
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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 763383
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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 760317
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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_cfs_rq 658678
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair 763643
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_call_function_single 766450
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;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 757070
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;native_apic_msr_eoi_write 757580
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_sysvec_call_function_single;sysvec_call_function_single;irq_exit_rcu;__irq_exit_rcu;idle_cpu 759591
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.(*gcWork).put 760706
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject 454192110
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_apic_timer_interrupt;irq_exit_rcu 608444
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;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 759968
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__raw_spin_lock_irqsave 764336
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;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 766694
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject;asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 761801
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject 469430691
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;down_read_trylock 736596
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault 778687
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;__folio_throttle_swaprate 776426
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 761008
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;flush_tlb_func;native_flush_tlb_one_user 629766
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_apic_timer_interrupt 767960
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;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 624356
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;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 764225
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;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 755516
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;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 765524
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;_raw_spin_lock_irq 754618
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;exit_to_user_mode_prepare 760109
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;psi_task_switch;psi_group_change 754519
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode 765688
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;asm_sysvec_reschedule_ipi;kvm_guest_apic_eoi_write 761848
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;error_entry 751706
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put 759214
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty 1507135
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 753198
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio;__mod_lruvec_state;__mod_node_page_state 764610
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 751288
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 739564
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty;error_entry 759193
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty;runtime.putempty;runtime.(*lfstack).push 748200
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next 30595950
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;account_process_tick;account_user_time;acct_account_cputime 756026
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_load_avg;__update_load_avg_se 761938
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;rebalance_domains;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_sg_lb_stats 761590
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next;runtime.heapBitsForAddr 22451207
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBitsForAddr 131961795
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBitsForAddr;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__do_softirq 762139
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBitsForAddr;asm_sysvec_call_function_single 758094
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;sync_regs 2256205
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcFlushBgCredit 3066060
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.scanobject 11980615
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.(*activeSweep).end 753998
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.freeSomeWbufs;runtime.systemstack.abi0;runtime.freeSomeWbufs.func1;runtime.(*mheap).freeManual;runtime.(*mheap).freeSpanLocked;runtime.(*pageAlloc).free;runtime.(*pageAlloc).update;runtime.mergeSummaries 746254
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.freeSomeWbufs;runtime.systemstack.abi0;runtime.freeSomeWbufs.func1;runtime.(*mheap).freeManual;runtime.(*mheap).freeSpanLocked;runtime.(*pageBits).clearRange 123034
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.nanotime1.abi0 105189
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep 108801
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe 909864
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 187305
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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 64152
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity;update_curr;__calc_delta 122564
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity;update_min_vruntime 83147
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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;dequeue_task;dequeue_task_fair;update_load_avg 123998
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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;dequeue_task;set_next_buddy 104085
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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;dequeue_task;update_cfs_group 85906
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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;dequeue_task_fair 54198
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable 750779
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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 763179
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable 84916
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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;psi_task_switch;psi_group_change 759660
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;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_setup;futex_q_lock 60313
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;syscall_return_via_sysret 763179
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.startlockedm;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;load_balance;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 191035
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy 707450
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.goschedImpl;runtime.casgstatus 748944
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.goschedImpl;runtime.findRunnable 754889
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.goschedImpl;runtime.schedule;runtime.execute;runtime.casgstatus 1484329
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.goschedImpl;runtime.schedule;runtime.findRunnable;runtime.globrunqget 738237
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.lock2 748120
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone 7185489
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*activeSweep).end 2987663
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*mheap).nextSpanForSweep 1507932
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*mheap).nextSpanForSweep;runtime.(*spanSet).pop 7522991
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep 195992463
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*atomicHeadTailIndex).incTail 753970
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push 2246369
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;runtime.(*atomicHeadTailIndex).incTail 1503195
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;runtime.(*spanSetBlockAlloc).alloc 759214
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.newMarkBits 2248668
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.newMarkBits;runtime.newArenaMayUnlock 756292
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.newMarkBits;runtime.newArenaMayUnlock;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio 725348
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked;runtime.(*pageAlloc).free;runtime.(*pageAlloc).update 759361
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked;runtime.(*pageAlloc).free;runtime.(*pallocBits).summarize 732063
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.(*mheap).freeSpanLocked;runtime.(*sysMemStat).add 753130
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.lock;runtime.lock2 735330
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.lock;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 755661
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.systemstack.abi0;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2;runtime.lock;runtime.procyield.abi0 2236290
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocker).tryAcquire 3011289
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.sweepone 752823
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;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;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_group_capacity 116589
mapgauge.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment