Skip to content

Instantly share code, notes, and snippets.

@mejedi
Created January 15, 2024 12:39
Show Gist options
  • Save mejedi/970af92e653f5d17ecf3b072866e412e to your computer and use it in GitHub Desktop.
Save mejedi/970af92e653f5d17ecf3b072866e412e 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>asm_exc_page_fault (6,927,023 samples, 0.02%)</title><rect x="614.7" y="309" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="617.71" y="319.5" ></text>
</g>
<g >
<title>runtime.startm (3,648,274 samples, 0.01%)</title><rect x="11.8" y="501" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="14.80" y="511.5" ></text>
</g>
<g >
<title>sched_clock_cpu (7,162,754 samples, 0.02%)</title><rect x="140.5" y="309" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="143.47" y="319.5" ></text>
</g>
<g >
<title>runtime.mallocgc (10,891,426 samples, 0.04%)</title><rect x="1183.6" y="501" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1186.61" y="511.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,108,926 samples, 0.02%)</title><rect x="10.2" y="549" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.17" y="559.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,877,974 samples, 0.01%)</title><rect x="15.4" y="565" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="18.45" y="575.5" ></text>
</g>
<g >
<title>vma_alloc_folio (9,176,029 samples, 0.03%)</title><rect x="570.6" y="357" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="573.63" y="367.5" ></text>
</g>
<g >
<title>crng_fast_key_erasure (3,103,110 samples, 0.01%)</title><rect x="807.4" y="85" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="810.42" y="95.5" ></text>
</g>
<g >
<title>bpf_seq_write (6,227,877 samples, 0.02%)</title><rect x="493.5" y="245" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="496.48" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,786,620 samples, 0.01%)</title><rect x="376.7" y="517" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="379.72" y="527.5" ></text>
</g>
<g >
<title>runtime.greyobject (437,975,791 samples, 1.49%)</title><rect x="359.5" y="533" width="17.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="362.55" y="543.5" ></text>
</g>
<g >
<title>runtime.sysmon (56,284,209 samples, 0.19%)</title><rect x="16.1" y="565" width="2.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="19.15" y="575.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,241,515 samples, 0.02%)</title><rect x="248.9" y="389" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="251.92" y="399.5" ></text>
</g>
<g >
<title>dequeue_task (10,579,946 samples, 0.04%)</title><rect x="17.1" y="421" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="20.10" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (19,064,935 samples, 0.06%)</title><rect x="68.7" y="437" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="71.69" y="447.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (107,998,548 samples, 0.37%)</title><rect x="578.9" y="437" width="4.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="581.90" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,101,678 samples, 0.01%)</title><rect x="593.3" y="229" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="596.33" y="239.5" ></text>
</g>
<g >
<title>os.(*File).Read (1,573,924,706 samples, 5.36%)</title><rect x="433.6" y="453" width="63.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="436.63" y="463.5" >os.(*F..</text>
</g>
<g >
<title>memcg_list_lru_alloc (123,198,955 samples, 0.42%)</title><rect x="822.3" y="197" width="5.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="825.31" y="207.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (7,749,552 samples, 0.03%)</title><rect x="809.4" y="213" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="812.38" y="223.5" ></text>
</g>
<g >
<title>runtime.mallocgc (142,854,216 samples, 0.49%)</title><rect x="1168.4" y="405" width="5.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1171.44" y="415.5" ></text>
</g>
<g >
<title>____fput (5,939,777,339 samples, 20.25%)</title><rect x="45.0" y="469" width="238.9" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="48.03" y="479.5" >____fput</text>
</g>
<g >
<title>refill_obj_stock (5,845,025 samples, 0.02%)</title><rect x="248.5" y="373" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="251.54" y="383.5" ></text>
</g>
<g >
<title>apparmor_capable (91,345,997 samples, 0.31%)</title><rect x="910.9" y="277" width="3.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="913.88" y="287.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,007,707 samples, 0.01%)</title><rect x="92.3" y="405" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="95.35" y="415.5" ></text>
</g>
<g >
<title>rcu_core (21,467,228 samples, 0.07%)</title><rect x="91.5" y="293" width="0.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="94.48" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (26,990,000 samples, 0.09%)</title><rect x="601.1" y="277" width="1.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="604.15" y="287.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,579,718 samples, 0.02%)</title><rect x="939.2" y="325" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="942.16" y="335.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (18,538,206 samples, 0.06%)</title><rect x="773.7" y="133" width="0.7" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="776.68" y="143.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,927,704 samples, 0.01%)</title><rect x="268.1" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="271.09" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (31,852,095 samples, 0.11%)</title><rect x="61.9" y="437" width="1.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="64.89" y="447.5" ></text>
</g>
<g >
<title>free_unref_page (2,960,854 samples, 0.01%)</title><rect x="163.4" y="117" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="166.43" y="127.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,042,711 samples, 0.01%)</title><rect x="630.5" y="469" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="633.50" y="479.5" ></text>
</g>
<g >
<title>select_task_rq_fair (8,819,226 samples, 0.03%)</title><rect x="108.8" y="357" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="111.81" y="367.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (56,480,350 samples, 0.19%)</title><rect x="12.7" y="469" width="2.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="15.68" y="479.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (3,090,164 samples, 0.01%)</title><rect x="15.8" y="565" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="18.80" y="575.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,739,718 samples, 0.04%)</title><rect x="661.1" y="261" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="664.14" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (68,731,222 samples, 0.23%)</title><rect x="12.5" y="517" width="2.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="15.47" y="527.5" ></text>
</g>
<g >
<title>__do_softirq (54,375,560 samples, 0.19%)</title><rect x="187.3" y="309" width="2.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="190.32" y="319.5" ></text>
</g>
<g >
<title>runtime.park_m (3,147,806 samples, 0.01%)</title><rect x="384.4" y="549" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="387.41" y="559.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4,556,601 samples, 0.02%)</title><rect x="677.8" y="325" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="680.76" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (44,652,519 samples, 0.15%)</title><rect x="16.5" y="533" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="19.54" y="543.5" ></text>
</g>
<g >
<title>lru_add_fn (3,852,664 samples, 0.01%)</title><rect x="1186.6" y="341" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1189.58" y="351.5" ></text>
</g>
<g >
<title>runtime.addspecial (3,789,442,289 samples, 12.92%)</title><rect x="1011.2" y="357" width="152.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1014.17" y="367.5" >runtime.addspecial</text>
</g>
<g >
<title>runtime.(*spanSet).push (5,410,098 samples, 0.02%)</title><rect x="652.7" y="373" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="655.70" y="383.5" ></text>
</g>
<g >
<title>runtime.unlock2 (19,644,549 samples, 0.07%)</title><rect x="1162.8" y="341" width="0.8" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1165.76" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (32,959,158 samples, 0.11%)</title><rect x="574.5" y="469" width="1.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="577.51" y="479.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (33,523,979 samples, 0.11%)</title><rect x="507.0" y="437" width="1.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="510.00" y="447.5" ></text>
</g>
<g >
<title>__kmalloc_node (6,238,137 samples, 0.02%)</title><rect x="848.8" y="213" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="851.84" y="223.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (17,318,757 samples, 0.06%)</title><rect x="1171.8" y="357" width="0.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1174.75" y="367.5" ></text>
</g>
<g >
<title>__do_softirq (2,927,704 samples, 0.01%)</title><rect x="268.1" y="341" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="271.09" y="351.5" ></text>
</g>
<g >
<title>runtime.greyobject (18,119,988 samples, 0.06%)</title><rect x="290.4" y="549" width="0.8" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="293.43" y="559.5" ></text>
</g>
<g >
<title>tick_sched_handle (5,997,183 samples, 0.02%)</title><rect x="187.0" y="277" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="189.97" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,960,854 samples, 0.01%)</title><rect x="163.4" y="245" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="166.43" y="255.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (21,467,228 samples, 0.07%)</title><rect x="91.5" y="341" width="0.8" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="94.48" y="351.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (55,738,438 samples, 0.19%)</title><rect x="785.0" y="213" width="2.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="787.96" y="223.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (86,575,408 samples, 0.30%)</title><rect x="533.4" y="485" width="3.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="536.36" y="495.5" ></text>
</g>
<g >
<title>exc_page_fault (12,371,053 samples, 0.04%)</title><rect x="600.5" y="277" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="603.53" y="287.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (7,611,425 samples, 0.03%)</title><rect x="92.0" y="261" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="95.04" y="271.5" ></text>
</g>
<g >
<title>vma_alloc_folio (8,481,725 samples, 0.03%)</title><rect x="629.8" y="405" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="632.78" y="415.5" ></text>
</g>
<g >
<title>wp_page_copy (18,493,482 samples, 0.06%)</title><rect x="616.9" y="181" width="0.7" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="619.86" y="191.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (3,121,821 samples, 0.01%)</title><rect x="511.6" y="485" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="514.61" y="495.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (7,585,489 samples, 0.03%)</title><rect x="562.0" y="277" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="564.95" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (12,932,150 samples, 0.04%)</title><rect x="1181.8" y="373" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1184.80" y="383.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (12,846,057 samples, 0.04%)</title><rect x="186.8" y="325" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="189.78" y="335.5" ></text>
</g>
<g >
<title>runtime.findObject (23,096,187 samples, 0.08%)</title><rect x="580.4" y="373" width="0.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="583.39" y="383.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (9,337,452 samples, 0.03%)</title><rect x="575.9" y="453" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="578.86" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (9,271,101 samples, 0.03%)</title><rect x="593.5" y="309" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="596.46" y="319.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (117,587,967 samples, 0.40%)</title><rect x="671.3" y="405" width="4.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="674.28" y="415.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (6,915,428 samples, 0.02%)</title><rect x="604.1" y="181" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="607.12" y="191.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (21,692,800 samples, 0.07%)</title><rect x="651.6" y="357" width="0.9" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="654.61" y="367.5" ></text>
</g>
<g >
<title>irq_exit_rcu (54,711,823 samples, 0.19%)</title><rect x="187.3" y="341" width="2.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="190.31" y="351.5" ></text>
</g>
<g >
<title>__folio_alloc (31,656,292 samples, 0.11%)</title><rect x="1187.0" y="373" width="1.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1189.95" y="383.5" ></text>
</g>
<g >
<title>anon_inode_getfd (8,903,630 samples, 0.03%)</title><rect x="722.7" y="325" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="725.74" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func2 (25,394,485 samples, 0.09%)</title><rect x="602.4" y="293" width="1.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="605.45" y="303.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (6,517,473 samples, 0.02%)</title><rect x="732.8" y="309" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="735.82" y="319.5" ></text>
</g>
<g >
<title>alloc_pages (132,013,987 samples, 0.45%)</title><rect x="800.1" y="165" width="5.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="803.10" y="175.5" ></text>
</g>
<g >
<title>__sys_bpf (5,570,677,251 samples, 18.99%)</title><rect x="713.5" y="341" width="224.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="716.50" y="351.5" >__sys_bpf</text>
</g>
<g >
<title>mntput_no_expire (46,971,991 samples, 0.16%)</title><rect x="266.3" y="421" width="1.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="269.32" y="431.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (3,963,874 samples, 0.01%)</title><rect x="277.0" y="341" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="279.97" y="351.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (6,772,259 samples, 0.02%)</title><rect x="725.3" y="325" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="728.27" y="335.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,082,955 samples, 0.01%)</title><rect x="605.5" y="245" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="608.48" y="255.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (6,198,373 samples, 0.02%)</title><rect x="15.4" y="581" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="18.45" y="591.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (7,056,898 samples, 0.02%)</title><rect x="12.0" y="501" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="15.00" y="511.5" ></text>
</g>
<g >
<title>runtime.mcall (5,222,100 samples, 0.02%)</title><rect x="520.5" y="549" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="523.48" y="559.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (22,383,008 samples, 0.08%)</title><rect x="616.8" y="293" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="619.80" y="303.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (20,869,193 samples, 0.07%)</title><rect x="1010.3" y="357" width="0.8" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1013.27" y="367.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (571,633,144 samples, 1.95%)</title><rect x="440.9" y="261" width="23.0" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="443.87" y="271.5" >_..</text>
</g>
<g >
<title>runtime.createfing (3,082,799 samples, 0.01%)</title><rect x="1167.8" y="421" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1170.76" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14,698,596 samples, 0.05%)</title><rect x="74.8" y="405" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="77.75" y="415.5" ></text>
</g>
<g >
<title>prepare_task_switch (4,141,635 samples, 0.01%)</title><rect x="14.4" y="405" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="17.44" y="415.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,285,144 samples, 0.01%)</title><rect x="279.0" y="261" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="281.97" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (19,274,303 samples, 0.07%)</title><rect x="616.8" y="229" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="619.83" y="239.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,578,427 samples, 0.02%)</title><rect x="1174.2" y="421" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1177.22" y="431.5" ></text>
</g>
<g >
<title>mod_memcg_state (13,877,431 samples, 0.05%)</title><rect x="891.3" y="197" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="894.26" y="207.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (3,437,658 samples, 0.01%)</title><rect x="19.2" y="501" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="22.17" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (67,521,831 samples, 0.23%)</title><rect x="642.3" y="405" width="2.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="645.29" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock (36,710,277 samples, 0.13%)</title><rect x="158.7" y="389" width="1.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="161.68" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,927,704 samples, 0.01%)</title><rect x="268.1" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="271.09" y="415.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (3,628,029 samples, 0.01%)</title><rect x="248.8" y="373" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="251.78" y="383.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (19,095,382 samples, 0.07%)</title><rect x="919.0" y="309" width="0.7" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="921.97" y="319.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (3,852,664 samples, 0.01%)</title><rect x="1186.6" y="325" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1189.58" y="335.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (2,847,848 samples, 0.01%)</title><rect x="787.4" y="229" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="790.42" y="239.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (6,018,349 samples, 0.02%)</title><rect x="724.8" y="325" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="727.84" y="335.5" ></text>
</g>
<g >
<title>runtime.scanblock (4,570,352 samples, 0.02%)</title><rect x="508.2" y="341" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="511.16" y="351.5" ></text>
</g>
<g >
<title>runtime.memmove (187,351,422 samples, 0.64%)</title><rect x="584.9" y="517" width="7.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="587.89" y="527.5" ></text>
</g>
<g >
<title>handle_pte_fault (10,050,124 samples, 0.03%)</title><rect x="600.6" y="213" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="603.62" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (3,075,413 samples, 0.01%)</title><rect x="1175.7" y="485" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1178.65" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (9,946,778 samples, 0.03%)</title><rect x="185.9" y="373" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="188.92" y="383.5" ></text>
</g>
<g >
<title>__kmalloc_node (24,914,443 samples, 0.08%)</title><rect x="773.5" y="149" width="1.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="776.53" y="159.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (9,749,115 samples, 0.03%)</title><rect x="107.6" y="373" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="110.61" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (3,106,899 samples, 0.01%)</title><rect x="1183.6" y="437" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1186.61" y="447.5" ></text>
</g>
<g >
<title>exc_page_fault (22,383,008 samples, 0.08%)</title><rect x="616.8" y="277" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="619.80" y="287.5" ></text>
</g>
<g >
<title>wp_page_copy (6,955,517 samples, 0.02%)</title><rect x="599.2" y="181" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="602.16" y="191.5" ></text>
</g>
<g >
<title>check_stack_object (4,999,440 samples, 0.02%)</title><rect x="718.3" y="293" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="721.29" y="303.5" ></text>
</g>
<g >
<title>check_mem_access (3,729,977 samples, 0.01%)</title><rect x="628.1" y="197" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="631.11" y="207.5" ></text>
</g>
<g >
<title>irqentry_exit (12,257,139 samples, 0.04%)</title><rect x="591.2" y="469" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="594.20" y="479.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,005,378 samples, 0.01%)</title><rect x="1009.4" y="213" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1012.43" y="223.5" ></text>
</g>
<g >
<title>psi_group_change (43,719,643 samples, 0.15%)</title><rect x="137.0" y="293" width="1.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="140.03" y="303.5" ></text>
</g>
<g >
<title>enqueue_task_fair (2,731,616 samples, 0.01%)</title><rect x="1160.6" y="181" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="1163.59" y="191.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (48,160,786 samples, 0.16%)</title><rect x="463.9" y="261" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="466.86" y="271.5" ></text>
</g>
<g >
<title>get_page_from_freelist (44,690,169 samples, 0.15%)</title><rect x="589.2" y="341" width="1.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="592.22" y="351.5" ></text>
</g>
<g >
<title>runtime.gcenable.func2 (6,491,223 samples, 0.02%)</title><rect x="394.0" y="613" width="0.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="397.00" y="623.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (3,657,196 samples, 0.01%)</title><rect x="574.5" y="373" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="577.54" y="383.5" ></text>
</g>
<g >
<title>cache_from_obj (14,229,780 samples, 0.05%)</title><rect x="279.1" y="405" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="282.14" y="415.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps (13,951,503,837 samples, 47.55%)</title><rect x="628.3" y="565" width="561.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="631.32" y="575.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps</text>
</g>
<g >
<title>__mutex_init (9,732,770 samples, 0.03%)</title><rect x="718.7" y="325" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="721.71" y="335.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (6,751,585 samples, 0.02%)</title><rect x="530.0" y="469" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="533.02" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (18,644,616 samples, 0.06%)</title><rect x="627.0" y="325" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="629.96" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (10,735,831 samples, 0.04%)</title><rect x="231.3" y="405" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="234.34" y="415.5" ></text>
</g>
<g >
<title>runtime.scanblock (3,059,047 samples, 0.01%)</title><rect x="1173.1" y="261" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1176.07" y="271.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (5,246,103 samples, 0.02%)</title><rect x="627.8" y="277" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="630.77" y="287.5" ></text>
</g>
<g >
<title>idr_preload (11,481,266 samples, 0.04%)</title><rect x="725.6" y="325" width="0.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="728.60" y="335.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (98,369,069 samples, 0.34%)</title><rect x="653.4" y="341" width="3.9" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="656.35" y="351.5" ></text>
</g>
<g >
<title>do_check_common (3,729,977 samples, 0.01%)</title><rect x="628.1" y="229" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="631.11" y="239.5" ></text>
</g>
<g >
<title>runtime.efaceeq (6,211,872 samples, 0.02%)</title><rect x="427.6" y="437" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="430.56" y="447.5" ></text>
</g>
<g >
<title>runtime.memhash64 (5,423,067 samples, 0.02%)</title><rect x="615.6" y="293" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="618.61" y="303.5" ></text>
</g>
<g >
<title>runtime.mapassign (110,209,850 samples, 0.38%)</title><rect x="621.2" y="341" width="4.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="624.24" y="351.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (6,589,534,079 samples, 22.46%)</title><rect x="19.3" y="549" width="265.0" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="22.31" y="559.5" >arch_do_signal_or_restart</text>
</g>
<g >
<title>vma_alloc_folio (3,863,220 samples, 0.01%)</title><rect x="599.3" y="165" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="602.29" y="175.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (7,476,343 samples, 0.03%)</title><rect x="892.4" y="245" width="0.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="895.40" y="255.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (4,628,329 samples, 0.02%)</title><rect x="505.2" y="389" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="508.20" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (20,149,863 samples, 0.07%)</title><rect x="651.6" y="325" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="654.61" y="335.5" ></text>
</g>
<g >
<title>madvise_collapse (4,604,476 samples, 0.02%)</title><rect x="652.1" y="149" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="655.15" y="159.5" ></text>
</g>
<g >
<title>runtime.sweepone (34,900,635 samples, 0.12%)</title><rect x="520.7" y="549" width="1.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="523.69" y="559.5" ></text>
</g>
<g >
<title>get_page_from_freelist (7,705,633 samples, 0.03%)</title><rect x="629.8" y="357" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="632.78" y="367.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (40,486,039 samples, 0.14%)</title><rect x="506.7" y="453" width="1.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="509.72" y="463.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (3,799,823 samples, 0.01%)</title><rect x="1189.8" y="613" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1192.85" y="623.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (724,727,765 samples, 2.47%)</title><rect x="939.3" y="357" width="29.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="942.35" y="367.5" >sy..</text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push (5,442,787 samples, 0.02%)</title><rect x="612.0" y="293" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="615.03" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (13,670,004 samples, 0.05%)</title><rect x="678.0" y="389" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="681.03" y="399.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,204,667 samples, 0.02%)</title><rect x="609.2" y="293" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="612.17" y="303.5" ></text>
</g>
<g >
<title>rmqueue (15,778,460 samples, 0.05%)</title><rect x="872.0" y="133" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="874.98" y="143.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,218,941 samples, 0.02%)</title><rect x="628.1" y="309" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="631.11" y="319.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (11,511,763 samples, 0.04%)</title><rect x="405.3" y="469" width="0.5" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="408.34" y="479.5" ></text>
</g>
<g >
<title>rcu_core_si (4,386,486 samples, 0.01%)</title><rect x="279.0" y="293" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="281.96" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (4,584,076 samples, 0.02%)</title><rect x="1178.7" y="517" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1181.66" y="527.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (64,546,737 samples, 0.22%)</title><rect x="534.1" y="469" width="2.6" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="537.09" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (104,651,376 samples, 0.36%)</title><rect x="800.8" y="117" width="4.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="803.78" y="127.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (4,625,398 samples, 0.02%)</title><rect x="617.0" y="133" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="619.96" y="143.5" ></text>
</g>
<g >
<title>bpf_check (4,480,317 samples, 0.02%)</title><rect x="628.1" y="245" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="631.11" y="255.5" ></text>
</g>
<g >
<title>runtime.findRunnable (5,199,888 samples, 0.02%)</title><rect x="394.0" y="501" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="397.00" y="511.5" ></text>
</g>
<g >
<title>mmap_region (4,632,200 samples, 0.02%)</title><rect x="1010.9" y="149" width="0.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="1013.89" y="159.5" ></text>
</g>
<g >
<title>rcu_do_batch (13,591,215 samples, 0.05%)</title><rect x="258.5" y="245" width="0.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="261.55" y="255.5" ></text>
</g>
<g >
<title>send_signal_locked (5,126,184 samples, 0.02%)</title><rect x="294.4" y="389" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="297.37" y="399.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (30,725,742 samples, 0.10%)</title><rect x="139.2" y="261" width="1.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="142.19" y="271.5" ></text>
</g>
<g >
<title>__alloc_pages (3,523,462 samples, 0.01%)</title><rect x="605.9" y="149" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="608.90" y="159.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (17,608,711 samples, 0.06%)</title><rect x="733.4" y="309" width="0.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="736.40" y="319.5" ></text>
</g>
<g >
<title>clear_page_erms (3,887,979 samples, 0.01%)</title><rect x="774.0" y="37" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="776.97" y="47.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (2,735,711 samples, 0.01%)</title><rect x="171.4" y="421" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="174.38" y="431.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,101,678 samples, 0.01%)</title><rect x="593.3" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="596.33" y="287.5" ></text>
</g>
<g >
<title>__sys_bpf (5,218,941 samples, 0.02%)</title><rect x="628.1" y="277" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="631.11" y="287.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (1,006,658,150 samples, 3.43%)</title><rect x="440.0" y="277" width="40.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="443.03" y="287.5" >bpf..</text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (140,827,615 samples, 0.48%)</title><rect x="563.0" y="261" width="5.7" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="566.02" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,003,500 samples, 0.01%)</title><rect x="377.0" y="485" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="379.99" y="495.5" ></text>
</g>
<g >
<title>check_preempt_curr (2,987,463 samples, 0.01%)</title><rect x="119.3" y="341" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="122.26" y="351.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (3,117,892 samples, 0.01%)</title><rect x="438.0" y="277" width="0.1" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="440.97" y="287.5" ></text>
</g>
<g >
<title>sched_clock (7,145,608 samples, 0.02%)</title><rect x="152.8" y="325" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="155.78" y="335.5" ></text>
</g>
<g >
<title>scheduler_tick (3,907,803 samples, 0.01%)</title><rect x="1160.9" y="213" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1163.86" y="223.5" ></text>
</g>
<g >
<title>put_cpu_partial (2,960,854 samples, 0.01%)</title><rect x="163.4" y="213" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="166.43" y="223.5" ></text>
</g>
<g >
<title>error_entry (2,994,212 samples, 0.01%)</title><rect x="584.7" y="501" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="587.74" y="511.5" ></text>
</g>
<g >
<title>idr_get_next (168,144,948 samples, 0.57%)</title><rect x="473.4" y="245" width="6.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="476.42" y="255.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (116,804,378 samples, 0.40%)</title><rect x="1178.8" y="501" width="4.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1181.85" y="511.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (6,915,428 samples, 0.02%)</title><rect x="604.1" y="261" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="607.12" y="271.5" ></text>
</g>
<g >
<title>__update_load_avg_se (11,823,563 samples, 0.04%)</title><rect x="133.6" y="261" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="136.56" y="271.5" ></text>
</g>
<g >
<title>seq_write (7,687,436 samples, 0.03%)</title><rect x="568.3" y="229" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="571.32" y="239.5" ></text>
</g>
<g >
<title>gcWriteBarrier (6,592,213 samples, 0.02%)</title><rect x="619.6" y="341" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="622.59" y="351.5" ></text>
</g>
<g >
<title>wp_page_copy (4,522,319 samples, 0.02%)</title><rect x="1009.4" y="245" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="1012.37" y="255.5" ></text>
</g>
<g >
<title>capable (4,661,482 samples, 0.02%)</title><rect x="725.1" y="325" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="728.08" y="335.5" ></text>
</g>
<g >
<title>runtime.mcall (3,147,806 samples, 0.01%)</title><rect x="384.4" y="565" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="387.41" y="575.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (9,204,348 samples, 0.03%)</title><rect x="772.9" y="101" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="775.94" y="111.5" ></text>
</g>
<g >
<title>irq_exit_rcu (14,595,881 samples, 0.05%)</title><rect x="74.8" y="389" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="77.76" y="399.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (5,573,058 samples, 0.02%)</title><rect x="160.3" y="357" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="163.35" y="367.5" ></text>
</g>
<g >
<title>runtime.suspendG (40,162,735 samples, 0.14%)</title><rect x="293.1" y="517" width="1.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="296.06" y="527.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,628,463 samples, 0.02%)</title><rect x="602.6" y="229" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="605.57" y="239.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (3,120,699 samples, 0.01%)</title><rect x="557.8" y="245" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="560.83" y="255.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,498,335 samples, 0.02%)</title><rect x="393.7" y="549" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="396.67" y="559.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).tryGet (8,521,336 samples, 0.03%)</title><rect x="289.2" y="549" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="292.15" y="559.5" ></text>
</g>
<g >
<title>runtime.mstart0 (56,284,209 samples, 0.19%)</title><rect x="16.1" y="597" width="2.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="19.15" y="607.5" ></text>
</g>
<g >
<title>runtime.bgscavenge (6,491,223 samples, 0.02%)</title><rect x="394.0" y="597" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="397.00" y="607.5" ></text>
</g>
<g >
<title>security_file_free (23,393,451 samples, 0.08%)</title><rect x="283.0" y="453" width="0.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="285.99" y="463.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4,579,718 samples, 0.02%)</title><rect x="939.2" y="309" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="942.16" y="319.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1 (1,748,666,570 samples, 5.96%)</title><rect x="522.1" y="549" width="70.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="525.10" y="559.5" >github...</text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (5,218,941 samples, 0.02%)</title><rect x="628.1" y="341" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="631.11" y="351.5" ></text>
</g>
<g >
<title>runtime.findObject (16,566,417 samples, 0.06%)</title><rect x="289.5" y="549" width="0.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="292.49" y="559.5" ></text>
</g>
<g >
<title>__alloc_pages (13,806,342 samples, 0.05%)</title><rect x="584.0" y="357" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="587.01" y="367.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,573,141,394 samples, 5.36%)</title><rect x="433.7" y="405" width="63.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="436.67" y="415.5" >syscal..</text>
</g>
<g >
<title>do_anonymous_page (13,771,843 samples, 0.05%)</title><rect x="570.4" y="373" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="573.45" y="383.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (4,209,121 samples, 0.01%)</title><rect x="38.1" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="41.12" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,827,362 samples, 0.01%)</title><rect x="16.4" y="501" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="19.39" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4,628,463 samples, 0.02%)</title><rect x="602.6" y="245" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="605.57" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,169,682 samples, 0.02%)</title><rect x="292.3" y="485" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="295.30" y="495.5" ></text>
</g>
<g >
<title>rcu_core_si (18,799,053 samples, 0.06%)</title><rect x="68.7" y="357" width="0.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="71.70" y="367.5" ></text>
</g>
<g >
<title>psi_group_change (4,382,429 samples, 0.01%)</title><rect x="14.7" y="389" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="17.67" y="399.5" ></text>
</g>
<g >
<title>__irqentry_text_end (14,109,837 samples, 0.05%)</title><rect x="1005.8" y="357" width="0.6" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1008.79" y="367.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1 (892,231,430 samples, 3.04%)</title><rect x="592.4" y="533" width="35.9" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="595.43" y="543.5" >git..</text>
</g>
<g >
<title>__irq_exit_rcu (6,117,269 samples, 0.02%)</title><rect x="260.5" y="357" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="263.55" y="367.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,919,110 samples, 0.01%)</title><rect x="249.0" y="341" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="252.02" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (26,990,000 samples, 0.09%)</title><rect x="601.1" y="293" width="1.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="604.15" y="303.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (58,165,295 samples, 0.20%)</title><rect x="625.7" y="341" width="2.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="628.67" y="351.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (16,592,401,837 samples, 56.56%)</title><rect x="522.1" y="581" width="667.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="525.10" y="591.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries</text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (98,369,069 samples, 0.34%)</title><rect x="653.4" y="357" width="3.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="656.35" y="367.5" ></text>
</g>
<g >
<title>array_map_alloc_check (14,320,789 samples, 0.05%)</title><rect x="903.6" y="309" width="0.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="906.63" y="319.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,851,576 samples, 0.01%)</title><rect x="602.6" y="181" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="605.60" y="191.5" ></text>
</g>
<g >
<title>idr_get_next_ul (70,899,866 samples, 0.24%)</title><rect x="558.2" y="245" width="2.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="561.17" y="255.5" ></text>
</g>
<g >
<title>__irqentry_text_end (6,234,649 samples, 0.02%)</title><rect x="641.9" y="453" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="644.95" y="463.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (3,071,010 samples, 0.01%)</title><rect x="652.2" y="101" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="655.21" y="111.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (25,286,631 samples, 0.09%)</title><rect x="151.4" y="261" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="154.36" y="271.5" ></text>
</g>
<g >
<title>vfs_read (783,096,525 samples, 2.67%)</title><rect x="538.3" y="325" width="31.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="541.26" y="335.5" >vf..</text>
</g>
<g >
<title>__irq_exit_rcu (2,988,692 samples, 0.01%)</title><rect x="262.7" y="357" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="265.65" y="367.5" ></text>
</g>
<g >
<title>put_prev_entity (330,047,419 samples, 1.12%)</title><rect x="192.6" y="357" width="13.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="195.62" y="367.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (3,612,115 samples, 0.01%)</title><rect x="198.6" y="309" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="201.59" y="319.5" ></text>
</g>
<g >
<title>queue_work_on (1,574,511,132 samples, 5.37%)</title><rect x="102.2" y="405" width="63.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="105.20" y="415.5" >queue_..</text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (7,001,620 samples, 0.02%)</title><rect x="612.0" y="309" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="614.96" y="319.5" ></text>
</g>
<g >
<title>bpf_map_release (2,274,201,978 samples, 7.75%)</title><rect x="75.3" y="437" width="91.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="78.34" y="447.5" >bpf_map_re..</text>
</g>
<g >
<title>pick_next_task_fair (5,179,673 samples, 0.02%)</title><rect x="14.2" y="389" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="17.20" y="399.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (3,737,753 samples, 0.01%)</title><rect x="561.0" y="245" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="564.02" y="255.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (4,281,352 samples, 0.01%)</title><rect x="606.4" y="117" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="609.36" y="127.5" ></text>
</g>
<g >
<title>rep_movs_alternative (44,327,249 samples, 0.15%)</title><rect x="934.8" y="325" width="1.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="937.76" y="335.5" ></text>
</g>
<g >
<title>runtime.memhash64 (13,951,990 samples, 0.05%)</title><rect x="429.0" y="421" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="432.02" y="431.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.loadMgObjects (892,231,430 samples, 3.04%)</title><rect x="592.4" y="501" width="35.9" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="595.43" y="511.5" >git..</text>
</g>
<g >
<title>clear_page_erms (4,551,000 samples, 0.02%)</title><rect x="1182.0" y="213" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1185.02" y="223.5" ></text>
</g>
<g >
<title>vma_alloc_folio (11,553,596 samples, 0.04%)</title><rect x="617.1" y="165" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="620.14" y="175.5" ></text>
</g>
<g >
<title>__radix_tree_preload (13,561,323 samples, 0.05%)</title><rect x="931.8" y="293" width="0.5" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="934.76" y="303.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (34,234,538 samples, 0.12%)</title><rect x="658.0" y="405" width="1.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="660.95" y="415.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,927,704 samples, 0.01%)</title><rect x="268.1" y="357" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="271.09" y="367.5" ></text>
</g>
<g >
<title>__handle_mm_fault (11,403,563 samples, 0.04%)</title><rect x="1181.8" y="325" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1184.80" y="335.5" ></text>
</g>
<g >
<title>runtime.typehash (7,655,674 samples, 0.03%)</title><rect x="429.6" y="421" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="432.59" y="431.5" ></text>
</g>
<g >
<title>resched_curr (12,716,829 samples, 0.04%)</title><rect x="125.4" y="293" width="0.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="128.38" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (6,238,137 samples, 0.02%)</title><rect x="848.8" y="181" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="851.84" y="191.5" ></text>
</g>
<g >
<title>__handle_mm_fault (63,952,946 samples, 0.22%)</title><rect x="588.5" y="437" width="2.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="591.47" y="447.5" ></text>
</g>
<g >
<title>do_anonymous_page (45,508,169 samples, 0.16%)</title><rect x="1186.4" y="405" width="1.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1189.40" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (9,733,716 samples, 0.03%)</title><rect x="929.2" y="165" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="932.23" y="175.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,101,678 samples, 0.01%)</title><rect x="593.3" y="261" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="596.33" y="271.5" ></text>
</g>
<g >
<title>__do_softirq (18,799,053 samples, 0.06%)</title><rect x="68.7" y="373" width="0.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="71.70" y="383.5" ></text>
</g>
<g >
<title>runtime.gcDrain (2,468,566,783 samples, 8.41%)</title><rect x="284.7" y="565" width="99.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="287.66" y="575.5" >runtime.gcDr..</text>
</g>
<g >
<title>runtime.growslice (116,961,726 samples, 0.40%)</title><rect x="578.6" y="517" width="4.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="581.57" y="527.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (7,968,113 samples, 0.03%)</title><rect x="133.2" y="261" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="136.24" y="271.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (78,820,463 samples, 0.27%)</title><rect x="37.0" y="373" width="3.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="40.03" y="383.5" ></text>
</g>
<g >
<title>__irqentry_text_end (6,134,620 samples, 0.02%)</title><rect x="1185.3" y="501" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1188.25" y="511.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (3,079,886 samples, 0.01%)</title><rect x="676.0" y="405" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="679.04" y="415.5" ></text>
</g>
<g >
<title>kick_process (3,313,686 samples, 0.01%)</title><rect x="294.4" y="341" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="297.42" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (15,373,783 samples, 0.05%)</title><rect x="472.8" y="245" width="0.6" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="475.80" y="255.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3,005,378 samples, 0.01%)</title><rect x="1009.4" y="229" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1012.43" y="239.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (3,090,164 samples, 0.01%)</title><rect x="15.8" y="597" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="18.80" y="607.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (3,007,770 samples, 0.01%)</title><rect x="829.9" y="229" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="832.91" y="239.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,007,707 samples, 0.01%)</title><rect x="92.3" y="373" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="95.35" y="383.5" ></text>
</g>
<g >
<title>__folio_alloc (4,654,711 samples, 0.02%)</title><rect x="627.3" y="181" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="630.33" y="191.5" ></text>
</g>
<g >
<title>memset_orig (62,626,708 samples, 0.21%)</title><rect x="894.2" y="245" width="2.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="897.23" y="255.5" ></text>
</g>
<g >
<title>unmap_page_range (78,820,463 samples, 0.27%)</title><rect x="37.0" y="389" width="3.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="40.03" y="399.5" ></text>
</g>
<g >
<title>_get_random_bytes (6,165,856 samples, 0.02%)</title><rect x="807.3" y="117" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="810.29" y="127.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,971,944 samples, 0.02%)</title><rect x="784.7" y="213" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="787.69" y="223.5" ></text>
</g>
<g >
<title>pick_next_task (3,380,990 samples, 0.01%)</title><rect x="17.7" y="421" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="20.73" y="431.5" ></text>
</g>
<g >
<title>x86_pmu_enable (109,326,787 samples, 0.37%)</title><rect x="181.5" y="341" width="4.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="184.48" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,386,486 samples, 0.01%)</title><rect x="279.0" y="357" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="281.96" y="367.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,684,445 samples, 0.02%)</title><rect x="481.4" y="261" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="484.43" y="271.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (71,218,059 samples, 0.24%)</title><rect x="965.5" y="341" width="2.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="968.48" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,519,417 samples, 0.02%)</title><rect x="783.0" y="197" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="785.97" y="207.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,104,693 samples, 0.01%)</title><rect x="887.8" y="213" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="890.76" y="223.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (2,796,042 samples, 0.01%)</title><rect x="11.6" y="533" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="14.57" y="543.5" ></text>
</g>
<g >
<title>__do_softirq (4,386,486 samples, 0.01%)</title><rect x="279.0" y="309" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="281.96" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,365,810 samples, 0.02%)</title><rect x="604.2" y="149" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="607.18" y="159.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (107,998,548 samples, 0.37%)</title><rect x="578.9" y="421" width="4.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="581.90" y="431.5" ></text>
</g>
<g >
<title>do_user_addr_fault (22,427,481 samples, 0.08%)</title><rect x="629.6" y="485" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="632.60" y="495.5" ></text>
</g>
<g >
<title>setup_object (3,837,677 samples, 0.01%)</title><rect x="759.2" y="117" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="762.21" y="127.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (2,791,280 samples, 0.01%)</title><rect x="12.4" y="517" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="15.36" y="527.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (2,650,245 samples, 0.01%)</title><rect x="241.8" y="229" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="244.85" y="239.5" ></text>
</g>
<g >
<title>get_page_from_freelist (125,175,224 samples, 0.43%)</title><rect x="800.3" y="133" width="5.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="803.35" y="143.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (124,389,373 samples, 0.42%)</title><rect x="378.9" y="533" width="5.0" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="381.88" y="543.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (5,218,941 samples, 0.02%)</title><rect x="628.1" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="631.11" y="383.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (29,318,859 samples, 0.10%)</title><rect x="227.4" y="325" width="1.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="230.41" y="335.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (53,538,059 samples, 0.18%)</title><rect x="673.7" y="389" width="2.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="676.74" y="399.5" ></text>
</g>
<g >
<title>idr_get_next (79,893,907 samples, 0.27%)</title><rect x="558.0" y="261" width="3.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="560.96" y="271.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (18,534,798 samples, 0.06%)</title><rect x="805.4" y="165" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="808.41" y="175.5" ></text>
</g>
<g >
<title>locks_remove_file (4,147,106 samples, 0.01%)</title><rect x="281.0" y="453" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="284.00" y="463.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (5,408,704 samples, 0.02%)</title><rect x="1188.0" y="309" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1191.01" y="319.5" ></text>
</g>
<g >
<title>wp_page_copy (7,598,671 samples, 0.03%)</title><rect x="630.2" y="405" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="633.16" y="415.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,707,578 samples, 0.02%)</title><rect x="258.7" y="213" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="261.71" y="223.5" ></text>
</g>
<g >
<title>sched_clock_cpu (3,017,960 samples, 0.01%)</title><rect x="229.0" y="389" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="231.96" y="399.5" ></text>
</g>
<g >
<title>rb_insert_color (6,864,272 samples, 0.02%)</title><rect x="206.2" y="357" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="209.23" y="367.5" ></text>
</g>
<g >
<title>get_any_partial (6,096,175 samples, 0.02%)</title><rect x="859.2" y="213" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="862.23" y="223.5" ></text>
</g>
<g >
<title>rb_next (3,939,718 samples, 0.01%)</title><rect x="206.5" y="357" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="209.50" y="367.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (6,915,428 samples, 0.02%)</title><rect x="604.1" y="245" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="607.12" y="255.5" ></text>
</g>
<g >
<title>cpuacct_charge (5,490,779 samples, 0.02%)</title><rect x="196.1" y="341" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="199.08" y="351.5" ></text>
</g>
<g >
<title>tick_sched_timer (7,668,483 samples, 0.03%)</title><rect x="186.9" y="293" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="189.91" y="303.5" ></text>
</g>
<g >
<title>runtime.gopark (5,331,408 samples, 0.02%)</title><rect x="394.0" y="565" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="397.00" y="575.5" ></text>
</g>
<g >
<title>kmem_cache_free (163,707,268 samples, 0.56%)</title><rect x="273.3" y="421" width="6.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="276.32" y="431.5" ></text>
</g>
<g >
<title>clear_page_erms (11,518,921 samples, 0.04%)</title><rect x="584.0" y="325" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="587.04" y="335.5" ></text>
</g>
<g >
<title>delete_node (2,629,196 samples, 0.01%)</title><rect x="102.1" y="373" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="105.10" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,025,100 samples, 0.01%)</title><rect x="655.0" y="309" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="658.02" y="319.5" ></text>
</g>
<g >
<title>runtime.greyobject (30,941,767 samples, 0.11%)</title><rect x="581.3" y="373" width="1.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="584.32" y="383.5" ></text>
</g>
<g >
<title>runtime.sysMmap.abi0 (9,265,866 samples, 0.03%)</title><rect x="1010.7" y="261" width="0.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1013.73" y="271.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (107,998,548 samples, 0.37%)</title><rect x="578.9" y="485" width="4.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="581.90" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (6,747,451 samples, 0.02%)</title><rect x="12.0" y="453" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="15.01" y="463.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (5,392,944 samples, 0.02%)</title><rect x="588.7" y="389" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="591.69" y="399.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (137,799,536 samples, 0.47%)</title><rect x="424.6" y="453" width="5.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="427.57" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock (13,016,622 samples, 0.04%)</title><rect x="177.5" y="389" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="180.55" y="399.5" ></text>
</g>
<g >
<title>mod_objcg_state (35,729,478 samples, 0.12%)</title><rect x="888.0" y="213" width="1.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="890.97" y="223.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (98,369,069 samples, 0.34%)</title><rect x="653.4" y="389" width="3.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="656.35" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,414,333,397 samples, 21.86%)</title><rect x="710.5" y="373" width="258.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="713.51" y="383.5" >do_syscall_64</text>
</g>
<g >
<title>check_ptr_to_btf_access (3,729,977 samples, 0.01%)</title><rect x="628.1" y="181" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="631.11" y="191.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (3,069,710 samples, 0.01%)</title><rect x="1175.8" y="485" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1178.78" y="495.5" ></text>
</g>
<g >
<title>array_map_alloc (1,338,328,648 samples, 4.56%)</title><rect x="849.8" y="309" width="53.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="852.80" y="319.5" >array..</text>
</g>
<g >
<title>__handle_mm_fault (14,540,723 samples, 0.05%)</title><rect x="570.4" y="405" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="573.42" y="415.5" ></text>
</g>
<g >
<title>runtime.getempty (19,757,483 samples, 0.07%)</title><rect x="1181.6" y="405" width="0.8" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1184.59" y="415.5" ></text>
</g>
<g >
<title>init_file (413,451,582 samples, 1.41%)</title><rect x="743.7" y="229" width="16.6" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="746.69" y="239.5" ></text>
</g>
<g >
<title>do_group_exit (6,589,534,079 samples, 22.46%)</title><rect x="19.3" y="517" width="265.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="22.31" y="527.5" >do_group_exit</text>
</g>
<g >
<title>kvm_sched_clock_read (30,254,527 samples, 0.10%)</title><rect x="151.2" y="277" width="1.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="154.16" y="287.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,537,765 samples, 0.01%)</title><rect x="260.7" y="277" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="263.65" y="287.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (11,003,194 samples, 0.04%)</title><rect x="85.2" y="421" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="88.19" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,238,137 samples, 0.02%)</title><rect x="848.8" y="165" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="851.84" y="175.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).putBatch (19,757,483 samples, 0.07%)</title><rect x="1181.6" y="421" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1184.59" y="431.5" ></text>
</g>
<g >
<title>mntget (32,860,762 samples, 0.11%)</title><rect x="835.7" y="261" width="1.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="838.71" y="271.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (3,033,604 samples, 0.01%)</title><rect x="1179.5" y="485" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1182.55" y="495.5" ></text>
</g>
<g >
<title>irq_exit_rcu (18,799,053 samples, 0.06%)</title><rect x="68.7" y="405" width="0.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="71.70" y="415.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (8,298,306 samples, 0.03%)</title><rect x="625.2" y="293" width="0.3" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="628.17" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (21,712,267 samples, 0.07%)</title><rect x="91.5" y="389" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="94.47" y="399.5" ></text>
</g>
<g >
<title>get_page_from_freelist (40,005,694 samples, 0.14%)</title><rect x="643.2" y="293" width="1.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="646.22" y="303.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (3,825,804 samples, 0.01%)</title><rect x="512.5" y="501" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="515.50" y="511.5" ></text>
</g>
<g >
<title>handle_mm_fault (83,334,283 samples, 0.28%)</title><rect x="1006.4" y="309" width="3.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1009.39" y="319.5" ></text>
</g>
<g >
<title>alloc_fd (78,904,723 samples, 0.27%)</title><rect x="846.5" y="277" width="3.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="849.48" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,101,678 samples, 0.01%)</title><rect x="593.3" y="309" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="596.33" y="319.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (63,310,611 samples, 0.22%)</title><rect x="842.6" y="277" width="2.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="845.58" y="287.5" ></text>
</g>
<g >
<title>___slab_alloc (5,450,633 samples, 0.02%)</title><rect x="805.6" y="117" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="808.62" y="127.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (5,246,103 samples, 0.02%)</title><rect x="627.8" y="309" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="630.77" y="319.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (108,930,389 samples, 0.37%)</title><rect x="160.3" y="389" width="4.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="163.35" y="399.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (103,357,331 samples, 0.35%)</title><rect x="160.6" y="341" width="4.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="163.57" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (3,500,645 samples, 0.01%)</title><rect x="19.2" y="597" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="22.17" y="607.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).put (6,676,803 samples, 0.02%)</title><rect x="376.9" y="517" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="379.89" y="527.5" ></text>
</g>
<g >
<title>__folio_alloc (9,176,029 samples, 0.03%)</title><rect x="570.6" y="341" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="573.63" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,761,844 samples, 0.02%)</title><rect x="677.8" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="680.76" y="383.5" ></text>
</g>
<g >
<title>file_free_rcu (9,214,862 samples, 0.03%)</title><rect x="74.8" y="293" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="77.78" y="303.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (26,119,150 samples, 0.09%)</title><rect x="505.5" y="405" width="1.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="508.48" y="415.5" ></text>
</g>
<g >
<title>__update_load_avg_se (5,515,355 samples, 0.02%)</title><rect x="131.0" y="277" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="133.99" y="287.5" ></text>
</g>
<g >
<title>rcu_core_si (14,595,881 samples, 0.05%)</title><rect x="74.8" y="341" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="77.76" y="351.5" ></text>
</g>
<g >
<title>dequeue_entity (7,407,795 samples, 0.03%)</title><rect x="13.3" y="373" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="16.31" y="383.5" ></text>
</g>
<g >
<title>exit_mmap (78,820,463 samples, 0.27%)</title><rect x="37.0" y="437" width="3.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="40.03" y="447.5" ></text>
</g>
<g >
<title>runtime.getempty (5,920,574 samples, 0.02%)</title><rect x="376.9" y="501" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="379.89" y="511.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (35,455,375 samples, 0.12%)</title><rect x="512.8" y="469" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="515.85" y="479.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (3,776,432 samples, 0.01%)</title><rect x="759.7" y="197" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="762.70" y="207.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (5,361,983 samples, 0.02%)</title><rect x="1188.4" y="453" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1191.41" y="463.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (35,577,031 samples, 0.12%)</title><rect x="242.2" y="357" width="1.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="245.16" y="367.5" ></text>
</g>
<g >
<title>runtime.deferprocStack (17,813,723 samples, 0.06%)</title><rect x="1176.2" y="485" width="0.7" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1179.21" y="495.5" ></text>
</g>
<g >
<title>clear_page_erms (12,205,335 samples, 0.04%)</title><rect x="873.2" y="53" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="876.21" y="63.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (5,230,293 samples, 0.02%)</title><rect x="792.1" y="245" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="795.15" y="255.5" ></text>
</g>
<g >
<title>__unfreeze_partials (2,960,854 samples, 0.01%)</title><rect x="163.4" y="197" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="166.43" y="207.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (7,772,135 samples, 0.03%)</title><rect x="481.8" y="261" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="484.83" y="271.5" ></text>
</g>
<g >
<title>dequeue_task (15,733,225 samples, 0.05%)</title><rect x="13.2" y="405" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="16.15" y="415.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (7,619,718 samples, 0.03%)</title><rect x="784.4" y="181" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="787.38" y="191.5" ></text>
</g>
<g >
<title>runtime.goschedIfBusy (6,022,159 samples, 0.02%)</title><rect x="384.5" y="581" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="387.53" y="591.5" ></text>
</g>
<g >
<title>[[vdso]] (5,937,558 samples, 0.02%)</title><rect x="293.7" y="485" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="296.72" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6,202,150 samples, 0.02%)</title><rect x="822.0" y="181" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="825.00" y="191.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (5,606,117,438 samples, 19.11%)</title><rect x="712.8" y="357" width="225.5" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="715.85" y="367.5" >__x64_sys_bpf</text>
</g>
<g >
<title>runtime.futex.abi0 (3,954,607 samples, 0.01%)</title><rect x="394.0" y="453" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="397.05" y="463.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (57,625,381 samples, 0.20%)</title><rect x="12.6" y="485" width="2.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="15.64" y="495.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (47,594,361 samples, 0.16%)</title><rect x="89.1" y="389" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="92.09" y="399.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (173,415,083 samples, 0.59%)</title><rect x="562.3" y="277" width="6.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="565.26" y="287.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (18,799,053 samples, 0.06%)</title><rect x="68.7" y="389" width="0.8" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="71.70" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,919,110 samples, 0.01%)</title><rect x="249.0" y="357" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="252.02" y="367.5" ></text>
</g>
<g >
<title>mod_objcg_state (21,433,382 samples, 0.07%)</title><rect x="812.8" y="197" width="0.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="815.83" y="207.5" ></text>
</g>
<g >
<title>array_map_alloc_check (35,453,054 samples, 0.12%)</title><rect x="723.4" y="325" width="1.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="726.35" y="335.5" ></text>
</g>
<g >
<title>mntget (4,590,971 samples, 0.02%)</title><rect x="838.7" y="277" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="841.72" y="287.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (238,464,116 samples, 0.81%)</title><rect x="421.4" y="485" width="9.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="424.36" y="495.5" ></text>
</g>
<g >
<title>vma_alloc_folio (8,522,863 samples, 0.03%)</title><rect x="624.3" y="181" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="627.26" y="191.5" ></text>
</g>
<g >
<title>rb_insert_color (3,697,123 samples, 0.01%)</title><rect x="134.2" y="293" width="0.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text x="137.19" y="303.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (33,449,056 samples, 0.11%)</title><rect x="1172.8" y="373" width="1.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1175.79" y="383.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (384,969,112 samples, 1.31%)</title><rect x="480.5" y="277" width="15.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="483.52" y="287.5" ></text>
</g>
<g >
<title>[unknown] (143,773,965 samples, 0.49%)</title><rect x="10.0" y="613" width="5.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="623.5" ></text>
</g>
<g >
<title>apparmor_capable (55,074,679 samples, 0.19%)</title><rect x="901.1" y="261" width="2.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="904.11" y="271.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (4,625,398 samples, 0.02%)</title><rect x="617.0" y="117" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="619.96" y="127.5" ></text>
</g>
<g >
<title>rcu_do_batch (3,550,188 samples, 0.01%)</title><rect x="20.8" y="357" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="23.76" y="367.5" ></text>
</g>
<g >
<title>x86_pmu_disable (156,605,153 samples, 0.53%)</title><rect x="213.7" y="325" width="6.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="216.65" y="335.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (107,998,548 samples, 0.37%)</title><rect x="578.9" y="453" width="4.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="581.90" y="463.5" ></text>
</g>
<g >
<title>runtime.findObject (10,528,113 samples, 0.04%)</title><rect x="1003.9" y="405" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1006.93" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit (2,645,315 samples, 0.01%)</title><rect x="1161.1" y="309" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1164.09" y="319.5" ></text>
</g>
<g >
<title>runtime.sweepone (229,376,663 samples, 0.78%)</title><rect x="384.8" y="581" width="9.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="387.77" y="591.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (3,108,259 samples, 0.01%)</title><rect x="839.6" y="293" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="842.58" y="303.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,163,202,910 samples, 3.96%)</title><rect x="109.2" y="357" width="46.8" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="112.17" y="367.5" >try_..</text>
</g>
<g >
<title>reflect.Value.Elem (3,078,999 samples, 0.01%)</title><rect x="512.4" y="501" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="515.38" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (12,371,053 samples, 0.04%)</title><rect x="600.5" y="261" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="603.53" y="271.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (113,904,378 samples, 0.39%)</title><rect x="475.1" y="213" width="4.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="478.06" y="223.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (22,599,182 samples, 0.08%)</title><rect x="851.6" y="293" width="0.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="854.63" y="303.5" ></text>
</g>
<g >
<title>amd_clear_divider (6,073,414 samples, 0.02%)</title><rect x="938.4" y="357" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="941.36" y="367.5" ></text>
</g>
<g >
<title>array_map_free_timers (3,401,583 samples, 0.01%)</title><rect x="165.9" y="405" width="0.1" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="168.91" y="415.5" ></text>
</g>
<g >
<title>native_write_msr (57,141,114 samples, 0.19%)</title><rect x="183.6" y="309" width="2.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="186.58" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (673,774,915 samples, 2.30%)</title><rect x="760.3" y="229" width="27.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="763.32" y="239.5" >k..</text>
</g>
<g >
<title>handle_mm_fault (2,943,428 samples, 0.01%)</title><rect x="618.1" y="277" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="621.13" y="287.5" ></text>
</g>
<g >
<title>task_work_add (18,745,557 samples, 0.06%)</title><rect x="31.8" y="421" width="0.7" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="34.77" y="431.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (6,123,815 samples, 0.02%)</title><rect x="659.6" y="357" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="662.63" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (64,659,894 samples, 0.22%)</title><rect x="12.6" y="501" width="2.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.64" y="511.5" ></text>
</g>
<g >
<title>__kmalloc_node (8,521,932 samples, 0.03%)</title><rect x="897.4" y="277" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="900.39" y="287.5" ></text>
</g>
<g >
<title>tick_sched_handle (4,690,586 samples, 0.02%)</title><rect x="1160.8" y="245" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1163.82" y="255.5" ></text>
</g>
<g >
<title>__folio_alloc (8,481,725 samples, 0.03%)</title><rect x="629.8" y="389" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="632.78" y="399.5" ></text>
</g>
<g >
<title>vma_expand (3,857,036 samples, 0.01%)</title><rect x="1010.9" y="133" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1013.92" y="143.5" ></text>
</g>
<g >
<title>runtime.makeslice (261,077,554 samples, 0.89%)</title><rect x="498.8" y="485" width="10.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="501.78" y="495.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (36,937,345 samples, 0.13%)</title><rect x="505.2" y="453" width="1.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="508.20" y="463.5" ></text>
</g>
<g >
<title>mapgauge.test (29,338,138,744 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>refill_obj_stock (4,476,223 samples, 0.02%)</title><rect x="892.2" y="229" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="895.19" y="239.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (5,280,098 samples, 0.02%)</title><rect x="642.8" y="341" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="645.76" y="351.5" ></text>
</g>
<g >
<title>rcu_core (6,117,269 samples, 0.02%)</title><rect x="260.5" y="309" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="263.55" y="319.5" ></text>
</g>
<g >
<title>runtime.growslice (13,220,843 samples, 0.05%)</title><rect x="593.8" y="309" width="0.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="596.83" y="319.5" ></text>
</g>
<g >
<title>kfree (11,401,068 samples, 0.04%)</title><rect x="241.5" y="277" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="244.52" y="287.5" ></text>
</g>
<g >
<title>runtime.(*scavengerState).park (5,331,408 samples, 0.02%)</title><rect x="394.0" y="581" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="397.00" y="591.5" ></text>
</g>
<g >
<title>clear_page_erms (6,238,137 samples, 0.02%)</title><rect x="848.8" y="149" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="851.84" y="159.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadKernelSpec (368,678,653 samples, 1.26%)</title><rect x="592.5" y="357" width="14.8" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="595.46" y="367.5" ></text>
</g>
<g >
<title>consume_obj_stock (23,137,380 samples, 0.08%)</title><rect x="890.2" y="213" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="893.23" y="223.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (22,661,897 samples, 0.08%)</title><rect x="148.2" y="293" width="1.0" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="151.25" y="303.5" ></text>
</g>
<g >
<title>runtime.growslice (19,872,781 samples, 0.07%)</title><rect x="620.3" y="341" width="0.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="623.29" y="351.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (7,751,181 samples, 0.03%)</title><rect x="412.5" y="453" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="415.46" y="463.5" ></text>
</g>
<g >
<title>idr_alloc_u32 (263,594,000 samples, 0.90%)</title><rect x="920.7" y="293" width="10.6" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="923.66" y="303.5" ></text>
</g>
<g >
<title>__send_signal_locked (5,126,184 samples, 0.02%)</title><rect x="294.4" y="373" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="297.37" y="383.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (437,222,889 samples, 1.49%)</title><rect x="294.9" y="533" width="17.5" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="297.85" y="543.5" ></text>
</g>
<g >
<title>[unknown] (221,391,273 samples, 0.75%)</title><rect x="10.0" y="629" width="8.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="639.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (17,130,686 samples, 0.06%)</title><rect x="153.2" y="293" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="156.17" y="303.5" ></text>
</g>
<g >
<title>file_free_rcu (30,460,061 samples, 0.10%)</title><rect x="187.6" y="245" width="1.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="190.61" y="255.5" ></text>
</g>
<g >
<title>alloc_empty_file (1,225,048,397 samples, 4.18%)</title><rect x="741.0" y="245" width="49.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="744.05" y="255.5" >allo..</text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,062,855,472 samples, 13.85%)</title><rect x="1004.4" y="405" width="163.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1007.35" y="415.5" >runtime.systemstack.a..</text>
</g>
<g >
<title>kmem_cache_free (2,534,013 samples, 0.01%)</title><rect x="279.0" y="229" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="281.99" y="239.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (163,974,725 samples, 0.56%)</title><rect x="554.7" y="277" width="6.6" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="557.67" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (77,758,786 samples, 0.27%)</title><rect x="1185.5" y="501" width="3.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1188.50" y="511.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,090,690 samples, 0.01%)</title><rect x="630.2" y="373" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="633.25" y="383.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (6,022,159 samples, 0.02%)</title><rect x="384.5" y="533" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="387.53" y="543.5" ></text>
</g>
<g >
<title>schedule (2,642,107 samples, 0.01%)</title><rect x="569.8" y="309" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="572.84" y="319.5" ></text>
</g>
<g >
<title>folio_add_lru (6,167,385 samples, 0.02%)</title><rect x="1186.5" y="373" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1189.52" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,455,010 samples, 0.02%)</title><rect x="576.7" y="469" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="579.66" y="479.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,963,874 samples, 0.01%)</title><rect x="277.0" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="279.97" y="383.5" ></text>
</g>
<g >
<title>__kmalloc_node (3,109,488 samples, 0.01%)</title><rect x="859.9" y="181" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="862.88" y="191.5" ></text>
</g>
<g >
<title>page_remove_rmap (10,783,880 samples, 0.04%)</title><rect x="37.9" y="341" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="40.91" y="351.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (9,317,669 samples, 0.03%)</title><rect x="645.3" y="405" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="648.29" y="415.5" ></text>
</g>
<g >
<title>rcu_core (4,386,486 samples, 0.01%)</title><rect x="279.0" y="277" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="281.96" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,628,463 samples, 0.02%)</title><rect x="602.6" y="277" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="605.57" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (3,101,484 samples, 0.01%)</title><rect x="597.0" y="85" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="600.01" y="95.5" ></text>
</g>
<g >
<title>bpf_map_put (27,675,424 samples, 0.09%)</title><rect x="69.5" y="437" width="1.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="72.46" y="447.5" ></text>
</g>
<g >
<title>kmem_cache_free (8,687,951 samples, 0.03%)</title><rect x="91.6" y="245" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="94.64" y="255.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (3,005,378 samples, 0.01%)</title><rect x="1009.4" y="197" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1012.43" y="207.5" ></text>
</g>
<g >
<title>get_page_from_freelist (303,478,328 samples, 1.03%)</title><rect x="860.4" y="149" width="12.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="863.41" y="159.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (14,255,414 samples, 0.05%)</title><rect x="929.1" y="245" width="0.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="932.11" y="255.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (43,984,356 samples, 0.15%)</title><rect x="38.3" y="309" width="1.8" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="41.34" y="319.5" ></text>
</g>
<g >
<title>rcu_core_si (21,467,228 samples, 0.07%)</title><rect x="91.5" y="309" width="0.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="94.48" y="319.5" ></text>
</g>
<g >
<title>update_load_avg (23,554,252 samples, 0.08%)</title><rect x="209.4" y="357" width="0.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="212.38" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.kernelSpec (368,678,653 samples, 1.26%)</title><rect x="592.5" y="373" width="14.8" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="595.46" y="383.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,213,369 samples, 0.02%)</title><rect x="594.1" y="293" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="597.11" y="303.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1 (3,131,215,089 samples, 10.67%)</title><rect x="394.5" y="533" width="126.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="397.54" y="543.5" >github.com/EMni..</text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (3,131,215,089 samples, 10.67%)</title><rect x="394.5" y="565" width="126.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="397.54" y="575.5" >github.com/EMni..</text>
</g>
<g >
<title>clear_page_erms (11,387,906 samples, 0.04%)</title><rect x="758.0" y="85" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="760.95" y="95.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (17,771,433 samples, 0.06%)</title><rect x="509.6" y="501" width="0.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="512.65" y="511.5" ></text>
</g>
<g >
<title>dentry_free (438,123,073 samples, 1.49%)</title><rect x="231.8" y="405" width="17.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="234.78" y="415.5" ></text>
</g>
<g >
<title>sched_clock (31,346,689 samples, 0.11%)</title><rect x="227.4" y="357" width="1.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="230.37" y="367.5" ></text>
</g>
<g >
<title>strlen (13,687,672 samples, 0.05%)</title><rect x="838.9" y="277" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="841.90" y="287.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,988,692 samples, 0.01%)</title><rect x="262.7" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="265.65" y="383.5" ></text>
</g>
<g >
<title>runtime.scanobject (10,583,416 samples, 0.04%)</title><rect x="384.0" y="565" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="386.98" y="575.5" ></text>
</g>
<g >
<title>__slab_free (14,583,417 samples, 0.05%)</title><rect x="162.2" y="229" width="0.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="165.24" y="239.5" ></text>
</g>
<g >
<title>alloc_fd (3,070,994 samples, 0.01%)</title><rect x="839.5" y="293" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="842.45" y="303.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (2,642,107 samples, 0.01%)</title><rect x="569.8" y="325" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="572.84" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.parseBTF (182,744,024 samples, 0.62%)</title><rect x="599.9" y="325" width="7.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="602.88" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (2,919,110 samples, 0.01%)</title><rect x="249.0" y="309" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="252.02" y="319.5" ></text>
</g>
<g >
<title>file_free_rcu (5,637,556 samples, 0.02%)</title><rect x="68.4" y="293" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="71.38" y="303.5" ></text>
</g>
<g >
<title>clear_page_erms (4,640,652 samples, 0.02%)</title><rect x="624.3" y="117" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="627.35" y="127.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14,698,596 samples, 0.05%)</title><rect x="74.8" y="421" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="77.75" y="431.5" ></text>
</g>
<g >
<title>runtime.memmove (27,836,608 samples, 0.09%)</title><rect x="570.0" y="485" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="573.01" y="495.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (10,263,939 samples, 0.03%)</title><rect x="889.0" y="197" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="891.99" y="207.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (6,123,815 samples, 0.02%)</title><rect x="659.6" y="373" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="662.63" y="383.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,083,619,520 samples, 3.69%)</title><rect x="853.6" y="261" width="43.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="856.56" y="271.5" >__km..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,386,486 samples, 0.01%)</title><rect x="279.0" y="373" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="281.96" y="383.5" ></text>
</g>
<g >
<title>runtime.scanblock (4,438,688 samples, 0.02%)</title><rect x="294.7" y="517" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="297.67" y="527.5" ></text>
</g>
<g >
<title>runtime.memmove (131,034,804 samples, 0.45%)</title><rect x="515.2" y="501" width="5.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="518.18" y="511.5" ></text>
</g>
<g >
<title>__vmalloc_node_range (6,173,874 samples, 0.02%)</title><rect x="849.1" y="213" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="852.09" y="223.5" ></text>
</g>
<g >
<title>free_unref_page_list (18,570,495 samples, 0.06%)</title><rect x="39.1" y="277" width="0.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="42.09" y="287.5" ></text>
</g>
<g >
<title>error_entry (5,106,812 samples, 0.02%)</title><rect x="10.5" y="565" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.48" y="575.5" ></text>
</g>
<g >
<title>__do_softirq (3,007,707 samples, 0.01%)</title><rect x="92.3" y="341" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="95.35" y="351.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (4,629,773 samples, 0.02%)</title><rect x="722.6" y="325" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="725.56" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,347,764 samples, 0.01%)</title><rect x="118.7" y="341" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="121.69" y="351.5" ></text>
</g>
<g >
<title>put_cpu_partial (38,099,099 samples, 0.13%)</title><rect x="240.6" y="357" width="1.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="243.63" y="367.5" ></text>
</g>
<g >
<title>runtime.efaceeq (5,927,364 samples, 0.02%)</title><rect x="535.5" y="437" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="538.55" y="447.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (2,926,822 samples, 0.01%)</title><rect x="246.6" y="357" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="249.60" y="367.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (208,058,620 samples, 0.71%)</title><rect x="212.0" y="373" width="8.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="214.97" y="383.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (43,149,029 samples, 0.15%)</title><rect x="651.3" y="405" width="1.7" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="654.28" y="415.5" ></text>
</g>
<g >
<title>runtime.newobject (396,341,027 samples, 1.35%)</title><rect x="646.0" y="453" width="16.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="649.03" y="463.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,955,517 samples, 0.02%)</title><rect x="599.2" y="213" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="602.16" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (13,624,276,646 samples, 46.44%)</title><rect x="630.7" y="517" width="548.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="633.68" y="527.5" >github.com/cilium/ebpf.NewMapWithOptions</text>
</g>
<g >
<title>asm_exc_page_fault (3,688,427 samples, 0.01%)</title><rect x="618.1" y="325" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="621.10" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (14,595,881 samples, 0.05%)</title><rect x="74.8" y="373" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="77.76" y="383.5" ></text>
</g>
<g >
<title>uncharge_folio (7,008,143 samples, 0.02%)</title><rect x="38.7" y="261" width="0.3" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="41.74" y="271.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (8,704,240 samples, 0.03%)</title><rect x="889.1" y="181" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="892.06" y="191.5" ></text>
</g>
<g >
<title>rcu_do_batch (19,831,076 samples, 0.07%)</title><rect x="91.5" y="277" width="0.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="94.55" y="287.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (25,362,937 samples, 0.09%)</title><rect x="873.0" y="149" width="1.0" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="875.95" y="159.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,673,167 samples, 0.01%)</title><rect x="394.1" y="421" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="397.06" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (33,449,056 samples, 0.11%)</title><rect x="1172.8" y="341" width="1.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1175.79" y="351.5" ></text>
</g>
<g >
<title>mtree_range_walk (3,808,209 samples, 0.01%)</title><rect x="645.0" y="373" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="648.04" y="383.5" ></text>
</g>
<g >
<title>fput (21,100,116 samples, 0.07%)</title><rect x="31.7" y="437" width="0.8" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="34.67" y="447.5" ></text>
</g>
<g >
<title>runtime.makeslice (3,828,378 samples, 0.01%)</title><rect x="603.2" y="277" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="606.22" y="287.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (4,051,455,864 samples, 13.81%)</title><rect x="1004.7" y="389" width="163.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1007.75" y="399.5" >runtime.SetFinalizer...</text>
</g>
<g >
<title>runtime.(*mspan).init (5,422,338 samples, 0.02%)</title><rect x="651.9" y="293" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="654.90" y="303.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (28,627,039 samples, 0.10%)</title><rect x="139.2" y="229" width="1.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="142.23" y="239.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (25,301,689 samples, 0.09%)</title><rect x="776.5" y="213" width="1.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="779.50" y="223.5" ></text>
</g>
<g >
<title>__free_one_page (2,960,854 samples, 0.01%)</title><rect x="163.4" y="69" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="166.43" y="79.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (91,974,003 samples, 0.31%)</title><rect x="112.2" y="325" width="3.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="115.23" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (11,598,839 samples, 0.04%)</title><rect x="599.2" y="277" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="602.16" y="287.5" ></text>
</g>
<g >
<title>cpuset_node_allowed (3,086,446 samples, 0.01%)</title><rect x="765.8" y="181" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="768.78" y="191.5" ></text>
</g>
<g >
<title>__folio_alloc (7,733,342 samples, 0.03%)</title><rect x="600.7" y="165" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="603.68" y="175.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,196,202 samples, 0.01%)</title><rect x="247.9" y="341" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="250.86" y="351.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (10,112,783 samples, 0.03%)</title><rect x="575.8" y="469" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="578.83" y="479.5" ></text>
</g>
<g >
<title>runtime.growslice (43,246,451 samples, 0.15%)</title><rect x="512.7" y="501" width="1.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="515.66" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (9,648,348 samples, 0.03%)</title><rect x="294.2" y="453" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="297.19" y="463.5" ></text>
</g>
<g >
<title>mas_walk (3,117,843 samples, 0.01%)</title><rect x="1009.8" y="293" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1012.77" y="303.5" ></text>
</g>
<g >
<title>folio_add_lru (5,280,098 samples, 0.02%)</title><rect x="642.8" y="325" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="645.76" y="335.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (3,634,336 samples, 0.01%)</title><rect x="571.1" y="501" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="574.13" y="511.5" ></text>
</g>
<g >
<title>psi_task_change (122,373,963 samples, 0.42%)</title><rect x="135.5" y="309" width="5.0" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="138.55" y="319.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (11,946,986 samples, 0.04%)</title><rect x="107.1" y="357" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="110.13" y="367.5" ></text>
</g>
<g >
<title>security_bpf (3,810,252 samples, 0.01%)</title><rect x="938.2" y="341" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="941.18" y="351.5" ></text>
</g>
<g >
<title>runtime.mapassign (75,197,079 samples, 0.26%)</title><rect x="594.5" y="309" width="3.0" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="597.46" y="319.5" ></text>
</g>
<g >
<title>dput (7,066,618 samples, 0.02%)</title><rect x="280.6" y="453" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="283.58" y="463.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (35,455,375 samples, 0.12%)</title><rect x="512.8" y="389" width="1.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="515.85" y="399.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (12,665,369 samples, 0.04%)</title><rect x="872.1" y="117" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="875.10" y="127.5" ></text>
</g>
<g >
<title>handle_mm_fault (67,055,607 samples, 0.23%)</title><rect x="588.4" y="453" width="2.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="591.41" y="463.5" ></text>
</g>
<g >
<title>map_create (3,098,075 samples, 0.01%)</title><rect x="938.1" y="341" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="941.05" y="351.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (14,700,516 samples, 0.05%)</title><rect x="821.4" y="181" width="0.6" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="824.41" y="191.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (3,104,703 samples, 0.01%)</title><rect x="603.1" y="277" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="606.07" y="287.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (70,222,472 samples, 0.24%)</title><rect x="879.4" y="213" width="2.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="882.40" y="223.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,245,853 samples, 0.01%)</title><rect x="576.7" y="421" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="579.66" y="431.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (3,889,798 samples, 0.01%)</title><rect x="529.8" y="469" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="532.77" y="479.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (6,057,411 samples, 0.02%)</title><rect x="897.7" y="293" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="900.73" y="303.5" ></text>
</g>
<g >
<title>cap_capable (17,600,518 samples, 0.06%)</title><rect x="899.5" y="277" width="0.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="902.48" y="287.5" ></text>
</g>
<g >
<title>idr_remove (8,640,229 samples, 0.03%)</title><rect x="166.2" y="421" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="169.20" y="431.5" ></text>
</g>
<g >
<title>record_times (4,660,351 samples, 0.02%)</title><rect x="226.7" y="357" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="229.67" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (46,223,724 samples, 0.16%)</title><rect x="589.2" y="357" width="1.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="592.16" y="367.5" ></text>
</g>
<g >
<title>runtime.findObject (3,791,115 samples, 0.01%)</title><rect x="653.5" y="325" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="656.50" y="335.5" ></text>
</g>
<g >
<title>bpf_map_release (14,440,747 samples, 0.05%)</title><rect x="279.9" y="453" width="0.6" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="282.91" y="463.5" ></text>
</g>
<g >
<title>wake_up_process (4,061,570 samples, 0.01%)</title><rect x="164.7" y="389" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="167.74" y="399.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (99,126,153 samples, 0.34%)</title><rect x="653.3" y="405" width="4.0" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="656.32" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (242,847,047 samples, 0.83%)</title><rect x="618.3" y="357" width="9.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="621.28" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign (891,493,971 samples, 3.04%)</title><rect x="592.5" y="485" width="35.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="595.46" y="495.5" >git..</text>
</g>
<g >
<title>do_wp_page (18,493,482 samples, 0.06%)</title><rect x="616.9" y="197" width="0.7" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="619.86" y="207.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (4,569,077 samples, 0.02%)</title><rect x="16.9" y="453" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="19.86" y="463.5" ></text>
</g>
<g >
<title>runtime.markrootBlock (4,438,688 samples, 0.02%)</title><rect x="294.7" y="533" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="297.67" y="543.5" ></text>
</g>
<g >
<title>clear_page_erms (6,157,806 samples, 0.02%)</title><rect x="929.3" y="133" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="932.31" y="143.5" ></text>
</g>
<g >
<title>try_to_wake_up (5,483,790 samples, 0.02%)</title><rect x="1160.5" y="229" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1163.54" y="239.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (6,211,330 samples, 0.02%)</title><rect x="774.2" y="117" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="777.18" y="127.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (98,369,069 samples, 0.34%)</title><rect x="653.4" y="373" width="3.9" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="656.35" y="383.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (1,657,714,705 samples, 5.65%)</title><rect x="431.0" y="485" width="66.6" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="433.95" y="495.5" >io.Read..</text>
</g>
<g >
<title>memcg_account_kmem (14,653,395 samples, 0.05%)</title><rect x="891.2" y="213" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="894.23" y="223.5" ></text>
</g>
<g >
<title>handle_mm_fault (14,717,786 samples, 0.05%)</title><rect x="624.0" y="261" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="627.01" y="271.5" ></text>
</g>
<g >
<title>update_cfs_group (2,630,607 samples, 0.01%)</title><rect x="134.3" y="293" width="0.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="137.34" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,604,476 samples, 0.02%)</title><rect x="652.1" y="245" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="655.15" y="255.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (3,419,259 samples, 0.01%)</title><rect x="569.8" y="341" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="572.81" y="351.5" ></text>
</g>
<g >
<title>cap_capable (23,343,375 samples, 0.08%)</title><rect x="914.6" y="277" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="917.56" y="287.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (12,456,722 samples, 0.04%)</title><rect x="39.2" y="245" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="42.24" y="255.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (17,802,955 samples, 0.06%)</title><rect x="158.0" y="389" width="0.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="160.96" y="399.5" ></text>
</g>
<g >
<title>syscall.pread (6,915,428 samples, 0.02%)</title><rect x="604.1" y="213" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="607.12" y="223.5" ></text>
</g>
<g >
<title>runtime.greyobject (13,662,820 samples, 0.05%)</title><rect x="656.5" y="309" width="0.6" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="659.55" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_lock (9,964,205 samples, 0.03%)</title><rect x="776.1" y="213" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="779.10" y="223.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (10,826,628 samples, 0.04%)</title><rect x="437.2" y="277" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="440.25" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (49,464,006 samples, 0.17%)</title><rect x="1007.3" y="213" width="2.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1010.29" y="223.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (6,915,428 samples, 0.02%)</title><rect x="604.1" y="229" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="607.12" y="239.5" ></text>
</g>
<g >
<title>wp_page_copy (6,987,683 samples, 0.02%)</title><rect x="596.9" y="165" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="599.86" y="175.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,955,517 samples, 0.02%)</title><rect x="599.2" y="229" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="602.16" y="239.5" ></text>
</g>
<g >
<title>runtime.markroot (511,848,486 samples, 1.74%)</title><rect x="292.3" y="549" width="20.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="295.25" y="559.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (3,057,720 samples, 0.01%)</title><rect x="638.4" y="485" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="641.38" y="495.5" ></text>
</g>
<g >
<title>runtime.makeslice (133,395,981 samples, 0.45%)</title><rect x="571.6" y="501" width="5.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="574.61" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (3,900,718 samples, 0.01%)</title><rect x="557.8" y="261" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="560.80" y="271.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,874,228 samples, 0.01%)</title><rect x="610.5" y="293" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="613.47" y="303.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5,302,184 samples, 0.02%)</title><rect x="1182.0" y="277" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1185.02" y="287.5" ></text>
</g>
<g >
<title>setup_object (5,959,078 samples, 0.02%)</title><rect x="875.8" y="165" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="878.83" y="175.5" ></text>
</g>
<g >
<title>runtime.findObject (445,730,919 samples, 1.52%)</title><rect x="341.6" y="533" width="17.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="344.62" y="543.5" ></text>
</g>
<g >
<title>__do_softirq (14,595,881 samples, 0.05%)</title><rect x="74.8" y="357" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="77.76" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (33,687,241 samples, 0.11%)</title><rect x="259.4" y="421" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="262.44" y="431.5" ></text>
</g>
<g >
<title>dequeue_task_fair (8,342,385 samples, 0.03%)</title><rect x="17.2" y="405" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="20.18" y="415.5" ></text>
</g>
<g >
<title>strings.LastIndex (8,510,413 samples, 0.03%)</title><rect x="593.5" y="293" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="596.49" y="303.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (4,544,839 samples, 0.02%)</title><rect x="12.8" y="421" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="15.77" y="431.5" ></text>
</g>
<g >
<title>do_send_specific (2,596,053 samples, 0.01%)</title><rect x="16.4" y="437" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="19.40" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,945,875,144 samples, 23.68%)</title><rect x="689.8" y="389" width="279.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="692.79" y="399.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>runtime.mallocgc (116,961,726 samples, 0.40%)</title><rect x="578.6" y="501" width="4.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="581.57" y="511.5" ></text>
</g>
<g >
<title>runtime.main (6,924,922 samples, 0.02%)</title><rect x="394.3" y="613" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="397.26" y="623.5" ></text>
</g>
<g >
<title>__irqentry_text_end (11,407,912 samples, 0.04%)</title><rect x="587.2" y="501" width="0.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="590.24" y="511.5" ></text>
</g>
<g >
<title>runtime.makeslicecopy (6,954,998 samples, 0.02%)</title><rect x="610.9" y="309" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="613.94" y="319.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (2,910,809 samples, 0.01%)</title><rect x="85.5" y="293" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="88.52" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfMembers (6,144,117 samples, 0.02%)</title><rect x="603.5" y="293" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="606.50" y="303.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (6,721,250 samples, 0.02%)</title><rect x="805.1" y="101" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="808.11" y="111.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,644,759 samples, 0.01%)</title><rect x="238.1" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="241.15" y="383.5" ></text>
</g>
<g >
<title>clear_page_erms (3,101,678 samples, 0.01%)</title><rect x="593.3" y="133" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="596.33" y="143.5" ></text>
</g>
<g >
<title>runtime.trygetfull (3,204,960 samples, 0.01%)</title><rect x="289.4" y="533" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="292.37" y="543.5" ></text>
</g>
<g >
<title>sched_clock_cpu (71,718,882 samples, 0.24%)</title><rect x="153.1" y="325" width="2.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="156.07" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,616,680 samples, 0.02%)</title><rect x="882.2" y="213" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="885.23" y="223.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (3,168,890 samples, 0.01%)</title><rect x="14.5" y="373" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="17.47" y="383.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocker).tryAcquire (3,758,453 samples, 0.01%)</title><rect x="393.8" y="565" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="396.85" y="575.5" ></text>
</g>
<g >
<title>runtime.findObject (10,583,282 samples, 0.04%)</title><rect x="513.6" y="357" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="516.63" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Pointer).copy (3,079,723 samples, 0.01%)</title><rect x="610.6" y="325" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="613.63" y="335.5" ></text>
</g>
<g >
<title>allocate_slab (38,179,417 samples, 0.13%)</title><rect x="757.8" y="149" width="1.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="760.83" y="159.5" ></text>
</g>
<g >
<title>do_user_addr_fault (74,439,678 samples, 0.25%)</title><rect x="642.3" y="421" width="3.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="645.26" y="431.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (7,458,058 samples, 0.03%)</title><rect x="12.7" y="437" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="15.73" y="447.5" ></text>
</g>
<g >
<title>file_free_rcu (12,471,328 samples, 0.04%)</title><rect x="68.7" y="309" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="71.72" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,684,230 samples, 0.02%)</title><rect x="481.6" y="261" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="484.61" y="271.5" ></text>
</g>
<g >
<title>__do_softirq (7,469,233 samples, 0.03%)</title><rect x="68.4" y="357" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="71.38" y="367.5" ></text>
</g>
<g >
<title>free_unref_page_commit (2,960,854 samples, 0.01%)</title><rect x="163.4" y="101" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="166.43" y="111.5" ></text>
</g>
<g >
<title>bpf_seq_read (1,499,502,942 samples, 5.11%)</title><rect x="435.9" y="293" width="60.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="438.88" y="303.5" >bpf_se..</text>
</g>
<g >
<title>runtime.schedule (5,331,408 samples, 0.02%)</title><rect x="394.0" y="517" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="397.00" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (48,683,391 samples, 0.17%)</title><rect x="1007.3" y="197" width="2.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1010.33" y="207.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (13,672,985 samples, 0.05%)</title><rect x="186.8" y="341" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="189.76" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,060,942 samples, 0.01%)</title><rect x="614.8" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="617.83" y="287.5" ></text>
</g>
<g >
<title>mod_memcg_state (3,079,362 samples, 0.01%)</title><rect x="828.8" y="165" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="831.80" y="175.5" ></text>
</g>
<g >
<title>__slab_free (9,747,935 samples, 0.03%)</title><rect x="188.2" y="213" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="191.18" y="223.5" ></text>
</g>
<g >
<title>__handle_mm_fault (20,728,231 samples, 0.07%)</title><rect x="629.6" y="453" width="0.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="632.63" y="463.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (7,655,642 samples, 0.03%)</title><rect x="659.6" y="405" width="0.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="662.63" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (15,480,756 samples, 0.05%)</title><rect x="624.0" y="277" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="626.98" y="287.5" ></text>
</g>
<g >
<title>get_random_u32 (9,872,748 samples, 0.03%)</title><rect x="807.2" y="133" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="810.17" y="143.5" ></text>
</g>
<g >
<title>do_wp_page (3,851,979 samples, 0.01%)</title><rect x="659.2" y="293" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="662.18" y="303.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (4,959,425 samples, 0.02%)</title><rect x="606.3" y="213" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="609.33" y="223.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (2,730,608 samples, 0.01%)</title><rect x="207.6" y="341" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="210.61" y="351.5" ></text>
</g>
<g >
<title>allocate_slab (4,672,827 samples, 0.02%)</title><rect x="805.7" y="85" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="808.66" y="95.5" ></text>
</g>
<g >
<title>cache_from_obj (5,078,432 samples, 0.02%)</title><rect x="232.7" y="389" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="235.66" y="399.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (3,875,158 samples, 0.01%)</title><rect x="499.2" y="469" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="502.21" y="479.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (33,449,056 samples, 0.11%)</title><rect x="1172.8" y="325" width="1.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1175.79" y="335.5" ></text>
</g>
<g >
<title>do_send_sig_info (5,527,553 samples, 0.02%)</title><rect x="12.0" y="405" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="15.03" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,153,398 samples, 0.02%)</title><rect x="1171.4" y="309" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1174.42" y="319.5" ></text>
</g>
<g >
<title>runtime.profilealloc (3,119,905 samples, 0.01%)</title><rect x="514.3" y="469" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="517.27" y="479.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (5,106,812 samples, 0.02%)</title><rect x="10.5" y="581" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.48" y="591.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (16,388,132 samples, 0.06%)</title><rect x="514.5" y="501" width="0.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="517.52" y="511.5" ></text>
</g>
<g >
<title>sched_clock_cpu (35,837,177 samples, 0.12%)</title><rect x="151.0" y="325" width="1.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="153.96" y="335.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4,579,718 samples, 0.02%)</title><rect x="939.2" y="293" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="942.16" y="303.5" ></text>
</g>
<g >
<title>perf_ctx_disable (174,327,639 samples, 0.59%)</title><rect x="212.9" y="341" width="7.0" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="215.94" y="351.5" ></text>
</g>
<g >
<title>clear_page_erms (7,712,619 samples, 0.03%)</title><rect x="617.2" y="101" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="620.20" y="111.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (4,082,631 samples, 0.01%)</title><rect x="620.6" y="229" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="623.62" y="239.5" ></text>
</g>
<g >
<title>rcu_do_batch (3,458,364 samples, 0.01%)</title><rect x="277.0" y="277" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="279.97" y="287.5" ></text>
</g>
<g >
<title>free_slab (26,436,235 samples, 0.09%)</title><rect x="241.0" y="309" width="1.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="244.02" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,595,152,922 samples, 22.48%)</title><rect x="19.1" y="613" width="265.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="22.08" y="623.5" >do_syscall_64</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,878,196 samples, 0.02%)</title><rect x="12.0" y="485" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="15.00" y="495.5" ></text>
</g>
<g >
<title>anon_inode_getfd (2,862,167,747 samples, 9.76%)</title><rect x="734.7" y="309" width="115.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="737.69" y="319.5" >anon_inode_getfd</text>
</g>
<g >
<title>node_tag_clear (3,092,552 samples, 0.01%)</title><rect x="929.7" y="277" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="932.68" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (2,943,428 samples, 0.01%)</title><rect x="618.1" y="309" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="621.13" y="319.5" ></text>
</g>
<g >
<title>do_anonymous_page (68,860,949 samples, 0.23%)</title><rect x="1006.6" y="261" width="2.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1009.60" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (4,603,570 samples, 0.02%)</title><rect x="84.7" y="421" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="87.70" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.findProgramTargetInKernel (516,818,387 samples, 1.76%)</title><rect x="607.3" y="405" width="20.8" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="610.29" y="415.5" ></text>
</g>
<g >
<title>rcu_core (51,248,593 samples, 0.17%)</title><rect x="187.4" y="277" width="2.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="190.36" y="287.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (4,959,425 samples, 0.02%)</title><rect x="606.3" y="197" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="609.33" y="207.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (6,897,164 samples, 0.02%)</title><rect x="605.5" y="261" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="608.45" y="271.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (3,899,959 samples, 0.01%)</title><rect x="1183.8" y="469" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1186.79" y="479.5" ></text>
</g>
<g >
<title>runtime.makeslice (3,129,984 samples, 0.01%)</title><rect x="514.4" y="501" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="517.40" y="511.5" ></text>
</g>
<g >
<title>rcu_core_si (51,706,228 samples, 0.18%)</title><rect x="187.3" y="293" width="2.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="190.34" y="303.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (43,171,035 samples, 0.15%)</title><rect x="872.8" y="181" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="875.83" y="191.5" ></text>
</g>
<g >
<title>runtime.preemptone (8,218,654 samples, 0.03%)</title><rect x="12.0" y="517" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="14.95" y="527.5" ></text>
</g>
<g >
<title>migrate_enable (21,734,052 samples, 0.07%)</title><rect x="493.7" y="245" width="0.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="496.73" y="255.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (14,979,826 samples, 0.05%)</title><rect x="1171.8" y="341" width="0.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1174.85" y="351.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (46,863,963 samples, 0.16%)</title><rect x="169.5" y="405" width="1.9" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="172.50" y="415.5" ></text>
</g>
<g >
<title>pick_next_task_fair (504,485,983 samples, 1.72%)</title><rect x="190.0" y="373" width="20.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="193.04" y="383.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (33,523,979 samples, 0.11%)</title><rect x="507.0" y="373" width="1.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="510.00" y="383.5" ></text>
</g>
<g >
<title>send_signal_locked (4,464,810 samples, 0.02%)</title><rect x="12.1" y="389" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="15.08" y="399.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (301,072,651 samples, 1.03%)</title><rect x="541.3" y="277" width="12.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="544.26" y="287.5" ></text>
</g>
<g >
<title>runtime.findObject (68,557,673 samples, 0.23%)</title><rect x="309.7" y="501" width="2.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="312.68" y="511.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (4,289,367 samples, 0.01%)</title><rect x="1175.3" y="469" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1178.26" y="479.5" ></text>
</g>
<g >
<title>update_load_avg (138,153,321 samples, 0.47%)</title><rect x="200.0" y="341" width="5.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="202.97" y="351.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (47,629,980 samples, 0.16%)</title><rect x="660.0" y="437" width="1.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="663.03" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,087,808 samples, 0.01%)</title><rect x="599.3" y="117" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="602.29" y="127.5" ></text>
</g>
<g >
<title>_raw_spin_lock (11,946,986 samples, 0.04%)</title><rect x="107.1" y="373" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="110.13" y="383.5" ></text>
</g>
<g >
<title>runtime.gcenable.func1 (238,546,628 samples, 0.81%)</title><rect x="384.4" y="613" width="9.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="387.41" y="623.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,946,427 samples, 0.01%)</title><rect x="823.5" y="181" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="826.47" y="191.5" ></text>
</g>
<g >
<title>exc_page_fault (61,561,472 samples, 0.21%)</title><rect x="1186.1" y="485" width="2.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1189.15" y="495.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,635,414 samples, 0.02%)</title><rect x="659.1" y="309" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="662.15" y="319.5" ></text>
</g>
<g >
<title>cpuacct_charge (27,203,697 samples, 0.09%)</title><rect x="198.8" y="325" width="1.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="201.76" y="335.5" ></text>
</g>
<g >
<title>perf_ctx_enable (3,448,210 samples, 0.01%)</title><rect x="13.9" y="373" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="16.93" y="383.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (14,750,568 samples, 0.05%)</title><rect x="411.9" y="453" width="0.6" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="414.87" y="463.5" ></text>
</g>
<g >
<title>rcu_core_si (103,357,331 samples, 0.35%)</title><rect x="160.6" y="309" width="4.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="163.57" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.ProgLoad (5,218,941 samples, 0.02%)</title><rect x="628.1" y="405" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="631.11" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,876,438 samples, 0.01%)</title><rect x="627.4" y="149" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="630.37" y="159.5" ></text>
</g>
<g >
<title>rmqueue (5,408,704 samples, 0.02%)</title><rect x="1188.0" y="325" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1191.01" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,863,557 samples, 0.01%)</title><rect x="846.3" y="277" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="849.32" y="287.5" ></text>
</g>
<g >
<title>shuffle_freelist (27,798,277 samples, 0.09%)</title><rect x="774.7" y="165" width="1.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="777.74" y="175.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (3,112,363 samples, 0.01%)</title><rect x="889.3" y="165" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="892.28" y="175.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (13,591,215 samples, 0.05%)</title><rect x="258.5" y="341" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="261.55" y="351.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (9,124,046 samples, 0.03%)</title><rect x="1174.9" y="469" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1177.90" y="479.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,963,874 samples, 0.01%)</title><rect x="277.0" y="389" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="279.97" y="399.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (3,005,378 samples, 0.01%)</title><rect x="1009.4" y="165" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1012.43" y="175.5" ></text>
</g>
<g >
<title>sched_clock (31,817,043 samples, 0.11%)</title><rect x="139.1" y="277" width="1.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="142.15" y="287.5" ></text>
</g>
<g >
<title>runtime.wirep (14,449,356 samples, 0.05%)</title><rect x="675.3" y="373" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="678.31" y="383.5" ></text>
</g>
<g >
<title>__handle_mm_fault (64,448,758 samples, 0.22%)</title><rect x="642.3" y="389" width="2.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="645.33" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock (36,570,452 samples, 0.12%)</title><rect x="832.9" y="245" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="835.86" y="255.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (28,890,730 samples, 0.10%)</title><rect x="227.4" y="309" width="1.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="230.43" y="319.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (3,864,960 samples, 0.01%)</title><rect x="509.3" y="485" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="512.34" y="495.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,234,688 samples, 0.01%)</title><rect x="605.9" y="213" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="608.88" y="223.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (4,959,425 samples, 0.02%)</title><rect x="606.3" y="261" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="609.33" y="271.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (7,781,629 samples, 0.03%)</title><rect x="68.4" y="405" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="71.38" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (24,948,405 samples, 0.09%)</title><rect x="660.7" y="389" width="1.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="663.69" y="399.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,532,736 samples, 0.01%)</title><rect x="625.5" y="277" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="628.50" y="287.5" ></text>
</g>
<g >
<title>radix_tree_node_rcu_free (2,960,854 samples, 0.01%)</title><rect x="163.4" y="261" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="166.43" y="271.5" ></text>
</g>
<g >
<title>aeshashbody (3,805,194 samples, 0.01%)</title><rect x="619.3" y="341" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="622.26" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (17,549,996 samples, 0.06%)</title><rect x="757.8" y="117" width="0.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="760.83" y="127.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (5,331,964 samples, 0.02%)</title><rect x="539.8" y="293" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="542.79" y="303.5" ></text>
</g>
<g >
<title>runtime.netpoll (2,527,687 samples, 0.01%)</title><rect x="11.7" y="533" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="14.68" y="543.5" ></text>
</g>
<g >
<title>sched_clock_cpu (38,310,911 samples, 0.13%)</title><rect x="227.2" y="373" width="1.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="230.16" y="383.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (5,246,103 samples, 0.02%)</title><rect x="627.8" y="261" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="630.77" y="271.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (23,068,507 samples, 0.08%)</title><rect x="929.8" y="277" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="932.81" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_lock (29,577,943 samples, 0.10%)</title><rect x="845.1" y="277" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="848.13" y="287.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (32,673,538 samples, 0.11%)</title><rect x="1172.8" y="309" width="1.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1175.82" y="319.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (5,197,788 samples, 0.02%)</title><rect x="677.8" y="357" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="680.76" y="367.5" ></text>
</g>
<g >
<title>enqueue_task_fair (183,430,283 samples, 0.63%)</title><rect x="127.5" y="309" width="7.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="130.54" y="319.5" ></text>
</g>
<g >
<title>rmqueue_bulk (3,775,713 samples, 0.01%)</title><rect x="805.2" y="85" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="808.23" y="95.5" ></text>
</g>
<g >
<title>__folio_alloc (3,523,462 samples, 0.01%)</title><rect x="605.9" y="165" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="608.90" y="175.5" ></text>
</g>
<g >
<title>error_entry (4,650,940 samples, 0.02%)</title><rect x="11.1" y="549" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="14.09" y="559.5" ></text>
</g>
<g >
<title>llist_add_batch (18,482,778 samples, 0.06%)</title><rect x="149.4" y="325" width="0.8" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="152.42" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (7,773,238 samples, 0.03%)</title><rect x="823.6" y="181" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="826.59" y="191.5" ></text>
</g>
<g >
<title>memset_orig (3,874,946 samples, 0.01%)</title><rect x="849.5" y="245" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="852.49" y="255.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (32,700,813 samples, 0.11%)</title><rect x="520.8" y="533" width="1.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="523.78" y="543.5" ></text>
</g>
<g >
<title>btf_find_by_name_kind (2,979,055 samples, 0.01%)</title><rect x="628.1" y="149" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="631.11" y="159.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (13,346,010 samples, 0.05%)</title><rect x="529.2" y="469" width="0.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="532.23" y="479.5" ></text>
</g>
<g >
<title>__irqentry_text_end (4,540,062 samples, 0.02%)</title><rect x="1189.1" y="501" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1192.09" y="511.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (5,828,344 samples, 0.02%)</title><rect x="92.6" y="389" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="95.63" y="399.5" ></text>
</g>
<g >
<title>runtime.unlock2 (3,853,879 samples, 0.01%)</title><rect x="1167.5" y="373" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1170.54" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (790,930,204 samples, 2.70%)</title><rect x="538.1" y="389" width="31.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="541.14" y="399.5" >en..</text>
</g>
<g >
<title>clear_page_erms (8,551,176 samples, 0.03%)</title><rect x="661.1" y="245" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="664.14" y="255.5" ></text>
</g>
<g >
<title>__mod_memcg_state (11,569,958 samples, 0.04%)</title><rect x="891.3" y="181" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="894.35" y="191.5" ></text>
</g>
<g >
<title>apparmor_capable (29,879,094 samples, 0.10%)</title><rect x="898.3" y="277" width="1.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="901.28" y="287.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,101,678 samples, 0.01%)</title><rect x="593.3" y="197" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="596.33" y="207.5" ></text>
</g>
<g >
<title>___slab_alloc (210,699,009 samples, 0.72%)</title><rect x="799.2" y="213" width="8.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="802.16" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*FuncProto).copy (30,183,410 samples, 0.10%)</title><rect x="609.4" y="325" width="1.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="612.41" y="335.5" ></text>
</g>
<g >
<title>runtime.morestack.abi0 (3,711,941 samples, 0.01%)</title><rect x="1189.5" y="629" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1192.55" y="639.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,117,280 samples, 0.01%)</title><rect x="939.2" y="261" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="942.22" y="271.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (17,743,599 samples, 0.06%)</title><rect x="420.0" y="469" width="0.7" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="422.96" y="479.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,299,564 samples, 0.02%)</title><rect x="162.9" y="229" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="165.87" y="239.5" ></text>
</g>
<g >
<title>cap_capable (6,068,981 samples, 0.02%)</title><rect x="903.3" y="261" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="906.33" y="271.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (7,670,822 samples, 0.03%)</title><rect x="10.2" y="565" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.17" y="575.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (24,432,106 samples, 0.08%)</title><rect x="583.8" y="501" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="586.76" y="511.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (30,198,226 samples, 0.10%)</title><rect x="272.0" y="421" width="1.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="274.97" y="431.5" ></text>
</g>
<g >
<title>runtime.mallocgc (337,587,128 samples, 1.15%)</title><rect x="646.4" y="437" width="13.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="649.45" y="447.5" ></text>
</g>
<g >
<title>vma_alloc_folio (34,730,636 samples, 0.12%)</title><rect x="1186.8" y="389" width="1.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1189.83" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (33,055,602 samples, 0.11%)</title><rect x="505.2" y="421" width="1.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="508.20" y="431.5" ></text>
</g>
<g >
<title>__queue_work (6,044,391 samples, 0.02%)</title><rect x="88.4" y="405" width="0.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="91.42" y="415.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (4,594,959 samples, 0.02%)</title><rect x="1173.0" y="277" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="1176.00" y="287.5" ></text>
</g>
<g >
<title>__do_softirq (4,140,813 samples, 0.01%)</title><rect x="20.7" y="405" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="23.74" y="415.5" ></text>
</g>
<g >
<title>bpf_map_seq_start (3,107,968 samples, 0.01%)</title><rect x="496.0" y="277" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="499.00" y="287.5" ></text>
</g>
<g >
<title>do_wp_page (8,544,510 samples, 0.03%)</title><rect x="596.8" y="181" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="599.79" y="191.5" ></text>
</g>
<g >
<title>rmqueue_bulk (3,107,102 samples, 0.01%)</title><rect x="1188.1" y="293" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1191.10" y="303.5" ></text>
</g>
<g >
<title>runtime.slicebytetostring (13,168,895 samples, 0.04%)</title><rect x="606.6" y="293" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="609.61" y="303.5" ></text>
</g>
<g >
<title>vma_alloc_folio (7,733,342 samples, 0.03%)</title><rect x="600.7" y="181" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="603.68" y="191.5" ></text>
</g>
<g >
<title>runtime.typedmemmove (23,600,503 samples, 0.08%)</title><rect x="624.7" y="325" width="0.9" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="627.69" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (7,683,186 samples, 0.03%)</title><rect x="602.8" y="261" width="0.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="605.76" y="271.5" ></text>
</g>
<g >
<title>release_pages (43,201,471 samples, 0.15%)</title><rect x="38.4" y="293" width="1.7" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="41.38" y="303.5" ></text>
</g>
<g >
<title>gcWriteBarrier (3,038,617 samples, 0.01%)</title><rect x="1177.5" y="469" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1180.52" y="479.5" ></text>
</g>
<g >
<title>ksys_read (783,096,525 samples, 2.67%)</title><rect x="538.3" y="341" width="31.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="541.26" y="351.5" >ks..</text>
</g>
<g >
<title>do_syscall_64 (788,717,749 samples, 2.69%)</title><rect x="538.2" y="373" width="31.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="541.22" y="383.5" >do..</text>
</g>
<g >
<title>__handle_mm_fault (78,035,042 samples, 0.27%)</title><rect x="1006.5" y="293" width="3.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1009.51" y="303.5" ></text>
</g>
<g >
<title>ima_file_free (3,470,708 samples, 0.01%)</title><rect x="280.9" y="453" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="283.86" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9,265,866 samples, 0.03%)</title><rect x="1010.7" y="245" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1013.73" y="255.5" ></text>
</g>
<g >
<title>file_free_rcu (8,758,547 samples, 0.03%)</title><rect x="258.5" y="229" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="261.55" y="239.5" ></text>
</g>
<g >
<title>__slab_free (3,194,211 samples, 0.01%)</title><rect x="271.8" y="421" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="274.84" y="431.5" ></text>
</g>
<g >
<title>dput (2,325,220,998 samples, 7.93%)</title><rect x="171.5" y="437" width="93.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="174.49" y="447.5" >dput</text>
</g>
<g >
<title>reflect.Value.SetUint (9,225,023 samples, 0.03%)</title><rect x="421.0" y="469" width="0.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="423.99" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (31,656,292 samples, 0.11%)</title><rect x="1187.0" y="357" width="1.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1189.95" y="367.5" ></text>
</g>
<g >
<title>runtime.gcFlushBgCredit (6,766,926 samples, 0.02%)</title><rect x="290.2" y="549" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="293.16" y="559.5" ></text>
</g>
<g >
<title>syscall.Syscall (14,708,299 samples, 0.05%)</title><rect x="10.7" y="581" width="0.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="13.68" y="591.5" ></text>
</g>
<g >
<title>exc_page_fault (86,071,661 samples, 0.29%)</title><rect x="642.2" y="437" width="3.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="645.23" y="447.5" ></text>
</g>
<g >
<title>vfs_read (1,547,499,834 samples, 5.27%)</title><rect x="434.1" y="309" width="62.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="437.07" y="319.5" >vfs_read</text>
</g>
<g >
<title>_raw_spin_lock_bh (30,813,675 samples, 0.11%)</title><rect x="553.4" y="277" width="1.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="556.37" y="287.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (4,681,981 samples, 0.02%)</title><rect x="1183.8" y="485" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1186.76" y="495.5" ></text>
</g>
<g >
<title>exc_page_fault (3,003,500 samples, 0.01%)</title><rect x="377.0" y="469" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="379.99" y="479.5" ></text>
</g>
<g >
<title>__slab_free (2,960,854 samples, 0.01%)</title><rect x="163.4" y="229" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="166.43" y="239.5" ></text>
</g>
<g >
<title>get_page_from_freelist (16,771,654 samples, 0.06%)</title><rect x="757.9" y="101" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="760.86" y="111.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (5,841,044 samples, 0.02%)</title><rect x="619.6" y="293" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="622.62" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,101,678 samples, 0.01%)</title><rect x="593.3" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="596.33" y="159.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,579,718 samples, 0.02%)</title><rect x="939.2" y="341" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="942.16" y="351.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,919,110 samples, 0.01%)</title><rect x="249.0" y="261" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="252.02" y="271.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (15,828,598 samples, 0.05%)</title><rect x="291.6" y="549" width="0.7" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="294.62" y="559.5" ></text>
</g>
<g >
<title>__folio_alloc (11,553,596 samples, 0.04%)</title><rect x="617.1" y="149" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="620.14" y="159.5" ></text>
</g>
<g >
<title>module_put (2,501,221 samples, 0.01%)</title><rect x="282.1" y="453" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="285.13" y="463.5" ></text>
</g>
<g >
<title>irqentry_exit (4,578,817 samples, 0.02%)</title><rect x="661.7" y="389" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="664.70" y="399.5" ></text>
</g>
<g >
<title>runtime.sigtramp.abi0 (6,813,234 samples, 0.02%)</title><rect x="1189.1" y="517" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1192.09" y="527.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (57,738,135 samples, 0.20%)</title><rect x="123.7" y="309" width="2.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="126.65" y="319.5" ></text>
</g>
<g >
<title>get_any_partial (8,162,160 samples, 0.03%)</title><rect x="799.6" y="197" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="802.62" y="207.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (10,803,966 samples, 0.04%)</title><rect x="400.2" y="485" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="403.24" y="495.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,919,110 samples, 0.01%)</title><rect x="249.0" y="325" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="252.02" y="335.5" ></text>
</g>
<g >
<title>syscall.pread (4,959,425 samples, 0.02%)</title><rect x="606.3" y="229" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="609.33" y="239.5" ></text>
</g>
<g >
<title>runtime.scanobject (1,766,414,244 samples, 6.02%)</title><rect x="312.8" y="549" width="71.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="315.84" y="559.5" >runtime...</text>
</g>
<g >
<title>__bpf_map_inc_not_zero (149,182,288 samples, 0.51%)</title><rect x="466.6" y="245" width="6.0" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="469.64" y="255.5" ></text>
</g>
<g >
<title>runtime.gosched_m (4,462,335 samples, 0.02%)</title><rect x="520.5" y="533" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="523.51" y="543.5" ></text>
</g>
<g >
<title>runtime.scanblock (10,659,320 samples, 0.04%)</title><rect x="507.7" y="325" width="0.5" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="510.73" y="335.5" ></text>
</g>
<g >
<title>__update_load_avg_se (34,277,980 samples, 0.12%)</title><rect x="204.2" y="325" width="1.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="207.15" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,140,813 samples, 0.01%)</title><rect x="20.7" y="421" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="23.74" y="431.5" ></text>
</g>
<g >
<title>do_user_addr_fault (11,403,563 samples, 0.04%)</title><rect x="1181.8" y="357" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1184.80" y="367.5" ></text>
</g>
<g >
<title>runtime.gcMarkTermination (2,772,685 samples, 0.01%)</title><rect x="284.4" y="581" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="287.43" y="591.5" ></text>
</g>
<g >
<title>do_nanosleep (3,500,645 samples, 0.01%)</title><rect x="19.2" y="565" width="0.1" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="22.17" y="575.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,523,462 samples, 0.01%)</title><rect x="605.9" y="133" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="608.90" y="143.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (26,917,522 samples, 0.09%)</title><rect x="651.5" y="389" width="1.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="654.50" y="399.5" ></text>
</g>
<g >
<title>get_page_from_freelist (29,360,573 samples, 0.10%)</title><rect x="1187.0" y="341" width="1.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1190.05" y="351.5" ></text>
</g>
<g >
<title>rcu_core_si (6,117,269 samples, 0.02%)</title><rect x="260.5" y="325" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="263.55" y="335.5" ></text>
</g>
<g >
<title>runtime.interhash (20,955,732 samples, 0.07%)</title><rect x="615.2" y="309" width="0.9" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="618.24" y="319.5" ></text>
</g>
<g >
<title>update_min_vruntime (8,937,418 samples, 0.03%)</title><rect x="205.5" y="341" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="208.53" y="351.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (46,151,716 samples, 0.16%)</title><rect x="38.3" y="341" width="1.9" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="41.34" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,919,110 samples, 0.01%)</title><rect x="249.0" y="373" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="252.02" y="383.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,570,798,562 samples, 5.35%)</title><rect x="433.8" y="389" width="63.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="436.76" y="399.5" >runtim..</text>
</g>
<g >
<title>runtime.(*mcache).refill (36,157,805 samples, 0.12%)</title><rect x="505.2" y="437" width="1.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="508.20" y="447.5" ></text>
</g>
<g >
<title>rcu_core (2,988,692 samples, 0.01%)</title><rect x="262.7" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="265.65" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (13,350,593,098 samples, 45.51%)</title><rect x="638.5" y="485" width="537.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="641.50" y="495.5" >github.com/cilium/ebpf.(*MapSpec).createMap</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (68,899,135 samples, 0.23%)</title><rect x="186.8" y="373" width="2.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="189.75" y="383.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,090,164 samples, 0.01%)</title><rect x="15.8" y="581" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="18.80" y="591.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,826,197 samples, 0.04%)</title><rect x="600.6" y="229" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="603.59" y="239.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (3,106,899 samples, 0.01%)</title><rect x="1183.6" y="469" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1186.61" y="479.5" ></text>
</g>
<g >
<title>__mutex_init (5,452,933 samples, 0.02%)</title><rect x="743.0" y="229" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="746.03" y="239.5" ></text>
</g>
<g >
<title>kmalloc_slab (18,906,795 samples, 0.06%)</title><rect x="892.7" y="245" width="0.8" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="895.70" y="255.5" ></text>
</g>
<g >
<title>__cond_resched (3,108,992 samples, 0.01%)</title><rect x="751.0" y="197" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="753.99" y="207.5" ></text>
</g>
<g >
<title>irqentry_exit (3,042,711 samples, 0.01%)</title><rect x="630.5" y="485" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="633.50" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_sched_yield (4,278,174 samples, 0.01%)</title><rect x="292.3" y="469" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="295.33" y="479.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (11,866,487 samples, 0.04%)</title><rect x="967.9" y="325" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="970.87" y="335.5" ></text>
</g>
<g >
<title>do_madvise (4,604,476 samples, 0.02%)</title><rect x="652.1" y="197" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="655.15" y="207.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (2,709,712 samples, 0.01%)</title><rect x="246.6" y="341" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="249.61" y="351.5" ></text>
</g>
<g >
<title>idr_get_next_ul (4,564,353 samples, 0.02%)</title><rect x="480.2" y="245" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="483.18" y="255.5" ></text>
</g>
<g >
<title>psi_flags_change (5,288,140 samples, 0.02%)</title><rect x="220.4" y="389" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="223.35" y="399.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (5,201,103 samples, 0.02%)</title><rect x="569.2" y="277" width="0.2" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="572.23" y="287.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (4,604,476 samples, 0.02%)</title><rect x="652.1" y="133" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="655.15" y="143.5" ></text>
</g>
<g >
<title>___slab_alloc (12,049,422 samples, 0.04%)</title><rect x="929.2" y="229" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="932.20" y="239.5" ></text>
</g>
<g >
<title>handle_pte_fault (48,535,080 samples, 0.17%)</title><rect x="1186.3" y="421" width="2.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1189.34" y="431.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (9,247,914 samples, 0.03%)</title><rect x="430.1" y="453" width="0.4" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="433.11" y="463.5" ></text>
</g>
<g >
<title>runtime.makeslice (9,278,625 samples, 0.03%)</title><rect x="604.5" y="293" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="607.49" y="303.5" ></text>
</g>
<g >
<title>runtime.(*scavengeIndex).alloc (4,604,476 samples, 0.02%)</title><rect x="652.1" y="277" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="655.15" y="287.5" ></text>
</g>
<g >
<title>errors.Is (3,064,755 samples, 0.01%)</title><rect x="522.2" y="533" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="525.19" y="543.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,101,678 samples, 0.01%)</title><rect x="593.3" y="245" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="596.33" y="255.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (5,841,044 samples, 0.02%)</title><rect x="619.6" y="309" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="622.62" y="319.5" ></text>
</g>
<g >
<title>d_instantiate (91,290,025 samples, 0.31%)</title><rect x="831.4" y="261" width="3.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="834.36" y="271.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,197,788 samples, 0.02%)</title><rect x="677.8" y="341" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="680.76" y="351.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (5,964,372 samples, 0.02%)</title><rect x="532.5" y="485" width="0.3" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="535.55" y="495.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (102,948,907 samples, 0.35%)</title><rect x="653.2" y="421" width="4.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="656.17" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8,544,510 samples, 0.03%)</title><rect x="596.8" y="213" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="599.79" y="223.5" ></text>
</g>
<g >
<title>locks_remove_file (9,504,487 samples, 0.03%)</title><rect x="265.7" y="437" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="268.65" y="447.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (852,479,083 samples, 2.91%)</title><rect x="536.8" y="501" width="34.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="539.84" y="511.5" >io..</text>
</g>
<g >
<title>__update_load_avg_se (6,113,803 samples, 0.02%)</title><rect x="195.8" y="341" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="198.83" y="351.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (11,350,892 samples, 0.04%)</title><rect x="291.2" y="549" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="294.16" y="559.5" ></text>
</g>
<g >
<title>idr_get_next (3,661,811 samples, 0.01%)</title><rect x="561.3" y="277" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="564.27" y="287.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (33,555,521 samples, 0.11%)</title><rect x="156.4" y="373" width="1.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="159.43" y="383.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (139,725,902 samples, 0.48%)</title><rect x="143.5" y="309" width="5.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="146.54" y="319.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (514,339,086 samples, 1.75%)</title><rect x="400.7" y="485" width="20.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="403.67" y="495.5" ></text>
</g>
<g >
<title>sched_clock (3,282,919 samples, 0.01%)</title><rect x="150.8" y="325" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="153.82" y="335.5" ></text>
</g>
<g >
<title>mod_objcg_state (40,914,595 samples, 0.14%)</title><rect x="245.1" y="373" width="1.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="248.08" y="383.5" ></text>
</g>
<g >
<title>free_slab (2,960,854 samples, 0.01%)</title><rect x="163.4" y="165" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="166.43" y="175.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,234,688 samples, 0.01%)</title><rect x="605.9" y="229" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="608.88" y="239.5" ></text>
</g>
<g >
<title>free_unref_page_prepare (4,452,464 samples, 0.02%)</title><rect x="241.3" y="245" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="244.31" y="255.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (4,959,425 samples, 0.02%)</title><rect x="606.3" y="245" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="609.33" y="255.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (32,118,719 samples, 0.11%)</title><rect x="182.3" y="309" width="1.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="185.29" y="319.5" ></text>
</g>
<g >
<title>errors.Is (34,047,680 samples, 0.12%)</title><rect x="510.4" y="501" width="1.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="513.36" y="511.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (4,390,879 samples, 0.01%)</title><rect x="530.9" y="485" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="533.93" y="495.5" ></text>
</g>
<g >
<title>security_file_free (238,030,349 samples, 0.81%)</title><rect x="270.3" y="437" width="9.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="273.34" y="447.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,117,269 samples, 0.02%)</title><rect x="260.5" y="405" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="263.55" y="415.5" ></text>
</g>
<g >
<title>runtime.interhash (3,873,026 samples, 0.01%)</title><rect x="596.4" y="293" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="599.39" y="303.5" ></text>
</g>
<g >
<title>rcu_core (3,458,364 samples, 0.01%)</title><rect x="277.0" y="293" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="279.97" y="303.5" ></text>
</g>
<g >
<title>kthread_is_per_cpu (4,479,270 samples, 0.02%)</title><rect x="119.4" y="341" width="0.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="122.44" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (147,028,998 samples, 0.50%)</title><rect x="599.9" y="309" width="6.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="602.94" y="319.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (4,604,476 samples, 0.02%)</title><rect x="652.1" y="181" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="655.15" y="191.5" ></text>
</g>
<g >
<title>futex_wait_queue (3,197,245 samples, 0.01%)</title><rect x="394.1" y="357" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="397.06" y="367.5" ></text>
</g>
<g >
<title>discard_slab (2,836,419 samples, 0.01%)</title><rect x="162.3" y="181" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="165.35" y="191.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (7,265,560 samples, 0.02%)</title><rect x="293.7" y="501" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="296.67" y="511.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,634,414 samples, 0.02%)</title><rect x="812.6" y="197" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="815.64" y="207.5" ></text>
</g>
<g >
<title>runtime.mallocgc (11,191,285 samples, 0.04%)</title><rect x="606.7" y="277" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="609.69" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (49,972,436 samples, 0.17%)</title><rect x="89.0" y="405" width="2.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="92.00" y="415.5" ></text>
</g>
<g >
<title>vma_alloc_folio (44,649,209 samples, 0.15%)</title><rect x="643.1" y="341" width="1.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="646.06" y="351.5" ></text>
</g>
<g >
<title>__handle_mm_fault (14,717,786 samples, 0.05%)</title><rect x="624.0" y="245" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="627.01" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*copier).copy (245,503,506 samples, 0.84%)</title><rect x="607.9" y="341" width="9.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="610.95" y="351.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2 (4,498,335 samples, 0.02%)</title><rect x="393.7" y="533" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="396.67" y="543.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (21,692,800 samples, 0.07%)</title><rect x="651.6" y="373" width="0.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="654.61" y="383.5" ></text>
</g>
<g >
<title>__folio_alloc (50,829,361 samples, 0.17%)</title><rect x="1007.3" y="229" width="2.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1010.29" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (6,455,010 samples, 0.02%)</title><rect x="576.7" y="453" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="579.66" y="463.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (4,011,672,154 samples, 13.67%)</title><rect x="1004.9" y="373" width="161.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1007.93" y="383.5" >runtime.addfinalizer</text>
</g>
<g >
<title>_raw_spin_lock (29,302,726 samples, 0.10%)</title><rect x="60.7" y="437" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="63.71" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,106,899 samples, 0.01%)</title><rect x="1183.6" y="421" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1186.61" y="431.5" ></text>
</g>
<g >
<title>do_tkill (2,784,900 samples, 0.01%)</title><rect x="16.4" y="453" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="19.39" y="463.5" ></text>
</g>
<g >
<title>__do_softirq (13,591,215 samples, 0.05%)</title><rect x="258.5" y="293" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="261.55" y="303.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (6,630,400 samples, 0.02%)</title><rect x="149.2" y="309" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="152.16" y="319.5" ></text>
</g>
<g >
<title>alloc_pages (9,733,716 samples, 0.03%)</title><rect x="929.2" y="181" width="0.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="932.23" y="191.5" ></text>
</g>
<g >
<title>rcu_core_si (3,458,364 samples, 0.01%)</title><rect x="277.0" y="309" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="279.97" y="319.5" ></text>
</g>
<g >
<title>update_min_vruntime (2,661,507 samples, 0.01%)</title><rect x="134.0" y="277" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="137.03" y="287.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (17,680,119 samples, 0.06%)</title><rect x="998.6" y="405" width="0.7" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1001.61" y="415.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (92,964,852 samples, 0.32%)</title><rect x="182.1" y="325" width="3.8" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="185.14" y="335.5" ></text>
</g>
<g >
<title>memset_orig (15,517,624 samples, 0.05%)</title><rect x="829.3" y="229" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="832.28" y="239.5" ></text>
</g>
<g >
<title>all (29,338,170,711 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>rcu_core_si (13,591,215 samples, 0.05%)</title><rect x="258.5" y="277" width="0.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="261.55" y="287.5" ></text>
</g>
<g >
<title>handle_mm_fault (14,540,723 samples, 0.05%)</title><rect x="570.4" y="421" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="573.42" y="431.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (10,480,741 samples, 0.04%)</title><rect x="85.2" y="405" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="88.21" y="415.5" ></text>
</g>
<g >
<title>d_set_d_op (3,768,213 samples, 0.01%)</title><rect x="830.2" y="245" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="833.15" y="255.5" ></text>
</g>
<g >
<title>newidle_balance (3,261,115 samples, 0.01%)</title><rect x="14.3" y="373" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="17.25" y="383.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (44,133,089 samples, 0.15%)</title><rect x="827.3" y="197" width="1.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="830.27" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,634,620 samples, 0.01%)</title><rect x="243.6" y="373" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="246.59" y="383.5" ></text>
</g>
<g >
<title>bpf_map_put (1,993,515,898 samples, 6.79%)</title><rect x="85.6" y="421" width="80.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="88.64" y="431.5" >bpf_map_put</text>
</g>
<g >
<title>runtime.profilealloc (8,414,091 samples, 0.03%)</title><rect x="659.6" y="421" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="662.60" y="431.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,047,680 samples, 0.01%)</title><rect x="787.2" y="213" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="790.20" y="223.5" ></text>
</g>
<g >
<title>runtime.procyield.abi0 (9,197,047 samples, 0.03%)</title><rect x="292.6" y="517" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="295.58" y="527.5" ></text>
</g>
<g >
<title>get_unmapped_area (3,080,795 samples, 0.01%)</title><rect x="1010.8" y="149" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1013.76" y="159.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,038,617 samples, 0.01%)</title><rect x="1177.5" y="421" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1180.52" y="431.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (4,601,470 samples, 0.02%)</title><rect x="1003.7" y="405" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1006.74" y="415.5" ></text>
</g>
<g >
<title>should_failslab (3,848,941 samples, 0.01%)</title><rect x="790.2" y="229" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="793.17" y="239.5" ></text>
</g>
<g >
<title>irqentry_exit (10,090,631 samples, 0.03%)</title><rect x="645.3" y="421" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="648.26" y="431.5" ></text>
</g>
<g >
<title>_copy_from_user (9,298,483 samples, 0.03%)</title><rect x="937.6" y="341" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="940.55" y="351.5" ></text>
</g>
<g >
<title>__zone_watermark_ok (3,093,842 samples, 0.01%)</title><rect x="860.5" y="133" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="863.53" y="143.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (21,712,267 samples, 0.07%)</title><rect x="91.5" y="373" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="94.47" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (7,696,756 samples, 0.03%)</title><rect x="111.7" y="341" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="114.73" y="351.5" ></text>
</g>
<g >
<title>runtime.greyobject (4,513,659 samples, 0.02%)</title><rect x="514.1" y="357" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="517.06" y="367.5" ></text>
</g>
<g >
<title>consume_obj_stock (6,935,159 samples, 0.02%)</title><rect x="819.5" y="197" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="822.49" y="207.5" ></text>
</g>
<g >
<title>memcg_account_kmem (3,961,084 samples, 0.01%)</title><rect x="248.2" y="325" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="251.17" y="335.5" ></text>
</g>
<g >
<title>ihold (37,519,065 samples, 0.13%)</title><rect x="837.2" y="277" width="1.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="840.21" y="287.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,106,899 samples, 0.01%)</title><rect x="1183.6" y="453" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1186.61" y="463.5" ></text>
</g>
<g >
<title>__send_signal_locked (4,315,708 samples, 0.01%)</title><rect x="12.1" y="373" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="15.08" y="383.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (102,344,912 samples, 0.35%)</title><rect x="612.3" y="325" width="4.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="615.28" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newProgramWithOptions (891,493,971 samples, 3.04%)</title><rect x="592.5" y="421" width="35.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="595.46" y="431.5" >git..</text>
</g>
<g >
<title>do_anonymous_page (6,153,398 samples, 0.02%)</title><rect x="1171.4" y="293" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1174.42" y="303.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (5,432,183 samples, 0.02%)</title><rect x="938.6" y="357" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="941.61" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (3,657,196 samples, 0.01%)</title><rect x="574.5" y="405" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="577.54" y="415.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (13,240,918 samples, 0.05%)</title><rect x="479.6" y="229" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="482.65" y="239.5" ></text>
</g>
<g >
<title>runtime.persistentalloc1 (10,047,346 samples, 0.03%)</title><rect x="1010.7" y="309" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1013.70" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_lock (12,649,713 samples, 0.04%)</title><rect x="212.2" y="357" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="215.24" y="367.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (13,988,864 samples, 0.05%)</title><rect x="282.2" y="453" width="0.6" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="285.23" y="463.5" ></text>
</g>
<g >
<title>runtime.scanobject (90,047,700 samples, 0.31%)</title><rect x="653.7" y="325" width="3.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="656.69" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (9,678,605 samples, 0.03%)</title><rect x="1161.2" y="341" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1164.23" y="351.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (4,667,703 samples, 0.02%)</title><rect x="732.6" y="309" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="735.64" y="319.5" ></text>
</g>
<g >
<title>runtime.freedefer (3,064,419 samples, 0.01%)</title><rect x="1178.2" y="469" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1181.20" y="479.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (17,689,716 samples, 0.06%)</title><rect x="414.8" y="469" width="0.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="417.76" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (3,101,678 samples, 0.01%)</title><rect x="593.3" y="293" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="596.33" y="303.5" ></text>
</g>
<g >
<title>do_anonymous_page (14,581,136 samples, 0.05%)</title><rect x="584.0" y="405" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="586.98" y="415.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (12,561,695 samples, 0.04%)</title><rect x="198.2" y="325" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="201.23" y="335.5" ></text>
</g>
<g >
<title>[unknown] (31,584,715 samples, 0.11%)</title><rect x="10.0" y="597" width="1.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="607.5" ></text>
</g>
<g >
<title>scheduler_tick (3,895,945 samples, 0.01%)</title><rect x="187.0" y="245" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="190.05" y="255.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,828,378 samples, 0.01%)</title><rect x="603.2" y="261" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="606.22" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,595,152,922 samples, 22.48%)</title><rect x="19.1" y="629" width="265.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="22.08" y="639.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>exit_to_user_mode_loop (6,589,534,079 samples, 22.46%)</title><rect x="19.3" y="565" width="265.0" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="22.31" y="575.5" >exit_to_user_mode_loop</text>
</g>
<g >
<title>io.ReadAtLeast (14,576,423 samples, 0.05%)</title><rect x="603.9" y="293" width="0.6" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="606.90" y="303.5" ></text>
</g>
<g >
<title>__cond_resched (1,387,714,042 samples, 4.73%)</title><rect x="173.8" y="421" width="55.8" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="176.76" y="431.5" >__con..</text>
</g>
<g >
<title>migrate_disable (16,313,267 samples, 0.06%)</title><rect x="495.2" y="261" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="498.19" y="271.5" ></text>
</g>
<g >
<title>update_min_vruntime (2,960,160 samples, 0.01%)</title><rect x="199.9" y="325" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="202.86" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,153,398 samples, 0.02%)</title><rect x="1171.4" y="341" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1174.42" y="351.5" ></text>
</g>
<g >
<title>bpf_prog_load (5,218,941 samples, 0.02%)</title><rect x="628.1" y="261" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="631.11" y="271.5" ></text>
</g>
<g >
<title>__do_softirq (21,467,228 samples, 0.07%)</title><rect x="91.5" y="325" width="0.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="94.48" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock (32,829,878 samples, 0.11%)</title><rect x="738.0" y="261" width="1.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="740.98" y="271.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (3,127,380,390 samples, 10.66%)</title><rect x="394.7" y="517" width="125.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="397.70" y="527.5" >github.com/EMni..</text>
</g>
<g >
<title>__check_object_size.part.0 (3,115,378 samples, 0.01%)</title><rect x="718.0" y="325" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="721.01" y="335.5" ></text>
</g>
<g >
<title>runtime.findObject (12,076,302 samples, 0.04%)</title><rect x="305.3" y="517" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="308.33" y="527.5" ></text>
</g>
<g >
<title>clear_page_erms (40,043,396 samples, 0.14%)</title><rect x="589.3" y="325" width="1.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="592.28" y="335.5" ></text>
</g>
<g >
<title>vma_alloc_folio (52,345,277 samples, 0.18%)</title><rect x="1007.3" y="245" width="2.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1010.27" y="255.5" ></text>
</g>
<g >
<title>capable (252,264,433 samples, 0.86%)</title><rect x="905.4" y="309" width="10.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="908.35" y="319.5" ></text>
</g>
<g >
<title>filp_close (315,730,904 samples, 1.08%)</title><rect x="22.9" y="453" width="12.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="25.91" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (179,061,069 samples, 0.61%)</title><rect x="592.7" y="325" width="7.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="595.68" y="335.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (13,138,589 samples, 0.04%)</title><rect x="600.5" y="293" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="603.50" y="303.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4,234,688 samples, 0.01%)</title><rect x="605.9" y="261" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="608.88" y="271.5" ></text>
</g>
<g >
<title>exc_page_fault (6,175,813 samples, 0.02%)</title><rect x="659.1" y="373" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="662.08" y="383.5" ></text>
</g>
<g >
<title>rcu_core (10,480,741 samples, 0.04%)</title><rect x="85.2" y="325" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.21" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,628,463 samples, 0.02%)</title><rect x="602.6" y="197" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="605.57" y="207.5" ></text>
</g>
<g >
<title>xas_start (36,996,843 samples, 0.13%)</title><rect x="825.3" y="165" width="1.5" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="828.30" y="175.5" ></text>
</g>
<g >
<title>schedule (3,500,645 samples, 0.01%)</title><rect x="19.2" y="549" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="22.17" y="559.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (379,262,583 samples, 1.29%)</title><rect x="814.0" y="213" width="15.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="816.97" y="223.5" ></text>
</g>
<g >
<title>capable (139,084,674 samples, 0.47%)</title><rect x="898.0" y="293" width="5.6" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="900.98" y="303.5" ></text>
</g>
<g >
<title>array_map_alloc (6,149,713 samples, 0.02%)</title><rect x="723.1" y="325" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="726.10" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,784,900 samples, 0.01%)</title><rect x="16.4" y="485" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="19.39" y="495.5" ></text>
</g>
<g >
<title>schedule (26,990,443 samples, 0.09%)</title><rect x="17.0" y="453" width="1.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="20.05" y="463.5" ></text>
</g>
<g >
<title>syscall.read (1,573,141,394 samples, 5.36%)</title><rect x="433.7" y="421" width="63.2" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="436.67" y="431.5" >syscal..</text>
</g>
<g >
<title>kvm_sched_clock_read (49,774,794 samples, 0.17%)</title><rect x="153.9" y="277" width="2.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="156.87" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.assignValues (891,493,971 samples, 3.04%)</title><rect x="592.5" y="469" width="35.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="595.46" y="479.5" >git..</text>
</g>
<g >
<title>check_preempt_curr (73,174,970 samples, 0.25%)</title><rect x="123.2" y="325" width="3.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="126.22" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,655,103 samples, 0.02%)</title><rect x="773.9" y="53" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="776.94" y="63.5" ></text>
</g>
<g >
<title>idr_get_free (202,703,625 samples, 0.69%)</title><rect x="921.5" y="277" width="8.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="924.53" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (4,628,463 samples, 0.02%)</title><rect x="602.6" y="261" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="605.57" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,234,688 samples, 0.01%)</title><rect x="605.9" y="245" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="608.88" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (11,205,221 samples, 0.04%)</title><rect x="607.3" y="357" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="610.32" y="367.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (95,605,903 samples, 0.33%)</title><rect x="1179.7" y="453" width="3.8" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1182.70" y="463.5" ></text>
</g>
<g >
<title>__mem_cgroup_uncharge_list (10,910,571 samples, 0.04%)</title><rect x="38.6" y="277" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="41.59" y="287.5" ></text>
</g>
<g >
<title>runtime.persistentalloc (10,824,827 samples, 0.04%)</title><rect x="1010.7" y="341" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1013.67" y="351.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,799,414 samples, 0.01%)</title><rect x="661.7" y="373" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="664.73" y="383.5" ></text>
</g>
<g >
<title>rmqueue (13,101,435 samples, 0.04%)</title><rect x="772.8" y="117" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="775.82" y="127.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (7,018,216 samples, 0.02%)</title><rect x="437.7" y="277" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="440.68" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (3,101,678 samples, 0.01%)</title><rect x="593.3" y="165" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="596.33" y="175.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,696,607 samples, 0.02%)</title><rect x="576.7" y="437" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="579.66" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,153,398 samples, 0.02%)</title><rect x="1171.4" y="357" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1174.42" y="367.5" ></text>
</g>
<g >
<title>rmqueue_bulk (7,782,671 samples, 0.03%)</title><rect x="1009.0" y="149" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1011.97" y="159.5" ></text>
</g>
<g >
<title>runtime.gcMarkDone (4,268,099 samples, 0.01%)</title><rect x="284.4" y="597" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="287.43" y="607.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (3,878,441 samples, 0.01%)</title><rect x="505.2" y="357" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="508.23" y="367.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (3,782,545 samples, 0.01%)</title><rect x="776.0" y="213" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="778.95" y="223.5" ></text>
</g>
<g >
<title>runtime.newobject (4,666,263 samples, 0.02%)</title><rect x="1174.5" y="437" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1177.52" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (7,683,186 samples, 0.03%)</title><rect x="602.8" y="277" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="605.76" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,218,941 samples, 0.02%)</title><rect x="628.1" y="325" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="631.11" y="335.5" ></text>
</g>
<g >
<title>runtime.memmove (3,858,873 samples, 0.01%)</title><rect x="10.0" y="533" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="13.00" y="543.5" ></text>
</g>
<g >
<title>_copy_from_user (40,571,731 samples, 0.14%)</title><rect x="719.1" y="325" width="1.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="722.10" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (14,750,212 samples, 0.05%)</title><rect x="627.1" y="293" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="630.05" y="303.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (3,090,164 samples, 0.01%)</title><rect x="15.8" y="549" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="18.80" y="559.5" ></text>
</g>
<g >
<title>runtime.scanblock (10,015,767 samples, 0.03%)</title><rect x="312.4" y="533" width="0.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="315.44" y="543.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (107,998,548 samples, 0.37%)</title><rect x="578.9" y="469" width="4.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="581.90" y="479.5" ></text>
</g>
<g >
<title>delete_node (4,625,247 samples, 0.02%)</title><rect x="930.6" y="261" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="933.55" y="271.5" ></text>
</g>
<g >
<title>rmqueue_bulk (6,979,414 samples, 0.02%)</title><rect x="644.5" y="245" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="647.54" y="255.5" ></text>
</g>
<g >
<title>security_file_alloc (9,171,491 samples, 0.03%)</title><rect x="789.8" y="229" width="0.4" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="792.80" y="239.5" ></text>
</g>
<g >
<title>get_page_from_freelist (12,205,335 samples, 0.04%)</title><rect x="873.2" y="69" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="876.21" y="79.5" ></text>
</g>
<g >
<title>runtime.sysAlloc (9,265,866 samples, 0.03%)</title><rect x="1010.7" y="293" width="0.4" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1013.73" y="303.5" ></text>
</g>
<g >
<title>__slab_free (132,637,059 samples, 0.45%)</title><rect x="238.3" y="373" width="5.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="241.26" y="383.5" ></text>
</g>
<g >
<title>wake_up_process (5,483,790 samples, 0.02%)</title><rect x="1160.5" y="245" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1163.54" y="255.5" ></text>
</g>
<g >
<title>reflect.Value.Field (7,620,755 samples, 0.03%)</title><rect x="571.3" y="501" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="574.27" y="511.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (8,493,071 samples, 0.03%)</title><rect x="1010.8" y="181" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1013.76" y="191.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,071,010 samples, 0.01%)</title><rect x="652.2" y="69" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="655.21" y="79.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (126,438,645 samples, 0.43%)</title><rect x="633.3" y="485" width="5.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="636.29" y="495.5" ></text>
</g>
<g >
<title>runtime.mstart1 (56,284,209 samples, 0.19%)</title><rect x="16.1" y="581" width="2.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="19.15" y="591.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (8,322,105 samples, 0.03%)</title><rect x="162.5" y="213" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="165.49" y="223.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,520,590 samples, 0.01%)</title><rect x="259.0" y="229" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="261.95" y="239.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (44,880,873 samples, 0.15%)</title><rect x="154.1" y="261" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="157.07" y="271.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (6,109,458 samples, 0.02%)</title><rect x="971.1" y="389" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="974.14" y="399.5" ></text>
</g>
<g >
<title>memchr_inv (32,156,606 samples, 0.11%)</title><rect x="933.5" y="325" width="1.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="936.46" y="335.5" ></text>
</g>
<g >
<title>__slab_free (6,721,506 samples, 0.02%)</title><rect x="241.7" y="245" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="244.68" y="255.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (56,284,209 samples, 0.19%)</title><rect x="16.1" y="613" width="2.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="19.15" y="623.5" ></text>
</g>
<g >
<title>handle_pte_fault (18,493,482 samples, 0.06%)</title><rect x="616.9" y="213" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="619.86" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (5,362,539 samples, 0.02%)</title><rect x="602.2" y="293" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="605.23" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (7,647,842 samples, 0.03%)</title><rect x="570.7" y="309" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="573.69" y="319.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (52,761,922 samples, 0.18%)</title><rect x="916.8" y="309" width="2.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="919.85" y="319.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (3,910,367 samples, 0.01%)</title><rect x="498.6" y="485" width="0.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="501.62" y="495.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (3,074,119 samples, 0.01%)</title><rect x="1174.4" y="437" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1177.40" y="447.5" ></text>
</g>
<g >
<title>runtime.gopark (3,147,806 samples, 0.01%)</title><rect x="384.4" y="581" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="387.41" y="591.5" ></text>
</g>
<g >
<title>handle_pte_fault (14,581,136 samples, 0.05%)</title><rect x="584.0" y="421" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="586.98" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (13,591,215 samples, 0.05%)</title><rect x="258.5" y="357" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="261.55" y="367.5" ></text>
</g>
<g >
<title>__rcu_read_lock (22,786,313 samples, 0.08%)</title><rect x="807.7" y="213" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="810.73" y="223.5" ></text>
</g>
<g >
<title>__schedule (3,500,645 samples, 0.01%)</title><rect x="19.2" y="533" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="22.17" y="543.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (6,067,097 samples, 0.02%)</title><rect x="784.4" y="165" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="787.45" y="175.5" ></text>
</g>
<g >
<title>dentry_free (17,397,699 samples, 0.06%)</title><rect x="260.9" y="421" width="0.7" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="263.93" y="431.5" ></text>
</g>
<g >
<title>mod_objcg_state (3,336,031 samples, 0.01%)</title><rect x="188.6" y="213" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="191.60" y="223.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (10,739,993 samples, 0.04%)</title><rect x="604.0" y="277" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="606.97" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,915,428 samples, 0.02%)</title><rect x="604.1" y="165" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="607.12" y="175.5" ></text>
</g>
<g >
<title>vma_alloc_folio (46,223,724 samples, 0.16%)</title><rect x="589.2" y="389" width="1.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="592.16" y="399.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,038,617 samples, 0.01%)</title><rect x="1177.5" y="453" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1180.52" y="463.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (4,626,640 samples, 0.02%)</title><rect x="813.8" y="213" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="816.78" y="223.5" ></text>
</g>
<g >
<title>update_rq_clock (88,353,770 samples, 0.30%)</title><rect x="152.4" y="341" width="3.6" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="155.40" y="351.5" ></text>
</g>
<g >
<title>allocate_slab (18,375,758 samples, 0.06%)</title><rect x="873.2" y="101" width="0.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="876.17" y="111.5" ></text>
</g>
<g >
<title>__get_random_u32_below (9,872,748 samples, 0.03%)</title><rect x="807.2" y="149" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="810.17" y="159.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,140,813 samples, 0.01%)</title><rect x="20.7" y="437" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="23.74" y="447.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (32,813,838 samples, 0.11%)</title><rect x="16.8" y="485" width="1.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="19.81" y="495.5" ></text>
</g>
<g >
<title>irq_exit_rcu (103,357,331 samples, 0.35%)</title><rect x="160.6" y="357" width="4.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="163.57" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (46,240,464 samples, 0.16%)</title><rect x="651.3" y="421" width="1.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="654.28" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (4,801,526 samples, 0.02%)</title><rect x="605.9" y="277" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="608.85" y="287.5" ></text>
</g>
<g >
<title>testing.(*B).doBench.func1 (3,171,337,824 samples, 10.81%)</title><rect x="394.5" y="613" width="127.6" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="397.54" y="623.5" >testing.(*B).doB..</text>
</g>
<g >
<title>sched_clock_noinstr (50,462,637 samples, 0.17%)</title><rect x="153.9" y="293" width="2.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="156.86" y="303.5" ></text>
</g>
<g >
<title>update_process_times (4,690,586 samples, 0.02%)</title><rect x="1160.8" y="229" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1163.82" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (6,153,398 samples, 0.02%)</title><rect x="1171.4" y="373" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1174.42" y="383.5" ></text>
</g>
<g >
<title>migrate_disable (4,663,562 samples, 0.02%)</title><rect x="569.4" y="277" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="572.44" y="287.5" ></text>
</g>
<g >
<title>update_curr (18,400,029 samples, 0.06%)</title><rect x="131.7" y="277" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="134.70" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).fixupMagicFields (3,098,252 samples, 0.01%)</title><rect x="641.0" y="469" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="643.96" y="479.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (232,633,606 samples, 0.79%)</title><rect x="484.1" y="245" width="9.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="487.12" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (4,349,402,620 samples, 14.83%)</title><rect x="999.5" y="437" width="174.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1002.46" y="447.5" >github.com/cilium/ebpf..</text>
</g>
<g >
<title>bpf_iter_run_prog (309,664,455 samples, 1.06%)</title><rect x="482.1" y="261" width="12.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="485.15" y="271.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (16,306,213 samples, 0.06%)</title><rect x="150.2" y="325" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="153.17" y="335.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (30,254,527 samples, 0.10%)</title><rect x="151.2" y="293" width="1.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="154.16" y="303.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (3,127,860 samples, 0.01%)</title><rect x="411.7" y="437" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="414.74" y="447.5" ></text>
</g>
<g >
<title>irq_exit_rcu (7,574,380 samples, 0.03%)</title><rect x="68.4" y="389" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="71.38" y="399.5" ></text>
</g>
<g >
<title>allocate_slab (11,273,202 samples, 0.04%)</title><rect x="929.2" y="197" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="932.23" y="207.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (14,071,111 samples, 0.05%)</title><rect x="1160.4" y="277" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1163.45" y="287.5" ></text>
</g>
<g >
<title>file_free_rcu (6,418,233 samples, 0.02%)</title><rect x="85.2" y="293" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="88.24" y="303.5" ></text>
</g>
<g >
<title>errors.Is (45,200,558 samples, 0.15%)</title><rect x="638.5" y="469" width="1.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="641.53" y="479.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (62,621,366 samples, 0.21%)</title><rect x="819.8" y="197" width="2.5" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="822.76" y="207.5" ></text>
</g>
<g >
<title>native_write_msr (156,396,741 samples, 0.53%)</title><rect x="213.7" y="309" width="6.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="216.66" y="319.5" ></text>
</g>
<g >
<title>update_load_avg (8,548,005 samples, 0.03%)</title><rect x="134.6" y="293" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="137.58" y="303.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (33,523,979 samples, 0.11%)</title><rect x="507.0" y="389" width="1.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="510.00" y="399.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (3,775,522 samples, 0.01%)</title><rect x="968.3" y="341" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="971.34" y="351.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (792,439,580 samples, 2.70%)</title><rect x="538.1" y="405" width="31.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="541.14" y="415.5" >ru..</text>
</g>
<g >
<title>asm_exc_page_fault (14,540,723 samples, 0.05%)</title><rect x="570.4" y="469" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="573.42" y="479.5" ></text>
</g>
<g >
<title>vma_alloc_folio (13,806,342 samples, 0.05%)</title><rect x="584.0" y="389" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="587.01" y="399.5" ></text>
</g>
<g >
<title>memset_orig (15,231,794 samples, 0.05%)</title><rect x="787.5" y="229" width="0.6" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="790.53" y="239.5" ></text>
</g>
<g >
<title>security_capable (156,016,083 samples, 0.53%)</title><rect x="909.2" y="293" width="6.3" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="912.22" y="303.5" ></text>
</g>
<g >
<title>vma_alloc_folio (13,677,109 samples, 0.05%)</title><rect x="661.1" y="309" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="664.08" y="319.5" ></text>
</g>
<g >
<title>encoding/binary.Read (1,337,960,999 samples, 4.56%)</title><rect x="523.3" y="517" width="53.8" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="526.28" y="527.5" >encod..</text>
</g>
<g >
<title>on_each_cpu_cond_mask (3,005,378 samples, 0.01%)</title><rect x="1009.4" y="181" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1012.43" y="191.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign.func1 (891,493,971 samples, 3.04%)</title><rect x="592.5" y="453" width="35.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="595.46" y="463.5" >git..</text>
</g>
<g >
<title>asm_exc_page_fault (25,470,192 samples, 0.09%)</title><rect x="629.6" y="517" width="1.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="632.60" y="527.5" ></text>
</g>
<g >
<title>__unfreeze_partials (3,407,919 samples, 0.01%)</title><rect x="162.3" y="197" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="165.33" y="207.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,105,892 samples, 0.01%)</title><rect x="611.4" y="261" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="614.37" y="271.5" ></text>
</g>
<g >
<title>schedule (3,197,245 samples, 0.01%)</title><rect x="394.1" y="341" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="397.06" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,006,207 samples, 0.03%)</title><rect x="617.1" y="117" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="620.14" y="127.5" ></text>
</g>
<g >
<title>__update_load_avg_se (5,626,583 samples, 0.02%)</title><rect x="208.7" y="325" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="211.68" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (172,714,785 samples, 0.59%)</title><rect x="766.4" y="149" width="6.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="769.40" y="159.5" ></text>
</g>
<g >
<title>clear_page_erms (34,701,191 samples, 0.12%)</title><rect x="1007.5" y="181" width="1.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1010.45" y="191.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (18,874,849 samples, 0.06%)</title><rect x="378.1" y="517" width="0.8" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="381.13" y="527.5" ></text>
</g>
<g >
<title>__folio_alloc (42,339,659 samples, 0.14%)</title><rect x="643.1" y="325" width="1.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="646.12" y="335.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (4,568,603 samples, 0.02%)</title><rect x="620.8" y="293" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="623.84" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (3,080,580 samples, 0.01%)</title><rect x="582.6" y="373" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="585.56" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (17,036,857 samples, 0.06%)</title><rect x="623.9" y="309" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="626.94" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (4,281,352 samples, 0.01%)</title><rect x="606.4" y="149" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="609.36" y="159.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (47,001,559 samples, 0.16%)</title><rect x="16.5" y="549" width="1.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="19.52" y="559.5" ></text>
</g>
<g >
<title>[unknown] (11,769,604 samples, 0.04%)</title><rect x="10.0" y="581" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>__sys_bpf (11,534,524 samples, 0.04%)</title><rect x="712.4" y="357" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="715.38" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (9,337,452 samples, 0.03%)</title><rect x="575.9" y="437" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="578.86" y="447.5" ></text>
</g>
<g >
<title>enqueue_task (355,222,751 samples, 1.21%)</title><rect x="126.5" y="325" width="14.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="129.47" y="335.5" ></text>
</g>
<g >
<title>rcu_do_batch (46,803,782 samples, 0.16%)</title><rect x="187.5" y="261" width="1.9" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="190.52" y="271.5" ></text>
</g>
<g >
<title>rb_erase (8,413,394 samples, 0.03%)</title><rect x="205.9" y="357" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="208.89" y="367.5" ></text>
</g>
<g >
<title>handle_mm_fault (23,389,465 samples, 0.08%)</title><rect x="660.7" y="373" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="663.69" y="383.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (33,449,056 samples, 0.11%)</title><rect x="1172.8" y="357" width="1.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1175.79" y="367.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (5,841,044 samples, 0.02%)</title><rect x="619.6" y="325" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="622.62" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (3,282,085 samples, 0.01%)</title><rect x="293.3" y="485" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="296.34" y="495.5" ></text>
</g>
<g >
<title>__kmalloc_large_node (6,238,137 samples, 0.02%)</title><rect x="848.8" y="197" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="851.84" y="207.5" ></text>
</g>
<g >
<title>new_slab (5,412,821 samples, 0.02%)</title><rect x="773.9" y="101" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="776.94" y="111.5" ></text>
</g>
<g >
<title>clear_page_erms (3,071,010 samples, 0.01%)</title><rect x="652.2" y="53" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="655.21" y="63.5" ></text>
</g>
<g >
<title>clear_page_erms (6,084,056 samples, 0.02%)</title><rect x="570.7" y="293" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="573.69" y="303.5" ></text>
</g>
<g >
<title>errors.Is (8,457,000 samples, 0.03%)</title><rect x="632.9" y="485" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="635.95" y="495.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (7,574,380 samples, 0.03%)</title><rect x="68.4" y="373" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="71.38" y="383.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (5,413,945 samples, 0.02%)</title><rect x="759.4" y="181" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="762.40" y="191.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (934,983,841 samples, 3.19%)</title><rect x="854.8" y="245" width="37.6" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="857.79" y="255.5" >__k..</text>
</g>
<g >
<title>runtime.newobject (6,204,667 samples, 0.02%)</title><rect x="609.2" y="309" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="612.17" y="319.5" ></text>
</g>
<g >
<title>runtime.osyield.abi0 (7,993,281 samples, 0.03%)</title><rect x="292.3" y="517" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="295.25" y="527.5" ></text>
</g>
<g >
<title>rmqueue (9,699,353 samples, 0.03%)</title><rect x="805.0" y="117" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="807.99" y="127.5" ></text>
</g>
<g >
<title>__alloc_pages (4,654,711 samples, 0.02%)</title><rect x="627.3" y="165" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="630.33" y="175.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (2,929,216 samples, 0.01%)</title><rect x="661.0" y="309" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="663.97" y="319.5" ></text>
</g>
<g >
<title>ttwu_do_activate (469,371,332 samples, 1.60%)</title><rect x="122.6" y="341" width="18.9" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="125.64" y="351.5" ></text>
</g>
<g >
<title>__handle_mm_fault (11,649,207 samples, 0.04%)</title><rect x="627.1" y="261" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="630.05" y="271.5" ></text>
</g>
<g >
<title>bpf_check_uarg_tail_zero (3,093,141 samples, 0.01%)</title><rect x="937.9" y="341" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="940.93" y="351.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (3,839,438 samples, 0.01%)</title><rect x="509.5" y="501" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="512.49" y="511.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (222,739,572 samples, 0.76%)</title><rect x="405.8" y="469" width="9.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="408.81" y="479.5" ></text>
</g>
<g >
<title>free_slab (4,160,361 samples, 0.01%)</title><rect x="277.2" y="341" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="280.24" y="351.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (10,576,776 samples, 0.04%)</title><rect x="933.0" y="309" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="935.97" y="319.5" ></text>
</g>
<g >
<title>do_user_addr_fault (14,540,723 samples, 0.05%)</title><rect x="570.4" y="437" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="573.42" y="447.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (11,614,359 samples, 0.04%)</title><rect x="430.5" y="453" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="433.48" y="463.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (96,361,488 samples, 0.33%)</title><rect x="1179.7" y="485" width="3.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1182.67" y="495.5" ></text>
</g>
<g >
<title>kmem_cache_free (21,052,892 samples, 0.07%)</title><rect x="188.0" y="229" width="0.8" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="190.98" y="239.5" ></text>
</g>
<g >
<title>call_rcu (116,294,493 samples, 0.40%)</title><rect x="166.8" y="437" width="4.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="169.81" y="447.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (50,428,181 samples, 0.17%)</title><rect x="268.3" y="437" width="2.0" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="271.31" y="447.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,654,711 samples, 0.02%)</title><rect x="627.3" y="197" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="630.33" y="207.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,872,186 samples, 0.01%)</title><rect x="611.4" y="293" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="614.37" y="303.5" ></text>
</g>
<g >
<title>alloc_pages (5,398,683 samples, 0.02%)</title><rect x="849.1" y="181" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="852.09" y="191.5" ></text>
</g>
<g >
<title>handle_pte_fault (21,106,551 samples, 0.07%)</title><rect x="660.8" y="341" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="663.79" y="351.5" ></text>
</g>
<g >
<title>set_next_buddy (2,636,166 samples, 0.01%)</title><rect x="126.0" y="309" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="129.04" y="319.5" ></text>
</g>
<g >
<title>iput (177,367,347 samples, 0.60%)</title><rect x="252.0" y="389" width="7.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="254.98" y="399.5" ></text>
</g>
<g >
<title>runtime.interequal (4,671,944 samples, 0.02%)</title><rect x="615.1" y="309" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="618.05" y="319.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (7,734,137 samples, 0.03%)</title><rect x="420.7" y="469" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="423.68" y="479.5" ></text>
</g>
<g >
<title>do_anonymous_page (20,346,780 samples, 0.07%)</title><rect x="660.8" y="325" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="663.82" y="335.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (63,066,196 samples, 0.21%)</title><rect x="889.7" y="229" width="2.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="892.65" y="239.5" ></text>
</g>
<g >
<title>should_failslab (8,992,012 samples, 0.03%)</title><rect x="896.8" y="245" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="899.78" y="255.5" ></text>
</g>
<g >
<title>runtime.gosched_m (6,022,159 samples, 0.02%)</title><rect x="384.5" y="549" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="387.53" y="559.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (106,446,866 samples, 0.36%)</title><rect x="578.9" y="405" width="4.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="581.90" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (99,380,758 samples, 0.34%)</title><rect x="587.7" y="501" width="4.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="590.70" y="511.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (8,297,354 samples, 0.03%)</title><rect x="13.8" y="405" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="16.80" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (12,674,555,978 samples, 43.20%)</title><rect x="665.0" y="469" width="509.8" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="667.99" y="479.5" >github.com/cilium/ebpf/internal/sys.MapCreate</text>
</g>
<g >
<title>__kmem_cache_alloc_node (9,332,967 samples, 0.03%)</title><rect x="805.5" y="133" width="0.3" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="808.47" y="143.5" ></text>
</g>
<g >
<title>clear_page_erms (141,217,086 samples, 0.48%)</title><rect x="767.1" y="117" width="5.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="770.07" y="127.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (805,456,965 samples, 2.75%)</title><rect x="537.6" y="485" width="32.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="540.61" y="495.5" >bu..</text>
</g>
<g >
<title>runtime.memmove (123,145,141 samples, 0.42%)</title><rect x="1184.1" y="517" width="4.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1187.07" y="527.5" ></text>
</g>
<g >
<title>kvmalloc_node (12,412,011 samples, 0.04%)</title><rect x="848.8" y="229" width="0.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="851.84" y="239.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (6,635,455 samples, 0.02%)</title><rect x="208.4" y="325" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="211.42" y="335.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (792,439,580 samples, 2.70%)</title><rect x="538.1" y="453" width="31.9" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="541.14" y="463.5" >in..</text>
</g>
<g >
<title>__kmem_cache_free (8,352,383 samples, 0.03%)</title><rect x="241.6" y="261" width="0.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="244.62" y="271.5" ></text>
</g>
<g >
<title>runtime.efaceeq (4,654,156 samples, 0.02%)</title><rect x="428.1" y="421" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="431.12" y="431.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (4,599,179 samples, 0.02%)</title><rect x="604.2" y="101" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="607.21" y="111.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (13,591,215 samples, 0.05%)</title><rect x="258.5" y="309" width="0.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="261.55" y="319.5" ></text>
</g>
<g >
<title>zap_pte_range (60,704,944 samples, 0.21%)</title><rect x="37.8" y="357" width="2.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="40.76" y="367.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (510,974,533 samples, 1.74%)</title><rect x="540.9" y="293" width="20.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="543.86" y="303.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (22,077,972 samples, 0.08%)</title><rect x="624.8" y="309" width="0.8" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="627.75" y="319.5" ></text>
</g>
<g >
<title>__unfreeze_partials (5,994,696 samples, 0.02%)</title><rect x="277.2" y="373" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="280.17" y="383.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (13,052,171 samples, 0.04%)</title><rect x="435.3" y="293" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="438.32" y="303.5" ></text>
</g>
<g >
<title>memcpy_orig (28,754,722 samples, 0.10%)</title><rect x="491.7" y="213" width="1.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="494.73" y="223.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (96,836,089 samples, 0.33%)</title><rect x="532.9" y="501" width="3.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="535.94" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,296,911 samples, 0.01%)</title><rect x="260.8" y="421" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="263.79" y="431.5" ></text>
</g>
<g >
<title>runtime.markroot (33,523,979 samples, 0.11%)</title><rect x="507.0" y="357" width="1.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="510.00" y="367.5" ></text>
</g>
<g >
<title>wake_up_process (1,201,749,011 samples, 4.10%)</title><rect x="108.1" y="373" width="48.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="111.09" y="383.5" >wake..</text>
</g>
<g >
<title>bpf_map_put_uref (5,619,613 samples, 0.02%)</title><rect x="165.8" y="421" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="168.82" y="431.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (2,952,138 samples, 0.01%)</title><rect x="571.6" y="485" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="574.64" y="495.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,956,001 samples, 0.02%)</title><rect x="600.7" y="133" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="603.71" y="143.5" ></text>
</g>
<g >
<title>irqentry_exit (5,361,983 samples, 0.02%)</title><rect x="1188.4" y="469" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1191.41" y="479.5" ></text>
</g>
<g >
<title>enqueue_task_fair (15,445,925 samples, 0.05%)</title><rect x="140.8" y="325" width="0.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="143.76" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (53,132,109 samples, 0.18%)</title><rect x="1186.2" y="453" width="2.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1189.21" y="463.5" ></text>
</g>
<g >
<title>psi_flags_change (12,500,270 samples, 0.04%)</title><rect x="135.0" y="309" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="137.98" y="319.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (2,962,335 samples, 0.01%)</title><rect x="14.0" y="341" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="16.95" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (21,480,882 samples, 0.07%)</title><rect x="629.6" y="469" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="632.60" y="479.5" ></text>
</g>
<g >
<title>rcu_do_batch (7,365,110 samples, 0.03%)</title><rect x="68.4" y="309" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="71.38" y="319.5" ></text>
</g>
<g >
<title>allocate_slab (409,406,788 samples, 1.40%)</title><rect x="859.6" y="197" width="16.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="862.60" y="207.5" ></text>
</g>
<g >
<title>runtime.newstack (3,711,941 samples, 0.01%)</title><rect x="1189.5" y="613" width="0.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1192.55" y="623.5" ></text>
</g>
<g >
<title>shuffle_freelist (5,387,696 samples, 0.02%)</title><rect x="873.7" y="85" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="876.70" y="95.5" ></text>
</g>
<g >
<title>___slab_alloc (18,375,758 samples, 0.06%)</title><rect x="873.2" y="133" width="0.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="876.17" y="143.5" ></text>
</g>
<g >
<title>__d_alloc (933,458,051 samples, 3.18%)</title><rect x="792.5" y="245" width="37.5" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="795.48" y="255.5" >__d..</text>
</g>
<g >
<title>rcu_core (4,140,813 samples, 0.01%)</title><rect x="20.7" y="373" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="23.74" y="383.5" ></text>
</g>
<g >
<title>__alloc_pages (12,988,062 samples, 0.04%)</title><rect x="873.2" y="85" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="876.17" y="95.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (3,090,164 samples, 0.01%)</title><rect x="15.8" y="613" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="18.80" y="623.5" ></text>
</g>
<g >
<title>inc_slabs_node (3,678,971 samples, 0.01%)</title><rect x="765.9" y="197" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="768.91" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,452,780 samples, 0.01%)</title><rect x="11.8" y="453" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="14.80" y="463.5" ></text>
</g>
<g >
<title>runtime.mcall (5,331,408 samples, 0.02%)</title><rect x="394.0" y="549" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="397.00" y="559.5" ></text>
</g>
<g >
<title>psi_task_switch (194,830,089 samples, 0.66%)</title><rect x="220.9" y="389" width="7.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="223.86" y="399.5" ></text>
</g>
<g >
<title>rcu_core (7,365,110 samples, 0.03%)</title><rect x="68.4" y="325" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="71.38" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,140,813 samples, 0.01%)</title><rect x="20.7" y="453" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="23.74" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (14,405,674 samples, 0.05%)</title><rect x="734.1" y="309" width="0.6" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="737.11" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readStringTable (31,898,216 samples, 0.11%)</title><rect x="605.9" y="309" width="1.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="608.85" y="319.5" ></text>
</g>
<g >
<title>schedule (4,278,174 samples, 0.01%)</title><rect x="292.3" y="437" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="295.33" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (19,171,933 samples, 0.07%)</title><rect x="629.7" y="437" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="632.69" y="447.5" ></text>
</g>
<g >
<title>runtime.(*atomicHeadTailIndex).incTail (2,997,265 samples, 0.01%)</title><rect x="393.5" y="533" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="396.46" y="543.5" ></text>
</g>
<g >
<title>rcu_core (2,927,704 samples, 0.01%)</title><rect x="268.1" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="271.09" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (49,131,059 samples, 0.17%)</title><rect x="969.2" y="389" width="1.9" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="972.16" y="399.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (2,871,560 samples, 0.01%)</title><rect x="1007.1" y="245" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1010.09" y="255.5" ></text>
</g>
<g >
<title>rcu_core_si (2,919,110 samples, 0.01%)</title><rect x="249.0" y="293" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="252.02" y="303.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (3,039,671 samples, 0.01%)</title><rect x="605.6" y="245" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="608.61" y="255.5" ></text>
</g>
<g >
<title>do_sched_yield (4,278,174 samples, 0.01%)</title><rect x="292.3" y="453" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="295.33" y="463.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,073,644 samples, 0.01%)</title><rect x="600.4" y="293" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="603.37" y="303.5" ></text>
</g>
<g >
<title>__cond_resched (15,476,326 samples, 0.05%)</title><rect x="20.9" y="485" width="0.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="23.90" y="495.5" ></text>
</g>
<g >
<title>runtime.notewakeup (3,582,891 samples, 0.01%)</title><rect x="11.8" y="485" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="14.80" y="495.5" ></text>
</g>
<g >
<title>new_slab (244,559,616 samples, 0.83%)</title><rect x="766.1" y="197" width="9.8" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="769.09" y="207.5" ></text>
</g>
<g >
<title>reflect.Value.Field (12,309,707 samples, 0.04%)</title><rect x="498.1" y="485" width="0.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="501.12" y="495.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (10,052,255 samples, 0.03%)</title><rect x="666.5" y="421" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="669.49" y="431.5" ></text>
</g>
<g >
<title>handle_pte_fault (8,544,510 samples, 0.03%)</title><rect x="596.8" y="197" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="599.79" y="207.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,657,196 samples, 0.01%)</title><rect x="574.5" y="389" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="577.54" y="399.5" ></text>
</g>
<g >
<title>runtime.sysAllocOS (9,265,866 samples, 0.03%)</title><rect x="1010.7" y="277" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1013.73" y="287.5" ></text>
</g>
<g >
<title>do_wp_page (14,717,786 samples, 0.05%)</title><rect x="624.0" y="213" width="0.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="627.01" y="223.5" ></text>
</g>
<g >
<title>memcpy_orig (10,741,790 samples, 0.04%)</title><rect x="567.9" y="229" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="570.88" y="239.5" ></text>
</g>
<g >
<title>psi_task_switch (6,075,383 samples, 0.02%)</title><rect x="14.6" y="405" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="17.64" y="415.5" ></text>
</g>
<g >
<title>free_unref_page (6,700,418 samples, 0.02%)</title><rect x="241.2" y="261" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="244.22" y="271.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (204,229,674 samples, 0.70%)</title><rect x="561.4" y="293" width="8.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="564.41" y="303.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (3,875,852 samples, 0.01%)</title><rect x="809.2" y="213" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="812.20" y="223.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (198,562,198 samples, 0.68%)</title><rect x="525.0" y="501" width="7.9" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="527.96" y="511.5" ></text>
</g>
<g >
<title>runtime.scanobject (33,941,225 samples, 0.12%)</title><rect x="512.9" y="373" width="1.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="515.91" y="383.5" ></text>
</g>
<g >
<title>runtime.markroot (4,594,959 samples, 0.02%)</title><rect x="1173.0" y="293" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1176.00" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (13,600,433,400 samples, 46.36%)</title><rect x="631.5" y="501" width="547.0" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="634.52" y="511.5" >github.com/cilium/ebpf.newMapWithOptions</text>
</g>
<g >
<title>testing.(*B).launch (3,171,337,824 samples, 10.81%)</title><rect x="394.5" y="597" width="127.6" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="397.54" y="607.5" >testing.(*B).lau..</text>
</g>
<g >
<title>check_cfs_rq_runtime (6,899,907 samples, 0.02%)</title><rect x="192.0" y="357" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text x="194.96" y="367.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,523,462 samples, 0.01%)</title><rect x="605.9" y="181" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="608.90" y="191.5" ></text>
</g>
<g >
<title>exc_page_fault (3,086,229 samples, 0.01%)</title><rect x="652.0" y="261" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="654.96" y="271.5" ></text>
</g>
<g >
<title>rcu_do_batch (6,117,269 samples, 0.02%)</title><rect x="260.5" y="293" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="263.55" y="303.5" ></text>
</g>
<g >
<title>rmqueue (9,321,243 samples, 0.03%)</title><rect x="644.4" y="277" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="647.45" y="287.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,988,692 samples, 0.01%)</title><rect x="262.7" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="265.65" y="303.5" ></text>
</g>
<g >
<title>[unknown] (3,858,873 samples, 0.01%)</title><rect x="10.0" y="565" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,561,496,429 samples, 5.32%)</title><rect x="433.9" y="373" width="62.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="436.89" y="383.5" >entry_..</text>
</g>
<g >
<title>asm_exc_page_fault (13,135,753 samples, 0.04%)</title><rect x="599.1" y="293" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="602.10" y="303.5" ></text>
</g>
<g >
<title>__check_object_size (10,714,786 samples, 0.04%)</title><rect x="713.1" y="341" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="716.07" y="351.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (3,693,207 samples, 0.01%)</title><rect x="181.3" y="341" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="184.34" y="351.5" ></text>
</g>
<g >
<title>tick_sched_timer (4,556,601 samples, 0.02%)</title><rect x="677.8" y="309" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="680.76" y="319.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,988,692 samples, 0.01%)</title><rect x="262.7" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="265.65" y="415.5" ></text>
</g>
<g >
<title>runtime.stopm (4,103,986 samples, 0.01%)</title><rect x="394.0" y="485" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="397.04" y="495.5" ></text>
</g>
<g >
<title>sync_regs (3,104,459 samples, 0.01%)</title><rect x="616.3" y="309" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="619.27" y="319.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,532,736 samples, 0.01%)</title><rect x="625.5" y="293" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="628.50" y="303.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (6,143,712 samples, 0.02%)</title><rect x="39.8" y="277" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="42.84" y="287.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (9,291,550 samples, 0.03%)</title><rect x="413.1" y="453" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="416.08" y="463.5" ></text>
</g>
<g >
<title>runtime.mallocgc (17,559,125 samples, 0.06%)</title><rect x="620.3" y="325" width="0.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="623.35" y="335.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (23,758,851 samples, 0.08%)</title><rect x="745.6" y="213" width="1.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="748.64" y="223.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,963,874 samples, 0.01%)</title><rect x="277.0" y="357" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="279.97" y="367.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (4,106,951 samples, 0.01%)</title><rect x="17.6" y="421" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="20.57" y="431.5" ></text>
</g>
<g >
<title>runtime.goexit.abi0 (22,503,055,520 samples, 76.70%)</title><rect x="284.4" y="629" width="905.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="287.43" y="639.5" >runtime.goexit.abi0</text>
</g>
<g >
<title>__alloc_pages (3,087,808 samples, 0.01%)</title><rect x="599.3" y="133" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="602.29" y="143.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (29,703,866 samples, 0.10%)</title><rect x="709.3" y="373" width="1.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="712.31" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (12,993,610 samples, 0.04%)</title><rect x="808.6" y="213" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="811.64" y="223.5" ></text>
</g>
<g >
<title>__alloc_pages (8,522,863 samples, 0.03%)</title><rect x="624.3" y="149" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="627.26" y="159.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (1,122,886,080 samples, 3.83%)</title><rect x="852.6" y="293" width="45.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="855.57" y="303.5" >bpf_..</text>
</g>
<g >
<title>runtime.mallocgc (43,246,451 samples, 0.15%)</title><rect x="512.7" y="485" width="1.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="515.66" y="495.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6,589,534,079 samples, 22.46%)</title><rect x="19.3" y="581" width="265.0" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="22.31" y="591.5" >exit_to_user_mode_prepare</text>
</g>
<g >
<title>new_slab (411,739,209 samples, 1.40%)</title><rect x="859.6" y="213" width="16.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="862.57" y="223.5" ></text>
</g>
<g >
<title>sched_clock_cpu (38,738,720 samples, 0.13%)</title><rect x="138.9" y="293" width="1.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="141.91" y="303.5" ></text>
</g>
<g >
<title>mod_objcg_state (36,071,280 samples, 0.12%)</title><rect x="783.2" y="197" width="1.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="786.24" y="207.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (3,543,893 samples, 0.01%)</title><rect x="529.6" y="453" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="532.62" y="463.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,007,707 samples, 0.01%)</title><rect x="92.3" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="95.35" y="399.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (92,775,199 samples, 0.32%)</title><rect x="667.5" y="389" width="3.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="670.55" y="399.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (3,060,386 samples, 0.01%)</title><rect x="16.4" y="517" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="19.39" y="527.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (66,541,018 samples, 0.23%)</title><rect x="662.3" y="469" width="2.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="665.26" y="479.5" ></text>
</g>
<g >
<title>___slab_alloc (41,300,599 samples, 0.14%)</title><rect x="757.7" y="181" width="1.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="760.70" y="191.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (35,119,835 samples, 0.12%)</title><rect x="16.7" y="501" width="1.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="19.72" y="511.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (32,385,577 samples, 0.11%)</title><rect x="752.2" y="181" width="1.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="755.23" y="191.5" ></text>
</g>
<g >
<title>allocate_slab (5,412,821 samples, 0.02%)</title><rect x="773.9" y="85" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="776.94" y="95.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,140,813 samples, 0.01%)</title><rect x="20.7" y="469" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="23.74" y="479.5" ></text>
</g>
<g >
<title>discard_slab (29,675,587 samples, 0.10%)</title><rect x="240.9" y="325" width="1.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="243.89" y="335.5" ></text>
</g>
<g >
<title>runtime.(*timeHistogram).record (4,637,963 samples, 0.02%)</title><rect x="673.6" y="373" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="676.55" y="383.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (12,330,748 samples, 0.04%)</title><rect x="582.7" y="373" width="0.5" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="585.68" y="383.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (3,898,219 samples, 0.01%)</title><rect x="472.6" y="245" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="475.64" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Enum).copy (3,881,329 samples, 0.01%)</title><rect x="608.7" y="325" width="0.1" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="611.67" y="335.5" ></text>
</g>
<g >
<title>set_next_entity (3,699,830 samples, 0.01%)</title><rect x="210.8" y="373" width="0.1" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="213.78" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (103,357,331 samples, 0.35%)</title><rect x="160.6" y="325" width="4.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="163.57" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,153,398 samples, 0.02%)</title><rect x="1171.4" y="325" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1174.42" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (10,480,741 samples, 0.04%)</title><rect x="85.2" y="357" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="88.21" y="367.5" ></text>
</g>
<g >
<title>mod_memcg_state (6,142,042 samples, 0.02%)</title><rect x="786.6" y="181" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="789.58" y="191.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (7,493,822 samples, 0.03%)</title><rect x="640.7" y="469" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="643.66" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (3,118,027 samples, 0.01%)</title><rect x="805.7" y="37" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="808.66" y="47.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (32,568,602 samples, 0.11%)</title><rect x="413.5" y="453" width="1.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="416.45" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (33,523,979 samples, 0.11%)</title><rect x="507.0" y="421" width="1.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="510.00" y="431.5" ></text>
</g>
<g >
<title>__slab_free (3,019,715 samples, 0.01%)</title><rect x="85.3" y="261" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="88.32" y="271.5" ></text>
</g>
<g >
<title>__folio_alloc (13,806,342 samples, 0.05%)</title><rect x="584.0" y="373" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="587.01" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,959,425 samples, 0.02%)</title><rect x="606.3" y="181" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="609.33" y="191.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (11,597,315 samples, 0.04%)</title><rect x="472.9" y="229" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="475.95" y="239.5" ></text>
</g>
<g >
<title>__free_slab (2,836,419 samples, 0.01%)</title><rect x="162.3" y="149" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="165.35" y="159.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,774,717 samples, 0.01%)</title><rect x="394.1" y="437" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="397.05" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,101,484 samples, 0.01%)</title><rect x="597.0" y="101" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="600.01" y="111.5" ></text>
</g>
<g >
<title>psi_task_switch (3,828,819 samples, 0.01%)</title><rect x="229.3" y="405" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="232.25" y="415.5" ></text>
</g>
<g >
<title>update_load_avg (26,165,982 samples, 0.09%)</title><rect x="207.9" y="341" width="1.0" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="210.86" y="351.5" ></text>
</g>
<g >
<title>new_slab (11,273,202 samples, 0.04%)</title><rect x="929.2" y="213" width="0.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="932.23" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).finalize (7,713,374 samples, 0.03%)</title><rect x="631.2" y="501" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="634.18" y="511.5" ></text>
</g>
<g >
<title>irq_exit_rcu (13,591,215 samples, 0.05%)</title><rect x="258.5" y="325" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="261.55" y="335.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (17,828,008 samples, 0.06%)</title><rect x="294.0" y="501" width="0.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="296.96" y="511.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (3,007,707 samples, 0.01%)</title><rect x="92.3" y="357" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="95.35" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (14,739,873 samples, 0.05%)</title><rect x="596.7" y="261" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="599.73" y="271.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (9,265,866 samples, 0.03%)</title><rect x="1010.7" y="197" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1013.73" y="207.5" ></text>
</g>
<g >
<title>runtime.lock2 (29,824,279 samples, 0.10%)</title><rect x="1166.3" y="373" width="1.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1169.35" y="383.5" ></text>
</g>
<g >
<title>cap_capable (47,190,506 samples, 0.16%)</title><rect x="907.3" y="293" width="1.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="910.32" y="303.5" ></text>
</g>
<g >
<title>file_free_rcu (2,590,573 samples, 0.01%)</title><rect x="160.6" y="277" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="163.57" y="287.5" ></text>
</g>
<g >
<title>__free_slab (4,056,629 samples, 0.01%)</title><rect x="277.2" y="325" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="280.24" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (8,956,133 samples, 0.03%)</title><rect x="929.3" y="149" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="932.26" y="159.5" ></text>
</g>
<g >
<title>____fput (39,574,289 samples, 0.13%)</title><rect x="19.3" y="485" width="1.6" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="22.31" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,881,489 samples, 0.01%)</title><rect x="341.4" y="533" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="344.44" y="543.5" ></text>
</g>
<g >
<title>select_idle_sibling (25,753,667 samples, 0.09%)</title><rect x="121.6" y="325" width="1.0" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="124.60" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,901,562 samples, 0.04%)</title><rect x="118.8" y="341" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="121.82" y="351.5" ></text>
</g>
<g >
<title>runtime.gcBgMarkWorker.func2 (2,479,912,086 samples, 8.45%)</title><rect x="284.7" y="581" width="99.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="287.66" y="591.5" >runtime.gcBg..</text>
</g>
<g >
<title>obj_cgroup_charge (8,238,411 samples, 0.03%)</title><rect x="788.1" y="229" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="791.15" y="239.5" ></text>
</g>
<g >
<title>handle_pte_fault (14,717,786 samples, 0.05%)</title><rect x="624.0" y="229" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="627.01" y="239.5" ></text>
</g>
<g >
<title>___slab_alloc (274,934,564 samples, 0.94%)</title><rect x="764.9" y="213" width="11.0" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="767.87" y="223.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,628,463 samples, 0.02%)</title><rect x="602.6" y="213" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="605.57" y="223.5" ></text>
</g>
<g >
<title>update_curr (11,677,555 samples, 0.04%)</title><rect x="208.9" y="357" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="211.91" y="367.5" ></text>
</g>
<g >
<title>testing.(*B).runN (16,593,940,278 samples, 56.56%)</title><rect x="522.1" y="597" width="667.4" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="525.10" y="607.5" >testing.(*B).runN</text>
</g>
<g >
<title>runtime.preemptone (3,060,386 samples, 0.01%)</title><rect x="16.4" y="533" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="19.39" y="543.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (521,747,787 samples, 1.78%)</title><rect x="641.1" y="469" width="21.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="644.08" y="479.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (14,630,716 samples, 0.05%)</title><rect x="494.6" y="261" width="0.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="497.60" y="271.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (10,847,539 samples, 0.04%)</title><rect x="508.7" y="469" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="511.75" y="479.5" ></text>
</g>
<g >
<title>update_load_avg (39,692,847 samples, 0.14%)</title><rect x="132.4" y="277" width="1.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="135.44" y="287.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (6,182,825 samples, 0.02%)</title><rect x="512.1" y="501" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="515.13" y="511.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,965,465 samples, 0.01%)</title><rect x="561.8" y="277" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="564.80" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (3,523,462 samples, 0.01%)</title><rect x="605.9" y="117" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="608.90" y="127.5" ></text>
</g>
<g >
<title>perf_ctx_enable (2,785,164 samples, 0.01%)</title><rect x="19.2" y="469" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="22.20" y="479.5" ></text>
</g>
<g >
<title>mntput (54,029,482 samples, 0.18%)</title><rect x="266.0" y="437" width="2.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="269.04" y="447.5" ></text>
</g>
<g >
<title>__schedule (3,197,245 samples, 0.01%)</title><rect x="394.1" y="325" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="397.06" y="335.5" ></text>
</g>
<g >
<title>security_task_kill (2,544,110 samples, 0.01%)</title><rect x="294.3" y="389" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="297.27" y="399.5" ></text>
</g>
<g >
<title>sched_clock (67,808,208 samples, 0.23%)</title><rect x="153.2" y="309" width="2.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="156.16" y="319.5" ></text>
</g>
<g >
<title>__free_slab (2,960,854 samples, 0.01%)</title><rect x="163.4" y="149" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="166.43" y="159.5" ></text>
</g>
<g >
<title>pick_next_entity (8,092,546 samples, 0.03%)</title><rect x="192.3" y="357" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="195.29" y="367.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4,895,041 samples, 0.02%)</title><rect x="160.4" y="325" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="163.35" y="335.5" ></text>
</g>
<g >
<title>rcu_core_si (2,927,704 samples, 0.01%)</title><rect x="268.1" y="325" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="271.09" y="335.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (13,010,722 samples, 0.04%)</title><rect x="938.8" y="357" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="941.82" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,525,613 samples, 0.01%)</title><rect x="243.6" y="357" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="246.59" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (5,398,683 samples, 0.02%)</title><rect x="849.1" y="165" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="852.09" y="175.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (10,925,234 samples, 0.04%)</title><rect x="186.8" y="309" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="189.79" y="319.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (9,923,756 samples, 0.03%)</title><rect x="937.2" y="325" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="940.15" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (277,863,627 samples, 0.95%)</title><rect x="860.7" y="133" width="11.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="863.68" y="143.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (24,748,652 samples, 0.08%)</title><rect x="574.7" y="421" width="1.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="577.74" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (4,082,631 samples, 0.01%)</title><rect x="620.6" y="245" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="623.62" y="255.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (2,782,334 samples, 0.01%)</title><rect x="625.5" y="245" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="628.53" y="255.5" ></text>
</g>
<g >
<title>runtime.bgsweep (238,546,628 samples, 0.81%)</title><rect x="384.4" y="597" width="9.6" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="387.41" y="607.5" ></text>
</g>
<g >
<title>rcu_core (14,595,881 samples, 0.05%)</title><rect x="74.8" y="325" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="77.76" y="335.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (187,979,155 samples, 0.64%)</title><rect x="212.8" y="357" width="7.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="215.78" y="367.5" ></text>
</g>
<g >
<title>bpf_seq_write (41,860,209 samples, 0.14%)</title><rect x="491.6" y="229" width="1.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="494.64" y="239.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (10,591,653 samples, 0.04%)</title><rect x="834.3" y="245" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="837.33" y="255.5" ></text>
</g>
<g >
<title>sched_clock (33,005,206 samples, 0.11%)</title><rect x="151.0" y="309" width="1.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="154.05" y="319.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (199,897,215 samples, 0.68%)</title><rect x="841.7" y="293" width="8.0" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="844.70" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (14,540,723 samples, 0.05%)</title><rect x="570.4" y="453" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="573.42" y="463.5" ></text>
</g>
<g >
<title>runtime.markroot.func1 (60,171,142 samples, 0.21%)</title><rect x="292.3" y="533" width="2.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="295.25" y="543.5" ></text>
</g>
<g >
<title>lockref_put_return (53,638,277 samples, 0.18%)</title><rect x="262.9" y="421" width="2.1" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="265.85" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (5,218,941 samples, 0.02%)</title><rect x="628.1" y="389" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="631.11" y="399.5" ></text>
</g>
<g >
<title>__unfreeze_partials (35,014,780 samples, 0.12%)</title><rect x="240.7" y="341" width="1.4" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="243.67" y="351.5" ></text>
</g>
<g >
<title>unmap_vmas (78,820,463 samples, 0.27%)</title><rect x="37.0" y="421" width="3.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="40.03" y="431.5" ></text>
</g>
<g >
<title>rcu_core_si (7,365,110 samples, 0.03%)</title><rect x="68.4" y="341" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="71.38" y="351.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (16,009,080 samples, 0.05%)</title><rect x="1160.4" y="309" width="0.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1163.45" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,641,118 samples, 0.02%)</title><rect x="596.1" y="293" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="599.14" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (21,918,411 samples, 0.07%)</title><rect x="1171.8" y="389" width="0.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1174.75" y="399.5" ></text>
</g>
<g >
<title>errors.Is (23,574,566 samples, 0.08%)</title><rect x="577.3" y="517" width="1.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="580.31" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (29,527,222 samples, 0.10%)</title><rect x="660.7" y="405" width="1.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="663.69" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (4,360,617,766 samples, 14.86%)</title><rect x="999.3" y="453" width="175.4" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1002.32" y="463.5" >github.com/cilium/ebpf..</text>
</g>
<g >
<title>memcpy_orig (3,881,588 samples, 0.01%)</title><rect x="849.3" y="245" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="852.34" y="255.5" ></text>
</g>
<g >
<title>migrate_enable (11,355,713 samples, 0.04%)</title><rect x="568.8" y="261" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="571.78" y="271.5" ></text>
</g>
<g >
<title>expand_files (25,594,609 samples, 0.09%)</title><rect x="848.6" y="261" width="1.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="851.62" y="271.5" ></text>
</g>
<g >
<title>try_charge_memcg (7,711,535 samples, 0.03%)</title><rect x="891.9" y="213" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="894.88" y="223.5" ></text>
</g>
<g >
<title>btf_nested_type_is_trusted (3,729,977 samples, 0.01%)</title><rect x="628.1" y="165" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="631.11" y="175.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (68,692,869 samples, 0.23%)</title><rect x="186.8" y="357" width="2.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="189.76" y="367.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,555,139 samples, 0.01%)</title><rect x="266.1" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="269.10" y="431.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (241,556,138 samples, 0.82%)</title><rect x="249.4" y="405" width="9.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="252.40" y="415.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (46,151,716 samples, 0.16%)</title><rect x="38.3" y="325" width="1.9" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="41.34" y="335.5" ></text>
</g>
<g >
<title>put_pid (4,785,946 samples, 0.02%)</title><rect x="282.8" y="453" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="285.80" y="463.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,480,741 samples, 0.04%)</title><rect x="85.2" y="389" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="88.21" y="399.5" ></text>
</g>
<g >
<title>mntput (24,062,273 samples, 0.08%)</title><rect x="281.2" y="453" width="0.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="284.17" y="463.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6,589,534,079 samples, 22.46%)</title><rect x="19.3" y="597" width="265.0" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="22.31" y="607.5" >syscall_exit_to_user_mode</text>
</g>
<g >
<title>exc_page_fault (20,595,867 samples, 0.07%)</title><rect x="583.9" y="485" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="586.91" y="495.5" ></text>
</g>
<g >
<title>cache_from_obj (3,238,894 samples, 0.01%)</title><rect x="273.2" y="421" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="276.19" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (8,481,725 samples, 0.03%)</title><rect x="629.8" y="373" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="632.78" y="383.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (12,292,199 samples, 0.04%)</title><rect x="427.8" y="437" width="0.5" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="430.81" y="447.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,367,890 samples, 0.01%)</title><rect x="68.4" y="277" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="71.44" y="287.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (19,213,835 samples, 0.07%)</title><rect x="778.9" y="197" width="0.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="781.88" y="207.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (3,043,448 samples, 0.01%)</title><rect x="813.6" y="165" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="816.57" y="175.5" ></text>
</g>
<g >
<title>syscall.Syscall (5,218,941 samples, 0.02%)</title><rect x="628.1" y="357" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="631.11" y="367.5" ></text>
</g>
<g >
<title>allocate_slab (242,220,596 samples, 0.83%)</title><rect x="766.1" y="181" width="9.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="769.12" y="191.5" ></text>
</g>
<g >
<title>runtime.(*mheap).freeSpanLocked (3,766,491 samples, 0.01%)</title><rect x="393.7" y="517" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="396.67" y="527.5" ></text>
</g>
<g >
<title>do_wp_page (4,522,319 samples, 0.02%)</title><rect x="1009.4" y="261" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="1012.37" y="271.5" ></text>
</g>
<g >
<title>psi_task_change (3,382,784 samples, 0.01%)</title><rect x="141.4" y="325" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="144.38" y="335.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,613,058 samples, 0.01%)</title><rect x="75.2" y="293" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="78.20" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (6,936,452 samples, 0.02%)</title><rect x="505.2" y="405" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="508.20" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (9,265,866 samples, 0.03%)</title><rect x="1010.7" y="229" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1013.73" y="239.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (8,069,073 samples, 0.03%)</title><rect x="156.0" y="357" width="0.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="159.05" y="367.5" ></text>
</g>
<g >
<title>runtime.mstart1 (98,305,263 samples, 0.34%)</title><rect x="11.5" y="565" width="3.9" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="14.49" y="575.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (4,625,398 samples, 0.02%)</title><rect x="617.0" y="149" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="619.96" y="159.5" ></text>
</g>
<g >
<title>__alloc_pages (42,339,659 samples, 0.14%)</title><rect x="643.1" y="309" width="1.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="646.12" y="319.5" ></text>
</g>
<g >
<title>runtime.scanobject (23,501,987 samples, 0.08%)</title><rect x="1173.2" y="293" width="0.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1176.19" y="303.5" ></text>
</g>
<g >
<title>psi_group_change (100,271,134 samples, 0.34%)</title><rect x="222.8" y="373" width="4.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="225.83" y="383.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4,850,445 samples, 0.02%)</title><rect x="569.8" y="357" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="572.75" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.applyRelocations (368,678,653 samples, 1.26%)</title><rect x="592.5" y="405" width="14.8" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="595.46" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (17,088,673 samples, 0.06%)</title><rect x="627.0" y="309" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="630.02" y="319.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,295,789 samples, 0.02%)</title><rect x="889.4" y="229" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="892.41" y="239.5" ></text>
</g>
<g >
<title>__memcpy (3,098,602 samples, 0.01%)</title><rect x="830.0" y="245" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="833.03" y="255.5" ></text>
</g>
<g >
<title>discard_slab (5,440,795 samples, 0.02%)</title><rect x="277.2" y="357" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="280.19" y="367.5" ></text>
</g>
<g >
<title>__fput (5,838,623,844 samples, 19.90%)</title><rect x="45.1" y="453" width="234.8" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="48.08" y="463.5" >__fput</text>
</g>
<g >
<title>do_anonymous_page (4,245,853 samples, 0.01%)</title><rect x="576.7" y="373" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="579.66" y="383.5" ></text>
</g>
<g >
<title>runtime.spanOfHeap (6,846,858 samples, 0.02%)</title><rect x="1165.0" y="357" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1167.96" y="367.5" ></text>
</g>
<g >
<title>runtime.memmove (26,997,824 samples, 0.09%)</title><rect x="616.7" y="309" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="619.71" y="319.5" ></text>
</g>
<g >
<title>put_files_struct (383,116,759 samples, 1.31%)</title><rect x="21.6" y="469" width="15.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="24.62" y="479.5" ></text>
</g>
<g >
<title>_get_random_bytes (4,626,811 samples, 0.02%)</title><rect x="875.6" y="133" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="878.58" y="143.5" ></text>
</g>
<g >
<title>__radix_tree_replace (3,085,319 samples, 0.01%)</title><rect x="921.4" y="277" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="924.41" y="287.5" ></text>
</g>
<g >
<title>do_anonymous_page (60,586,875 samples, 0.21%)</title><rect x="642.4" y="357" width="2.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="645.42" y="367.5" ></text>
</g>
<g >
<title>rcu_do_batch (99,990,216 samples, 0.34%)</title><rect x="160.7" y="277" width="4.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="163.68" y="287.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (32,801,631 samples, 0.11%)</title><rect x="788.5" y="229" width="1.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="791.48" y="239.5" ></text>
</g>
<g >
<title>alloc_file (6,163,078 samples, 0.02%)</title><rect x="736.2" y="277" width="0.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="739.23" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (3,090,164 samples, 0.01%)</title><rect x="15.8" y="533" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="18.80" y="543.5" ></text>
</g>
<g >
<title>syscall.Syscall (8,265,100,086 samples, 28.17%)</title><rect x="666.9" y="421" width="332.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="669.90" y="431.5" >syscall.Syscall</text>
</g>
<g >
<title>do_user_addr_fault (10,059,953 samples, 0.03%)</title><rect x="599.2" y="261" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="602.16" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.walkType (10,100,916 samples, 0.03%)</title><rect x="611.8" y="325" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="614.84" y="335.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (2,784,900 samples, 0.01%)</title><rect x="16.4" y="469" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="19.39" y="479.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (207,602,058 samples, 0.71%)</title><rect x="385.5" y="565" width="8.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="388.50" y="575.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (17,116,332 samples, 0.06%)</title><rect x="538.3" y="309" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="541.26" y="319.5" ></text>
</g>
<g >
<title>delete_node (12,476,507 samples, 0.04%)</title><rect x="95.0" y="357" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="98.02" y="367.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (71,651,431 samples, 0.24%)</title><rect x="554.9" y="261" width="2.9" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="557.89" y="271.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,479,912,086 samples, 8.45%)</title><rect x="284.7" y="597" width="99.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="287.66" y="607.5" >runtime.syst..</text>
</g>
<g >
<title>__mod_lruvec_page_state (2,929,216 samples, 0.01%)</title><rect x="661.0" y="293" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="663.97" y="303.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (2,599,946 samples, 0.01%)</title><rect x="59.5" y="437" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="62.51" y="447.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3,090,690 samples, 0.01%)</title><rect x="630.2" y="389" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="633.25" y="399.5" ></text>
</g>
<g >
<title>btf_put (3,936,400 samples, 0.01%)</title><rect x="166.0" y="421" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="169.04" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,155,657 samples, 0.01%)</title><rect x="11.8" y="437" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.81" y="447.5" ></text>
</g>
<g >
<title>shuffle_freelist (33,046,819 samples, 0.11%)</title><rect x="874.7" y="181" width="1.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="877.74" y="191.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (12,017,714 samples, 0.04%)</title><rect x="180.0" y="357" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="183.00" y="367.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (91,826,274 samples, 0.31%)</title><rect x="1179.9" y="437" width="3.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1182.85" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (20,828,876 samples, 0.07%)</title><rect x="616.8" y="245" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="619.80" y="255.5" ></text>
</g>
<g >
<title>runtime.mallocgc (118,058,467 samples, 0.40%)</title><rect x="571.8" y="485" width="4.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="574.76" y="495.5" ></text>
</g>
<g >
<title>___slab_alloc (435,172,744 samples, 1.48%)</title><rect x="858.6" y="229" width="17.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="861.63" y="239.5" ></text>
</g>
<g >
<title>runtime.GC (40,122,735 samples, 0.14%)</title><rect x="520.5" y="565" width="1.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="523.48" y="575.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (5,841,044 samples, 0.02%)</title><rect x="619.6" y="277" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="622.62" y="287.5" ></text>
</g>
<g >
<title>runtime.unlock2 (23,196,480 samples, 0.08%)</title><rect x="1165.2" y="357" width="1.0" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1168.23" y="367.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (3,976,224 samples, 0.01%)</title><rect x="14.4" y="389" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="17.44" y="399.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (13,951,503,837 samples, 47.55%)</title><rect x="628.3" y="549" width="561.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="631.32" y="559.5" >sync.(*Once).doSlow</text>
</g>
<g >
<title>runtime.callers (6,123,815 samples, 0.02%)</title><rect x="659.6" y="389" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="662.63" y="399.5" ></text>
</g>
<g >
<title>futex_wait (3,412,647 samples, 0.01%)</title><rect x="394.1" y="373" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="397.06" y="383.5" ></text>
</g>
<g >
<title>alloc_file (1,313,708,124 samples, 4.48%)</title><rect x="739.5" y="261" width="52.9" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="742.52" y="271.5" >alloc..</text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (8,014,083,282 samples, 27.32%)</title><rect x="676.3" y="405" width="322.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="679.28" y="415.5" >runtime/internal/syscall.Syscall6</text>
</g>
<g >
<title>dentry_unlink_inode (28,352,297 samples, 0.10%)</title><rect x="261.6" y="421" width="1.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="264.63" y="431.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4,134,966 samples, 0.01%)</title><rect x="15.2" y="517" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="18.24" y="527.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (37,307,374 samples, 0.13%)</title><rect x="1172.6" y="389" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1175.63" y="399.5" ></text>
</g>
<g >
<title>runtime.mallocgc (233,130,324 samples, 0.79%)</title><rect x="499.4" y="469" width="9.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="502.37" y="479.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (33,304,009 samples, 0.11%)</title><rect x="91.0" y="405" width="1.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="94.01" y="415.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3,353,332 samples, 0.01%)</title><rect x="130.9" y="277" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="133.86" y="287.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (16,000,227 samples, 0.05%)</title><rect x="530.3" y="469" width="0.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="533.29" y="479.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,245,853 samples, 0.01%)</title><rect x="576.7" y="405" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="579.66" y="415.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (9,321,243 samples, 0.03%)</title><rect x="644.4" y="261" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="647.45" y="271.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (892,231,430 samples, 3.04%)</title><rect x="592.4" y="549" width="35.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="595.43" y="559.5" >syn..</text>
</g>
<g >
<title>do_user_addr_fault (19,085,102 samples, 0.07%)</title><rect x="583.9" y="469" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="586.91" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (15,520,417 samples, 0.05%)</title><rect x="596.7" y="277" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="599.70" y="287.5" ></text>
</g>
<g >
<title>__schedule (2,642,107 samples, 0.01%)</title><rect x="569.8" y="293" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="572.84" y="303.5" ></text>
</g>
<g >
<title>get_random_u32 (2,905,189 samples, 0.01%)</title><rect x="775.6" y="133" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="778.56" y="143.5" ></text>
</g>
<g >
<title>runtime.scanobject (7,779,842 samples, 0.03%)</title><rect x="575.9" y="373" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="578.93" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (9,154,781 samples, 0.03%)</title><rect x="251.6" y="389" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="254.58" y="399.5" ></text>
</g>
<g >
<title>psi_flags_change (5,260,526 samples, 0.02%)</title><rect x="136.8" y="293" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="139.82" y="303.5" ></text>
</g>
<g >
<title>runtime.memmove (6,643,963 samples, 0.02%)</title><rect x="618.0" y="341" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="621.01" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,559,170,249 samples, 5.31%)</title><rect x="434.0" y="357" width="62.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="436.98" y="367.5" >do_sys..</text>
</g>
<g >
<title>kmem_cache_free (38,107,410 samples, 0.13%)</title><rect x="161.8" y="245" width="1.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="164.83" y="255.5" ></text>
</g>
<g >
<title>exit_mm (78,907,567 samples, 0.27%)</title><rect x="37.0" y="485" width="3.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="40.03" y="495.5" ></text>
</g>
<g >
<title>memcpy_orig (24,764,016 samples, 0.08%)</title><rect x="830.4" y="245" width="1.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="833.37" y="255.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (3,843,279 samples, 0.01%)</title><rect x="578.3" y="517" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="581.29" y="527.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (4,172,901,652 samples, 14.22%)</title><rect x="999.9" y="421" width="167.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1002.93" y="431.5" >runtime.SetFinalizer</text>
</g>
<g >
<title>bpf_map_area_alloc (13,901,584 samples, 0.05%)</title><rect x="904.2" y="309" width="0.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="907.21" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (5,302,184 samples, 0.02%)</title><rect x="1182.0" y="245" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1185.02" y="255.5" ></text>
</g>
<g >
<title>do_mmap (8,493,071 samples, 0.03%)</title><rect x="1010.8" y="165" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1013.76" y="175.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (113,558,782 samples, 0.39%)</title><rect x="166.8" y="421" width="4.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="169.81" y="431.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (209,912,723 samples, 0.72%)</title><rect x="422.5" y="469" width="8.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="425.51" y="479.5" ></text>
</g>
<g >
<title>__vmalloc_area_node (6,173,874 samples, 0.02%)</title><rect x="849.1" y="197" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="852.09" y="207.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (3,119,905 samples, 0.01%)</title><rect x="514.3" y="453" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="517.27" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_lock (13,332,651 samples, 0.05%)</title><rect x="115.9" y="341" width="0.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="118.93" y="351.5" ></text>
</g>
<g >
<title>runtime.retake (12,689,705 samples, 0.04%)</title><rect x="11.8" y="533" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="14.79" y="543.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (10,532,451 samples, 0.04%)</title><rect x="734.3" y="293" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="737.26" y="303.5" ></text>
</g>
<g >
<title>runtime.handoffp (3,648,274 samples, 0.01%)</title><rect x="11.8" y="517" width="0.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="14.80" y="527.5" ></text>
</g>
<g >
<title>sync_regs (3,098,366 samples, 0.01%)</title><rect x="599.7" y="293" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="602.69" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (3,909,515 samples, 0.01%)</title><rect x="512.7" y="453" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="515.69" y="463.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (28,610,925 samples, 0.10%)</title><rect x="163.6" y="261" width="1.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="166.55" y="271.5" ></text>
</g>
<g >
<title>__alloc_pages (7,733,342 samples, 0.03%)</title><rect x="600.7" y="149" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="603.68" y="159.5" ></text>
</g>
<g >
<title>runtime.typehash (5,431,691 samples, 0.02%)</title><rect x="429.9" y="437" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="432.89" y="447.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,067,587 samples, 0.03%)</title><rect x="876.3" y="229" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="879.29" y="239.5" ></text>
</g>
<g >
<title>__schedule (1,345,683,472 samples, 4.59%)</title><rect x="175.0" y="405" width="54.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="177.96" y="415.5" >__sch..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,988,692 samples, 0.01%)</title><rect x="262.7" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="265.65" y="399.5" ></text>
</g>
<g >
<title>runtime.efaceeq (2,965,225 samples, 0.01%)</title><rect x="535.2" y="453" width="0.1" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="538.22" y="463.5" ></text>
</g>
<g >
<title>__queue_work (1,328,934,627 samples, 4.53%)</title><rect x="104.3" y="389" width="53.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="107.33" y="399.5" >__que..</text>
</g>
<g >
<title>__x64_sys_madvise (4,604,476 samples, 0.02%)</title><rect x="652.1" y="213" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="655.15" y="223.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,884,948 samples, 0.01%)</title><rect x="918.7" y="293" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="921.67" y="303.5" ></text>
</g>
<g >
<title>lockref_put_return (12,341,782 samples, 0.04%)</title><rect x="265.2" y="437" width="0.5" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="268.16" y="447.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (9,299,520 samples, 0.03%)</title><rect x="195.5" y="341" width="0.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="198.46" y="351.5" ></text>
</g>
<g >
<title>get_any_partial (11,320,102 samples, 0.04%)</title><rect x="765.5" y="197" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="768.45" y="207.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,026,018 samples, 0.01%)</title><rect x="376.7" y="485" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="379.72" y="495.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (5,410,291 samples, 0.02%)</title><rect x="496.7" y="373" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="499.72" y="383.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (6,539,371 samples, 0.02%)</title><rect x="15.0" y="485" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="17.97" y="495.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (4,485,805 samples, 0.02%)</title><rect x="657.1" y="309" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="660.13" y="319.5" ></text>
</g>
<g >
<title>handle_mm_fault (11,403,563 samples, 0.04%)</title><rect x="1181.8" y="341" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1184.80" y="351.5" ></text>
</g>
<g >
<title>xas_descend (18,361,043 samples, 0.06%)</title><rect x="824.6" y="165" width="0.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="827.56" y="175.5" ></text>
</g>
<g >
<title>ksys_read (1,549,048,366 samples, 5.28%)</title><rect x="434.0" y="325" width="62.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="437.01" y="335.5" >ksys_r..</text>
</g>
<g >
<title>wq_select_unbound_cpu (15,571,439 samples, 0.05%)</title><rect x="164.9" y="389" width="0.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="167.91" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (18,654,395 samples, 0.06%)</title><rect x="1160.4" y="325" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1163.45" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (16,257,248 samples, 0.06%)</title><rect x="624.0" y="293" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="626.98" y="303.5" ></text>
</g>
<g >
<title>do_user_addr_fault (56,199,489 samples, 0.19%)</title><rect x="1186.1" y="469" width="2.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1189.15" y="479.5" ></text>
</g>
<g >
<title>unmap_single_vma (78,820,463 samples, 0.27%)</title><rect x="37.0" y="405" width="3.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="40.03" y="415.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (86,840,384 samples, 0.30%)</title><rect x="642.2" y="453" width="3.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="645.20" y="463.5" ></text>
</g>
<g >
<title>x86_pmu_disable (2,956,266 samples, 0.01%)</title><rect x="14.5" y="341" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="17.48" y="351.5" ></text>
</g>
<g >
<title>xas_descend (10,520,576 samples, 0.04%)</title><rect x="826.8" y="181" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="829.78" y="191.5" ></text>
</g>
<g >
<title>memcg_account_kmem (4,599,623 samples, 0.02%)</title><rect x="828.7" y="181" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="831.74" y="191.5" ></text>
</g>
<g >
<title>do_wp_page (8,353,190 samples, 0.03%)</title><rect x="630.1" y="421" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="633.13" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (3,878,265 samples, 0.01%)</title><rect x="597.0" y="117" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="599.98" y="127.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (5,850,234 samples, 0.02%)</title><rect x="13.8" y="389" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="16.84" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (88,735,975 samples, 0.30%)</title><rect x="1006.4" y="325" width="3.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1009.36" y="335.5" ></text>
</g>
<g >
<title>allocate_slab (188,186,530 samples, 0.64%)</title><rect x="800.1" y="181" width="7.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="803.07" y="191.5" ></text>
</g>
<g >
<title>perf_ctx_enable (134,299,209 samples, 0.46%)</title><rect x="180.5" y="357" width="5.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="183.48" y="367.5" ></text>
</g>
<g >
<title>_compound_head (16,941,995 samples, 0.06%)</title><rect x="37.1" y="357" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="40.06" y="367.5" ></text>
</g>
<g >
<title>refill_obj_stock (4,631,688 samples, 0.02%)</title><rect x="786.9" y="197" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="789.89" y="207.5" ></text>
</g>
<g >
<title>ptep_clear_flush (4,625,398 samples, 0.02%)</title><rect x="617.0" y="165" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="619.96" y="175.5" ></text>
</g>
<g >
<title>__sigqueue_alloc (2,505,151 samples, 0.01%)</title><rect x="12.1" y="357" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="15.08" y="367.5" ></text>
</g>
<g >
<title>kmem_cache_free (5,801,059 samples, 0.02%)</title><rect x="85.3" y="277" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="88.26" y="287.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,927,704 samples, 0.01%)</title><rect x="268.1" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="271.09" y="399.5" ></text>
</g>
<g >
<title>lru_add_fn (2,949,656 samples, 0.01%)</title><rect x="642.9" y="293" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="645.85" y="303.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (5,321,097 samples, 0.02%)</title><rect x="163.1" y="229" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="166.08" y="239.5" ></text>
</g>
<g >
<title>do_tkill (9,648,348 samples, 0.03%)</title><rect x="294.2" y="437" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="297.19" y="447.5" ></text>
</g>
<g >
<title>gosave_systemstack_switch (5,420,387 samples, 0.02%)</title><rect x="1003.5" y="405" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1006.53" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (4,655,103 samples, 0.02%)</title><rect x="773.9" y="69" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="776.94" y="79.5" ></text>
</g>
<g >
<title>security_d_instantiate (5,386,546 samples, 0.02%)</title><rect x="834.8" y="245" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="837.82" y="255.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (163,419,471 samples, 0.56%)</title><rect x="95.5" y="373" width="6.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="98.53" y="383.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (5,365,810 samples, 0.02%)</title><rect x="604.2" y="133" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="607.18" y="143.5" ></text>
</g>
<g >
<title>os.(*File).Read (792,439,580 samples, 2.70%)</title><rect x="538.1" y="469" width="31.9" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="541.14" y="479.5" >os..</text>
</g>
<g >
<title>__rcu_read_lock (16,730,048 samples, 0.06%)</title><rect x="59.9" y="437" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="62.94" y="447.5" ></text>
</g>
<g >
<title>__kmalloc_node (16,983,058 samples, 0.06%)</title><rect x="805.4" y="149" width="0.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="808.41" y="159.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (137,269,194 samples, 0.47%)</title><rect x="63.2" y="437" width="5.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="66.17" y="447.5" ></text>
</g>
<g >
<title>__get_random_u32_below (4,626,811 samples, 0.02%)</title><rect x="875.6" y="165" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="878.58" y="175.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (14,444,703 samples, 0.05%)</title><rect x="1181.7" y="389" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1184.74" y="399.5" ></text>
</g>
<g >
<title>__d_instantiate (31,114,350 samples, 0.11%)</title><rect x="831.6" y="245" width="1.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="834.61" y="255.5" ></text>
</g>
<g >
<title>irq_exit_rcu (21,467,228 samples, 0.07%)</title><rect x="91.5" y="357" width="0.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="94.48" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (91,974,003 samples, 0.31%)</title><rect x="112.2" y="309" width="3.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="115.23" y="319.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (16,803,145 samples, 0.06%)</title><rect x="918.0" y="293" width="0.7" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="920.99" y="303.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (4,660,818 samples, 0.02%)</title><rect x="577.1" y="517" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="580.12" y="527.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (4,329,387 samples, 0.01%)</title><rect x="574.5" y="421" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="577.54" y="431.5" ></text>
</g>
<g >
<title>security_file_alloc (290,575,722 samples, 0.99%)</title><rect x="748.6" y="213" width="11.7" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="751.63" y="223.5" ></text>
</g>
<g >
<title>runtime.findObject (26,583,851 samples, 0.09%)</title><rect x="1182.4" y="421" width="1.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1185.38" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (55,265,714 samples, 0.19%)</title><rect x="116.5" y="341" width="2.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="119.47" y="351.5" ></text>
</g>
<g >
<title>memset_orig (9,975,320 samples, 0.03%)</title><rect x="759.9" y="197" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="762.86" y="207.5" ></text>
</g>
<g >
<title>rcu_core_si (4,140,813 samples, 0.01%)</title><rect x="20.7" y="389" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="23.74" y="399.5" ></text>
</g>
<g >
<title>free_unref_page_commit (13,230,184 samples, 0.05%)</title><rect x="39.2" y="261" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="42.21" y="271.5" ></text>
</g>
<g >
<title>handle_mm_fault (17,660,025 samples, 0.06%)</title><rect x="583.9" y="453" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="586.91" y="463.5" ></text>
</g>
<g >
<title>set_next_entity (55,862,528 samples, 0.19%)</title><rect x="206.7" y="357" width="2.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="209.66" y="367.5" ></text>
</g>
<g >
<title>check_kill_permission (2,544,110 samples, 0.01%)</title><rect x="294.3" y="405" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="297.27" y="415.5" ></text>
</g>
<g >
<title>__rcu_read_lock (7,548,886 samples, 0.03%)</title><rect x="779.7" y="197" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="782.65" y="207.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (2,978,641 samples, 0.01%)</title><rect x="646.2" y="437" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="649.21" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (3,101,529 samples, 0.01%)</title><rect x="627.4" y="133" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="630.37" y="143.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (4,614,701 samples, 0.02%)</title><rect x="1178.0" y="453" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1181.01" y="463.5" ></text>
</g>
<g >
<title>do_futex (3,412,647 samples, 0.01%)</title><rect x="394.1" y="389" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="397.06" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (11,501,191 samples, 0.04%)</title><rect x="876.7" y="229" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="879.69" y="239.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (127,640,157 samples, 0.44%)</title><rect x="877.3" y="229" width="5.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="880.34" y="239.5" ></text>
</g>
<g >
<title>___slab_alloc (6,171,107 samples, 0.02%)</title><rect x="773.9" y="117" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="776.91" y="127.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (5,416,364 samples, 0.02%)</title><rect x="642.5" y="341" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="645.54" y="351.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (5,236,698 samples, 0.02%)</title><rect x="576.2" y="469" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="579.24" y="479.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (7,082,411 samples, 0.02%)</title><rect x="165.5" y="405" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="168.53" y="415.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (9,343,307 samples, 0.03%)</title><rect x="496.3" y="341" width="0.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="499.31" y="351.5" ></text>
</g>
<g >
<title>vfs_read (4,281,352 samples, 0.01%)</title><rect x="606.4" y="133" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="609.36" y="143.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (2,701,009 samples, 0.01%)</title><rect x="294.4" y="325" width="0.2" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="297.44" y="335.5" ></text>
</g>
<g >
<title>do_anonymous_page (9,280,495 samples, 0.03%)</title><rect x="600.6" y="197" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="603.62" y="207.5" ></text>
</g>
<g >
<title>new_slab (18,375,758 samples, 0.06%)</title><rect x="873.2" y="117" width="0.7" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="876.17" y="127.5" ></text>
</g>
<g >
<title>x86_pmu_disable (9,600,430 samples, 0.03%)</title><rect x="219.9" y="341" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="222.95" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (4,455,727 samples, 0.02%)</title><rect x="578.7" y="469" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="581.66" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (5,417,115 samples, 0.02%)</title><rect x="600.7" y="117" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="603.74" y="127.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (6,042,214 samples, 0.02%)</title><rect x="968.5" y="373" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="971.50" y="383.5" ></text>
</g>
<g >
<title>free_slab (2,836,419 samples, 0.01%)</title><rect x="162.3" y="165" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="165.35" y="175.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (3,137,257 samples, 0.01%)</title><rect x="17.6" y="405" width="0.1" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="20.60" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (5,246,103 samples, 0.02%)</title><rect x="627.8" y="293" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="630.77" y="303.5" ></text>
</g>
<g >
<title>bpf_seq_read (762,148,159 samples, 2.60%)</title><rect x="539.0" y="309" width="30.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="542.04" y="319.5" >bp..</text>
</g>
<g >
<title>hrtimer_nanosleep (3,500,645 samples, 0.01%)</title><rect x="19.2" y="581" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="22.17" y="591.5" ></text>
</g>
<g >
<title>runtime.mstart0 (98,305,263 samples, 0.34%)</title><rect x="11.5" y="581" width="3.9" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="14.49" y="591.5" ></text>
</g>
<g >
<title>runtime.findObject (34,133,816 samples, 0.12%)</title><rect x="655.2" y="309" width="1.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="658.18" y="319.5" ></text>
</g>
<g >
<title>update_curr (3,315,279 samples, 0.01%)</title><rect x="134.4" y="293" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="137.44" y="303.5" ></text>
</g>
<g >
<title>runtime.casgstatus (28,683,957 samples, 0.10%)</title><rect x="672.6" y="389" width="1.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="675.58" y="399.5" ></text>
</g>
<g >
<title>__do_softirq (2,988,692 samples, 0.01%)</title><rect x="262.7" y="341" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="265.65" y="351.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (99,369,456 samples, 0.34%)</title><rect x="809.7" y="213" width="4.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="812.70" y="223.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (5,677,919 samples, 0.02%)</title><rect x="228.7" y="389" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="231.73" y="399.5" ></text>
</g>
<g >
<title>__do_softirq (6,117,269 samples, 0.02%)</title><rect x="260.5" y="341" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="263.55" y="351.5" ></text>
</g>
<g >
<title>do_anonymous_page (9,880,370 samples, 0.03%)</title><rect x="1181.8" y="293" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1184.83" y="303.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (3,043,448 samples, 0.01%)</title><rect x="813.6" y="181" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="816.57" y="191.5" ></text>
</g>
<g >
<title>node_tag_clear (11,602,719 samples, 0.04%)</title><rect x="930.7" y="261" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="933.74" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (45,421,539 samples, 0.15%)</title><rect x="720.7" y="325" width="1.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="723.73" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (54,582,773 samples, 0.19%)</title><rect x="187.3" y="325" width="2.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="190.32" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,302,184 samples, 0.02%)</title><rect x="1182.0" y="229" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1185.02" y="239.5" ></text>
</g>
<g >
<title>get_random_u32 (4,626,811 samples, 0.02%)</title><rect x="875.6" y="149" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="878.58" y="159.5" ></text>
</g>
<g >
<title>do_anonymous_page (60,863,840 samples, 0.21%)</title><rect x="588.6" y="405" width="2.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="591.57" y="415.5" ></text>
</g>
<g >
<title>new_slab (189,712,320 samples, 0.65%)</title><rect x="800.0" y="197" width="7.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="803.00" y="207.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (163,657,461 samples, 0.56%)</title><rect x="142.8" y="325" width="6.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="145.84" y="335.5" ></text>
</g>
<g >
<title>runtime.findObject (9,118,307 samples, 0.03%)</title><rect x="1173.7" y="277" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1176.68" y="287.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (118,691,140 samples, 0.40%)</title><rect x="70.6" y="437" width="4.7" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="73.57" y="447.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (103,084,940 samples, 0.35%)</title><rect x="526.8" y="485" width="4.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="529.78" y="495.5" ></text>
</g>
<g >
<title>__folio_alloc (3,863,220 samples, 0.01%)</title><rect x="599.3" y="149" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="602.29" y="159.5" ></text>
</g>
<g >
<title>crng_make_state (3,103,110 samples, 0.01%)</title><rect x="807.4" y="101" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="810.42" y="111.5" ></text>
</g>
<g >
<title>vfs_read (4,599,179 samples, 0.02%)</title><rect x="604.2" y="117" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="607.21" y="127.5" ></text>
</g>
<g >
<title>__check_object_size (14,292,329 samples, 0.05%)</title><rect x="718.1" y="325" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="721.13" y="335.5" ></text>
</g>
<g >
<title>runtime.memmove (8,507,071 samples, 0.03%)</title><rect x="610.1" y="309" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="613.13" y="319.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,101,678 samples, 0.01%)</title><rect x="593.3" y="213" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="596.33" y="223.5" ></text>
</g>
<g >
<title>discard_slab (2,960,854 samples, 0.01%)</title><rect x="163.4" y="181" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="166.43" y="191.5" ></text>
</g>
<g >
<title>queue_work_on (6,569,117 samples, 0.02%)</title><rect x="166.5" y="421" width="0.3" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="169.55" y="431.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (18,654,395 samples, 0.06%)</title><rect x="1160.4" y="341" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1163.45" y="351.5" ></text>
</g>
<g >
<title>runtime.schedule (2,966,981 samples, 0.01%)</title><rect x="520.6" y="501" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="523.57" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (4,652,549 samples, 0.02%)</title><rect x="662.1" y="469" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="665.07" y="479.5" ></text>
</g>
<g >
<title>chacha_block_generic (3,103,110 samples, 0.01%)</title><rect x="807.4" y="69" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="810.42" y="79.5" ></text>
</g>
<g >
<title>chacha_permute (3,103,110 samples, 0.01%)</title><rect x="807.4" y="53" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="810.42" y="63.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (4,082,631 samples, 0.01%)</title><rect x="620.6" y="261" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="623.62" y="271.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (112,355,970 samples, 0.38%)</title><rect x="780.2" y="213" width="4.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="783.17" y="223.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (33,523,979 samples, 0.11%)</title><rect x="507.0" y="405" width="1.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="510.00" y="415.5" ></text>
</g>
<g >
<title>__task_rq_lock (95,758,831 samples, 0.33%)</title><rect x="112.1" y="341" width="3.8" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="115.08" y="351.5" ></text>
</g>
<g >
<title>handle_pte_fault (77,272,728 samples, 0.26%)</title><rect x="1006.5" y="277" width="3.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1009.54" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (3,087,142 samples, 0.01%)</title><rect x="1174.8" y="469" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1177.77" y="479.5" ></text>
</g>
<g >
<title>task_work_run (6,069,346,340 samples, 20.69%)</title><rect x="40.2" y="485" width="244.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="43.23" y="495.5" >task_work_run</text>
</g>
<g >
<title>hook_file_alloc_security (48,476,400 samples, 0.17%)</title><rect x="746.6" y="213" width="1.9" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="749.59" y="223.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,853,693 samples, 0.01%)</title><rect x="18.5" y="597" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="21.45" y="607.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (6,552,371 samples, 0.02%)</title><rect x="659.3" y="405" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="662.33" y="415.5" ></text>
</g>
<g >
<title>xa_load (71,596,376 samples, 0.24%)</title><rect x="823.9" y="181" width="2.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="826.90" y="191.5" ></text>
</g>
<g >
<title>mod_node_page_state (4,585,325 samples, 0.02%)</title><rect x="806.2" y="165" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="809.15" y="175.5" ></text>
</g>
<g >
<title>__kmalloc_node (39,301,233 samples, 0.13%)</title><rect x="872.9" y="165" width="1.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="875.92" y="175.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,824,797 samples, 0.01%)</title><rect x="160.4" y="309" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="163.39" y="319.5" ></text>
</g>
<g >
<title>__slab_free (2,896,190 samples, 0.01%)</title><rect x="232.5" y="389" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="235.54" y="399.5" ></text>
</g>
<g >
<title>memset_orig (5,311,211 samples, 0.02%)</title><rect x="805.9" y="133" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="808.88" y="143.5" ></text>
</g>
<g >
<title>runtime.mallocgc (22,280,353 samples, 0.08%)</title><rect x="604.9" y="277" width="0.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="607.89" y="287.5" ></text>
</g>
<g >
<title>error_entry (6,932,684 samples, 0.02%)</title><rect x="1188.7" y="501" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.66" y="511.5" ></text>
</g>
<g >
<title>rcu_core (103,357,331 samples, 0.35%)</title><rect x="160.6" y="293" width="4.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="163.57" y="303.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (1,604,992,580 samples, 5.47%)</title><rect x="432.4" y="469" width="64.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="435.42" y="479.5" >bufio.(..</text>
</g>
<g >
<title>do_tkill (6,747,451 samples, 0.02%)</title><rect x="12.0" y="437" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="15.01" y="447.5" ></text>
</g>
<g >
<title>schedule (47,782,741 samples, 0.16%)</title><rect x="13.0" y="437" width="2.0" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="16.03" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (3,106,899 samples, 0.01%)</title><rect x="1183.6" y="485" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1186.61" y="495.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (2,785,164 samples, 0.01%)</title><rect x="19.2" y="485" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="22.20" y="495.5" ></text>
</g>
<g >
<title>wp_page_copy (10,867,811 samples, 0.04%)</title><rect x="627.1" y="213" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="630.08" y="223.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,909,515 samples, 0.01%)</title><rect x="512.7" y="437" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="515.69" y="447.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (7,781,629 samples, 0.03%)</title><rect x="68.4" y="421" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="71.38" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (40,770,692 samples, 0.14%)</title><rect x="16.7" y="517" width="1.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="19.70" y="527.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (6,098,248 samples, 0.02%)</title><rect x="640.1" y="453" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="643.10" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (35,455,375 samples, 0.12%)</title><rect x="512.8" y="437" width="1.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="515.85" y="447.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (676,293,996 samples, 2.31%)</title><rect x="971.4" y="389" width="27.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="974.41" y="399.5" >s..</text>
</g>
<g >
<title>runtime.gcAssistAlloc (35,455,375 samples, 0.12%)</title><rect x="512.8" y="453" width="1.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="515.85" y="463.5" ></text>
</g>
<g >
<title>rcu_do_batch (18,799,053 samples, 0.06%)</title><rect x="68.7" y="325" width="0.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="71.70" y="335.5" ></text>
</g>
<g >
<title>__dentry_kill (737,749,000 samples, 2.51%)</title><rect x="229.6" y="421" width="29.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="232.57" y="431.5" >__..</text>
</g>
<g >
<title>runtime.gcDrainN (9,337,452 samples, 0.03%)</title><rect x="575.9" y="389" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="578.86" y="399.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (30,409,760 samples, 0.10%)</title><rect x="227.4" y="341" width="1.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="230.40" y="351.5" ></text>
</g>
<g >
<title>runtime.memmove (3,885,397 samples, 0.01%)</title><rect x="1178.4" y="485" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1181.35" y="495.5" ></text>
</g>
<g >
<title>idr_remove (242,075,867 samples, 0.83%)</title><rect x="92.5" y="405" width="9.7" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="95.47" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Spec).Copy (516,818,387 samples, 1.76%)</title><rect x="607.3" y="373" width="20.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="610.29" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.CORERelocate (368,678,653 samples, 1.26%)</title><rect x="592.5" y="389" width="14.8" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="595.46" y="399.5" ></text>
</g>
<g >
<title>__schedule (3,703,052 samples, 0.01%)</title><rect x="292.3" y="421" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="295.33" y="431.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (2,500,771,738 samples, 8.52%)</title><rect x="736.5" y="277" width="100.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="739.48" y="287.5" >alloc_file_p..</text>
</g>
<g >
<title>syscall.Syscall (3,799,823 samples, 0.01%)</title><rect x="1189.8" y="629" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="1192.85" y="639.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (10,506,834 samples, 0.04%)</title><rect x="186.3" y="373" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="189.32" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (3,067,482 samples, 0.01%)</title><rect x="1175.9" y="485" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1178.90" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,082,631 samples, 0.01%)</title><rect x="620.6" y="277" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="623.62" y="287.5" ></text>
</g>
<g >
<title>available_idle_cpu (10,183,484 samples, 0.03%)</title><rect x="122.2" y="309" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="125.23" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (10,030,142 samples, 0.03%)</title><rect x="1177.8" y="469" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1180.79" y="479.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,891,744 samples, 0.01%)</title><rect x="805.7" y="53" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="808.66" y="63.5" ></text>
</g>
<g >
<title>__folio_alloc (3,101,678 samples, 0.01%)</title><rect x="593.3" y="181" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="596.33" y="191.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (3,582,891 samples, 0.01%)</title><rect x="11.8" y="469" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="14.80" y="479.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (29,313,628 samples, 0.10%)</title><rect x="139.2" y="245" width="1.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="142.20" y="255.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (6,213,536 samples, 0.02%)</title><rect x="609.9" y="277" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="612.88" y="287.5" ></text>
</g>
<g >
<title>locks_remove_posix (55,644,063 samples, 0.19%)</title><rect x="32.5" y="437" width="2.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="35.52" y="447.5" ></text>
</g>
<g >
<title>runtime.mallocgc (7,734,279 samples, 0.03%)</title><rect x="604.5" y="277" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="607.52" y="287.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (91,974,003 samples, 0.31%)</title><rect x="112.2" y="293" width="3.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="115.23" y="303.5" ></text>
</g>
<g >
<title>runtime.schedule (3,147,806 samples, 0.01%)</title><rect x="384.4" y="533" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="387.41" y="543.5" ></text>
</g>
<g >
<title>rmqueue (3,078,719 samples, 0.01%)</title><rect x="758.4" y="85" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="761.41" y="95.5" ></text>
</g>
<g >
<title>enqueue_entity (131,241,839 samples, 0.45%)</title><rect x="128.9" y="293" width="5.2" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="131.86" y="303.5" ></text>
</g>
<g >
<title>prepare_task_switch (231,678,700 samples, 0.79%)</title><rect x="211.0" y="389" width="9.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="214.03" y="399.5" ></text>
</g>
<g >
<title>d_flags_for_inode (2,916,040 samples, 0.01%)</title><rect x="832.7" y="229" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="835.74" y="239.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,099,087 samples, 0.03%)</title><rect x="596.8" y="229" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="599.76" y="239.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (3,052,182 samples, 0.01%)</title><rect x="1172.4" y="341" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1175.45" y="351.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (77,216,654 samples, 0.26%)</title><rect x="12.3" y="533" width="3.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.30" y="543.5" ></text>
</g>
<g >
<title>__x64_sys_read (783,096,525 samples, 2.67%)</title><rect x="538.3" y="357" width="31.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="541.26" y="367.5" >__..</text>
</g>
<g >
<title>__bpf_map_area_alloc (1,114,364,148 samples, 3.80%)</title><rect x="852.6" y="277" width="44.8" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="855.57" y="287.5" >__bp..</text>
</g>
<g >
<title>runtime.entersyscall (97,364,919 samples, 0.33%)</title><rect x="667.4" y="405" width="3.9" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="670.36" y="415.5" ></text>
</g>
<g >
<title>__folio_alloc (5,302,184 samples, 0.02%)</title><rect x="1182.0" y="261" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1185.02" y="271.5" ></text>
</g>
<g >
<title>fd_install (33,571,900 samples, 0.11%)</title><rect x="915.5" y="309" width="1.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="918.50" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (25,470,192 samples, 0.09%)</title><rect x="629.6" y="501" width="1.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="632.60" y="511.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (168,863,236 samples, 0.58%)</title><rect x="252.3" y="373" width="6.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="255.30" y="383.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (11,536,559 samples, 0.04%)</title><rect x="248.0" y="341" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="251.00" y="351.5" ></text>
</g>
<g >
<title>clear_page_erms (4,626,287 samples, 0.02%)</title><rect x="849.1" y="133" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="852.09" y="143.5" ></text>
</g>
<g >
<title>__alloc_pages (3,891,744 samples, 0.01%)</title><rect x="805.7" y="69" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="808.66" y="79.5" ></text>
</g>
<g >
<title>dnotify_flush (4,648,308 samples, 0.02%)</title><rect x="22.7" y="453" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="25.72" y="463.5" ></text>
</g>
<g >
<title>do_nanosleep (31,937,639 samples, 0.11%)</title><rect x="16.8" y="469" width="1.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="19.85" y="479.5" ></text>
</g>
<g >
<title>encoding/binary.Read (2,803,810,361 samples, 9.56%)</title><rect x="396.7" y="501" width="112.8" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="399.72" y="511.5" >encoding/bina..</text>
</g>
<g >
<title>pick_next_task (7,547,388 samples, 0.03%)</title><rect x="14.1" y="405" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="17.13" y="415.5" ></text>
</g>
<g >
<title>rcu_core_si (2,988,692 samples, 0.01%)</title><rect x="262.7" y="325" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="265.65" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (12,420,576 samples, 0.04%)</title><rect x="627.1" y="277" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="630.05" y="287.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (9,896,522 samples, 0.03%)</title><rect x="511.7" y="501" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="514.73" y="511.5" ></text>
</g>
<g >
<title>__schedule (26,367,456 samples, 0.09%)</title><rect x="17.1" y="437" width="1.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="20.07" y="447.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (3,021,045 samples, 0.01%)</title><rect x="659.8" y="341" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="662.75" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (70,902,253 samples, 0.24%)</title><rect x="588.4" y="469" width="2.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="591.35" y="479.5" ></text>
</g>
<g >
<title>bufio.(*Scanner).Scan (12,049,110 samples, 0.04%)</title><rect x="606.0" y="293" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="609.05" y="303.5" ></text>
</g>
<g >
<title>fd_install (49,721,619 samples, 0.17%)</title><rect x="839.7" y="293" width="2.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="842.70" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (5,320,388 samples, 0.02%)</title><rect x="620.8" y="309" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="623.81" y="319.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (6,915,428 samples, 0.02%)</title><rect x="604.1" y="197" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="607.12" y="207.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (14,708,299 samples, 0.05%)</title><rect x="10.7" y="565" width="0.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.68" y="575.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).fixupMagicFields (4,606,706 samples, 0.02%)</title><rect x="1175.5" y="485" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1178.47" y="495.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (2,592,544,638 samples, 8.84%)</title><rect x="735.2" y="293" width="104.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="738.18" y="303.5" >__anon_inode..</text>
</g>
<g >
<title>handle_pte_fault (10,640,141 samples, 0.04%)</title><rect x="1181.8" y="309" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1184.83" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,086,229 samples, 0.01%)</title><rect x="652.0" y="277" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="654.96" y="287.5" ></text>
</g>
<g >
<title>put_cpu_partial (4,028,818 samples, 0.01%)</title><rect x="162.3" y="213" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="165.33" y="223.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,175,813 samples, 0.02%)</title><rect x="659.1" y="357" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="662.08" y="367.5" ></text>
</g>
<g >
<title>apparmor_capable (32,199,513 samples, 0.11%)</title><rect x="906.0" y="293" width="1.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="909.03" y="303.5" ></text>
</g>
<g >
<title>mmput (78,820,463 samples, 0.27%)</title><rect x="37.0" y="469" width="3.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="40.03" y="479.5" ></text>
</g>
<g >
<title>clear_page_erms (27,620,749 samples, 0.09%)</title><rect x="643.3" y="277" width="1.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="646.34" y="287.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (6,593,151 samples, 0.02%)</title><rect x="249.1" y="389" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="252.13" y="399.5" ></text>
</g>
<g >
<title>__schedule (2,728,091 samples, 0.01%)</title><rect x="259.3" y="421" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="262.33" y="431.5" ></text>
</g>
<g >
<title>exc_page_fault (83,159,392 samples, 0.28%)</title><rect x="588.4" y="485" width="3.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="591.35" y="495.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,610,200 samples, 0.01%)</title><rect x="18.2" y="501" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="21.19" y="511.5" ></text>
</g>
<g >
<title>__radix_tree_preload (4,677,552 samples, 0.02%)</title><rect x="733.1" y="309" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="736.15" y="319.5" ></text>
</g>
<g >
<title>syscall.Syscall (792,439,580 samples, 2.70%)</title><rect x="538.1" y="421" width="31.9" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="541.14" y="431.5" >sy..</text>
</g>
<g >
<title>runtime.exitsyscall (3,765,776 samples, 0.01%)</title><rect x="666.3" y="421" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="669.34" y="431.5" ></text>
</g>
<g >
<title>runtime.casgstatus (47,484,221 samples, 0.16%)</title><rect x="669.2" y="373" width="2.0" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="672.25" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,650,695 samples, 0.01%)</title><rect x="918.8" y="293" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="921.82" y="303.5" ></text>
</g>
<g >
<title>__cond_resched (4,370,781 samples, 0.01%)</title><rect x="854.6" y="245" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="857.62" y="255.5" ></text>
</g>
<g >
<title>rcu_core (18,799,053 samples, 0.06%)</title><rect x="68.7" y="341" width="0.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="71.70" y="351.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (8,859,178 samples, 0.03%)</title><rect x="718.1" y="309" width="0.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="721.13" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_futex (3,412,647 samples, 0.01%)</title><rect x="394.1" y="405" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="397.06" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit (6,892,809 samples, 0.02%)</title><rect x="1010.0" y="325" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1012.96" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (131,414,504 samples, 0.45%)</title><rect x="800.1" y="149" width="5.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="803.10" y="159.5" ></text>
</g>
<g >
<title>__mod_memcg_state (3,079,362 samples, 0.01%)</title><rect x="828.8" y="149" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="831.80" y="159.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (3,075,215 samples, 0.01%)</title><rect x="860.3" y="149" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="863.28" y="159.5" ></text>
</g>
<g >
<title>apparmor_task_kill (2,544,110 samples, 0.01%)</title><rect x="294.3" y="373" width="0.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="297.27" y="383.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (8,284,191,863 samples, 28.24%)</title><rect x="666.1" y="437" width="333.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="669.13" y="447.5" >syscall.Syscall.abi0</text>
</g>
<g >
<title>runtime.(*mcache).refill (32,959,158 samples, 0.11%)</title><rect x="574.5" y="453" width="1.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="577.51" y="463.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (6,124,328 samples, 0.02%)</title><rect x="415.5" y="469" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="418.48" y="479.5" ></text>
</g>
<g >
<title>bpf_map_put (48,210,696 samples, 0.16%)</title><rect x="438.1" y="277" width="1.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="441.09" y="287.5" ></text>
</g>
<g >
<title>__free_slab (25,340,333 samples, 0.09%)</title><rect x="241.0" y="293" width="1.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="244.03" y="303.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (5,411,831 samples, 0.02%)</title><rect x="1186.6" y="357" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1189.55" y="367.5" ></text>
</g>
<g >
<title>tick_sched_timer (6,241,872 samples, 0.02%)</title><rect x="1160.8" y="261" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1163.76" y="271.5" ></text>
</g>
<g >
<title>exc_page_fault (3,786,620 samples, 0.01%)</title><rect x="376.7" y="501" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="379.72" y="511.5" ></text>
</g>
<g >
<title>try_charge_memcg (3,117,781 samples, 0.01%)</title><rect x="787.1" y="197" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="790.08" y="207.5" ></text>
</g>
<g >
<title>radix_tree_node_alloc.constprop.0 (15,033,695 samples, 0.05%)</title><rect x="929.1" y="261" width="0.6" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="932.08" y="271.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (4,587,569 samples, 0.02%)</title><rect x="645.0" y="405" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="648.01" y="415.5" ></text>
</g>
<g >
<title>mod_memcg_state (3,737,520 samples, 0.01%)</title><rect x="248.2" y="309" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="251.18" y="319.5" ></text>
</g>
<g >
<title>__radix_tree_replace (18,443,260 samples, 0.06%)</title><rect x="929.8" y="261" width="0.8" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="932.81" y="271.5" ></text>
</g>
<g >
<title>place_entity (12,028,151 samples, 0.04%)</title><rect x="131.2" y="277" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="134.21" y="287.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (4,475,250 samples, 0.02%)</title><rect x="897.1" y="261" width="0.2" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="900.15" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (10,057,359 samples, 0.03%)</title><rect x="10.7" y="549" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.68" y="559.5" ></text>
</g>
<g >
<title>exc_page_fault (96,409,787 samples, 0.33%)</title><rect x="1006.4" y="341" width="3.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1009.36" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (3,071,010 samples, 0.01%)</title><rect x="652.2" y="85" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="655.21" y="95.5" ></text>
</g>
<g >
<title>__alloc_pages (9,176,029 samples, 0.03%)</title><rect x="570.6" y="325" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="573.63" y="335.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (2,919,364 samples, 0.01%)</title><rect x="577.0" y="501" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="579.98" y="511.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,075,677 samples, 0.01%)</title><rect x="583.6" y="501" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="586.64" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func1 (3,692,783 samples, 0.01%)</title><rect x="640.8" y="453" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="643.81" y="463.5" ></text>
</g>
<g >
<title>wp_page_copy (3,851,979 samples, 0.01%)</title><rect x="659.2" y="277" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="662.18" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (11,516,599 samples, 0.04%)</title><rect x="294.1" y="469" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="297.14" y="479.5" ></text>
</g>
<g >
<title>security_bpf_map (7,564,947 samples, 0.03%)</title><rect x="932.7" y="309" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="935.67" y="319.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (44,634,772 samples, 0.15%)</title><rect x="246.7" y="373" width="1.8" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="249.72" y="383.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (11,488,227 samples, 0.04%)</title><rect x="591.2" y="453" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="594.23" y="463.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo (3,131,215,089 samples, 10.67%)</title><rect x="394.5" y="549" width="126.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="397.54" y="559.5" >github.com/EMni..</text>
</g>
<g >
<title>shuffle_freelist (31,510,746 samples, 0.11%)</title><rect x="806.4" y="165" width="1.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="809.37" y="175.5" ></text>
</g>
<g >
<title>runtime.goschedImpl (4,462,335 samples, 0.02%)</title><rect x="520.5" y="517" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="523.51" y="527.5" ></text>
</g>
<g >
<title>rcu_core (13,591,215 samples, 0.05%)</title><rect x="258.5" y="261" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="261.55" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (3,110,539 samples, 0.01%)</title><rect x="800.7" y="117" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="803.66" y="127.5" ></text>
</g>
<g >
<title>__radix_tree_delete (49,136,078 samples, 0.17%)</title><rect x="93.5" y="373" width="2.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="96.55" y="383.5" ></text>
</g>
<g >
<title>handle_pte_fault (13,771,843 samples, 0.05%)</title><rect x="570.4" y="389" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="573.45" y="399.5" ></text>
</g>
<g >
<title>runtime.memhash64 (8,866,161 samples, 0.03%)</title><rect x="536.2" y="437" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="539.18" y="447.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).free (3,010,822 samples, 0.01%)</title><rect x="393.7" y="501" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="396.67" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (3,856,722 samples, 0.01%)</title><rect x="1176.0" y="485" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1179.02" y="495.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,090,783 samples, 0.01%)</title><rect x="824.4" y="165" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="827.40" y="175.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (283,020,667 samples, 0.96%)</title><rect x="178.2" y="389" width="11.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="181.19" y="399.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (4,082,631 samples, 0.01%)</title><rect x="620.6" y="293" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="623.62" y="303.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (31,042,613 samples, 0.11%)</title><rect x="434.1" y="293" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="437.07" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,472,274 samples, 0.02%)</title><rect x="157.8" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="160.78" y="399.5" ></text>
</g>
<g >
<title>refill_stock (2,549,931 samples, 0.01%)</title><rect x="248.4" y="325" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="251.36" y="335.5" ></text>
</g>
<g >
<title>consume_obj_stock (25,957,075 samples, 0.09%)</title><rect x="785.5" y="197" width="1.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="788.51" y="207.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (5,218,941 samples, 0.02%)</title><rect x="628.1" y="293" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="631.11" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (31,064,298 samples, 0.11%)</title><rect x="660.7" y="421" width="1.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="663.69" y="431.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (5,909,125 samples, 0.02%)</title><rect x="143.3" y="309" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="146.30" y="319.5" ></text>
</g>
<g >
<title>prepare_task_switch (3,437,658 samples, 0.01%)</title><rect x="19.2" y="517" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="22.17" y="527.5" ></text>
</g>
<g >
<title>runtime.lock2 (31,895,872 samples, 0.11%)</title><rect x="1163.6" y="357" width="1.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1166.61" y="367.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (1,573,924,706 samples, 5.36%)</title><rect x="433.6" y="437" width="63.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="436.63" y="447.5" >intern..</text>
</g>
<g >
<title>wp_page_copy (13,940,901 samples, 0.05%)</title><rect x="624.0" y="197" width="0.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="627.04" y="207.5" ></text>
</g>
<g >
<title>native_write_msr (2,956,266 samples, 0.01%)</title><rect x="14.5" y="325" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="17.48" y="335.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (24,914,443 samples, 0.08%)</title><rect x="773.5" y="165" width="1.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="776.53" y="175.5" ></text>
</g>
<g >
<title>put_prev_entity (11,148,273 samples, 0.04%)</title><rect x="210.3" y="373" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="213.33" y="383.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (352,737,091 samples, 1.20%)</title><rect x="466.2" y="261" width="14.2" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="469.17" y="271.5" ></text>
</g>
<g >
<title>__folio_alloc (8,522,863 samples, 0.03%)</title><rect x="624.3" y="165" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="627.26" y="175.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,245,853 samples, 0.01%)</title><rect x="576.7" y="389" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="579.66" y="399.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (9,337,452 samples, 0.03%)</title><rect x="575.9" y="421" width="0.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="578.86" y="431.5" ></text>
</g>
<g >
<title>runtime.memmove (20,165,954 samples, 0.07%)</title><rect x="596.6" y="293" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="599.58" y="303.5" ></text>
</g>
<g >
<title>sched_clock_cpu (4,563,639 samples, 0.02%)</title><rect x="119.7" y="341" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="122.67" y="351.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (4,466,553 samples, 0.02%)</title><rect x="753.6" y="197" width="0.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="756.56" y="207.5" ></text>
</g>
<g >
<title>file_free_rcu (65,614,490 samples, 0.22%)</title><rect x="160.7" y="261" width="2.7" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="163.75" y="271.5" ></text>
</g>
<g >
<title>x86_pmu_enable (3,261,116 samples, 0.01%)</title><rect x="13.9" y="357" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="16.94" y="367.5" ></text>
</g>
<g >
<title>error_entry (5,953,117 samples, 0.02%)</title><rect x="18.6" y="597" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="21.61" y="607.5" ></text>
</g>
<g >
<title>do_check (3,729,977 samples, 0.01%)</title><rect x="628.1" y="213" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="631.11" y="223.5" ></text>
</g>
<g >
<title>complete_signal (3,313,686 samples, 0.01%)</title><rect x="294.4" y="357" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="297.42" y="367.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (7,722,524 samples, 0.03%)</title><rect x="753.7" y="197" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="756.74" y="207.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (21,139,051 samples, 0.07%)</title><rect x="1171.8" y="373" width="0.8" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1174.75" y="383.5" ></text>
</g>
<g >
<title>seq_write (3,873,959 samples, 0.01%)</title><rect x="493.3" y="229" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="496.32" y="239.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,943,428 samples, 0.01%)</title><rect x="618.1" y="293" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="621.13" y="303.5" ></text>
</g>
<g >
<title>migrate_enable (3,887,279 samples, 0.01%)</title><rect x="495.8" y="261" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="498.85" y="271.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,801,526 samples, 0.02%)</title><rect x="605.9" y="293" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="608.85" y="303.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (4,082,631 samples, 0.01%)</title><rect x="620.6" y="309" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="623.62" y="319.5" ></text>
</g>
<g >
<title>init_file (43,896,400 samples, 0.15%)</title><rect x="790.3" y="245" width="1.8" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="793.32" y="255.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,480,741 samples, 0.04%)</title><rect x="85.2" y="373" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="88.21" y="383.5" ></text>
</g>
<g >
<title>consume_obj_stock (2,989,160 samples, 0.01%)</title><rect x="877.2" y="229" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="880.22" y="239.5" ></text>
</g>
<g >
<title>runtime.scanblock (164,581,513 samples, 0.56%)</title><rect x="305.8" y="517" width="6.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="308.82" y="527.5" ></text>
</g>
<g >
<title>runtime.notesleep (4,040,118 samples, 0.01%)</title><rect x="394.0" y="469" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="397.05" y="479.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (9,337,452 samples, 0.03%)</title><rect x="575.9" y="405" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="578.86" y="415.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (35,455,375 samples, 0.12%)</title><rect x="512.8" y="405" width="1.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="515.85" y="415.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (98,305,263 samples, 0.34%)</title><rect x="11.5" y="597" width="3.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="14.49" y="607.5" ></text>
</g>
<g >
<title>runtime.persistentalloc.func1 (10,824,827 samples, 0.04%)</title><rect x="1010.7" y="325" width="0.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1013.67" y="335.5" ></text>
</g>
<g >
<title>do_wp_page (10,867,811 samples, 0.04%)</title><rect x="627.1" y="229" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="630.08" y="239.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (5,331,247 samples, 0.02%)</title><rect x="1010.0" y="309" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1013.02" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (9,370,054 samples, 0.03%)</title><rect x="465.8" y="261" width="0.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="468.80" y="271.5" ></text>
</g>
<g >
<title>runtime.mcall (6,022,159 samples, 0.02%)</title><rect x="384.5" y="565" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="387.53" y="575.5" ></text>
</g>
<g >
<title>dequeue_task_fair (12,497,825 samples, 0.04%)</title><rect x="13.2" y="389" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="16.22" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Union).copy (3,859,256 samples, 0.01%)</title><rect x="611.7" y="325" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="614.65" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (278,813,493 samples, 0.95%)</title><rect x="678.6" y="389" width="11.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="681.58" y="399.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (10,585,173 samples, 0.04%)</title><rect x="18.5" y="613" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="21.45" y="623.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (63,634,612 samples, 0.22%)</title><rect x="777.6" y="213" width="2.5" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="780.58" y="223.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (4,604,476 samples, 0.02%)</title><rect x="652.1" y="261" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="655.15" y="271.5" ></text>
</g>
<g >
<title>__cond_resched (6,147,387 samples, 0.02%)</title><rect x="59.6" y="437" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="62.61" y="447.5" ></text>
</g>
<g >
<title>__get_random_u32_below (3,665,476 samples, 0.01%)</title><rect x="775.5" y="149" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="778.53" y="159.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.copyTypes (257,507,017 samples, 0.88%)</title><rect x="607.9" y="357" width="10.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="610.92" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (3,093,474 samples, 0.01%)</title><rect x="592.5" y="325" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="595.46" y="335.5" ></text>
</g>
<g >
<title>idr_preload (13,561,323 samples, 0.05%)</title><rect x="931.8" y="309" width="0.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="934.76" y="319.5" ></text>
</g>
<g >
<title>memcg_account_kmem (6,893,468 samples, 0.02%)</title><rect x="786.6" y="197" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="789.55" y="207.5" ></text>
</g>
<g >
<title>__mod_memcg_state (6,142,042 samples, 0.02%)</title><rect x="786.6" y="165" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="789.58" y="175.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (4,455,727 samples, 0.02%)</title><rect x="578.7" y="453" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="581.66" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (3,874,256 samples, 0.01%)</title><rect x="1177.6" y="469" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1180.64" y="479.5" ></text>
</g>
<g >
<title>d_set_d_op (14,563,402 samples, 0.05%)</title><rect x="794.7" y="229" width="0.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="797.73" y="239.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,543,472 samples, 0.02%)</title><rect x="619.4" y="341" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="622.41" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,645,743 samples, 0.02%)</title><rect x="780.0" y="197" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="782.95" y="207.5" ></text>
</g>
<g >
<title>runtime.sysmon (97,189,141 samples, 0.33%)</title><rect x="11.5" y="549" width="3.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="14.50" y="559.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (34,054,280 samples, 0.12%)</title><rect x="202.8" y="325" width="1.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="205.78" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,386,486 samples, 0.01%)</title><rect x="279.0" y="325" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="281.96" y="335.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,386,486 samples, 0.01%)</title><rect x="279.0" y="341" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="281.96" y="351.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,175,813 samples, 0.02%)</title><rect x="659.1" y="389" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="662.08" y="399.5" ></text>
</g>
<g >
<title>__free_one_page (10,903,271 samples, 0.04%)</title><rect x="39.3" y="229" width="0.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="42.27" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,281,352 samples, 0.01%)</title><rect x="606.4" y="165" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="609.36" y="175.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (11,883,462 samples, 0.04%)</title><rect x="188.9" y="245" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="191.90" y="255.5" ></text>
</g>
<g >
<title>kmem_cache_free (6,630,185 samples, 0.02%)</title><rect x="74.8" y="277" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="77.84" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (6,182,284 samples, 0.02%)</title><rect x="629.8" y="341" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="632.82" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mheap).nextSpanForSweep (7,460,224 samples, 0.03%)</title><rect x="385.2" y="565" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="388.20" y="575.5" ></text>
</g>
<g >
<title>handle_pte_fault (62,113,434 samples, 0.21%)</title><rect x="642.4" y="373" width="2.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="645.42" y="383.5" ></text>
</g>
<g >
<title>do_nanosleep (55,578,698 samples, 0.19%)</title><rect x="12.7" y="453" width="2.3" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="15.72" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).copy (20,861,382 samples, 0.07%)</title><rect x="610.8" y="325" width="0.8" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="613.75" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (30,616,197 samples, 0.10%)</title><rect x="574.5" y="437" width="1.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="577.51" y="447.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (2,960,854 samples, 0.01%)</title><rect x="163.4" y="85" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="166.43" y="95.5" ></text>
</g>
<g >
<title>file_free_rcu (10,415,021 samples, 0.04%)</title><rect x="91.6" y="261" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="94.57" y="271.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (4,415,463 samples, 0.02%)</title><rect x="393.4" y="549" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="396.40" y="559.5" ></text>
</g>
<g >
<title>runtime.newobject (23,051,588 samples, 0.08%)</title><rect x="604.9" y="293" width="0.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="607.86" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (53,722,712 samples, 0.18%)</title><rect x="657.4" y="421" width="2.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="660.43" y="431.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (3,896,343 samples, 0.01%)</title><rect x="1009.7" y="309" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1012.74" y="319.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,878,441 samples, 0.01%)</title><rect x="505.2" y="373" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="508.23" y="383.5" ></text>
</g>
<g >
<title>runtime.schedule (6,022,159 samples, 0.02%)</title><rect x="384.5" y="517" width="0.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="387.53" y="527.5" ></text>
</g>
<g >
<title>update_curr (91,447,091 samples, 0.31%)</title><rect x="196.3" y="341" width="3.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="199.30" y="351.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (58,088,810 samples, 0.20%)</title><rect x="597.5" y="309" width="2.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="600.48" y="319.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (35,455,375 samples, 0.12%)</title><rect x="512.8" y="421" width="1.5" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="515.85" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,038,617 samples, 0.01%)</title><rect x="1177.5" y="437" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1180.52" y="447.5" ></text>
</g>
<g >
<title>__alloc_pages (10,006,207 samples, 0.03%)</title><rect x="617.1" y="133" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="620.14" y="143.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (8,314,193 samples, 0.03%)</title><rect x="88.7" y="405" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="91.66" y="415.5" ></text>
</g>
<g >
<title>new_slab (38,179,417 samples, 0.13%)</title><rect x="757.8" y="165" width="1.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="760.83" y="175.5" ></text>
</g>
<g >
<title>exc_page_fault (3,838,469 samples, 0.01%)</title><rect x="614.8" y="293" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="617.83" y="303.5" ></text>
</g>
<g >
<title>rmqueue_bulk (6,754,415 samples, 0.02%)</title><rect x="872.3" y="101" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="875.34" y="111.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createMapGaugeEbpf (892,231,430 samples, 3.04%)</title><rect x="592.4" y="517" width="35.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="595.43" y="527.5" >git..</text>
</g>
<g >
<title>__mod_memcg_state (2,841,952 samples, 0.01%)</title><rect x="248.2" y="293" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="251.21" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,117,269 samples, 0.02%)</title><rect x="260.5" y="373" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="263.55" y="383.5" ></text>
</g>
<g >
<title>update_process_times (5,566,371 samples, 0.02%)</title><rect x="187.0" y="261" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="189.99" y="271.5" ></text>
</g>
<g >
<title>runtime.findRunnable (3,003,385 samples, 0.01%)</title><rect x="384.6" y="501" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="387.62" y="511.5" ></text>
</g>
<g >
<title>idr_get_next (3,904,392 samples, 0.01%)</title><rect x="480.4" y="261" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="483.36" y="271.5" ></text>
</g>
<g >
<title>runtime.getpid.abi0 (8,129,988 samples, 0.03%)</title><rect x="293.3" y="501" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="296.34" y="511.5" ></text>
</g>
<g >
<title>__schedule (47,227,735 samples, 0.16%)</title><rect x="13.0" y="421" width="1.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="16.04" y="431.5" ></text>
</g>
<g >
<title>clear_page_erms (21,636,833 samples, 0.07%)</title><rect x="1187.1" y="325" width="0.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1190.14" y="335.5" ></text>
</g>
<g >
<title>__free_pages (2,960,854 samples, 0.01%)</title><rect x="163.4" y="133" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="166.43" y="143.5" ></text>
</g>
<g >
<title>get_page_from_freelist (13,806,342 samples, 0.05%)</title><rect x="584.0" y="341" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="587.01" y="351.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (5,382,319 samples, 0.02%)</title><rect x="891.6" y="165" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="894.60" y="175.5" ></text>
</g>
<g >
<title>testing.(*B).runN (3,171,337,824 samples, 10.81%)</title><rect x="394.5" y="581" width="127.6" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="397.54" y="591.5" >testing.(*B).runN</text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (19,280,824 samples, 0.07%)</title><rect x="893.5" y="245" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="896.46" y="255.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (3,058,536 samples, 0.01%)</title><rect x="876.2" y="229" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="879.16" y="239.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (140,669,692 samples, 0.48%)</title><rect x="754.0" y="197" width="5.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="757.05" y="207.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (62,753,668 samples, 0.21%)</title><rect x="662.4" y="453" width="2.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="665.41" y="463.5" ></text>
</g>
<g >
<title>new_slab (4,672,827 samples, 0.02%)</title><rect x="805.7" y="101" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="808.66" y="111.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,131,786 samples, 0.01%)</title><rect x="107.0" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="109.96" y="383.5" ></text>
</g>
<g >
<title>rcu_do_batch (14,041,401 samples, 0.05%)</title><rect x="74.8" y="309" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="77.78" y="319.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (968,957,882 samples, 3.30%)</title><rect x="792.4" y="261" width="39.0" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="795.39" y="271.5" >d_a..</text>
</g>
<g >
<title>handle_mm_fault (11,600,454 samples, 0.04%)</title><rect x="600.6" y="245" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="603.56" y="255.5" ></text>
</g>
<g >
<title>native_write_msr (111,988,149 samples, 0.38%)</title><rect x="143.7" y="293" width="4.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="146.74" y="303.5" ></text>
</g>
<g >
<title>__free_pages (2,877,967 samples, 0.01%)</title><rect x="277.2" y="309" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="280.25" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (3,103,099 samples, 0.01%)</title><rect x="645.7" y="453" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="648.69" y="463.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,085,826 samples, 0.01%)</title><rect x="739.3" y="261" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="742.30" y="271.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).pop (6,712,838 samples, 0.02%)</title><rect x="385.2" y="549" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="388.23" y="559.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,962,433 samples, 0.02%)</title><rect x="624.3" y="133" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="627.32" y="143.5" ></text>
</g>
<g >
<title>runtime.typehash (6,207,175 samples, 0.02%)</title><rect x="615.8" y="293" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="618.83" y="303.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (42,802,055 samples, 0.15%)</title><rect x="377.2" y="533" width="1.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="380.16" y="543.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (10,509,866 samples, 0.04%)</title><rect x="968.7" y="373" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="971.74" y="383.5" ></text>
</g>
<g >
<title>refill_obj_stock (5,321,097 samples, 0.02%)</title><rect x="163.1" y="213" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="166.08" y="223.5" ></text>
</g>
<g >
<title>psi_group_change (7,344,250 samples, 0.03%)</title><rect x="220.6" y="389" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="223.56" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,878,441 samples, 0.01%)</title><rect x="505.2" y="341" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="508.23" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.LoadKernelSpec (516,818,387 samples, 1.76%)</title><rect x="607.3" y="389" width="20.8" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="610.29" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (19,064,935 samples, 0.06%)</title><rect x="68.7" y="421" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="71.69" y="431.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (842,927,084 samples, 2.87%)</title><rect x="795.3" y="229" width="33.9" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="798.32" y="239.5" >km..</text>
</g>
<g >
<title>psi_group_change (3,023,790 samples, 0.01%)</title><rect x="18.0" y="405" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="20.97" y="415.5" ></text>
</g>
<g >
<title>runtime.park_m (5,331,408 samples, 0.02%)</title><rect x="394.0" y="533" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="397.00" y="543.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (95,605,903 samples, 0.33%)</title><rect x="1179.7" y="469" width="3.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1182.70" y="479.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (171,691,272 samples, 0.59%)</title><rect x="882.5" y="229" width="6.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="885.50" y="239.5" ></text>
</g>
<g >
<title>pick_next_entity (6,541,871 samples, 0.02%)</title><rect x="189.8" y="373" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="192.77" y="383.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (7,644,443 samples, 0.03%)</title><rect x="508.3" y="453" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="511.35" y="463.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (11,602,719 samples, 0.04%)</title><rect x="930.7" y="277" width="0.5" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="933.74" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (9,265,866 samples, 0.03%)</title><rect x="1010.7" y="213" width="0.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1013.73" y="223.5" ></text>
</g>
<g >
<title>select_task_rq_fair (67,667,068 samples, 0.23%)</title><rect x="119.9" y="341" width="2.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="122.91" y="351.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo (2,640,898,000 samples, 9.00%)</title><rect x="522.1" y="565" width="106.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="525.10" y="575.5" >github.com/EM..</text>
</g>
<g >
<title>runtime.save (3,075,940 samples, 0.01%)</title><rect x="671.2" y="373" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="674.15" y="383.5" ></text>
</g>
<g >
<title>bpf_seq_write (19,177,261 samples, 0.07%)</title><rect x="567.9" y="245" width="0.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="570.85" y="255.5" ></text>
</g>
<g >
<title>runtime.findObject (3,044,970 samples, 0.01%)</title><rect x="508.0" y="309" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="511.04" y="319.5" ></text>
</g>
<g >
<title>runtime.memmove (16,294,513 samples, 0.06%)</title><rect x="497.0" y="469" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="499.97" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (13,566,079 samples, 0.05%)</title><rect x="294.1" y="485" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="297.06" y="495.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (20,868,096 samples, 0.07%)</title><rect x="535.8" y="453" width="0.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="538.79" y="463.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,927,704 samples, 0.01%)</title><rect x="268.1" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="271.09" y="383.5" ></text>
</g>
<g >
<title>alloc_pages (180,447,912 samples, 0.62%)</title><rect x="766.3" y="165" width="7.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="769.27" y="175.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (2,750,679 samples, 0.01%)</title><rect x="151.0" y="293" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="154.05" y="303.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (10,156,471 samples, 0.03%)</title><rect x="576.5" y="485" width="0.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="579.51" y="495.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (12,384,497 samples, 0.04%)</title><rect x="497.6" y="485" width="0.5" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="500.63" y="495.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (3,859,668 samples, 0.01%)</title><rect x="422.4" y="469" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="425.35" y="479.5" ></text>
</g>
<g >
<title>runtime.gcBgMarkWorker (2,485,702,981 samples, 8.47%)</title><rect x="284.4" y="613" width="100.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="287.43" y="623.5" >runtime.gcBg..</text>
</g>
<g >
<title>radix_tree_next_chunk (54,260,383 samples, 0.18%)</title><rect x="558.8" y="229" width="2.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="561.84" y="239.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (3,104,436 samples, 0.01%)</title><rect x="599.4" y="245" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="602.44" y="255.5" ></text>
</g>
<g >
<title>__calc_delta (2,571,385 samples, 0.01%)</title><rect x="198.1" y="325" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="201.12" y="335.5" ></text>
</g>
<g >
<title>sync_regs (6,159,989 samples, 0.02%)</title><rect x="592.2" y="501" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="595.18" y="511.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (3,865,784 samples, 0.01%)</title><rect x="931.5" y="293" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="934.54" y="303.5" ></text>
</g>
<g >
<title>rmqueue_bulk (7,738,921 samples, 0.03%)</title><rect x="773.0" y="85" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="776.00" y="95.5" ></text>
</g>
<g >
<title>syscall.Syscall (6,198,373 samples, 0.02%)</title><rect x="15.4" y="597" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="18.45" y="607.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func1 (7,709,235 samples, 0.03%)</title><rect x="640.3" y="469" width="0.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="643.35" y="479.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (18,436,271 samples, 0.06%)</title><rect x="818.7" y="197" width="0.8" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="821.71" y="207.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (8,305,467,105 samples, 28.31%)</title><rect x="665.3" y="453" width="334.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="668.27" y="463.5" >github.com/cilium/ebpf/internal/sys.BPF</text>
</g>
<g >
<title>perf_ctx_disable (3,168,890 samples, 0.01%)</title><rect x="14.5" y="357" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="17.47" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,604,476 samples, 0.02%)</title><rect x="652.1" y="229" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="655.15" y="239.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,339,636 samples, 0.04%)</title><rect x="108.3" y="357" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="111.30" y="367.5" ></text>
</g>
<g >
<title>testing.(*B).run1.func1 (16,593,940,278 samples, 56.56%)</title><rect x="522.1" y="613" width="667.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="525.10" y="623.5" >testing.(*B).run1.func1</text>
</g>
<g >
<title>reflect.Value.Field (105,457,144 samples, 0.36%)</title><rect x="415.7" y="469" width="4.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="418.72" y="479.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,878,265 samples, 0.01%)</title><rect x="597.0" y="149" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="599.98" y="159.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,955,517 samples, 0.02%)</title><rect x="599.2" y="245" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="602.16" y="255.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (3,315,948 samples, 0.01%)</title><rect x="16.9" y="437" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="19.86" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,175,813 samples, 0.02%)</title><rect x="659.1" y="341" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="662.08" y="351.5" ></text>
</g>
<g >
<title>runtime.doInit1 (3,742,654 samples, 0.01%)</title><rect x="394.3" y="597" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="397.31" y="607.5" ></text>
</g>
<g >
<title>collapse_huge_page (4,604,476 samples, 0.02%)</title><rect x="652.1" y="117" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="655.15" y="127.5" ></text>
</g>
<g >
<title>__folio_alloc (11,508,584 samples, 0.04%)</title><rect x="661.1" y="293" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="664.14" y="303.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (159,147,833 samples, 0.54%)</title><rect x="179.5" y="373" width="6.4" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="182.52" y="383.5" ></text>
</g>
<g >
<title>handle_pte_fault (10,867,811 samples, 0.04%)</title><rect x="627.1" y="245" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="630.08" y="255.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (6,774,595 samples, 0.02%)</title><rect x="578.6" y="485" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="581.57" y="495.5" ></text>
</g>
<g >
<title>runtime.memmove (20,928,068 samples, 0.07%)</title><rect x="623.9" y="325" width="0.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="626.85" y="335.5" ></text>
</g>
<g >
<title>__free_pages (9,370,587 samples, 0.03%)</title><rect x="241.1" y="277" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="244.12" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (96,409,787 samples, 0.33%)</title><rect x="1006.4" y="357" width="3.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1009.36" y="367.5" ></text>
</g>
<g >
<title>runtime.mallocgc (13,196,535 samples, 0.04%)</title><rect x="609.6" y="293" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="612.60" y="303.5" ></text>
</g>
<g >
<title>runtime.newobject (3,874,228 samples, 0.01%)</title><rect x="610.5" y="309" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="613.47" y="319.5" ></text>
</g>
<g >
<title>file_free_rcu (3,148,876 samples, 0.01%)</title><rect x="279.0" y="245" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="281.97" y="255.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (4,671,171 samples, 0.02%)</title><rect x="512.7" y="469" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="515.66" y="479.5" ></text>
</g>
<g >
<title>runtime.lock2 (28,432,386 samples, 0.10%)</title><rect x="1161.6" y="341" width="1.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1164.62" y="351.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (4,901,147 samples, 0.02%)</title><rect x="279.7" y="405" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="282.71" y="415.5" ></text>
</g>
<g >
<title>refill_obj_stock (43,420,761 samples, 0.15%)</title><rect x="246.8" y="357" width="1.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="249.77" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*collectionLoader).loadProgram (891,493,971 samples, 3.04%)</title><rect x="592.5" y="437" width="35.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="595.46" y="447.5" >git..</text>
</g>
<g >
<title>[unknown] (3,858,873 samples, 0.01%)</title><rect x="10.0" y="549" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="559.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (5,483,790 samples, 0.02%)</title><rect x="1160.5" y="261" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1163.54" y="271.5" ></text>
</g>
<g >
<title>do_send_specific (8,283,045 samples, 0.03%)</title><rect x="294.2" y="421" width="0.4" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="297.24" y="431.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (6,167,385 samples, 0.02%)</title><rect x="1186.5" y="389" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1189.52" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (108,930,389 samples, 0.37%)</title><rect x="160.3" y="373" width="4.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="163.35" y="383.5" ></text>
</g>
<g >
<title>alloc_pages (17,549,996 samples, 0.06%)</title><rect x="757.8" y="133" width="0.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="760.83" y="143.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,184,017 samples, 0.02%)</title><rect x="610.9" y="293" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="613.94" y="303.5" ></text>
</g>
<g >
<title>gcWriteBarrier (6,007,560 samples, 0.02%)</title><rect x="627.7" y="325" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="630.74" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).copy (14,702,838 samples, 0.05%)</title><rect x="608.8" y="325" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="611.82" y="335.5" ></text>
</g>
<g >
<title>__slab_free (112,619,435 samples, 0.38%)</title><rect x="274.6" y="405" width="4.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="277.61" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (20,828,876 samples, 0.07%)</title><rect x="616.8" y="261" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="619.80" y="271.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (9,309,968 samples, 0.03%)</title><rect x="1008.9" y="165" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1011.91" y="175.5" ></text>
</g>
<g >
<title>error_entry (10,602,305 samples, 0.04%)</title><rect x="591.7" y="501" width="0.5" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="594.73" y="511.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (4,959,425 samples, 0.02%)</title><rect x="606.3" y="277" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="609.33" y="287.5" ></text>
</g>
<g >
<title>alloc_pages (318,738,564 samples, 1.09%)</title><rect x="860.0" y="181" width="12.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="863.01" y="191.5" ></text>
</g>
<g >
<title>exc_page_fault (3,872,186 samples, 0.01%)</title><rect x="611.4" y="277" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="614.37" y="287.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (270,559,252 samples, 0.92%)</title><rect x="141.5" y="341" width="10.9" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="144.51" y="351.5" ></text>
</g>
<g >
<title>handle_pte_fault (62,422,399 samples, 0.21%)</title><rect x="588.5" y="421" width="2.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="591.54" y="431.5" ></text>
</g>
<g >
<title>runtime.retake (5,391,342 samples, 0.02%)</title><rect x="16.3" y="549" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="19.30" y="559.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,829,976 samples, 0.01%)</title><rect x="1167.9" y="421" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1170.92" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (16,905,123 samples, 0.06%)</title><rect x="583.9" y="437" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="586.91" y="447.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (59,289,244 samples, 0.20%)</title><rect x="751.1" y="197" width="2.4" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="754.15" y="207.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,117,269 samples, 0.02%)</title><rect x="260.5" y="389" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="263.55" y="399.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps.func1 (13,949,209,945 samples, 47.55%)</title><rect x="628.3" y="533" width="561.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="631.32" y="543.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps.func1</text>
</g>
<g >
<title>indexbytebody (2,813,958 samples, 0.01%)</title><rect x="606.2" y="277" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="609.19" y="287.5" ></text>
</g>
<g >
<title>errseq_sample (16,712,583 samples, 0.06%)</title><rect x="835.0" y="261" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="838.04" y="271.5" ></text>
</g>
<g >
<title>runtime.memmove (6,972,598 samples, 0.02%)</title><rect x="611.2" y="309" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="614.25" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (51,575,397 samples, 0.18%)</title><rect x="1186.3" y="437" width="2.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1189.27" y="447.5" ></text>
</g>
<g >
<title>do_send_sig_info (5,126,184 samples, 0.02%)</title><rect x="294.4" y="405" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="297.37" y="415.5" ></text>
</g>
<g >
<title>do_wp_page (6,955,517 samples, 0.02%)</title><rect x="599.2" y="197" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="602.16" y="207.5" ></text>
</g>
<g >
<title>fput (32,937,543 samples, 0.11%)</title><rect x="35.6" y="453" width="1.3" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="38.61" y="463.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (7,672,805 samples, 0.03%)</title><rect x="412.8" y="453" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="415.77" y="463.5" ></text>
</g>
<g >
<title>sync_regs (2,935,350 samples, 0.01%)</title><rect x="1166.2" y="357" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1169.17" y="367.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (4,604,476 samples, 0.02%)</title><rect x="652.1" y="165" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="655.15" y="175.5" ></text>
</g>
<g >
<title>alloc_fdtable (12,412,011 samples, 0.04%)</title><rect x="848.8" y="245" width="0.5" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="851.84" y="255.5" ></text>
</g>
<g >
<title>runtime.markrootSpans (28,953,627 samples, 0.10%)</title><rect x="507.0" y="341" width="1.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="510.00" y="351.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4,579,718 samples, 0.02%)</title><rect x="939.2" y="277" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="942.16" y="287.5" ></text>
</g>
<g >
<title>get_signal (6,589,534,079 samples, 22.46%)</title><rect x="19.3" y="533" width="265.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="22.31" y="543.5" >get_signal</text>
</g>
<g >
<title>consume_obj_stock (20,060,089 samples, 0.07%)</title><rect x="827.9" y="181" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="830.93" y="191.5" ></text>
</g>
<g >
<title>ttwu_do_activate (5,483,790 samples, 0.02%)</title><rect x="1160.5" y="213" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1163.54" y="223.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (8,554,333 samples, 0.03%)</title><rect x="743.3" y="229" width="0.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="746.35" y="239.5" ></text>
</g>
<g >
<title>runtime.typehash (4,648,400 samples, 0.02%)</title><rect x="616.1" y="309" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="619.08" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (11,508,584 samples, 0.04%)</title><rect x="661.1" y="277" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="664.14" y="287.5" ></text>
</g>
<g >
<title>idr_get_free (4,621,682 samples, 0.02%)</title><rect x="931.3" y="293" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="934.26" y="303.5" ></text>
</g>
<g >
<title>rcu_core (2,919,110 samples, 0.01%)</title><rect x="249.0" y="277" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="252.02" y="287.5" ></text>
</g>
<g >
<title>pick_next_task (532,359,627 samples, 1.81%)</title><rect x="189.6" y="389" width="21.4" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="192.57" y="399.5" >p..</text>
</g>
<g >
<title>do_send_specific (6,696,603 samples, 0.02%)</title><rect x="12.0" y="421" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="15.01" y="431.5" ></text>
</g>
<g >
<title>reflect.Value.Field (34,260,340 samples, 0.12%)</title><rect x="531.2" y="485" width="1.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="534.17" y="495.5" ></text>
</g>
<g >
<title>psi_task_switch (4,056,752 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.96" y="431.5" ></text>
</g>
<g >
<title>security_bpf (12,994,939 samples, 0.04%)</title><rect x="936.5" y="325" width="0.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="939.54" y="335.5" ></text>
</g>
<g >
<title>mas_walk (3,808,209 samples, 0.01%)</title><rect x="645.0" y="389" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="648.04" y="399.5" ></text>
</g>
<g >
<title>record_times (6,559,327 samples, 0.02%)</title><rect x="226.9" y="373" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="229.86" y="383.5" ></text>
</g>
<g >
<title>runtime.mapassign (34,774,756 samples, 0.12%)</title><rect x="616.4" y="325" width="1.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="619.39" y="335.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).allocToCache (5,382,965 samples, 0.02%)</title><rect x="652.1" y="293" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="655.11" y="303.5" ></text>
</g>
<g >
<title>__d_alloc (3,046,843 samples, 0.01%)</title><rect x="737.8" y="261" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="740.80" y="271.5" ></text>
</g>
<g >
<title>task_tick_fair (3,127,098 samples, 0.01%)</title><rect x="1160.9" y="197" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1163.89" y="207.5" ></text>
</g>
<g >
<title>psi_flags_change (7,405,660 samples, 0.03%)</title><rect x="222.5" y="373" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="225.53" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (4,727,719 samples, 0.02%)</title><rect x="160.2" y="389" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="163.15" y="399.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (22,412,841 samples, 0.08%)</title><rect x="411.0" y="453" width="0.9" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="413.97" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (19,367,605 samples, 0.07%)</title><rect x="651.6" y="309" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="654.61" y="319.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (5,209,331 samples, 0.02%)</title><rect x="69.2" y="309" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="72.25" y="319.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (54,189,147 samples, 0.18%)</title><rect x="116.5" y="325" width="2.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="119.51" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_lock (8,008,462 samples, 0.03%)</title><rect x="232.2" y="389" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="235.16" y="399.5" ></text>
</g>
<g >
<title>rcu_core_si (10,480,741 samples, 0.04%)</title><rect x="85.2" y="341" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="88.21" y="351.5" ></text>
</g>
<g >
<title>check_stack_object (5,433,151 samples, 0.02%)</title><rect x="718.5" y="309" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="721.49" y="319.5" ></text>
</g>
<g >
<title>runtime.growslice (129,979,425 samples, 0.44%)</title><rect x="1178.8" y="517" width="5.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1181.85" y="527.5" ></text>
</g>
<g >
<title>runtime.newobject (152,732,309 samples, 0.52%)</title><rect x="1168.1" y="421" width="6.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1171.07" y="431.5" ></text>
</g>
<g >
<title>__do_softirq (3,963,874 samples, 0.01%)</title><rect x="277.0" y="325" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="279.97" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (12,428,700 samples, 0.04%)</title><rect x="596.7" y="245" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="599.73" y="255.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (11,123,280 samples, 0.04%)</title><rect x="535.3" y="453" width="0.5" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="538.34" y="463.5" ></text>
</g>
<g >
<title>runtime.makeslice (13,196,535 samples, 0.04%)</title><rect x="609.6" y="309" width="0.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="612.60" y="319.5" ></text>
</g>
<g >
<title>runtime.scanobject (98,716,918 samples, 0.34%)</title><rect x="579.2" y="389" width="4.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="582.21" y="399.5" ></text>
</g>
<g >
<title>security_capable (84,057,584 samples, 0.29%)</title><rect x="900.2" y="277" width="3.4" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="903.19" y="287.5" ></text>
</g>
<g >
<title>syscall.read (792,439,580 samples, 2.70%)</title><rect x="538.1" y="437" width="31.9" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="541.14" y="447.5" >sy..</text>
</g>
<g >
<title>__folio_alloc (3,878,265 samples, 0.01%)</title><rect x="597.0" y="133" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="599.98" y="143.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,573,058 samples, 0.02%)</title><rect x="160.3" y="341" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="163.35" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (10,688,266 samples, 0.04%)</title><rect x="619.9" y="341" width="0.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="622.86" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadRawSpec (367,984,966 samples, 1.25%)</title><rect x="592.5" y="341" width="14.8" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="595.46" y="351.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7,366,011 samples, 0.03%)</title><rect x="292.3" y="501" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="295.25" y="511.5" ></text>
</g>
<g >
<title>strings.LastIndex (9,172,835 samples, 0.03%)</title><rect x="619.9" y="325" width="0.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="622.92" y="335.5" ></text>
</g>
<g >
<title>bpf_map_put (20,561,090 samples, 0.07%)</title><rect x="540.0" y="293" width="0.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="543.04" y="303.5" ></text>
</g>
<g >
<title>setup_object (4,568,054 samples, 0.02%)</title><rect x="775.7" y="149" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="778.68" y="159.5" ></text>
</g>
<g >
<title>cache_from_obj (34,084,591 samples, 0.12%)</title><rect x="243.7" y="373" width="1.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="246.70" y="383.5" ></text>
</g>
<g >
<title>__mmput (78,820,463 samples, 0.27%)</title><rect x="37.0" y="453" width="3.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="40.03" y="463.5" ></text>
</g>
<g >
<title>idr_get_next_ul (141,772,666 samples, 0.48%)</title><rect x="473.9" y="229" width="5.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="476.94" y="239.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (7,517,324 samples, 0.03%)</title><rect x="126.2" y="325" width="0.3" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="129.17" y="335.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (15,372,310 samples, 0.05%)</title><rect x="1160.4" y="293" width="0.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1163.45" y="303.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (14,515,896 samples, 0.05%)</title><rect x="904.8" y="309" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="907.77" y="319.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (4,504,486 samples, 0.02%)</title><rect x="642.8" y="309" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="645.79" y="319.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (1,743,269,350 samples, 5.94%)</title><rect x="522.3" y="533" width="70.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="525.31" y="543.5" >github...</text>
</g>
<g >
<title>put_cpu_partial (7,258,119 samples, 0.02%)</title><rect x="277.1" y="389" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="280.13" y="399.5" ></text>
</g>
<g >
<title>do_exit (6,589,534,079 samples, 22.46%)</title><rect x="19.3" y="501" width="265.0" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="22.31" y="511.5" >do_exit</text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (38,698,251 samples, 0.13%)</title><rect x="583.3" y="517" width="1.6" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="586.34" y="527.5" ></text>
</g>
<g >
<title>rcu_do_batch (9,882,638 samples, 0.03%)</title><rect x="85.2" y="309" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="88.24" y="319.5" ></text>
</g>
<g >
<title>memset_orig (9,199,980 samples, 0.03%)</title><rect x="932.3" y="309" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="935.30" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_free (6,839,314 samples, 0.02%)</title><rect x="68.9" y="293" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="71.93" y="303.5" ></text>
</g>
<g >
<title>__x64_sys_read (1,549,048,366 samples, 5.28%)</title><rect x="434.0" y="341" width="62.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="437.01" y="351.5" >__x64_..</text>
</g>
<g >
<title>exit_files (385,450,316 samples, 1.31%)</title><rect x="21.5" y="485" width="15.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="24.52" y="495.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (297,268,561 samples, 1.01%)</title><rect x="919.7" y="309" width="12.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="922.74" y="319.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (39,491,001 samples, 0.13%)</title><rect x="428.3" y="437" width="1.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="431.31" y="447.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (3,038,617 samples, 0.01%)</title><rect x="1177.5" y="405" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1180.52" y="415.5" ></text>
</g>
<g >
<title>dequeue_entity (6,149,963 samples, 0.02%)</title><rect x="17.2" y="389" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="20.21" y="399.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,398,683 samples, 0.02%)</title><rect x="849.1" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="852.09" y="159.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,811,236 samples, 0.02%)</title><rect x="12.0" y="469" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="15.01" y="479.5" ></text>
</g>
<g >
<title>map_create (5,156,620,250 samples, 17.58%)</title><rect x="726.1" y="325" width="207.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="729.06" y="335.5" >map_create</text>
</g>
<g >
<title>slab_update_freelist.isra.0 (42,802,380 samples, 0.15%)</title><rect x="277.4" y="389" width="1.7" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="280.42" y="399.5" ></text>
</g>
<g >
<title>shuffle_freelist (19,850,569 samples, 0.07%)</title><rect x="758.6" y="133" width="0.8" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="761.57" y="143.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (3,052,182 samples, 0.01%)</title><rect x="1172.4" y="357" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="1175.45" y="367.5" ></text>
</g>
<g >
<title>enqueue_task (4,702,881 samples, 0.02%)</title><rect x="1160.6" y="197" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1163.57" y="207.5" ></text>
</g>
<g >
<title>memset_orig (11,616,710 samples, 0.04%)</title><rect x="874.0" y="149" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="877.01" y="159.5" ></text>
</g>
<g >
<title>runtime.deferreturn (34,677,185 samples, 0.12%)</title><rect x="1176.9" y="485" width="1.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1179.93" y="495.5" ></text>
</g>
<g >
<title>exc_page_fault (3,786,622 samples, 0.01%)</title><rect x="619.4" y="325" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="622.44" y="335.5" ></text>
</g>
<g >
<title>array_map_free_timers (7,609,060 samples, 0.03%)</title><rect x="84.9" y="421" width="0.3" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="87.89" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,153,398 samples, 0.02%)</title><rect x="1171.4" y="389" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1174.42" y="399.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (232,088,413 samples, 0.79%)</title><rect x="92.9" y="389" width="9.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="95.87" y="399.5" ></text>
</g>
<g >
<title>rmqueue (10,092,470 samples, 0.03%)</title><rect x="1008.9" y="181" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1011.88" y="191.5" ></text>
</g>
<g >
<title>get_page_from_freelist (164,252,009 samples, 0.56%)</title><rect x="766.7" y="133" width="6.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="769.74" y="143.5" ></text>
</g>
<g >
<title>runtime.scanstack (2,818,079 samples, 0.01%)</title><rect x="292.9" y="517" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="295.95" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,761,844 samples, 0.02%)</title><rect x="677.8" y="389" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="680.76" y="399.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (3,824,265 samples, 0.01%)</title><rect x="604.2" y="85" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="607.21" y="95.5" ></text>
</g>
<g >
<title>__handle_mm_fault (21,862,216 samples, 0.07%)</title><rect x="660.8" y="357" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="663.76" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (21,692,800 samples, 0.07%)</title><rect x="651.6" y="341" width="0.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="654.61" y="351.5" ></text>
</g>
<g >
<title>kmem_cache_free (399,212,872 samples, 1.36%)</title><rect x="232.9" y="389" width="16.0" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="235.87" y="399.5" ></text>
</g>
<g >
<title>task_work_add (21,126,672 samples, 0.07%)</title><rect x="34.8" y="437" width="0.8" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="37.76" y="447.5" ></text>
</g>
<g >
<title>__fput (8,440,976 samples, 0.03%)</title><rect x="284.0" y="469" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="286.95" y="479.5" ></text>
</g>
<g >
<title>__folio_alloc (46,223,724 samples, 0.16%)</title><rect x="589.2" y="373" width="1.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="592.16" y="383.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (3,083,001 samples, 0.01%)</title><rect x="617.0" y="101" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="620.02" y="111.5" ></text>
</g>
<g >
<title>seq_write (10,788,695 samples, 0.04%)</title><rect x="492.9" y="213" width="0.4" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="495.89" y="223.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (8,505,982 samples, 0.03%)</title><rect x="652.6" y="389" width="0.3" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="655.58" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_lock (15,248,963 samples, 0.05%)</title><rect x="818.1" y="197" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="821.10" y="207.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,657,196 samples, 0.01%)</title><rect x="574.5" y="357" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="577.54" y="367.5" ></text>
</g>
<g >
<title>do_anonymous_page (4,234,688 samples, 0.01%)</title><rect x="605.9" y="197" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="608.88" y="207.5" ></text>
</g>
<g >
<title>__alloc_pages (315,660,159 samples, 1.08%)</title><rect x="860.0" y="165" width="12.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="863.04" y="175.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast_reacquired (2,929,935 samples, 0.01%)</title><rect x="675.1" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="678.14" y="383.5" ></text>
</g>
<g >
<title>runtime.scanobject (4,082,631 samples, 0.01%)</title><rect x="620.6" y="213" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="623.62" y="223.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,030,043 samples, 0.01%)</title><rect x="619.4" y="309" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="622.44" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,175,813 samples, 0.02%)</title><rect x="659.1" y="325" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="662.08" y="335.5" ></text>
</g>
<g >
<title>do_anonymous_page (10,818,743 samples, 0.04%)</title><rect x="629.7" y="421" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="632.69" y="431.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,532,736 samples, 0.01%)</title><rect x="625.5" y="261" width="0.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="628.50" y="271.5" ></text>
</g>
</g>
</svg>
This file has been truncated, but you can view the full file.
mapgauge.test 95343
mapgauge.test;[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];runtime.memmove;asm_exc_page_fault 1542437
mapgauge.test;[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];runtime.memmove;error_entry 2316436
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 72066
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.acquirep;runtime.(*mcache).prepareForSweep 126004
mapgauge.test;[unknown];[unknown];[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 17780
mapgauge.test;[unknown];[unknown];[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;asm_sysvec_call_function_single;sysvec_call_function_single 24059
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 6108926
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;error_entry 1561896
mapgauge.test;[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;error_entry 5106812
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 10057359
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;error_entry 4650940
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 780391
mapgauge.test;[unknown];[unknown];runtime.(*mspan).refillAllocCache;entry_SYSCALL_64 761740
mapgauge.test;[unknown];[unknown];runtime.futexsleep;runtime.mstart.abi0;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 101513
mapgauge.test;[unknown];[unknown];runtime.futexsleep;runtime.mstart.abi0;runtime.mstart0;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 655895
mapgauge.test;[unknown];[unknown];runtime.mallocgc;entry_SYSCALL_64 754219
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;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 754794
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;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;__bitmap_and 754794
mapgauge.test;[unknown];[unknown];runtime.memmove;asm_exc_page_fault 776833
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.gcTrigger.test 148349
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.retake 134318
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 1011448
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;[[vdso]] 86563
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;__vdso_clock_gettime 355023
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.gcTrigger.test 253863
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.handoffp 63868
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0 1156128
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 1639914
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll 823882
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64 46513
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe 172867
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;__x64_sys_epoll_pwait 65330
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 191130
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 181994
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 400918
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;do_epoll_wait;__fget_light 181994
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 130111
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 150867
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;amd_clear_divider 54475
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;syscall_return_via_sysret 127606
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 396543
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 297123
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 749247
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 752029
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;futex_wake_mark 51807
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;get_futex_key 62663
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_q_add_safe 68166
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;_raw_spin_lock 165875
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 568862
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr;__cgroup_account_cputime 65074
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 66351
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 52714
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_curr 57593
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 195084
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 88748
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 69155
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;put_prev_entity;update_load_avg 76300
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 65989
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;syscall_return_via_sysret 130111
mapgauge.test;[unknown];[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;pick_next_task 65383
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.lock2 61308
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.pidleput 58054
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone 722902
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;__task_pid_nr_ns 130111
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 93114
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;syscall_return_via_sysret 215629
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64 66833
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 66960
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 63785
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;__task_pid_nr_ns 50848
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 124525
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 67788
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 57755
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 61442
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 243108
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;get_task_cred 66137
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 64125
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 998618
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 107897
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 757200
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 1565790
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;obj_cgroup_charge;try_charge_memcg;refill_stock 74264
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 833093
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 142850
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;complete_signal;task_curr 63921
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_unlock_irqrestore 536760
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 59262
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;task_curr 174671
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;complete_signal 82142
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;copy_siginfo 66960
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 548295
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;syscall_return_via_sysret 111869
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.signalM 245778
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.unlock2 61094
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.unlock2 188288
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 1183742
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;do_syscall_64 196757
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 2791280
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 3712893
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_nanosleep 358435
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 196957
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 51207
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;get_timespec64;_copy_from_user 768667
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 128200
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 746612
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 155040
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 243377
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 94522
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 930720
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 445977
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 1482327
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;get_nohz_timer_target 227132
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 92444
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 134961
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 1690817
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 267133
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 204048
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 73868
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 100677
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;_raw_spin_unlock_irqrestore 121224
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 74282
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 697829
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 350219
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;lapic_next_deadline 457735
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 106665
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 273577
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 919005
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;__perf_event_task_sched_out 213584
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 1617312
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 960583
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_entity 667510
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 2198409
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 2208644
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 243756
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 1010756
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 62105
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 482098
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 234711
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 71181
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 180010
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 522507
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 450552
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 249514
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 1565233
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 126728
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 317259
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity;update_curr;__calc_delta 1260946
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;update_curr 101373
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 956713
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 255330
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;hrtick_update 124386
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;set_next_buddy 1482921
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 363977
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 926516
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 930932
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 808569
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_disable;x86_pmu_disable;native_write_msr 662523
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 187094
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 298781
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 941576
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 2020759
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 299767
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;_raw_spin_unlock 51309
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;run_posix_cpu_timers 128456
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;native_apic_msr_eoi_write 663056
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 143602
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair 128749
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;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue 105665
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 227719
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;check_cfs_rq_runtime 669782
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 78734
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_entity 749570
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 683525
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 261497
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;__rcu_read_lock 143365
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 164406
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 416661
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;__msecs_to_jiffies 110562
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 313633
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;activate_task;enqueue_task;psi_task_change;psi_group_change 157664
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;_find_next_and_bit 864374
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_group_capacity 99573
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 181396
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_sg_lb_stats 91814
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 88018
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 937420
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;pick_next_entity 665765
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 97565
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 235449
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 308896
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 807334
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 212624
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 2956266
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_context_sched_out 165411
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_group_change 772138
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 754424
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;psi_flags_change 73810
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 4382429
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 94461
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 770259
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;put_prev_task_fair 358137
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 116403
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;sched_clock_cpu 204065
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 84565
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 664019
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;pvclock_clocksource_read_nowd 119545
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;pick_next_task 110800
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;prepare_task_switch 170629
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 117835
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 69856
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;hrtimer_nanosleep 222932
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_enter_from_user_mode 84519
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 5045994
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 784306
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;fpregs_assert_state_consistent 105054
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 507012
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 97005
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_safe_stack 69918
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSRETQ_unsafe_stack 108769
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 4134966
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0 833455
mapgauge.test;[unknown];[unknown];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 25722
mapgauge.test;[unknown];[unknown];runtime.newm1;runtime.newosproc;runtime.retryOnEAGAIN;runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.schedule;runtime.resetspinning;runtime.pidlegetSpinning 58054
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 3877974
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_sysvec_apic_timer_interrupt 782991
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;error_entry 1537408
mapgauge.test;[unknown];[unknown];syscall.pread;syscall.Syscall6;runtime/internal/syscall.Syscall6;asm_exc_page_fault 1507266
mapgauge.test;[unknown];[unknown];syscall.pread;syscall.Syscall6;runtime/internal/syscall.Syscall6;sync_regs 754393
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 189036
mapgauge.test;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_arg_pages;shift_arg_pages;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list 103185
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;arch_setup_new_exec 46669
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;entry_SYSCALL_64 3090164
mapgauge.test;[unknown];runtime.(*mcache).nextFree;runtime.(*mcache).refill;runtime.(*mcentral).cacheSpan;runtime.(*mcentral).grow;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;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;ktime_get 174210
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 639783
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;[unknown];runtime/internal/syscall.Syscall6;error_entry 767880
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime/internal/syscall.Syscall6;error_entry 770015
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.netpoll;runtime/internal/syscall.Syscall6;syscall_return_via_sysret 722902
mapgauge.test;[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_run_queues 35654
mapgauge.test;[unknown];runtime.init.0;[unknown];[unknown];runtime.newm;runtime.newm1;runtime.newosproc;runtime.retryOnEAGAIN;runtime.clone.abi0;asm_exc_page_fault 55939
mapgauge.test;[unknown];runtime.memclrNoHeapPointers;asm_exc_page_fault 776593
mapgauge.test;[unknown];runtime.memmove;asm_exc_page_fault 774032
mapgauge.test;[unknown];runtime.memmove;error_entry 771484
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 1262340
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;__vdso_clock_gettime 137286
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.lock2 84002
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0 714897
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 772939
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 117397
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 56696
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;syscall_return_via_sysret 622679
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;hrtimer_sleeper_start_expires;hrtimer_start_range_ns;__hrtimer_start_range_ns;enqueue_hrtimer;timerqueue_add 58054
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_setup;futex_q_lock 65018
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 268882
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.pidleput;runtime.updateTimerPMask;runtime.lock2 58054
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 50892
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 779966
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;futex_wake_mark 58072
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 781843
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.lock2;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 132877
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;do_syscall_64 132594
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe 42462
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 71450
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;__rcu_read_unlock 117397
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 779573
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;get_task_cred 753213
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_lock_irqsave;__raw_spin_lock_irqsave 41214
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 111572
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 56696
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 92434
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;complete_signal 88675
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;prepare_signal 33841
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;task_active_pid_ns 46586
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 592249
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;syscall_return_via_sysret 100430
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.signalM 74778
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.unlock2 125592
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 241111
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 340794
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 2636460
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_nanosleep 1183763
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 650899
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 1480698
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 692705
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 132594
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 799249
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 378119
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 2049424
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 201606
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 57899
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 800641
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;kvm_clock_get_cycles 206378
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 1253129
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 483870
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 949764
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 1252943
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 765627
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 551351
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 1853129
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;__cgroup_account_cputime 1434302
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 55863
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 69236
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 556011
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 306622
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 323393
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;cgroup_rstat_updated 37650
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 78103
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;update_min_vruntime 58553
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 217744
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 754908
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 143790
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_min_vruntime 260659
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 107685
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 640418
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 758626
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 134342
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;hrtick_update 218991
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 985965
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 800127
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 232450
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;__rcu_read_lock 659455
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable;x86_pmu_disable;native_write_msr 2120507
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 52844
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 72001
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__rcu_read_unlock 145436
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 24131
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 162370
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 76950
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 690872
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 218991
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 176027
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 228289
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_group_capacity 48277
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 58072
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 176476
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 150937
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;rb_erase 705901
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_entity 174087
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;put_prev_entity 513741
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 935332
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 96582
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 94327
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 487353
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 581465
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 310060
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 2856651
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 167139
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 722902
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 46781
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 65248
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 90595
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;prepare_task_switch 48522
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 76950
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 568722
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;get_timespec64 754908
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 66128
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 1768666
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 1545125
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 128058
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;fpregs_assert_state_consistent 75925
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 92426
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 61604
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_safe_stack 56129
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 1711006
mapgauge.test;[unknown];runtime.stackpoolalloc;error_entry 625308
mapgauge.test;[unknown];runtime.sysMmap.abi0;asm_exc_page_fault 431895
mapgauge.test;[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 3853693
mapgauge.test;[unknown];runtime/internal/syscall.Syscall6;error_entry 5953117
mapgauge.test;[unknown];runtime/internal/syscall.Syscall6;sync_regs 778363
mapgauge.test;[unknown];syscall.pread;[unknown];runtime/internal/syscall.Syscall6;error_entry 773177
mapgauge.test;__switch_to 777012
mapgauge.test;__switch_to_asm 2120886
mapgauge.test;__wrgsbase_inactive 692093
mapgauge.test;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;switch_mm_irqs_off 784236
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;__cond_resched;__schedule 781515
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;array_map_alloc;bpf_map_area_alloc;__bpf_map_area_alloc;__kmalloc_node;__kmem_cache_alloc_node;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable;x86_pmu_enable 602488
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;array_map_alloc;bpf_map_area_alloc;__bpf_map_area_alloc;__kmalloc_node;__kmem_cache_alloc_node;__cond_resched;__schedule;switch_mm_irqs_off 669121
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;native_write_msr 65074
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 62987
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 652494
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 780700
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 651117
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;__intel_pmu_enable_all.isra.0 620376
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 732971
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 35433476
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 590625
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 560879
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 533978
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2455331
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 15372889
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;__cond_resched;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core 103437
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1570505
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 763052
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 27445436
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 4648308
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 214717722
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;asm_common_interrupt;common_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;net_rx_action;__napi_poll;virtnet_poll;napi_complete_done;netif_receive_skb_list_internal;__netif_receive_skb_list_core;ip_list_rcv;ip_sublist_rcv;nf_hook_slow_list;nf_hook_slow;ipv4_conntrack_in;nf_conntrack_in;nf_conntrack_handle_packet;nf_conntrack_tcp_packet 785734
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2356597
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2354559
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 18745557
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 55644063
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 21126672
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 32937543
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;_raw_spin_trylock 786017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;refill_stock 783429
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 785122
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mm_update_next_owner 87104
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;__tlb_remove_page_size 749793
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 16941995
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 423731
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3684295
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;__get_free_pages 85053
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 5268760
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1098563
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 773734
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;page_remove_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 783914
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 769261
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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_memcg_lruvec_state 783649
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 523558
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;__rcu_read_unlock 782441
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 782885
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 5239810
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1559197
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;__mem_cgroup_uncharge_list;__rcu_read_lock 783087
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;__mem_cgroup_uncharge_list;__rcu_read_unlock 1560144
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 6230616
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 777527
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 780389
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;folio_lruvec_lock_irqsave 778261
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3061693
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 773462
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 777941
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 10122396
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_commit;free_pcppages_bulk;__free_one_page;__mod_zone_page_state 780875
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;asm_sysvec_apic_timer_interrupt 775510
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2278618
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 5377829
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 765883
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;uncharge_folio 778233
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2167360
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;put_files_struct 779241
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run 119242792
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput 109679
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 1068217
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput 358874153
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2599946
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 6043070
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable 104317
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1838761
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 16353255
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__rcu_read_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab 109081
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__rcu_read_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state 104483
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__rcu_read_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;obj_cgroup_uncharge 163229
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2474441
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 29097578
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_load_avg;__update_load_avg_cfs_rq 102667
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 102481
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 31852095
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 129487565
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues 103352
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__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 103897
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1269666
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1312853
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 640431
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 1204840
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;mod_objcg_state 548539
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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_update_freelist.isra.0 661227
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;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 547275
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1180279
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;apparmor_file_free_security;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair 104123
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;wake_up_process 105147
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;enqueue_hrtimer;timerqueue_add 115577
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change 150305
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 565671
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 4466495
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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_unlock 611157
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1342100
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__rcu_read_unlock 632095
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 620659
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free 607449
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1696985
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock 551667
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state;cgroup_rstat_updated 720455
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock;__refill_stock 550522
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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_update_freelist.isra.0 117382
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;obj_cgroup_uncharge 554362
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;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 552723
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 5209331
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 27546407
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 129017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 103992544
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;__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 102715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 554480
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 1310493
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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_lock 141577
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 3614459
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free 609373
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 140674
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;slab_update_freelist.isra.0 539059
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 1185736
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;cache_from_obj 540884
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;obj_cgroup_uncharge 1132607
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;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 1213481
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 3613058
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release 230595003
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2109894
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 4603570
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7609060
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;irqentry_enter 522453
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;file_free_rcu 598103
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 617174
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 893500
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__rcu_read_lock 562602
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1755856
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page 544025
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 719834
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 718420
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;slab_update_freelist.isra.0 606822
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk 553596
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2910809
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put 69203752
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;__queue_work 6044391
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 8314193
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 2378075
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 47058426
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;__next_timer_interrupt 535935
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 11591742
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;__rcu_read_unlock 142014
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;hrtimer_active 103025
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1636152
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 609227
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1727070
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 4112406
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 572410
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials 589972
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_prepare 109405
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free 639786
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 141405
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 597705
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 633715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;_raw_spin_unlock_irqrestore;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state;cgroup_rstat_updated 540895
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 750252
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;local_clock;sched_clock_noinstr 568963
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 626440
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 7611425
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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_cblist_dequeue 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;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 558179
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;put_cpu_partial;__unfreeze_partials 602890
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;mod_objcg_state 627753
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;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 576286
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;run_timer_softirq;__run_timers;call_timer_fn;tcp_orphan_update;tcp_orphan_count_sum 540112
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 2188855
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1970255
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 5828344
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 16903668
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 36659571
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 11829134
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 126846
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 312055
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;rcu_segcblist_enqueue 208472
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 163419471
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 2629196
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on 52832958
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 65422641
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4131786
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 11946986
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 9749115
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;native_queued_spin_lock_slowpath 536336
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1843231
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 543543
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__task_rq_lock 514827
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1662034
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2402946
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 10339636
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 969050
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1371281
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 8819226
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 60209152
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2450390
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1041245
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 7696756
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1012988
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1592356
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2192472
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 91974003
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 13332651
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1076567
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 54189147
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3347764
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 10901562
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2987463
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1383426
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4479270
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1312251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4563639
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1508386
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 39724589
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 876050
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1312762
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 15031168
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;select_task_rq_fair;select_idle_sibling;__raw_callee_save___kvm_vcpu_is_preempted 539015
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 10183484
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 14627578
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 10608520
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 42922643
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 12716829
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2098663
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1677686
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2636166
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 514463
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 7517324
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 24578272
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2071173
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 32492829
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;cpu_util 356443
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 49483183
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__calc_delta 107435
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3353332
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 5515355
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 12028151
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 16482428
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 216917
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1700684
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 19901171
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 7968113
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 11823563
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2661507
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1148158
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3697123
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2630607
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3315279
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 8548005
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1543922
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 12500270
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1562114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 31615789
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 5260526
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 43171234
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 548409
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2106842
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 932443
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 5937152
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 648314
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock;kvm_sched_clock_read 442987
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 108411
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 686589
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 28627039
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1303703
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 984525
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 7162754
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 15445925
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3382784
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 32992704
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 11392034
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 5909125
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 5075856
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 111988149
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 22661897
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 6630400
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 18482778
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 16306213
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3282919
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2328826
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2750679
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4967896
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 25286631
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 503145
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 9489280
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 7145608
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2420473
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 214885
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 17130686
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 335753
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4893921
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 44880873
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 352090
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1490201
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2364285
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 8069073
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1490200
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 33555521
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4472274
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 17802955
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 36710277
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4727719
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_common_interrupt;common_interrupt;__common_interrupt;handle_edge_irq;handle_irq_event;__handle_irq_event_percpu;vring_interrupt;virtblk_done;blk_mq_complete_request;raise_softirq 100359
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 114062
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 534595
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__remove_hrtimer;rb_next 535649
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_do_update_jiffies64 569633
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;update_vsyscall 571671
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;update_vsyscall;update_vdso_data.constprop.0 529588
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 111899
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 535214
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102785
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;invoke_rcu_core 113755
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;rcu_segcblist_ready_cbs 535314
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 108554
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 103626
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_load_avg 542758
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__remove_hrtimer 563955
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;_raw_spin_trylock 103054
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2590573
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;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 112928
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1627416
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 24128804
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1736048
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 561257
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;cache_from_obj 541428
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 10003100
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2232494
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 571500
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 628461
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_prepare 1103719
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1104239
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;discard_slab 620899
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 8322105
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1224568
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 5299564
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2854469
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;__rcu_read_lock 615269
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 661388
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1189971
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 575530
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1100134
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 539543
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1176531
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2960854
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 28610925
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_report_qs_rnp;rcu_gp_kthread_wake;swake_up_one 560560
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_call_function_single;irqentry_enter 142868
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task 108820
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task;enqueue_task_fair 114877
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4061570
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 15571439
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 7082411
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 2218030
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 3401583
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3936400
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 8640229
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 6459400
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__sysvec_apic_timer_interrupt;hrtimer_interrupt 109717
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 64371552
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 619815
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;cache_from_obj 565085
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1138367
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 46863963
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2735711
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput 56426394
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched 29726150
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule 62781320
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 700060
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 991867
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 13016622
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2082258
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 635505
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;error_return 116259
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0 33142787
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 11865434
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 12017714
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 21279215
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3693207
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 14574965
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;__intel_pmu_enable_all.isra.0 1786970
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3705019
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 32118719
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 57141114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 965476
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 9946778
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 10506834
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__common_interrupt;handle_edge_irq;handle_irq_event;fast_mix 105594
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__common_interrupt;handle_edge_irq;irq_chip_ack_parent;apic_ack_edge;kvm_guest_apic_eoi_write 117349
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_enter 103847
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102419
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102684
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102414
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_run_queues 207928
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 218785
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 893920
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_erase 244760
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 208922
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;_raw_spin_lock_irq 128710
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 377133
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 106611
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity 243008
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_load_avg 106272
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_rt;cpupri_set 102564
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 105245
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 417017
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_do_timer 102946
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;ktime_get 208008
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;ktime_get;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 105592
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_do_update_jiffies64 100270
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;_raw_spin_lock 101723
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;timekeeping_advance 218997
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;_raw_spin_unlock_irqrestore 103888
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 207303
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_get_next_leap 104770
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;raw_notifier_call_chain 109223
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 100804
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;notifier_call_chain 103506
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 103686
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 109371
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;profile_tick 115324
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;rcu_sched_clock_irq 101871
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;scheduler_tick 104246
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 105223
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102146
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 314686
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;account_process_tick;account_system_time;acct_account_cputime 104881
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;arch_scale_freq_tick 103022
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;check_cpu_stall 103877
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;perf_event_task_tick 104523
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 212442
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;check_cpu_stall 101981
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;raise_softirq 209079
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__rcu_read_unlock 141010
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;_raw_spin_lock 102883
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;nohz_balancer_kick 259827
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 204464
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 462367
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;intel_pmu_enable_all 104682
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 522494
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 109068
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 220150
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 114824
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;x86_pmu_disable 103427
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;__update_load_avg_se 102340
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 218281
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102698
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__update_load_avg_cfs_rq 102943
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__update_load_avg_se 102511
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 116219
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;update_cfs_group 421319
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;update_curr 103359
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;update_load_avg 103479
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 177600
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;task_tick_fair 208566
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;update_process_times 103530
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;timerqueue_add 219643
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 213030
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 109715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;kvm_clock_get_cycles 102120
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 117069
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event 141614
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;ktime_get;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 103401
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;lapic_next_deadline 211964
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 562787
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;ktime_get 140338
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 516586
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 129050
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 588377
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;invoke_rcu_core 340554
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 698255
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1933343
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;invoke_rcu_core;__raise_softirq_irqoff 103469
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 104841
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;__note_gp_changes;rcu_accelerate_cbs;rcu_segcblist_pend_cbs 103093
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;_raw_spin_lock_irqsave 150805
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102465
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 114805
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102220
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;__smp_call_single_queue;native_send_call_func_single_ipi;native_write_msr 115862
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;call_function_single_prep_ipi 167149
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;llist_add_batch 104580
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;rcu_gp_kthread_wake;swake_up_one;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;native_send_call_func_single_ipi 102955
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;radix_tree_node_rcu_free 102831
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102292
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2085549
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;btf_free_rcu;btf_free;kvfree;kfree;__kmem_cache_free 216247
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 7995717
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;__rcu_read_unlock 127189
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;__slab_free 221327
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;cache_from_obj 680349
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4740004
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__rcu_read_lock 103538
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__rcu_read_unlock 102153
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 5528607
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 220015
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 269846
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 404489
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_trylock 102838
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 121752
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 128106
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_prepare 126203
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102440
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 220659
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 333754
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 115004
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_trylock 102535
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 123076
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1848611
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 890413
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3233190
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 102841
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;obj_cgroup_uncharge_pages 103157
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;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 986734
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;__rcu_read_unlock 213955
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;memcg_account_kmem 115966
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 128565
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state;cgroup_rstat_updated 143137
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 104435
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 336869
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 382587
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 256086
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;local_clock;local_clock_noinstr;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 134039
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 211203
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 540514
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;cache_from_obj 347909
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 11883462
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_segcblist_add_len 206706
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_segcblist_extract_done_cbs 462006
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_gp_kthread_wake 115442
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_nocb_unlock_irqrestore.part.0 105246
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__smp_call_single_queue;native_send_call_func_single_ipi;native_write_msr 115158
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_do_batch 117081
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 128342
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 531922
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 208613
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;blk_rq_timed_out_timer 104515
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;blk_stat_timer_fn;wb_timer_fn 110844
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;clocksource_watchdog 140153
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 103907
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 118414
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 114742
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair 392297
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;__update_load_avg_se 127206
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;rcu_core_si 207213
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;kvm_guest_apic_eoi_write 205377
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;plist_del 105019
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;psi_task_change 109078
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;psi_task_change;psi_group_change 108206
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 832054
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3535327
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1540097
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6541871
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 47759501
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6899907
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1374891
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 8092546
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 68957869
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 331670
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1315948
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 9299520
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6113803
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5490779
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 45403919
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2571385
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 8949580
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3612115
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 746235
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 27203697
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2960160
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 69821061
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 34054280
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 34277980
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 8937418
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 8413394
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6864272
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3939718
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 23537034
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2730608
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1721443
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1707461
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 13903944
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6635455
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5626583
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 11677555
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 23554252
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 11148273
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3699830
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1408246
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1317517
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 23212456
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3932680
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1094773
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1709750
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 12649713
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_ctx_disable 692549
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3708042
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 343044
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 17397958
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 324528
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 208412
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 156396741
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 9600430
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 407624
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5288140
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 7344250
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 41515782
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 7405660
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 95610783
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4660351
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6559327
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 767275
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5253482
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 448139
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;psi_task_switch;sched_clock_cpu;sched_clock;kvm_sched_clock_read 488790
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 104713
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 428129
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 28890730
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 986188
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1710740
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 824712
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5677919
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3017960
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;calc_global_load 103021
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 153705
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 949906
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1830167
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1288307
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3828819
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1548307
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 940885
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1661303
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill 43265157
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__perf_event_task_sched_out;_raw_spin_lock 128479
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable 545032
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 10735831
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 127142
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 9468066
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 7433316
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;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 575146
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1472036
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2896190
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 152349
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4973375
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 105057
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 131315049
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2644759
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 58464285
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 153367
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 108745
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;run_rebalance_domains;update_blocked_averages;__update_blocked_fair;update_load_avg;__update_load_avg_cfs_rq 127322
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;wake_up_process;raw_spin_rq_lock_nested 107210
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1133860
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5126772
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;__raw_spin_lock_irqsave 109251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 103170
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3073003
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 166349
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 312256
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 117633
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2016393
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1380900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1037992
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_unlock 251277
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1492213
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 201297
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 554444
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4452464
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__kmem_cache_free 713893
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2387142
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1630877
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3203776
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 540782
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 102466
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 114170
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_prepare 110067
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2104875
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;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 545370
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__slab_free 101767
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt 559776
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1838392
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 565710
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;mod_node_page_state 100303
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1950459
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 34907833
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;profile_tick 140406
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;run_timer_softirq;__run_timers;call_timer_fn;delayed_work_timer_fn;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist 528792
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 109007
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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_handle;update_process_times;scheduler_tick;perf_event_task_tick;_raw_spin_lock 102956
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;__slab_free 576634
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1207187
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page 638836
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 33968745
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;cache_from_obj;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 115846
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 204826
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 36934624
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 210425
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 702855
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 139869
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 217110
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2709712
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 219682
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 994329
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 27186521
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3196202
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 102383
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4167653
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 211104
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 223564
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 781252
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1515407
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1326545
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 114316
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 646787
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1291999
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 723636
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 331670
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;propagate_protected_usage 103087
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;drain_stock 99539
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1399096
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 669547
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5320361
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;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 524664
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3628029
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2322405
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 631833
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 579456
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;asm_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 1707821
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6593151
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 52356664
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1893822
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 9154781
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;__remove_hrtimer;rb_next 570680
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 108930
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 103914
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 7932290
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 155272021
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3463672
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;__rcu_read_unlock 587297
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1205876
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;__rcu_read_lock 642216
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1113064
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 555947
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;cache_from_obj 661946
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;mod_memcg_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave;native_queued_spin_lock_slowpath 528529
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;__slab_free 568590
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials 129340
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk;__free_one_page 614148
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3520590
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;asm_sysvec_apic_timer_interrupt 571821
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 936842
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2331306
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2029824
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2728091
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 27569972
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 616922
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 114338
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state 101979
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;__rcu_read_lock 557247
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages 635010
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;kmem_cache_free 554008
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 3537765
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 3192829
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;__slab_free;slab_update_freelist.isra.0 104082
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 115461
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 17049874
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 205109
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;asm_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 142716
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 25363605
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 644831
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;asm_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 2343861
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 2085761
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 53638277
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1847398
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1761994
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 12237805
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;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 103977
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 9504487
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1479157
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3555139
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2023195
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 43096268
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 948019
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch 554256
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 1190102
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 549856
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;asm_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 633490
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2442452
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 49855108
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 139887
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;mod_objcg_state 274195
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 158991
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 37354968
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3194211
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 29429388
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;apparmor_file_free_security;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__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 537210
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;apparmor_file_free_security;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__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 103992
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;apparmor_file_free_security;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch 127636
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 105438
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 104365
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 126979
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3238894
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 31956906
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 58595062
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch 629659
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 551752
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_prepare 543706
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;mod_objcg_state 577061
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1156186
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;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;rb_insert_color 505510
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1161885
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 102574
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;__raw_spin_lock_irqsave 248490
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 101692
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1280434
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 102731
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 575271
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 587394
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 632471
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 855065
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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_commit 124461
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 103305
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;kfree 98148
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;mod_node_page_state 977783
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;kfree 103732
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;free_slab 101145
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;_raw_spin_lock_irqsave 101538
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 38415894
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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_cblist_dequeue 101342
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 614863
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 560840
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 658654
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1314519
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 588192
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 548076
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 14229780
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 4901147
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;asm_sysvec_apic_timer_interrupt 102720
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 14440747
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 2015945
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 7066618
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 3470708
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 4147106
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 23956335
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;note_gp_changes;__note_gp_changes;rcu_accelerate_cbs;rcu_segcblist_accelerate 105938
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 1969027
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_segcblist_get_seglen 532194
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 13988864
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 4241201
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;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 544745
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 22845662
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 547789
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;__cond_resched;__schedule;psi_task_switch 539367
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;__fput 8440976
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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 103094
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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;perf_adjust_freq_unthr_context;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 117450
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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;timerqueue_add 115106
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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;file_free_rcu 105744
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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 150509
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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;slab_update_freelist.isra.0 116106
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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 637857
mapgauge.test;irq_enter_rcu 255404
mapgauge.test;irq_exit_rcu 116751
mapgauge.test;native_load_tls 705061
mapgauge.test;os_xsave 661055
mapgauge.test;runtime.(*mheap).allocSpan;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 50636
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;_copy_from_user 32872
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 32872
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 54665
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;psi_task_switch;psi_group_change 48242
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;syscall_exit_to_user_mode 49422
mapgauge.test;runtime.(*mheap).allocSpan;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 57139
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.semrelease1 753259
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 640303
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;error_entry 614744
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;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;x86_pmu_disable 764379
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;runtime.forEachP;runtime.handoffp;runtime.startm;runtime.newm;runtime.allocm;runtime.newobject;runtime.mallocgc;runtime.gcmarknewobject 715841
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.gcMarkDone.func1;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;psi_task_switch;psi_group_change 779573
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stealWork;runtime.runqsteal;runtime.runqgrab;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 770148
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;psi_task_switch;psi_group_change 752648
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain 111634511
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet 3793543
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.putempty;runtime.(*lfstack).push 1522833
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.trygetfull 3030415
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.trygetfull;__irqentry_text_end 174545
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.findObject 16566417
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.gcFlushBgCredit 6766926
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.greyobject 18119988
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.heapBits.next 11350892
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.heapBitsForAddr 15828598
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 1196329
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 673041
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 680587
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;pick_next_task;pick_next_task_fair 601394
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;pick_next_task;pick_next_task_fair;pick_next_entity 596451
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;pick_next_task;pick_next_task_fair;update_curr;__calc_delta 602687
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;pick_next_task;pick_next_task_fair;update_min_vruntime 611386
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;rcu_note_context_switch 610547
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;update_rq_clock 575122
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 1218467
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 627270
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.procyield.abi0 9197047
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.scanstack;runtime.(*unwinder).initAt;runtime.findfunc 640303
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;runtime.pcvalue;runtime.step 686415
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;runtime.pcdatavalue;runtime.pcvalue;runtime.step 740794
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.scanblock 750567
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG 3809670
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;[[vdso]] 596202
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;__vdso_clock_gettime 1198389
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.casfrom_Gscanstatus 602750
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.suspendG;runtime.castogscanstatus 732168
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 3282085
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 603742
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;__task_pid_nr_ns 603074
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;exit_to_user_mode_prepare 604295
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 614770
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 2422022
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 1328002
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]] 5937558
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 609810
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 1818311
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 690358
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;__x64_sys_tgkill 1359122
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 1265579
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;__task_pid_nr_ns 612329
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_sig_info 752974
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 612751
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;__rcu_read_unlock 747329
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 1184195
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;get_task_cred 612586
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 615758
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;memcg_slab_post_alloc_hook 595813
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 612677
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 611870
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 1302450
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;x2apic_send_IPI 786689
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;inc_rlimit_get_ucounts 600927
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 602672
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 1833808
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock 1872973
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock;runtime.findObject 91009
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootBlock;runtime.scanblock;runtime.greyobject;__irqentry_text_end 746740
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;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 156180
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;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;_find_first_bit 111869
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;irqentry_exit;irqentry_exit_to_user_mode 780799
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;runtime.getempty.func1;runtime.(*mheap).allocManual;runtime.(*mheap).allocSpan 679118
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans 259507390
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;error_entry 516326
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;error_return 541358
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.findObject 11557448
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.findObject;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode 518854
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock 96023840
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markrootSpans;runtime.scanblock;runtime.findObject 67791506
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_reschedule_ipi;sysvec_reschedule_ipi;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;collect_signal 766167
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.scanblock 10015767
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject 709799888
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;__irqentry_text_end 1327446
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_exc_page_fault 756291
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 2125198
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;native_flush_tlb_one_user 746286
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;sched_ttwu_pending;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 760997
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.findObject 444981525
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;hrtimer_wakeup;wake_up_process;try_to_wake_up;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 749394
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject 426109651
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;__irqentry_text_end 727348
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 761506
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;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;_raw_spin_trylock 754904
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;vma_alloc_folio;__folio_alloc;__next_zones_zonelist 757739
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;lock_vma_under_rcu;mas_walk;mtree_range_walk 751869
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;irqentry_exit;irqentry_exit_to_user_mode 760602
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;pick_next_task 675369
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty 2277857
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_throttle_swaprate;blk_cgroup_congested 748600
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;__mem_cgroup_charge;charge_memcg;__count_memcg_events 766780
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;__mem_cgroup_charge;try_charge_memcg 751040
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;lock_vma_under_rcu 737080
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.getempty;sync_regs 639217
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.greyobject;runtime.(*gcWork).put;runtime.putfull;runtime.(*lfstack).push 756229
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next 23927206
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBits.next;runtime.heapBitsForAddr 18874849
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.scanobject;runtime.heapBitsForAddr 124389373
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.wbBufFlush;runtime.wbBufFlush.func1;runtime.wbBufFlush1;runtime.findObject 758382
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;sync_regs 757003
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.pollWork 761887
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.scanobject 10583416
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.gcstopm;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex 756173
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;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_sg_lb_stats 743117
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 746740
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.gogo.abi0 754052
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;dequeue_task;dequeue_task_fair;dequeue_entity;update_cfs_group;reweight_entity 147724
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.goschedImpl;runtime.schedule;runtime.execute 1510506
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;runtime.nanotime1.abi0;[[vdso]] 755425
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.goschedImpl;runtime.schedule;runtime.findRunnable 1494892
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.goschedImpl;runtime.schedule;runtime.findRunnable;runtime.checkTimers 751728
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 756765
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.goschedIfBusy;runtime.mcall;runtime.gosched_m;runtime.goschedImpl;runtime.schedule;runtime.gogo.abi0 752843
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone 9807978
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*activeSweep).end 747950
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*mheap).nextSpanForSweep 747386
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*mheap).nextSpanForSweep;runtime.(*spanSet).pop 6712838
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep 194137627
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__raw_spin_lock_irqsave 762691
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*atomicHeadTailIndex).incTail 758846
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*consistentHeapStats).acquire 780340
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push 964935
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault 211873
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;do_anonymous_page 241390
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;runtime.(*atomicHeadTailIndex).incTail 2997265
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.(*sweepLocked).sweep.(*mheap).freeSpan.func2 746397
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.newMarkBits 748118
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocked).sweep;runtime.newMarkBits;runtime.newArenaMayUnlock 754241
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 1497108
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;runtime.mergeSummaries 757778
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.(*scavengeIndex).free 755936
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 755669
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 731844
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func1;runtime.bgsweep;runtime.sweepone;runtime.(*sweepLocker).tryAcquire 3758453
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.checkTimers 66137
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable 64125
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.mput 80048
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.pidleput;[[vdso]] 110916
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.pidleput;runtime.nanotime1.abi0 88302
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.pidleput;runtime.nanotime1.abi0;[[vdso]] 61093
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.runqsteal 470350
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.stealWork 151380
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.mput;runtime.checkdead 63868
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 85511
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 92985
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 101550
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_get_value_locked 147236
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 93720
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;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr 68599
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;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;update_min_vruntime 90213
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;dequeue_task;dequeue_task_fair;update_cfs_group 50737
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;dequeue_task;dequeue_task_fair;update_cfs_group;reweight_entity;update_curr;__calc_delta 119295
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;dequeue_task;update_cfs_group 109227
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;finish_task_switch.isra.0 754052
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 101373
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 752029
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;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 754052
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;update_blocked_averages;__update_blocked_fair 161563
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;update_blocked_averages;__update_blocked_fair;update_load_avg;__update_load_avg_cfs_rq 77367
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;raw_spin_rq_lock_nested 65018
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_setup;__get_user_nocheck_4 68166
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;syscall_exit_to_user_mode 119331
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;syscall_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return 46513
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;syscall_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return;restore_fpregs_from_fpstate 94676
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;syscall_return_via_sysret 86905
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.unlock2 69688
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).park;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.stealWork 65383
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).run 575597
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).run;runtime.(*scavengerState).init.func2;runtime.(*pageAlloc).scavenge;runtime.systemstack.abi0;runtime.(*pageAlloc).scavenge.func1;runtime.(*pageAlloc).scavengeOne;runtime.madvise.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior 147897
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).run;runtime.(*scavengerState).init.func2;runtime.(*pageAlloc).scavenge;runtime.systemstack.abi0;runtime.(*pageAlloc).scavenge.func1;runtime.(*pageAlloc).scavengeOne;runtime.madvise.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;zap_page_range_single 124538
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).run;runtime.(*scavengerState).init.func2;runtime.(*pageAlloc).scavenge;runtime.systemstack.abi0;runtime.(*pageAlloc).scavenge.func1;runtime.(*pageAlloc).scavengeOne;runtime.madvise.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;zap_page_range_single;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_lruvec_state 139706
mapgauge.test;runtime.goexit.abi0;runtime.gcenable.func2;runtime.bgscavenge;runtime.(*scavengerState).sleep;runtime.modtimer;runtime.doaddtimer;runtime.netpollGenericInit;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_ctl;do_epoll_ctl;ep_insert;kmem_cache_alloc 172077
mapgauge.test;runtime.goexit.abi0;runtime.main;main.main;testing.(*M).Run;testing.runBenchmarks;testing.(*B).runN;runtime.GC;runtime.gcStart;runtime.gcBgMarkStartWorkers;runtime.notetsleepg;runtime.notetsleep_internal;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe 671486
mapgauge.test;runtime.goexit.abi0;runtime.main;main.main;testing.(*M).Run;testing.runBenchmarks;testing.(*B).runN;testing.runBenchmarks.func1;testing.(*B).Run;sync.(*Once).doSlow;testing.(*B).Run.func1;fmt.Fprintf;os.(*File).Write;internal/poll.(*FD).Write;syscall.write;syscall.Syscall;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_write;ksys_write;vfs_write;tty_write;file_tty_write.isra.0;do_tty_write;n_tty_write;do_output_char;pty_write;tty_insert_flip_string_and_push_buffer;queue_work_on;__queue_work;wake_up_process;raw_spin_rq_lock_nested 629204
mapgauge.test;runtime.goexit.abi0;runtime.main;runtime.doInit1;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 609336
mapgauge.test;runtime.goexit.abi0;runtime.main;runtime.doInit1;debug/dwarf.init;runtime.mapassign_fast32;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 620750
mapgauge.test;runtime.goexit.abi0;runtime.main;runtime.doInit1;github.com/cilium/ebpf.init;runtime.newobject;runtime.mallocgc;runtime.heapBitsSetType;runtime.writeHeapBits.flush 647920
mapgauge.test;runtime.goexit.abi0;runtime.main;runtime.doInit1;github.com/cilium/ebpf/internal/sys.init;runtime.mapassign_fast32;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 633651
mapgauge.test;runtime.goexit.abi0;runtime.main;runtime.doInit1;runtime.init.6;runtime.newproc;runtime.systemstack.abi0;runtime.newproc.func1;runtime.wakep;runtime.startm;runtime.newm;runtime.newm1;runtime.newosproc;runtime.retryOnEAGAIN;runtime.clone.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;dup_task_struct;memset_orig 623830
mapgauge.test;runtime.goexit.abi0;runtime.main;runtime.doInit1;unicode.init;unicode.map.init.0;runtime.makemap;runtime.makeBucketArray;runtime.newarray;runtime.mallocgc;runtime.heapBitsSetType;runtime.writeHeapBits.write;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 607167
mapgauge.test;runtime.goexit.abi0;runtime.main;runtime.gcenable;runtime.chanrecv1;runtime.chanrecv;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.stoplockedm;runtime.handoffp;runtime.startm;runtime.newm;runtime.newm1;runtime.newosproc;runtime.retryOnEAGAIN;runtime.clone.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;perf_event_init_task;perf_event_init_context;inherit_task_group.isra.0;inherit_event.isra.0;perf_event_alloc;memset_orig 652846
mapgauge.test;runtime.goexit.abi0;runtime.main;runtime.gcenable;runtime.makechan;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 640303
mapgauge.test;runtime.goexit.abi0;runtime.main;runtime.systemstack.abi0;runtime.main.func1;runtime.newm;runtime.newm1;runtime.rtsigprocmask.abi0;syscall_return_via_sysret 588429
mapgauge.test;runtime.goexit.abi0;runtime.runfinq;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 111664
mapgauge.test;runtime.goexit.abi0;testing.(*B).doBench.func1;testing.(*B).launch;testing.(*B).runN;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1;encoding/binary.Read 1534946
mapgauge.test;runtime.goexit.abi0;testing.(*B).doBench.func1;testing.(*B).launch;testing.(*B).runN;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1;errors.Is 2299753
mapgauge.test;runtime.goexit.abi0;testing.(*B).doBench.func1;testing.(*B).launch;testing.(*B).runN;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo 47223991
mapgauge.test;runtime.goexit.abi0;testing.(*B).doBench.func1;testing.(*B).launch;testing.(*B).runN;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo;asm_sysvec_reschedule_ipi;sysvec_reschedule_ipi;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;handle_signal;x64_setup_rt_frame;fpu__alloc_mathframe 784947
mapgauge.test;runtime.goexit.abi0;testing.(*B).doBench.func1;testing.(*B).launch;testing.(*B).runN;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo;encoding/binary.(*decoder).value 2340166
mapgauge.test;runtime.goexit.abi0;testing.(*B).doBench.func1;testing.(*B).launch;testing.(*B).runN;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo;encoding/binary.Read 87396949
mapgauge.test;runtime.goexit.abi0;testing.(*B).doBench.func1;testing.(*B).launch;testing.(*B).runN;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo;encoding/binary.Read;bufio.(*Reader).Read 10803966
mapgauge.test;runtime.goexit.abi0;testing.(*B).doBench.func1;testing.(*B).launch;testing.(*B).runN;github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries;github.com/EMnify/giraffe/pkg/ebpf/mapga
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment