Skip to content

Instantly share code, notes, and snippets.

@mejedi
Last active January 15, 2024 12:53
Show Gist options
  • Save mejedi/e1a290707dd8d81c0cdced8bb5d1ddc2 to your computer and use it in GitHub Desktop.
Save mejedi/e1a290707dd8d81c0cdced8bb5d1ddc2 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 (3,885,448 samples, 0.01%)</title><rect x="608.0" y="325" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="611.01" y="335.5" ></text>
</g>
<g >
<title>runtime.newstack (2,830,415 samples, 0.01%)</title><rect x="1189.5" y="613" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1192.45" y="623.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (19,427,733 samples, 0.07%)</title><rect x="1170.1" y="373" width="0.8" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1173.13" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (823,654,705 samples, 2.87%)</title><rect x="522.9" y="389" width="33.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="525.91" y="399.5" >en..</text>
</g>
<g >
<title>runtime.slicebytetostring (16,940,494 samples, 0.06%)</title><rect x="589.8" y="293" width="0.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="592.75" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (11,737,024 samples, 0.04%)</title><rect x="206.3" y="309" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="209.28" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (8,420,207,479 samples, 29.30%)</title><rect x="647.0" y="453" width="345.8" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="650.04" y="463.5" >github.com/cilium/ebpf/internal/sys.BPF</text>
</g>
<g >
<title>runtime.sweepone (38,998,725 samples, 0.14%)</title><rect x="504.1" y="549" width="1.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="507.07" y="559.5" ></text>
</g>
<g >
<title>dequeue_entity (9,336,837 samples, 0.03%)</title><rect x="12.7" y="373" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="15.65" y="383.5" ></text>
</g>
<g >
<title>xa_load (62,373,775 samples, 0.22%)</title><rect x="814.0" y="181" width="2.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="816.97" y="191.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (18,612,301 samples, 0.06%)</title><rect x="608.5" y="309" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="611.51" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,517,342 samples, 0.01%)</title><rect x="226.2" y="405" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="229.15" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,652,800 samples, 0.01%)</title><rect x="609.9" y="277" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="612.93" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,898,450 samples, 0.01%)</title><rect x="637.3" y="277" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="640.29" y="287.5" ></text>
</g>
<g >
<title>runtime.efaceeq (5,467,903 samples, 0.02%)</title><rect x="409.7" y="421" width="0.2" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="412.66" y="431.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (4,676,569 samples, 0.02%)</title><rect x="495.3" y="501" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="498.32" y="511.5" ></text>
</g>
<g >
<title>ihold (3,848,007 samples, 0.01%)</title><rect x="838.5" y="293" width="0.2" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="841.53" y="303.5" ></text>
</g>
<g >
<title>__handle_mm_fault (12,373,824 samples, 0.04%)</title><rect x="580.0" y="213" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="583.05" y="223.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (5,273,844 samples, 0.02%)</title><rect x="605.9" y="309" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="608.89" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (43,872,022 samples, 0.15%)</title><rect x="640.6" y="421" width="1.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="643.61" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock (34,473,619 samples, 0.12%)</title><rect x="725.7" y="261" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="728.71" y="271.5" ></text>
</g>
<g >
<title>runtime.preemptone (7,235,159 samples, 0.03%)</title><rect x="16.1" y="533" width="0.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="19.07" y="543.5" ></text>
</g>
<g >
<title>pick_next_task (5,105,723 samples, 0.02%)</title><rect x="13.3" y="405" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="16.33" y="415.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (1,596,897,114 samples, 5.56%)</title><rect x="414.6" y="437" width="65.6" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="417.59" y="447.5" >interna..</text>
</g>
<g >
<title>_raw_spin_lock (11,871,289 samples, 0.04%)</title><rect x="110.4" y="373" width="0.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="113.41" y="383.5" ></text>
</g>
<g >
<title>sched_clock (7,000,576 samples, 0.02%)</title><rect x="129.3" y="277" width="0.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="132.27" y="287.5" ></text>
</g>
<g >
<title>__sys_bpf (8,311,760 samples, 0.03%)</title><rect x="698.3" y="357" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="701.34" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (12,208,756 samples, 0.04%)</title><rect x="211.4" y="341" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="214.39" y="351.5" ></text>
</g>
<g >
<title>mod_memcg_state (10,660,417 samples, 0.04%)</title><rect x="881.0" y="197" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="884.05" y="207.5" ></text>
</g>
<g >
<title>lru_add_fn (4,612,922 samples, 0.02%)</title><rect x="572.0" y="341" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="574.99" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (18,508,997 samples, 0.06%)</title><rect x="588.3" y="277" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="591.27" y="287.5" ></text>
</g>
<g >
<title>runtime.sigreturn__sigaction.abi0 (3,028,739 samples, 0.01%)</title><rect x="1188.8" y="517" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1191.82" y="527.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (4,582,310 samples, 0.02%)</title><rect x="1171.1" y="309" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1174.09" y="319.5" ></text>
</g>
<g >
<title>pick_next_task (7,141,507 samples, 0.02%)</title><rect x="17.4" y="421" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="20.36" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (25,766,767 samples, 0.09%)</title><rect x="61.5" y="437" width="1.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="64.46" y="447.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (11,580,974 samples, 0.04%)</title><rect x="477.9" y="261" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="480.95" y="271.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (3,699,767 samples, 0.01%)</title><rect x="640.5" y="421" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="643.46" y="431.5" ></text>
</g>
<g >
<title>runtime.mcall (3,247,950 samples, 0.01%)</title><rect x="254.0" y="581" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="256.97" y="591.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (3,860,045 samples, 0.01%)</title><rect x="491.3" y="437" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="494.32" y="447.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (3,061,770 samples, 0.01%)</title><rect x="793.6" y="101" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="796.61" y="111.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (4,211,376,870 samples, 14.66%)</title><rect x="993.5" y="421" width="172.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="996.47" y="431.5" >runtime.SetFinalizer</text>
</g>
<g >
<title>wake_up_process (8,557,015 samples, 0.03%)</title><rect x="164.9" y="389" width="0.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="167.92" y="399.5" ></text>
</g>
<g >
<title>update_load_avg (11,281,287 samples, 0.04%)</title><rect x="127.5" y="277" width="0.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="130.54" y="287.5" ></text>
</g>
<g >
<title>rw_verify_area (3,888,244 samples, 0.01%)</title><rect x="479.6" y="293" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="482.56" y="303.5" ></text>
</g>
<g >
<title>mapgauge.test (28,735,047,507 samples, 100.00%)</title><rect x="10.0" y="645" width="1180.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="13.00" y="655.5" >mapgauge.test</text>
</g>
<g >
<title>runtime.memmove (23,966,344 samples, 0.08%)</title><rect x="608.4" y="325" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="611.42" y="335.5" ></text>
</g>
<g >
<title>refill_obj_stock (5,271,564 samples, 0.02%)</title><rect x="882.0" y="229" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="884.99" y="239.5" ></text>
</g>
<g >
<title>runtime.memmove (23,998,205 samples, 0.08%)</title><rect x="579.7" y="293" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="582.73" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,852,771 samples, 0.01%)</title><rect x="585.9" y="277" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="588.89" y="287.5" ></text>
</g>
<g >
<title>allocate_slab (3,804,285 samples, 0.01%)</title><rect x="761.6" y="85" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="764.56" y="95.5" ></text>
</g>
<g >
<title>do_user_addr_fault (81,312,148 samples, 0.28%)</title><rect x="1000.5" y="325" width="3.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1003.53" y="335.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (44,891,682 samples, 0.16%)</title><rect x="907.2" y="309" width="1.9" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="910.22" y="319.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (12,421,188 samples, 0.04%)</title><rect x="454.8" y="245" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="457.83" y="255.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (12,246,652 samples, 0.04%)</title><rect x="490.2" y="453" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="493.19" y="463.5" ></text>
</g>
<g >
<title>irq_exit_rcu (9,671,317 samples, 0.03%)</title><rect x="178.7" y="341" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="181.71" y="351.5" ></text>
</g>
<g >
<title>__mutex_init (13,156,470 samples, 0.05%)</title><rect x="705.0" y="325" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="707.96" y="335.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,044,972 samples, 0.01%)</title><rect x="206.6" y="213" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="209.57" y="223.5" ></text>
</g>
<g >
<title>exc_page_fault (95,362,533 samples, 0.33%)</title><rect x="627.7" y="437" width="3.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="630.66" y="447.5" ></text>
</g>
<g >
<title>__slab_free (4,333,034 samples, 0.02%)</title><rect x="238.5" y="421" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="241.50" y="431.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,136,763 samples, 0.01%)</title><rect x="1182.8" y="453" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1185.80" y="463.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (3,999,544 samples, 0.01%)</title><rect x="202.6" y="309" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="205.63" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (13,004,661 samples, 0.05%)</title><rect x="1159.0" y="341" width="0.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1162.02" y="351.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (132,071,709 samples, 0.46%)</title><rect x="549.8" y="261" width="5.4" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="552.79" y="271.5" ></text>
</g>
<g >
<title>rmqueue (6,930,208 samples, 0.02%)</title><rect x="1187.2" y="325" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1190.18" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (15,167,275 samples, 0.05%)</title><rect x="1180.4" y="325" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1183.37" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (11,561,972 samples, 0.04%)</title><rect x="1169.7" y="373" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1172.66" y="383.5" ></text>
</g>
<g >
<title>runtime.wirep (6,168,451 samples, 0.02%)</title><rect x="659.2" y="389" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="662.17" y="399.5" ></text>
</g>
<g >
<title>cache_from_obj (5,891,195 samples, 0.02%)</title><rect x="158.9" y="229" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="161.87" y="239.5" ></text>
</g>
<g >
<title>do_wp_page (14,578,194 samples, 0.05%)</title><rect x="600.6" y="197" width="0.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="603.60" y="207.5" ></text>
</g>
<g >
<title>rcu_core_si (8,702,953 samples, 0.03%)</title><rect x="94.4" y="325" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="97.40" y="335.5" ></text>
</g>
<g >
<title>irq_exit_rcu (29,950,005 samples, 0.10%)</title><rect x="93.2" y="357" width="1.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="96.17" y="367.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,829,843 samples, 0.01%)</title><rect x="1186.1" y="389" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1189.08" y="399.5" ></text>
</g>
<g >
<title>runtime.memhash64 (3,030,711 samples, 0.01%)</title><rect x="608.2" y="309" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="611.23" y="319.5" ></text>
</g>
<g >
<title>syscall.pread (3,090,970 samples, 0.01%)</title><rect x="589.3" y="229" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="592.31" y="239.5" ></text>
</g>
<g >
<title>__send_signal_locked (5,927,376 samples, 0.02%)</title><rect x="265.1" y="373" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="268.10" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (13,659,768,230 samples, 47.54%)</title><rect x="615.6" y="517" width="561.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="618.64" y="527.5" >github.com/cilium/ebpf.NewMapWithOptions</text>
</g>
<g >
<title>rcu_core_si (2,882,018 samples, 0.01%)</title><rect x="249.4" y="357" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="252.40" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (15,923,966 samples, 0.06%)</title><rect x="1180.4" y="357" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1183.37" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,402,522 samples, 0.01%)</title><rect x="376.1" y="437" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="379.09" y="447.5" ></text>
</g>
<g >
<title>rcu_core_si (5,141,007 samples, 0.02%)</title><rect x="227.6" y="341" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="230.63" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,186,275 samples, 0.01%)</title><rect x="232.3" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="235.32" y="431.5" ></text>
</g>
<g >
<title>anon_inode_getfd (13,144,814 samples, 0.05%)</title><rect x="709.3" y="325" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="712.29" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (17,814,621 samples, 0.06%)</title><rect x="808.5" y="197" width="0.8" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="811.52" y="207.5" ></text>
</g>
<g >
<title>runtime.makeslicecopy (6,171,432 samples, 0.02%)</title><rect x="594.3" y="309" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="597.33" y="319.5" ></text>
</g>
<g >
<title>clockevents_program_event (2,709,022 samples, 0.01%)</title><rect x="16.6" y="405" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="19.61" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (3,111,850 samples, 0.01%)</title><rect x="592.9" y="165" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="595.93" y="175.5" ></text>
</g>
<g >
<title>rcu_do_batch (8,806,063 samples, 0.03%)</title><rect x="67.8" y="309" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="70.76" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (20,367,624 samples, 0.07%)</title><rect x="566.6" y="437" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="569.59" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (306,882,386 samples, 1.07%)</title><rect x="152.3" y="373" width="12.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="155.31" y="383.5" ></text>
</g>
<g >
<title>runtime.markroot (581,294,766 samples, 2.02%)</title><rect x="262.6" y="549" width="23.8" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="265.56" y="559.5" >r..</text>
</g>
<g >
<title>node_tag_clear (9,084,301 samples, 0.03%)</title><rect x="919.3" y="261" width="0.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="922.34" y="271.5" ></text>
</g>
<g >
<title>irqentry_exit (10,043,942 samples, 0.03%)</title><rect x="631.1" y="421" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="634.14" y="431.5" ></text>
</g>
<g >
<title>get_any_partial (5,207,044 samples, 0.02%)</title><rect x="787.9" y="197" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="790.91" y="207.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (6,186,467 samples, 0.02%)</title><rect x="798.5" y="213" width="0.2" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="801.48" y="223.5" ></text>
</g>
<g >
<title>kmem_cache_free (14,076,135 samples, 0.05%)</title><rect x="93.6" y="245" width="0.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="96.56" y="255.5" ></text>
</g>
<g >
<title>__radix_tree_replace (15,041,483 samples, 0.05%)</title><rect x="918.7" y="261" width="0.6" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="921.66" y="271.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,973,922 samples, 0.01%)</title><rect x="641.9" y="309" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="644.88" y="319.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (68,559,155 samples, 0.24%)</title><rect x="176.3" y="389" width="2.8" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="179.31" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14,534,094 samples, 0.05%)</title><rect x="178.5" y="357" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="181.51" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (4,682,474 samples, 0.02%)</title><rect x="557.1" y="325" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="560.12" y="335.5" ></text>
</g>
<g >
<title>exit_mm (80,035,313 samples, 0.28%)</title><rect x="36.7" y="485" width="3.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="39.66" y="495.5" ></text>
</g>
<g >
<title>__folio_alloc (3,051,970 samples, 0.01%)</title><rect x="601.7" y="197" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="604.67" y="207.5" ></text>
</g>
<g >
<title>runtime.scanobject (3,804,290 samples, 0.01%)</title><rect x="490.5" y="357" width="0.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="493.54" y="367.5" ></text>
</g>
<g >
<title>syscall.read (827,507,536 samples, 2.88%)</title><rect x="522.8" y="437" width="34.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="525.79" y="447.5" >sy..</text>
</g>
<g >
<title>runtime.gcBgMarkWorker.func2 (2,720,580,615 samples, 9.47%)</title><rect x="254.1" y="581" width="111.7" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="257.11" y="591.5" >runtime.gcBgM..</text>
</g>
<g >
<title>runtime.nanotime1.abi0 (2,793,957 samples, 0.01%)</title><rect x="15.7" y="549" width="0.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="18.73" y="559.5" ></text>
</g>
<g >
<title>kmem_cache_free (5,883,877 samples, 0.02%)</title><rect x="236.6" y="277" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="239.59" y="287.5" ></text>
</g>
<g >
<title>clear_page_erms (3,873,172 samples, 0.01%)</title><rect x="1169.8" y="213" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1172.75" y="223.5" ></text>
</g>
<g >
<title>__alloc_pages (3,067,912 samples, 0.01%)</title><rect x="761.6" y="69" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="764.56" y="79.5" ></text>
</g>
<g >
<title>vfs_read (7,739,615 samples, 0.03%)</title><rect x="587.4" y="117" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="590.38" y="127.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,976,577 samples, 0.02%)</title><rect x="612.1" y="197" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="615.11" y="207.5" ></text>
</g>
<g >
<title>place_entity (4,492,587 samples, 0.02%)</title><rect x="127.2" y="277" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="130.15" y="287.5" ></text>
</g>
<g >
<title>tick_sched_timer (4,644,109 samples, 0.02%)</title><rect x="1158.6" y="261" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1161.61" y="271.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,917,507 samples, 0.01%)</title><rect x="61.3" y="373" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="64.34" y="383.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (125,043,760 samples, 0.44%)</title><rect x="1177.6" y="485" width="5.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1180.60" y="495.5" ></text>
</g>
<g >
<title>__send_signal_locked (3,083,221 samples, 0.01%)</title><rect x="16.1" y="389" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="19.11" y="399.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (3,034,935 samples, 0.01%)</title><rect x="497.5" y="357" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="500.51" y="367.5" ></text>
</g>
<g >
<title>runtime.gopark (6,383,071 samples, 0.02%)</title><rect x="365.9" y="581" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="368.89" y="591.5" ></text>
</g>
<g >
<title>runtime.scanobject (3,023,435 samples, 0.01%)</title><rect x="1171.2" y="293" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1174.15" y="303.5" ></text>
</g>
<g >
<title>update_process_times (3,367,332 samples, 0.01%)</title><rect x="152.4" y="277" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="155.39" y="287.5" ></text>
</g>
<g >
<title>alloc_pages (5,456,308 samples, 0.02%)</title><rect x="838.0" y="181" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="840.95" y="191.5" ></text>
</g>
<g >
<title>get_random_u32 (4,571,938 samples, 0.02%)</title><rect x="865.1" y="149" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="868.07" y="159.5" ></text>
</g>
<g >
<title>syscall.Syscall (8,375,058,756 samples, 29.15%)</title><rect x="648.9" y="421" width="343.9" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="651.89" y="431.5" >syscall.Syscall</text>
</g>
<g >
<title>memset_orig (3,047,580 samples, 0.01%)</title><rect x="921.0" y="309" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="923.98" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (9,297,852 samples, 0.03%)</title><rect x="587.4" y="149" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="590.38" y="159.5" ></text>
</g>
<g >
<title>exc_page_fault (3,852,771 samples, 0.01%)</title><rect x="585.9" y="261" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="588.89" y="271.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (4,628,430 samples, 0.02%)</title><rect x="411.2" y="453" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="414.22" y="463.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (6,186,029 samples, 0.02%)</title><rect x="488.6" y="357" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="491.57" y="367.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (10,641,022 samples, 0.04%)</title><rect x="209.4" y="341" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="212.39" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,408,039,045 samples, 22.30%)</title><rect x="696.4" y="373" width="263.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="699.42" y="383.5" >do_syscall_64</text>
</g>
<g >
<title>mod_objcg_state (27,450,958 samples, 0.10%)</title><rect x="802.2" y="197" width="1.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="805.22" y="207.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (16,644,978 samples, 0.06%)</title><rect x="908.2" y="293" width="0.6" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="911.16" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock (30,489,863 samples, 0.11%)</title><rect x="834.2" y="277" width="1.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="837.22" y="287.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,655,209 samples, 0.02%)</title><rect x="609.1" y="181" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="612.05" y="191.5" ></text>
</g>
<g >
<title>put_pid (2,628,554 samples, 0.01%)</title><rect x="252.0" y="453" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="255.03" y="463.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (4,518,665 samples, 0.02%)</title><rect x="562.9" y="469" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="565.87" y="479.5" ></text>
</g>
<g >
<title>do_wp_page (11,640,285 samples, 0.04%)</title><rect x="611.9" y="229" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="614.92" y="239.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (11,932,730 samples, 0.04%)</title><rect x="1158.4" y="293" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1161.40" y="303.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (54,927,958 samples, 0.19%)</title><rect x="144.6" y="277" width="2.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="147.61" y="287.5" ></text>
</g>
<g >
<title>handle_mm_fault (13,948,075 samples, 0.05%)</title><rect x="582.1" y="245" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="585.05" y="255.5" ></text>
</g>
<g >
<title>capable (227,273,335 samples, 0.79%)</title><rect x="896.2" y="309" width="9.3" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="899.16" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (4,351,218,627 samples, 15.14%)</title><rect x="992.9" y="437" width="178.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="995.94" y="447.5" >github.com/cilium/ebpf/..</text>
</g>
<g >
<title>__handle_mm_fault (3,111,850 samples, 0.01%)</title><rect x="592.9" y="245" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="595.93" y="255.5" ></text>
</g>
<g >
<title>__queue_work (10,067,056 samples, 0.04%)</title><rect x="89.6" y="405" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="92.61" y="415.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (7,531,651 samples, 0.03%)</title><rect x="565.0" y="517" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="567.98" y="527.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5,465,824 samples, 0.02%)</title><rect x="557.1" y="357" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="560.08" y="367.5" ></text>
</g>
<g >
<title>mmap_region (6,021,135 samples, 0.02%)</title><rect x="1004.8" y="149" width="0.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="1007.84" y="159.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (3,104,496 samples, 0.01%)</title><rect x="217.2" y="389" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="220.23" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (4,614,780 samples, 0.02%)</title><rect x="1175.1" y="469" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1178.14" y="479.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (20,820,882 samples, 0.07%)</title><rect x="810.5" y="181" width="0.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="813.49" y="191.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,095,222 samples, 0.01%)</title><rect x="149.6" y="389" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="152.63" y="399.5" ></text>
</g>
<g >
<title>get_partial_node.part.0 (3,090,033 samples, 0.01%)</title><rect x="788.1" y="197" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="791.12" y="207.5" ></text>
</g>
<g >
<title>available_idle_cpu (3,897,834 samples, 0.01%)</title><rect x="124.8" y="309" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="127.77" y="319.5" ></text>
</g>
<g >
<title>release_pages (42,940,115 samples, 0.15%)</title><rect x="38.1" y="293" width="1.8" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="41.09" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (301,643,706 samples, 1.05%)</title><rect x="152.5" y="357" width="12.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="155.53" y="367.5" ></text>
</g>
<g >
<title>rcu_core_si (9,031,775 samples, 0.03%)</title><rect x="178.7" y="293" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="181.72" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.unmarshalBtfType (3,088,676 samples, 0.01%)</title><rect x="587.0" y="293" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="590.03" y="303.5" ></text>
</g>
<g >
<title>runtime.findObject (22,417,765 samples, 0.08%)</title><rect x="260.1" y="549" width="0.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="263.09" y="559.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,751,185 samples, 0.04%)</title><rect x="766.8" y="197" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="769.78" y="207.5" ></text>
</g>
<g >
<title>runtime.stopm (4,860,690 samples, 0.02%)</title><rect x="366.0" y="501" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="368.95" y="511.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (3,764,740 samples, 0.01%)</title><rect x="15.1" y="549" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="18.06" y="559.5" ></text>
</g>
<g >
<title>__folio_alloc (3,005,948 samples, 0.01%)</title><rect x="603.1" y="213" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="606.10" y="223.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (3,031,502 samples, 0.01%)</title><rect x="1180.1" y="421" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1183.12" y="431.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (9,119,321 samples, 0.03%)</title><rect x="1004.7" y="197" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1007.75" y="207.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (4,607,399 samples, 0.02%)</title><rect x="637.5" y="133" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="640.48" y="143.5" ></text>
</g>
<g >
<title>enqueue_task (87,933,220 samples, 0.31%)</title><rect x="126.0" y="325" width="3.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="129.04" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9,894,050 samples, 0.03%)</title><rect x="1004.7" y="245" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1007.72" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,914,177 samples, 0.01%)</title><rect x="376.1" y="421" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="379.11" y="431.5" ></text>
</g>
<g >
<title>cache_from_obj (5,480,805 samples, 0.02%)</title><rect x="193.4" y="389" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="196.44" y="399.5" ></text>
</g>
<g >
<title>runtime.suspendG (46,883,909 samples, 0.16%)</title><rect x="263.6" y="517" width="1.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="266.62" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (31,009,221 samples, 0.11%)</title><rect x="68.1" y="437" width="1.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="71.12" y="447.5" ></text>
</g>
<g >
<title>__alloc_pages (4,654,765 samples, 0.02%)</title><rect x="582.4" y="133" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="585.40" y="143.5" ></text>
</g>
<g >
<title>exc_page_fault (3,112,541 samples, 0.01%)</title><rect x="608.0" y="309" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="611.04" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,982,682 samples, 0.02%)</title><rect x="251.7" y="421" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="254.75" y="431.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (2,672,746 samples, 0.01%)</title><rect x="193.2" y="389" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="196.18" y="399.5" ></text>
</g>
<g >
<title>allocate_slab (51,720,013 samples, 0.18%)</title><rect x="745.7" y="149" width="2.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="748.68" y="159.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,920,409 samples, 0.01%)</title><rect x="234.2" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="237.19" y="415.5" ></text>
</g>
<g >
<title>enqueue_task (2,814,543 samples, 0.01%)</title><rect x="1158.5" y="197" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1161.50" y="207.5" ></text>
</g>
<g >
<title>__free_slab (4,521,047 samples, 0.02%)</title><rect x="245.2" y="325" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="248.20" y="335.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (3,074,809 samples, 0.01%)</title><rect x="637.5" y="101" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="640.51" y="111.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (7,709,125 samples, 0.03%)</title><rect x="398.2" y="469" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="401.22" y="479.5" ></text>
</g>
<g >
<title>idr_remove (8,312,611 samples, 0.03%)</title><rect x="166.6" y="421" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="169.65" y="431.5" ></text>
</g>
<g >
<title>__do_softirq (4,656,191 samples, 0.02%)</title><rect x="245.0" y="325" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="247.98" y="335.5" ></text>
</g>
<g >
<title>mntget (40,656,863 samples, 0.14%)</title><rect x="825.5" y="261" width="1.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="828.47" y="271.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,288,119 samples, 0.02%)</title><rect x="603.1" y="309" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="606.07" y="319.5" ></text>
</g>
<g >
<title>sched_clock_cpu (63,924,914 samples, 0.22%)</title><rect x="144.4" y="325" width="2.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="147.37" y="335.5" ></text>
</g>
<g >
<title>rcu_core_si (2,877,287 samples, 0.01%)</title><rect x="217.8" y="293" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="220.80" y="303.5" ></text>
</g>
<g >
<title>runtime.deferprocStack (12,316,573 samples, 0.04%)</title><rect x="1173.7" y="485" width="0.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1176.66" y="495.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (2,942,162 samples, 0.01%)</title><rect x="68.0" y="293" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="71.00" y="303.5" ></text>
</g>
<g >
<title>array_map_free_timers (9,007,654 samples, 0.03%)</title><rect x="85.4" y="421" width="0.4" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="88.41" y="431.5" ></text>
</g>
<g >
<title>sched_clock_cpu (8,440,725 samples, 0.03%)</title><rect x="129.2" y="293" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="132.23" y="303.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (5,572,134 samples, 0.02%)</title><rect x="12.2" y="437" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="15.19" y="447.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (41,736,619 samples, 0.15%)</title><rect x="139.7" y="293" width="1.8" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="142.74" y="303.5" ></text>
</g>
<g >
<title>mntput (29,778,800 samples, 0.10%)</title><rect x="249.7" y="453" width="1.3" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="252.74" y="463.5" ></text>
</g>
<g >
<title>memset_orig (10,004,588 samples, 0.03%)</title><rect x="794.4" y="133" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="797.36" y="143.5" ></text>
</g>
<g >
<title>bpf_map_release (2,229,271,151 samples, 7.76%)</title><rect x="75.9" y="437" width="91.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="78.86" y="447.5" >bpf_map_re..</text>
</g>
<g >
<title>runtime.gcBgMarkWorker (2,728,205,713 samples, 9.49%)</title><rect x="253.8" y="613" width="112.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="256.79" y="623.5" >runtime.gcBgM..</text>
</g>
<g >
<title>do_mmap (9,119,321 samples, 0.03%)</title><rect x="1004.7" y="165" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="1007.75" y="175.5" ></text>
</g>
<g >
<title>__slab_free (3,518,891 samples, 0.01%)</title><rect x="225.5" y="197" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="228.51" y="207.5" ></text>
</g>
<g >
<title>file_free_rcu (9,993,846 samples, 0.03%)</title><rect x="236.4" y="293" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="239.42" y="303.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (7,154,051 samples, 0.02%)</title><rect x="161.0" y="85" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="163.97" y="95.5" ></text>
</g>
<g >
<title>get_any_partial (9,018,819 samples, 0.03%)</title><rect x="754.1" y="197" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="757.06" y="207.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (4,660,069 samples, 0.02%)</title><rect x="704.2" y="325" width="0.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="707.23" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Union).copy (3,110,479 samples, 0.01%)</title><rect x="595.0" y="325" width="0.1" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="597.96" y="335.5" ></text>
</g>
<g >
<title>runtime.typehash (3,868,333 samples, 0.01%)</title><rect x="410.9" y="421" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="413.87" y="431.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (5,275,698 samples, 0.02%)</title><rect x="637.9" y="389" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="640.88" y="399.5" ></text>
</g>
<g >
<title>wp_page_copy (11,640,285 samples, 0.04%)</title><rect x="611.9" y="213" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="614.92" y="223.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,893,155 samples, 0.01%)</title><rect x="592.9" y="309" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="595.89" y="319.5" ></text>
</g>
<g >
<title>strings.LastIndex (19,317,757 samples, 0.07%)</title><rect x="576.5" y="293" width="0.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="579.49" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (50,261,263 samples, 0.17%)</title><rect x="707.1" y="325" width="2.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="710.13" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (10,295,995 samples, 0.04%)</title><rect x="567.0" y="325" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="570.00" y="335.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).pop (8,996,612 samples, 0.03%)</title><rect x="366.9" y="549" width="0.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="369.88" y="559.5" ></text>
</g>
<g >
<title>get_page_from_freelist (20,728,305 samples, 0.07%)</title><rect x="745.7" y="101" width="0.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="748.68" y="111.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (12,124,767 samples, 0.04%)</title><rect x="110.9" y="373" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="113.90" y="383.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,852,771 samples, 0.01%)</title><rect x="585.9" y="181" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="588.89" y="191.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,063,330 samples, 0.01%)</title><rect x="94.5" y="261" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="97.47" y="271.5" ></text>
</g>
<g >
<title>runtime.mallocgc (225,793,899 samples, 0.79%)</title><rect x="482.2" y="469" width="9.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="485.21" y="479.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (3,009,153 samples, 0.01%)</title><rect x="565.4" y="517" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="568.39" y="527.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (3,880,340 samples, 0.01%)</title><rect x="820.4" y="245" width="0.2" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="823.41" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_lock (37,848,439 samples, 0.13%)</title><rect x="150.5" y="389" width="1.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="153.53" y="399.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (641,979,186 samples, 2.23%)</title><rect x="748.5" y="229" width="26.4" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="751.53" y="239.5" >k..</text>
</g>
<g >
<title>rcu_core (7,547,492 samples, 0.03%)</title><rect x="169.9" y="309" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="172.93" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).copy (20,158,901 samples, 0.07%)</title><rect x="591.9" y="325" width="0.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="594.91" y="335.5" ></text>
</g>
<g >
<title>runtime.gosched_m (2,994,023 samples, 0.01%)</title><rect x="366.1" y="549" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="369.15" y="559.5" ></text>
</g>
<g >
<title>runtime.mapassign_faststr (67,932,913 samples, 0.24%)</title><rect x="610.1" y="341" width="2.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="613.14" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (3,121,890 samples, 0.01%)</title><rect x="637.3" y="133" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="640.32" y="143.5" ></text>
</g>
<g >
<title>__do_softirq (5,959,716 samples, 0.02%)</title><rect x="247.1" y="341" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="250.15" y="351.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,702,953 samples, 0.03%)</title><rect x="94.4" y="373" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="97.40" y="383.5" ></text>
</g>
<g >
<title>testing.(*M).Run (2,590,285 samples, 0.01%)</title><rect x="376.3" y="581" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="379.28" y="591.5" ></text>
</g>
<g >
<title>handle_pte_fault (60,145,302 samples, 0.21%)</title><rect x="571.5" y="421" width="2.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="574.48" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (24,608,646 samples, 0.09%)</title><rect x="604.7" y="261" width="1.0" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="607.72" y="271.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (8,495,652 samples, 0.03%)</title><rect x="772.1" y="181" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="775.06" y="191.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (26,519,969 samples, 0.09%)</title><rect x="206.8" y="373" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="209.76" y="383.5" ></text>
</g>
<g >
<title>do_check_common (4,448,407 samples, 0.02%)</title><rect x="613.2" y="229" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="616.18" y="239.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (9,265,169 samples, 0.03%)</title><rect x="1001.4" y="213" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1004.43" y="223.5" ></text>
</g>
<g >
<title>sched_clock (2,789,503 samples, 0.01%)</title><rect x="147.1" y="325" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="150.07" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (3,968,948 samples, 0.01%)</title><rect x="1173.5" y="485" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1176.49" y="495.5" ></text>
</g>
<g >
<title>fd_install (42,213,583 samples, 0.15%)</title><rect x="905.5" y="309" width="1.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="908.49" y="319.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (3,107,683 samples, 0.01%)</title><rect x="37.9" y="309" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="40.86" y="319.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (3,091,420 samples, 0.01%)</title><rect x="508.4" y="501" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="511.43" y="511.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (3,082,528 samples, 0.01%)</title><rect x="748.1" y="197" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="751.09" y="207.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (173,661,842 samples, 0.60%)</title><rect x="548.8" y="277" width="7.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="551.76" y="287.5" ></text>
</g>
<g >
<title>rcu_core_si (298,761,686 samples, 1.04%)</title><rect x="152.5" y="309" width="12.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="155.53" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (4,564,100 samples, 0.02%)</title><rect x="794.1" y="69" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="797.08" y="79.5" ></text>
</g>
<g >
<title>_copy_from_user (9,339,513 samples, 0.03%)</title><rect x="926.5" y="341" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="929.55" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (18,372,986 samples, 0.06%)</title><rect x="600.5" y="277" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="603.50" y="287.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (13,991,006 samples, 0.05%)</title><rect x="882.2" y="245" width="0.6" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="885.24" y="255.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (62,284,352 samples, 0.22%)</title><rect x="518.7" y="469" width="2.6" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="521.71" y="479.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (6,892,270 samples, 0.02%)</title><rect x="188.8" y="341" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="191.75" y="351.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,652,800 samples, 0.01%)</title><rect x="609.9" y="293" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="612.93" y="303.5" ></text>
</g>
<g >
<title>runtime.entersyscall (97,617,385 samples, 0.34%)</title><rect x="649.7" y="405" width="4.0" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="652.67" y="415.5" ></text>
</g>
<g >
<title>kmem_cache_free (512,265,631 samples, 1.78%)</title><rect x="193.7" y="389" width="21.0" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="196.67" y="399.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,874,277 samples, 0.01%)</title><rect x="1170.1" y="309" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1173.13" y="319.5" ></text>
</g>
<g >
<title>__cond_resched (12,226,821 samples, 0.04%)</title><rect x="20.4" y="485" width="0.5" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="23.36" y="495.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (10,079,047 samples, 0.04%)</title><rect x="454.9" y="229" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="457.93" y="239.5" ></text>
</g>
<g >
<title>irq_exit_rcu (12,208,756 samples, 0.04%)</title><rect x="211.4" y="325" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="214.39" y="335.5" ></text>
</g>
<g >
<title>iput (193,918,930 samples, 0.67%)</title><rect x="218.0" y="389" width="8.0" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="221.01" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,340,048 samples, 0.02%)</title><rect x="563.6" y="437" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="566.64" y="447.5" ></text>
</g>
<g >
<title>clear_page_erms (112,789,637 samples, 0.39%)</title><rect x="788.9" y="117" width="4.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="791.89" y="127.5" ></text>
</g>
<g >
<title>do_anonymous_page (57,110,564 samples, 0.20%)</title><rect x="571.5" y="405" width="2.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="574.52" y="415.5" ></text>
</g>
<g >
<title>vma_alloc_folio (7,714,169 samples, 0.03%)</title><rect x="1169.7" y="277" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1172.72" y="287.5" ></text>
</g>
<g >
<title>do_user_addr_fault (10,799,300 samples, 0.04%)</title><rect x="1169.7" y="357" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1172.66" y="367.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (13,919,090 samples, 0.05%)</title><rect x="38.8" y="245" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="41.78" y="255.5" ></text>
</g>
<g >
<title>irqentry_exit (10,794,109 samples, 0.04%)</title><rect x="574.0" y="469" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="577.05" y="479.5" ></text>
</g>
<g >
<title>send_signal_locked (3,083,221 samples, 0.01%)</title><rect x="16.1" y="405" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="19.11" y="415.5" ></text>
</g>
<g >
<title>__handle_mm_fault (11,640,285 samples, 0.04%)</title><rect x="611.9" y="261" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="614.92" y="271.5" ></text>
</g>
<g >
<title>runtime.makeslice (132,062,724 samples, 0.46%)</title><rect x="558.5" y="501" width="5.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="561.47" y="511.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (206,838,047 samples, 0.72%)</title><rect x="95.2" y="389" width="8.5" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="98.18" y="399.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,656,191 samples, 0.02%)</title><rect x="245.0" y="389" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="247.98" y="399.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (45,991,895 samples, 0.16%)</title><rect x="38.1" y="325" width="1.9" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="41.06" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8,553,141 samples, 0.03%)</title><rect x="557.0" y="405" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="559.99" y="415.5" ></text>
</g>
<g >
<title>_get_random_bytes (3,881,529 samples, 0.01%)</title><rect x="796.0" y="117" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="799.02" y="127.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,964,053 samples, 0.01%)</title><rect x="615.1" y="341" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="618.15" y="351.5" ></text>
</g>
<g >
<title>consume_obj_stock (4,635,543 samples, 0.02%)</title><rect x="764.8" y="213" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="767.80" y="223.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (130,629,443 samples, 0.45%)</title><rect x="866.7" y="229" width="5.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="869.73" y="239.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (136,380,314 samples, 0.47%)</title><rect x="62.5" y="437" width="5.6" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="65.52" y="447.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (472,703,194 samples, 1.65%)</title><rect x="383.6" y="485" width="19.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="386.64" y="495.5" ></text>
</g>
<g >
<title>sched_clock (7,004,507 samples, 0.02%)</title><rect x="188.8" y="357" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="191.75" y="367.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (6,955,370 samples, 0.02%)</title><rect x="878.3" y="197" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="881.30" y="207.5" ></text>
</g>
<g >
<title>runtime.lock2 (36,549,097 samples, 0.13%)</title><rect x="1161.7" y="357" width="1.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1164.71" y="367.5" ></text>
</g>
<g >
<title>refill_obj_stock (5,473,357 samples, 0.02%)</title><rect x="881.5" y="213" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="884.52" y="223.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (3,091,924 samples, 0.01%)</title><rect x="600.7" y="149" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="603.72" y="159.5" ></text>
</g>
<g >
<title>file_free_rcu (5,169,050 samples, 0.02%)</title><rect x="169.9" y="277" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="172.93" y="287.5" ></text>
</g>
<g >
<title>do_anonymous_page (45,245,246 samples, 0.16%)</title><rect x="1185.8" y="405" width="1.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1188.77" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,892,386 samples, 0.01%)</title><rect x="203.7" y="261" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="206.65" y="271.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (11,552,599 samples, 0.04%)</title><rect x="1001.4" y="245" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1004.36" y="255.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (13,247,171 samples, 0.05%)</title><rect x="147.4" y="293" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="150.37" y="303.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,652,800 samples, 0.01%)</title><rect x="609.9" y="261" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="612.93" y="271.5" ></text>
</g>
<g >
<title>kfree (9,643,192 samples, 0.03%)</title><rect x="204.1" y="277" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="207.11" y="287.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (9,084,301 samples, 0.03%)</title><rect x="919.3" y="277" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="922.34" y="287.5" ></text>
</g>
<g >
<title>__folio_alloc (3,121,890 samples, 0.01%)</title><rect x="637.3" y="149" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="640.32" y="159.5" ></text>
</g>
<g >
<title>should_failslab (5,289,827 samples, 0.02%)</title><rect x="777.9" y="229" width="0.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="780.86" y="239.5" ></text>
</g>
<g >
<title>rmqueue_bulk (9,928,617 samples, 0.03%)</title><rect x="630.5" y="245" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="633.47" y="255.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (125,043,760 samples, 0.44%)</title><rect x="1177.6" y="469" width="5.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1180.60" y="479.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (124,282,628 samples, 0.43%)</title><rect x="1177.6" y="453" width="5.1" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1180.63" y="463.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,086,788 samples, 0.01%)</title><rect x="585.9" y="165" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="588.92" y="175.5" ></text>
</g>
<g >
<title>get_random_u32 (4,829,166 samples, 0.02%)</title><rect x="763.0" y="133" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="766.04" y="143.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (5,294,190 samples, 0.02%)</title><rect x="644.0" y="469" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="646.97" y="479.5" ></text>
</g>
<g >
<title>runtime.GC (41,190,364 samples, 0.14%)</title><rect x="504.0" y="565" width="1.7" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="506.98" y="575.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,119,151 samples, 0.01%)</title><rect x="593.7" y="261" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="596.72" y="271.5" ></text>
</g>
<g >
<title>reflect.Value.Field (34,104,847 samples, 0.12%)</title><rect x="515.3" y="485" width="1.4" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="518.30" y="495.5" ></text>
</g>
<g >
<title>delete_node (4,630,176 samples, 0.02%)</title><rect x="919.1" y="245" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="922.09" y="255.5" ></text>
</g>
<g >
<title>__folio_alloc (6,215,756 samples, 0.02%)</title><rect x="614.7" y="389" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="617.71" y="399.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (4,448,407 samples, 0.02%)</title><rect x="613.2" y="341" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="616.18" y="351.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,844,314 samples, 0.01%)</title><rect x="928.1" y="341" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="931.08" y="351.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (2,626,915 samples, 0.01%)</title><rect x="97.6" y="325" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="100.59" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (3,743,553 samples, 0.01%)</title><rect x="755.3" y="117" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="758.29" y="127.5" ></text>
</g>
<g >
<title>runtime.findRunnable (4,227,900 samples, 0.01%)</title><rect x="376.1" y="501" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="379.05" y="511.5" ></text>
</g>
<g >
<title>perf_ctx_disable (44,813,150 samples, 0.16%)</title><rect x="185.1" y="341" width="1.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="188.06" y="351.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (49,380,755 samples, 0.17%)</title><rect x="495.6" y="389" width="2.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="498.61" y="399.5" ></text>
</g>
<g >
<title>rmqueue (22,977,823 samples, 0.08%)</title><rect x="861.2" y="133" width="0.9" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="864.15" y="143.5" ></text>
</g>
<g >
<title>__handle_mm_fault (15,519,158 samples, 0.05%)</title><rect x="608.6" y="245" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="611.61" y="255.5" ></text>
</g>
<g >
<title>runtime.scanstack (2,585,615 samples, 0.01%)</title><rect x="263.5" y="517" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="266.51" y="527.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (3,136,763 samples, 0.01%)</title><rect x="1182.8" y="469" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1185.80" y="479.5" ></text>
</g>
<g >
<title>__do_softirq (2,908,492 samples, 0.01%)</title><rect x="253.3" y="373" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="256.31" y="383.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,791,417 samples, 0.01%)</title><rect x="1004.3" y="341" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1007.31" y="351.5" ></text>
</g>
<g >
<title>runtime.lock2 (30,091,583 samples, 0.10%)</title><rect x="1159.6" y="341" width="1.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1162.55" y="351.5" ></text>
</g>
<g >
<title>rmqueue (7,557,635 samples, 0.03%)</title><rect x="760.6" y="117" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="763.56" y="127.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (7,775,992 samples, 0.03%)</title><rect x="225.7" y="229" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="228.66" y="239.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,018,758 samples, 0.03%)</title><rect x="1169.7" y="325" width="0.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1172.66" y="335.5" ></text>
</g>
<g >
<title>[unknown] (3,849,856 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>mod_memcg_state (2,993,548 samples, 0.01%)</title><rect x="818.4" y="165" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="821.41" y="175.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (14,026,366,778 samples, 48.81%)</title><rect x="613.4" y="549" width="576.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="616.36" y="559.5" >sync.(*Once).doSlow</text>
</g>
<g >
<title>runtime.memmove (6,993,864 samples, 0.02%)</title><rect x="594.6" y="309" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="597.58" y="319.5" ></text>
</g>
<g >
<title>cache_from_obj (4,447,115 samples, 0.02%)</title><rect x="240.3" y="421" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="243.31" y="431.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (8,557,052 samples, 0.03%)</title><rect x="491.5" y="469" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="494.48" y="479.5" ></text>
</g>
<g >
<title>gcWriteBarrier (4,496,567 samples, 0.02%)</title><rect x="603.4" y="341" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="606.38" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.ProgLoad (4,448,407 samples, 0.02%)</title><rect x="613.2" y="405" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="616.18" y="415.5" ></text>
</g>
<g >
<title>exc_page_fault (3,114,965 samples, 0.01%)</title><rect x="594.7" y="277" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="597.74" y="287.5" ></text>
</g>
<g >
<title>wp_page_copy (11,643,072 samples, 0.04%)</title><rect x="608.8" y="197" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="611.77" y="207.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (3,867,437 samples, 0.01%)</title><rect x="1001.6" y="181" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1004.65" y="191.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (6,775,074 samples, 0.02%)</title><rect x="565.6" y="485" width="0.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="568.61" y="495.5" ></text>
</g>
<g >
<title>cap_capable (14,671,827 samples, 0.05%)</title><rect x="889.8" y="277" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="892.83" y="287.5" ></text>
</g>
<g >
<title>enqueue_entity (34,513,328 samples, 0.12%)</title><rect x="126.6" y="293" width="1.4" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text x="129.61" y="303.5" ></text>
</g>
<g >
<title>mntput_no_expire (4,955,527 samples, 0.02%)</title><rect x="234.3" y="437" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="237.31" y="447.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Enum).copy (3,873,238 samples, 0.01%)</title><rect x="591.7" y="325" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="594.75" y="335.5" ></text>
</g>
<g >
<title>memset_orig (8,339,058 samples, 0.03%)</title><rect x="863.5" y="149" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="866.53" y="159.5" ></text>
</g>
<g >
<title>__alloc_pages (3,051,970 samples, 0.01%)</title><rect x="601.7" y="181" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="604.67" y="191.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (6,190,874 samples, 0.02%)</title><rect x="543.6" y="261" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="546.63" y="271.5" ></text>
</g>
<g >
<title>__folio_alloc (30,754,942 samples, 0.11%)</title><rect x="1186.3" y="373" width="1.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1189.30" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,917,507 samples, 0.01%)</title><rect x="61.3" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="64.34" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadKernelSpec (368,542,625 samples, 1.28%)</title><rect x="575.4" y="357" width="15.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="578.44" y="367.5" ></text>
</g>
<g >
<title>idr_remove (217,183,353 samples, 0.76%)</title><rect x="94.8" y="405" width="8.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="97.76" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (15,519,158 samples, 0.05%)</title><rect x="608.6" y="261" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="611.61" y="271.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (3,874,277 samples, 0.01%)</title><rect x="1170.1" y="325" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1173.13" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (30,902,069 samples, 0.11%)</title><rect x="68.1" y="389" width="1.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="71.12" y="399.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).next (4,607,050 samples, 0.02%)</title><rect x="642.4" y="325" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="645.44" y="335.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,903,058 samples, 0.01%)</title><rect x="247.2" y="261" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="250.20" y="271.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (3,101,060 samples, 0.01%)</title><rect x="588.5" y="245" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="591.49" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (12,271,207 samples, 0.04%)</title><rect x="662.2" y="389" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="665.21" y="399.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (4,505,937 samples, 0.02%)</title><rect x="609.7" y="293" width="0.2" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="612.74" y="303.5" ></text>
</g>
<g >
<title>runtime.makeslice (8,504,843 samples, 0.03%)</title><rect x="587.9" y="293" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="590.92" y="303.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (3,090,970 samples, 0.01%)</title><rect x="589.3" y="213" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="592.31" y="223.5" ></text>
</g>
<g >
<title>rcu_core_si (10,150,098 samples, 0.04%)</title><rect x="191.9" y="325" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="194.91" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (3,086,788 samples, 0.01%)</title><rect x="585.9" y="133" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="588.92" y="143.5" ></text>
</g>
<g >
<title>rcu_core (2,927,540 samples, 0.01%)</title><rect x="85.7" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.66" y="319.5" ></text>
</g>
<g >
<title>vma_alloc_folio (37,847,633 samples, 0.13%)</title><rect x="572.3" y="389" width="1.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="575.31" y="399.5" ></text>
</g>
<g >
<title>rcu_core (8,806,063 samples, 0.03%)</title><rect x="67.8" y="325" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="70.76" y="335.5" ></text>
</g>
<g >
<title>error_entry (3,083,786 samples, 0.01%)</title><rect x="10.0" y="517" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.03" y="527.5" ></text>
</g>
<g >
<title>do_tkill (14,760,594 samples, 0.05%)</title><rect x="264.8" y="437" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="267.79" y="447.5" ></text>
</g>
<g >
<title>rcu_core_si (2,908,492 samples, 0.01%)</title><rect x="253.3" y="357" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="256.31" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).fixupMagicFields (2,789,276 samples, 0.01%)</title><rect x="1172.8" y="485" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="1175.78" y="495.5" ></text>
</g>
<g >
<title>native_write_msr (38,481,805 samples, 0.13%)</title><rect x="185.3" y="309" width="1.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="188.32" y="319.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (50,522,934 samples, 0.18%)</title><rect x="734.1" y="213" width="2.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="737.13" y="223.5" ></text>
</g>
<g >
<title>__get_random_u32_below (8,423,987 samples, 0.03%)</title><rect x="795.8" y="149" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="798.84" y="159.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (9,274,943 samples, 0.03%)</title><rect x="418.7" y="277" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="421.66" y="287.5" ></text>
</g>
<g >
<title>runtime.mapassign (36,920,910 samples, 0.13%)</title><rect x="599.8" y="325" width="1.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="602.77" y="335.5" ></text>
</g>
<g >
<title>apparmor_capable (95,820,609 samples, 0.33%)</title><rect x="900.7" y="277" width="3.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="903.69" y="287.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (6,839,991 samples, 0.02%)</title><rect x="11.4" y="501" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="14.41" y="511.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (6,802,030 samples, 0.02%)</title><rect x="731.0" y="229" width="0.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="734.02" y="239.5" ></text>
</g>
<g >
<title>psi_group_change (4,127,778 samples, 0.01%)</title><rect x="17.8" y="405" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="20.78" y="415.5" ></text>
</g>
<g >
<title>memcpy_orig (20,226,126 samples, 0.07%)</title><rect x="475.2" y="213" width="0.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="478.23" y="223.5" ></text>
</g>
<g >
<title>runtime.interequal (6,222,123 samples, 0.02%)</title><rect x="598.7" y="309" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="601.72" y="319.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (87,643,618 samples, 0.31%)</title><rect x="10.8" y="597" width="3.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.83" y="607.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (6,117,853 samples, 0.02%)</title><rect x="565.6" y="469" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="568.63" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (80,023,284 samples, 0.28%)</title><rect x="571.2" y="485" width="3.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="574.24" y="495.5" ></text>
</g>
<g >
<title>__do_softirq (2,882,018 samples, 0.01%)</title><rect x="249.4" y="373" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="252.40" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (95,362,533 samples, 0.33%)</title><rect x="627.7" y="453" width="3.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="630.66" y="463.5" ></text>
</g>
<g >
<title>seq_write (9,332,127 samples, 0.03%)</title><rect x="476.1" y="213" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="479.06" y="223.5" ></text>
</g>
<g >
<title>__vmalloc_area_node (5,456,308 samples, 0.02%)</title><rect x="838.0" y="197" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="840.95" y="207.5" ></text>
</g>
<g >
<title>mntput_no_expire (43,410,189 samples, 0.15%)</title><rect x="232.5" y="421" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="235.53" y="431.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (27,925,125 samples, 0.10%)</title><rect x="409.9" y="437" width="1.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="412.88" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (6,024,665 samples, 0.02%)</title><rect x="16.1" y="469" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="19.09" y="479.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (9,119,321 samples, 0.03%)</title><rect x="1004.7" y="213" width="0.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1007.75" y="223.5" ></text>
</g>
<g >
<title>clear_page_erms (3,100,470 samples, 0.01%)</title><rect x="582.4" y="101" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="585.43" y="111.5" ></text>
</g>
<g >
<title>check_kill_permission (3,154,391 samples, 0.01%)</title><rect x="264.9" y="405" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="267.92" y="415.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3,058,472 samples, 0.01%)</title><rect x="615.0" y="389" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="618.02" y="399.5" ></text>
</g>
<g >
<title>amd_clear_divider (6,746,541 samples, 0.02%)</title><rect x="927.3" y="357" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="930.33" y="367.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (10,713,518 samples, 0.04%)</title><rect x="1172.1" y="469" width="0.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1175.13" y="479.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (57,657,328 samples, 0.20%)</title><rect x="809.4" y="197" width="2.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="812.44" y="207.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,456,232 samples, 0.01%)</title><rect x="375.4" y="453" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="378.45" y="463.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (5,719,027,213 samples, 19.90%)</title><rect x="18.9" y="549" width="234.8" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="21.88" y="559.5" >arch_do_signal_or_restart</text>
</g>
<g >
<title>bpf_map_seq_show (10,712,051 samples, 0.04%)</title><rect x="416.6" y="293" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="419.63" y="303.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (6,186,029 samples, 0.02%)</title><rect x="488.6" y="373" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="491.57" y="383.5" ></text>
</g>
<g >
<title>reflect.Value.NumField (11,510,281 samples, 0.04%)</title><rect x="516.7" y="485" width="0.5" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="519.70" y="495.5" ></text>
</g>
<g >
<title>__radix_tree_preload (11,598,696 samples, 0.04%)</title><rect x="720.0" y="309" width="0.5" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="723.01" y="319.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,018,748 samples, 0.01%)</title><rect x="231.2" y="277" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="234.22" y="287.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,094,160 samples, 0.01%)</title><rect x="592.1" y="229" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="595.10" y="239.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (6,373,974 samples, 0.02%)</title><rect x="172.2" y="421" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="175.25" y="431.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (3,021,135 samples, 0.01%)</title><rect x="228.3" y="357" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="231.28" y="367.5" ></text>
</g>
<g >
<title>rcu_core (2,917,507 samples, 0.01%)</title><rect x="61.3" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="64.34" y="335.5" ></text>
</g>
<g >
<title>file_free_rcu (5,841,704 samples, 0.02%)</title><rect x="206.3" y="213" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="209.31" y="223.5" ></text>
</g>
<g >
<title>btf_put (9,048,668 samples, 0.03%)</title><rect x="166.3" y="421" width="0.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="169.28" y="431.5" ></text>
</g>
<g >
<title>do_tkill (4,924,842 samples, 0.02%)</title><rect x="11.4" y="437" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="14.42" y="447.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (2,986,904 samples, 0.01%)</title><rect x="1182.9" y="421" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1185.93" y="431.5" ></text>
</g>
<g >
<title>handle_mm_fault (12,417,624 samples, 0.04%)</title><rect x="611.9" y="277" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="614.88" y="287.5" ></text>
</g>
<g >
<title>memcpy_orig (3,866,380 samples, 0.01%)</title><rect x="838.2" y="245" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="841.21" y="255.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (4,358,879,850 samples, 15.17%)</title><rect x="992.8" y="453" width="179.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="995.81" y="463.5" >github.com/cilium/ebpf/..</text>
</g>
<g >
<title>runtime.sweepone (238,122,308 samples, 0.83%)</title><rect x="366.3" y="581" width="9.8" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="369.27" y="591.5" ></text>
</g>
<g >
<title>__radix_tree_replace (7,024,293 samples, 0.02%)</title><rect x="910.8" y="277" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="913.84" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (42,339,043 samples, 0.15%)</title><rect x="629.1" y="309" width="1.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="632.14" y="319.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (37,458,086 samples, 0.13%)</title><rect x="238.7" y="421" width="1.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="241.68" y="431.5" ></text>
</g>
<g >
<title>newidle_balance (3,272,091 samples, 0.01%)</title><rect x="13.4" y="373" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="16.36" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,972,501,876 samples, 24.26%)</title><rect x="674.5" y="389" width="286.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="677.55" y="399.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>testing.(*B).doBench.func1 (3,144,315,868 samples, 10.94%)</title><rect x="376.5" y="613" width="129.2" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="379.55" y="623.5" >testing.(*B).doB..</text>
</g>
<g >
<title>irqentry_exit (7,702,216 samples, 0.03%)</title><rect x="1003.9" y="325" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1006.87" y="335.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (5,291,041 samples, 0.02%)</title><rect x="661.9" y="357" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="664.93" y="367.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (6,729,271 samples, 0.02%)</title><rect x="166.0" y="421" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="169.00" y="431.5" ></text>
</g>
<g >
<title>runtime.makeslice (250,674,012 samples, 0.87%)</title><rect x="481.6" y="485" width="10.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="484.63" y="495.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (24,608,646 samples, 0.09%)</title><rect x="604.7" y="229" width="1.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="607.72" y="239.5" ></text>
</g>
<g >
<title>runtime.pcdatavalue1 (3,859,004 samples, 0.01%)</title><rect x="642.6" y="309" width="0.2" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="645.63" y="319.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (3,884,347 samples, 0.01%)</title><rect x="919.8" y="293" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="922.84" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (10,695,211 samples, 0.04%)</title><rect x="191.9" y="405" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="194.89" y="415.5" ></text>
</g>
<g >
<title>runtime.getempty (3,052,229 samples, 0.01%)</title><rect x="640.2" y="277" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="643.18" y="287.5" ></text>
</g>
<g >
<title>exc_page_fault (18,957,573 samples, 0.07%)</title><rect x="1180.4" y="373" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1183.37" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (4,020,776 samples, 0.01%)</title><rect x="176.8" y="357" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="179.80" y="367.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,913,689 samples, 0.01%)</title><rect x="228.8" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="231.76" y="303.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (4,667,457 samples, 0.02%)</title><rect x="774.9" y="229" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="777.89" y="239.5" ></text>
</g>
<g >
<title>new_slab (418,229,391 samples, 1.46%)</title><rect x="848.3" y="213" width="17.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="851.27" y="223.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (11,737,024 samples, 0.04%)</title><rect x="206.3" y="293" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="209.28" y="303.5" ></text>
</g>
<g >
<title>psi_task_switch (47,040,035 samples, 0.16%)</title><rect x="187.1" y="389" width="2.0" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="190.12" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (42,662,714 samples, 0.15%)</title><rect x="488.4" y="453" width="1.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="491.44" y="463.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newProgramWithOptions (923,438,412 samples, 3.21%)</title><rect x="575.4" y="421" width="38.0" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="578.44" y="431.5" >git..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (10,695,211 samples, 0.04%)</title><rect x="191.9" y="389" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="194.89" y="399.5" ></text>
</g>
<g >
<title>get_any_partial (3,875,275 samples, 0.01%)</title><rect x="745.5" y="165" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="748.52" y="175.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,200,828 samples, 0.02%)</title><rect x="612.1" y="149" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="615.14" y="159.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (28,084,313 samples, 0.10%)</title><rect x="224.8" y="341" width="1.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="227.82" y="351.5" ></text>
</g>
<g >
<title>array_map_alloc (5,376,105 samples, 0.02%)</title><rect x="709.8" y="325" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="712.83" y="335.5" ></text>
</g>
<g >
<title>rcu_core_si (7,547,492 samples, 0.03%)</title><rect x="169.9" y="325" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="172.93" y="335.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (6,068,688 samples, 0.02%)</title><rect x="760.6" y="101" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="763.62" y="111.5" ></text>
</g>
<g >
<title>__handle_mm_fault (52,106,730 samples, 0.18%)</title><rect x="1185.6" y="437" width="2.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1188.61" y="447.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (9,119,321 samples, 0.03%)</title><rect x="1004.7" y="181" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1007.75" y="191.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (5,265,712 samples, 0.02%)</title><rect x="523.8" y="309" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="526.82" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (3,456,232 samples, 0.01%)</title><rect x="375.4" y="517" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="378.45" y="527.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (3,101,060 samples, 0.01%)</title><rect x="588.5" y="261" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="591.49" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (19,172,942 samples, 0.07%)</title><rect x="721.3" y="309" width="0.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="724.25" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (9,700,075 samples, 0.03%)</title><rect x="262.2" y="549" width="0.4" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="265.16" y="559.5" ></text>
</g>
<g >
<title>strings.LastIndex (16,707,068 samples, 0.06%)</title><rect x="603.6" y="325" width="0.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="606.56" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (11,715,067 samples, 0.04%)</title><rect x="85.8" y="357" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="88.81" y="367.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,024,841 samples, 0.03%)</title><rect x="207.1" y="229" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="210.13" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (41,149,577 samples, 0.14%)</title><rect x="16.5" y="517" width="1.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="19.49" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,901,033 samples, 0.01%)</title><rect x="539.0" y="261" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="542.00" y="271.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,435,708 samples, 0.02%)</title><rect x="251.8" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="254.77" y="415.5" ></text>
</g>
<g >
<title>should_failslab (6,792,419 samples, 0.02%)</title><rect x="887.1" y="245" width="0.3" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="890.09" y="255.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWriteSrcOnly (146,253,329 samples, 0.51%)</title><rect x="1176.7" y="501" width="6.0" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1179.73" y="511.5" ></text>
</g>
<g >
<title>rcu_core_si (7,872,295 samples, 0.03%)</title><rect x="231.0" y="325" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="234.02" y="335.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (3,871,094 samples, 0.01%)</title><rect x="515.1" y="485" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="518.08" y="495.5" ></text>
</g>
<g >
<title>clear_page_erms (3,051,970 samples, 0.01%)</title><rect x="601.7" y="149" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="604.67" y="159.5" ></text>
</g>
<g >
<title>runtime.deferreturn (48,028,924 samples, 0.17%)</title><rect x="1174.2" y="485" width="1.9" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1177.16" y="495.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,917,507 samples, 0.01%)</title><rect x="61.3" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="64.34" y="415.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9,671,317 samples, 0.03%)</title><rect x="178.7" y="325" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="181.71" y="335.5" ></text>
</g>
<g >
<title>sched_clock (8,044,681 samples, 0.03%)</title><rect x="144.0" y="325" width="0.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="147.04" y="335.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (3,750,745 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.84" y="623.5" ></text>
</g>
<g >
<title>migrate_enable (12,830,213 samples, 0.04%)</title><rect x="555.4" y="261" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="558.37" y="271.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (144,028,084 samples, 0.50%)</title><rect x="742.2" y="197" width="5.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="745.18" y="207.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (12,286,975 samples, 0.04%)</title><rect x="206.3" y="325" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="209.26" y="335.5" ></text>
</g>
<g >
<title>runtime.mallocgc (7,717,230 samples, 0.03%)</title><rect x="577.5" y="293" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="580.51" y="303.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (6,163,107 samples, 0.02%)</title><rect x="165.7" y="405" width="0.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="168.75" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit (4,647,224 samples, 0.02%)</title><rect x="582.6" y="261" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="585.62" y="271.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,891,751 samples, 0.01%)</title><rect x="720.5" y="309" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="723.49" y="319.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (2,606,749,358 samples, 9.07%)</title><rect x="722.5" y="293" width="107.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="725.52" y="303.5" >__anon_inode_..</text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (4,576,893 samples, 0.02%)</title><rect x="1173.1" y="485" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1176.09" y="495.5" ></text>
</g>
<g >
<title>handle_pte_fault (72,136,204 samples, 0.25%)</title><rect x="627.9" y="373" width="3.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="630.92" y="383.5" ></text>
</g>
<g >
<title>clear_page_erms (19,255,811 samples, 0.07%)</title><rect x="1186.4" y="325" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1189.36" y="335.5" ></text>
</g>
<g >
<title>do_wp_page (8,263,449 samples, 0.03%)</title><rect x="615.0" y="421" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="617.96" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (52,284,497 samples, 0.18%)</title><rect x="960.9" y="389" width="2.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="963.87" y="399.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (6,397,362 samples, 0.02%)</title><rect x="188.8" y="309" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="191.77" y="319.5" ></text>
</g>
<g >
<title>security_capable (145,086,263 samples, 0.50%)</title><rect x="899.5" y="293" width="6.0" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="902.53" y="303.5" ></text>
</g>
<g >
<title>runtime.scanobject (1,916,778,105 samples, 6.67%)</title><rect x="286.5" y="549" width="78.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="289.46" y="559.5" >runtime.s..</text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,720,580,615 samples, 9.47%)</title><rect x="254.1" y="597" width="111.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="257.11" y="607.5" >runtime.syste..</text>
</g>
<g >
<title>irq_exit_rcu (27,538,060 samples, 0.10%)</title><rect x="224.8" y="325" width="1.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="227.85" y="335.5" ></text>
</g>
<g >
<title>update_rq_clock (22,486,280 samples, 0.08%)</title><rect x="147.0" y="341" width="0.9" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="150.00" y="351.5" ></text>
</g>
<g >
<title>file_free_rcu (12,842,993 samples, 0.04%)</title><rect x="75.2" y="293" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="78.16" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,456,232 samples, 0.01%)</title><rect x="375.4" y="485" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="378.45" y="495.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,806,063 samples, 0.03%)</title><rect x="67.8" y="373" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="70.76" y="383.5" ></text>
</g>
<g >
<title>call_rcu (2,626,915 samples, 0.01%)</title><rect x="97.6" y="341" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="100.59" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (6,186,029 samples, 0.02%)</title><rect x="488.6" y="389" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="491.57" y="399.5" ></text>
</g>
<g >
<title>rcu_core (7,872,295 samples, 0.03%)</title><rect x="231.0" y="309" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="234.02" y="319.5" ></text>
</g>
<g >
<title>runtime.greyobject (11,354,037 samples, 0.04%)</title><rect x="639.9" y="309" width="0.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="642.87" y="319.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (6,871,462 samples, 0.02%)</title><rect x="926.3" y="325" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="929.27" y="335.5" ></text>
</g>
<g >
<title>runtime.mapassign (95,266,801 samples, 0.33%)</title><rect x="606.2" y="341" width="3.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="609.23" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (37,678,666 samples, 0.13%)</title><rect x="1002.0" y="197" width="1.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1005.00" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,806,063 samples, 0.03%)</title><rect x="67.8" y="421" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="70.76" y="431.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (6,712,899 samples, 0.02%)</title><rect x="16.1" y="517" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="19.09" y="527.5" ></text>
</g>
<g >
<title>psi_task_switch (4,354,556 samples, 0.02%)</title><rect x="13.7" y="405" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="16.70" y="415.5" ></text>
</g>
<g >
<title>bpf_seq_write (31,869,564 samples, 0.11%)</title><rect x="475.1" y="229" width="1.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="478.14" y="239.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (7,769,732 samples, 0.03%)</title><rect x="642.1" y="405" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="645.09" y="415.5" ></text>
</g>
<g >
<title>sysfs_kf_bin_read (3,866,180 samples, 0.01%)</title><rect x="587.5" y="69" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="590.54" y="79.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,215,756 samples, 0.02%)</title><rect x="614.7" y="357" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="617.71" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,121,890 samples, 0.01%)</title><rect x="637.3" y="117" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="640.32" y="127.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (3,804,290 samples, 0.01%)</title><rect x="490.5" y="389" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="493.54" y="399.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (101,422,258 samples, 0.35%)</title><rect x="799.2" y="213" width="4.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="802.18" y="223.5" ></text>
</g>
<g >
<title>__do_softirq (3,999,544 samples, 0.01%)</title><rect x="202.6" y="293" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="205.63" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,917,507 samples, 0.01%)</title><rect x="61.3" y="389" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="64.34" y="399.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (2,868,073 samples, 0.01%)</title><rect x="202.7" y="229" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="205.68" y="239.5" ></text>
</g>
<g >
<title>sched_clock (17,211,791 samples, 0.06%)</title><rect x="147.2" y="309" width="0.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="150.21" y="319.5" ></text>
</g>
<g >
<title>apparmor_capable (24,579,494 samples, 0.09%)</title><rect x="888.8" y="277" width="1.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="891.82" y="287.5" ></text>
</g>
<g >
<title>allocate_slab (215,199,223 samples, 0.75%)</title><rect x="754.5" y="181" width="8.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="757.53" y="191.5" ></text>
</g>
<g >
<title>consume_obj_stock (3,873,587 samples, 0.01%)</title><rect x="809.3" y="197" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="812.28" y="207.5" ></text>
</g>
<g >
<title>__do_softirq (30,902,069 samples, 0.11%)</title><rect x="68.1" y="373" width="1.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="71.12" y="383.5" ></text>
</g>
<g >
<title>runtime.main (6,898,665 samples, 0.02%)</title><rect x="376.3" y="613" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="379.26" y="623.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (1,687,617,036 samples, 5.87%)</title><rect x="411.4" y="485" width="69.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="414.44" y="495.5" >io.Read..</text>
</g>
<g >
<title>file_free_rcu (7,470,830 samples, 0.03%)</title><rect x="211.4" y="229" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="214.41" y="239.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,215,756 samples, 0.02%)</title><rect x="614.7" y="405" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="617.71" y="415.5" ></text>
</g>
<g >
<title>shuffle_freelist (29,431,249 samples, 0.10%)</title><rect x="746.6" y="133" width="1.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="749.60" y="143.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,021,135 samples, 0.01%)</title><rect x="228.3" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="231.28" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (48,179,931 samples, 0.17%)</title><rect x="12.0" y="485" width="2.0" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="14.98" y="495.5" ></text>
</g>
<g >
<title>rcu_core (5,141,007 samples, 0.02%)</title><rect x="227.6" y="325" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="230.63" y="335.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,959,716 samples, 0.02%)</title><rect x="247.1" y="357" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="250.15" y="367.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (3,846,670 samples, 0.01%)</title><rect x="517.2" y="485" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="520.23" y="495.5" ></text>
</g>
<g >
<title>runtime.mallocgc (6,212,860 samples, 0.02%)</title><rect x="593.1" y="293" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="596.05" y="303.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (3,090,970 samples, 0.01%)</title><rect x="589.3" y="277" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="592.31" y="287.5" ></text>
</g>
<g >
<title>get_page_from_freelist (7,650,599 samples, 0.03%)</title><rect x="600.9" y="117" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="603.88" y="127.5" ></text>
</g>
<g >
<title>runtime.mcall (4,455,219 samples, 0.02%)</title><rect x="376.1" y="549" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="379.05" y="559.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (11,715,067 samples, 0.04%)</title><rect x="85.8" y="373" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="88.81" y="383.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (148,295,980 samples, 0.52%)</title><rect x="114.8" y="293" width="6.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="117.79" y="303.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (4,643,916 samples, 0.02%)</title><rect x="997.4" y="405" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1000.43" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (36,120,052 samples, 0.13%)</title><rect x="561.3" y="437" width="1.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="564.32" y="447.5" ></text>
</g>
<g >
<title>array_map_alloc (1,343,039,081 samples, 4.67%)</title><rect x="838.7" y="309" width="55.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="841.69" y="319.5" >array..</text>
</g>
<g >
<title>send_signal_locked (7,166,757 samples, 0.02%)</title><rect x="265.1" y="389" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="268.05" y="399.5" ></text>
</g>
<g >
<title>__folio_alloc (11,824,245 samples, 0.04%)</title><rect x="566.9" y="373" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="569.94" y="383.5" ></text>
</g>
<g >
<title>try_charge_memcg (6,095,732 samples, 0.02%)</title><rect x="881.7" y="213" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="884.74" y="223.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,882,018 samples, 0.01%)</title><rect x="249.4" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="252.40" y="447.5" ></text>
</g>
<g >
<title>error_entry (3,039,169 samples, 0.01%)</title><rect x="1181.1" y="389" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1184.15" y="399.5" ></text>
</g>
<g >
<title>security_bpf_map (8,389,536 samples, 0.03%)</title><rect x="921.1" y="309" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="924.11" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (4,653,628 samples, 0.02%)</title><rect x="1170.1" y="341" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1173.13" y="351.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (4,617,705 samples, 0.02%)</title><rect x="895.5" y="309" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="898.48" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (75,704,611 samples, 0.26%)</title><rect x="1000.7" y="293" width="3.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="1003.68" y="303.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (3,456,861 samples, 0.01%)</title><rect x="127.7" y="261" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="130.73" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (12,486,030 samples, 0.04%)</title><rect x="643.3" y="357" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="646.33" y="367.5" ></text>
</g>
<g >
<title>__do_softirq (2,866,708 samples, 0.01%)</title><rect x="213.3" y="277" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="216.29" y="287.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (12,252,455 samples, 0.04%)</title><rect x="766.3" y="197" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="769.28" y="207.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (3,012,991 samples, 0.01%)</title><rect x="603.4" y="277" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="606.44" y="287.5" ></text>
</g>
<g >
<title>idr_get_free (178,775,298 samples, 0.62%)</title><rect x="911.1" y="277" width="7.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="914.13" y="287.5" ></text>
</g>
<g >
<title>new_slab (219,059,180 samples, 0.76%)</title><rect x="754.5" y="197" width="9.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="757.46" y="207.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,518,891 samples, 0.01%)</title><rect x="225.5" y="213" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="228.51" y="223.5" ></text>
</g>
<g >
<title>perf_ctx_enable (32,288,539 samples, 0.11%)</title><rect x="177.0" y="357" width="1.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="179.97" y="367.5" ></text>
</g>
<g >
<title>encoding/binary.Read (4,625,704 samples, 0.02%)</title><rect x="376.6" y="517" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="379.58" y="527.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,184,366 samples, 0.01%)</title><rect x="263.9" y="485" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="266.92" y="495.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (10,073,567 samples, 0.04%)</title><rect x="587.4" y="181" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="590.38" y="191.5" ></text>
</g>
<g >
<title>runtime.mallocgc (106,932,908 samples, 0.37%)</title><rect x="1167.0" y="405" width="4.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1170.04" y="415.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,959,716 samples, 0.02%)</title><rect x="247.1" y="293" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="250.15" y="303.5" ></text>
</g>
<g >
<title>runtime.park_m (4,455,219 samples, 0.02%)</title><rect x="376.1" y="533" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="379.05" y="543.5" ></text>
</g>
<g >
<title>__do_softirq (10,150,098 samples, 0.04%)</title><rect x="191.9" y="341" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="194.91" y="351.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (3,880,159 samples, 0.01%)</title><rect x="593.1" y="277" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="596.12" y="287.5" ></text>
</g>
<g >
<title>filp_close (329,966,864 samples, 1.15%)</title><rect x="22.0" y="453" width="13.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="25.02" y="463.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,877,287 samples, 0.01%)</title><rect x="217.8" y="341" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="220.80" y="351.5" ></text>
</g>
<g >
<title>gcWriteBarrier (3,791,417 samples, 0.01%)</title><rect x="1004.3" y="357" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1007.31" y="367.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,629,449 samples, 0.02%)</title><rect x="250.8" y="437" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="253.77" y="447.5" ></text>
</g>
<g >
<title>mod_objcg_state (3,874,984 samples, 0.01%)</title><rect x="803.3" y="213" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="806.34" y="223.5" ></text>
</g>
<g >
<title>__alloc_pages (330,846,305 samples, 1.15%)</title><rect x="848.6" y="165" width="13.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="851.58" y="175.5" ></text>
</g>
<g >
<title>mod_objcg_state (3,054,257 samples, 0.01%)</title><rect x="160.6" y="245" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="163.61" y="255.5" ></text>
</g>
<g >
<title>map_create (5,092,462,010 samples, 17.72%)</title><rect x="712.9" y="325" width="209.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="715.90" y="335.5" >map_create</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Struct).copy (21,690,994 samples, 0.08%)</title><rect x="594.1" y="325" width="0.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="597.07" y="335.5" ></text>
</g>
<g >
<title>rcu_core_si (11,737,024 samples, 0.04%)</title><rect x="206.3" y="261" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="209.28" y="271.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (4,085,075,268 samples, 14.22%)</title><rect x="998.6" y="389" width="167.8" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1001.60" y="399.5" >runtime.SetFinalizer...</text>
</g>
<g >
<title>irq_exit_rcu (9,498,918 samples, 0.03%)</title><rect x="209.4" y="325" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="212.43" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock (29,429,901 samples, 0.10%)</title><rect x="823.0" y="245" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="825.98" y="255.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5,318,040 samples, 0.02%)</title><rect x="556.5" y="357" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="559.52" y="367.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (117,377,798 samples, 0.41%)</title><rect x="167.4" y="421" width="4.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="170.41" y="431.5" ></text>
</g>
<g >
<title>llist_add_batch (25,287,126 samples, 0.09%)</title><rect x="142.1" y="325" width="1.1" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="145.12" y="335.5" ></text>
</g>
<g >
<title>__folio_alloc (7,714,169 samples, 0.03%)</title><rect x="1169.7" y="261" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1172.72" y="271.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (1,630,167,418 samples, 5.67%)</title><rect x="413.2" y="469" width="67.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="416.23" y="479.5" >bufio.(..</text>
</g>
<g >
<title>__free_slab (7,549,316 samples, 0.03%)</title><rect x="157.9" y="149" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="160.94" y="159.5" ></text>
</g>
<g >
<title>__d_alloc (982,768,323 samples, 3.42%)</title><rect x="779.8" y="245" width="40.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="782.79" y="255.5" >__d..</text>
</g>
<g >
<title>rcu_core (298,761,686 samples, 1.04%)</title><rect x="152.5" y="293" width="12.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="155.53" y="303.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (3,842,084 samples, 0.01%)</title><rect x="548.6" y="277" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="551.61" y="287.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (88,498,796 samples, 0.31%)</title><rect x="955.8" y="341" width="3.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="958.84" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,726,430 samples, 0.01%)</title><rect x="908.9" y="293" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="911.91" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,067,912 samples, 0.01%)</title><rect x="761.6" y="53" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="764.56" y="63.5" ></text>
</g>
<g >
<title>runtime.findObject (435,099,183 samples, 1.51%)</title><rect x="319.3" y="533" width="17.9" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="322.30" y="543.5" ></text>
</g>
<g >
<title>clear_page_erms (9,112,850 samples, 0.03%)</title><rect x="1180.6" y="213" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1183.62" y="223.5" ></text>
</g>
<g >
<title>x86_pmu_enable (26,579,254 samples, 0.09%)</title><rect x="177.2" y="341" width="1.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="180.20" y="351.5" ></text>
</g>
<g >
<title>runtime.goschedIfBusy (2,994,023 samples, 0.01%)</title><rect x="366.1" y="581" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="369.15" y="591.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (4,924,842 samples, 0.02%)</title><rect x="11.4" y="453" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="14.42" y="463.5" ></text>
</g>
<g >
<title>runtime.getempty (5,308,401 samples, 0.02%)</title><rect x="357.4" y="501" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="360.40" y="511.5" ></text>
</g>
<g >
<title>runtime.nilinterhash (17,464,732 samples, 0.06%)</title><rect x="520.5" y="453" width="0.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="523.55" y="463.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,159,825 samples, 0.01%)</title><rect x="207.6" y="245" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="210.63" y="255.5" ></text>
</g>
<g >
<title>handle_pte_fault (14,578,194 samples, 0.05%)</title><rect x="600.6" y="213" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="603.60" y="223.5" ></text>
</g>
<g >
<title>alloc_file (10,425,393 samples, 0.04%)</title><rect x="723.9" y="277" width="0.5" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="726.93" y="287.5" ></text>
</g>
<g >
<title>check_stack_object (4,625,751 samples, 0.02%)</title><rect x="704.6" y="293" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="707.61" y="303.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (68,231,166 samples, 0.24%)</title><rect x="869.0" y="213" width="2.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="871.98" y="223.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (3,050,128 samples, 0.01%)</title><rect x="1187.8" y="453" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="1190.81" y="463.5" ></text>
</g>
<g >
<title>__update_load_avg_se (9,317,083 samples, 0.03%)</title><rect x="182.6" y="325" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="185.60" y="335.5" ></text>
</g>
<g >
<title>runtime.sigtramp.abi0 (3,786,694 samples, 0.01%)</title><rect x="1188.9" y="517" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1191.95" y="527.5" ></text>
</g>
<g >
<title>__folio_alloc (3,111,850 samples, 0.01%)</title><rect x="592.9" y="181" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="595.93" y="191.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (12,321,041 samples, 0.04%)</title><rect x="586.1" y="261" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="589.11" y="271.5" ></text>
</g>
<g >
<title>madvise_collapse (4,607,399 samples, 0.02%)</title><rect x="637.5" y="149" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="640.48" y="159.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (425,792,702 samples, 1.48%)</title><rect x="626.5" y="469" width="17.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="629.48" y="479.5" ></text>
</g>
<g >
<title>rcu_core (6,435,708 samples, 0.02%)</title><rect x="251.8" y="341" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="254.77" y="351.5" ></text>
</g>
<g >
<title>runtime.(*atomicHeadTailIndex).incTail (2,991,627 samples, 0.01%)</title><rect x="375.6" y="533" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="378.59" y="543.5" ></text>
</g>
<g >
<title>delete_node (12,037,185 samples, 0.04%)</title><rect x="97.2" y="357" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="100.21" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,852,771 samples, 0.01%)</title><rect x="585.9" y="245" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="588.89" y="255.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,094,519 samples, 0.01%)</title><rect x="178.6" y="293" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="181.55" y="303.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (27,538,060 samples, 0.10%)</title><rect x="224.8" y="309" width="1.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="227.85" y="319.5" ></text>
</g>
<g >
<title>strlen (12,240,015 samples, 0.04%)</title><rect x="829.1" y="277" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="832.06" y="287.5" ></text>
</g>
<g >
<title>policy_node (2,991,003 samples, 0.01%)</title><rect x="862.3" y="165" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="865.34" y="175.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1 (3,102,392,724 samples, 10.80%)</title><rect x="376.6" y="533" width="127.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="379.58" y="543.5" >github.com/EMni..</text>
</g>
<g >
<title>rcu_core (3,021,135 samples, 0.01%)</title><rect x="228.3" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="231.28" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (11,824,245 samples, 0.04%)</title><rect x="566.9" y="357" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="569.94" y="367.5" ></text>
</g>
<g >
<title>__count_memcg_events (3,062,208 samples, 0.01%)</title><rect x="1001.1" y="213" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1004.09" y="223.5" ></text>
</g>
<g >
<title>get_page_from_freelist (34,006,428 samples, 0.12%)</title><rect x="572.4" y="341" width="1.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="575.40" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (13,925,174 samples, 0.05%)</title><rect x="580.0" y="245" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="583.02" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (16,287,053 samples, 0.06%)</title><rect x="611.9" y="325" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="614.85" y="335.5" ></text>
</g>
<g >
<title>file_free_rcu (2,940,614 samples, 0.01%)</title><rect x="191.7" y="261" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="194.67" y="271.5" ></text>
</g>
<g >
<title>__alloc_pages (29,236,122 samples, 0.10%)</title><rect x="1186.3" y="357" width="1.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1189.30" y="367.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (7,755,273 samples, 0.03%)</title><rect x="711.4" y="325" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="714.43" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (3,068,407 samples, 0.01%)</title><rect x="540.2" y="277" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="543.24" y="287.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (3,860,045 samples, 0.01%)</title><rect x="491.3" y="389" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="494.32" y="399.5" ></text>
</g>
<g >
<title>rcu_core (2,913,689 samples, 0.01%)</title><rect x="228.8" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="231.76" y="319.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (3,860,045 samples, 0.01%)</title><rect x="491.3" y="373" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="494.32" y="383.5" ></text>
</g>
<g >
<title>radix_tree_node_rcu_free (2,845,235 samples, 0.01%)</title><rect x="69.0" y="309" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="72.03" y="319.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (29,886,209 samples, 0.10%)</title><rect x="640.9" y="405" width="1.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="643.87" y="415.5" ></text>
</g>
<g >
<title>runtime.stopm (3,402,522 samples, 0.01%)</title><rect x="376.1" y="485" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="379.09" y="495.5" ></text>
</g>
<g >
<title>runtime.callers (9,244,535 samples, 0.03%)</title><rect x="642.4" y="389" width="0.4" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="645.41" y="399.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (183,048,589 samples, 0.64%)</title><rect x="540.4" y="277" width="7.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="543.37" y="287.5" ></text>
</g>
<g >
<title>runtime.gcMarkDone (3,618,193 samples, 0.01%)</title><rect x="253.8" y="597" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="256.79" y="607.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (181,890,072 samples, 0.63%)</title><rect x="404.0" y="469" width="7.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="406.97" y="479.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,091,924 samples, 0.01%)</title><rect x="600.7" y="165" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="603.72" y="175.5" ></text>
</g>
<g >
<title>allocate_slab (8,278,217 samples, 0.03%)</title><rect x="863.0" y="101" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="866.03" y="111.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4,472,644 samples, 0.02%)</title><rect x="263.0" y="501" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="266.04" y="511.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (7,739,615 samples, 0.03%)</title><rect x="587.4" y="133" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="590.38" y="143.5" ></text>
</g>
<g >
<title>__slab_free (4,682,599 samples, 0.02%)</title><rect x="225.2" y="197" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="228.20" y="207.5" ></text>
</g>
<g >
<title>rcu_core (2,866,708 samples, 0.01%)</title><rect x="213.3" y="245" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="216.29" y="255.5" ></text>
</g>
<g >
<title>reflect.Value.Field (94,437,070 samples, 0.33%)</title><rect x="398.5" y="469" width="3.9" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="401.54" y="479.5" ></text>
</g>
<g >
<title>runtime.scanobject (46,844,368 samples, 0.16%)</title><rect x="638.5" y="325" width="1.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="641.50" y="335.5" ></text>
</g>
<g >
<title>runtime.markrootBlock (2,851,873 samples, 0.01%)</title><rect x="265.5" y="533" width="0.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="268.55" y="543.5" ></text>
</g>
<g >
<title>psi_flags_change (2,506,818 samples, 0.01%)</title><rect x="128.3" y="309" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="131.26" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (37,196,631 samples, 0.13%)</title><rect x="636.6" y="421" width="1.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="639.63" y="431.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (3,837,973 samples, 0.01%)</title><rect x="572.0" y="325" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="575.02" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (8,553,141 samples, 0.03%)</title><rect x="557.0" y="389" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="559.99" y="399.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,249,210 samples, 0.01%)</title><rect x="214.4" y="373" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="217.45" y="383.5" ></text>
</g>
<g >
<title>[[vdso]] (2,678,835 samples, 0.01%)</title><rect x="263.7" y="501" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="266.70" y="511.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (591,580,216 samples, 2.06%)</title><rect x="421.9" y="261" width="24.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="424.87" y="271.5" >_..</text>
</g>
<g >
<title>runtime.markrootSpans (488,952,142 samples, 1.70%)</title><rect x="265.7" y="533" width="20.0" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="268.66" y="543.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4,881,972 samples, 0.02%)</title><rect x="14.2" y="517" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="17.22" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,802,233 samples, 0.01%)</title><rect x="563.7" y="309" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="566.70" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (179,541,891 samples, 0.62%)</title><rect x="575.6" y="325" width="7.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="578.63" y="335.5" ></text>
</g>
<g >
<title>__folio_alloc (42,339,043 samples, 0.15%)</title><rect x="629.1" y="325" width="1.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="632.14" y="335.5" ></text>
</g>
<g >
<title>dequeue_task_fair (14,277,667 samples, 0.05%)</title><rect x="12.6" y="389" width="0.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="15.59" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (7,758,613 samples, 0.03%)</title><rect x="837.6" y="181" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="840.64" y="191.5" ></text>
</g>
<g >
<title>__fput (4,935,950,716 samples, 17.18%)</title><rect x="45.4" y="453" width="202.7" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="48.42" y="463.5" >__fput</text>
</g>
<g >
<title>rcu_core (16,452,042 samples, 0.06%)</title><rect x="236.4" y="325" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="239.37" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func2 (24,667,618 samples, 0.09%)</title><rect x="585.9" y="293" width="1.0" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="588.86" y="303.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (3,017,116 samples, 0.01%)</title><rect x="605.8" y="309" width="0.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="608.76" y="319.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (38,787,781 samples, 0.13%)</title><rect x="396.1" y="453" width="1.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="399.09" y="463.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10,150,098 samples, 0.04%)</title><rect x="191.9" y="357" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="194.91" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,985,048 samples, 0.02%)</title><rect x="592.0" y="309" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="595.00" y="319.5" ></text>
</g>
<g >
<title>do_wp_page (11,643,072 samples, 0.04%)</title><rect x="608.8" y="213" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="611.77" y="223.5" ></text>
</g>
<g >
<title>runtime.(*scavengeIndex).alloc (4,607,399 samples, 0.02%)</title><rect x="637.5" y="277" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="640.48" y="287.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,898,450 samples, 0.01%)</title><rect x="637.3" y="197" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="640.29" y="207.5" ></text>
</g>
<g >
<title>update_curr (19,928,992 samples, 0.07%)</title><rect x="180.7" y="341" width="0.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="183.75" y="351.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (15,008,136 samples, 0.05%)</title><rect x="141.5" y="309" width="0.6" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="144.46" y="319.5" ></text>
</g>
<g >
<title>lru_add_fn (4,651,494 samples, 0.02%)</title><rect x="628.6" y="293" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="631.64" y="303.5" ></text>
</g>
<g >
<title>kvmalloc_node (13,214,921 samples, 0.05%)</title><rect x="837.6" y="229" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="840.64" y="239.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,098,186 samples, 0.01%)</title><rect x="1170.1" y="277" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1173.13" y="287.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (7,739,615 samples, 0.03%)</title><rect x="587.4" y="101" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="590.38" y="111.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (11,523,146 samples, 0.04%)</title><rect x="228.4" y="421" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="231.40" y="431.5" ></text>
</g>
<g >
<title>folio_add_lru (11,552,599 samples, 0.04%)</title><rect x="1001.4" y="229" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1004.36" y="239.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (7,739,615 samples, 0.03%)</title><rect x="587.4" y="85" width="0.3" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="590.38" y="95.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (827,507,536 samples, 2.88%)</title><rect x="522.8" y="453" width="34.0" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="525.79" y="463.5" >in..</text>
</g>
<g >
<title>[unknown] (10,807,281 samples, 0.04%)</title><rect x="10.0" y="581" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="591.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).lookup (25,433,836 samples, 0.09%)</title><rect x="584.5" y="277" width="1.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="587.53" y="287.5" ></text>
</g>
<g >
<title>__update_load_avg_se (3,026,840 samples, 0.01%)</title><rect x="127.9" y="261" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="130.88" y="271.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (5,963,039 samples, 0.02%)</title><rect x="69.1" y="309" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="72.15" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mspan).ensureSwept (3,084,173 samples, 0.01%)</title><rect x="1005.2" y="357" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="1008.18" y="367.5" ></text>
</g>
<g >
<title>file_free_rcu (2,917,507 samples, 0.01%)</title><rect x="61.3" y="293" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="64.34" y="303.5" ></text>
</g>
<g >
<title>runtime.memmove (21,730,102 samples, 0.08%)</title><rect x="556.8" y="485" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="559.77" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,093,507 samples, 0.01%)</title><rect x="576.2" y="261" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="579.24" y="271.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (9,210,947 samples, 0.03%)</title><rect x="887.4" y="261" width="0.3" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="890.37" y="271.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (128,388,398 samples, 0.45%)</title><rect x="405.9" y="453" width="5.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="408.88" y="463.5" ></text>
</g>
<g >
<title>consume_obj_stock (24,711,210 samples, 0.09%)</title><rect x="773.1" y="197" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="776.08" y="207.5" ></text>
</g>
<g >
<title>do_group_exit (5,719,027,213 samples, 19.90%)</title><rect x="18.9" y="517" width="234.8" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="21.88" y="527.5" >do_group_exit</text>
</g>
<g >
<title>__irq_exit_rcu (8,702,953 samples, 0.03%)</title><rect x="94.4" y="357" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="97.40" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (14,015,206 samples, 0.05%)</title><rect x="643.3" y="405" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="646.33" y="415.5" ></text>
</g>
<g >
<title>runtime.deferprocStack (3,695,595 samples, 0.01%)</title><rect x="1176.4" y="501" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="1179.36" y="511.5" ></text>
</g>
<g >
<title>get_any_partial (6,127,309 samples, 0.02%)</title><rect x="847.8" y="213" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="850.82" y="223.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (25,405,707 samples, 0.09%)</title><rect x="206.8" y="325" width="1.0" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="209.81" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (34,006,428 samples, 0.12%)</title><rect x="572.4" y="325" width="1.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="575.40" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,119,151 samples, 0.01%)</title><rect x="593.7" y="245" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="596.72" y="255.5" ></text>
</g>
<g >
<title>exc_page_fault (3,119,151 samples, 0.01%)</title><rect x="593.7" y="277" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="596.72" y="287.5" ></text>
</g>
<g >
<title>unmap_vmas (79,257,784 samples, 0.28%)</title><rect x="36.7" y="421" width="3.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="39.70" y="431.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (2,994,021 samples, 0.01%)</title><rect x="612.6" y="309" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="615.65" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (54,834,096 samples, 0.19%)</title><rect x="12.0" y="501" width="2.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.96" y="511.5" ></text>
</g>
<g >
<title>get_page_from_freelist (27,700,287 samples, 0.10%)</title><rect x="1186.3" y="341" width="1.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1189.33" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mheap).initSpan (3,080,497 samples, 0.01%)</title><rect x="637.1" y="293" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="640.13" y="303.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (6,025,144 samples, 0.02%)</title><rect x="211.9" y="341" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="214.89" y="351.5" ></text>
</g>
<g >
<title>rcu_core_si (3,021,135 samples, 0.01%)</title><rect x="228.3" y="325" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="231.28" y="335.5" ></text>
</g>
<g >
<title>runtime.save (6,164,333 samples, 0.02%)</title><rect x="653.4" y="373" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="656.39" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,326,196 samples, 0.02%)</title><rect x="234.0" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="236.97" y="415.5" ></text>
</g>
<g >
<title>do_futex (4,522,723 samples, 0.02%)</title><rect x="366.0" y="405" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="368.95" y="415.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,927,540 samples, 0.01%)</title><rect x="85.7" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="88.66" y="399.5" ></text>
</g>
<g >
<title>runtime.typedmemmove (17,194,063 samples, 0.06%)</title><rect x="609.4" y="325" width="0.7" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="612.40" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (127,381,830 samples, 0.44%)</title><rect x="788.5" y="149" width="5.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="791.50" y="159.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (5,389,541 samples, 0.02%)</title><rect x="741.6" y="197" width="0.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="744.61" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (12,286,975 samples, 0.04%)</title><rect x="206.3" y="341" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="209.26" y="351.5" ></text>
</g>
<g >
<title>dentry_free (560,762,640 samples, 1.95%)</title><rect x="192.3" y="405" width="23.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="195.33" y="415.5" >d..</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (16,707,068 samples, 0.06%)</title><rect x="603.6" y="341" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="606.56" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.assignValues (923,438,412 samples, 3.21%)</title><rect x="575.4" y="469" width="38.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="578.44" y="479.5" >git..</text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (3,804,290 samples, 0.01%)</title><rect x="490.5" y="405" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="493.54" y="415.5" ></text>
</g>
<g >
<title>os.(*File).ReadAt (10,073,567 samples, 0.04%)</title><rect x="587.4" y="245" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="590.38" y="255.5" ></text>
</g>
<g >
<title>runtime.(*timeHistogram).record (4,674,375 samples, 0.02%)</title><rect x="656.8" y="373" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="659.77" y="383.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (118,635,343 samples, 0.41%)</title><rect x="767.5" y="213" width="4.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="770.54" y="223.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (43,650,622 samples, 0.15%)</title><rect x="38.1" y="309" width="1.8" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="41.06" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.loadRawSpec (368,542,625 samples, 1.28%)</title><rect x="575.4" y="341" width="15.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="578.44" y="351.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,844,314 samples, 0.01%)</title><rect x="928.1" y="309" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="931.08" y="319.5" ></text>
</g>
<g >
<title>rcu_core_si (11,715,067 samples, 0.04%)</title><rect x="85.8" y="341" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="88.81" y="351.5" ></text>
</g>
<g >
<title>exit_files (384,875,209 samples, 1.34%)</title><rect x="20.9" y="485" width="15.8" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="23.86" y="495.5" ></text>
</g>
<g >
<title>clear_page_erms (3,657,471 samples, 0.01%)</title><rect x="863.1" y="53" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="866.13" y="63.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (4,573,434 samples, 0.02%)</title><rect x="561.3" y="405" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="564.32" y="415.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,927,540 samples, 0.01%)</title><rect x="85.7" y="357" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="88.66" y="367.5" ></text>
</g>
<g >
<title>__get_random_u32_below (4,829,166 samples, 0.02%)</title><rect x="763.0" y="149" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="766.04" y="159.5" ></text>
</g>
<g >
<title>mod_memcg_state (6,962,366 samples, 0.02%)</title><rect x="774.2" y="181" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="777.19" y="191.5" ></text>
</g>
<g >
<title>crng_make_state (3,104,471 samples, 0.01%)</title><rect x="796.1" y="101" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="799.05" y="111.5" ></text>
</g>
<g >
<title>clear_page_erms (24,630,898 samples, 0.09%)</title><rect x="629.4" y="277" width="1.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="632.37" y="287.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,920,409 samples, 0.01%)</title><rect x="234.2" y="357" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="237.19" y="367.5" ></text>
</g>
<g >
<title>runtime.mstart1 (87,643,618 samples, 0.31%)</title><rect x="10.8" y="565" width="3.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="13.83" y="575.5" ></text>
</g>
<g >
<title>testing.(*B).runN (3,144,315,868 samples, 10.94%)</title><rect x="376.5" y="581" width="129.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="379.55" y="591.5" >testing.(*B).runN</text>
</g>
<g >
<title>runtime.(*scavengerState).park (4,455,219 samples, 0.02%)</title><rect x="376.1" y="581" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="379.05" y="591.5" ></text>
</g>
<g >
<title>gosave_systemstack_switch (3,877,549 samples, 0.01%)</title><rect x="997.3" y="405" width="0.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="1000.27" y="415.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (7,469,750 samples, 0.03%)</title><rect x="927.9" y="357" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="930.89" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (3,870,832 samples, 0.01%)</title><rect x="576.2" y="293" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="579.24" y="303.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (12,367,423 samples, 0.04%)</title><rect x="1003.0" y="165" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1006.03" y="175.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (10,049,792 samples, 0.03%)</title><rect x="488.6" y="405" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="491.57" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (11,640,285 samples, 0.04%)</title><rect x="611.9" y="245" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="614.92" y="255.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (13,199,985 samples, 0.05%)</title><rect x="917.9" y="245" width="0.6" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="920.93" y="255.5" ></text>
</g>
<g >
<title>runtime.addfinalizer (4,044,499,846 samples, 14.08%)</title><rect x="999.0" y="373" width="166.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="1001.97" y="383.5" >runtime.addfinalizer</text>
</g>
<g >
<title>apparmor_file_alloc_security (25,870,043 samples, 0.09%)</title><rect x="733.1" y="213" width="1.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="736.07" y="223.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,944,185 samples, 0.02%)</title><rect x="14.5" y="565" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="17.48" y="575.5" ></text>
</g>
<g >
<title>runtime.interhash (17,825,705 samples, 0.06%)</title><rect x="599.0" y="309" width="0.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="601.98" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (15,054,468 samples, 0.05%)</title><rect x="358.6" y="517" width="0.6" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="361.63" y="527.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (44,533,844 samples, 0.15%)</title><rect x="121.1" y="325" width="1.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="124.10" y="335.5" ></text>
</g>
<g >
<title>idr_preload (22,346,071 samples, 0.08%)</title><rect x="920.1" y="309" width="0.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="923.06" y="319.5" ></text>
</g>
<g >
<title>tick_sched_handle (3,367,332 samples, 0.01%)</title><rect x="152.4" y="293" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="155.39" y="303.5" ></text>
</g>
<g >
<title>do_anonymous_page (18,814,450 samples, 0.07%)</title><rect x="566.7" y="405" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="569.65" y="415.5" ></text>
</g>
<g >
<title>schedule (4,522,723 samples, 0.02%)</title><rect x="366.0" y="357" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="368.95" y="367.5" ></text>
</g>
<g >
<title>runtime.newInlineUnwinder (3,859,004 samples, 0.01%)</title><rect x="642.6" y="325" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="645.63" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (2,484,884 samples, 0.01%)</title><rect x="85.0" y="421" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="88.01" y="431.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (6,212,103 samples, 0.02%)</title><rect x="1183.1" y="485" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1186.08" y="495.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (50,830,641 samples, 0.18%)</title><rect x="144.8" y="261" width="2.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="147.78" y="271.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,097,737 samples, 0.01%)</title><rect x="580.4" y="101" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="583.40" y="111.5" ></text>
</g>
<g >
<title>idr_get_next_ul (168,166,582 samples, 0.59%)</title><rect x="456.0" y="229" width="6.9" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="458.98" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (8,717,821 samples, 0.03%)</title><rect x="262.7" y="485" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="265.69" y="495.5" ></text>
</g>
<g >
<title>__handle_mm_fault (16,119,309 samples, 0.06%)</title><rect x="600.5" y="229" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="603.53" y="239.5" ></text>
</g>
<g >
<title>rcu_core_si (2,917,507 samples, 0.01%)</title><rect x="61.3" y="341" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="64.34" y="351.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (19,427,733 samples, 0.07%)</title><rect x="1170.1" y="389" width="0.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1173.13" y="399.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).put (5,308,401 samples, 0.02%)</title><rect x="357.4" y="517" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="360.40" y="527.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (9,215,147 samples, 0.03%)</title><rect x="261.8" y="549" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="264.78" y="559.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3,800,940 samples, 0.01%)</title><rect x="779.2" y="245" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="782.22" y="255.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (49,332,587 samples, 0.17%)</title><rect x="185.0" y="357" width="2.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="188.00" y="367.5" ></text>
</g>
<g >
<title>__mod_memcg_state (8,343,211 samples, 0.03%)</title><rect x="881.1" y="181" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="884.11" y="191.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,456,308 samples, 0.02%)</title><rect x="838.0" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="840.95" y="159.5" ></text>
</g>
<g >
<title>runtime.memmove (13,949,197 samples, 0.05%)</title><rect x="480.2" y="469" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="483.17" y="479.5" ></text>
</g>
<g >
<title>get_page_from_freelist (124,299,712 samples, 0.43%)</title><rect x="788.6" y="133" width="5.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="791.63" y="143.5" ></text>
</g>
<g >
<title>folio_add_lru (3,092,099 samples, 0.01%)</title><rect x="582.2" y="149" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="585.18" y="159.5" ></text>
</g>
<g >
<title>__do_softirq (301,072,282 samples, 1.05%)</title><rect x="152.5" y="325" width="12.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="155.53" y="335.5" ></text>
</g>
<g >
<title>__unfreeze_partials (40,523,660 samples, 0.14%)</title><rect x="202.9" y="341" width="1.6" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="205.87" y="351.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (4,063,966 samples, 0.01%)</title><rect x="15.8" y="533" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="18.84" y="543.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (27,233,977 samples, 0.09%)</title><rect x="695.3" y="373" width="1.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="698.30" y="383.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,959,716 samples, 0.02%)</title><rect x="247.1" y="373" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="250.15" y="383.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (31,063,943 samples, 0.11%)</title><rect x="93.1" y="389" width="1.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="96.12" y="399.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (1,014,589,834 samples, 3.53%)</title><rect x="779.7" y="261" width="41.7" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="782.72" y="271.5" >d_a..</text>
</g>
<g >
<title>__irq_exit_rcu (2,866,708 samples, 0.01%)</title><rect x="213.3" y="293" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="216.29" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (10,641,022 samples, 0.04%)</title><rect x="209.4" y="357" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="212.39" y="367.5" ></text>
</g>
<g >
<title>runtime.retake (11,956,938 samples, 0.04%)</title><rect x="11.2" y="533" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="14.21" y="543.5" ></text>
</g>
<g >
<title>__folio_alloc (3,868,701 samples, 0.01%)</title><rect x="580.4" y="133" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="583.40" y="143.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (306,882,386 samples, 1.07%)</title><rect x="152.3" y="389" width="12.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="155.31" y="399.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (13,713,210 samples, 0.05%)</title><rect x="761.3" y="133" width="0.5" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="764.28" y="143.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (3,281,483 samples, 0.01%)</title><rect x="10.9" y="533" width="0.2" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="13.95" y="543.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,920,409 samples, 0.01%)</title><rect x="234.2" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="237.19" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,657,747 samples, 0.03%)</title><rect x="169.9" y="405" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="172.91" y="415.5" ></text>
</g>
<g >
<title>mod_node_page_state (3,872,722 samples, 0.01%)</title><rect x="762.0" y="165" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="765.00" y="175.5" ></text>
</g>
<g >
<title>runtime.mstart1 (68,822,494 samples, 0.24%)</title><rect x="15.6" y="581" width="2.8" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="18.56" y="591.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (3,783,423 samples, 0.01%)</title><rect x="10.6" y="565" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.55" y="575.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func4 (12,017,318 samples, 0.04%)</title><rect x="1175.3" y="469" width="0.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1178.33" y="479.5" ></text>
</g>
<g >
<title>wp_page_copy (12,399,274 samples, 0.04%)</title><rect x="582.1" y="181" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="585.11" y="191.5" ></text>
</g>
<g >
<title>__slab_free (5,948,639 samples, 0.02%)</title><rect x="93.8" y="229" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="96.77" y="239.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.walkType (11,662,200 samples, 0.04%)</title><rect x="595.1" y="325" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="598.09" y="335.5" ></text>
</g>
<g >
<title>file_free_rcu (5,216,595 samples, 0.02%)</title><rect x="191.9" y="277" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="194.91" y="287.5" ></text>
</g>
<g >
<title>rcu_do_batch (12,208,756 samples, 0.04%)</title><rect x="211.4" y="245" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="214.39" y="255.5" ></text>
</g>
<g >
<title>runtime.mallocgc (54,799,909 samples, 0.19%)</title><rect x="495.5" y="485" width="2.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="498.51" y="495.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (8,085,703,169 samples, 28.14%)</title><rect x="659.9" y="405" width="332.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="662.87" y="415.5" >runtime/internal/syscall.Syscall6</text>
</g>
<g >
<title>__rcu_read_unlock (18,882,793 samples, 0.07%)</title><rect x="149.8" y="389" width="0.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="152.75" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (38,381,644 samples, 0.13%)</title><rect x="561.3" y="469" width="1.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="564.29" y="479.5" ></text>
</g>
<g >
<title>runtime.mallocgc (13,841,495 samples, 0.05%)</title><rect x="1182.8" y="501" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1185.80" y="511.5" ></text>
</g>
<g >
<title>idr_get_next (188,314,405 samples, 0.66%)</title><rect x="455.3" y="245" width="7.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="458.34" y="255.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (4,501,405 samples, 0.02%)</title><rect x="605.9" y="293" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="608.89" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (34,877,284 samples, 0.12%)</title><rect x="636.7" y="405" width="1.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="639.70" y="415.5" ></text>
</g>
<g >
<title>__do_softirq (11,737,024 samples, 0.04%)</title><rect x="206.3" y="277" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="209.28" y="287.5" ></text>
</g>
<g >
<title>rcu_core_si (2,920,409 samples, 0.01%)</title><rect x="234.2" y="325" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="237.19" y="335.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,001,156 samples, 0.03%)</title><rect x="865.6" y="229" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="868.60" y="239.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (5,353,708 samples, 0.02%)</title><rect x="659.6" y="405" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="662.65" y="415.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,773,268 samples, 0.02%)</title><rect x="643.6" y="261" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="646.56" y="271.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (6,132,294 samples, 0.02%)</title><rect x="571.6" y="389" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="574.64" y="399.5" ></text>
</g>
<g >
<title>sync.(*Once).doSlow (925,001,389 samples, 3.22%)</title><rect x="575.4" y="549" width="38.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="578.38" y="559.5" >syn..</text>
</g>
<g >
<title>fpregs_assert_state_consistent (22,327,794 samples, 0.08%)</title><rect x="958.6" y="325" width="0.9" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="961.56" y="335.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (216,684,922 samples, 0.75%)</title><rect x="132.6" y="309" width="8.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="135.56" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_free (123,757,651 samples, 0.43%)</title><rect x="155.5" y="245" width="5.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="158.52" y="255.5" ></text>
</g>
<g >
<title>file_free_rcu (4,074,164 samples, 0.01%)</title><rect x="250.8" y="309" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="253.77" y="319.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (3,102,392,724 samples, 10.80%)</title><rect x="376.6" y="565" width="127.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="379.58" y="575.5" >github.com/EMni..</text>
</g>
<g >
<title>_raw_spin_lock (31,116,910 samples, 0.11%)</title><rect x="60.2" y="437" width="1.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="63.18" y="447.5" ></text>
</g>
<g >
<title>__alloc_pages (3,802,233 samples, 0.01%)</title><rect x="563.7" y="325" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="566.70" y="335.5" ></text>
</g>
<g >
<title>__slab_free (45,170,688 samples, 0.16%)</title><rect x="157.0" y="229" width="1.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="160.02" y="239.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,741,335 samples, 0.01%)</title><rect x="615.1" y="389" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="618.15" y="399.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (10,777,320 samples, 0.04%)</title><rect x="564.1" y="517" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="567.11" y="527.5" ></text>
</g>
<g >
<title>folio_add_lru (3,046,938 samples, 0.01%)</title><rect x="1186.0" y="373" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1188.96" y="383.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (5,719,027,213 samples, 19.90%)</title><rect x="18.9" y="565" width="234.8" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="21.88" y="575.5" >exit_to_user_mode_loop</text>
</g>
<g >
<title>runtime.nilinterequal (7,787,663 samples, 0.03%)</title><rect x="520.2" y="453" width="0.3" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="523.23" y="463.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (39,820,146 samples, 0.14%)</title><rect x="357.6" y="533" width="1.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="360.61" y="543.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (884,037,949 samples, 3.08%)</title><rect x="521.4" y="501" width="36.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="524.36" y="511.5" >io...</text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createMapGaugeEbpf (925,001,389 samples, 3.22%)</title><rect x="575.4" y="517" width="38.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="578.38" y="527.5" >git..</text>
</g>
<g >
<title>rcu_do_batch (23,163,116 samples, 0.08%)</title><rect x="206.9" y="261" width="0.9" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="209.85" y="271.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,908,492 samples, 0.01%)</title><rect x="253.3" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="256.31" y="431.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo (3,102,392,724 samples, 10.80%)</title><rect x="376.6" y="549" width="127.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="379.58" y="559.5" >github.com/EMni..</text>
</g>
<g >
<title>new_slab (11,644,676 samples, 0.04%)</title><rect x="918.0" y="213" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="920.96" y="223.5" ></text>
</g>
<g >
<title>clear_page_erms (17,637,284 samples, 0.06%)</title><rect x="745.7" y="85" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="748.71" y="95.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,973,922 samples, 0.01%)</title><rect x="641.9" y="325" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="644.88" y="335.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (10,872,892 samples, 0.04%)</title><rect x="628.4" y="341" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="631.38" y="351.5" ></text>
</g>
<g >
<title>d_set_d_op (4,266,625 samples, 0.01%)</title><rect x="820.2" y="245" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="823.24" y="255.5" ></text>
</g>
<g >
<title>runtime.scanblock (2,851,873 samples, 0.01%)</title><rect x="265.5" y="517" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="268.55" y="527.5" ></text>
</g>
<g >
<title>enqueue_task_fair (5,070,025 samples, 0.02%)</title><rect x="129.6" y="325" width="0.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="132.65" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (14,699,694 samples, 0.05%)</title><rect x="580.0" y="261" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="582.99" y="271.5" ></text>
</g>
<g >
<title>runtime.mcall (6,383,071 samples, 0.02%)</title><rect x="365.9" y="565" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="368.89" y="575.5" ></text>
</g>
<g >
<title>runtime.memmove (190,674,953 samples, 0.66%)</title><rect x="567.5" y="517" width="7.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="570.55" y="527.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (6,117,853 samples, 0.02%)</title><rect x="565.6" y="453" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="568.63" y="463.5" ></text>
</g>
<g >
<title>apparmor_capable (27,733,205 samples, 0.10%)</title><rect x="896.8" y="293" width="1.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="899.82" y="303.5" ></text>
</g>
<g >
<title>internal/reflectlite.rtype.Comparable (8,456,697 samples, 0.03%)</title><rect x="494.7" y="501" width="0.3" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="497.66" y="511.5" ></text>
</g>
<g >
<title>runtime.typehash (3,099,898 samples, 0.01%)</title><rect x="521.1" y="437" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="524.14" y="447.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,074,752 samples, 0.01%)</title><rect x="662.0" y="309" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="665.02" y="319.5" ></text>
</g>
<g >
<title>set_next_entity (13,039,645 samples, 0.05%)</title><rect x="183.3" y="357" width="0.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="186.27" y="367.5" ></text>
</g>
<g >
<title>runtime.makeslice (3,105,806 samples, 0.01%)</title><rect x="586.7" y="277" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="589.71" y="287.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (3,901,689 samples, 0.01%)</title><rect x="419.0" y="277" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="422.04" y="287.5" ></text>
</g>
<g >
<title>runtime.casgstatus (35,498,898 samples, 0.12%)</title><rect x="655.5" y="389" width="1.5" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="658.51" y="399.5" ></text>
</g>
<g >
<title>exit_mmap (80,035,313 samples, 0.28%)</title><rect x="36.7" y="437" width="3.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="39.66" y="447.5" ></text>
</g>
<g >
<title>alloc_pages (132,022,022 samples, 0.46%)</title><rect x="788.4" y="165" width="5.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="791.44" y="175.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,868,701 samples, 0.01%)</title><rect x="580.4" y="149" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="583.40" y="159.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,505,313 samples, 0.02%)</title><rect x="211.5" y="213" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="214.54" y="223.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.applyRelocations (368,542,625 samples, 1.28%)</title><rect x="575.4" y="405" width="15.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="578.44" y="415.5" ></text>
</g>
<g >
<title>handle_mm_fault (21,932,639 samples, 0.08%)</title><rect x="566.5" y="453" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="569.53" y="463.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,913,689 samples, 0.01%)</title><rect x="228.8" y="357" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="231.76" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (9,244,535 samples, 0.03%)</title><rect x="642.4" y="373" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="645.41" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (5,428,786 samples, 0.02%)</title><rect x="464.5" y="261" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="467.54" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push (6,228,668 samples, 0.02%)</title><rect x="595.3" y="293" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="598.32" y="303.5" ></text>
</g>
<g >
<title>runtime.findObject (10,581,396 samples, 0.04%)</title><rect x="639.4" y="309" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="642.43" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,806,063 samples, 0.03%)</title><rect x="67.8" y="405" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="70.76" y="415.5" ></text>
</g>
<g >
<title>___slab_alloc (10,577,639 samples, 0.04%)</title><rect x="862.9" y="133" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="865.94" y="143.5" ></text>
</g>
<g >
<title>__handle_mm_fault (61,545,371 samples, 0.21%)</title><rect x="571.4" y="437" width="2.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="574.43" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,986,904 samples, 0.01%)</title><rect x="1182.9" y="453" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1185.93" y="463.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (9,229,837 samples, 0.03%)</title><rect x="39.5" y="277" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="42.48" y="287.5" ></text>
</g>
<g >
<title>__kmalloc_node (21,389,654 samples, 0.07%)</title><rect x="761.1" y="149" width="0.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="764.09" y="159.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,021,135 samples, 0.01%)</title><rect x="228.3" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="231.28" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (22,264,904 samples, 0.08%)</title><rect x="1002.1" y="181" width="0.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1005.12" y="191.5" ></text>
</g>
<g >
<title>vma_alloc_folio (11,571,779 samples, 0.04%)</title><rect x="583.7" y="181" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="586.70" y="191.5" ></text>
</g>
<g >
<title>wp_page_copy (2,973,922 samples, 0.01%)</title><rect x="641.9" y="277" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="644.88" y="287.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (10,709,517 samples, 0.04%)</title><rect x="630.4" y="261" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="633.44" y="271.5" ></text>
</g>
<g >
<title>runtime.bgsweep (248,982,682 samples, 0.87%)</title><rect x="365.8" y="597" width="10.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="368.83" y="607.5" ></text>
</g>
<g >
<title>runtime.memmove (3,849,856 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>asm_exc_page_fault (3,822,818 samples, 0.01%)</title><rect x="601.6" y="325" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="604.64" y="335.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (3,964,620 samples, 0.01%)</title><rect x="147.2" y="293" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="150.21" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (6,186,029 samples, 0.02%)</title><rect x="488.6" y="341" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="491.57" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (44,327,291 samples, 0.15%)</title><rect x="604.3" y="325" width="1.8" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="607.31" y="335.5" ></text>
</g>
<g >
<title>native_write_msr (168,695,457 samples, 0.59%)</title><rect x="132.8" y="293" width="6.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="135.82" y="303.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (96,704,315 samples, 0.34%)</title><rect x="517.4" y="501" width="4.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="520.39" y="511.5" ></text>
</g>
<g >
<title>get_page_from_freelist (9,329,450 samples, 0.03%)</title><rect x="918.0" y="149" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="920.96" y="159.5" ></text>
</g>
<g >
<title>mod_node_page_state (4,600,020 samples, 0.02%)</title><rect x="794.8" y="165" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="797.80" y="175.5" ></text>
</g>
<g >
<title>sync_regs (4,678,662 samples, 0.02%)</title><rect x="1164.9" y="357" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1167.87" y="367.5" ></text>
</g>
<g >
<title>do_sched_yield (5,636,703 samples, 0.02%)</title><rect x="262.7" y="453" width="0.2" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="265.69" y="463.5" ></text>
</g>
<g >
<title>rcu_core_si (24,309,016 samples, 0.08%)</title><rect x="206.8" y="293" width="1.0" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="209.81" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,712,899 samples, 0.02%)</title><rect x="16.1" y="485" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="19.09" y="495.5" ></text>
</g>
<g >
<title>rcu_core_si (2,927,540 samples, 0.01%)</title><rect x="85.7" y="325" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="88.66" y="335.5" ></text>
</g>
<g >
<title>bpf_seq_write (12,991,805 samples, 0.05%)</title><rect x="554.6" y="245" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="557.59" y="255.5" ></text>
</g>
<g >
<title>sync_regs (6,922,383 samples, 0.02%)</title><rect x="575.1" y="501" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="578.09" y="511.5" ></text>
</g>
<g >
<title>iput (4,274,611 samples, 0.01%)</title><rect x="226.0" y="405" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="228.98" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (28,084,313 samples, 0.10%)</title><rect x="224.8" y="357" width="1.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="227.82" y="367.5" ></text>
</g>
<g >
<title>___slab_alloc (6,885,820 samples, 0.02%)</title><rect x="794.1" y="117" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="797.05" y="127.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,822,818 samples, 0.01%)</title><rect x="601.6" y="245" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="604.64" y="255.5" ></text>
</g>
<g >
<title>scheduler_tick (2,822,919 samples, 0.01%)</title><rect x="152.4" y="261" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="155.41" y="271.5" ></text>
</g>
<g >
<title>free_unref_page_commit (13,919,090 samples, 0.05%)</title><rect x="38.8" y="261" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="41.78" y="271.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,545,739 samples, 0.02%)</title><rect x="15.1" y="581" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="18.06" y="591.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (38,772,623 samples, 0.13%)</title><rect x="488.5" y="437" width="1.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="491.53" y="447.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (8,242,511 samples, 0.03%)</title><rect x="215.0" y="389" width="0.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="218.01" y="399.5" ></text>
</g>
<g >
<title>runtime.schedule (4,455,219 samples, 0.02%)</title><rect x="376.1" y="517" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="379.05" y="527.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6,768,405 samples, 0.02%)</title><rect x="927.6" y="357" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="930.61" y="367.5" ></text>
</g>
<g >
<title>__d_instantiate (34,419,662 samples, 0.12%)</title><rect x="821.6" y="245" width="1.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="824.57" y="255.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (15,032,495 samples, 0.05%)</title><rect x="1158.4" y="341" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1161.40" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (26,519,969 samples, 0.09%)</title><rect x="206.8" y="357" width="1.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="209.76" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (18,595,299 samples, 0.06%)</title><rect x="582.1" y="277" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="585.05" y="287.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (10,693,760 samples, 0.04%)</title><rect x="793.9" y="133" width="0.4" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="796.89" y="143.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (76,889,643 samples, 0.27%)</title><rect x="878.8" y="229" width="3.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="881.84" y="239.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (55,658,094 samples, 0.19%)</title><rect x="212.1" y="373" width="2.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="215.14" y="383.5" ></text>
</g>
<g >
<title>___slab_alloc (57,107,198 samples, 0.20%)</title><rect x="745.5" y="181" width="2.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="748.46" y="191.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (3,804,290 samples, 0.01%)</title><rect x="490.5" y="437" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="493.54" y="447.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).putBatch (28,059,470 samples, 0.10%)</title><rect x="1180.3" y="421" width="1.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1183.31" y="431.5" ></text>
</g>
<g >
<title>folio_add_lru (10,872,892 samples, 0.04%)</title><rect x="628.4" y="325" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="631.38" y="335.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (9,746,782 samples, 0.03%)</title><rect x="513.1" y="469" width="0.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="516.08" y="479.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (3,896,920 samples, 0.01%)</title><rect x="747.9" y="181" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="750.87" y="191.5" ></text>
</g>
<g >
<title>radix_tree_node_alloc.constprop.0 (13,199,985 samples, 0.05%)</title><rect x="917.9" y="261" width="0.6" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="920.93" y="271.5" ></text>
</g>
<g >
<title>rmqueue (5,284,248 samples, 0.02%)</title><rect x="793.5" y="117" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="796.52" y="127.5" ></text>
</g>
<g >
<title>vma_alloc_folio (12,607,135 samples, 0.04%)</title><rect x="566.9" y="389" width="0.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="569.91" y="399.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (211,323,377 samples, 0.74%)</title><rect x="367.3" y="565" width="8.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="370.25" y="575.5" ></text>
</g>
<g >
<title>ihold (33,518,466 samples, 0.12%)</title><rect x="827.6" y="277" width="1.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="830.56" y="287.5" ></text>
</g>
<g >
<title>__free_pages (7,154,051 samples, 0.02%)</title><rect x="161.0" y="133" width="0.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="163.97" y="143.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (5,104,271 samples, 0.02%)</title><rect x="144.4" y="293" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="147.40" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (5,352,348 samples, 0.02%)</title><rect x="1173.3" y="485" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1176.27" y="495.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (21,778,444 samples, 0.08%)</title><rect x="489.0" y="405" width="0.9" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="491.98" y="415.5" ></text>
</g>
<g >
<title>runtime.memmove (3,036,908 samples, 0.01%)</title><rect x="1176.2" y="485" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1179.17" y="495.5" ></text>
</g>
<g >
<title>rcu_do_batch (3,999,544 samples, 0.01%)</title><rect x="202.6" y="245" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="205.63" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (821,316,328 samples, 2.86%)</title><rect x="523.0" y="373" width="33.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="526.01" y="383.5" >do..</text>
</g>
<g >
<title>runtime.newobject (19,285,119 samples, 0.07%)</title><rect x="588.3" y="293" width="0.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="591.27" y="303.5" ></text>
</g>
<g >
<title>__free_slab (29,804,342 samples, 0.10%)</title><rect x="203.3" y="293" width="1.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="206.29" y="303.5" ></text>
</g>
<g >
<title>__mod_memcg_state (2,993,548 samples, 0.01%)</title><rect x="818.4" y="149" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="821.41" y="159.5" ></text>
</g>
<g >
<title>__schedule (4,522,723 samples, 0.02%)</title><rect x="366.0" y="341" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="368.95" y="351.5" ></text>
</g>
<g >
<title>consume_obj_stock (31,602,304 samples, 0.11%)</title><rect x="879.7" y="213" width="1.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="882.69" y="223.5" ></text>
</g>
<g >
<title>check_ptr_to_btf_access (3,713,361 samples, 0.01%)</title><rect x="613.2" y="181" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="616.21" y="191.5" ></text>
</g>
<g >
<title>bpf_seq_write (3,719,566 samples, 0.01%)</title><rect x="555.2" y="261" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="558.22" y="271.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (20,734,437 samples, 0.07%)</title><rect x="636.9" y="325" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="639.88" y="335.5" ></text>
</g>
<g >
<title>runtime.pcvalue (3,859,004 samples, 0.01%)</title><rect x="642.6" y="293" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="645.63" y="303.5" ></text>
</g>
<g >
<title>handle_pte_fault (70,306,717 samples, 0.24%)</title><rect x="1000.8" y="277" width="2.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1003.81" y="287.5" ></text>
</g>
<g >
<title>dnotify_flush (3,144,974 samples, 0.01%)</title><rect x="21.9" y="453" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="24.89" y="463.5" ></text>
</g>
<g >
<title>__alloc_pages (6,773,268 samples, 0.02%)</title><rect x="643.6" y="277" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="646.56" y="287.5" ></text>
</g>
<g >
<title>runtime.newArenaMayUnlock (2,956,016 samples, 0.01%)</title><rect x="375.7" y="533" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="378.74" y="543.5" ></text>
</g>
<g >
<title>runtime.exitsyscall (139,938,222 samples, 0.49%)</title><rect x="653.7" y="405" width="5.7" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="656.68" y="415.5" ></text>
</g>
<g >
<title>newidle_balance (2,855,821 samples, 0.01%)</title><rect x="17.4" y="389" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="20.44" y="399.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,445,825 samples, 0.02%)</title><rect x="878.6" y="229" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="881.58" y="239.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,999,544 samples, 0.01%)</title><rect x="202.6" y="357" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="205.63" y="367.5" ></text>
</g>
<g >
<title>do_anonymous_page (8,552,734 samples, 0.03%)</title><rect x="614.6" y="421" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="617.61" y="431.5" ></text>
</g>
<g >
<title>update_curr (4,157,579 samples, 0.01%)</title><rect x="12.8" y="357" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="15.77" y="367.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (6,218,601 samples, 0.02%)</title><rect x="494.4" y="485" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="497.40" y="495.5" ></text>
</g>
<g >
<title>clear_page_erms (122,410,729 samples, 0.43%)</title><rect x="755.5" y="117" width="5.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="758.47" y="127.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (6,927,503 samples, 0.02%)</title><rect x="819.0" y="229" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="822.03" y="239.5" ></text>
</g>
<g >
<title>testing.runBenchmarks (2,590,285 samples, 0.01%)</title><rect x="376.3" y="565" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="379.28" y="575.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.MapCreate (12,792,219,161 samples, 44.52%)</title><rect x="646.7" y="469" width="525.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="649.66" y="479.5" >github.com/cilium/ebpf/internal/sys.MapCreate</text>
</g>
<g >
<title>dequeue_entity (4,231,991 samples, 0.01%)</title><rect x="17.0" y="389" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="20.01" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.newFD (4,545,739 samples, 0.02%)</title><rect x="15.1" y="613" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="18.06" y="623.5" ></text>
</g>
<g >
<title>wp_page_copy (11,599,513 samples, 0.04%)</title><rect x="580.1" y="165" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="583.08" y="175.5" ></text>
</g>
<g >
<title>__rcu_read_lock (30,613,444 samples, 0.11%)</title><rect x="796.5" y="213" width="1.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="799.53" y="223.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.write (3,887,140 samples, 0.01%)</title><rect x="1183.2" y="469" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1186.17" y="479.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (4,477,538 samples, 0.02%)</title><rect x="1172.6" y="469" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1175.57" y="479.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (61,591,167 samples, 0.21%)</title><rect x="234.5" y="437" width="2.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="237.52" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,852,771 samples, 0.01%)</title><rect x="585.9" y="197" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="588.89" y="207.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (24,549,487 samples, 0.09%)</title><rect x="959.9" y="373" width="1.0" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="962.86" y="383.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4,521,224 samples, 0.02%)</title><rect x="662.0" y="325" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="664.96" y="335.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (3,597,563 samples, 0.01%)</title><rect x="1158.5" y="261" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1161.47" y="271.5" ></text>
</g>
<g >
<title>memcg_account_kmem (4,550,932 samples, 0.02%)</title><rect x="213.9" y="325" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="216.90" y="335.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (295,078,827 samples, 1.03%)</title><rect x="527.0" y="277" width="12.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="530.00" y="287.5" ></text>
</g>
<g >
<title>queue_work_on (10,141,746 samples, 0.04%)</title><rect x="167.0" y="421" width="0.4" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="169.99" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (39,217,625 samples, 0.14%)</title><rect x="629.3" y="293" width="1.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="632.27" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (2,892,386 samples, 0.01%)</title><rect x="203.7" y="197" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="206.65" y="207.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (11,919,039 samples, 0.04%)</title><rect x="895.7" y="309" width="0.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="898.67" y="319.5" ></text>
</g>
<g >
<title>___slab_alloc (221,629,704 samples, 0.77%)</title><rect x="787.4" y="213" width="9.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="790.37" y="223.5" ></text>
</g>
<g >
<title>runtime.futex.abi0 (4,860,690 samples, 0.02%)</title><rect x="366.0" y="469" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="368.95" y="479.5" ></text>
</g>
<g >
<title>inc_slabs_node (3,890,383 samples, 0.01%)</title><rect x="848.1" y="213" width="0.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="851.07" y="223.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (49,847,155 samples, 0.17%)</title><rect x="638.4" y="357" width="2.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="641.38" y="367.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (49,847,155 samples, 0.17%)</title><rect x="638.4" y="341" width="2.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="641.38" y="351.5" ></text>
</g>
<g >
<title>locks_remove_posix (54,901,250 samples, 0.19%)</title><rect x="32.3" y="437" width="2.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="35.31" y="447.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (6,687,931 samples, 0.02%)</title><rect x="129.3" y="261" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="132.28" y="271.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (33,845,508 samples, 0.12%)</title><rect x="504.3" y="533" width="1.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="507.28" y="543.5" ></text>
</g>
<g >
<title>__mod_memcg_state (4,550,932 samples, 0.02%)</title><rect x="213.9" y="293" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="216.90" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages (3,097,737 samples, 0.01%)</title><rect x="580.4" y="117" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="583.40" y="127.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (40,839,873 samples, 0.14%)</title><rect x="176.6" y="373" width="1.7" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="179.62" y="383.5" ></text>
</g>
<g >
<title>rcu_core (8,702,953 samples, 0.03%)</title><rect x="94.4" y="309" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="97.40" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (3,735,304 samples, 0.01%)</title><rect x="605.6" y="197" width="0.1" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="608.58" y="207.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (764,034,590 samples, 2.66%)</title><rect x="928.2" y="357" width="31.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="931.19" y="367.5" >sy..</text>
</g>
<g >
<title>__rcu_read_lock (3,670,140 samples, 0.01%)</title><rect x="226.3" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="229.30" y="431.5" ></text>
</g>
<g >
<title>runtime.memmove (22,945,794 samples, 0.08%)</title><rect x="600.3" y="309" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="603.32" y="319.5" ></text>
</g>
<g >
<title>runtime.findRunnable (6,383,071 samples, 0.02%)</title><rect x="365.9" y="517" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="368.89" y="527.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,577,316 samples, 0.01%)</title><rect x="211.7" y="229" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="214.74" y="239.5" ></text>
</g>
<g >
<title>all (28,735,079,736 samples, 100%)</title><rect x="10.0" y="661" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="671.5" ></text>
</g>
<g >
<title>runtime.unlock2 (27,707,063 samples, 0.10%)</title><rect x="1163.7" y="357" width="1.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1166.73" y="367.5" ></text>
</g>
<g >
<title>bpf_map_put (37,270,000 samples, 0.13%)</title><rect x="419.2" y="277" width="1.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="422.23" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,582,215,734 samples, 5.51%)</title><rect x="414.9" y="373" width="65.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="417.88" y="383.5" >entry_S..</text>
</g>
<g >
<title>vma_alloc_folio (3,802,233 samples, 0.01%)</title><rect x="563.7" y="357" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="566.70" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,295,995 samples, 0.04%)</title><rect x="567.0" y="341" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="570.00" y="351.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer (4,545,739 samples, 0.02%)</title><rect x="15.1" y="597" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="18.06" y="607.5" ></text>
</g>
<g >
<title>____fput (35,962,995 samples, 0.13%)</title><rect x="18.9" y="485" width="1.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="21.88" y="495.5" ></text>
</g>
<g >
<title>rmqueue_bulk (8,480,790 samples, 0.03%)</title><rect x="1003.2" y="149" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1006.19" y="159.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,908,492 samples, 0.01%)</title><rect x="253.3" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="256.31" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (7,778,730 samples, 0.03%)</title><rect x="918.0" y="133" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="920.99" y="143.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (37,337,698 samples, 0.13%)</title><rect x="862.5" y="181" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="865.50" y="191.5" ></text>
</g>
<g >
<title>runtime.growslice (45,874,325 samples, 0.16%)</title><rect x="604.2" y="341" width="1.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="607.25" y="351.5" ></text>
</g>
<g >
<title>apparmor_capable (58,877,024 samples, 0.20%)</title><rect x="891.2" y="261" width="2.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="894.20" y="271.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (49,380,755 samples, 0.17%)</title><rect x="495.6" y="421" width="2.0" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="498.61" y="431.5" ></text>
</g>
<g >
<title>rcu_core_si (16,986,186 samples, 0.06%)</title><rect x="75.2" y="341" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="78.16" y="351.5" ></text>
</g>
<g >
<title>error_entry (5,389,327 samples, 0.02%)</title><rect x="14.8" y="565" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="17.79" y="575.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,822,818 samples, 0.01%)</title><rect x="601.6" y="277" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="604.64" y="287.5" ></text>
</g>
<g >
<title>complete_signal (5,314,255 samples, 0.02%)</title><rect x="265.1" y="357" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="268.13" y="367.5" ></text>
</g>
<g >
<title>folio_add_lru (6,173,729 samples, 0.02%)</title><rect x="571.9" y="373" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="574.93" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.copyTypes (263,297,117 samples, 0.92%)</title><rect x="591.0" y="357" width="10.8" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="594.01" y="367.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (11,871,289 samples, 0.04%)</title><rect x="110.4" y="357" width="0.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="113.41" y="367.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (4,663,279 samples, 0.02%)</title><rect x="16.6" y="437" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="19.58" y="447.5" ></text>
</g>
<g >
<title>security_file_free (269,466,523 samples, 0.94%)</title><rect x="237.0" y="437" width="11.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="240.05" y="447.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (519,919,017 samples, 1.81%)</title><rect x="526.6" y="293" width="21.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="529.57" y="303.5" >b..</text>
</g>
<g >
<title>handle_pte_fault (14,423,465 samples, 0.05%)</title><rect x="1180.4" y="309" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1183.40" y="319.5" ></text>
</g>
<g >
<title>clear_page_erms (7,758,613 samples, 0.03%)</title><rect x="837.6" y="149" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="840.64" y="159.5" ></text>
</g>
<g >
<title>security_bpf_map (2,973,603 samples, 0.01%)</title><rect x="926.1" y="325" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="929.15" y="335.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (4,170,814 samples, 0.01%)</title><rect x="265.1" y="325" width="0.2" height="15.0" fill="rgb(223,82,19)" rx="2" ry="2" />
<text x="268.15" y="335.5" ></text>
</g>
<g >
<title>put_prev_entity (80,628,829 samples, 0.28%)</title><rect x="179.8" y="357" width="3.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="182.78" y="367.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (6,380,848 samples, 0.02%)</title><rect x="129.3" y="245" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="132.28" y="255.5" ></text>
</g>
<g >
<title>mod_objcg_state (7,612,049 samples, 0.03%)</title><rect x="214.7" y="389" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="217.70" y="399.5" ></text>
</g>
<g >
<title>__do_softirq (16,986,186 samples, 0.06%)</title><rect x="75.2" y="357" width="0.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="78.16" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (16,295,878 samples, 0.06%)</title><rect x="608.6" y="293" width="0.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="611.61" y="303.5" ></text>
</g>
<g >
<title>errors.Is (30,545,206 samples, 0.11%)</title><rect x="624.7" y="469" width="1.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="627.66" y="479.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5,432,543 samples, 0.02%)</title><rect x="582.4" y="165" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="585.40" y="175.5" ></text>
</g>
<g >
<title>wake_up_process (888,763,368 samples, 3.09%)</title><rect x="111.5" y="373" width="36.5" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="114.54" y="383.5" >wak..</text>
</g>
<g >
<title>rcu_do_batch (8,475,041 samples, 0.03%)</title><rect x="178.7" y="261" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="181.74" y="271.5" ></text>
</g>
<g >
<title>bpf_map_seq_start (3,053,861 samples, 0.01%)</title><rect x="479.3" y="277" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="482.31" y="287.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,628,982 samples, 0.04%)</title><rect x="1180.6" y="229" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1183.56" y="239.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,097,383,502 samples, 14.26%)</title><rect x="998.2" y="405" width="168.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1001.16" y="415.5" >runtime.systemstack.a..</text>
</g>
<g >
<title>__d_instantiate (4,381,700 samples, 0.02%)</title><rect x="725.5" y="261" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="728.53" y="271.5" ></text>
</g>
<g >
<title>runtime.gopark (4,455,219 samples, 0.02%)</title><rect x="376.1" y="565" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="379.05" y="575.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,933,656 samples, 0.02%)</title><rect x="178.8" y="229" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="181.80" y="239.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,093,012 samples, 0.01%)</title><rect x="491.9" y="485" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="494.92" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).finalize (4,436,247 samples, 0.02%)</title><rect x="615.5" y="517" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="618.45" y="527.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (21,531,863 samples, 0.07%)</title><rect x="143.2" y="325" width="0.8" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="146.16" y="335.5" ></text>
</g>
<g >
<title>syscall.Syscall (3,750,745 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.84" y="639.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (3,720,870 samples, 0.01%)</title><rect x="637.9" y="373" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="640.94" y="383.5" ></text>
</g>
<g >
<title>runtime.nanotime1.abi0 (8,745,547 samples, 0.03%)</title><rect x="264.2" y="501" width="0.4" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="267.23" y="511.5" ></text>
</g>
<g >
<title>consume_obj_stock (19,578,136 samples, 0.07%)</title><rect x="817.6" y="181" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="820.57" y="191.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1.1 (1,697,563,350 samples, 5.91%)</title><rect x="505.7" y="549" width="69.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="508.67" y="559.5" >github...</text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,081,118 samples, 0.01%)</title><rect x="262.9" y="469" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="265.92" y="479.5" ></text>
</g>
<g >
<title>runtime.callers (3,860,045 samples, 0.01%)</title><rect x="491.3" y="421" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="494.32" y="431.5" ></text>
</g>
<g >
<title>dput (14,539,977 samples, 0.05%)</title><rect x="248.9" y="453" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="251.93" y="463.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,771,264 samples, 0.01%)</title><rect x="603.4" y="309" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="606.41" y="319.5" ></text>
</g>
<g >
<title>runtime.newobject (116,154,386 samples, 0.40%)</title><rect x="1166.7" y="421" width="4.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1169.73" y="431.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,901,033 samples, 0.01%)</title><rect x="539.0" y="229" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="542.00" y="239.5" ></text>
</g>
<g >
<title>runtime.typehash (3,107,724 samples, 0.01%)</title><rect x="599.6" y="293" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="602.58" y="303.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (11,613,087 samples, 0.04%)</title><rect x="587.3" y="277" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="590.31" y="287.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (2,994,021 samples, 0.01%)</title><rect x="612.6" y="293" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="615.65" y="303.5" ></text>
</g>
<g >
<title>migrate_enable (24,080,457 samples, 0.08%)</title><rect x="477.0" y="245" width="0.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="479.96" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (3,070,399 samples, 0.01%)</title><rect x="178.4" y="373" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="181.39" y="383.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,462,310 samples, 0.02%)</title><rect x="871.8" y="213" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="874.78" y="223.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,058,472 samples, 0.01%)</title><rect x="615.0" y="373" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="618.02" y="383.5" ></text>
</g>
<g >
<title>new_slab (8,278,217 samples, 0.03%)</title><rect x="863.0" y="117" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="866.03" y="127.5" ></text>
</g>
<g >
<title>handle_mm_fault (63,109,303 samples, 0.22%)</title><rect x="571.4" y="453" width="2.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="574.36" y="463.5" ></text>
</g>
<g >
<title>runtime.growslice (54,799,909 samples, 0.19%)</title><rect x="495.5" y="501" width="2.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="498.51" y="511.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,845,235 samples, 0.01%)</title><rect x="69.0" y="293" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="72.03" y="303.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (36,589,914 samples, 0.13%)</title><rect x="16.5" y="485" width="1.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="19.51" y="495.5" ></text>
</g>
<g >
<title>runtime.nilinterequal (16,324,909 samples, 0.06%)</title><rect x="409.2" y="437" width="0.7" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="412.21" y="447.5" ></text>
</g>
<g >
<title>__folio_alloc (4,655,209 samples, 0.02%)</title><rect x="609.1" y="165" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="612.05" y="175.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (388,471,334 samples, 1.35%)</title><rect x="463.4" y="277" width="15.9" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="466.36" y="287.5" ></text>
</g>
<g >
<title>file_free_rcu (180,719,657 samples, 0.63%)</title><rect x="153.3" y="261" width="7.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="156.33" y="271.5" ></text>
</g>
<g >
<title>runtime.findObject (18,134,733 samples, 0.06%)</title><rect x="277.7" y="517" width="0.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="280.75" y="527.5" ></text>
</g>
<g >
<title>memset_orig (19,792,508 samples, 0.07%)</title><rect x="775.1" y="229" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="778.08" y="239.5" ></text>
</g>
<g >
<title>__kmem_cache_free (8,480,924 samples, 0.03%)</title><rect x="204.2" y="261" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="207.16" y="271.5" ></text>
</g>
<g >
<title>rcu_core (2,908,492 samples, 0.01%)</title><rect x="253.3" y="341" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="256.31" y="351.5" ></text>
</g>
<g >
<title>alloc_pages (9,329,450 samples, 0.03%)</title><rect x="918.0" y="181" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="920.96" y="191.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,291,041 samples, 0.02%)</title><rect x="661.9" y="341" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="664.93" y="351.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (12,208,756 samples, 0.04%)</title><rect x="211.4" y="309" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="214.39" y="319.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,005,948 samples, 0.01%)</title><rect x="603.1" y="229" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="606.10" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (5,273,999 samples, 0.02%)</title><rect x="641.9" y="373" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="644.88" y="383.5" ></text>
</g>
<g >
<title>runtime.mapassign (70,429,593 samples, 0.25%)</title><rect x="577.9" y="309" width="2.9" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="580.92" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (16,287,053 samples, 0.06%)</title><rect x="611.9" y="309" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="614.85" y="319.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (4,670,117 samples, 0.02%)</title><rect x="881.3" y="165" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="884.26" y="175.5" ></text>
</g>
<g >
<title>__slab_free (10,647,345 samples, 0.04%)</title><rect x="160.9" y="229" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="163.87" y="239.5" ></text>
</g>
<g >
<title>memcg_account_kmem (8,518,984 samples, 0.03%)</title><rect x="774.1" y="197" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="777.12" y="207.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,810,085 samples, 0.01%)</title><rect x="561.5" y="389" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="564.51" y="399.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (18,515,681 samples, 0.06%)</title><rect x="587.2" y="293" width="0.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="590.16" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes.func1 (6,184,668 samples, 0.02%)</title><rect x="585.6" y="293" width="0.3" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="588.60" y="303.5" ></text>
</g>
<g >
<title>__mod_memcg_state (5,434,659 samples, 0.02%)</title><rect x="774.3" y="165" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="777.25" y="175.5" ></text>
</g>
<g >
<title>__folio_alloc (4,682,474 samples, 0.02%)</title><rect x="557.1" y="341" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="560.12" y="351.5" ></text>
</g>
<g >
<title>runtime.memhash64 (11,680,485 samples, 0.04%)</title><rect x="410.4" y="421" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="413.39" y="431.5" ></text>
</g>
<g >
<title>runtime.findObject (3,652,800 samples, 0.01%)</title><rect x="609.9" y="229" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="612.93" y="239.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,892,386 samples, 0.01%)</title><rect x="203.7" y="213" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="206.65" y="223.5" ></text>
</g>
<g >
<title>runtime.profilealloc (3,860,045 samples, 0.01%)</title><rect x="491.3" y="453" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="494.32" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (9,335,691 samples, 0.03%)</title><rect x="557.0" y="421" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="559.96" y="431.5" ></text>
</g>
<g >
<title>memcpy_orig (19,818,064 samples, 0.07%)</title><rect x="820.6" y="245" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="823.57" y="255.5" ></text>
</g>
<g >
<title>rcu_core_si (2,892,386 samples, 0.01%)</title><rect x="203.7" y="181" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="206.65" y="191.5" ></text>
</g>
<g >
<title>runtime.schedule (6,383,071 samples, 0.02%)</title><rect x="365.9" y="533" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="368.89" y="543.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,791,417 samples, 0.01%)</title><rect x="1004.3" y="325" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1007.31" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,607,399 samples, 0.02%)</title><rect x="637.5" y="229" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="640.48" y="239.5" ></text>
</g>
<g >
<title>kick_process (4,170,814 samples, 0.01%)</title><rect x="265.1" y="341" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="268.15" y="351.5" ></text>
</g>
<g >
<title>d_set_d_op (19,755,881 samples, 0.07%)</title><rect x="782.2" y="229" width="0.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="785.21" y="239.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (28,364,216 samples, 0.10%)</title><rect x="740.4" y="181" width="1.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="743.41" y="191.5" ></text>
</g>
<g >
<title>rcu_core (16,986,186 samples, 0.06%)</title><rect x="75.2" y="325" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="78.16" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.CORERelocate (368,542,625 samples, 1.28%)</title><rect x="575.4" y="389" width="15.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="578.44" y="399.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,288,119 samples, 0.02%)</title><rect x="603.1" y="293" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="606.07" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,577,587,823 samples, 5.49%)</title><rect x="415.1" y="357" width="64.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="418.07" y="367.5" >do_sysc..</text>
</g>
<g >
<title>_raw_spin_lock_irqsave (46,827,901 samples, 0.16%)</title><rect x="121.0" y="341" width="1.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="124.01" y="351.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (12,260,664 samples, 0.04%)</title><rect x="888.1" y="293" width="0.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="891.09" y="303.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,041,635 samples, 0.01%)</title><rect x="227.7" y="309" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="230.68" y="319.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,913,689 samples, 0.01%)</title><rect x="228.8" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="231.76" y="415.5" ></text>
</g>
<g >
<title>__do_softirq (8,702,953 samples, 0.03%)</title><rect x="94.4" y="341" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="97.40" y="351.5" ></text>
</g>
<g >
<title>update_curr (4,915,453 samples, 0.02%)</title><rect x="127.3" y="277" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="130.33" y="287.5" ></text>
</g>
<g >
<title>runtime.assertI2I2 (2,947,175 samples, 0.01%)</title><rect x="625.8" y="453" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="628.79" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (143,019,416 samples, 0.50%)</title><rect x="755.0" y="133" width="5.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="758.00" y="143.5" ></text>
</g>
<g >
<title>radix_tree_node_rcu_free (2,501,949 samples, 0.01%)</title><rect x="209.7" y="229" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="212.65" y="239.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (12,208,756 samples, 0.04%)</title><rect x="211.4" y="357" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="214.39" y="367.5" ></text>
</g>
<g >
<title>rcu_core_si (3,999,544 samples, 0.01%)</title><rect x="202.6" y="277" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="205.63" y="287.5" ></text>
</g>
<g >
<title>rcu_do_batch (8,702,953 samples, 0.03%)</title><rect x="94.4" y="293" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="97.40" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (15,564,601 samples, 0.05%)</title><rect x="557.0" y="469" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="559.96" y="479.5" ></text>
</g>
<g >
<title>runtime.tracebackPCs (9,244,535 samples, 0.03%)</title><rect x="642.4" y="341" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="645.41" y="351.5" ></text>
</g>
<g >
<title>idr_get_next_ul (4,667,427 samples, 0.02%)</title><rect x="463.1" y="245" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="466.07" y="255.5" ></text>
</g>
<g >
<title>file_free_rcu (4,672,206 samples, 0.02%)</title><rect x="67.8" y="293" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="70.76" y="303.5" ></text>
</g>
<g >
<title>runtime.memmove (6,885,599 samples, 0.02%)</title><rect x="601.5" y="341" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="604.54" y="351.5" ></text>
</g>
<g >
<title>__do_softirq (2,927,540 samples, 0.01%)</title><rect x="85.7" y="341" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="88.66" y="351.5" ></text>
</g>
<g >
<title>mntget (3,051,838 samples, 0.01%)</title><rect x="828.9" y="277" width="0.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="831.93" y="287.5" ></text>
</g>
<g >
<title>alloc_fd (72,768,762 samples, 0.25%)</title><rect x="835.5" y="277" width="3.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="838.48" y="287.5" ></text>
</g>
<g >
<title>runtime.scanobject (14,417,247 samples, 0.05%)</title><rect x="365.2" y="565" width="0.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="368.23" y="575.5" ></text>
</g>
<g >
<title>exc_page_fault (67,410,923 samples, 0.23%)</title><rect x="1185.5" y="485" width="2.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1188.52" y="495.5" ></text>
</g>
<g >
<title>runtime.mallocgc (3,105,806 samples, 0.01%)</title><rect x="586.7" y="261" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="589.71" y="271.5" ></text>
</g>
<g >
<title>unmap_page_range (79,257,784 samples, 0.28%)</title><rect x="36.7" y="389" width="3.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="39.70" y="399.5" ></text>
</g>
<g >
<title>sync_regs (3,889,112 samples, 0.01%)</title><rect x="612.8" y="325" width="0.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="615.77" y="335.5" ></text>
</g>
<g >
<title>runtime.typehash (3,128,939 samples, 0.01%)</title><rect x="411.0" y="437" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="414.03" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc (21,486,961 samples, 0.07%)</title><rect x="636.9" y="357" width="0.9" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="639.88" y="367.5" ></text>
</g>
<g >
<title>__alloc_pages (6,744,587 samples, 0.02%)</title><rect x="863.0" y="85" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="866.03" y="95.5" ></text>
</g>
<g >
<title>init_file (419,541,191 samples, 1.46%)</title><rect x="731.3" y="229" width="17.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="734.30" y="239.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,898,450 samples, 0.01%)</title><rect x="637.3" y="229" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="640.29" y="239.5" ></text>
</g>
<g >
<title>discard_slab (6,416,357 samples, 0.02%)</title><rect x="245.2" y="357" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="248.19" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Spec).Copy (548,153,252 samples, 1.91%)</title><rect x="590.6" y="373" width="22.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="593.61" y="383.5" >g..</text>
</g>
<g >
<title>do_syscall_64 (4,448,407 samples, 0.02%)</title><rect x="613.2" y="309" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="616.18" y="319.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps (14,026,366,778 samples, 48.81%)</title><rect x="613.4" y="565" width="576.0" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
<text x="616.36" y="575.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps</text>
</g>
<g >
<title>_atomic_dec_and_lock (187,603,011 samples, 0.65%)</title><rect x="218.3" y="373" width="7.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="221.27" y="383.5" ></text>
</g>
<g >
<title>alloc_pages (341,419,216 samples, 1.19%)</title><rect x="848.4" y="181" width="14.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="851.45" y="191.5" ></text>
</g>
<g >
<title>__do_softirq (8,806,063 samples, 0.03%)</title><rect x="67.8" y="357" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="70.76" y="367.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,582,310 samples, 0.02%)</title><rect x="1171.1" y="357" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1174.09" y="367.5" ></text>
</g>
<g >
<title>clear_page_erms (3,021,875 samples, 0.01%)</title><rect x="563.7" y="293" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="566.74" y="303.5" ></text>
</g>
<g >
<title>rcu_core_si (8,806,063 samples, 0.03%)</title><rect x="67.8" y="341" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="70.76" y="351.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (7,016,822 samples, 0.02%)</title><rect x="94.9" y="389" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="97.89" y="399.5" ></text>
</g>
<g >
<title>runtime.findObject (11,402,538 samples, 0.04%)</title><rect x="997.7" y="405" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1000.69" y="415.5" ></text>
</g>
<g >
<title>__alloc_pages (9,329,450 samples, 0.03%)</title><rect x="918.0" y="165" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="920.96" y="175.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (7,872,295 samples, 0.03%)</title><rect x="231.0" y="389" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="234.02" y="399.5" ></text>
</g>
<g >
<title>do_check (4,448,407 samples, 0.02%)</title><rect x="613.2" y="213" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="616.18" y="223.5" ></text>
</g>
<g >
<title>error_entry (8,476,314 samples, 0.03%)</title><rect x="1188.3" y="501" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1191.35" y="511.5" ></text>
</g>
<g >
<title>syscall.Syscall (4,065,987 samples, 0.01%)</title><rect x="10.5" y="581" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="13.54" y="591.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,744,587 samples, 0.02%)</title><rect x="863.0" y="69" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="866.03" y="79.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (2,920,742 samples, 0.01%)</title><rect x="86.2" y="293" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="89.17" y="303.5" ></text>
</g>
<g >
<title>rmqueue_bulk (4,509,998 samples, 0.02%)</title><rect x="760.7" y="85" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="763.69" y="95.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,141,007 samples, 0.02%)</title><rect x="227.6" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="230.63" y="415.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4,569,625 samples, 0.02%)</title><rect x="152.3" y="325" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="155.34" y="335.5" ></text>
</g>
<g >
<title>bufio.(*Scanner).Scan (8,492,768 samples, 0.03%)</title><rect x="589.1" y="293" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="592.12" y="303.5" ></text>
</g>
<g >
<title>rcu_do_batch (11,715,067 samples, 0.04%)</title><rect x="85.8" y="309" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="88.81" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,788,732 samples, 0.02%)</title><rect x="603.1" y="341" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="606.07" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (4,659,901 samples, 0.02%)</title><rect x="594.3" y="293" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="597.33" y="303.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,908,492 samples, 0.01%)</title><rect x="253.3" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="256.31" y="447.5" ></text>
</g>
<g >
<title>_get_random_bytes (3,107,293 samples, 0.01%)</title><rect x="763.1" y="117" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="766.11" y="127.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,136,763 samples, 0.01%)</title><rect x="1182.8" y="421" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1185.80" y="431.5" ></text>
</g>
<g >
<title>runtime.unlock2 (20,807,251 samples, 0.07%)</title><rect x="1160.8" y="341" width="0.8" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1163.79" y="351.5" ></text>
</g>
<g >
<title>__slab_free (2,845,235 samples, 0.01%)</title><rect x="69.0" y="277" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="72.03" y="287.5" ></text>
</g>
<g >
<title>__do_softirq (27,538,060 samples, 0.10%)</title><rect x="224.8" y="293" width="1.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="227.85" y="303.5" ></text>
</g>
<g >
<title>rep_movs_alternative (3,066,362 samples, 0.01%)</title><rect x="479.4" y="277" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="482.44" y="287.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (45,154,141 samples, 0.16%)</title><rect x="12.1" y="469" width="1.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="15.11" y="479.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (11,892,554 samples, 0.04%)</title><rect x="147.4" y="261" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="150.43" y="271.5" ></text>
</g>
<g >
<title>irqentry_exit (7,680,351 samples, 0.03%)</title><rect x="1188.0" y="469" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1190.97" y="479.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (13,348,560,910 samples, 46.45%)</title><rect x="624.6" y="485" width="548.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="627.63" y="495.5" >github.com/cilium/ebpf.(*MapSpec).createMap</text>
</g>
<g >
<title>__bpf_map_area_alloc (1,126,769,553 samples, 3.92%)</title><rect x="841.6" y="277" width="46.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="844.57" y="287.5" >__bp..</text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (22,899,038 samples, 0.08%)</title><rect x="793.9" y="165" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="796.86" y="175.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (258,737,709 samples, 0.90%)</title><rect x="215.4" y="405" width="10.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="218.35" y="415.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,860,045 samples, 0.01%)</title><rect x="491.3" y="405" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="494.32" y="415.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (23,056,102 samples, 0.08%)</title><rect x="251.1" y="453" width="0.9" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="254.09" y="463.5" ></text>
</g>
<g >
<title>runtime.gcDrain (2,705,411,346 samples, 9.42%)</title><rect x="254.1" y="565" width="111.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="257.11" y="575.5" >runtime.gcDrain</text>
</g>
<g >
<title>post_alloc_hook (4,572,085 samples, 0.02%)</title><rect x="860.9" y="133" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="863.90" y="143.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (12,279,975 samples, 0.04%)</title><rect x="85.8" y="421" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="88.78" y="431.5" ></text>
</g>
<g >
<title>__unfreeze_partials (7,154,051 samples, 0.02%)</title><rect x="161.0" y="197" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="163.97" y="207.5" ></text>
</g>
<g >
<title>handle_mm_fault (15,167,275 samples, 0.05%)</title><rect x="1180.4" y="341" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1183.37" y="351.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (7,624,706 samples, 0.03%)</title><rect x="525.0" y="293" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="528.00" y="303.5" ></text>
</g>
<g >
<title>clear_page_erms (3,111,850 samples, 0.01%)</title><rect x="592.9" y="133" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="595.93" y="143.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,005,150 samples, 0.01%)</title><rect x="120.9" y="341" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="123.88" y="351.5" ></text>
</g>
<g >
<title>runtime.mProf_Malloc (10,797,174 samples, 0.04%)</title><rect x="642.4" y="405" width="0.5" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="645.41" y="415.5" ></text>
</g>
<g >
<title>do_tkill (6,024,665 samples, 0.02%)</title><rect x="16.1" y="453" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="19.09" y="463.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (13,721,568 samples, 0.05%)</title><rect x="490.8" y="453" width="0.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="493.76" y="463.5" ></text>
</g>
<g >
<title>memcpy_orig (3,866,180 samples, 0.01%)</title><rect x="587.5" y="53" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="590.54" y="63.5" ></text>
</g>
<g >
<title>__slab_free (121,453,484 samples, 0.42%)</title><rect x="242.2" y="405" width="4.9" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="245.16" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (3,850,690 samples, 0.01%)</title><rect x="561.3" y="357" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="564.32" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (11,655,704 samples, 0.04%)</title><rect x="557.0" y="437" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="559.96" y="447.5" ></text>
</g>
<g >
<title>do_user_addr_fault (67,700,800 samples, 0.24%)</title><rect x="571.3" y="469" width="2.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="574.27" y="479.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,848,038 samples, 0.02%)</title><rect x="11.4" y="469" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.42" y="479.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush (3,771,264 samples, 0.01%)</title><rect x="603.4" y="325" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="606.41" y="335.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (136,423,454 samples, 0.47%)</title><rect x="457.3" y="213" width="5.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="460.28" y="223.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (13,221,955 samples, 0.05%)</title><rect x="1170.3" y="341" width="0.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1173.32" y="351.5" ></text>
</g>
<g >
<title>native_write_msr (13,863,614 samples, 0.05%)</title><rect x="177.7" y="309" width="0.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="180.73" y="319.5" ></text>
</g>
<g >
<title>runtime.scanframeworker (2,585,615 samples, 0.01%)</title><rect x="263.5" y="501" width="0.1" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="266.51" y="511.5" ></text>
</g>
<g >
<title>module_put (3,010,904 samples, 0.01%)</title><rect x="251.0" y="453" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="253.96" y="463.5" ></text>
</g>
<g >
<title>clear_page_erms (4,495,886 samples, 0.02%)</title><rect x="643.6" y="245" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="646.62" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (18,172,934 samples, 0.06%)</title><rect x="191.1" y="405" width="0.8" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="194.14" y="415.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (24,239,965 samples, 0.08%)</title><rect x="636.9" y="389" width="1.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="639.88" y="399.5" ></text>
</g>
<g >
<title>file_free_rcu (17,954,467 samples, 0.06%)</title><rect x="68.3" y="309" width="0.7" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="71.27" y="319.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (3,888,254 samples, 0.01%)</title><rect x="37.8" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="40.82" y="335.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (13,100,143 samples, 0.05%)</title><rect x="123.0" y="341" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="125.98" y="351.5" ></text>
</g>
<g >
<title>__folio_alloc (39,150,286 samples, 0.14%)</title><rect x="1002.0" y="229" width="1.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1004.97" y="239.5" ></text>
</g>
<g >
<title>setup_object (4,655,155 samples, 0.02%)</title><rect x="796.2" y="149" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="799.25" y="159.5" ></text>
</g>
<g >
<title>file_free_rcu (3,504,053 samples, 0.01%)</title><rect x="227.7" y="293" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="230.68" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,074,809 samples, 0.01%)</title><rect x="637.5" y="69" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="640.51" y="79.5" ></text>
</g>
<g >
<title>runtime.markroot.func1 (72,704,730 samples, 0.25%)</title><rect x="262.6" y="533" width="2.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="265.56" y="543.5" ></text>
</g>
<g >
<title>runtime.netpoll (2,473,557 samples, 0.01%)</title><rect x="11.1" y="533" width="0.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="14.08" y="543.5" ></text>
</g>
<g >
<title>rcu_core_si (5,292,648 samples, 0.02%)</title><rect x="191.7" y="309" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="194.67" y="319.5" ></text>
</g>
<g >
<title>file_free_rcu (13,951,036 samples, 0.05%)</title><rect x="224.9" y="229" width="0.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="227.94" y="239.5" ></text>
</g>
<g >
<title>rmqueue (12,246,262 samples, 0.04%)</title><rect x="630.4" y="277" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="633.38" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (9,119,321 samples, 0.03%)</title><rect x="1004.7" y="229" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1007.75" y="239.5" ></text>
</g>
<g >
<title>__handle_mm_fault (13,948,075 samples, 0.05%)</title><rect x="582.1" y="229" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="585.05" y="239.5" ></text>
</g>
<g >
<title>fd_install (37,405,005 samples, 0.13%)</title><rect x="829.9" y="293" width="1.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="832.88" y="303.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,920,409 samples, 0.01%)</title><rect x="234.2" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="237.19" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (13,925,174 samples, 0.05%)</title><rect x="580.0" y="229" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="583.02" y="239.5" ></text>
</g>
<g >
<title>__mutex_init (5,963,048 samples, 0.02%)</title><rect x="730.8" y="229" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="733.77" y="239.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,607,399 samples, 0.02%)</title><rect x="637.5" y="245" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="640.48" y="255.5" ></text>
</g>
<g >
<title>uncharge_folio (2,955,673 samples, 0.01%)</title><rect x="38.6" y="261" width="0.1" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="41.59" y="271.5" ></text>
</g>
<g >
<title>rcu_core_si (16,452,042 samples, 0.06%)</title><rect x="236.4" y="341" width="0.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="239.37" y="351.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo.func1 (925,001,389 samples, 3.22%)</title><rect x="575.4" y="533" width="38.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="578.38" y="543.5" >git..</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*FuncProto).copy (31,057,721 samples, 0.11%)</title><rect x="592.7" y="325" width="1.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="595.73" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (4,629,449 samples, 0.02%)</title><rect x="250.8" y="373" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="253.77" y="383.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (4,582,310 samples, 0.02%)</title><rect x="1171.1" y="373" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1174.09" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (2,877,287 samples, 0.01%)</title><rect x="217.8" y="309" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="220.80" y="319.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (310,193,276 samples, 1.08%)</title><rect x="465.2" y="261" width="12.7" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="468.21" y="271.5" ></text>
</g>
<g >
<title>encoding/binary.Read (2,914,021 samples, 0.01%)</title><rect x="505.7" y="533" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="508.67" y="543.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (92,107,136 samples, 0.32%)</title><rect x="1000.4" y="357" width="3.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1003.43" y="367.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,564,100 samples, 0.02%)</title><rect x="794.1" y="53" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="797.08" y="63.5" ></text>
</g>
<g >
<title>do_nanosleep (36,589,914 samples, 0.13%)</title><rect x="16.5" y="469" width="1.5" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="19.51" y="479.5" ></text>
</g>
<g >
<title>rcu_core (11,715,067 samples, 0.04%)</title><rect x="85.8" y="325" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="88.81" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mheap).allocSpan (19,181,765 samples, 0.07%)</title><rect x="636.9" y="309" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="639.88" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (137,340,123 samples, 0.48%)</title><rect x="583.5" y="309" width="5.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="586.48" y="319.5" ></text>
</g>
<g >
<title>__do_softirq (16,452,042 samples, 0.06%)</title><rect x="236.4" y="357" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="239.37" y="367.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,292,648 samples, 0.02%)</title><rect x="191.7" y="389" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="194.67" y="399.5" ></text>
</g>
<g >
<title>__do_softirq (25,405,707 samples, 0.09%)</title><rect x="206.8" y="309" width="1.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="209.81" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,093,507 samples, 0.01%)</title><rect x="576.2" y="229" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="579.24" y="239.5" ></text>
</g>
<g >
<title>runtime.memmove (3,068,689 samples, 0.01%)</title><rect x="587.8" y="277" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="590.79" y="287.5" ></text>
</g>
<g >
<title>rcu_do_batch (6,221,524 samples, 0.02%)</title><rect x="231.1" y="293" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="234.08" y="303.5" ></text>
</g>
<g >
<title>runtime.newMarkBits (3,706,522 samples, 0.01%)</title><rect x="375.7" y="549" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="378.71" y="559.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (375,857,340 samples, 1.31%)</title><rect x="803.6" y="213" width="15.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="806.60" y="223.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,141,007 samples, 0.02%)</title><rect x="227.6" y="389" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="230.63" y="399.5" ></text>
</g>
<g >
<title>file_free_rcu (8,794,325 samples, 0.03%)</title><rect x="85.8" y="293" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="88.81" y="303.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (1,592,280,892 samples, 5.54%)</title><rect x="414.8" y="389" width="65.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="417.78" y="399.5" >runtime..</text>
</g>
<g >
<title>__fput (4,978,596 samples, 0.02%)</title><rect x="253.4" y="469" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="256.43" y="479.5" ></text>
</g>
<g >
<title>runtime.mallocgc (114,664,153 samples, 0.40%)</title><rect x="558.7" y="485" width="4.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="561.65" y="495.5" ></text>
</g>
<g >
<title>reflect.Value.Field (8,454,913 samples, 0.03%)</title><rect x="481.2" y="485" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="484.19" y="495.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (18,484,601 samples, 0.06%)</title><rect x="861.3" y="117" width="0.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="864.27" y="127.5" ></text>
</g>
<g >
<title>error_entry (3,100,085 samples, 0.01%)</title><rect x="580.6" y="277" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="583.59" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,021,135 samples, 0.01%)</title><rect x="228.3" y="261" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="231.28" y="271.5" ></text>
</g>
<g >
<title>__x64_sys_sched_yield (5,636,703 samples, 0.02%)</title><rect x="262.7" y="469" width="0.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="265.69" y="479.5" ></text>
</g>
<g >
<title>irq_exit_rcu (16,452,042 samples, 0.06%)</title><rect x="236.4" y="389" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="239.37" y="399.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (4,573,434 samples, 0.02%)</title><rect x="561.3" y="373" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="564.32" y="383.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,892,386 samples, 0.01%)</title><rect x="203.7" y="245" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="206.65" y="255.5" ></text>
</g>
<g >
<title>bpf_map_put (1,941,165,851 samples, 6.76%)</title><rect x="86.3" y="421" width="79.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="89.29" y="431.5" >bpf_map_put</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14,534,094 samples, 0.05%)</title><rect x="178.5" y="373" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="181.51" y="383.5" ></text>
</g>
<g >
<title>runtime.greyobject (17,438,843 samples, 0.06%)</title><rect x="261.1" y="549" width="0.7" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="264.07" y="559.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (16,452,042 samples, 0.06%)</title><rect x="236.4" y="421" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="239.37" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (4,426,854 samples, 0.02%)</title><rect x="727.1" y="261" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="730.12" y="271.5" ></text>
</g>
<g >
<title>seq_write (5,457,350 samples, 0.02%)</title><rect x="476.4" y="229" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="479.45" y="239.5" ></text>
</g>
<g >
<title>[unknown] (17,209,453 samples, 0.06%)</title><rect x="10.0" y="597" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="607.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (16,596,279 samples, 0.06%)</title><rect x="918.7" y="277" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="921.66" y="287.5" ></text>
</g>
<g >
<title>runtime.wirep (19,856,552 samples, 0.07%)</title><rect x="658.3" y="373" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="661.32" y="383.5" ></text>
</g>
<g >
<title>rcu_core (3,999,544 samples, 0.01%)</title><rect x="202.6" y="261" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="205.63" y="271.5" ></text>
</g>
<g >
<title>rcu_do_batch (282,171,470 samples, 0.98%)</title><rect x="153.2" y="277" width="11.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="156.19" y="287.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (126,550,434 samples, 0.44%)</title><rect x="811.8" y="197" width="5.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="814.84" y="207.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (31,063,943 samples, 0.11%)</title><rect x="93.1" y="373" width="1.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="96.12" y="383.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (4,607,399 samples, 0.02%)</title><rect x="637.5" y="181" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="640.48" y="191.5" ></text>
</g>
<g >
<title>errseq_sample (17,002,020 samples, 0.06%)</title><rect x="824.8" y="261" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="827.78" y="271.5" ></text>
</g>
<g >
<title>runtime.mallocgc (10,061,864 samples, 0.04%)</title><rect x="592.3" y="293" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="595.32" y="303.5" ></text>
</g>
<g >
<title>syscall.Syscall (13,646,842 samples, 0.05%)</title><rect x="14.5" y="597" width="0.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="17.45" y="607.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (3,580,783 samples, 0.01%)</title><rect x="212.0" y="325" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="214.99" y="335.5" ></text>
</g>
<g >
<title>__unfreeze_partials (11,613,384 samples, 0.04%)</title><rect x="157.8" y="197" width="0.4" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="160.77" y="207.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (17,759,044 samples, 0.06%)</title><rect x="583.5" y="293" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="586.51" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (13,977,878 samples, 0.05%)</title><rect x="866.0" y="229" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="869.01" y="239.5" ></text>
</g>
<g >
<title>runtime.memhash64 (10,655,087 samples, 0.04%)</title><rect x="520.7" y="437" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="523.70" y="447.5" ></text>
</g>
<g >
<title>file_free_rcu (3,021,135 samples, 0.01%)</title><rect x="228.3" y="277" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="231.28" y="287.5" ></text>
</g>
<g >
<title>__folio_alloc (3,802,233 samples, 0.01%)</title><rect x="563.7" y="341" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="566.70" y="351.5" ></text>
</g>
<g >
<title>runtime.mallocgc (254,058,756 samples, 0.88%)</title><rect x="632.5" y="437" width="10.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="635.46" y="447.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (10,794,109 samples, 0.04%)</title><rect x="574.0" y="453" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="577.05" y="463.5" ></text>
</g>
<g >
<title>lockref_put_return (10,797,786 samples, 0.04%)</title><rect x="231.4" y="437" width="0.5" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="234.44" y="447.5" ></text>
</g>
<g >
<title>map_create (5,980,817 samples, 0.02%)</title><rect x="927.0" y="341" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="929.99" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (6,788,732 samples, 0.02%)</title><rect x="603.1" y="325" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="606.07" y="335.5" ></text>
</g>
<g >
<title>runtime.findObject (11,420,560 samples, 0.04%)</title><rect x="496.5" y="357" width="0.5" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="499.51" y="367.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (6,934,020 samples, 0.02%)</title><rect x="772.1" y="165" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="775.13" y="175.5" ></text>
</g>
<g >
<title>put_cpu_partial (6,973,529 samples, 0.02%)</title><rect x="245.2" y="389" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="248.17" y="399.5" ></text>
</g>
<g >
<title>array_map_free_timers (4,306,770 samples, 0.01%)</title><rect x="166.1" y="405" width="0.2" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="169.10" y="415.5" ></text>
</g>
<g >
<title>node_tag_clear (4,643,938 samples, 0.02%)</title><rect x="918.5" y="277" width="0.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="921.47" y="287.5" ></text>
</g>
<g >
<title>runtime.scanobject (23,867,298 samples, 0.08%)</title><rect x="604.8" y="213" width="0.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="607.75" y="223.5" ></text>
</g>
<g >
<title>idr_preload (10,334,698 samples, 0.04%)</title><rect x="712.5" y="325" width="0.4" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="715.47" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (5,425,391 samples, 0.02%)</title><rect x="612.1" y="133" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="615.14" y="143.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (21,486,961 samples, 0.07%)</title><rect x="636.9" y="373" width="0.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="639.88" y="383.5" ></text>
</g>
<g >
<title>alloc_pages (20,728,305 samples, 0.07%)</title><rect x="745.7" y="133" width="0.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="748.68" y="143.5" ></text>
</g>
<g >
<title>testing.(*B).launch (3,144,315,868 samples, 10.94%)</title><rect x="376.5" y="597" width="129.2" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="379.55" y="607.5" >testing.(*B).lau..</text>
</g>
<g >
<title>runtime.scanobject (2,986,904 samples, 0.01%)</title><rect x="1182.9" y="389" width="0.1" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1185.93" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (5,456,308 samples, 0.02%)</title><rect x="838.0" y="165" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="840.95" y="175.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,959,716 samples, 0.02%)</title><rect x="247.1" y="389" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="250.15" y="399.5" ></text>
</g>
<g >
<title>__free_one_page (5,926,434 samples, 0.02%)</title><rect x="161.0" y="69" width="0.3" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="164.02" y="79.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (4,582,619 samples, 0.02%)</title><rect x="1185.8" y="389" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1188.77" y="399.5" ></text>
</g>
<g >
<title>__do_softirq (2,917,507 samples, 0.01%)</title><rect x="61.3" y="357" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="64.34" y="367.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (14,760,594 samples, 0.05%)</title><rect x="264.8" y="453" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="267.79" y="463.5" ></text>
</g>
<g >
<title>wp_page_copy (14,578,194 samples, 0.05%)</title><rect x="600.6" y="181" width="0.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="603.60" y="191.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*Map).finalize (6,201,842 samples, 0.02%)</title><rect x="616.0" y="501" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="619.00" y="511.5" ></text>
</g>
<g >
<title>update_load_avg (34,485,042 samples, 0.12%)</title><rect x="181.6" y="341" width="1.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="184.57" y="351.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,111,850 samples, 0.01%)</title><rect x="592.9" y="213" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="595.93" y="223.5" ></text>
</g>
<g >
<title>sched_clock_cpu (8,324,865 samples, 0.03%)</title><rect x="188.7" y="373" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="191.71" y="383.5" ></text>
</g>
<g >
<title>runtime.park_m (3,247,950 samples, 0.01%)</title><rect x="254.0" y="565" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="256.97" y="575.5" ></text>
</g>
<g >
<title>__alloc_pages (10,628,982 samples, 0.04%)</title><rect x="1180.6" y="245" width="0.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1183.56" y="255.5" ></text>
</g>
<g >
<title>alloc_pages (155,977,520 samples, 0.54%)</title><rect x="754.7" y="165" width="6.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="757.69" y="175.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (12,360,416 samples, 0.04%)</title><rect x="909.1" y="309" width="0.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="912.06" y="319.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,456,232 samples, 0.01%)</title><rect x="375.4" y="501" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="378.45" y="511.5" ></text>
</g>
<g >
<title>encoding/binary.intDataSize (20,969,610 samples, 0.07%)</title><rect x="492.3" y="501" width="0.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="495.27" y="511.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (2,986,904 samples, 0.01%)</title><rect x="1182.9" y="469" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1185.93" y="479.5" ></text>
</g>
<g >
<title>security_capable (80,646,561 samples, 0.28%)</title><rect x="890.4" y="277" width="3.3" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="893.43" y="287.5" ></text>
</g>
<g >
<title>handle_mm_fault (54,381,808 samples, 0.19%)</title><rect x="1185.6" y="453" width="2.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1188.58" y="463.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (100,806,125 samples, 0.35%)</title><rect x="595.6" y="325" width="4.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="598.63" y="335.5" ></text>
</g>
<g >
<title>file_free_rcu (13,665,600 samples, 0.05%)</title><rect x="152.5" y="277" width="0.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="155.53" y="287.5" ></text>
</g>
<g >
<title>cache_from_obj (11,104,951 samples, 0.04%)</title><rect x="247.4" y="405" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="250.39" y="415.5" ></text>
</g>
<g >
<title>array_map_alloc_check (33,675,786 samples, 0.12%)</title><rect x="710.0" y="325" width="1.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="713.05" y="335.5" ></text>
</g>
<g >
<title>_copy_from_user (39,650,962 samples, 0.14%)</title><rect x="705.5" y="325" width="1.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="708.50" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4,647,052 samples, 0.02%)</title><rect x="592.0" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="595.03" y="287.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.findProgramTargetInKernel (548,902,869 samples, 1.91%)</title><rect x="590.6" y="405" width="22.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="593.58" y="415.5" >g..</text>
</g>
<g >
<title>runtime.osyield.abi0 (16,267,985 samples, 0.06%)</title><rect x="262.6" y="517" width="0.6" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="265.56" y="527.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,187,692 samples, 0.02%)</title><rect x="1169.8" y="229" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1172.75" y="239.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (9,097,884 samples, 0.03%)</title><rect x="775.9" y="229" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="778.89" y="239.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (9,951,565 samples, 0.03%)</title><rect x="648.5" y="421" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="651.48" y="431.5" ></text>
</g>
<g >
<title>runtime.findRunnable (3,206,695 samples, 0.01%)</title><rect x="254.0" y="533" width="0.1" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="256.98" y="543.5" ></text>
</g>
<g >
<title>[unknown] (122,123,899 samples, 0.42%)</title><rect x="10.0" y="613" width="5.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="623.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (4,607,399 samples, 0.02%)</title><rect x="637.5" y="165" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="640.48" y="175.5" ></text>
</g>
<g >
<title>runtime.greyobject (12,900,541 samples, 0.04%)</title><rect x="497.0" y="357" width="0.5" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="499.98" y="367.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (140,361,281 samples, 0.49%)</title><rect x="448.9" y="245" width="5.8" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="451.94" y="255.5" ></text>
</g>
<g >
<title>__kmalloc_node (22,899,038 samples, 0.08%)</title><rect x="793.9" y="149" width="0.9" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="796.86" y="159.5" ></text>
</g>
<g >
<title>new_slab (197,797,877 samples, 0.69%)</title><rect x="788.3" y="197" width="8.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="791.35" y="207.5" ></text>
</g>
<g >
<title>runtime.netpoll (4,063,966 samples, 0.01%)</title><rect x="15.8" y="549" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="18.84" y="559.5" ></text>
</g>
<g >
<title>__alloc_pages (2,964,053 samples, 0.01%)</title><rect x="615.1" y="357" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="618.15" y="367.5" ></text>
</g>
<g >
<title>runtime.mapaccess2 (3,064,887 samples, 0.01%)</title><rect x="403.8" y="469" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="406.85" y="479.5" ></text>
</g>
<g >
<title>memcg_account_kmem (12,222,800 samples, 0.04%)</title><rect x="881.0" y="213" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="883.98" y="223.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,822,818 samples, 0.01%)</title><rect x="601.6" y="261" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="604.64" y="271.5" ></text>
</g>
<g >
<title>runtime.trygetfull (3,036,498 samples, 0.01%)</title><rect x="260.0" y="533" width="0.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="262.96" y="543.5" ></text>
</g>
<g >
<title>put_cpu_partial (12,182,326 samples, 0.04%)</title><rect x="157.8" y="213" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="160.77" y="223.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,422,944 samples, 0.02%)</title><rect x="576.2" y="309" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="579.17" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,656,191 samples, 0.02%)</title><rect x="245.0" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="247.98" y="383.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,882,018 samples, 0.01%)</title><rect x="249.4" y="405" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="252.40" y="415.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,973,922 samples, 0.01%)</title><rect x="641.9" y="357" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="644.88" y="367.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (5,313,354 samples, 0.02%)</title><rect x="878.4" y="181" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="881.36" y="191.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (5,238,680 samples, 0.02%)</title><rect x="152.3" y="357" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="155.31" y="367.5" ></text>
</g>
<g >
<title>main.main (2,590,285 samples, 0.01%)</title><rect x="376.3" y="597" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="379.28" y="607.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (59,054,349 samples, 0.21%)</title><rect x="765.0" y="213" width="2.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="768.02" y="223.5" ></text>
</g>
<g >
<title>sched_clock (61,704,858 samples, 0.21%)</title><rect x="144.4" y="309" width="2.5" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="147.40" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (16,986,186 samples, 0.06%)</title><rect x="75.2" y="405" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="78.16" y="415.5" ></text>
</g>
<g >
<title>__folio_alloc (3,741,335 samples, 0.01%)</title><rect x="615.1" y="373" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="618.15" y="383.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,074,164 samples, 0.01%)</title><rect x="250.8" y="293" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="253.77" y="303.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,927,540 samples, 0.01%)</title><rect x="85.7" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="88.66" y="303.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (19,304,108 samples, 0.07%)</title><rect x="514.3" y="469" width="0.8" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="517.28" y="479.5" ></text>
</g>
<g >
<title>os.(*File).Read (827,507,536 samples, 2.88%)</title><rect x="522.8" y="469" width="34.0" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="525.79" y="479.5" >os..</text>
</g>
<g >
<title>file_free_rcu (3,202,776 samples, 0.01%)</title><rect x="231.1" y="277" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="234.08" y="287.5" ></text>
</g>
<g >
<title>get_random_u32 (6,110,385 samples, 0.02%)</title><rect x="795.9" y="133" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="798.93" y="143.5" ></text>
</g>
<g >
<title>runtime.unlock2 (2,903,570 samples, 0.01%)</title><rect x="1166.2" y="373" width="0.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="1169.23" y="383.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (3,851,331 samples, 0.01%)</title><rect x="628.8" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="631.83" y="335.5" ></text>
</g>
<g >
<title>futex_wait_queue (4,522,723 samples, 0.02%)</title><rect x="366.0" y="373" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="368.95" y="383.5" ></text>
</g>
<g >
<title>rmqueue_bulk (13,943,843 samples, 0.05%)</title><rect x="861.5" y="101" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="864.46" y="111.5" ></text>
</g>
<g >
<title>alloc_file (1,274,954,290 samples, 4.44%)</title><rect x="727.4" y="261" width="52.3" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="730.37" y="271.5" >alloc..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,882,018 samples, 0.01%)</title><rect x="249.4" y="421" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="252.40" y="431.5" ></text>
</g>
<g >
<title>runtime.morestack.abi0 (3,611,105 samples, 0.01%)</title><rect x="1189.4" y="629" width="0.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1192.42" y="639.5" ></text>
</g>
<g >
<title>do_user_addr_fault (13,948,075 samples, 0.05%)</title><rect x="582.1" y="261" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="585.05" y="271.5" ></text>
</g>
<g >
<title>d_instantiate (4,624,977 samples, 0.02%)</title><rect x="827.4" y="277" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="830.37" y="287.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,898,450 samples, 0.01%)</title><rect x="637.3" y="181" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="640.29" y="191.5" ></text>
</g>
<g >
<title>rcu_core_si (6,435,708 samples, 0.02%)</title><rect x="251.8" y="357" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="254.77" y="367.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (18,217,871 samples, 0.06%)</title><rect x="862.7" y="149" width="0.7" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="865.66" y="159.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.indexTypes (271,886,347 samples, 0.95%)</title><rect x="601.8" y="357" width="11.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="604.83" y="367.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,093,507 samples, 0.01%)</title><rect x="576.2" y="213" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="579.24" y="223.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (9,200,346 samples, 0.03%)</title><rect x="704.4" y="309" width="0.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="707.43" y="319.5" ></text>
</g>
<g >
<title>bpf_prog_load (4,448,407 samples, 0.02%)</title><rect x="613.2" y="261" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="616.18" y="271.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (938,194,881 samples, 3.26%)</title><rect x="843.7" y="245" width="38.5" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="846.68" y="255.5" >__k..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (7,872,295 samples, 0.03%)</title><rect x="231.0" y="405" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="234.02" y="415.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.GetMapsInfo (2,622,564,739 samples, 9.13%)</title><rect x="505.7" y="565" width="107.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="508.67" y="575.5" >github.com/EM..</text>
</g>
<g >
<title>clear_page_erms (4,564,100 samples, 0.02%)</title><rect x="794.1" y="37" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="797.08" y="47.5" ></text>
</g>
<g >
<title>setup_object (2,950,606 samples, 0.01%)</title><rect x="865.3" y="165" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="868.26" y="175.5" ></text>
</g>
<g >
<title>__do_softirq (12,208,756 samples, 0.04%)</title><rect x="211.4" y="293" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="214.39" y="303.5" ></text>
</g>
<g >
<title>native_write_msr (4,170,814 samples, 0.01%)</title><rect x="265.1" y="309" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="268.15" y="319.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (10,673,541 samples, 0.04%)</title><rect x="921.5" y="309" width="0.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="924.45" y="319.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,988,014 samples, 0.04%)</title><rect x="225.1" y="213" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="228.06" y="223.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,898,450 samples, 0.01%)</title><rect x="637.3" y="245" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="640.29" y="255.5" ></text>
</g>
<g >
<title>__sys_bpf (5,541,551,422 samples, 19.28%)</title><rect x="699.0" y="341" width="227.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="701.99" y="351.5" >__sys_bpf</text>
</g>
<g >
<title>tick_program_event (4,663,279 samples, 0.02%)</title><rect x="16.6" y="421" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="19.58" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions.func1 (7,393,115 samples, 0.03%)</title><rect x="1175.5" y="453" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1178.52" y="463.5" ></text>
</g>
<g >
<title>error_entry (3,830,862 samples, 0.01%)</title><rect x="10.3" y="549" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="13.29" y="559.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (29,950,005 samples, 0.10%)</title><rect x="93.2" y="341" width="1.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="96.17" y="351.5" ></text>
</g>
<g >
<title>ksys_read (814,482,535 samples, 2.83%)</title><rect x="523.1" y="341" width="33.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="526.07" y="351.5" >ks..</text>
</g>
<g >
<title>runtime.scanblock (16,786,021 samples, 0.06%)</title><rect x="285.7" y="533" width="0.7" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="288.74" y="543.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush.func1 (3,771,264 samples, 0.01%)</title><rect x="603.4" y="293" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="606.41" y="303.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (5,170,809 samples, 0.02%)</title><rect x="1001.1" y="245" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1004.06" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_lock (148,295,980 samples, 0.52%)</title><rect x="114.8" y="309" width="6.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="117.79" y="319.5" ></text>
</g>
<g >
<title>__do_softirq (5,292,648 samples, 0.02%)</title><rect x="191.7" y="325" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="194.67" y="335.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (4,640,927 samples, 0.02%)</title><rect x="543.7" y="245" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="546.70" y="255.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,051,970 samples, 0.01%)</title><rect x="601.7" y="213" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="604.67" y="223.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (12,946,742 samples, 0.05%)</title><rect x="963.0" y="389" width="0.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="966.02" y="399.5" ></text>
</g>
<g >
<title>__do_softirq (6,435,708 samples, 0.02%)</title><rect x="251.8" y="373" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="254.77" y="383.5" ></text>
</g>
<g >
<title>do_send_specific (6,024,665 samples, 0.02%)</title><rect x="16.1" y="437" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="19.09" y="447.5" ></text>
</g>
<g >
<title>runtime.newobject (10,836,359 samples, 0.04%)</title><rect x="592.3" y="309" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="595.29" y="319.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (6,612,109 samples, 0.02%)</title><rect x="513.5" y="469" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="516.48" y="479.5" ></text>
</g>
<g >
<title>update_load_avg (6,173,417 samples, 0.02%)</title><rect x="183.6" y="341" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="186.55" y="351.5" ></text>
</g>
<g >
<title>do_send_sig_info (7,166,757 samples, 0.02%)</title><rect x="265.1" y="405" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="268.05" y="415.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,501,949 samples, 0.01%)</title><rect x="209.7" y="213" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="212.65" y="223.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,711,901 samples, 0.01%)</title><rect x="813.7" y="181" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="816.66" y="191.5" ></text>
</g>
<g >
<title>runtime.notesleep (4,860,690 samples, 0.02%)</title><rect x="366.0" y="485" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="368.95" y="495.5" ></text>
</g>
<g >
<title>__x64_sys_read (815,221,499 samples, 2.84%)</title><rect x="523.0" y="357" width="33.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="526.04" y="367.5" >__..</text>
</g>
<g >
<title>vfs_read (1,572,157,340 samples, 5.47%)</title><rect x="415.2" y="309" width="64.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="418.16" y="319.5" >vfs_read</text>
</g>
<g >
<title>asm_exc_page_fault (4,609,019 samples, 0.02%)</title><rect x="598.5" y="309" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="601.50" y="319.5" ></text>
</g>
<g >
<title>__cond_resched (354,904,985 samples, 1.24%)</title><rect x="174.7" y="421" width="14.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="177.71" y="431.5" ></text>
</g>
<g >
<title>try_to_wake_up (868,200,229 samples, 3.02%)</title><rect x="112.3" y="357" width="35.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="115.27" y="367.5" >try..</text>
</g>
<g >
<title>runtime.mapassign_faststr (51,141,931 samples, 0.18%)</title><rect x="580.8" y="309" width="2.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="583.81" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.LoadKernelSpec (548,153,252 samples, 1.91%)</title><rect x="590.6" y="389" width="22.5" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="593.61" y="399.5" >g..</text>
</g>
<g >
<title>os.(*File).ReadAt (3,090,970 samples, 0.01%)</title><rect x="589.3" y="261" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="592.31" y="271.5" ></text>
</g>
<g >
<title>do_send_specific (10,930,033 samples, 0.04%)</title><rect x="264.9" y="421" width="0.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="267.92" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,721,219,322 samples, 19.91%)</title><rect x="18.8" y="629" width="234.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="21.79" y="639.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>__anon_inode_getfile (3,859,374 samples, 0.01%)</title><rect x="719.3" y="309" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="722.25" y="319.5" ></text>
</g>
<g >
<title>exc_page_fault (5,426,428 samples, 0.02%)</title><rect x="592.0" y="293" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="595.03" y="303.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (149,415,168 samples, 0.52%)</title><rect x="114.7" y="325" width="6.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="117.75" y="335.5" ></text>
</g>
<g >
<title>bpf_map_put (28,236,613 samples, 0.10%)</title><rect x="525.4" y="293" width="1.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="528.41" y="303.5" ></text>
</g>
<g >
<title>mmput (80,035,313 samples, 0.28%)</title><rect x="36.7" y="469" width="3.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="39.66" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (95,497,751 samples, 0.33%)</title><rect x="570.6" y="501" width="3.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="573.60" y="511.5" ></text>
</g>
<g >
<title>__schedule (334,636,039 samples, 1.16%)</title><rect x="175.4" y="405" width="13.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="178.43" y="415.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (56,700,967 samples, 0.20%)</title><rect x="184.7" y="373" width="2.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="187.70" y="383.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,851,331 samples, 0.01%)</title><rect x="628.8" y="341" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="631.83" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (6,936,706 samples, 0.02%)</title><rect x="1169.7" y="245" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1172.72" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,107,882 samples, 0.01%)</title><rect x="579.4" y="293" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="582.41" y="303.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (56,663,064 samples, 0.20%)</title><rect x="739.3" y="197" width="2.3" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="742.25" y="207.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (8,449,388 samples, 0.03%)</title><rect x="1170.9" y="389" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1173.93" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,721,219,322 samples, 19.91%)</title><rect x="18.8" y="613" width="234.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="21.79" y="623.5" >do_syscall_64</text>
</g>
<g >
<title>__mem_cgroup_uncharge_list (5,281,706 samples, 0.02%)</title><rect x="38.5" y="277" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="41.50" y="287.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (12,867,181 samples, 0.04%)</title><rect x="563.4" y="485" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="566.36" y="495.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (301,643,706 samples, 1.05%)</title><rect x="152.5" y="341" width="12.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="155.53" y="351.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readStringTable (32,364,607 samples, 0.11%)</title><rect x="589.1" y="309" width="1.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="592.12" y="319.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (6,922,975 samples, 0.02%)</title><rect x="547.5" y="245" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="550.55" y="255.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (21,486,961 samples, 0.07%)</title><rect x="636.9" y="341" width="0.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="639.88" y="351.5" ></text>
</g>
<g >
<title>__kmalloc_node (6,154,198 samples, 0.02%)</title><rect x="887.8" y="277" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="890.84" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (37,084,001 samples, 0.13%)</title><rect x="16.5" y="501" width="1.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="19.49" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.parseBTF (183,602,851 samples, 0.64%)</title><rect x="583.0" y="325" width="7.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="586.01" y="335.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (10,861,259 samples, 0.04%)</title><rect x="464.8" y="261" width="0.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="467.76" y="271.5" ></text>
</g>
<g >
<title>__unfreeze_partials (6,973,529 samples, 0.02%)</title><rect x="245.2" y="373" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="248.17" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*collectionLoader).loadProgram (923,438,412 samples, 3.21%)</title><rect x="575.4" y="437" width="38.0" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="578.44" y="447.5" >git..</text>
</g>
<g >
<title>prepare_task_switch (63,191,807 samples, 0.22%)</title><rect x="184.4" y="389" width="2.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="187.44" y="399.5" ></text>
</g>
<g >
<title>rcu_core (29,950,005 samples, 0.10%)</title><rect x="93.2" y="293" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="96.17" y="303.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (3,787,416 samples, 0.01%)</title><rect x="1188.1" y="405" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1191.13" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func1 (3,074,525 samples, 0.01%)</title><rect x="625.9" y="469" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="628.91" y="479.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,100,176 samples, 0.01%)</title><rect x="588.7" y="245" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="591.68" y="255.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (41,232,050 samples, 0.14%)</title><rect x="245.5" y="389" width="1.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="248.45" y="399.5" ></text>
</g>
<g >
<title>runtime.findObject (28,804,038 samples, 0.10%)</title><rect x="1181.5" y="421" width="1.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="1184.46" y="431.5" ></text>
</g>
<g >
<title>do_anonymous_page (65,155,654 samples, 0.23%)</title><rect x="1000.9" y="261" width="2.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1003.90" y="271.5" ></text>
</g>
<g >
<title>reflect.Value.SetUint (9,260,406 samples, 0.03%)</title><rect x="402.7" y="469" width="0.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="405.67" y="479.5" ></text>
</g>
<g >
<title>__rcu_read_lock (10,185,995 samples, 0.04%)</title><rect x="192.8" y="389" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="195.77" y="399.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,413,587 samples, 0.02%)</title><rect x="464.3" y="261" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="467.32" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute (51,679,330 samples, 0.18%)</title><rect x="644.5" y="453" width="2.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="647.47" y="463.5" ></text>
</g>
<g >
<title>mod_objcg_state (15,408,763 samples, 0.05%)</title><rect x="159.1" y="229" width="0.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="162.11" y="239.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (18,957,573 samples, 0.07%)</title><rect x="1180.4" y="389" width="0.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1183.37" y="399.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign (923,438,412 samples, 3.21%)</title><rect x="575.4" y="485" width="38.0" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="578.44" y="495.5" >git..</text>
</g>
<g >
<title>idr_get_next_ul (81,397,353 samples, 0.28%)</title><rect x="544.2" y="245" width="3.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="547.21" y="255.5" ></text>
</g>
<g >
<title>cap_capable (20,179,020 samples, 0.07%)</title><rect x="904.7" y="277" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="907.66" y="287.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (6,437,680 samples, 0.02%)</title><rect x="132.3" y="309" width="0.3" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="135.29" y="319.5" ></text>
</g>
<g >
<title>__radix_tree_delete (42,392,554 samples, 0.15%)</title><rect x="96.0" y="373" width="1.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="98.96" y="383.5" ></text>
</g>
<g >
<title>__slab_free (2,501,949 samples, 0.01%)</title><rect x="209.7" y="197" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="212.65" y="207.5" ></text>
</g>
<g >
<title>xas_descend (20,158,209 samples, 0.07%)</title><rect x="814.5" y="165" width="0.9" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="817.53" y="175.5" ></text>
</g>
<g >
<title>futex_wait (4,522,723 samples, 0.02%)</title><rect x="366.0" y="389" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="368.95" y="399.5" ></text>
</g>
<g >
<title>rcu_core (2,877,287 samples, 0.01%)</title><rect x="217.8" y="277" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="220.80" y="287.5" ></text>
</g>
<g >
<title>__alloc_pages (4,655,209 samples, 0.02%)</title><rect x="609.1" y="149" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="612.05" y="159.5" ></text>
</g>
<g >
<title>do_user_addr_fault (14,657,098 samples, 0.05%)</title><rect x="583.6" y="261" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="586.58" y="271.5" ></text>
</g>
<g >
<title>get_page_from_freelist (9,245,570 samples, 0.03%)</title><rect x="583.8" y="133" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="586.77" y="143.5" ></text>
</g>
<g >
<title>__do_softirq (2,920,409 samples, 0.01%)</title><rect x="234.2" y="341" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="237.19" y="351.5" ></text>
</g>
<g >
<title>cap_capable (3,113,667 samples, 0.01%)</title><rect x="893.6" y="261" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="896.61" y="271.5" ></text>
</g>
<g >
<title>capable (125,316,167 samples, 0.44%)</title><rect x="888.6" y="293" width="5.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="891.60" y="303.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,655,209 samples, 0.02%)</title><rect x="609.1" y="133" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="612.05" y="143.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.newEssentialName (21,651,542 samples, 0.08%)</title><rect x="576.4" y="309" width="0.9" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="579.39" y="319.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (4,449,356 samples, 0.02%)</title><rect x="886.9" y="245" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="889.90" y="255.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (358,986,328 samples, 1.25%)</title><rect x="448.5" y="261" width="14.8" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="451.52" y="271.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (13,096,783 samples, 0.05%)</title><rect x="586.1" y="277" width="0.5" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="589.08" y="287.5" ></text>
</g>
<g >
<title>runtime.memmove (5,392,458 samples, 0.02%)</title><rect x="589.5" y="293" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="592.53" y="303.5" ></text>
</g>
<g >
<title>runtime.addspecial (3,807,792,925 samples, 13.25%)</title><rect x="1005.3" y="357" width="156.4" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1008.31" y="367.5" >runtime.addspecial</text>
</g>
<g >
<title>do_user_addr_fault (82,979,065 samples, 0.29%)</title><rect x="627.7" y="421" width="3.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="630.73" y="431.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,115,632 samples, 0.01%)</title><rect x="627.5" y="453" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="630.54" y="463.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (3,518,442 samples, 0.01%)</title><rect x="90.0" y="405" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="93.03" y="415.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (17,483,915 samples, 0.06%)</title><rect x="159.7" y="229" width="0.8" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="162.75" y="239.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (24,608,646 samples, 0.09%)</title><rect x="604.7" y="293" width="1.0" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="607.72" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).fixupMagicFields (4,656,496 samples, 0.02%)</title><rect x="626.3" y="469" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="629.29" y="479.5" ></text>
</g>
<g >
<title>__alloc_pages (20,728,305 samples, 0.07%)</title><rect x="745.7" y="117" width="0.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="748.68" y="127.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint32 (8,574,635 samples, 0.03%)</title><rect x="394.9" y="453" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="397.89" y="463.5" ></text>
</g>
<g >
<title>dput (1,432,597,568 samples, 4.99%)</title><rect x="172.5" y="437" width="58.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="175.51" y="447.5" >dput</text>
</g>
<g >
<title>runtime.heapBitsSetType (3,810,610 samples, 0.01%)</title><rect x="632.3" y="437" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="635.30" y="447.5" ></text>
</g>
<g >
<title>migrate_disable (7,521,314 samples, 0.03%)</title><rect x="556.0" y="277" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="559.02" y="287.5" ></text>
</g>
<g >
<title>security_file_free (31,419,642 samples, 0.11%)</title><rect x="252.1" y="453" width="1.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="255.14" y="463.5" ></text>
</g>
<g >
<title>rcu_core_si (2,866,708 samples, 0.01%)</title><rect x="213.3" y="261" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="216.29" y="271.5" ></text>
</g>
<g >
<title>syscall.RawSyscall6 (22,094,321 samples, 0.08%)</title><rect x="991.9" y="405" width="0.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="994.90" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (18,814,450 samples, 0.07%)</title><rect x="566.7" y="421" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="569.65" y="431.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (16,867,161 samples, 0.06%)</title><rect x="721.3" y="293" width="0.7" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="724.35" y="303.5" ></text>
</g>
<g >
<title>runtime.freedefer (7,534,392 samples, 0.03%)</title><rect x="1175.8" y="469" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1178.83" y="479.5" ></text>
</g>
<g >
<title>idr_get_next (96,057,788 samples, 0.33%)</title><rect x="543.9" y="261" width="3.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="546.89" y="271.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (12,972,376 samples, 0.05%)</title><rect x="395.2" y="453" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="398.24" y="463.5" ></text>
</g>
<g >
<title>do_anonymous_page (70,612,859 samples, 0.25%)</title><rect x="628.0" y="357" width="2.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="630.98" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (3,890,347 samples, 0.01%)</title><rect x="849.0" y="133" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="852.04" y="143.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,882,018 samples, 0.01%)</title><rect x="249.4" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="252.40" y="399.5" ></text>
</g>
<g >
<title>unmap_single_vma (79,257,784 samples, 0.28%)</title><rect x="36.7" y="405" width="3.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="39.70" y="415.5" ></text>
</g>
<g >
<title>security_capable (3,108,093 samples, 0.01%)</title><rect x="921.9" y="309" width="0.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="924.89" y="319.5" ></text>
</g>
<g >
<title>btf_nested_type_is_trusted (3,713,361 samples, 0.01%)</title><rect x="613.2" y="165" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="616.21" y="175.5" ></text>
</g>
<g >
<title>migrate_enable (12,381,589 samples, 0.04%)</title><rect x="478.8" y="261" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="481.80" y="271.5" ></text>
</g>
<g >
<title>__alloc_pages (34,786,645 samples, 0.12%)</title><rect x="572.4" y="357" width="1.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="575.37" y="367.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (255,457,472 samples, 0.89%)</title><rect x="909.6" y="309" width="10.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="912.57" y="319.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (3,652,800 samples, 0.01%)</title><rect x="609.9" y="245" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="612.93" y="255.5" ></text>
</g>
<g >
<title>enqueue_task_fair (47,434,649 samples, 0.17%)</title><rect x="126.3" y="309" width="2.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="129.30" y="319.5" ></text>
</g>
<g >
<title>memset_orig (6,707,175 samples, 0.02%)</title><rect x="748.2" y="197" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="751.22" y="207.5" ></text>
</g>
<g >
<title>__x64_sys_futex (4,522,723 samples, 0.02%)</title><rect x="366.0" y="421" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="368.95" y="431.5" ></text>
</g>
<g >
<title>rcu_do_batch (10,457,139 samples, 0.04%)</title><rect x="206.3" y="229" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="209.31" y="239.5" ></text>
</g>
<g >
<title>__alloc_pages (6,215,756 samples, 0.02%)</title><rect x="614.7" y="373" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="617.71" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (327,105,650 samples, 1.14%)</title><rect x="848.7" y="149" width="13.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="851.66" y="159.5" ></text>
</g>
<g >
<title>pick_next_task_fair (122,144,929 samples, 0.43%)</title><rect x="179.2" y="373" width="5.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="182.22" y="383.5" ></text>
</g>
<g >
<title>__do_softirq (2,913,689 samples, 0.01%)</title><rect x="228.8" y="341" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="231.76" y="351.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (6,180,004 samples, 0.02%)</title><rect x="712.1" y="325" width="0.3" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="715.13" y="335.5" ></text>
</g>
<g >
<title>__do_softirq (29,950,005 samples, 0.10%)</title><rect x="93.2" y="325" width="1.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="96.17" y="335.5" ></text>
</g>
<g >
<title>testing.(*B).runN (2,590,285 samples, 0.01%)</title><rect x="376.3" y="549" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="379.28" y="559.5" ></text>
</g>
<g >
<title>new_slab (51,720,013 samples, 0.18%)</title><rect x="745.7" y="165" width="2.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="748.68" y="175.5" ></text>
</g>
<g >
<title>runtime.(*mcache).refill (36,877,473 samples, 0.13%)</title><rect x="561.3" y="453" width="1.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="564.32" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (21,932,639 samples, 0.08%)</title><rect x="566.5" y="469" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="569.53" y="479.5" ></text>
</g>
<g >
<title>file_free_rcu (2,903,099 samples, 0.01%)</title><rect x="245.0" y="261" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="248.00" y="271.5" ></text>
</g>
<g >
<title>rcu_core_si (4,656,191 samples, 0.02%)</title><rect x="245.0" y="309" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="247.98" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages (38,368,998 samples, 0.13%)</title><rect x="1002.0" y="213" width="1.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="1004.97" y="223.5" ></text>
</g>
<g >
<title>_raw_spin_lock (5,368,063 samples, 0.02%)</title><rect x="176.1" y="389" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="179.05" y="399.5" ></text>
</g>
<g >
<title>runtime.gcenable.func1 (248,982,682 samples, 0.87%)</title><rect x="365.8" y="613" width="10.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="368.83" y="623.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (2,986,904 samples, 0.01%)</title><rect x="1182.9" y="405" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="1185.93" y="415.5" ></text>
</g>
<g >
<title>free_unref_page_list (16,989,696 samples, 0.06%)</title><rect x="38.7" y="277" width="0.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="41.75" y="287.5" ></text>
</g>
<g >
<title>fput (23,563,284 samples, 0.08%)</title><rect x="35.6" y="453" width="0.9" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="38.57" y="463.5" ></text>
</g>
<g >
<title>runtime.bgscavenge (5,069,694 samples, 0.02%)</title><rect x="376.1" y="597" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="379.05" y="607.5" ></text>
</g>
<g >
<title>errors.Is (9,028,610 samples, 0.03%)</title><rect x="618.3" y="485" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="621.33" y="495.5" ></text>
</g>
<g >
<title>vma_alloc_folio (40,706,435 samples, 0.14%)</title><rect x="1001.9" y="245" width="1.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1004.90" y="255.5" ></text>
</g>
<g >
<title>delete_node (3,714,288 samples, 0.01%)</title><rect x="103.5" y="373" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="106.52" y="383.5" ></text>
</g>
<g >
<title>runtime.sysmon (86,815,724 samples, 0.30%)</title><rect x="10.9" y="549" width="3.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="13.85" y="559.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (24,608,646 samples, 0.09%)</title><rect x="604.7" y="309" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="607.72" y="319.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,094,160 samples, 0.01%)</title><rect x="592.1" y="213" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="595.10" y="223.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (16,986,186 samples, 0.06%)</title><rect x="75.2" y="421" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="78.16" y="431.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,656,191 samples, 0.02%)</title><rect x="245.0" y="341" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="247.98" y="351.5" ></text>
</g>
<g >
<title>file_free_rcu (21,645,877 samples, 0.08%)</title><rect x="93.3" y="261" width="0.9" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="96.27" y="271.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (10,001,475 samples, 0.03%)</title><rect x="798.8" y="213" width="0.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="801.77" y="223.5" ></text>
</g>
<g >
<title>clear_page_erms (3,074,809 samples, 0.01%)</title><rect x="637.5" y="53" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="640.51" y="63.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).uncacheSpan (3,878,148 samples, 0.01%)</title><rect x="489.9" y="421" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="492.93" y="431.5" ></text>
</g>
<g >
<title>__rcu_read_lock (16,827,348 samples, 0.06%)</title><rect x="59.3" y="437" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="62.33" y="447.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (4,647,224 samples, 0.02%)</title><rect x="582.6" y="245" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="585.62" y="255.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (3,092,099 samples, 0.01%)</title><rect x="582.2" y="165" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="585.18" y="175.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,093,507 samples, 0.01%)</title><rect x="576.2" y="245" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="579.24" y="255.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (9,780,279 samples, 0.03%)</title><rect x="1158.4" y="277" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1161.40" y="287.5" ></text>
</g>
<g >
<title>irq_exit_rcu (25,405,707 samples, 0.09%)</title><rect x="206.8" y="341" width="1.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="209.81" y="351.5" ></text>
</g>
<g >
<title>clear_page_erms (5,456,308 samples, 0.02%)</title><rect x="838.0" y="133" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="840.95" y="143.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap (137,331,886 samples, 0.48%)</title><rect x="618.7" y="485" width="5.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="621.70" y="495.5" ></text>
</g>
<g >
<title>rcu_do_batch (7,547,492 samples, 0.03%)</title><rect x="169.9" y="293" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="172.93" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,860,690 samples, 0.02%)</title><rect x="366.0" y="453" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="368.95" y="463.5" ></text>
</g>
<g >
<title>mntput (52,029,657 samples, 0.18%)</title><rect x="232.2" y="437" width="2.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="235.18" y="447.5" ></text>
</g>
<g >
<title>lru_add_fn (6,974,736 samples, 0.02%)</title><rect x="1001.5" y="197" width="0.3" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1004.52" y="207.5" ></text>
</g>
<g >
<title>runtime.procyield.abi0 (6,967,221 samples, 0.02%)</title><rect x="263.2" y="517" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="266.23" y="527.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (6,957,425 samples, 0.02%)</title><rect x="10.2" y="565" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.16" y="575.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,091,784 samples, 0.01%)</title><rect x="245.0" y="277" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="248.00" y="287.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (3,871,821 samples, 0.01%)</title><rect x="631.0" y="405" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="633.98" y="415.5" ></text>
</g>
<g >
<title>tick_sched_handle (3,074,752 samples, 0.01%)</title><rect x="662.0" y="293" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="665.02" y="303.5" ></text>
</g>
<g >
<title>x86_pmu_disable (38,481,805 samples, 0.13%)</title><rect x="185.3" y="325" width="1.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="188.32" y="335.5" ></text>
</g>
<g >
<title>runtime.efaceeq (7,679,829 samples, 0.03%)</title><rect x="408.9" y="437" width="0.3" height="15.0" fill="rgb(216,55,13)" rx="2" ry="2" />
<text x="411.89" y="447.5" ></text>
</g>
<g >
<title>mod_objcg_state (56,130,255 samples, 0.20%)</title><rect x="209.8" y="373" width="2.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="212.83" y="383.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (7,232,945 samples, 0.03%)</title><rect x="959.6" y="373" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="962.57" y="383.5" ></text>
</g>
<g >
<title>allocate_slab (11,644,676 samples, 0.04%)</title><rect x="918.0" y="197" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="920.96" y="207.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (7,748,721 samples, 0.03%)</title><rect x="395.8" y="453" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="398.77" y="463.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,866,708 samples, 0.01%)</title><rect x="213.3" y="341" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="216.29" y="351.5" ></text>
</g>
<g >
<title>runtime.tgkill.abi0 (23,369,093 samples, 0.08%)</title><rect x="264.6" y="501" width="0.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="267.59" y="511.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,866,708 samples, 0.01%)</title><rect x="213.3" y="229" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="216.29" y="239.5" ></text>
</g>
<g >
<title>runtime.memmove (13,982,744 samples, 0.05%)</title><rect x="593.3" y="309" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="596.31" y="319.5" ></text>
</g>
<g >
<title>runtime.mapaccess1 (3,104,457 samples, 0.01%)</title><rect x="601.4" y="341" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="604.42" y="351.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (6,429,373 samples, 0.02%)</title><rect x="16.5" y="453" width="0.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="19.51" y="463.5" ></text>
</g>
<g >
<title>runtime.scanobject (47,860,816 samples, 0.17%)</title><rect x="495.7" y="373" width="1.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="498.67" y="383.5" ></text>
</g>
<g >
<title>select_idle_sibling (8,101,050 samples, 0.03%)</title><rect x="124.6" y="325" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="127.60" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,999,544 samples, 0.01%)</title><rect x="202.6" y="341" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="205.63" y="351.5" ></text>
</g>
<g >
<title>____fput (5,067,369,842 samples, 17.63%)</title><rect x="45.3" y="469" width="208.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="48.34" y="479.5" >____fput</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,866,708 samples, 0.01%)</title><rect x="213.3" y="325" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="216.29" y="335.5" ></text>
</g>
<g >
<title>xas_descend (9,288,546 samples, 0.03%)</title><rect x="816.5" y="181" width="0.4" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="819.53" y="191.5" ></text>
</g>
<g >
<title>pick_next_task (129,203,418 samples, 0.45%)</title><rect x="179.1" y="389" width="5.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="182.12" y="399.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4,759,137 samples, 0.02%)</title><rect x="178.5" y="325" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="181.51" y="335.5" ></text>
</g>
<g >
<title>psi_group_change (26,078,730 samples, 0.09%)</title><rect x="187.6" y="373" width="1.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="190.60" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,114,965 samples, 0.01%)</title><rect x="594.7" y="293" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="597.74" y="303.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (22,428,565 samples, 0.08%)</title><rect x="213.4" y="341" width="1.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="216.43" y="351.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (11,659,928 samples, 0.04%)</title><rect x="165.3" y="389" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="168.27" y="399.5" ></text>
</g>
<g >
<title>rcu_do_batch (3,021,135 samples, 0.01%)</title><rect x="228.3" y="293" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="231.28" y="303.5" ></text>
</g>
<g >
<title>file_free_rcu (4,235,906 samples, 0.01%)</title><rect x="247.1" y="277" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="250.15" y="287.5" ></text>
</g>
<g >
<title>irqentry_exit (3,908,897 samples, 0.01%)</title><rect x="557.4" y="437" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="560.44" y="447.5" ></text>
</g>
<g >
<title>x86_pmu_disable (3,108,105 samples, 0.01%)</title><rect x="186.9" y="341" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="189.90" y="351.5" ></text>
</g>
<g >
<title>runtime.bulkBarrierPreWrite (15,681,104 samples, 0.05%)</title><rect x="609.4" y="309" width="0.7" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="612.43" y="319.5" ></text>
</g>
<g >
<title>xas_start (3,038,947 samples, 0.01%)</title><rect x="816.9" y="181" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="819.91" y="191.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,908,897 samples, 0.01%)</title><rect x="557.4" y="421" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="560.44" y="431.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (18,576,066 samples, 0.06%)</title><rect x="579.8" y="277" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="582.83" y="287.5" ></text>
</g>
<g >
<title>update_process_times (3,894,130 samples, 0.01%)</title><rect x="1158.6" y="229" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1161.64" y="239.5" ></text>
</g>
<g >
<title>___slab_alloc (437,346,118 samples, 1.52%)</title><rect x="847.5" y="229" width="17.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="850.48" y="239.5" ></text>
</g>
<g >
<title>runtime.memmove (3,097,085 samples, 0.01%)</title><rect x="591.8" y="309" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="594.78" y="319.5" ></text>
</g>
<g >
<title>rcu_core (10,150,098 samples, 0.04%)</title><rect x="191.9" y="309" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="194.91" y="319.5" ></text>
</g>
<g >
<title>do_user_addr_fault (13,236,218 samples, 0.05%)</title><rect x="643.3" y="389" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="646.33" y="399.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (16,280,246 samples, 0.06%)</title><rect x="394.2" y="453" width="0.7" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="397.22" y="463.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (22,168,017 samples, 0.08%)</title><rect x="761.1" y="165" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="764.09" y="175.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (825,188,584 samples, 2.87%)</title><rect x="522.9" y="405" width="33.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="525.88" y="415.5" >ru..</text>
</g>
<g >
<title>__kmalloc_node (1,085,918,946 samples, 3.78%)</title><rect x="842.8" y="261" width="44.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="845.77" y="271.5" >__km..</text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.kernelSpec (368,542,625 samples, 1.28%)</title><rect x="575.4" y="373" width="15.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="578.44" y="383.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (3,093,142,295 samples, 10.76%)</title><rect x="377.0" y="517" width="127.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="379.96" y="527.5" >github.com/EMni..</text>
</g>
<g >
<title>dequeue_task (9,598,374 samples, 0.03%)</title><rect x="16.9" y="421" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="19.87" y="431.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (50,606,739 samples, 0.18%)</title><rect x="638.4" y="373" width="2.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="641.38" y="383.5" ></text>
</g>
<g >
<title>do_anonymous_page (8,494,655 samples, 0.03%)</title><rect x="1169.7" y="293" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1172.69" y="303.5" ></text>
</g>
<g >
<title>check_mem_access (3,713,361 samples, 0.01%)</title><rect x="613.2" y="197" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="616.21" y="207.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (8,398,765,979 samples, 29.23%)</title><rect x="647.9" y="437" width="344.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="650.92" y="447.5" >syscall.Syscall.abi0</text>
</g>
<g >
<title>handle_mm_fault (78,390,336 samples, 0.27%)</title><rect x="627.8" y="405" width="3.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="630.76" y="415.5" ></text>
</g>
<g >
<title>task_work_run (5,205,926,875 samples, 18.12%)</title><rect x="40.0" y="485" width="213.7" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="42.95" y="495.5" >task_work_run</text>
</g>
<g >
<title>mod_objcg_state (29,764,400 samples, 0.10%)</title><rect x="771.2" y="197" width="1.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="774.19" y="207.5" ></text>
</g>
<g >
<title>strcmp (2,970,616 samples, 0.01%)</title><rect x="613.2" y="149" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text x="616.24" y="159.5" ></text>
</g>
<g >
<title>[[vdso]] (6,085,629 samples, 0.02%)</title><rect x="264.3" y="485" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="267.34" y="495.5" ></text>
</g>
<g >
<title>runtime.pcvalue (3,097,127 samples, 0.01%)</title><rect x="642.4" y="293" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="645.44" y="303.5" ></text>
</g>
<g >
<title>runtime.findObject (8,162,802 samples, 0.03%)</title><rect x="605.0" y="197" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="607.99" y="207.5" ></text>
</g>
<g >
<title>cache_from_obj (48,061,936 samples, 0.17%)</title><rect x="207.8" y="373" width="2.0" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="210.85" y="383.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (49,380,755 samples, 0.17%)</title><rect x="495.6" y="405" width="2.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="498.61" y="415.5" ></text>
</g>
<g >
<title>syscall.Syscall (826,727,856 samples, 2.88%)</title><rect x="522.8" y="421" width="34.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="525.82" y="431.5" >sy..</text>
</g>
<g >
<title>handle_pte_fault (11,845,621 samples, 0.04%)</title><rect x="643.4" y="341" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="646.35" y="351.5" ></text>
</g>
<g >
<title>___slab_alloc (3,804,285 samples, 0.01%)</title><rect x="761.6" y="117" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="764.56" y="127.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (4,573,434 samples, 0.02%)</title><rect x="561.3" y="389" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="564.32" y="399.5" ></text>
</g>
<g >
<title>runtime.gcDrainN (3,804,290 samples, 0.01%)</title><rect x="490.5" y="373" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="493.54" y="383.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).tryGet (3,794,232 samples, 0.01%)</title><rect x="259.9" y="549" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="262.93" y="559.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,927,540 samples, 0.01%)</title><rect x="85.7" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="88.66" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (14,015,206 samples, 0.05%)</title><rect x="643.3" y="421" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="646.33" y="431.5" ></text>
</g>
<g >
<title>__schedule (28,810,279 samples, 0.10%)</title><rect x="16.8" y="437" width="1.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="19.83" y="447.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (24,608,646 samples, 0.09%)</title><rect x="604.7" y="245" width="1.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="607.72" y="255.5" ></text>
</g>
<g >
<title>__handle_mm_fault (14,657,098 samples, 0.05%)</title><rect x="583.6" y="229" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="586.58" y="239.5" ></text>
</g>
<g >
<title>rcu_core_si (30,902,069 samples, 0.11%)</title><rect x="68.1" y="357" width="1.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="71.12" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (7,916,617 samples, 0.03%)</title><rect x="111.6" y="357" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="114.59" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,760,282 samples, 0.01%)</title><rect x="18.4" y="597" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="21.39" y="607.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,629,449 samples, 0.02%)</title><rect x="250.8" y="405" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="253.77" y="415.5" ></text>
</g>
<g >
<title>__folio_alloc (3,086,788 samples, 0.01%)</title><rect x="585.9" y="149" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="588.92" y="159.5" ></text>
</g>
<g >
<title>__vmalloc_node_range (5,456,308 samples, 0.02%)</title><rect x="838.0" y="213" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="840.95" y="223.5" ></text>
</g>
<g >
<title>__folio_alloc (7,650,599 samples, 0.03%)</title><rect x="600.9" y="149" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="603.88" y="159.5" ></text>
</g>
<g >
<title>runtime.(*mspan).init (4,679,061 samples, 0.02%)</title><rect x="637.3" y="293" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="640.26" y="303.5" ></text>
</g>
<g >
<title>__dentry_kill (901,397,963 samples, 3.14%)</title><rect x="189.3" y="421" width="37.0" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="192.28" y="431.5" >__d..</text>
</g>
<g >
<title>rcu_core (2,892,386 samples, 0.01%)</title><rect x="203.7" y="165" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="206.65" y="175.5" ></text>
</g>
<g >
<title>runtime.mstart.abi0 (68,822,494 samples, 0.24%)</title><rect x="15.6" y="613" width="2.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="18.56" y="623.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (52,450,329 samples, 0.18%)</title><rect x="204.6" y="357" width="2.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="207.61" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock (27,527,176 samples, 0.10%)</title><rect x="226.5" y="421" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="229.47" y="431.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,111,850 samples, 0.01%)</title><rect x="592.9" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="595.93" y="159.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (4,612,922 samples, 0.02%)</title><rect x="572.0" y="357" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="574.99" y="367.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (267,050,424 samples, 0.93%)</title><rect x="131.1" y="325" width="11.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="134.11" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,657,747 samples, 0.03%)</title><rect x="169.9" y="389" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="172.91" y="399.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (103,733,568 samples, 0.36%)</title><rect x="510.8" y="485" width="4.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="513.82" y="495.5" ></text>
</g>
<g >
<title>try_to_wake_up (3,076,433 samples, 0.01%)</title><rect x="111.4" y="373" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="114.42" y="383.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4,862,777 samples, 0.02%)</title><rect x="178.5" y="341" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="181.51" y="351.5" ></text>
</g>
<g >
<title>free_slab (34,094,263 samples, 0.12%)</title><rect x="203.1" y="309" width="1.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="206.14" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,051,970 samples, 0.01%)</title><rect x="601.7" y="165" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="604.67" y="175.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,959,716 samples, 0.02%)</title><rect x="247.1" y="405" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="250.15" y="415.5" ></text>
</g>
<g >
<title>errors.Is (4,624,725 samples, 0.02%)</title><rect x="376.8" y="517" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="379.77" y="527.5" ></text>
</g>
<g >
<title>apparmor_task_kill (2,494,826 samples, 0.01%)</title><rect x="264.9" y="373" width="0.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text x="267.95" y="383.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (45,991,895 samples, 0.16%)</title><rect x="38.1" y="341" width="1.9" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="41.06" y="351.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (4,562,601 samples, 0.02%)</title><rect x="1188.1" y="437" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1191.10" y="447.5" ></text>
</g>
<g >
<title>do_anonymous_page (5,340,048 samples, 0.02%)</title><rect x="563.6" y="373" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="566.64" y="383.5" ></text>
</g>
<g >
<title>__check_object_size (4,423,650 samples, 0.02%)</title><rect x="698.8" y="341" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="701.81" y="351.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (3,823,500 samples, 0.01%)</title><rect x="379.4" y="501" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="382.41" y="511.5" ></text>
</g>
<g >
<title>pick_next_task_fair (4,798,588 samples, 0.02%)</title><rect x="17.4" y="405" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="20.39" y="415.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (48,837,770 samples, 0.17%)</title><rect x="446.2" y="261" width="2.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="449.17" y="271.5" ></text>
</g>
<g >
<title>rcu_do_batch (16,986,186 samples, 0.06%)</title><rect x="75.2" y="309" width="0.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="78.16" y="319.5" ></text>
</g>
<g >
<title>runtime.casgstatus (40,665,367 samples, 0.14%)</title><rect x="651.7" y="373" width="1.7" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="654.72" y="383.5" ></text>
</g>
<g >
<title>runtime.(*spanSet).push (10,215,983 samples, 0.04%)</title><rect x="375.3" y="549" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="378.29" y="559.5" ></text>
</g>
<g >
<title>__kmalloc_large_node (7,758,613 samples, 0.03%)</title><rect x="837.6" y="197" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="840.64" y="207.5" ></text>
</g>
<g >
<title>reflect.Value.SetInt (6,840,465 samples, 0.02%)</title><rect x="514.0" y="469" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="517.00" y="479.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (173,199,567 samples, 0.60%)</title><rect x="831.4" y="293" width="7.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="834.42" y="303.5" ></text>
</g>
<g >
<title>rcu_core_si (9,498,918 samples, 0.03%)</title><rect x="209.4" y="277" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="212.43" y="287.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,913,689 samples, 0.01%)</title><rect x="228.8" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="231.76" y="399.5" ></text>
</g>
<g >
<title>mod_node_page_state (2,926,666 samples, 0.01%)</title><rect x="864.0" y="181" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="867.03" y="191.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (3,771,941 samples, 0.01%)</title><rect x="513.8" y="469" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="516.85" y="479.5" ></text>
</g>
<g >
<title>rcu_do_batch (10,150,098 samples, 0.04%)</title><rect x="191.9" y="293" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="194.91" y="303.5" ></text>
</g>
<g >
<title>runtime.(*unwinder).resolveInternal (3,097,127 samples, 0.01%)</title><rect x="642.4" y="309" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="645.44" y="319.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (4,681,360 samples, 0.02%)</title><rect x="462.9" y="229" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="465.88" y="239.5" ></text>
</g>
<g >
<title>xas_start (28,572,178 samples, 0.10%)</title><rect x="815.4" y="165" width="1.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="818.36" y="175.5" ></text>
</g>
<g >
<title>bpf_seq_read (790,146,755 samples, 2.75%)</title><rect x="524.0" y="309" width="32.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="527.04" y="319.5" >bp..</text>
</g>
<g >
<title>exc_page_fault (6,097,622 samples, 0.02%)</title><rect x="563.6" y="453" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="566.64" y="463.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9,498,918 samples, 0.03%)</title><rect x="209.4" y="309" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="212.43" y="319.5" ></text>
</g>
<g >
<title>__do_softirq (9,671,317 samples, 0.03%)</title><rect x="178.7" y="309" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="181.71" y="319.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2,523,816 samples, 0.01%)</title><rect x="262.8" y="389" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="265.76" y="399.5" ></text>
</g>
<g >
<title>bpf_map_put (31,430,631 samples, 0.11%)</title><rect x="69.4" y="437" width="1.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="72.39" y="447.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc1 (4,582,310 samples, 0.02%)</title><rect x="1171.1" y="325" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1174.09" y="335.5" ></text>
</g>
<g >
<title>encoding/binary.Read (1,394,916,722 samples, 4.85%)</title><rect x="506.8" y="517" width="57.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="509.77" y="527.5" >encodi..</text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (13,110,255 samples, 0.05%)</title><rect x="14.5" y="581" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="17.48" y="591.5" ></text>
</g>
<g >
<title>rcu_core (24,309,016 samples, 0.08%)</title><rect x="206.8" y="277" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="209.81" y="287.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,702,953 samples, 0.03%)</title><rect x="94.4" y="389" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="97.40" y="399.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (79,818,022 samples, 0.28%)</title><rect x="1185.0" y="501" width="3.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1188.01" y="511.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (28,459,503 samples, 0.10%)</title><rect x="776.3" y="229" width="1.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="779.27" y="239.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,283,115 samples, 0.07%)</title><rect x="264.6" y="485" width="0.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="267.64" y="495.5" ></text>
</g>
<g >
<title>do_wp_page (12,399,274 samples, 0.04%)</title><rect x="582.1" y="197" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="585.11" y="207.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,682,474 samples, 0.02%)</title><rect x="557.1" y="309" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="560.12" y="319.5" ></text>
</g>
<g >
<title>runtime.heapBitsSetType (6,195,867 samples, 0.02%)</title><rect x="588.6" y="261" width="0.3" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="591.65" y="271.5" ></text>
</g>
<g >
<title>get_signal (5,719,027,213 samples, 19.90%)</title><rect x="18.9" y="533" width="234.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="21.88" y="543.5" >get_signal</text>
</g>
<g >
<title>slab_update_freelist.isra.0 (6,396,139 samples, 0.02%)</title><rect x="247.8" y="405" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="250.85" y="415.5" ></text>
</g>
<g >
<title>schedule (37,334,023 samples, 0.13%)</title><rect x="12.4" y="437" width="1.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="15.42" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (13,595,041 samples, 0.05%)</title><rect x="217.4" y="389" width="0.5" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="220.36" y="399.5" ></text>
</g>
<g >
<title>seq_write (4,638,752 samples, 0.02%)</title><rect x="554.9" y="229" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="557.93" y="239.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5,719,027,213 samples, 19.90%)</title><rect x="18.9" y="597" width="234.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="21.88" y="607.5" >syscall_exit_to_user_mode</text>
</g>
<g >
<title>__do_softirq (9,498,918 samples, 0.03%)</title><rect x="209.4" y="293" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="212.43" y="303.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (2,697,541 samples, 0.01%)</title><rect x="13.2" y="405" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="16.22" y="415.5" ></text>
</g>
<g >
<title>sync_regs (3,023,995 samples, 0.01%)</title><rect x="1181.3" y="389" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1184.33" y="399.5" ></text>
</g>
<g >
<title>do_user_addr_fault (21,282,866 samples, 0.07%)</title><rect x="614.5" y="485" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="617.52" y="495.5" ></text>
</g>
<g >
<title>kmem_cache_free (8,716,300 samples, 0.03%)</title><rect x="75.3" y="277" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="78.31" y="287.5" ></text>
</g>
<g >
<title>runtime.memmove (132,121,016 samples, 0.46%)</title><rect x="1183.4" y="517" width="5.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1186.40" y="527.5" ></text>
</g>
<g >
<title>wp_page_copy (7,578,274 samples, 0.03%)</title><rect x="615.0" y="405" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="617.99" y="415.5" ></text>
</g>
<g >
<title>rcu_core (11,737,024 samples, 0.04%)</title><rect x="206.3" y="245" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="209.28" y="255.5" ></text>
</g>
<g >
<title>runtime.persistentalloc1 (10,626,431 samples, 0.04%)</title><rect x="1004.7" y="309" width="0.5" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1007.72" y="319.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,656,191 samples, 0.02%)</title><rect x="245.0" y="357" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="247.98" y="367.5" ></text>
</g>
<g >
<title>testing.(*B).runN (16,649,798,153 samples, 57.94%)</title><rect x="505.7" y="597" width="683.7" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="508.67" y="607.5" >testing.(*B).runN</text>
</g>
<g >
<title>get_page_from_freelist (3,876,193 samples, 0.01%)</title><rect x="582.4" y="117" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="585.43" y="127.5" ></text>
</g>
<g >
<title>__queue_work (1,057,677,481 samples, 3.68%)</title><rect x="106.2" y="389" width="43.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="109.19" y="399.5" >__qu..</text>
</g>
<g >
<title>__irq_exit_rcu (2,877,287 samples, 0.01%)</title><rect x="217.8" y="325" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="220.80" y="335.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,888,352 samples, 0.02%)</title><rect x="251.8" y="325" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="254.79" y="335.5" ></text>
</g>
<g >
<title>runtime.(*gcWork).put (3,796,955 samples, 0.01%)</title><rect x="640.2" y="293" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="643.18" y="303.5" ></text>
</g>
<g >
<title>discard_slab (7,154,051 samples, 0.02%)</title><rect x="161.0" y="181" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="163.97" y="191.5" ></text>
</g>
<g >
<title>exc_page_fault (3,898,450 samples, 0.01%)</title><rect x="637.3" y="261" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="640.29" y="271.5" ></text>
</g>
<g >
<title>sched_clock_cpu (17,984,431 samples, 0.06%)</title><rect x="147.2" y="325" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="150.18" y="335.5" ></text>
</g>
<g >
<title>runtime.growslice (8,289,132 samples, 0.03%)</title><rect x="565.6" y="517" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="568.61" y="527.5" ></text>
</g>
<g >
<title>runtime.interhash (3,095,035 samples, 0.01%)</title><rect x="600.2" y="309" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="603.16" y="319.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,111,850 samples, 0.01%)</title><rect x="592.9" y="261" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="595.93" y="271.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,111,850 samples, 0.01%)</title><rect x="592.9" y="229" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="595.93" y="239.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (51,816,797 samples, 0.18%)</title><rect x="772.5" y="213" width="2.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="775.51" y="223.5" ></text>
</g>
<g >
<title>runtime.retake (8,313,030 samples, 0.03%)</title><rect x="16.0" y="549" width="0.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="19.03" y="559.5" ></text>
</g>
<g >
<title>allocate_slab (6,110,926 samples, 0.02%)</title><rect x="794.1" y="85" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="797.08" y="95.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (42,113,278 samples, 0.15%)</title><rect x="16.4" y="533" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="19.45" y="543.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (7,320,951 samples, 0.03%)</title><rect x="85.1" y="421" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="88.11" y="431.5" ></text>
</g>
<g >
<title>__cond_resched (5,932,390 samples, 0.02%)</title><rect x="58.9" y="437" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="61.87" y="447.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (24,681,629 samples, 0.09%)</title><rect x="642.9" y="437" width="1.0" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="645.89" y="447.5" ></text>
</g>
<g >
<title>vma_alloc_folio (7,553,264 samples, 0.03%)</title><rect x="643.5" y="309" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="646.53" y="319.5" ></text>
</g>
<g >
<title>__radix_tree_preload (20,030,136 samples, 0.07%)</title><rect x="920.2" y="293" width="0.8" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="923.16" y="303.5" ></text>
</g>
<g >
<title>runtime.(*mheap).nextSpanForSweep (9,739,232 samples, 0.03%)</title><rect x="366.9" y="565" width="0.4" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="369.85" y="575.5" ></text>
</g>
<g >
<title>runtime.mcall (2,994,023 samples, 0.01%)</title><rect x="366.1" y="565" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="369.15" y="575.5" ></text>
</g>
<g >
<title>put_cpu_partial (7,706,677 samples, 0.03%)</title><rect x="161.0" y="213" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="163.97" y="223.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,340,048 samples, 0.02%)</title><rect x="563.6" y="405" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="566.64" y="415.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*copier).copy (249,442,765 samples, 0.87%)</title><rect x="591.1" y="341" width="10.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="594.08" y="351.5" ></text>
</g>
<g >
<title>bpf_seq_read (1,521,946,663 samples, 5.30%)</title><rect x="417.1" y="293" width="62.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="420.07" y="303.5" >bpf_se..</text>
</g>
<g >
<title>runtime.deductAssistCredit (49,380,755 samples, 0.17%)</title><rect x="495.6" y="469" width="2.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="498.61" y="479.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,647,052 samples, 0.02%)</title><rect x="592.0" y="261" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="595.03" y="271.5" ></text>
</g>
<g >
<title>rcu_do_batch (27,994,055 samples, 0.10%)</title><rect x="68.2" y="325" width="1.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="71.24" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,629,449 samples, 0.02%)</title><rect x="250.8" y="421" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="253.77" y="431.5" ></text>
</g>
<g >
<title>syscall.Syscall (1,596,114,866 samples, 5.55%)</title><rect x="414.6" y="405" width="65.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="417.63" y="415.5" >syscall..</text>
</g>
<g >
<title>__irq_exit_rcu (6,435,708 samples, 0.02%)</title><rect x="251.8" y="389" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="254.77" y="399.5" ></text>
</g>
<g >
<title>refill_stock (6,387,521 samples, 0.02%)</title><rect x="214.1" y="325" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="217.09" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (16,452,042 samples, 0.06%)</title><rect x="236.4" y="405" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="239.37" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (4,669,548 samples, 0.02%)</title><rect x="614.7" y="341" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="617.71" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,601,117 samples, 0.02%)</title><rect x="110.2" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="113.22" y="383.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (24,608,646 samples, 0.09%)</title><rect x="604.7" y="277" width="1.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="607.72" y="287.5" ></text>
</g>
<g >
<title>runtime.writeHeapBits.flush (3,863,763 samples, 0.01%)</title><rect x="488.8" y="373" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="491.82" y="383.5" ></text>
</g>
<g >
<title>clear_page_erms (6,141,588 samples, 0.02%)</title><rect x="600.9" y="101" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="603.94" y="111.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,765,656 samples, 0.01%)</title><rect x="192.2" y="277" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="195.17" y="287.5" ></text>
</g>
<g >
<title>free_unref_page (7,154,051 samples, 0.02%)</title><rect x="161.0" y="117" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="163.97" y="127.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (51,154,761 samples, 0.18%)</title><rect x="90.3" y="389" width="2.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="93.35" y="399.5" ></text>
</g>
<g >
<title>runtime.sysMmap.abi0 (10,626,431 samples, 0.04%)</title><rect x="1004.7" y="261" width="0.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1007.72" y="271.5" ></text>
</g>
<g >
<title>__alloc_pages (6,200,828 samples, 0.02%)</title><rect x="612.1" y="165" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="615.14" y="175.5" ></text>
</g>
<g >
<title>__folio_alloc (6,200,828 samples, 0.02%)</title><rect x="612.1" y="181" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="615.14" y="191.5" ></text>
</g>
<g >
<title>runtime.persistentalloc (11,340,528 samples, 0.04%)</title><rect x="1004.7" y="341" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1007.72" y="351.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (16,885,527 samples, 0.06%)</title><rect x="797.8" y="213" width="0.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="800.79" y="223.5" ></text>
</g>
<g >
<title>queue_work_on (1,511,521,959 samples, 5.26%)</title><rect x="103.7" y="405" width="62.0" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="106.68" y="415.5" >queue_..</text>
</g>
<g >
<title>__do_softirq (5,141,007 samples, 0.02%)</title><rect x="227.6" y="357" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="230.63" y="367.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,965,400 samples, 0.01%)</title><rect x="251.8" y="293" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="254.84" y="303.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (3,059,972 samples, 0.01%)</title><rect x="513.4" y="453" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="516.36" y="463.5" ></text>
</g>
<g >
<title>do_user_addr_fault (58,948,604 samples, 0.21%)</title><rect x="1185.5" y="469" width="2.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1188.55" y="479.5" ></text>
</g>
<g >
<title>rcu_core (2,920,409 samples, 0.01%)</title><rect x="234.2" y="309" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="237.19" y="319.5" ></text>
</g>
<g >
<title>put_cpu_partial (3,030,614 samples, 0.01%)</title><rect x="93.8" y="213" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="96.82" y="223.5" ></text>
</g>
<g >
<title>runtime.greyobject (497,874,705 samples, 1.73%)</title><rect x="337.2" y="533" width="20.4" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="340.17" y="543.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (4,607,399 samples, 0.02%)</title><rect x="637.5" y="213" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="640.48" y="223.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,292,648 samples, 0.02%)</title><rect x="191.7" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="194.67" y="383.5" ></text>
</g>
<g >
<title>rcu_core (5,292,648 samples, 0.02%)</title><rect x="191.7" y="293" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="194.67" y="303.5" ></text>
</g>
<g >
<title>update_curr (3,641,115 samples, 0.01%)</title><rect x="183.8" y="357" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="186.81" y="367.5" ></text>
</g>
<g >
<title>runtime.profilealloc (10,797,174 samples, 0.04%)</title><rect x="642.4" y="421" width="0.5" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="645.41" y="431.5" ></text>
</g>
<g >
<title>security_task_kill (3,154,391 samples, 0.01%)</title><rect x="264.9" y="389" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="267.92" y="399.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,892,386 samples, 0.01%)</title><rect x="203.7" y="149" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="206.65" y="159.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,908,492 samples, 0.01%)</title><rect x="253.3" y="389" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="256.31" y="399.5" ></text>
</g>
<g >
<title>capable (9,153,713 samples, 0.03%)</title><rect x="711.7" y="325" width="0.4" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="714.75" y="335.5" ></text>
</g>
<g >
<title>select_task_rq_fair (26,930,378 samples, 0.09%)</title><rect x="123.8" y="341" width="1.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="126.83" y="351.5" ></text>
</g>
<g >
<title>security_file_alloc (296,949,095 samples, 1.03%)</title><rect x="736.3" y="213" width="12.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="739.33" y="223.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (7,680,351 samples, 0.03%)</title><rect x="1188.0" y="453" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1190.97" y="463.5" ></text>
</g>
<g >
<title>runtime.goexit.abi0 (22,783,394,892 samples, 79.29%)</title><rect x="253.8" y="629" width="935.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="256.79" y="639.5" >runtime.goexit.abi0</text>
</g>
<g >
<title>do_user_addr_fault (3,822,818 samples, 0.01%)</title><rect x="601.6" y="293" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="604.64" y="303.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4,169,570 samples, 0.01%)</title><rect x="18.2" y="533" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="21.19" y="543.5" ></text>
</g>
<g >
<title>__do_softirq (3,021,135 samples, 0.01%)</title><rect x="228.3" y="341" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="231.28" y="351.5" ></text>
</g>
<g >
<title>rcu_do_batch (15,904,838 samples, 0.06%)</title><rect x="236.4" y="309" width="0.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="239.39" y="319.5" ></text>
</g>
<g >
<title>bpf_seq_write (7,016,728 samples, 0.02%)</title><rect x="476.7" y="245" width="0.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="479.67" y="255.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,082,847 samples, 0.03%)</title><rect x="169.9" y="357" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="172.93" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.NewMapWithOptions (6,140,019 samples, 0.02%)</title><rect x="1189.1" y="533" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1192.10" y="543.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (9,226,476 samples, 0.03%)</title><rect x="177.3" y="309" width="0.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="180.35" y="319.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (3,136,763 samples, 0.01%)</title><rect x="1182.8" y="437" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1185.80" y="447.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (27,355,883 samples, 0.10%)</title><rect x="539.1" y="277" width="1.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="542.12" y="287.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (47,748,800 samples, 0.17%)</title><rect x="170.3" y="405" width="1.9" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="173.27" y="415.5" ></text>
</g>
<g >
<title>syscall.Syscall (4,448,407 samples, 0.02%)</title><rect x="613.2" y="357" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="616.18" y="367.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,877,287 samples, 0.01%)</title><rect x="217.8" y="373" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="220.80" y="383.5" ></text>
</g>
<g >
<title>rep_movs_alternative (37,815,357 samples, 0.13%)</title><rect x="923.7" y="325" width="1.6" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="926.73" y="335.5" ></text>
</g>
<g >
<title>check_preempt_curr (20,219,436 samples, 0.07%)</title><rect x="125.1" y="325" width="0.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="128.12" y="335.5" ></text>
</g>
<g >
<title>bufio.(*Reader).Read (846,779,548 samples, 2.95%)</title><rect x="522.0" y="485" width="34.8" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="525.00" y="495.5" >bu..</text>
</g>
<g >
<title>runtime.gcAssistAlloc (49,380,755 samples, 0.17%)</title><rect x="495.6" y="453" width="2.0" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="498.61" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (17,833,819 samples, 0.06%)</title><rect x="264.7" y="469" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="267.74" y="479.5" ></text>
</g>
<g >
<title>runtime.heapBits.next (4,533,827 samples, 0.02%)</title><rect x="1177.4" y="485" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1180.41" y="495.5" ></text>
</g>
<g >
<title>try_to_wake_up (2,814,543 samples, 0.01%)</title><rect x="1158.5" y="229" width="0.1" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1161.50" y="239.5" ></text>
</g>
<g >
<title>kmem_cache_free (185,531,285 samples, 0.65%)</title><rect x="240.5" y="421" width="7.6" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="243.49" y="431.5" ></text>
</g>
<g >
<title>schedule (30,081,323 samples, 0.10%)</title><rect x="16.8" y="453" width="1.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="19.77" y="463.5" ></text>
</g>
<g >
<title>idr_alloc_u32 (233,856,769 samples, 0.81%)</title><rect x="910.2" y="293" width="9.6" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="913.17" y="303.5" ></text>
</g>
<g >
<title>errors.Is (37,119,086 samples, 0.13%)</title><rect x="493.1" y="501" width="1.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="496.13" y="511.5" ></text>
</g>
<g >
<title>rcu_core (8,915,345 samples, 0.03%)</title><rect x="178.7" y="277" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="181.73" y="287.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (10,868,023 samples, 0.04%)</title><rect x="480.7" y="485" width="0.5" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="483.74" y="495.5" ></text>
</g>
<g >
<title>put_prev_entity (3,774,941 samples, 0.01%)</title><rect x="184.2" y="373" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="187.23" y="383.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*stringTable).Lookup (26,980,028 samples, 0.09%)</title><rect x="584.5" y="293" width="1.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="587.46" y="303.5" ></text>
</g>
<g >
<title>__schedule (5,040,097 samples, 0.02%)</title><rect x="262.7" y="421" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="265.71" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func1 (3,069,795 samples, 0.01%)</title><rect x="626.2" y="453" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="629.16" y="463.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (2,986,904 samples, 0.01%)</title><rect x="1182.9" y="437" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1185.93" y="447.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (3,090,970 samples, 0.01%)</title><rect x="589.3" y="245" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="592.31" y="255.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).grow (9,814,206 samples, 0.03%)</title><rect x="561.3" y="421" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="564.32" y="431.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (877,046,546 samples, 3.05%)</title><rect x="783.0" y="229" width="36.0" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="786.02" y="239.5" >kme..</text>
</g>
<g >
<title>memchr_inv (41,641,888 samples, 0.14%)</title><rect x="922.0" y="325" width="1.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="925.02" y="335.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3,810,684 samples, 0.01%)</title><rect x="178.5" y="309" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="181.52" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,920,409 samples, 0.01%)</title><rect x="234.2" y="389" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="237.19" y="399.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (6,930,208 samples, 0.02%)</title><rect x="1187.2" y="309" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="1190.18" y="319.5" ></text>
</g>
<g >
<title>task_work_add (24,315,431 samples, 0.08%)</title><rect x="34.6" y="437" width="1.0" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="37.57" y="447.5" ></text>
</g>
<g >
<title>collapse_huge_page (4,607,399 samples, 0.02%)</title><rect x="637.5" y="117" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="640.48" y="127.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (21,282,866 samples, 0.07%)</title><rect x="614.5" y="517" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="617.52" y="527.5" ></text>
</g>
<g >
<title>rcu_core (9,498,918 samples, 0.03%)</title><rect x="209.4" y="261" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="212.43" y="271.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (58,549,444 samples, 0.20%)</title><rect x="11.8" y="517" width="2.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="14.81" y="527.5" ></text>
</g>
<g >
<title>__alloc_pages (7,650,599 samples, 0.03%)</title><rect x="600.9" y="133" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="603.88" y="143.5" ></text>
</g>
<g >
<title>radix_tree_node_rcu_free (12,316,268 samples, 0.04%)</title><rect x="160.8" y="261" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="163.83" y="271.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,629,449 samples, 0.02%)</title><rect x="250.8" y="325" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="253.77" y="335.5" ></text>
</g>
<g >
<title>syscall.pread (10,073,567 samples, 0.04%)</title><rect x="587.4" y="213" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="590.38" y="223.5" ></text>
</g>
<g >
<title>irq_exit_rcu (11,715,067 samples, 0.04%)</title><rect x="85.8" y="389" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="88.81" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,860,690 samples, 0.02%)</title><rect x="366.0" y="437" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="368.95" y="447.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (31,009,221 samples, 0.11%)</title><rect x="68.1" y="421" width="1.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="71.12" y="431.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,893,155 samples, 0.01%)</title><rect x="592.9" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="595.89" y="287.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (6,025,144 samples, 0.02%)</title><rect x="211.9" y="357" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="214.89" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (6,753,021 samples, 0.02%)</title><rect x="824.2" y="245" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="827.19" y="255.5" ></text>
</g>
<g >
<title>rcu_core_si (29,950,005 samples, 0.10%)</title><rect x="93.2" y="309" width="1.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="96.17" y="319.5" ></text>
</g>
<g >
<title>handle_mm_fault (14,657,098 samples, 0.05%)</title><rect x="583.6" y="245" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="586.58" y="255.5" ></text>
</g>
<g >
<title>__handle_mm_fault (76,037,433 samples, 0.26%)</title><rect x="627.8" y="389" width="3.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="630.79" y="399.5" ></text>
</g>
<g >
<title>tick_sched_handle (4,644,109 samples, 0.02%)</title><rect x="1158.6" y="245" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1161.61" y="255.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,705,683 samples, 0.01%)</title><rect x="319.1" y="533" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="322.07" y="543.5" ></text>
</g>
<g >
<title>__folio_alloc (34,786,645 samples, 0.12%)</title><rect x="572.4" y="373" width="1.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="575.37" y="383.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (5,568,082,204 samples, 19.38%)</title><rect x="698.7" y="357" width="228.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="701.68" y="367.5" >__x64_sys_bpf</text>
</g>
<g >
<title>errors.Is (10,406,587 samples, 0.04%)</title><rect x="564.6" y="517" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="567.56" y="527.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (14,701,173 samples, 0.05%)</title><rect x="720.6" y="309" width="0.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="723.65" y="319.5" ></text>
</g>
<g >
<title>handle_mm_fault (78,826,789 samples, 0.27%)</title><rect x="1000.6" y="309" width="3.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1003.55" y="319.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,093,507 samples, 0.01%)</title><rect x="576.2" y="277" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="579.24" y="287.5" ></text>
</g>
<g >
<title>psi_group_change (11,358,159 samples, 0.04%)</title><rect x="128.7" y="293" width="0.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="131.74" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,063,966 samples, 0.01%)</title><rect x="15.8" y="501" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="18.84" y="511.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (3,090,970 samples, 0.01%)</title><rect x="589.3" y="197" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="592.31" y="207.5" ></text>
</g>
<g >
<title>runtime.reentersyscall (91,400,422 samples, 0.32%)</title><rect x="649.9" y="389" width="3.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="652.92" y="399.5" ></text>
</g>
<g >
<title>runtime.schedule (3,247,950 samples, 0.01%)</title><rect x="254.0" y="549" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="256.97" y="559.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (23,300,299 samples, 0.08%)</title><rect x="883.7" y="245" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="886.70" y="255.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (9,532,617 samples, 0.03%)</title><rect x="182.2" y="325" width="0.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="185.21" y="335.5" ></text>
</g>
<g >
<title>runtime.mstart0 (68,822,494 samples, 0.24%)</title><rect x="15.6" y="597" width="2.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="18.56" y="607.5" ></text>
</g>
<g >
<title>mod_memcg_state (4,550,932 samples, 0.02%)</title><rect x="213.9" y="309" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="216.90" y="319.5" ></text>
</g>
<g >
<title>free_slab (8,094,020 samples, 0.03%)</title><rect x="157.9" y="165" width="0.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="160.91" y="175.5" ></text>
</g>
<g >
<title>new_slab (3,804,285 samples, 0.01%)</title><rect x="761.6" y="101" width="0.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="764.56" y="111.5" ></text>
</g>
<g >
<title>encoding/binary.dataSize (204,352,869 samples, 0.71%)</title><rect x="403.0" y="485" width="8.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="406.05" y="495.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (50,606,739 samples, 0.18%)</title><rect x="638.4" y="389" width="2.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="641.38" y="399.5" ></text>
</g>
<g >
<title>anon_inode_getfd (2,840,538,834 samples, 9.89%)</title><rect x="722.0" y="309" width="116.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="725.04" y="319.5" >anon_inode_getfd</text>
</g>
<g >
<title>__d_alloc (3,067,186 samples, 0.01%)</title><rect x="725.4" y="261" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="728.40" y="271.5" ></text>
</g>
<g >
<title>clear_page_erms (3,121,890 samples, 0.01%)</title><rect x="637.3" y="101" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="640.32" y="111.5" ></text>
</g>
<g >
<title>cpuacct_charge (5,578,001 samples, 0.02%)</title><rect x="181.3" y="325" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="184.33" y="335.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (690,415,045 samples, 2.40%)</title><rect x="963.6" y="389" width="28.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="966.55" y="399.5" >sy..</text>
</g>
<g >
<title>irqentry_exit_to_user_mode (7,702,216 samples, 0.03%)</title><rect x="1003.9" y="309" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1006.87" y="319.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4,008,882 samples, 0.01%)</title><rect x="18.0" y="501" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="21.01" y="511.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (13,638,665,140 samples, 47.46%)</title><rect x="616.3" y="501" width="560.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="619.29" y="511.5" >github.com/cilium/ebpf.newMapWithOptions</text>
</g>
<g >
<title>schedule (5,040,097 samples, 0.02%)</title><rect x="262.7" y="437" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="265.71" y="447.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,431,811 samples, 0.02%)</title><rect x="771.0" y="197" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="774.01" y="207.5" ></text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (18,602,064 samples, 0.06%)</title><rect x="497.9" y="501" width="0.7" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="500.86" y="511.5" ></text>
</g>
<g >
<title>__rcu_read_lock (13,823,821 samples, 0.05%)</title><rect x="808.0" y="197" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="810.95" y="207.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (7,563,501 samples, 0.03%)</title><rect x="661.9" y="389" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="664.90" y="399.5" ></text>
</g>
<g >
<title>do_anonymous_page (14,657,098 samples, 0.05%)</title><rect x="583.6" y="197" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="586.58" y="207.5" ></text>
</g>
<g >
<title>clear_page_erms (3,086,788 samples, 0.01%)</title><rect x="585.9" y="101" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="588.92" y="111.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (6,789,600 samples, 0.02%)</title><rect x="188.8" y="325" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="191.75" y="335.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,913,689 samples, 0.01%)</title><rect x="228.8" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="231.76" y="383.5" ></text>
</g>
<g >
<title>pick_next_task_fair (4,590,446 samples, 0.02%)</title><rect x="13.3" y="389" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="16.34" y="399.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,292,648 samples, 0.02%)</title><rect x="191.7" y="277" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="194.67" y="287.5" ></text>
</g>
<g >
<title>page_remove_rmap (11,096,432 samples, 0.04%)</title><rect x="37.6" y="341" width="0.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="40.61" y="351.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,082,847 samples, 0.03%)</title><rect x="169.9" y="373" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="172.93" y="383.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (12,279,975 samples, 0.04%)</title><rect x="85.8" y="405" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="88.78" y="415.5" ></text>
</g>
<g >
<title>alloc_fd (5,433,301 samples, 0.02%)</title><rect x="829.6" y="293" width="0.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="832.56" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (7,706,504 samples, 0.03%)</title><rect x="763.5" y="213" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="766.53" y="223.5" ></text>
</g>
<g >
<title>clear_page_erms (3,906,202 samples, 0.01%)</title><rect x="557.1" y="293" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="560.12" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,563,997 samples, 0.04%)</title><rect x="262.6" y="501" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="265.61" y="511.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (3,085,331 samples, 0.01%)</title><rect x="492.1" y="485" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="495.05" y="495.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.(*Func).TypeName (6,810,645 samples, 0.02%)</title><rect x="590.6" y="357" width="0.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="593.64" y="367.5" ></text>
</g>
<g >
<title>runtime.makeslice (3,789,551 samples, 0.01%)</title><rect x="565.9" y="517" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="568.95" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,927,540 samples, 0.01%)</title><rect x="85.7" y="405" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="88.66" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (5,340,048 samples, 0.02%)</title><rect x="563.6" y="389" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="566.64" y="399.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (126,114,394 samples, 0.44%)</title><rect x="70.7" y="437" width="5.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="73.68" y="447.5" ></text>
</g>
<g >
<title>rcu_core (27,538,060 samples, 0.10%)</title><rect x="224.8" y="261" width="1.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="227.85" y="271.5" ></text>
</g>
<g >
<title>runtime.memhash64 (3,095,220 samples, 0.01%)</title><rect x="599.5" y="293" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="602.45" y="303.5" ></text>
</g>
<g >
<title>bpf_check (4,448,407 samples, 0.02%)</title><rect x="613.2" y="245" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="616.18" y="255.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,877,287 samples, 0.01%)</title><rect x="217.8" y="357" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="220.80" y="367.5" ></text>
</g>
<g >
<title>rcu_core_si (5,959,716 samples, 0.02%)</title><rect x="247.1" y="325" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="250.15" y="335.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (6,982,682 samples, 0.02%)</title><rect x="251.7" y="437" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="254.75" y="447.5" ></text>
</g>
<g >
<title>ksys_read (1,573,703,080 samples, 5.48%)</title><rect x="415.1" y="325" width="64.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="418.10" y="335.5" >ksys_read</text>
</g>
<g >
<title>__kmalloc_node (7,758,613 samples, 0.03%)</title><rect x="837.6" y="213" width="0.4" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="840.64" y="223.5" ></text>
</g>
<g >
<title>runtime.memmove (130,448,517 samples, 0.45%)</title><rect x="498.6" y="501" width="5.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="501.62" y="511.5" ></text>
</g>
<g >
<title>task_work_add (17,278,004 samples, 0.06%)</title><rect x="31.6" y="421" width="0.7" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="34.61" y="431.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,806,063 samples, 0.03%)</title><rect x="67.8" y="389" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="70.76" y="399.5" ></text>
</g>
<g >
<title>runtime.preemptone (8,640,919 samples, 0.03%)</title><rect x="11.3" y="517" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="14.33" y="527.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (7,782,799 samples, 0.03%)</title><rect x="448.2" y="261" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="451.17" y="271.5" ></text>
</g>
<g >
<title>handle_pte_fault (9,276,283 samples, 0.03%)</title><rect x="1169.7" y="309" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1172.69" y="319.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,852,771 samples, 0.01%)</title><rect x="585.9" y="213" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="588.89" y="223.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,961,873 samples, 0.04%)</title><rect x="68.6" y="293" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="71.56" y="303.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (2,964,599 samples, 0.01%)</title><rect x="181.2" y="325" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="184.20" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (6,962,115 samples, 0.02%)</title><rect x="624.3" y="485" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="627.34" y="495.5" ></text>
</g>
<g >
<title>ttwu_do_activate (2,814,543 samples, 0.01%)</title><rect x="1158.5" y="213" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1161.50" y="223.5" ></text>
</g>
<g >
<title>runtime.(*mcache).allocLarge (3,136,763 samples, 0.01%)</title><rect x="1182.8" y="485" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1185.80" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,097,622 samples, 0.02%)</title><rect x="563.6" y="469" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="566.64" y="479.5" ></text>
</g>
<g >
<title>shuffle_freelist (26,277,337 samples, 0.09%)</title><rect x="762.3" y="165" width="1.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="765.28" y="175.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,712,899 samples, 0.02%)</title><rect x="16.1" y="501" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="19.09" y="511.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,822,818 samples, 0.01%)</title><rect x="601.6" y="229" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="604.64" y="239.5" ></text>
</g>
<g >
<title>irq_exit_rcu (16,986,186 samples, 0.06%)</title><rect x="75.2" y="389" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="78.16" y="399.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (3,116,525 samples, 0.01%)</title><rect x="454.7" y="245" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="457.70" y="255.5" ></text>
</g>
<g >
<title>memset_orig (19,299,575 samples, 0.07%)</title><rect x="819.3" y="229" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="822.32" y="239.5" ></text>
</g>
<g >
<title>__get_random_u32_below (4,571,938 samples, 0.02%)</title><rect x="865.1" y="165" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="868.07" y="175.5" ></text>
</g>
<g >
<title>select_task_rq_fair (8,113,525 samples, 0.03%)</title><rect x="111.9" y="357" width="0.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="114.94" y="367.5" ></text>
</g>
<g >
<title>exc_page_fault (16,213,718 samples, 0.06%)</title><rect x="583.6" y="277" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="586.58" y="287.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (25,576,189 samples, 0.09%)</title><rect x="393.2" y="453" width="1.0" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="396.17" y="463.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,802,922 samples, 0.01%)</title><rect x="67.8" y="277" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="70.83" y="287.5" ></text>
</g>
<g >
<title>ttwu_do_activate (120,834,961 samples, 0.42%)</title><rect x="124.9" y="341" width="5.0" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="127.94" y="351.5" ></text>
</g>
<g >
<title>gcWriteBarrier (3,752,638 samples, 0.01%)</title><rect x="612.6" y="325" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="615.62" y="335.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).int64 (3,106,941 samples, 0.01%)</title><rect x="388.4" y="469" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="391.44" y="479.5" ></text>
</g>
<g >
<title>shuffle_freelist (26,695,926 samples, 0.09%)</title><rect x="864.3" y="181" width="1.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="867.28" y="191.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,021,135 samples, 0.01%)</title><rect x="228.3" y="373" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="231.28" y="383.5" ></text>
</g>
<g >
<title>runtime.gcenable.func2 (5,069,694 samples, 0.02%)</title><rect x="376.1" y="613" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="379.05" y="623.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (5,433,532 samples, 0.02%)</title><rect x="767.2" y="197" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="770.22" y="207.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6,929,370 samples, 0.02%)</title><rect x="811.3" y="181" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="814.34" y="191.5" ></text>
</g>
<g >
<title>array_map_alloc_check (28,502,153 samples, 0.10%)</title><rect x="893.8" y="309" width="1.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="896.84" y="319.5" ></text>
</g>
<g >
<title>handle_pte_fault (14,657,098 samples, 0.05%)</title><rect x="583.6" y="213" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="586.58" y="223.5" ></text>
</g>
<g >
<title>allocate_slab (415,191,623 samples, 1.44%)</title><rect x="848.3" y="197" width="17.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="851.33" y="207.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (8,476,172 samples, 0.03%)</title><rect x="779.4" y="245" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="782.37" y="255.5" ></text>
</g>
<g >
<title>handle_pte_fault (12,399,274 samples, 0.04%)</title><rect x="582.1" y="213" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="585.11" y="223.5" ></text>
</g>
<g >
<title>testing.(*B).run1.func1 (16,649,798,153 samples, 57.94%)</title><rect x="505.7" y="613" width="683.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="508.67" y="623.5" >testing.(*B).run1.func1</text>
</g>
<g >
<title>__irq_exit_rcu (5,292,648 samples, 0.02%)</title><rect x="191.7" y="341" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="194.67" y="351.5" ></text>
</g>
<g >
<title>do_user_addr_fault (17,595,842 samples, 0.06%)</title><rect x="600.5" y="261" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="603.50" y="271.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (73,518,092 samples, 0.26%)</title><rect x="540.6" y="261" width="3.0" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="543.55" y="271.5" ></text>
</g>
<g >
<title>dentry_free (13,698,479 samples, 0.05%)</title><rect x="227.8" y="421" width="0.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="230.84" y="431.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (5,719,027,213 samples, 19.90%)</title><rect x="18.9" y="581" width="234.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="21.88" y="591.5" >exit_to_user_mode_prepare</text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (6,380,848 samples, 0.02%)</title><rect x="129.3" y="229" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="132.28" y="239.5" ></text>
</g>
<g >
<title>migrate_disable (9,268,050 samples, 0.03%)</title><rect x="478.4" y="261" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="481.42" y="271.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (13,247,171 samples, 0.05%)</title><rect x="147.4" y="277" width="0.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="150.37" y="287.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (8,415,220 samples, 0.03%)</title><rect x="741.8" y="197" width="0.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="744.83" y="207.5" ></text>
</g>
<g >
<title>zap_pte_range (62,503,278 samples, 0.22%)</title><rect x="37.4" y="357" width="2.6" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="40.38" y="367.5" ></text>
</g>
<g >
<title>security_d_instantiate (5,171,057 samples, 0.02%)</title><rect x="824.6" y="245" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="827.56" y="255.5" ></text>
</g>
<g >
<title>runtime.sysmon (67,146,532 samples, 0.23%)</title><rect x="15.6" y="565" width="2.8" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="18.60" y="575.5" ></text>
</g>
<g >
<title>__free_pages (16,293,860 samples, 0.06%)</title><rect x="203.4" y="277" width="0.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="206.44" y="287.5" ></text>
</g>
<g >
<title>rcu_do_batch (25,844,035 samples, 0.09%)</title><rect x="224.9" y="245" width="1.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="227.92" y="255.5" ></text>
</g>
<g >
<title>cap_capable (38,232,073 samples, 0.13%)</title><rect x="898.0" y="293" width="1.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="900.96" y="303.5" ></text>
</g>
<g >
<title>__do_softirq (8,082,847 samples, 0.03%)</title><rect x="169.9" y="341" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="172.93" y="351.5" ></text>
</g>
<g >
<title>runtime.interhash (3,105,350 samples, 0.01%)</title><rect x="579.6" y="293" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="582.60" y="303.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (3,029,914 samples, 0.01%)</title><rect x="555.9" y="277" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="558.90" y="287.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (9,263,070 samples, 0.03%)</title><rect x="631.2" y="405" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="634.17" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,135,625 samples, 0.02%)</title><rect x="152.3" y="341" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="155.31" y="351.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (34,826,468 samples, 0.12%)</title><rect x="415.2" y="293" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="418.20" y="303.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,004,701 samples, 0.01%)</title><rect x="199.6" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="202.64" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,119,151 samples, 0.01%)</title><rect x="593.7" y="293" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="596.72" y="303.5" ></text>
</g>
<g >
<title>runtime.scanblock (174,284,015 samples, 0.61%)</title><rect x="278.6" y="517" width="7.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="281.55" y="527.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,866,708 samples, 0.01%)</title><rect x="213.3" y="309" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="216.29" y="319.5" ></text>
</g>
<g >
<title>handle_mm_fault (12,486,030 samples, 0.04%)</title><rect x="643.3" y="373" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="646.33" y="383.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (11,561,972 samples, 0.04%)</title><rect x="1169.7" y="389" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1172.66" y="399.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5,909,737 samples, 0.02%)</title><rect x="14.0" y="485" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="16.97" y="495.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,099,622 samples, 0.01%)</title><rect x="793.7" y="149" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="796.74" y="159.5" ></text>
</g>
<g >
<title>vma_alloc_folio (10,628,982 samples, 0.04%)</title><rect x="1180.6" y="277" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1183.56" y="287.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,048,145 samples, 0.01%)</title><rect x="1171.5" y="421" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1174.50" y="431.5" ></text>
</g>
<g >
<title>runtime.rt0_go.abi0 (2,463,310 samples, 0.01%)</title><rect x="1189.6" y="629" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="1192.65" y="639.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*FeatureTest).execute-fm (58,688,075 samples, 0.20%)</title><rect x="644.2" y="469" width="2.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="647.18" y="479.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc (51,366,992 samples, 0.18%)</title><rect x="638.4" y="405" width="2.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="641.35" y="415.5" ></text>
</g>
<g >
<title>tick_program_event (3,287,517 samples, 0.01%)</title><rect x="12.3" y="405" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="15.28" y="415.5" ></text>
</g>
<g >
<title>_compound_head (15,578,783 samples, 0.05%)</title><rect x="36.7" y="357" width="0.7" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="39.74" y="367.5" ></text>
</g>
<g >
<title>fput (21,200,742 samples, 0.07%)</title><rect x="31.4" y="437" width="0.9" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="34.44" y="447.5" ></text>
</g>
<g >
<title>refill_obj_stock (54,107,273 samples, 0.19%)</title><rect x="212.2" y="357" width="2.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="215.20" y="367.5" ></text>
</g>
<g >
<title>rcu_core_si (12,208,756 samples, 0.04%)</title><rect x="211.4" y="277" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="214.39" y="287.5" ></text>
</g>
<g >
<title>__free_slab (7,154,051 samples, 0.02%)</title><rect x="161.0" y="149" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="163.97" y="159.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,150,098 samples, 0.04%)</title><rect x="191.9" y="373" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="194.91" y="383.5" ></text>
</g>
<g >
<title>allocate_slab (196,248,461 samples, 0.68%)</title><rect x="788.4" y="181" width="8.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="791.38" y="191.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (3,287,517 samples, 0.01%)</title><rect x="12.3" y="421" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="15.28" y="431.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (5,416,500 samples, 0.02%)</title><rect x="659.4" y="405" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="662.42" y="415.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (3,887,310 samples, 0.01%)</title><rect x="998.8" y="373" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1001.81" y="383.5" ></text>
</g>
<g >
<title>exc_page_fault (3,893,155 samples, 0.01%)</title><rect x="592.9" y="293" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="595.89" y="303.5" ></text>
</g>
<g >
<title>free_unref_page_prepare (4,681,395 samples, 0.02%)</title><rect x="203.9" y="245" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="206.90" y="255.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,799,300 samples, 0.04%)</title><rect x="1169.7" y="341" width="0.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1172.66" y="351.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.mapGaugeEbpf.mapsInfo (1,693,088,100 samples, 5.89%)</title><rect x="505.9" y="533" width="69.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="508.85" y="543.5" >github...</text>
</g>
<g >
<title>bpf_map_seq_next (17,518,393 samples, 0.06%)</title><rect x="523.1" y="309" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="526.10" y="319.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*MapSpec).createMap.func3 (6,179,039 samples, 0.02%)</title><rect x="626.0" y="469" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="629.04" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mheap).alloc.func1 (3,874,277 samples, 0.01%)</title><rect x="1170.1" y="293" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1173.13" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (47,494,101 samples, 0.17%)</title><rect x="92.5" y="405" width="1.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="95.45" y="415.5" ></text>
</g>
<g >
<title>runtime.callers.func1 (9,244,535 samples, 0.03%)</title><rect x="642.4" y="357" width="0.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="645.41" y="367.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (3,863,763 samples, 0.01%)</title><rect x="488.8" y="389" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="491.82" y="399.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (6,173,729 samples, 0.02%)</title><rect x="571.9" y="389" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="574.93" y="399.5" ></text>
</g>
<g >
<title>__task_rq_lock (155,007,170 samples, 0.54%)</title><rect x="114.5" y="341" width="6.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="117.52" y="351.5" ></text>
</g>
<g >
<title>syscall.Syscall.abi0 (4,448,407 samples, 0.02%)</title><rect x="613.2" y="373" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="616.18" y="383.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (83,867,647 samples, 0.29%)</title><rect x="161.3" y="261" width="3.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="164.33" y="271.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,425,605 samples, 0.01%)</title><rect x="114.4" y="341" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="117.38" y="351.5" ></text>
</g>
<g >
<title>__slab_free (4,692,363 samples, 0.02%)</title><rect x="75.4" y="261" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="78.35" y="271.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (5,614,553 samples, 0.02%)</title><rect x="152.1" y="389" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="155.08" y="399.5" ></text>
</g>
<g >
<title>__slab_free (169,344,710 samples, 0.59%)</title><rect x="199.8" y="373" width="7.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="202.81" y="383.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (42,929,142 samples, 0.15%)</title><rect x="832.5" y="277" width="1.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="835.46" y="287.5" ></text>
</g>
<g >
<title>do_exit (5,719,027,213 samples, 19.90%)</title><rect x="18.9" y="501" width="234.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="21.88" y="511.5" >do_exit</text>
</g>
<g >
<title>do_nanosleep (43,488,391 samples, 0.15%)</title><rect x="12.2" y="453" width="1.8" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="15.17" y="463.5" ></text>
</g>
<g >
<title>runtime.getempty (28,059,470 samples, 0.10%)</title><rect x="1180.3" y="405" width="1.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="1183.31" y="415.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (3,053,466 samples, 0.01%)</title><rect x="1186.1" y="373" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="1189.11" y="383.5" ></text>
</g>
<g >
<title>file_free_rcu (2,908,014 samples, 0.01%)</title><rect x="68.1" y="325" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="71.12" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,448,407 samples, 0.02%)</title><rect x="613.2" y="325" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="616.18" y="335.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocker).tryAcquire (3,000,280 samples, 0.01%)</title><rect x="375.9" y="565" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="378.93" y="575.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,757,392 samples, 0.01%)</title><rect x="603.1" y="245" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="606.07" y="255.5" ></text>
</g>
<g >
<title>__alloc_pages (149,111,851 samples, 0.52%)</title><rect x="754.8" y="149" width="6.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="757.78" y="159.5" ></text>
</g>
<g >
<title>clear_page_erms (284,359,901 samples, 0.99%)</title><rect x="849.2" y="133" width="11.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="852.23" y="143.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (225,516,576 samples, 0.78%)</title><rect x="467.4" y="245" width="9.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="470.41" y="255.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Pread (10,073,567 samples, 0.04%)</title><rect x="587.4" y="229" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="590.38" y="239.5" ></text>
</g>
<g >
<title>exc_page_fault (3,822,818 samples, 0.01%)</title><rect x="601.6" y="309" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="604.64" y="319.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (4,448,407 samples, 0.02%)</title><rect x="613.2" y="293" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="616.18" y="303.5" ></text>
</g>
<g >
<title>do_anonymous_page (14,423,465 samples, 0.05%)</title><rect x="1180.4" y="293" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1183.40" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,905,774 samples, 0.01%)</title><rect x="114.6" y="325" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="117.59" y="335.5" ></text>
</g>
<g >
<title>expand_files (24,671,828 samples, 0.09%)</title><rect x="837.5" y="261" width="1.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="840.45" y="271.5" ></text>
</g>
<g >
<title>alloc_empty_file (1,193,456,124 samples, 4.15%)</title><rect x="729.1" y="245" width="49.0" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="732.07" y="255.5" >allo..</text>
</g>
<g >
<title>irq_exit_rcu (30,902,069 samples, 0.11%)</title><rect x="68.1" y="405" width="1.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="71.12" y="415.5" ></text>
</g>
<g >
<title>rcu_core (2,882,018 samples, 0.01%)</title><rect x="249.4" y="341" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="252.40" y="351.5" ></text>
</g>
<g >
<title>error_entry (13,180,195 samples, 0.05%)</title><rect x="574.6" y="501" width="0.5" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="577.55" y="511.5" ></text>
</g>
<g >
<title>__free_one_page (13,146,410 samples, 0.05%)</title><rect x="38.8" y="229" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="41.81" y="239.5" ></text>
</g>
<g >
<title>runtime.mstart0 (87,643,618 samples, 0.31%)</title><rect x="10.8" y="581" width="3.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="13.83" y="591.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (7,744,628 samples, 0.03%)</title><rect x="479.9" y="373" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="482.85" y="383.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.loadMgObjects (925,001,389 samples, 3.22%)</title><rect x="575.4" y="501" width="38.0" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="578.38" y="511.5" >git..</text>
</g>
<g >
<title>___slab_alloc (11,644,676 samples, 0.04%)</title><rect x="918.0" y="229" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="920.96" y="239.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (5,755,297 samples, 0.02%)</title><rect x="160.2" y="197" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="163.20" y="207.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (10,683,866 samples, 0.04%)</title><rect x="895.0" y="309" width="0.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="898.04" y="319.5" ></text>
</g>
<g >
<title>do_wp_page (2,973,922 samples, 0.01%)</title><rect x="641.9" y="293" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="644.88" y="303.5" ></text>
</g>
<g >
<title>refill_obj_stock (15,730,914 samples, 0.05%)</title><rect x="159.8" y="213" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="162.82" y="223.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,094,160 samples, 0.01%)</title><rect x="592.1" y="245" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="595.10" y="255.5" ></text>
</g>
<g >
<title>update_min_vruntime (2,681,036 samples, 0.01%)</title><rect x="183.0" y="341" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="185.98" y="351.5" ></text>
</g>
<g >
<title>__alloc_pages (11,571,779 samples, 0.04%)</title><rect x="583.7" y="149" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="586.70" y="159.5" ></text>
</g>
<g >
<title>io.(*SectionReader).Read (10,073,567 samples, 0.04%)</title><rect x="587.4" y="261" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="590.38" y="271.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (6,853,279 samples, 0.02%)</title><rect x="661.9" y="373" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="664.93" y="383.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (48,443,452 samples, 0.17%)</title><rect x="16.4" y="549" width="2.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="19.37" y="559.5" ></text>
</g>
<g >
<title>runtime.makeslice (6,212,860 samples, 0.02%)</title><rect x="593.1" y="309" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="596.05" y="319.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (16,452,042 samples, 0.06%)</title><rect x="236.4" y="373" width="0.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="239.37" y="383.5" ></text>
</g>
<g >
<title>kmalloc_slab (21,511,566 samples, 0.07%)</title><rect x="882.8" y="245" width="0.9" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="885.81" y="255.5" ></text>
</g>
<g >
<title>runtime.newobject (293,186,833 samples, 1.02%)</title><rect x="631.9" y="453" width="12.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="634.86" y="463.5" ></text>
</g>
<g >
<title>free_slab (7,154,051 samples, 0.02%)</title><rect x="161.0" y="165" width="0.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="163.97" y="175.5" ></text>
</g>
<g >
<title>runtime.(*pageAlloc).allocToCache (5,387,284 samples, 0.02%)</title><rect x="637.5" y="293" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="640.45" y="303.5" ></text>
</g>
<g >
<title>ima_file_free (3,510,058 samples, 0.01%)</title><rect x="249.5" y="453" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="252.52" y="463.5" ></text>
</g>
<g >
<title>call_rcu (124,300,326 samples, 0.43%)</title><rect x="167.4" y="437" width="5.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="170.41" y="447.5" ></text>
</g>
<g >
<title>security_bpf (21,098,087 samples, 0.07%)</title><rect x="925.3" y="325" width="0.8" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="928.28" y="335.5" ></text>
</g>
<g >
<title>mod_objcg_state (31,772,358 samples, 0.11%)</title><rect x="877.3" y="213" width="1.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="880.28" y="223.5" ></text>
</g>
<g >
<title>exc_page_fault (15,564,601 samples, 0.05%)</title><rect x="557.0" y="453" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="559.96" y="463.5" ></text>
</g>
<g >
<title>free_slab (6,312,961 samples, 0.02%)</title><rect x="245.2" y="341" width="0.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="248.20" y="351.5" ></text>
</g>
<g >
<title>irq_exit_rcu (7,872,295 samples, 0.03%)</title><rect x="231.0" y="373" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="234.02" y="383.5" ></text>
</g>
<g >
<title>runtime.step (3,097,127 samples, 0.01%)</title><rect x="642.4" y="277" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="645.44" y="287.5" ></text>
</g>
<g >
<title>lockref_put_return (58,399,837 samples, 0.20%)</title><rect x="228.9" y="421" width="2.4" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="231.94" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,049,435 samples, 0.02%)</title><rect x="11.4" y="485" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="14.41" y="495.5" ></text>
</g>
<g >
<title>memset_orig (54,789,954 samples, 0.19%)</title><rect x="884.7" y="245" width="2.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="887.65" y="255.5" ></text>
</g>
<g >
<title>locks_remove_file (7,088,769 samples, 0.02%)</title><rect x="231.9" y="437" width="0.3" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="234.89" y="447.5" ></text>
</g>
<g >
<title>d_instantiate (82,558,374 samples, 0.29%)</title><rect x="821.4" y="261" width="3.4" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="824.39" y="271.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (221,992,400 samples, 0.77%)</title><rect x="388.6" y="469" width="9.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="391.57" y="479.5" ></text>
</g>
<g >
<title>rcu_core (5,959,716 samples, 0.02%)</title><rect x="247.1" y="309" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="250.15" y="319.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (3,124,744 samples, 0.01%)</title><rect x="482.1" y="469" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="485.08" y="479.5" ></text>
</g>
<g >
<title>rcu_core (30,902,069 samples, 0.11%)</title><rect x="68.1" y="341" width="1.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="71.12" y="351.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,908,492 samples, 0.01%)</title><rect x="253.3" y="325" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="256.31" y="335.5" ></text>
</g>
<g >
<title>syscall.Syscall6 (10,073,567 samples, 0.04%)</title><rect x="587.4" y="197" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="590.38" y="207.5" ></text>
</g>
<g >
<title>reflect.Value.Field (7,599,632 samples, 0.03%)</title><rect x="558.1" y="501" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="561.06" y="511.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (38,669,943 samples, 0.13%)</title><rect x="148.0" y="373" width="1.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="151.04" y="383.5" ></text>
</g>
<g >
<title>encoding/binary.(*decoder).value (214,947,863 samples, 0.75%)</title><rect x="508.6" y="501" width="8.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="511.56" y="511.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (56,600,587 samples, 0.20%)</title><rect x="144.6" y="293" width="2.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="147.61" y="303.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (1,134,488,611 samples, 3.95%)</title><rect x="841.5" y="293" width="46.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="844.50" y="303.5" >bpf_..</text>
</g>
<g >
<title>radix_tree_node_rcu_free (3,518,891 samples, 0.01%)</title><rect x="225.5" y="229" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="228.51" y="239.5" ></text>
</g>
<g >
<title>runtime.wbBufFlush1 (121,255,128 samples, 0.42%)</title><rect x="1177.8" y="437" width="4.9" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1180.76" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (18,372,986 samples, 0.06%)</title><rect x="600.5" y="293" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="603.50" y="303.5" ></text>
</g>
<g >
<title>runtime.(*sweepLocked).sweep (24,842,921 samples, 0.09%)</title><rect x="561.8" y="421" width="1.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="564.75" y="431.5" ></text>
</g>
<g >
<title>runtime.exitsyscallfast (52,921,784 samples, 0.18%)</title><rect x="657.0" y="389" width="2.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="659.97" y="399.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (15,032,495 samples, 0.05%)</title><rect x="1158.4" y="325" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1161.40" y="335.5" ></text>
</g>
<g >
<title>__irqentry_text_end (9,201,277 samples, 0.03%)</title><rect x="1184.6" y="501" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1187.63" y="511.5" ></text>
</g>
<g >
<title>__folio_alloc (10,628,982 samples, 0.04%)</title><rect x="1180.6" y="261" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1183.56" y="271.5" ></text>
</g>
<g >
<title>runtime.heapBitsForAddr (144,238,428 samples, 0.50%)</title><rect x="359.2" y="533" width="6.0" height="15.0" fill="rgb(254,225,54)" rx="2" ry="2" />
<text x="362.25" y="543.5" ></text>
</g>
<g >
<title>memcpy_orig (7,569,658 samples, 0.03%)</title><rect x="554.6" y="229" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="557.62" y="239.5" ></text>
</g>
<g >
<title>bpf_map_release (17,866,606 samples, 0.06%)</title><rect x="248.1" y="453" width="0.8" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="251.14" y="463.5" ></text>
</g>
<g >
<title>io.ReadAtLeast (6,174,005 samples, 0.02%)</title><rect x="495.0" y="501" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="498.01" y="511.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,629,449 samples, 0.02%)</title><rect x="250.8" y="389" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="253.77" y="399.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps.func1 (14,020,226,759 samples, 48.79%)</title><rect x="613.4" y="533" width="575.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="616.36" y="543.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.createManyMaps.func1</text>
</g>
<g >
<title>runtime.futex.abi0 (3,402,522 samples, 0.01%)</title><rect x="376.1" y="453" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="379.09" y="463.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,844,314 samples, 0.01%)</title><rect x="928.1" y="325" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="931.08" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (3,883,602 samples, 0.01%)</title><rect x="609.1" y="117" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="612.08" y="127.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,901,033 samples, 0.01%)</title><rect x="539.0" y="245" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="542.00" y="255.5" ></text>
</g>
<g >
<title>vma_alloc_folio (7,650,599 samples, 0.03%)</title><rect x="600.9" y="165" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="603.88" y="175.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,852,771 samples, 0.01%)</title><rect x="585.9" y="229" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="588.89" y="239.5" ></text>
</g>
<g >
<title>new_slab (6,110,926 samples, 0.02%)</title><rect x="794.1" y="101" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="797.08" y="111.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (26,087,404 samples, 0.09%)</title><rect x="840.4" y="293" width="1.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="843.43" y="303.5" ></text>
</g>
<g >
<title>put_files_struct (383,303,354 samples, 1.33%)</title><rect x="20.9" y="469" width="15.8" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="23.92" y="479.5" ></text>
</g>
<g >
<title>exc_page_fault (92,107,136 samples, 0.32%)</title><rect x="1000.4" y="341" width="3.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1003.43" y="351.5" ></text>
</g>
<g >
<title>[unknown] (3,849,856 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>reflect.Value.NumField (4,674,880 samples, 0.02%)</title><rect x="402.4" y="469" width="0.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="405.41" y="479.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,973,922 samples, 0.01%)</title><rect x="641.9" y="341" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="644.88" y="351.5" ></text>
</g>
<g >
<title>rcu_core (4,629,449 samples, 0.02%)</title><rect x="250.8" y="341" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="253.77" y="351.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,121,890 samples, 0.01%)</title><rect x="637.3" y="165" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="640.32" y="175.5" ></text>
</g>
<g >
<title>rmqueue (12,367,423 samples, 0.04%)</title><rect x="1003.0" y="181" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="1006.03" y="191.5" ></text>
</g>
<g >
<title>__folio_alloc (11,571,779 samples, 0.04%)</title><rect x="583.7" y="165" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="586.70" y="175.5" ></text>
</g>
<g >
<title>runtime.persistentalloc.func1 (10,626,431 samples, 0.04%)</title><rect x="1004.7" y="325" width="0.5" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="1007.72" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (16,816,183 samples, 0.06%)</title><rect x="614.6" y="437" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="617.61" y="447.5" ></text>
</g>
<g >
<title>runtime.(*mcache).nextFree (3,062,318 samples, 0.01%)</title><rect x="604.6" y="309" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="607.59" y="319.5" ></text>
</g>
<g >
<title>__slab_free (3,551,519 samples, 0.01%)</title><rect x="193.3" y="389" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="196.29" y="399.5" ></text>
</g>
<g >
<title>put_cpu_partial (44,034,008 samples, 0.15%)</title><rect x="202.8" y="357" width="1.8" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="205.80" y="367.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,912,674 samples, 0.01%)</title><rect x="152.4" y="309" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="155.36" y="319.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint16 (13,007,929 samples, 0.05%)</title><rect x="397.7" y="469" width="0.5" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="400.68" y="479.5" ></text>
</g>
<g >
<title>vma_alloc_folio (43,729,440 samples, 0.15%)</title><rect x="629.1" y="341" width="1.8" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="632.08" y="351.5" ></text>
</g>
<g >
<title>__schedule (36,043,101 samples, 0.13%)</title><rect x="12.4" y="421" width="1.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="15.44" y="431.5" ></text>
</g>
<g >
<title>__irqentry_text_end (11,608,781 samples, 0.04%)</title><rect x="1000.0" y="357" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1002.96" y="367.5" ></text>
</g>
<g >
<title>shuffle_freelist (33,648,421 samples, 0.12%)</title><rect x="795.1" y="165" width="1.3" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="798.05" y="175.5" ></text>
</g>
<g >
<title>vma_alloc_folio (33,785,846 samples, 0.12%)</title><rect x="1186.2" y="389" width="1.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="1189.24" y="399.5" ></text>
</g>
<g >
<title>dequeue_task (15,281,619 samples, 0.05%)</title><rect x="12.6" y="405" width="0.6" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="15.58" y="415.5" ></text>
</g>
<g >
<title>do_send_sig_info (3,378,993 samples, 0.01%)</title><rect x="16.1" y="421" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="19.10" y="431.5" ></text>
</g>
<g >
<title>encoding/binary.Read (2,742,286,071 samples, 9.54%)</title><rect x="379.6" y="501" width="112.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="382.57" y="511.5" >encoding/bina..</text>
</g>
<g >
<title>exit_to_user_mode_loop (3,787,416 samples, 0.01%)</title><rect x="1188.1" y="421" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1191.13" y="431.5" ></text>
</g>
<g >
<title>dequeue_task_fair (8,046,362 samples, 0.03%)</title><rect x="16.9" y="405" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="19.94" y="415.5" ></text>
</g>
<g >
<title>file_free_rcu (6,343,408 samples, 0.02%)</title><rect x="178.7" y="245" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="181.74" y="255.5" ></text>
</g>
<g >
<title>runtime.greyobject (6,022,426 samples, 0.02%)</title><rect x="605.3" y="197" width="0.3" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="608.33" y="207.5" ></text>
</g>
<g >
<title>runtime.gcAssistAlloc.func1 (4,582,310 samples, 0.02%)</title><rect x="1171.1" y="341" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1174.09" y="351.5" ></text>
</g>
<g >
<title>pte_offset_map_nolock (3,031,082 samples, 0.01%)</title><rect x="1187.6" y="405" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1190.63" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_read (1,573,703,080 samples, 5.48%)</title><rect x="415.1" y="341" width="64.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="418.10" y="351.5" >__x64_s..</text>
</g>
<g >
<title>__sys_bpf (4,448,407 samples, 0.02%)</title><rect x="613.2" y="277" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="616.18" y="287.5" ></text>
</g>
<g >
<title>prepare_task_switch (3,392,908 samples, 0.01%)</title><rect x="13.6" y="405" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="16.55" y="415.5" ></text>
</g>
<g >
<title>handle_pte_fault (12,412,468 samples, 0.04%)</title><rect x="608.7" y="229" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="611.73" y="239.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,141,007 samples, 0.02%)</title><rect x="227.6" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="230.63" y="431.5" ></text>
</g>
<g >
<title>free_unref_page_commit (7,154,051 samples, 0.02%)</title><rect x="161.0" y="101" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="163.97" y="111.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,456,232 samples, 0.01%)</title><rect x="375.4" y="533" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="378.45" y="543.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (1,037,344,418 samples, 3.61%)</title><rect x="420.8" y="277" width="42.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="423.76" y="287.5" >bpf_..</text>
</g>
<g >
<title>do_madvise (4,607,399 samples, 0.02%)</title><rect x="637.5" y="197" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="640.48" y="207.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal.(*Deque[*github.com/cilium/ebpf/btf.Type]).Push-fm (8,550,534 samples, 0.03%)</title><rect x="595.2" y="309" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="598.22" y="319.5" ></text>
</g>
<g >
<title>runtime.park_m (6,383,071 samples, 0.02%)</title><rect x="365.9" y="549" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="368.89" y="559.5" ></text>
</g>
<g >
<title>memcg_account_kmem (3,775,721 samples, 0.01%)</title><rect x="818.4" y="181" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="821.38" y="191.5" ></text>
</g>
<g >
<title>file_free_rcu (3,619,663 samples, 0.01%)</title><rect x="209.5" y="229" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="212.48" y="239.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (7,770,113 samples, 0.03%)</title><rect x="628.5" y="309" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="631.51" y="319.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,999,544 samples, 0.01%)</title><rect x="202.6" y="325" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="205.63" y="335.5" ></text>
</g>
<g >
<title>psi_task_switch (6,339,090 samples, 0.02%)</title><rect x="17.7" y="421" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="20.72" y="431.5" ></text>
</g>
<g >
<title>free_unref_page (2,888,876 samples, 0.01%)</title><rect x="158.1" y="117" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="161.05" y="127.5" ></text>
</g>
<g >
<title>get_page_from_freelist (7,758,613 samples, 0.03%)</title><rect x="837.6" y="165" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="840.64" y="175.5" ></text>
</g>
<g >
<title>os.(*File).Read (1,597,654,029 samples, 5.56%)</title><rect x="414.6" y="453" width="65.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="417.56" y="463.5" >os.(*Fi..</text>
</g>
<g >
<title>runtime.getpid.abi0 (9,524,446 samples, 0.03%)</title><rect x="263.8" y="501" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="266.84" y="511.5" ></text>
</g>
<g >
<title>runtime.mallocgc (4,452,111 samples, 0.02%)</title><rect x="1166.5" y="421" width="0.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1169.54" y="431.5" ></text>
</g>
<g >
<title>irqentry_exit (3,033,607 samples, 0.01%)</title><rect x="1181.0" y="357" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1184.02" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (3,029,063 samples, 0.01%)</title><rect x="631.6" y="453" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="634.58" y="463.5" ></text>
</g>
<g >
<title>discard_slab (9,797,755 samples, 0.03%)</title><rect x="157.8" y="181" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="160.84" y="191.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,292,648 samples, 0.02%)</title><rect x="191.7" y="357" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="194.67" y="367.5" ></text>
</g>
<g >
<title>discard_slab (36,081,981 samples, 0.13%)</title><rect x="203.1" y="325" width="1.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="206.06" y="335.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (141,800,430 samples, 0.49%)</title><rect x="97.7" y="373" width="5.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="100.70" y="383.5" ></text>
</g>
<g >
<title>runtime.growslice (162,356,164 samples, 0.57%)</title><rect x="1176.7" y="517" width="6.7" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1179.73" y="527.5" ></text>
</g>
<g >
<title>runtime.lock2 (28,489,065 samples, 0.10%)</title><rect x="1165.1" y="373" width="1.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="1168.06" y="383.5" ></text>
</g>
<g >
<title>runtime.mallocgc (15,396,735 samples, 0.05%)</title><rect x="589.8" y="277" width="0.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="592.79" y="287.5" ></text>
</g>
<g >
<title>do_send_specific (4,189,130 samples, 0.01%)</title><rect x="11.4" y="421" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="14.44" y="431.5" ></text>
</g>
<g >
<title>__mmput (80,035,313 samples, 0.28%)</title><rect x="36.7" y="453" width="3.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="39.66" y="463.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,288,119 samples, 0.02%)</title><rect x="603.1" y="277" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="606.07" y="287.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,141,007 samples, 0.02%)</title><rect x="227.6" y="373" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="230.63" y="383.5" ></text>
</g>
<g >
<title>init_file (27,705,819 samples, 0.10%)</title><rect x="778.1" y="245" width="1.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="781.08" y="255.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (2,986,904 samples, 0.01%)</title><rect x="1182.9" y="485" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1185.93" y="495.5" ></text>
</g>
<g >
<title>exc_page_fault (24,090,797 samples, 0.08%)</title><rect x="566.5" y="485" width="1.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="569.50" y="495.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (11,932,730 samples, 0.04%)</title><rect x="1158.4" y="309" width="0.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1161.40" y="319.5" ></text>
</g>
<g >
<title>runtime.spanOfHeap (8,370,670 samples, 0.03%)</title><rect x="1163.4" y="357" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1166.39" y="367.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.(*CollectionSpec).LoadAndAssign.func1 (923,438,412 samples, 3.21%)</title><rect x="575.4" y="453" width="38.0" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="578.44" y="463.5" >git..</text>
</g>
<g >
<title>kmem_cache_free (4,055,827 samples, 0.01%)</title><rect x="170.0" y="261" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="172.98" y="271.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (3,046,938 samples, 0.01%)</title><rect x="1186.0" y="389" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1188.96" y="399.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (13,815,624 samples, 0.05%)</title><rect x="719.4" y="309" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="722.45" y="319.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (24,269,173 samples, 0.08%)</title><rect x="177.3" y="325" width="1.0" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="180.30" y="335.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.BPF (4,448,407 samples, 0.02%)</title><rect x="613.2" y="389" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="616.18" y="399.5" ></text>
</g>
<g >
<title>update_load_avg (6,786,709 samples, 0.02%)</title><rect x="184.0" y="357" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="186.96" y="367.5" ></text>
</g>
<g >
<title>handle_mm_fault (19,152,041 samples, 0.07%)</title><rect x="614.5" y="469" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="617.52" y="479.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,111,850 samples, 0.01%)</title><rect x="592.9" y="197" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="595.93" y="207.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (14,643,906 samples, 0.05%)</title><rect x="158.3" y="213" width="0.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="161.27" y="223.5" ></text>
</g>
<g >
<title>do_user_addr_fault (15,519,158 samples, 0.05%)</title><rect x="608.6" y="277" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="611.61" y="287.5" ></text>
</g>
<g >
<title>alloc_fdtable (13,214,921 samples, 0.05%)</title><rect x="837.6" y="245" width="0.6" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="840.64" y="255.5" ></text>
</g>
<g >
<title>file_free_rcu (4,145,937 samples, 0.01%)</title><rect x="251.8" y="309" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="254.79" y="319.5" ></text>
</g>
<g >
<title>__slab_free (5,439,384 samples, 0.02%)</title><rect x="204.3" y="245" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="207.26" y="255.5" ></text>
</g>
<g >
<title>rcu_core (12,208,756 samples, 0.04%)</title><rect x="211.4" y="261" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="214.39" y="271.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (41,018,647 samples, 0.14%)</title><rect x="817.0" y="197" width="1.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="820.04" y="207.5" ></text>
</g>
<g >
<title>wake_up_process (3,597,563 samples, 0.01%)</title><rect x="1158.5" y="245" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1161.47" y="255.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4,150,062 samples, 0.01%)</title><rect x="184.8" y="357" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="187.82" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9,297,852 samples, 0.03%)</title><rect x="587.4" y="165" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="590.38" y="175.5" ></text>
</g>
<g >
<title>do_user_addr_fault (13,965,328 samples, 0.05%)</title><rect x="611.9" y="293" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="614.85" y="303.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (288,189,500 samples, 1.00%)</title><rect x="662.7" y="389" width="11.8" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="665.71" y="399.5" ></text>
</g>
<g >
<title>runtime.(*fixalloc).alloc (17,513,238 samples, 0.06%)</title><rect x="1004.5" y="357" width="0.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="1007.46" y="367.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (66,433,384 samples, 0.23%)</title><rect x="544.8" y="229" width="2.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="547.82" y="239.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (416,478,691 samples, 1.45%)</title><rect x="129.9" y="341" width="17.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="132.90" y="351.5" ></text>
</g>
<g >
<title>__slab_free (3,886,069 samples, 0.01%)</title><rect x="68.8" y="277" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="71.77" y="287.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (2,506,085,640 samples, 8.72%)</title><rect x="724.4" y="277" width="102.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="727.36" y="287.5" >alloc_file_p..</text>
</g>
<g >
<title>__folio_alloc (6,773,268 samples, 0.02%)</title><rect x="643.6" y="293" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="646.56" y="303.5" ></text>
</g>
<g >
<title>kmalloc_slab (3,123,534 samples, 0.01%)</title><rect x="863.4" y="149" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="866.41" y="159.5" ></text>
</g>
<g >
<title>runtime.notesleep (3,402,522 samples, 0.01%)</title><rect x="376.1" y="469" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="379.09" y="479.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (22,290,059 samples, 0.08%)</title><rect x="763.8" y="213" width="1.0" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="766.85" y="223.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (156,377,650 samples, 0.54%)</title><rect x="872.2" y="229" width="6.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="875.16" y="239.5" ></text>
</g>
<g >
<title>handle_pte_fault (5,288,119 samples, 0.02%)</title><rect x="603.1" y="261" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="606.07" y="271.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (15,281,941 samples, 0.05%)</title><rect x="125.3" y="309" width="0.6" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="128.27" y="319.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,086,788 samples, 0.01%)</title><rect x="585.9" y="117" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="588.92" y="127.5" ></text>
</g>
<g >
<title>file_free_rcu (5,788,354 samples, 0.02%)</title><rect x="94.4" y="277" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="97.40" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3,116,649 samples, 0.01%)</title><rect x="736.2" y="213" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="739.20" y="223.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,594,001 samples, 0.01%)</title><rect x="123.7" y="341" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="126.68" y="351.5" ></text>
</g>
<g >
<title>reflect.Value.Elem (9,739,157 samples, 0.03%)</title><rect x="557.7" y="501" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="560.66" y="511.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (55,484,519 samples, 0.19%)</title><rect x="90.2" y="405" width="2.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="93.17" y="415.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,109,698 samples, 0.01%)</title><rect x="774.6" y="213" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="777.63" y="223.5" ></text>
</g>
<g >
<title>runtime.mallocgc (7,725,968 samples, 0.03%)</title><rect x="587.9" y="277" width="0.4" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="590.95" y="287.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5,273,999 samples, 0.02%)</title><rect x="641.9" y="389" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="644.88" y="399.5" ></text>
</g>
<g >
<title>handle_pte_fault (49,031,529 samples, 0.17%)</title><rect x="1185.7" y="421" width="2.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="1188.74" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (17,589,824 samples, 0.06%)</title><rect x="614.6" y="453" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="617.58" y="463.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (3,092,098 samples, 0.01%)</title><rect x="264.1" y="485" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="267.10" y="495.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (20,153,450 samples, 0.07%)</title><rect x="582.0" y="293" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="584.99" y="303.5" ></text>
</g>
<g >
<title>runtime.interhash (5,357,761 samples, 0.02%)</title><rect x="608.2" y="325" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="611.20" y="335.5" ></text>
</g>
<g >
<title>kmem_cache_free (11,196,174 samples, 0.04%)</title><rect x="160.9" y="245" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="163.87" y="255.5" ></text>
</g>
<g >
<title>runtime.madvise.abi0 (4,607,399 samples, 0.02%)</title><rect x="637.5" y="261" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="640.48" y="271.5" ></text>
</g>
<g >
<title>encoding/binary.(*littleEndian).Uint64 (5,442,059 samples, 0.02%)</title><rect x="394.0" y="437" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="397.00" y="447.5" ></text>
</g>
<g >
<title>do_anonymous_page (7,771,216 samples, 0.03%)</title><rect x="557.0" y="373" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="559.99" y="383.5" ></text>
</g>
<g >
<title>runtime.gcmarknewobject (6,806,926 samples, 0.02%)</title><rect x="563.1" y="469" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="566.05" y="479.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,435,900 samples, 0.02%)</title><rect x="811.6" y="181" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="814.63" y="191.5" ></text>
</g>
<g >
<title>clear_page_erms (7,699,443 samples, 0.03%)</title><rect x="583.8" y="117" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="586.80" y="127.5" ></text>
</g>
<g >
<title>__folio_alloc (5,432,543 samples, 0.02%)</title><rect x="582.4" y="149" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="585.40" y="159.5" ></text>
</g>
<g >
<title>runtime.newobject (3,102,045 samples, 0.01%)</title><rect x="593.9" y="309" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="596.88" y="319.5" ></text>
</g>
<g >
<title>rcu_do_batch (27,470,532 samples, 0.10%)</title><rect x="93.3" y="277" width="1.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="96.27" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,086,573 samples, 0.01%)</title><rect x="86.0" y="277" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="88.97" y="287.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (2,977,863 samples, 0.01%)</title><rect x="214.6" y="373" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="217.58" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,340,048 samples, 0.02%)</title><rect x="563.6" y="421" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="566.64" y="431.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/btf.readAndInflateTypes (10,815,772 samples, 0.04%)</title><rect x="583.0" y="309" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="586.01" y="319.5" ></text>
</g>
<g >
<title>runtime.findObject (52,719,095 samples, 0.18%)</title><rect x="283.5" y="501" width="2.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="286.55" y="511.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (3,804,290 samples, 0.01%)</title><rect x="490.5" y="421" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="493.54" y="431.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (3,046,938 samples, 0.01%)</title><rect x="1186.0" y="357" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1188.96" y="367.5" ></text>
</g>
<g >
<title>runtime.gopark (4,006,905 samples, 0.01%)</title><rect x="253.9" y="597" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="256.94" y="607.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (2,903,622 samples, 0.01%)</title><rect x="160.5" y="229" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="163.49" y="239.5" ></text>
</g>
<g >
<title>do_anonymous_page (11,845,621 samples, 0.04%)</title><rect x="643.4" y="325" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="646.35" y="335.5" ></text>
</g>
<g >
<title>runtime.deductAssistCredit (54,477,432 samples, 0.19%)</title><rect x="638.2" y="421" width="2.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="641.22" y="431.5" ></text>
</g>
<g >
<title>[unknown] (211,902,840 samples, 0.74%)</title><rect x="10.0" y="629" width="8.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="13.00" y="639.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,888,808 samples, 0.01%)</title><rect x="227.7" y="277" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="230.70" y="287.5" ></text>
</g>
<g >
<title>check_stack_object (3,825,115 samples, 0.01%)</title><rect x="704.8" y="309" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="707.80" y="319.5" ></text>
</g>
<g >
<title>syscall.read (1,596,114,866 samples, 5.55%)</title><rect x="414.6" y="421" width="65.6" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="417.63" y="431.5" >syscall..</text>
</g>
<g >
<title>__mod_lruvec_state (3,086,003 samples, 0.01%)</title><rect x="628.9" y="309" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="631.86" y="319.5" ></text>
</g>
<g >
<title>cpuset_node_allowed (3,070,250 samples, 0.01%)</title><rect x="847.9" y="197" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="850.95" y="207.5" ></text>
</g>
<g >
<title>setup_object (3,056,237 samples, 0.01%)</title><rect x="763.2" y="149" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="766.24" y="159.5" ></text>
</g>
<g >
<title>rcu_core (4,656,191 samples, 0.02%)</title><rect x="245.0" y="293" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="247.98" y="303.5" ></text>
</g>
<g >
<title>__dentry_kill (5,030,868 samples, 0.02%)</title><rect x="59.1" y="437" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="62.12" y="447.5" ></text>
</g>
<g >
<title>handle_pte_fault (12,373,824 samples, 0.04%)</title><rect x="580.0" y="197" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="583.05" y="207.5" ></text>
</g>
<g >
<title>runtime.casgstatus (4,672,457 samples, 0.02%)</title><rect x="649.7" y="389" width="0.2" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text x="652.73" y="399.5" ></text>
</g>
<g >
<title>charge_memcg (3,062,208 samples, 0.01%)</title><rect x="1001.1" y="229" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1004.09" y="239.5" ></text>
</g>
<g >
<title>__do_softirq (7,872,295 samples, 0.03%)</title><rect x="231.0" y="341" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="234.02" y="351.5" ></text>
</g>
<g >
<title>rcu_core_si (27,538,060 samples, 0.10%)</title><rect x="224.8" y="277" width="1.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="227.85" y="287.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,892,386 samples, 0.01%)</title><rect x="203.7" y="229" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="206.65" y="239.5" ></text>
</g>
<g >
<title>rmqueue_bulk (4,621,359 samples, 0.02%)</title><rect x="1187.3" y="293" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1190.28" y="303.5" ></text>
</g>
<g >
<title>github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries (16,648,931,517 samples, 57.94%)</title><rect x="505.7" y="581" width="683.7" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="508.67" y="591.5" >github.com/EMnify/giraffe/pkg/ebpf/mapgauge.BenchmarkNumEntries</text>
</g>
<g >
<title>__rcu_read_unlock (3,870,468 samples, 0.01%)</title><rect x="813.8" y="181" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="816.81" y="191.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (7,872,295 samples, 0.03%)</title><rect x="231.0" y="357" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="234.02" y="367.5" ></text>
</g>
<g >
<title>___slab_alloc (240,437,742 samples, 0.84%)</title><rect x="753.6" y="213" width="9.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="756.59" y="223.5" ></text>
</g>
<g >
<title>setup_object (6,998,830 samples, 0.02%)</title><rect x="747.5" y="117" width="0.3" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="750.52" y="127.5" ></text>
</g>
<g >
<title>error_entry (3,830,603 samples, 0.01%)</title><rect x="18.5" y="597" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="21.54" y="607.5" ></text>
</g>
<g >
<title>rcu_core_si (2,913,689 samples, 0.01%)</title><rect x="228.8" y="325" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="231.76" y="335.5" ></text>
</g>
<g >
<title>exc_page_fault (21,282,866 samples, 0.07%)</title><rect x="614.5" y="501" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="617.52" y="511.5" ></text>
</g>
<g >
<title>rcu_core_si (4,629,449 samples, 0.02%)</title><rect x="250.8" y="357" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="253.77" y="367.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,474,376 samples, 0.01%)</title><rect x="236.9" y="293" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="239.90" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (26,431,538 samples, 0.09%)</title><rect x="566.4" y="501" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="569.40" y="511.5" ></text>
</g>
<g >
<title>xa_load (3,788,863 samples, 0.01%)</title><rect x="818.9" y="197" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="821.88" y="207.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf/internal/sys.NewFD (3,869,533 samples, 0.01%)</title><rect x="1172.0" y="469" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1174.97" y="479.5" ></text>
</g>
<g >
<title>runtime.sysAllocOS (10,626,431 samples, 0.04%)</title><rect x="1004.7" y="277" width="0.5" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="1007.72" y="287.5" ></text>
</g>
<g >
<title>runtime.sysAlloc (10,626,431 samples, 0.04%)</title><rect x="1004.7" y="293" width="0.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="1007.72" y="303.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMapWithOptions (3,839,567 samples, 0.01%)</title><rect x="1176.6" y="517" width="0.1" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text x="1179.57" y="527.5" ></text>
</g>
<g >
<title>handle_mm_fault (16,865,615 samples, 0.06%)</title><rect x="600.5" y="245" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="603.53" y="255.5" ></text>
</g>
<g >
<title>free_unref_page (7,721,886 samples, 0.03%)</title><rect x="203.8" y="261" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="206.77" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,456,232 samples, 0.01%)</title><rect x="375.4" y="469" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="378.45" y="479.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (17,875,583 samples, 0.06%)</title><rect x="1170.1" y="357" width="0.8" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="1173.13" y="367.5" ></text>
</g>
<g >
<title>runtime.SetFinalizer.func2 (4,545,739 samples, 0.02%)</title><rect x="15.1" y="565" width="0.1" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="18.06" y="575.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,898,450 samples, 0.01%)</title><rect x="637.3" y="213" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="640.29" y="223.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (5,243,910 samples, 0.02%)</title><rect x="94.2" y="261" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="97.19" y="271.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (16,986,186 samples, 0.06%)</title><rect x="75.2" y="373" width="0.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="78.16" y="383.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (3,233,116 samples, 0.01%)</title><rect x="13.6" y="389" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="16.56" y="399.5" ></text>
</g>
<g >
<title>__alloc_pages (3,074,809 samples, 0.01%)</title><rect x="637.5" y="85" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="640.51" y="95.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,882,018 samples, 0.01%)</title><rect x="249.4" y="325" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="252.40" y="335.5" ></text>
</g>
<g >
<title>runtime.(*mcentral).cacheSpan (33,334,799 samples, 0.12%)</title><rect x="488.6" y="421" width="1.3" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="491.57" y="431.5" ></text>
</g>
<g >
<title>vfs_read (814,482,535 samples, 2.83%)</title><rect x="523.1" y="325" width="33.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="526.07" y="335.5" >vf..</text>
</g>
<g >
<title>runtime.memclrNoHeapPointers (35,221,001 samples, 0.12%)</title><rect x="566.1" y="517" width="1.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="569.10" y="527.5" ></text>
</g>
<g >
<title>runtime.mallocgc (8,289,132 samples, 0.03%)</title><rect x="565.6" y="501" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="568.61" y="511.5" ></text>
</g>
<g >
<title>security_file_alloc (10,422,501 samples, 0.04%)</title><rect x="777.4" y="229" width="0.5" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="780.44" y="239.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,063,966 samples, 0.01%)</title><rect x="15.8" y="517" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="18.84" y="527.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,702,953 samples, 0.03%)</title><rect x="94.4" y="405" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="97.40" y="415.5" ></text>
</g>
<g >
<title>psi_task_change (29,266,757 samples, 0.10%)</title><rect x="128.4" y="309" width="1.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="131.37" y="319.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,039,678 samples, 0.01%)</title><rect x="60.0" y="437" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="63.02" y="447.5" ></text>
</g>
<g >
<title>runtime.systemstack.abi0 (49,380,755 samples, 0.17%)</title><rect x="495.6" y="437" width="2.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="498.61" y="447.5" ></text>
</g>
<g >
<title>rcu_do_batch (8,365,118 samples, 0.03%)</title><rect x="209.5" y="245" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="212.48" y="255.5" ></text>
</g>
<g >
<title>pick_next_task (2,523,816 samples, 0.01%)</title><rect x="262.8" y="405" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="265.76" y="415.5" ></text>
</g>
<g >
<title>sync.(*Map).Load (83,008,568 samples, 0.29%)</title><rect x="517.9" y="485" width="3.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="520.92" y="495.5" ></text>
</g>
<g >
<title>__check_object_size (13,025,461 samples, 0.05%)</title><rect x="704.4" y="325" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="707.43" y="335.5" ></text>
</g>
<g >
<title>do_wp_page (12,373,824 samples, 0.04%)</title><rect x="580.0" y="181" width="0.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="583.05" y="191.5" ></text>
</g>
<g >
<title>__free_pages (5,214,235 samples, 0.02%)</title><rect x="158.0" y="133" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="160.96" y="143.5" ></text>
</g>
<g >
<title>runtime.(*mspan).initHeapBits (5,240,772 samples, 0.02%)</title><rect x="561.5" y="405" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="564.51" y="415.5" ></text>
</g>
<g >
<title>runtime.usleep.abi0 (66,101,515 samples, 0.23%)</title><rect x="11.7" y="533" width="2.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="14.70" y="543.5" ></text>
</g>
<g >
<title>__kmalloc_node (32,758,458 samples, 0.11%)</title><rect x="862.6" y="165" width="1.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="865.56" y="175.5" ></text>
</g>
<g >
<title>runtime/internal/syscall.Syscall6 (7,590,885 samples, 0.03%)</title><rect x="18.4" y="613" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="21.39" y="623.5" ></text>
</g>
<g >
<title>github.com/cilium/ebpf.newMap (4,646,935 samples, 0.02%)</title><rect x="1172.9" y="485" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1175.90" y="495.5" ></text>
</g>
<g >
<title>__irqentry_text_end (7,545,239 samples, 0.03%)</title><rect x="570.3" y="501" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="573.29" y="511.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,917,507 samples, 0.01%)</title><rect x="61.3" y="309" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="64.34" y="319.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (79,257,784 samples, 0.28%)</title><rect x="36.7" y="373" width="3.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="39.70" y="383.5" ></text>
</g>
<g >
<title>runtime.growslice (13,150,222 samples, 0.05%)</title><rect x="577.3" y="309" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="580.28" y="319.5" ></text>
</g>
<g >
<title>file_free_rcu (15,969,474 samples, 0.06%)</title><rect x="206.9" y="245" width="0.7" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="209.90" y="255.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (206,375,442 samples, 0.72%)</title><rect x="547.9" y="293" width="8.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="550.92" y="303.5" ></text>
</g>
</g>
</svg>
This file has been truncated, but you can view the full file.
mapgauge.test;[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];runtime.memmove;asm_exc_page_fault 766070
mapgauge.test;[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];runtime.memmove;error_entry 3083786
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 2344113
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_sysvec_apic_timer_interrupt 782450
mapgauge.test;[unknown];[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;error_entry 3830862
mapgauge.test;[unknown];[unknown];[unknown];runtime.clone.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_gettid;__task_pid_nr_ns 49690
mapgauge.test;[unknown];[unknown];[unknown];runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable;x86_pmu_disable;native_write_msr 70096
mapgauge.test;[unknown];[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.unlock2;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 92091
mapgauge.test;[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 757557
mapgauge.test;[unknown];[unknown];[unknown];runtime/internal/syscall.Syscall6;error_entry 1366751
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime.exitsyscall;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;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;__calc_delta 282564
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 2335228
mapgauge.test;[unknown];[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;error_entry 1448195
mapgauge.test;[unknown];[unknown];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.nanotime1.abi0;[[vdso]] 54648
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 780395
mapgauge.test;[unknown];[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable 21510
mapgauge.test;[unknown];[unknown];runtime.clone.abi0;ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 17060
mapgauge.test;[unknown];[unknown];runtime.mallocgc;entry_SYSCALL_64 676410
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.checkTimers 162022
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable 50743
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.lock2 79504
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.pidleput;runtime.updateTimerPMask;runtime.unlock2 107194
mapgauge.test;[unknown];[unknown];runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0 72475
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 53396
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 72475
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;dequeue_task;dequeue_task_fair 97892
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;dequeue_task;update_cfs_group 111502
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;pick_next_entity 102770
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;set_next_entity 439553
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.gcTrigger.test 321640
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.lock2 193870
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.retake 109000
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 1063396
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;[[vdso]] 322197
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;__vdso_clock_gettime 273489
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.gcTrigger.test 424749
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.handoffp 47294
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.lock2 258921
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0 1882850
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 1398633
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll 93649
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64 66419
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe 126624
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 185214
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 93053
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 79504
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 94237
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 446745
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 781416
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 41144
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;do_epoll_pwait.part.0 53406
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;set_user_sigmask 175362
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 109000
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;syscall_return_via_sysret 127784
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal 501658
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;cgroup_rstat_updated 53180
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 1241999
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule 32210
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 84011
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 138533
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 62449
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 77993
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 60743
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 143796
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;check_preempt_curr;check_preempt_wakeup 56272
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 70073
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 97892
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_load_avg;__update_load_avg_se 123374
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 47294
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 94080
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 246043
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.unlock2;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake 73903
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.unlock2;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe 32210
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.incidlelocked;runtime.checkdead 282144
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.lock2 110251
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone 763862
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 62511
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getpid;__task_pid_nr_ns 794635
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 59777
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;syscall_return_via_sysret 120143
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;__x64_sys_tgkill 201397
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 85133
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 469953
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_sig_info 40224
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;apparmor_task_kill 93649
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;audit_signal_info_syscall 38190
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 232939
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 42284
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 110096
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 329777
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 109000
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 204424
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 150408
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;__sigqueue_alloc;kmem_cache_alloc;get_obj_cgroup_from_current;__get_obj_cgroup_from_memcg 1020282
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 387859
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;consume_obj_stock 64634
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 57092
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;x2apic_send_IPI 35584
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;inc_rlimit_get_ucounts 62032
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;prepare_signal 116977
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 62449
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 311479
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;security_task_kill 759975
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;find_task_by_vpid 40391
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;from_kuid_munged;map_id_up 185144
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;do_tkill 57384
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 780679
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_safe_stack 156759
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;syscall_return_via_sysret 633797
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.signalM 59406
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.startm 32138
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.unlock2 149205
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.unlock2 57347
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 1254994
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;do_syscall_64 247326
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 1167779
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 3642936
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64 487313
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep 1274462
mapgauge.test;[unknown];[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 65921
mapgauge.test;[unknown];[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 760620
mapgauge.test;[unknown];[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 318304
mapgauge.test;[unknown];[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 290329
mapgauge.test;[unknown];[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 316154
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep 1151360
mapgauge.test;[unknown];[unknown];runtime.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 382273
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep 189959
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;__schedule 98507
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 201677
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_reprogram 92091
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 427004
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 52779
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 120143
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;enqueue_hrtimer;rb_insert_color 346901
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 402922
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 79119
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 39746
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 45557
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 384471
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 89747
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;get_nohz_timer_target 82810
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 191826
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 131763
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;ktime_get;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 167106
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;kvm_clock_get_cycles 167091
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 187029
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 1707303
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 735399
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;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 213418
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule 348255
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 3485559
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 68092
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 110992
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 852606
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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_cfs_rq 676607
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;clear_buddies 50719
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 983696
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 757226
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;__update_load_avg_cfs_rq 88913
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 48888
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 55037
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 902805
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 115288
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 1291892
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 807976
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 894498
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 56165
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 505345
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 601703
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 832526
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 824873
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 570006
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 530468
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 653013
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 650559
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 979123
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 174883
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 372852
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 141777
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 751183
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 304039
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 234396
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 200074
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 204916
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 651407
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 75544
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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;intel_pmu_enable_all 47720
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 126446
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;__intel_pmu_enable_all.isra.0 52998
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 370936
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 321137
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 250865
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;trigger_load_balance;nohz_balancer_kick;nohz_balance_exit_idle 36470
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 124632
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 94454
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 55777
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 137035
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 107194
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 344696
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 620200
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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;__bitmap_and 182578
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;_raw_spin_lock 97508
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 93312
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 420065
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;detach_tasks;can_migrate_task 112290
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 116336
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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;need_active_balance 102739
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 451977
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 1002494
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;update_dl_rq_load_avg 72592
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 673653
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_idle 104034
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 55729
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 261060
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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_fair 52616
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 202120
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 159792
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 84654
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 752558
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 62827
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 187781
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 2090507
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 54789
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_flags_change 59876
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 64619
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 1649888
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 93649
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 1905941
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 161792
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 173043
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 97570
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 272673
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 73090
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 94942
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 217682
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 133111
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 54058
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock;kvm_sched_clock_read 210615
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;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 190335
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.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 87146
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.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 450618
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;psi_task_switch 58694
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;raw_spin_rq_lock_nested 125703
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;update_rq_clock 220506
mapgauge.test;[unknown];[unknown];runtime.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 132117
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 122322
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 134793
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 3365696
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 369490
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;restore_fpregs_from_fpstate 756190
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 531040
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;restore_fpregs_from_fpstate 59222
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 590217
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;switch_fpu_return 237882
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;syscall_exit_to_user_mode 72412
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 4881972
mapgauge.test;[unknown];[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0 203384
mapgauge.test;[unknown];[unknown];runtime.systemstack.abi0;runtime.wbBufFlush.func1;runtime.wbBufFlush1;runtime.(*gcWork).putBatch;runtime.scanobject;asm_exc_page_fault 724437
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.(*mcache).prepareForSweep 80018
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime.exitsyscall;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;rb_erase 95309
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;amd_clear_divider 120143
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;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 109000
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime.exitsyscall;runtime.mcall;runtime.exitsyscall0;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.notesleep;runtime.futex.abi0;syscall_return_via_sysret 132117
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_exc_page_fault 6944185
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;asm_sysvec_apic_timer_interrupt 776743
mapgauge.test;[unknown];[unknown];syscall.Syscall;runtime/internal/syscall.Syscall6;error_entry 5389327
mapgauge.test;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;rep_stos_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;copy_page 161381
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;mas_prev_slot 104750
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;up_write 46761
mapgauge.test;[unknown];github.com/cilium/ebpf/btf.splitNull;os.(*File).ReadAt;internal/poll.(*FD).Pread;syscall.pread;syscall.Syscall6;runtime/internal/syscall.Syscall6;error_entry 769293
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;entry_SYSCALL_64 2305187
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;entry_SYSCALL_64_safe_stack 782582
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;runtime.lock2;entry_SYSCALL_64 676971
mapgauge.test;[unknown];github.com/cilium/ebpf/internal/sys.newFD;runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe 780999
mapgauge.test;[unknown];runtime.(*mcache).allocLarge;runtime.(*mheap).alloc;runtime.systemstack.abi0;runtime.(*mheap).alloc.func1;runtime.(*mheap).allocSpan;[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 75499
mapgauge.test;[unknown];runtime.(*mcache).nextFree;runtime.(*mcache).refill;runtime.(*mcentral).cacheSpan;runtime.(*mcentral).grow;runtime.(*mspan).initHeapBits;runtime.writeHeapBits.flush;asm_exc_page_fault 781134
mapgauge.test;[unknown];runtime.(*mcentral).grow;runtime.(*mspan).initHeapBits;runtime/internal/syscall.Syscall6;asm_exc_page_fault 754011
mapgauge.test;[unknown];runtime.(*mheap).alloc.func1;syscall.Syscall6;runtime/internal/syscall.Syscall6;asm_exc_page_fault 1545795
mapgauge.test;[unknown];runtime.SetFinalizer;runtime.systemstack.abi0;runtime.SetFinalizer.func2;runtime.addfinalizer;entry_SYSCALL_64 751803
mapgauge.test;[unknown];runtime.addspecial;entry_SYSCALL_64_safe_stack 716251
mapgauge.test;[unknown];runtime.mProf_Malloc;runtime.stkbucket;asm_exc_page_fault 778193
mapgauge.test;[unknown];runtime.mapaccess1;runtime.memmove;error_entry 778968
mapgauge.test;[unknown];runtime.memmove;error_entry 1555984
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.gcTrigger.test 39880
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.gcTrigger.test;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;rebalance_domains;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_group_capacity 66885
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.minit;runtime.minitSignals;runtime.minitSignalMask 97254
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.netpoll 667294
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon 1873586
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.(*scavengerState).wake 782723
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.gcTrigger.test 451977
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0 2056362
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.nanotime1.abi0;[[vdso]] 737595
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 1355282
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;__fdget 1116065
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 735934
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.netpoll;runtime/internal/syscall.Syscall6;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 856685
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;__x64_sys_futex 56694
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;rb_insert_color 97143
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.osyield.abi0;syscall_return_via_sysret 270004
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake 112116
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 76113
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_queue_wakelist 373240
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_loop 73120
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.notewakeup;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;rcu_note_context_switch 389886
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.handoffp;runtime.startm;runtime.osyield.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule;pick_next_task;pick_next_task_fair;pick_next_entity 53396
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.getpid.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 522260
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill;apparmor_task_kill;aa_may_signal;profile_signal_perm 86288
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 295772
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;__sigqueue_alloc;inc_rlimit_get_ucounts 776605
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;prepare_signal 2306616
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 2126426
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;idr_find 432958
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;do_tkill 633546
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.retake;runtime.preemptone;runtime.tgkill.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 54688
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0 54648
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64 1860383
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe 963701
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 420967
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;do_nanosleep 73120
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 79218
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 732713
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 779034
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 155120
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;get_nohz_timer_target 99227
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 668135
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;lapic_next_deadline 887574
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 1821448
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;lapic_next_deadline 1286122
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 1271044
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 1115198
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 1306439
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 245573
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 1138514
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;clear_buddies 724927
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 1798350
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;__calc_delta 197559
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;clear_buddies 90469
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 577796
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 607176
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 960641
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 554548
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 737595
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;__update_load_avg_se 658787
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 797751
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 1158421
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 139765
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;_raw_spin_unlock 193627
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 17031
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 57045
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 763862
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 954557
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;__rcu_read_unlock 267116
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 650169
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 565560
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 164952
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;activate_task;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;attach_entity_load_avg 55615
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;detach_tasks;deactivate_task;dequeue_task;dequeue_task_fair;update_load_avg 234040
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 110463
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_queue 599174
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 54648
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair;update_load_avg;__update_load_avg_se 421200
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;put_prev_entity 721094
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_idle 531258
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 53234
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 937520
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 510938
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 478899
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 625253
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 1538513
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 4127778
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;record_times 591420
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 81379
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;sched_clock_cpu 136981
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 136477
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 420967
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 56694
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 1641750
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 820883
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return;restore_fpregs_from_fpstate 1359018
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 63559
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 123672
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;entry_SYSCALL_64_safe_stack 245573
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.sysmon;runtime.usleep.abi0;syscall_return_via_sysret 4169570
mapgauge.test;[unknown];runtime.mstart.abi0;runtime.mstart0;runtime.mstart1;runtime.usleep.abi0 804649
mapgauge.test;[unknown];runtime/internal/syscall.Syscall6;asm_exc_page_fault 3760282
mapgauge.test;[unknown];runtime/internal/syscall.Syscall6;error_entry 3830603
mapgauge.test;__rdgsbase_inactive 70073
mapgauge.test;__switch_to_asm 659316
mapgauge.test;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;perf_cgroup_switch 1430914
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_cgroup_switch 117353
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch 760893
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;_raw_spin_unlock 631997
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 681866
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 35414357
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 548638
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 12226821
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1571855
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 23490149
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3144974
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 228769190
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 780251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 3922738
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 17278004
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 54901250
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 24315431
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 23563284
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;kvfree;vfree;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk;__free_one_page 786948
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_files;put_files_struct;kvfree;vfree;__free_pages;free_unref_page;free_unref_page_prepare;__memcg_kmem_uncharge_page;obj_cgroup_uncharge_pages 786619
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1564516
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_zone_page_state 777529
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1175723
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 15578783
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 5414951
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 5276217
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 780571
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2329665
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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;cgroup_rstat_updated 778018
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1931961
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 710507
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 9885038
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2326033
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2955673
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_commit 767195
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 782911
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 772680
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 12370494
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 775916
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2287695
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_prepare 786643
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 4556343
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 1552061
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 779749
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0;__mod_zone_page_state 2341684
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_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 2341273
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run 131234172
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput 635210
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 1259771
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput 326576052
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1127195
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 5932390
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 5030868
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 14494208
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 567813
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 621440
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;__rcu_read_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1143887
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 4039678
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 28199403
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1182312
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 1157319
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab 577876
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 23392919
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_trylock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 570321
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_trylock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__rcu_read_lock 576360
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_trylock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;slab_update_freelist.isra.0 601060
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;_raw_spin_trylock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 626107
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 127574251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1869284
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1648596
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 613990
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit 540336
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 611915
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 579780
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2942162
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_adjust.constprop.0 107152
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 2908014
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 632538
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 5784647
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 607772
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;cache_from_obj 600175
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 5309608
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2364585
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__raw_spin_lock_irqsave 115418
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 106515
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;slab_update_freelist.isra.0 565862
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 733689
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1211933
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 554263
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;kmem_cache_free 598776
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 577331
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1132600
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__mod_zone_page_state 543262
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__mod_zone_page_state 592042
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 5963039
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 31430631
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 109128208
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 3548156
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 1096007
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 1724337
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 564650
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 594320
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 633634
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 1175422
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 554121
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock 1703561
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_put_uref;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state 670248
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 578537
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 630593
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 542549
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;__mod_zone_page_state 652224
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 2317827
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release 222779540
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2484884
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7320951
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 6080114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch 631725
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;asm_sysvec_apic_timer_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 555056
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 554129
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;asm_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 579564
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;asm_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 607066
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;rcu_sched_clock_irq 564908
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3506258
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__rcu_read_lock 609610
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2262041
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 129519
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 589408
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1105605
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;obj_cgroup_uncharge 591884
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2920742
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put 81030361
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;__queue_work 10067056
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 3518442
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 4329758
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 51154761
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 16430158
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 564692
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;update_rq_clock;sched_clock_cpu;sched_clock_noinstr 549246
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 102525
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 2376948
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 6438921
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;cache_from_obj 546713
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 5240011
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1204179
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 601518
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 612644
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 626148
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;__slab_free;discard_slab 574190
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;discard_slab 616114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1713846
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 551311
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1228083
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 549877
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 558214
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;obj_cgroup_uncharge 584108
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk 580745
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 5243910
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1725024
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 2976057
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1087273
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;local_clock;local_clock_noinstr;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 554211
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 2360388
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1840299
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1488185
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 7016822
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 18930775
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 30355369
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 9410270
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 1690057
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 936858
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 141800430
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 3714288
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on 61304142
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work 98017025
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_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 4601117
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_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 11871289
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_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 12124767
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_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 553539
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_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 3076433
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;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 658197
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;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 499744
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;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 7916617
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;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 335339
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;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 208741
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;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 8113525
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up 49464318
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1477453
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 337035
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 3425605
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1686228
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 3905774
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1119188
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 148295980
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 3005150
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 2294057
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 44533844
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1359986
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 13100143
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 767645
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 417360
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 2082008
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 527208
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 2594001
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1076936
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 17202445
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 746383
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 880500
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 4203216
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 3897834
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 4541807
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 3664589
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 11810292
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 2434939
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1036710
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 414391
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 858515
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 2031832
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 5642504
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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;cpu_util 103439
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 751263
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 7497743
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 118292
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 10600738
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 107465
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 946589
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1381487
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 4492587
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 4595434
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 320019
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 4797586
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 3456861
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 3026840
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 787722
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 465034
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 340825
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 775275
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1296889
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 2427263
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 310334
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 2506818
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 102983
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 7363922
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1667312
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 11252454
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 105705
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 436639
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1023237
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 207752
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 104893
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 103139
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 6380848
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 203944
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 416912
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1814473
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 5070025
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1038641
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 29469254
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 28919686
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 6437680
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 6252846
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 168695457
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 41736619
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 15008136
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;call_function_single_prep_ipi 1170429
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 25287126
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 21531863
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 8044681
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 557364
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 5104271
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 4097317
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 50830641
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu;sched_clock;sched_clock_noinstr;pvclock_clocksource_read_nowd 1672629
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1662692
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1712346
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 2789503
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 668257
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 3964620
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1354617
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 11892554
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 104383
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;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 439286
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;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 2180171
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;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 211519
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_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 38669943
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3095222
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 18882793
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 37848439
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 5614553
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 566000
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg 102693
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 554258
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;raw_notifier_call_chain;notifier_call_chain 545342
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;check_cpu_stall 544413
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_disable;native_write_msr 563029
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair 564761
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_cfs_group 567761
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_curr 578108
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_load_avg;__update_load_avg_se 549260
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;native_apic_msr_eoi_write 103055
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 13665600
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_cblist_dequeue 2382330
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3546575
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 49249910
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;__rcu_read_lock 602106
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1724710
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1205712
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 555230
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 35193740
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__rcu_read_lock 545258
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__rcu_read_unlock 577712
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 18344456
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1815629
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1703735
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_pages 544704
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 540982
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 550251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;_raw_spin_trylock 1775108
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 541918
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_commit 1198715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1148243
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;discard_slab;free_slab;__free_slab 601243
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;_raw_spin_lock_irqsave 564634
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;mod_node_page_state 628222
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 568942
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 14643906
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 5891195
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 14288913
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;mod_objcg_state;mod_memcg_lruvec_state 1119850
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 557411
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;obj_cgroup_uncharge_pages 1195590
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 7032669
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 668567
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1674520
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2287079
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__rcu_read_lock 558618
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state 1162949
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock 600325
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock;__refill_stock 586737
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock;__refill_stock;drain_stock;page_counter_uncharge 559589
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;refill_stock 599861
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 582758
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2903622
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;mod_objcg_state 3054257
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 570081
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;kmem_cache_free 546611
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 627830
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 546882
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1120094
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2318447
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1227617
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4781343
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;__mod_zone_page_state 1145091
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;discard_slab 552626
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 622221
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_update_freelist.isra.0 548829
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 83867647
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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_nocb_unlock_irqrestore.part.0 542286
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;rebalance_domains;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_sg_lb_stats;cpu_util 575220
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers 571960
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;call_timer_fn;process_timeout;wake_up_process;try_to_wake_up;ttwu_do_activate 589291
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;bpf_map_put;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;call_timer_fn;process_timeout;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task 574125
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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;error_entry 571424
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 8557015
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 11659928
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 6163107
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 2422501
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_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 4306770
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 9048668
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 8312611
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 7824831
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 561934
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 549910
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;bpf_map_release;queue_work_on;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1205071
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 60971251
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__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 574900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1113223
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 603462
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1713914
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 563980
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;mod_objcg_state 545689
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;refill_obj_stock 628782
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2378442
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;run_timer_softirq;__run_timers;call_timer_fn;tcp_orphan_update;_find_next_bit 535355
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 47748800
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;asm_sysvec_apic_timer_interrupt 548554
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 6373974
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput 53520542
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched 17645913
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule 14871783
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 213187
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5368063
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 316380
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 415259
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 106453
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0 7696842
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4430158
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4020776
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 4574084
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1135201
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2207716
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 102365
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 1179083
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 9226476
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 13863614
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 100400
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 2096723
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 3070399
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 204117
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 116727
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 208378
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 269806
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_load_avg;__update_load_avg_se 121254
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;profile_tick 241239
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 104342
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 109714
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_adjust.constprop.0 106021
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;raw_notifier_call_chain;pvclock_gtod_notify 206128
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;irq_work_tick 103455
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;run_posix_cpu_timers 110564
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 114129
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;account_process_tick;account_system_time;account_system_index_time;cpuacct_account_field 101665
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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_system_time 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;__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 102692
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 102427
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 103472
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;arch_scale_freq_tick 104871
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 102648
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 115941
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 102823
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 102793
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;hrtimer_active 104214
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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;reweight_entity 103558
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 105344
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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;cgroup_rstat_updated 104256
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 103547
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 115712
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 103616
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 107801
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 104337
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 104625
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 214351
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 105115
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 320245
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 103640
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 207750
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 116430
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 440304
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1201218
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 104088
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 104446
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1111535
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 116715
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 990590
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 104617
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 116070
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 220014
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 128472
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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;mod_node_page_state 153552
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 668693
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 324994
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 335810
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 105275
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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;__rcu_read_lock 115088
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 104408
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 102059
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock;__refill_stock 130414
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;slab_update_freelist.isra.0 105350
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 116813
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 1705642
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 154453
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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 154725
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;rebalance_domains;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_sg_lb_stats 105332
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair;update_load_avg 113903
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_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_dl_rq_load_avg 109364
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;call_timer_fn;delayed_work_timer_fn;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;sched_clock_cpu;sched_clock 103193
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_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 321224
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 876648
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 416597
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1037669
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 11396788
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 762494
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 233727
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1379354
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 17981548
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 431587
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 415799
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2012575
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1070918
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1621332
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 10304732
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 658974
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2229665
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 734934
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 100473
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 5578001
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 322213
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 15635342
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 9532617
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 9317083
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2681036
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1913053
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1823612
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 539603
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4832140
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1040290
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 218642
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 775156
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3726247
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1288210
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1158960
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3641115
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6786709
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3774941
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 831645
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 120989
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 236328
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6369905
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1083563
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1074208
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 839327
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 4150062
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 221220
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1304338
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 106994
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6123448
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 207897
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 38481805
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3108105
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 120935
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1184057
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1064718
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 9747548
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1738011
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 25299943
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 778787
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 943135
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 207746
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 861572
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 112237
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 392238
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6397362
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 102670
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 458786
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 110450
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1711896
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1043050
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 551595
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 437828
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1195235
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 104768
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__cond_resched;rcu_note_context_switch 103861
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 229746
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill 43985684
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;finish_task_switch.isra.0 102868
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;finish_task_switch.isra.0;__perf_event_task_sched_in 552143
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;psi_task_switch;psi_group_change 596821
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 12880286
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 549839
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;__rcu_read_unlock 596511
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 562827
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk;__free_one_page 640590
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;cache_from_obj 590847
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;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 543141
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1808893
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event 545113
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 2871146
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;kmem_cache_free;__rcu_read_lock 628836
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree 543876
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 622897
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock 549840
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;local_clock;local_clock_noinstr;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 604151
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;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_one_page 563696
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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;rcu_cblist_dequeue 3765656
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free 10751384
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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 10185995
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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 2672746
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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 3551519
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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 5480805
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free 145434422
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 3004701
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__rcu_read_unlock 1105375
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 68860829
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 546887
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 584584
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 2868073
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1836307
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 4226855
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 102902
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;_raw_spin_unlock_irqrestore 111922
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 747871
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1239847
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1890807
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1743525
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 3759888
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1664899
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 2356670
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1086034
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch 627567
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 1120175
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 542353
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 602291
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1212175
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1828316
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 4681395
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page_prepare 571985
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1162268
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 2410253
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 3782175
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 539364
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;_raw_spin_trylock 566133
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;put_cpu_partial;discard_slab 551712
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;slab_update_freelist.isra.0 631287
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 107402
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 553526
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 102063
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1674041
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 40163354
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 549951
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 583686
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes 128377
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 3631653
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 1114996
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials 549203
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;mod_objcg_state 545852
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk;__free_one_page 570463
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 4044972
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;__slab_free;slab_update_freelist.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_report_qs_rnp;swake_up_one 567822
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;update_vsyscall 546540
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;task_tick_fair;update_curr 567722
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 1145900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1252137
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 4747641
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;__rcu_read_unlock 625099
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 4133559
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;__rcu_read_lock 603824
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1174789
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 622765
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;cache_from_obj 1096377
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;mod_objcg_state 1794561
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;obj_cgroup_uncharge;refill_obj_stock 598966
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;mod_objcg_state 571893
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;kmem_cache_free 654996
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;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 1126684
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 4159825
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;run_rebalance_domains;rebalance_domains;load_balance;find_busiest_group;update_sg_lb_stats 548309
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;run_timer_softirq;__run_timers;__next_timer_interrupt 548382
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 37420914
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;irq_work_tick 574874
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;__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 567230
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;cache_from_obj;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 1133800
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1280032
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1758248
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;obj_cgroup_uncharge;refill_obj_stock 581383
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;kmem_cache_free 566377
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;radix_tree_node_rcu_free;kmem_cache_free;__slab_free 622321
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;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 627674
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;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 602676
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;radix_tree_node_rcu_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk;__free_one_page;__mod_zone_page_state 649278
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;cache_from_obj;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1677129
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 214988
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 36784924
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1111431
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 616040
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 2965517
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 2496219
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial 639567
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages 692346
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock 677181
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;kmem_cache_free 544570
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 3577316
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 2444361
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 3580783
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1434243
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;asm_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 116578
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 25419156
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 562349
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 557315
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 1107161
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 1136598
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;kmem_cache_free 622949
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;memcg_account_kmem 539790
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 10609887
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;__rcu_read_lock 100888
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 675775
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 2152447
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 2398485
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 103562
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock 2290494
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 963429
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 106595
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 564088
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 618176
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;asm_sysvec_apic_timer_interrupt;sysvec_apic_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 592087
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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;asm_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 544575
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_free;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock;drain_stock 708077
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 1733390
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 564108
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 3249210
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_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 2977863
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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 5192659
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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 1134651
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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 116276
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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 611126
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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;__free_pages 557337
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_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 8242511
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 45808828
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3104496
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 10717754
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 1111651
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 623942
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 597874
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;_raw_spin_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 543820
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 615118
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 1695296
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 6315919
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 159518698
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;update_vsyscall 546253
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 1142862
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes;__note_gp_changes;rcu_accelerate_cbs;rcu_segcblist_accelerate 551163
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 598116
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1741159
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 595633
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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;cache_from_obj 626230
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 3396924
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 2892444
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free;slab_update_freelist.isra.0 585924
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1204231
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 548658
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 595913
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages 601266
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;dentry_unlink_inode;iput;_atomic_dec_and_lock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;refill_stock;__refill_stock 540640
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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_update_freelist.isra.0 622014
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1775479
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 570924
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 1172488
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_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 7775992
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 1913745
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;iput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 561677
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;iput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 625075
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;__dentry_kill;iput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1174114
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_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 3517342
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 3670140
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 537901
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 27527176
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 723724
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 538873
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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;file_free_rcu 560499
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 615245
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 558927
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 617457
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials 588020
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 590307
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state 534097
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 537582
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 10677344
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 1798150
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 646013
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;cache_from_obj 576972
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 8609457
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 1179732
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;__slab_free;put_cpu_partial;__unfreeze_partials 550862
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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;__slab_free;slab_update_freelist.isra.0 577497
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;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 605598
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 1552668
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_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 50527542
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 1110015
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_cblist_dequeue 540756
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 1804432
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 620276
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 593606
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;obj_cgroup_uncharge 184462
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;dput;lockref_put_return;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 3018748
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;ep_eventpoll_release;ep_clear_and_put;kfree 573681
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1926793
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 10797786
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 7088769
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3605127
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3186275
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1828066
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 35163584
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 5326196
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 579805
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 552874
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;__slab_free 607468
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1180262
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 2658305
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput_no_expire;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 557424
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput_no_expire;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;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 541157
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;mntput_no_expire;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1198641
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 45139125
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 547204
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 594355
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3483278
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;cache_from_obj 626691
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 572557
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 552905
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;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 588045
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 1257724
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 592289
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;obj_cgroup_uncharge;refill_obj_stock 615836
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;obj_cgroup_uncharge;refill_obj_stock;__rcu_read_lock 1158835
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;refill_obj_stock 545686
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk 1253125
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;cache_from_obj 589136
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 3474376
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 35392399
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 4333034
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 37458086
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 559882
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 588638
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free;kmem_cache_free;__slab_free 540374
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 615710
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 4447115
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 40616995
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 68591714
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;file_free_rcu 564407
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1661887
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 619087
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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;kfree;__kmem_cache_free;__slab_free;slab_update_freelist.isra.0 622125
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;__slab_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;radix_tree_node_rcu_free 596089
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 592596
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 557172
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 103396
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1109636
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 120900
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 783538
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 554557
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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_unref_page 614928
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1337488
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 1791914
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 41232050
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 730776
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;__rcu_read_lock 602072
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 573545
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials 588118
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;discard_slab 544414
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state 558500
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;refill_obj_stock 638481
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput;security_file_free;kmem_cache_free;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1723810
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 11104951
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_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 6396139
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 577022
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 17866606
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 1366771
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 11657959
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 626984
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 572829
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;dput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1682205
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 3510058
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 1769709
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 25149351
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;mntput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 1696003
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;mntput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 616298
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;mntput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__kmem_cache_free 612889
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;mntput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages 559630
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;mntput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages;memcg_account_kmem;mod_memcg_state;__mod_memcg_state 589344
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;mntput;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 555285
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 3010904
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 16073420
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__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 546974
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;file_free_rcu 547356
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 633923
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;__rcu_read_unlock 546614
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 1665041
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;_raw_spin_trylock 574309
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;kfree;__kmem_cache_free;__slab_free 609691
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;obj_cgroup_uncharge;refill_obj_stock;obj_cgroup_uncharge_pages 116359
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;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 582383
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;percpu_counter_add_batch;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1160032
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 2628554
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 28511150
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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 630619
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;mod_objcg_state 549860
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;obj_cgroup_uncharge;refill_obj_stock 545375
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;radix_tree_node_rcu_free;kmem_cache_free;__slab_free 577219
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_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;rcu_cblist_dequeue 605419
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;__fput 4978596
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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;mod_memcg_lruvec_state 623950
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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;mod_objcg_state 1168736
mapgauge.test;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_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 551579
mapgauge.test;irq_enter_rcu 101248
mapgauge.test;os_xsave 1420731
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 770136
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;__irqentry_text_end 770136
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func3;runtime.startTheWorldWithSema;runtime.procresize;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__folio_throttle_swaprate;blk_cgroup_congested 298882
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.gcMarkTermination;runtime.systemstack.abi0;runtime.gcMarkTermination.func4;runtime.forEachP;runtime.notetsleep;runtime.notetsleep_internal;runtime.futex.abi0;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single 114852
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gcMarkDone;runtime.systemstack.abi0;runtime.forEachP 124350
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;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 781550
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 758287
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark 758955
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.execute 41255
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable 756617
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 20248
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;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 19946
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push 579810
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault 457921
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.(*mcache).prepareForSweep;runtime.(*mcache).releaseAll;runtime.(*mcentral).uncacheSpan;runtime.(*sweepLocked).sweep;runtime.(*spanSet).push;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 536229
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.gopark;runtime.mcall;runtime.park_m;runtime.schedule;runtime.findRunnable;runtime.stopm;runtime.acquirep;runtime.(*mcache).prepareForSweep;runtime.stackcache_clear;runtime.unlock2 757809
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_get_value_locked 78115
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain 141067855
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule 756353
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.putempty;runtime.(*lfstack).push 757734
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.(*gcWork).tryGet;runtime.trygetfull 3036498
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.findObject 21902665
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.findObject;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 515100
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.gcFlushBgCredit 1454468
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.greyobject 17438843
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.heapBits.next 9215147
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.heapBitsForAddr 9700075
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runtime.gcDrain;runtime.markroot;runtime.markroot.func1;runtime.osyield.abi0 614529
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 616815
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 1846176
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;raw_spin_rq_lock_nested 596606
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 1292048
mapgauge.test;runtime.goexit.abi0;runtime.gcBgMarkWorker;runtime.systemstack.abi0;runtime.gcBgMarkWorker.func2;runti
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment