2023 talk about flamegraphs
[libguestfs-talks.git] / 2023-flamegraphs / nbdkit-file-fio.svg
diff --git a/2023-flamegraphs/nbdkit-file-fio.svg b/2023-flamegraphs/nbdkit-file-fio.svg
new file mode 100644 (file)
index 0000000..fddd22f
--- /dev/null
@@ -0,0 +1,8593 @@
+<?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="630" onload="init(evt)" viewBox="0 0 1200 630" 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="630.0" fill="url(#background)"  />
+<text id="title" x="600.00" y="24" >Flame Graph</text>
+<text id="details" x="10.00" y="613" > </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="613" > </text>
+<g id="frames">
+<g >
+<title>rebalance_domains (857,110,121 samples, 0.02%)</title><rect x="1041.9" y="389" width="0.2" height="15.0" fill="rgb(234,87,37)" rx="2" ry="2" />
+<text  x="1044.91" y="399.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (949,758,242 samples, 0.02%)</title><rect x="184.1" y="181" width="0.3" height="15.0" fill="rgb(230,99,53)" rx="2" ry="2" />
+<text  x="187.14" y="191.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,343,345,970 samples, 0.03%)</title><rect x="275.7" y="469" width="0.3" height="15.0" fill="rgb(211,14,5)" rx="2" ry="2" />
+<text  x="278.68" y="479.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_from_iter (36,953,012,690 samples, 0.72%)</title><rect x="73.4" y="197" width="8.5" height="15.0" fill="rgb(211,16,3)" rx="2" ry="2" />
+<text  x="76.39" y="207.5" ></text>
+</g>
+<g >
+<title>put_prev_task_idle (587,163,668 samples, 0.01%)</title><rect x="1179.6" y="437" width="0.1" height="15.0" fill="rgb(241,20,24)" rx="2" ry="2" />
+<text  x="1182.60" y="447.5" ></text>
+</g>
+<g >
+<title>kfree (3,192,788,428 samples, 0.06%)</title><rect x="870.3" y="309" width="0.8" height="15.0" fill="rgb(206,6,6)" rx="2" ry="2" />
+<text  x="873.35" y="319.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,158,390,584 samples, 0.02%)</title><rect x="281.1" y="485" width="0.3" height="15.0" fill="rgb(229,122,43)" rx="2" ry="2" />
+<text  x="284.14" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (1,903,663,656 samples, 0.04%)</title><rect x="321.6" y="261" width="0.5" height="15.0" fill="rgb(207,158,23)" rx="2" ry="2" />
+<text  x="324.63" y="271.5" ></text>
+</g>
+<g >
+<title>fpregs_restore_userregs (487,722,057 samples, 0.01%)</title><rect x="1009.3" y="389" width="0.2" height="15.0" fill="rgb(224,208,26)" rx="2" ry="2" />
+<text  x="1012.34" y="399.5" ></text>
+</g>
+<g >
+<title>mutex_lock (4,144,652,071 samples, 0.08%)</title><rect x="193.2" y="181" width="1.0" height="15.0" fill="rgb(209,215,16)" rx="2" ry="2" />
+<text  x="196.22" y="191.5" ></text>
+</g>
+<g >
+<title>prepare_alloc_pages.constprop.0 (1,488,240,670 samples, 0.03%)</title><rect x="88.2" y="149" width="0.3" height="15.0" fill="rgb(222,40,23)" rx="2" ry="2" />
+<text  x="91.20" y="159.5" ></text>
+</g>
+<g >
+<title>vfs_write (3,600,948,429 samples, 0.07%)</title><rect x="1017.1" y="309" width="0.8" height="15.0" fill="rgb(218,17,46)" rx="2" ry="2" />
+<text  x="1020.12" y="319.5" ></text>
+</g>
+<g >
+<title>unix_passcred_enabled (460,048,343 samples, 0.01%)</title><rect x="105.7" y="197" width="0.1" height="15.0" fill="rgb(246,216,11)" rx="2" ry="2" />
+<text  x="108.66" y="207.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_exit (3,078,279,636 samples, 0.06%)</title><rect x="1187.5" y="485" width="0.7" height="15.0" fill="rgb(234,110,2)" rx="2" ry="2" />
+<text  x="1190.46" y="495.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,786,658,926 samples, 0.03%)</title><rect x="49.3" y="101" width="0.4" height="15.0" fill="rgb(211,201,52)" rx="2" ry="2" />
+<text  x="52.30" y="111.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (1,699,160,378 samples, 0.03%)</title><rect x="317.6" y="229" width="0.4" height="15.0" fill="rgb(209,91,37)" rx="2" ry="2" />
+<text  x="320.62" y="239.5" ></text>
+</g>
+<g >
+<title>security_socket_getpeersec_dgram (12,237,515,772 samples, 0.24%)</title><rect x="936.1" y="357" width="2.8" height="15.0" fill="rgb(240,158,9)" rx="2" ry="2" />
+<text  x="939.08" y="367.5" ></text>
+</g>
+<g >
+<title>page_counter_uncharge (14,651,165,881 samples, 0.28%)</title><rect x="229.9" y="85" width="3.4" height="15.0" fill="rgb(216,137,53)" rx="2" ry="2" />
+<text  x="232.90" y="95.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (2,452,770,978 samples, 0.05%)</title><rect x="226.6" y="165" width="0.6" height="15.0" fill="rgb(227,24,38)" rx="2" ry="2" />
+<text  x="229.60" y="175.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (127,800,291,863 samples, 2.48%)</title><rect x="173.3" y="277" width="29.2" height="15.0" fill="rgb(219,101,28)" rx="2" ry="2" />
+<text  x="176.28" y="287.5" >en..</text>
+</g>
+<g >
+<title>check_preemption_disabled (1,160,818,921 samples, 0.02%)</title><rect x="210.9" y="101" width="0.3" height="15.0" fill="rgb(226,24,22)" rx="2" ry="2" />
+<text  x="213.91" y="111.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (1,367,786,195 samples, 0.03%)</title><rect x="1051.2" y="389" width="0.3" height="15.0" fill="rgb(208,184,17)" rx="2" ry="2" />
+<text  x="1054.17" y="399.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (799,981,363 samples, 0.02%)</title><rect x="96.5" y="101" width="0.2" height="15.0" fill="rgb(218,179,3)" rx="2" ry="2" />
+<text  x="99.49" y="111.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (1,136,199,601 samples, 0.02%)</title><rect x="806.4" y="357" width="0.2" height="15.0" fill="rgb(249,172,27)" rx="2" ry="2" />
+<text  x="809.38" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,395,585,807 samples, 0.03%)</title><rect x="277.3" y="453" width="0.3" height="15.0" fill="rgb(206,226,33)" rx="2" ry="2" />
+<text  x="280.28" y="463.5" ></text>
+</g>
+<g >
+<title>tick_nohz_get_sleep_length (3,258,624,831 samples, 0.06%)</title><rect x="1026.0" y="437" width="0.7" height="15.0" fill="rgb(235,166,45)" rx="2" ry="2" />
+<text  x="1029.00" y="447.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (1,318,467,607 samples, 0.03%)</title><rect x="51.3" y="133" width="0.3" height="15.0" fill="rgb(244,27,34)" rx="2" ry="2" />
+<text  x="54.34" y="143.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,432,040,337 samples, 0.03%)</title><rect x="280.6" y="549" width="0.4" height="15.0" fill="rgb(249,154,45)" rx="2" ry="2" />
+<text  x="283.62" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (142,518,066,138 samples, 2.76%)</title><rect x="221.8" y="261" width="32.6" height="15.0" fill="rgb(213,46,18)" rx="2" ry="2" />
+<text  x="224.80" y="271.5" >en..</text>
+</g>
+<g >
+<title>__count_memcg_events (1,455,657,268 samples, 0.03%)</title><rect x="228.7" y="85" width="0.3" height="15.0" fill="rgb(246,205,7)" rx="2" ry="2" />
+<text  x="231.71" y="95.5" ></text>
+</g>
+<g >
+<title>__libc_recv (72,239,554,967 samples, 1.40%)</title><rect x="255.4" y="293" width="16.5" height="15.0" fill="rgb(230,18,2)" rx="2" ry="2" />
+<text  x="258.38" y="303.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (4,627,740,756 samples, 0.09%)</title><rect x="101.2" y="117" width="1.0" height="15.0" fill="rgb(224,61,42)" rx="2" ry="2" />
+<text  x="104.17" y="127.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (4,946,246,663 samples, 0.10%)</title><rect x="1156.2" y="437" width="1.1" height="15.0" fill="rgb(226,153,48)" rx="2" ry="2" />
+<text  x="1159.19" y="447.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (568,223,153 samples, 0.01%)</title><rect x="1021.3" y="373" width="0.1" height="15.0" fill="rgb(209,101,6)" rx="2" ry="2" />
+<text  x="1024.26" y="383.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,187,971,650 samples, 0.02%)</title><rect x="349.0" y="389" width="0.3" height="15.0" fill="rgb(239,65,25)" rx="2" ry="2" />
+<text  x="352.04" y="399.5" ></text>
+</g>
+<g >
+<title>pick_next_entity (1,478,821,026 samples, 0.03%)</title><rect x="1179.3" y="437" width="0.3" height="15.0" fill="rgb(210,25,19)" rx="2" ry="2" />
+<text  x="1182.26" y="447.5" ></text>
+</g>
+<g >
+<title>inode_has_perm (1,166,271,606 samples, 0.02%)</title><rect x="832.2" y="357" width="0.3" height="15.0" fill="rgb(237,115,30)" rx="2" ry="2" />
+<text  x="835.21" y="367.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (472,453,447 samples, 0.01%)</title><rect x="330.8" y="277" width="0.1" height="15.0" fill="rgb(220,143,15)" rx="2" ry="2" />
+<text  x="333.77" y="287.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (938,337,013 samples, 0.02%)</title><rect x="1187.2" y="469" width="0.2" height="15.0" fill="rgb(221,191,2)" rx="2" ry="2" />
+<text  x="1190.21" y="479.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (548,083,300 samples, 0.01%)</title><rect x="1072.3" y="421" width="0.1" height="15.0" fill="rgb(239,74,11)" rx="2" ry="2" />
+<text  x="1075.26" y="431.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (1,441,615,707 samples, 0.03%)</title><rect x="935.6" y="357" width="0.4" height="15.0" fill="rgb(221,8,32)" rx="2" ry="2" />
+<text  x="938.64" y="367.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (3,533,067,817 samples, 0.07%)</title><rect x="1050.7" y="421" width="0.8" height="15.0" fill="rgb(240,11,22)" rx="2" ry="2" />
+<text  x="1053.68" y="431.5" ></text>
+</g>
+<g >
+<title>recv_into_rbuf.lto_priv.0 (74,756,274,977 samples, 1.45%)</title><rect x="203.1" y="309" width="17.1" height="15.0" fill="rgb(210,74,0)" rx="2" ry="2" />
+<text  x="206.10" y="319.5" ></text>
+</g>
+<g >
+<title>__this_cpu_preempt_check (478,528,232 samples, 0.01%)</title><rect x="1063.6" y="389" width="0.1" height="15.0" fill="rgb(240,122,0)" rx="2" ry="2" />
+<text  x="1066.57" y="399.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (684,184,732 samples, 0.01%)</title><rect x="96.5" y="85" width="0.2" height="15.0" fill="rgb(252,193,17)" rx="2" ry="2" />
+<text  x="99.52" y="95.5" ></text>
+</g>
+<g >
+<title>axmap_next_free (797,949,833 samples, 0.02%)</title><rect x="22.3" y="389" width="0.1" height="15.0" fill="rgb(234,193,12)" rx="2" ry="2" />
+<text  x="25.26" y="399.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_file_permission (570,191,568 samples, 0.01%)</title><rect x="404.1" y="341" width="0.2" height="15.0" fill="rgb(241,61,26)" rx="2" ry="2" />
+<text  x="407.12" y="351.5" ></text>
+</g>
+<g >
+<title>remove_entity_load_avg (1,117,559,711 samples, 0.02%)</title><rect x="370.6" y="325" width="0.2" height="15.0" fill="rgb(240,10,45)" rx="2" ry="2" />
+<text  x="373.57" y="335.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (486,159,811 samples, 0.01%)</title><rect x="793.9" y="261" width="0.1" height="15.0" fill="rgb(236,80,27)" rx="2" ry="2" />
+<text  x="796.90" y="271.5" ></text>
+</g>
+<g >
+<title>main (1,150,341,483,613 samples, 22.31%)</title><rect x="11.9" y="501" width="263.2" height="15.0" fill="rgb(252,203,25)" rx="2" ry="2" />
+<text  x="14.89" y="511.5" >main</text>
+</g>
+<g >
+<title>security_socket_sendmsg (3,975,124,916 samples, 0.08%)</title><rect x="38.8" y="229" width="0.9" height="15.0" fill="rgb(206,43,54)" rx="2" ry="2" />
+<text  x="41.83" y="239.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,588,998,936 samples, 0.03%)</title><rect x="282.4" y="501" width="0.4" height="15.0" fill="rgb(227,171,43)" rx="2" ry="2" />
+<text  x="285.41" y="511.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (2,046,699,138 samples, 0.04%)</title><rect x="229.3" y="69" width="0.4" height="15.0" fill="rgb(236,191,9)" rx="2" ry="2" />
+<text  x="232.26" y="79.5" ></text>
+</g>
+<g >
+<title>tick_nohz_get_sleep_length (81,804,223,208 samples, 1.59%)</title><rect x="1151.0" y="469" width="18.7" height="15.0" fill="rgb(249,216,33)" rx="2" ry="2" />
+<text  x="1153.97" y="479.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (455,109,424 samples, 0.01%)</title><rect x="1148.4" y="469" width="0.1" height="15.0" fill="rgb(209,90,45)" rx="2" ry="2" />
+<text  x="1151.36" y="479.5" ></text>
+</g>
+<g >
+<title>realloc (1,262,107,945 samples, 0.02%)</title><rect x="166.3" y="293" width="0.3" height="15.0" fill="rgb(252,228,15)" rx="2" ry="2" />
+<text  x="169.27" y="303.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (428,665,959,353 samples, 8.31%)</title><rect x="912.5" y="453" width="98.1" height="15.0" fill="rgb(212,135,13)" rx="2" ry="2" />
+<text  x="915.49" y="463.5" >entry_SYSCA..</text>
+</g>
+<g >
+<title>_copy_to_iter (47,436,756,290 samples, 0.92%)</title><rect x="891.0" y="293" width="10.9" height="15.0" fill="rgb(216,107,8)" rx="2" ry="2" />
+<text  x="894.02" y="303.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (463,632,002 samples, 0.01%)</title><rect x="973.7" y="261" width="0.1" height="15.0" fill="rgb(207,146,31)" rx="2" ry="2" />
+<text  x="976.72" y="271.5" ></text>
+</g>
+<g >
+<title>psi_group_change (2,297,835,221 samples, 0.04%)</title><rect x="148.2" y="197" width="0.5" height="15.0" fill="rgb(226,175,44)" rx="2" ry="2" />
+<text  x="151.17" y="207.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (6,562,214,384 samples, 0.13%)</title><rect x="285.8" y="501" width="1.5" height="15.0" fill="rgb(206,206,36)" rx="2" ry="2" />
+<text  x="288.80" y="511.5" ></text>
+</g>
+<g >
+<title>simple_copy_to_iter (11,558,119,996 samples, 0.22%)</title><rect x="198.9" y="133" width="2.6" height="15.0" fill="rgb(225,145,30)" rx="2" ry="2" />
+<text  x="201.87" y="143.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (1,432,898,923 samples, 0.03%)</title><rect x="792.7" y="261" width="0.3" height="15.0" fill="rgb(240,218,53)" rx="2" ry="2" />
+<text  x="795.67" y="271.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (7,138,151,110 samples, 0.14%)</title><rect x="415.2" y="341" width="1.6" height="15.0" fill="rgb(247,181,27)" rx="2" ry="2" />
+<text  x="418.16" y="351.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (2,655,285,429 samples, 0.05%)</title><rect x="53.3" y="149" width="0.6" height="15.0" fill="rgb(235,18,40)" rx="2" ry="2" />
+<text  x="56.33" y="159.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,688,906,160 samples, 0.03%)</title><rect x="277.9" y="517" width="0.4" height="15.0" fill="rgb(224,157,1)" rx="2" ry="2" />
+<text  x="280.93" y="527.5" ></text>
+</g>
+<g >
+<title>__check_object_size (3,270,515,677 samples, 0.06%)</title><rect x="218.8" y="101" width="0.8" height="15.0" fill="rgb(230,79,34)" rx="2" ry="2" />
+<text  x="221.84" y="111.5" ></text>
+</g>
+<g >
+<title>enqueue_task (5,129,427,546 samples, 0.10%)</title><rect x="1023.9" y="405" width="1.1" height="15.0" fill="rgb(250,36,0)" rx="2" ry="2" />
+<text  x="1026.86" y="415.5" ></text>
+</g>
+<g >
+<title>rwsem_down_write_slowpath (1,571,020,059,746 samples, 30.47%)</title><rect x="435.0" y="341" width="359.5" height="15.0" fill="rgb(213,4,28)" rx="2" ry="2" />
+<text  x="438.00" y="351.5" >rwsem_down_write_slowpath</text>
+</g>
+<g >
+<title>__entry_text_start (496,878,971 samples, 0.01%)</title><rect x="382.7" y="421" width="0.2" height="15.0" fill="rgb(228,81,42)" rx="2" ry="2" />
+<text  x="385.74" y="431.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,201,116,603 samples, 0.02%)</title><rect x="275.7" y="453" width="0.3" height="15.0" fill="rgb(248,74,48)" rx="2" ry="2" />
+<text  x="278.69" y="463.5" ></text>
+</g>
+<g >
+<title>cfree@GLIBC_2.2.5 (613,370,937 samples, 0.01%)</title><rect x="121.0" y="357" width="0.2" height="15.0" fill="rgb(238,12,51)" rx="2" ry="2" />
+<text  x="124.01" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (600,847,085 samples, 0.01%)</title><rect x="280.6" y="437" width="0.2" height="15.0" fill="rgb(234,58,12)" rx="2" ry="2" />
+<text  x="283.63" y="447.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (118,813,542,156 samples, 2.30%)</title><rect x="1103.2" y="453" width="27.2" height="15.0" fill="rgb(210,145,38)" rx="2" ry="2" />
+<text  x="1106.22" y="463.5" >t..</text>
+</g>
+<g >
+<title>process_one_work (1,147,292,570 samples, 0.02%)</title><rect x="281.4" y="501" width="0.3" height="15.0" fill="rgb(221,37,46)" rx="2" ry="2" />
+<text  x="284.44" y="511.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (1,091,792,744 samples, 0.02%)</title><rect x="202.3" y="229" width="0.2" height="15.0" fill="rgb(217,53,25)" rx="2" ry="2" />
+<text  x="205.27" y="239.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (536,929,613 samples, 0.01%)</title><rect x="380.1" y="469" width="0.1" height="15.0" fill="rgb(237,21,11)" rx="2" ry="2" />
+<text  x="383.11" y="479.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (4,465,615,526 samples, 0.09%)</title><rect x="1072.6" y="437" width="1.0" height="15.0" fill="rgb(207,129,17)" rx="2" ry="2" />
+<text  x="1075.61" y="447.5" ></text>
+</g>
+<g >
+<title>__smp_call_single_queue (2,060,479,470 samples, 0.04%)</title><rect x="375.9" y="341" width="0.5" height="15.0" fill="rgb(241,30,38)" rx="2" ry="2" />
+<text  x="378.90" y="351.5" ></text>
+</g>
+<g >
+<title>kworker/u64:1-k (1,364,326,557 samples, 0.03%)</title><rect x="275.7" y="565" width="0.3" height="15.0" fill="rgb(233,3,5)" rx="2" ry="2" />
+<text  x="278.68" y="575.5" ></text>
+</g>
+<g >
+<title>perf_event_task_tick (453,859,757 samples, 0.01%)</title><rect x="766.8" y="165" width="0.1" height="15.0" fill="rgb(242,78,0)" rx="2" ry="2" />
+<text  x="769.79" y="175.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (1,619,162,343 samples, 0.03%)</title><rect x="819.0" y="469" width="0.3" height="15.0" fill="rgb(250,205,1)" rx="2" ry="2" />
+<text  x="821.96" y="479.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (1,557,693,402 samples, 0.03%)</title><rect x="1051.1" y="405" width="0.4" height="15.0" fill="rgb(235,43,9)" rx="2" ry="2" />
+<text  x="1054.13" y="415.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (923,526,824 samples, 0.02%)</title><rect x="276.4" y="453" width="0.2" height="15.0" fill="rgb(247,137,19)" rx="2" ry="2" />
+<text  x="279.36" y="463.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (26,209,669,026 samples, 0.51%)</title><rect x="195.5" y="165" width="6.0" height="15.0" fill="rgb(233,88,33)" rx="2" ry="2" />
+<text  x="198.52" y="175.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,636,600,032 samples, 0.03%)</title><rect x="11.0" y="501" width="0.4" height="15.0" fill="rgb(209,62,45)" rx="2" ry="2" />
+<text  x="13.99" y="511.5" ></text>
+</g>
+<g >
+<title>__pollwait (4,088,481,547 samples, 0.08%)</title><rect x="152.2" y="229" width="1.0" height="15.0" fill="rgb(248,227,49)" rx="2" ry="2" />
+<text  x="155.23" y="239.5" ></text>
+</g>
+<g >
+<title>__asprintf_chk (20,367,835,992 samples, 0.40%)</title><rect x="123.6" y="357" width="4.6" height="15.0" fill="rgb(212,55,7)" rx="2" ry="2" />
+<text  x="126.58" y="367.5" ></text>
+</g>
+<g >
+<title>__slab_free (3,625,018,852 samples, 0.07%)</title><rect x="258.7" y="181" width="0.8" height="15.0" fill="rgb(214,35,51)" rx="2" ry="2" />
+<text  x="261.68" y="191.5" ></text>
+</g>
+<g >
+<title>psi_account_irqtime (1,083,731,176 samples, 0.02%)</title><rect x="149.4" y="197" width="0.2" height="15.0" fill="rgb(217,8,19)" rx="2" ry="2" />
+<text  x="152.38" y="207.5" ></text>
+</g>
+<g >
+<title>fput (575,118,780 samples, 0.01%)</title><rect x="141.7" y="245" width="0.1" height="15.0" fill="rgb(207,68,50)" rx="2" ry="2" />
+<text  x="144.67" y="255.5" ></text>
+</g>
+<g >
+<title>__list_add_valid (845,959,839 samples, 0.02%)</title><rect x="239.0" y="101" width="0.2" height="15.0" fill="rgb(215,70,35)" rx="2" ry="2" />
+<text  x="241.96" y="111.5" ></text>
+</g>
+<g >
+<title>ttwu_do_wakeup (858,524,737 samples, 0.02%)</title><rect x="1177.7" y="373" width="0.2" height="15.0" fill="rgb(243,55,32)" rx="2" ry="2" />
+<text  x="1180.67" y="383.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (522,238,141 samples, 0.01%)</title><rect x="229.1" y="85" width="0.1" height="15.0" fill="rgb(250,35,17)" rx="2" ry="2" />
+<text  x="232.12" y="95.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (722,344,947 samples, 0.01%)</title><rect x="328.8" y="293" width="0.1" height="15.0" fill="rgb(228,5,4)" rx="2" ry="2" />
+<text  x="331.75" y="303.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (10,451,040,552 samples, 0.20%)</title><rect x="1134.7" y="421" width="2.4" height="15.0" fill="rgb(245,92,7)" rx="2" ry="2" />
+<text  x="1137.74" y="431.5" ></text>
+</g>
+<g >
+<title>[unknown] (937,645,454 samples, 0.02%)</title><rect x="10.1" y="373" width="0.2" height="15.0" fill="rgb(219,169,19)" rx="2" ry="2" />
+<text  x="13.06" y="383.5" ></text>
+</g>
+<g >
+<title>tick_nohz_next_event (49,260,670,626 samples, 0.96%)</title><rect x="1158.4" y="453" width="11.3" height="15.0" fill="rgb(226,128,28)" rx="2" ry="2" />
+<text  x="1161.41" y="463.5" ></text>
+</g>
+<g >
+<title>pick_next_entity (867,000,135 samples, 0.02%)</title><rect x="331.3" y="325" width="0.2" height="15.0" fill="rgb(254,9,36)" rx="2" ry="2" />
+<text  x="334.34" y="335.5" ></text>
+</g>
+<g >
+<title>kworker/u64:18- (1,480,723,188 samples, 0.03%)</title><rect x="278.6" y="565" width="0.4" height="15.0" fill="rgb(237,85,11)" rx="2" ry="2" />
+<text  x="281.63" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (694,254,576 samples, 0.01%)</title><rect x="238.2" y="117" width="0.1" height="15.0" fill="rgb(221,34,13)" rx="2" ry="2" />
+<text  x="241.18" y="127.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,310,083,368 samples, 0.03%)</title><rect x="221.5" y="261" width="0.3" height="15.0" fill="rgb(244,158,12)" rx="2" ry="2" />
+<text  x="224.47" y="271.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (1,820,601,044 samples, 0.04%)</title><rect x="242.3" y="149" width="0.4" height="15.0" fill="rgb(221,85,24)" rx="2" ry="2" />
+<text  x="245.26" y="159.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (2,941,545,960 samples, 0.06%)</title><rect x="44.5" y="197" width="0.6" height="15.0" fill="rgb(209,223,20)" rx="2" ry="2" />
+<text  x="47.47" y="207.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_unlock@@GLIBC_2.34 (13,663,626,658 samples, 0.26%)</title><rect x="1011.6" y="469" width="3.2" height="15.0" fill="rgb(245,156,46)" rx="2" ry="2" />
+<text  x="1014.65" y="479.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (471,705,426 samples, 0.01%)</title><rect x="178.0" y="149" width="0.2" height="15.0" fill="rgb(254,132,21)" rx="2" ry="2" />
+<text  x="181.05" y="159.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (570,219,360 samples, 0.01%)</title><rect x="1017.8" y="213" width="0.1" height="15.0" fill="rgb(236,89,6)" rx="2" ry="2" />
+<text  x="1020.78" y="223.5" ></text>
+</g>
+<g >
+<title>update_cfs_group (1,454,723,824 samples, 0.03%)</title><rect x="315.1" y="325" width="0.3" height="15.0" fill="rgb(214,189,3)" rx="2" ry="2" />
+<text  x="318.11" y="335.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (605,122,911 samples, 0.01%)</title><rect x="1186.7" y="453" width="0.2" height="15.0" fill="rgb(237,55,52)" rx="2" ry="2" />
+<text  x="1189.73" y="463.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,428,061,312 samples, 0.03%)</title><rect x="279.3" y="501" width="0.3" height="15.0" fill="rgb(237,48,11)" rx="2" ry="2" />
+<text  x="282.27" y="511.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (3,629,088,825 samples, 0.07%)</title><rect x="82.2" y="181" width="0.8" height="15.0" fill="rgb(251,223,21)" rx="2" ry="2" />
+<text  x="85.20" y="191.5" ></text>
+</g>
+<g >
+<title>swapper (750,878,246,644 samples, 14.56%)</title><rect x="1018.1" y="565" width="171.9" height="15.0" fill="rgb(253,163,1)" rx="2" ry="2" />
+<text  x="1021.13" y="575.5" >swapper</text>
+</g>
+<g >
+<title>enqueue_task_fair (2,447,841,604 samples, 0.05%)</title><rect x="1023.9" y="389" width="0.6" height="15.0" fill="rgb(207,200,33)" rx="2" ry="2" />
+<text  x="1026.93" y="399.5" ></text>
+</g>
+<g >
+<title>__cgroup_account_cputime (2,940,101,077 samples, 0.06%)</title><rect x="310.5" y="293" width="0.7" height="15.0" fill="rgb(237,74,0)" rx="2" ry="2" />
+<text  x="313.52" y="303.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (20,655,212,195 samples, 0.40%)</title><rect x="930.5" y="357" width="4.8" height="15.0" fill="rgb(247,48,31)" rx="2" ry="2" />
+<text  x="933.55" y="367.5" ></text>
+</g>
+<g >
+<title>unix_poll (26,392,250,991 samples, 0.51%)</title><rect x="150.6" y="245" width="6.0" height="15.0" fill="rgb(254,158,27)" rx="2" ry="2" />
+<text  x="153.58" y="255.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (653,178,049 samples, 0.01%)</title><rect x="93.4" y="101" width="0.1" height="15.0" fill="rgb(219,218,6)" rx="2" ry="2" />
+<text  x="96.35" y="111.5" ></text>
+</g>
+<g >
+<title>tick_nohz_tick_stopped (2,657,392,031 samples, 0.05%)</title><rect x="1189.0" y="485" width="0.6" height="15.0" fill="rgb(209,214,31)" rx="2" ry="2" />
+<text  x="1192.01" y="495.5" ></text>
+</g>
+<g >
+<title>__asprintf_chk (758,975,951 samples, 0.01%)</title><rect x="120.4" y="373" width="0.2" height="15.0" fill="rgb(229,129,54)" rx="2" ry="2" />
+<text  x="123.42" y="383.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (7,560,394,983 samples, 0.15%)</title><rect x="847.3" y="341" width="1.8" height="15.0" fill="rgb(212,139,48)" rx="2" ry="2" />
+<text  x="850.33" y="351.5" ></text>
+</g>
+<g >
+<title>socket_recv (132,952,535,954 samples, 2.58%)</title><rect x="172.4" y="309" width="30.4" height="15.0" fill="rgb(226,212,28)" rx="2" ry="2" />
+<text  x="175.36" y="319.5" >so..</text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (730,573,986 samples, 0.01%)</title><rect x="364.8" y="341" width="0.2" height="15.0" fill="rgb(250,156,28)" rx="2" ry="2" />
+<text  x="367.81" y="351.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (12,202,622,753 samples, 0.24%)</title><rect x="977.2" y="277" width="2.8" height="15.0" fill="rgb(242,209,27)" rx="2" ry="2" />
+<text  x="980.17" y="287.5" ></text>
+</g>
+<g >
+<title>_raw_spin_rq_lock_irqsave (502,756,463 samples, 0.01%)</title><rect x="330.4" y="293" width="0.1" height="15.0" fill="rgb(205,87,1)" rx="2" ry="2" />
+<text  x="333.37" y="303.5" ></text>
+</g>
+<g >
+<title>nbd_errno (459,944,690 samples, 0.01%)</title><rect x="288.3" y="501" width="0.1" height="15.0" fill="rgb(218,170,45)" rx="2" ry="2" />
+<text  x="291.29" y="511.5" ></text>
+</g>
+<g >
+<title>skb_put (1,227,001,092 samples, 0.02%)</title><rect x="81.9" y="197" width="0.2" height="15.0" fill="rgb(230,120,1)" rx="2" ry="2" />
+<text  x="84.85" y="207.5" ></text>
+</g>
+<g >
+<title>io_u_queued (1,467,156,975 samples, 0.03%)</title><rect x="26.7" y="421" width="0.3" height="15.0" fill="rgb(222,162,49)" rx="2" ry="2" />
+<text  x="29.69" y="431.5" ></text>
+</g>
+<g >
+<title>wait_for_unix_gc (488,743,149 samples, 0.01%)</title><rect x="55.2" y="213" width="0.1" height="15.0" fill="rgb(238,125,17)" rx="2" ry="2" />
+<text  x="58.19" y="223.5" ></text>
+</g>
+<g >
+<title>preempt_count_sub (1,399,471,384 samples, 0.03%)</title><rect x="1157.7" y="421" width="0.3" height="15.0" fill="rgb(214,223,13)" rx="2" ry="2" />
+<text  x="1160.70" y="431.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (3,966,827,398 samples, 0.08%)</title><rect x="205.2" y="197" width="0.9" height="15.0" fill="rgb(221,208,2)" rx="2" ry="2" />
+<text  x="208.22" y="207.5" ></text>
+</g>
+<g >
+<title>kfree_skbmem (766,462,018 samples, 0.01%)</title><rect x="877.2" y="341" width="0.1" height="15.0" fill="rgb(242,173,16)" rx="2" ry="2" />
+<text  x="880.16" y="351.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (720,130,208 samples, 0.01%)</title><rect x="186.3" y="133" width="0.2" height="15.0" fill="rgb(229,213,21)" rx="2" ry="2" />
+<text  x="189.34" y="143.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (610,912,882 samples, 0.01%)</title><rect x="978.0" y="261" width="0.1" height="15.0" fill="rgb(246,2,25)" rx="2" ry="2" />
+<text  x="980.99" y="271.5" ></text>
+</g>
+<g >
+<title>bad_range (446,566,478 samples, 0.01%)</title><rect x="87.8" y="133" width="0.1" height="15.0" fill="rgb(214,91,29)" rx="2" ry="2" />
+<text  x="90.78" y="143.5" ></text>
+</g>
+<g >
+<title>rb_erase (836,214,021 samples, 0.02%)</title><rect x="1180.2" y="421" width="0.2" height="15.0" fill="rgb(248,86,51)" rx="2" ry="2" />
+<text  x="1183.19" y="431.5" ></text>
+</g>
+<g >
+<title>update_curr (1,268,486,831 samples, 0.02%)</title><rect x="790.5" y="261" width="0.3" height="15.0" fill="rgb(230,95,18)" rx="2" ry="2" />
+<text  x="793.52" y="271.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,549,439,567 samples, 0.03%)</title><rect x="277.3" y="517" width="0.3" height="15.0" fill="rgb(242,75,33)" rx="2" ry="2" />
+<text  x="280.27" y="527.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (1,547,188,247 samples, 0.03%)</title><rect x="254.1" y="229" width="0.3" height="15.0" fill="rgb(212,46,12)" rx="2" ry="2" />
+<text  x="257.05" y="239.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,525,802,325 samples, 0.03%)</title><rect x="275.3" y="453" width="0.4" height="15.0" fill="rgb(235,51,23)" rx="2" ry="2" />
+<text  x="278.31" y="463.5" ></text>
+</g>
+<g >
+<title>sugov_update_single_freq (924,330,461 samples, 0.02%)</title><rect x="1117.2" y="373" width="0.2" height="15.0" fill="rgb(253,33,28)" rx="2" ry="2" />
+<text  x="1120.16" y="383.5" ></text>
+</g>
+<g >
+<title>vfs_read (89,355,537,302 samples, 1.73%)</title><rect x="384.6" y="373" width="20.5" height="15.0" fill="rgb(240,198,53)" rx="2" ry="2" />
+<text  x="387.63" y="383.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (913,530,302 samples, 0.02%)</title><rect x="219.3" y="85" width="0.2" height="15.0" fill="rgb(216,97,29)" rx="2" ry="2" />
+<text  x="222.32" y="95.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (822,113,615 samples, 0.02%)</title><rect x="1017.7" y="245" width="0.2" height="15.0" fill="rgb(214,74,4)" rx="2" ry="2" />
+<text  x="1020.75" y="255.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (993,061,381 samples, 0.02%)</title><rect x="1029.4" y="485" width="0.2" height="15.0" fill="rgb(221,174,18)" rx="2" ry="2" />
+<text  x="1032.36" y="495.5" ></text>
+</g>
+<g >
+<title>[perf] (4,277,426,306 samples, 0.08%)</title><rect x="1017.1" y="485" width="1.0" height="15.0" fill="rgb(254,117,2)" rx="2" ry="2" />
+<text  x="1020.08" y="495.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,372,022,609 samples, 0.03%)</title><rect x="278.3" y="549" width="0.3" height="15.0" fill="rgb(241,164,36)" rx="2" ry="2" />
+<text  x="281.32" y="559.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (30,261,179,298 samples, 0.59%)</title><rect x="245.5" y="101" width="6.9" height="15.0" fill="rgb(252,124,35)" rx="2" ry="2" />
+<text  x="248.52" y="111.5" ></text>
+</g>
+<g >
+<title>__flush_smp_call_function_queue (34,690,148,554 samples, 0.67%)</title><rect x="1076.2" y="469" width="8.0" height="15.0" fill="rgb(231,144,44)" rx="2" ry="2" />
+<text  x="1079.24" y="479.5" ></text>
+</g>
+<g >
+<title>read (720,702,227 samples, 0.01%)</title><rect x="1011.4" y="485" width="0.2" height="15.0" fill="rgb(240,14,44)" rx="2" ry="2" />
+<text  x="1014.40" y="495.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (1,825,069,095 samples, 0.04%)</title><rect x="261.7" y="133" width="0.4" height="15.0" fill="rgb(224,125,30)" rx="2" ry="2" />
+<text  x="264.66" y="143.5" ></text>
+</g>
+<g >
+<title>avc_lookup (723,007,464 samples, 0.01%)</title><rect x="178.2" y="149" width="0.1" height="15.0" fill="rgb(248,32,43)" rx="2" ry="2" />
+<text  x="181.17" y="159.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,395,077,787 samples, 0.03%)</title><rect x="280.6" y="469" width="0.3" height="15.0" fill="rgb(241,36,43)" rx="2" ry="2" />
+<text  x="283.63" y="479.5" ></text>
+</g>
+<g >
+<title>__fio_gettime.lto_priv.0 (3,866,050,112 samples, 0.07%)</title><rect x="108.6" y="421" width="0.9" height="15.0" fill="rgb(224,79,23)" rx="2" ry="2" />
+<text  x="111.58" y="431.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (3,026,035,332 samples, 0.06%)</title><rect x="313.2" y="293" width="0.7" height="15.0" fill="rgb(229,86,37)" rx="2" ry="2" />
+<text  x="316.20" y="303.5" ></text>
+</g>
+<g >
+<title>psi_account_irqtime (637,220,726 samples, 0.01%)</title><rect x="331.1" y="277" width="0.1" height="15.0" fill="rgb(213,58,44)" rx="2" ry="2" />
+<text  x="334.07" y="287.5" ></text>
+</g>
+<g >
+<title>tick_do_update_jiffies64 (1,016,963,291 samples, 0.02%)</title><rect x="1059.5" y="389" width="0.2" height="15.0" fill="rgb(229,160,36)" rx="2" ry="2" />
+<text  x="1062.51" y="399.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (770,417,193 samples, 0.01%)</title><rect x="345.2" y="437" width="0.2" height="15.0" fill="rgb(232,140,28)" rx="2" ry="2" />
+<text  x="348.19" y="447.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (14,302,147,886 samples, 0.28%)</title><rect x="429.5" y="293" width="3.2" height="15.0" fill="rgb(207,147,41)" rx="2" ry="2" />
+<text  x="432.47" y="303.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_retain_tick (2,505,811,158 samples, 0.05%)</title><rect x="1188.2" y="485" width="0.5" height="15.0" fill="rgb(238,153,22)" rx="2" ry="2" />
+<text  x="1191.16" y="495.5" ></text>
+</g>
+<g >
+<title>tick_sched_handle (2,385,331,350 samples, 0.05%)</title><rect x="766.7" y="213" width="0.5" height="15.0" fill="rgb(232,126,27)" rx="2" ry="2" />
+<text  x="769.65" y="223.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (571,341,493 samples, 0.01%)</title><rect x="989.7" y="277" width="0.1" height="15.0" fill="rgb(236,47,43)" rx="2" ry="2" />
+<text  x="992.68" y="287.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (1,841,861,014 samples, 0.04%)</title><rect x="55.3" y="245" width="0.4" height="15.0" fill="rgb(227,12,23)" rx="2" ry="2" />
+<text  x="58.30" y="255.5" ></text>
+</g>
+<g >
+<title>connection_get_status (4,033,143,989 samples, 0.08%)</title><rect x="287.3" y="501" width="0.9" height="15.0" fill="rgb(230,159,32)" rx="2" ry="2" />
+<text  x="290.33" y="511.5" ></text>
+</g>
+<g >
+<title>rwsem_mark_wake (10,845,160,885 samples, 0.21%)</title><rect x="795.6" y="325" width="2.5" height="15.0" fill="rgb(251,206,29)" rx="2" ry="2" />
+<text  x="798.60" y="335.5" ></text>
+</g>
+<g >
+<title>inode_security (1,795,147,314 samples, 0.03%)</title><rect x="404.7" y="325" width="0.4" height="15.0" fill="rgb(205,50,34)" rx="2" ry="2" />
+<text  x="407.67" y="335.5" ></text>
+</g>
+<g >
+<title>xas_start (637,111,745 samples, 0.01%)</title><rect x="401.2" y="293" width="0.1" height="15.0" fill="rgb(245,174,27)" rx="2" ry="2" />
+<text  x="404.19" y="303.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (1,166,877,397 samples, 0.02%)</title><rect x="767.3" y="309" width="0.3" height="15.0" fill="rgb(233,200,22)" rx="2" ry="2" />
+<text  x="770.31" y="319.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (463,535,715 samples, 0.01%)</title><rect x="11.7" y="533" width="0.1" height="15.0" fill="rgb(223,129,15)" rx="2" ry="2" />
+<text  x="14.71" y="543.5" ></text>
+</g>
+<g >
+<title>kthread (1,685,230,958 samples, 0.03%)</title><rect x="275.3" y="533" width="0.4" height="15.0" fill="rgb(237,52,14)" rx="2" ry="2" />
+<text  x="278.30" y="543.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_sendmsg (1,141,689,397 samples, 0.02%)</title><rect x="65.5" y="197" width="0.3" height="15.0" fill="rgb(237,108,3)" rx="2" ry="2" />
+<text  x="68.49" y="207.5" ></text>
+</g>
+<g >
+<title>filemap_read (77,152,509,240 samples, 1.50%)</title><rect x="385.9" y="357" width="17.7" height="15.0" fill="rgb(219,150,37)" rx="2" ry="2" />
+<text  x="388.92" y="367.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (1,557,951,162 samples, 0.03%)</title><rect x="1056.3" y="341" width="0.3" height="15.0" fill="rgb(207,164,28)" rx="2" ry="2" />
+<text  x="1059.28" y="351.5" ></text>
+</g>
+<g >
+<title>kthread (1,321,153,538 samples, 0.03%)</title><rect x="281.1" y="533" width="0.3" height="15.0" fill="rgb(238,187,31)" rx="2" ry="2" />
+<text  x="284.14" y="543.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,685,860,516 samples, 0.03%)</title><rect x="277.9" y="485" width="0.4" height="15.0" fill="rgb(212,17,48)" rx="2" ry="2" />
+<text  x="280.93" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (772,273,098 samples, 0.01%)</title><rect x="71.9" y="197" width="0.1" height="15.0" fill="rgb(244,1,32)" rx="2" ry="2" />
+<text  x="74.87" y="207.5" ></text>
+</g>
+<g >
+<title>psi_group_change (1,434,020,201 samples, 0.03%)</title><rect x="793.4" y="277" width="0.3" height="15.0" fill="rgb(215,144,17)" rx="2" ry="2" />
+<text  x="796.37" y="287.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (3,528,962,779 samples, 0.07%)</title><rect x="1017.1" y="293" width="0.8" height="15.0" fill="rgb(222,26,29)" rx="2" ry="2" />
+<text  x="1020.13" y="303.5" ></text>
+</g>
+<g >
+<title>skb_release_data (19,109,206,707 samples, 0.37%)</title><rect x="184.5" y="165" width="4.4" height="15.0" fill="rgb(230,156,17)" rx="2" ry="2" />
+<text  x="187.53" y="175.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (8,808,859,014 samples, 0.17%)</title><rect x="799.3" y="293" width="2.0" height="15.0" fill="rgb(248,110,35)" rx="2" ry="2" />
+<text  x="802.32" y="303.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (6,125,980,783 samples, 0.12%)</title><rect x="378.5" y="421" width="1.4" height="15.0" fill="rgb(230,25,16)" rx="2" ry="2" />
+<text  x="381.50" y="431.5" ></text>
+</g>
+<g >
+<title>fsnotify_perm.part.0 (1,596,355,852 samples, 0.03%)</title><rect x="403.6" y="357" width="0.3" height="15.0" fill="rgb(205,60,52)" rx="2" ry="2" />
+<text  x="406.58" y="367.5" ></text>
+</g>
+<g >
+<title>tick_check_oneshot_broadcast_this_cpu (1,775,627,898 samples, 0.03%)</title><rect x="1059.1" y="389" width="0.4" height="15.0" fill="rgb(242,177,52)" rx="2" ry="2" />
+<text  x="1062.10" y="399.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (553,520,568 samples, 0.01%)</title><rect x="825.0" y="373" width="0.2" height="15.0" fill="rgb(222,106,9)" rx="2" ry="2" />
+<text  x="828.04" y="383.5" ></text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_ISSUE_COMMAND_PREPARE_WRITE_PAYLOAD.constprop.0 (532,206,818 samples, 0.01%)</title><rect x="36.1" y="357" width="0.1" height="15.0" fill="rgb(254,17,18)" rx="2" ry="2" />
+<text  x="39.05" y="367.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (3,513,392,642 samples, 0.07%)</title><rect x="807.9" y="373" width="0.8" height="15.0" fill="rgb(237,41,1)" rx="2" ry="2" />
+<text  x="810.90" y="383.5" ></text>
+</g>
+<g >
+<title>kthread (1,429,080,678 samples, 0.03%)</title><rect x="279.3" y="533" width="0.3" height="15.0" fill="rgb(207,224,45)" rx="2" ry="2" />
+<text  x="282.27" y="543.5" ></text>
+</g>
+<g >
+<title>consume_skb (29,760,147,776 samples, 0.58%)</title><rect x="260.2" y="181" width="6.8" height="15.0" fill="rgb(209,82,20)" rx="2" ry="2" />
+<text  x="263.16" y="191.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (10,845,087,808 samples, 0.21%)</title><rect x="145.4" y="213" width="2.5" height="15.0" fill="rgb(228,107,26)" rx="2" ry="2" />
+<text  x="148.43" y="223.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (3,527,377,392 samples, 0.07%)</title><rect x="14.6" y="405" width="0.8" height="15.0" fill="rgb(231,177,24)" rx="2" ry="2" />
+<text  x="17.64" y="415.5" ></text>
+</g>
+<g >
+<title>load_balance (799,027,935 samples, 0.02%)</title><rect x="1041.9" y="373" width="0.2" height="15.0" fill="rgb(253,101,49)" rx="2" ry="2" />
+<text  x="1044.92" y="383.5" ></text>
+</g>
+<g >
+<title>poll_idle (825,076,486 samples, 0.02%)</title><rect x="1022.4" y="421" width="0.2" height="15.0" fill="rgb(236,27,28)" rx="2" ry="2" />
+<text  x="1025.38" y="431.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,371,809,402 samples, 0.03%)</title><rect x="1158.0" y="437" width="0.3" height="15.0" fill="rgb(241,228,53)" rx="2" ry="2" />
+<text  x="1161.02" y="447.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,549,191,833 samples, 0.03%)</title><rect x="279.6" y="485" width="0.3" height="15.0" fill="rgb(216,175,14)" rx="2" ry="2" />
+<text  x="282.60" y="495.5" ></text>
+</g>
+<g >
+<title>__fio_gettime.lto_priv.0 (3,824,216,701 samples, 0.07%)</title><rect x="24.7" y="405" width="0.9" height="15.0" fill="rgb(245,153,29)" rx="2" ry="2" />
+<text  x="27.72" y="415.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (42,847,925,584 samples, 0.83%)</title><rect x="244.2" y="133" width="9.8" height="15.0" fill="rgb(233,58,35)" rx="2" ry="2" />
+<text  x="247.15" y="143.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,157,603,344 samples, 0.02%)</title><rect x="279.0" y="453" width="0.2" height="15.0" fill="rgb(217,1,48)" rx="2" ry="2" />
+<text  x="281.97" y="463.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,557,928,517 samples, 0.03%)</title><rect x="283.5" y="485" width="0.4" height="15.0" fill="rgb(226,43,18)" rx="2" ry="2" />
+<text  x="286.50" y="495.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (2,274,286,837 samples, 0.04%)</title><rect x="1170.1" y="453" width="0.5" height="15.0" fill="rgb(251,185,35)" rx="2" ry="2" />
+<text  x="1173.10" y="463.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (23,747,147,768 samples, 0.46%)</title><rect x="91.5" y="133" width="5.4" height="15.0" fill="rgb(241,136,29)" rx="2" ry="2" />
+<text  x="94.51" y="143.5" ></text>
+</g>
+<g >
+<title>run_threads (1,149,751,682,673 samples, 22.30%)</title><rect x="11.9" y="469" width="263.1" height="15.0" fill="rgb(224,134,13)" rx="2" ry="2" />
+<text  x="14.89" y="479.5" >run_threads</text>
+</g>
+<g >
+<title>mod_objcg_state (1,694,567,765 samples, 0.03%)</title><rect x="185.9" y="133" width="0.4" height="15.0" fill="rgb(211,104,15)" rx="2" ry="2" />
+<text  x="188.94" y="143.5" ></text>
+</g>
+<g >
+<title>schedule (855,539,474 samples, 0.02%)</title><rect x="808.5" y="357" width="0.2" height="15.0" fill="rgb(229,102,5)" rx="2" ry="2" />
+<text  x="811.50" y="367.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (1,540,446,846 samples, 0.03%)</title><rect x="906.5" y="421" width="0.3" height="15.0" fill="rgb(245,126,17)" rx="2" ry="2" />
+<text  x="909.48" y="431.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (488,653,976 samples, 0.01%)</title><rect x="383.1" y="405" width="0.1" height="15.0" fill="rgb(208,91,54)" rx="2" ry="2" />
+<text  x="386.09" y="415.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (4,990,017,877 samples, 0.10%)</title><rect x="102.2" y="133" width="1.2" height="15.0" fill="rgb(232,196,0)" rx="2" ry="2" />
+<text  x="105.23" y="143.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,710,658,390 samples, 0.03%)</title><rect x="282.8" y="517" width="0.4" height="15.0" fill="rgb(250,214,12)" rx="2" ry="2" />
+<text  x="285.78" y="527.5" ></text>
+</g>
+<g >
+<title>pollwake (12,514,202,561 samples, 0.24%)</title><rect x="1000.8" y="309" width="2.8" height="15.0" fill="rgb(222,63,54)" rx="2" ry="2" />
+<text  x="1003.77" y="319.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (37,756,223,951 samples, 0.73%)</title><rect x="1108.7" y="405" width="8.7" height="15.0" fill="rgb(247,28,14)" rx="2" ry="2" />
+<text  x="1111.73" y="415.5" ></text>
+</g>
+<g >
+<title>socket_send (1,819,500,144 samples, 0.04%)</title><rect x="10.3" y="453" width="0.4" height="15.0" fill="rgb(244,103,41)" rx="2" ry="2" />
+<text  x="13.31" y="463.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock@@GLIBC_2.2.5 (8,410,477,861 samples, 0.16%)</title><rect x="816.0" y="485" width="1.9" height="15.0" fill="rgb(238,184,18)" rx="2" ry="2" />
+<text  x="819.01" y="495.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (1,834,933,838 samples, 0.04%)</title><rect x="238.7" y="117" width="0.5" height="15.0" fill="rgb(210,12,38)" rx="2" ry="2" />
+<text  x="241.74" y="127.5" ></text>
+</g>
+<g >
+<title>psi_group_change (575,249,496 samples, 0.01%)</title><rect x="1002.8" y="229" width="0.2" height="15.0" fill="rgb(212,144,25)" rx="2" ry="2" />
+<text  x="1005.85" y="239.5" ></text>
+</g>
+<g >
+<title>ttwu_queue_wakelist (1,956,423,876 samples, 0.04%)</title><rect x="1003.1" y="277" width="0.4" height="15.0" fill="rgb(227,206,35)" rx="2" ry="2" />
+<text  x="1006.09" y="287.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (75,036,160,789 samples, 1.46%)</title><rect x="889.3" y="325" width="17.2" height="15.0" fill="rgb(248,147,43)" rx="2" ry="2" />
+<text  x="892.31" y="335.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,035,520,480 samples, 0.02%)</title><rect x="276.9" y="469" width="0.3" height="15.0" fill="rgb(234,87,3)" rx="2" ry="2" />
+<text  x="279.95" y="479.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter (194,530,284,141 samples, 3.77%)</title><rect x="1029.7" y="485" width="44.5" height="15.0" fill="rgb(226,34,4)" rx="2" ry="2" />
+<text  x="1032.67" y="495.5" >cpui..</text>
+</g>
+<g >
+<title>tick_sched_timer (5,266,910,427 samples, 0.10%)</title><rect x="1043.1" y="373" width="1.2" height="15.0" fill="rgb(251,61,39)" rx="2" ry="2" />
+<text  x="1046.05" y="383.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (13,882,379,620 samples, 0.27%)</title><rect x="1000.5" y="325" width="3.1" height="15.0" fill="rgb(236,80,13)" rx="2" ry="2" />
+<text  x="1003.45" y="335.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (522,298,069 samples, 0.01%)</title><rect x="317.0" y="325" width="0.1" height="15.0" fill="rgb(250,99,14)" rx="2" ry="2" />
+<text  x="320.02" y="335.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (2,344,775,354 samples, 0.05%)</title><rect x="853.1" y="261" width="0.6" height="15.0" fill="rgb(227,67,51)" rx="2" ry="2" />
+<text  x="856.13" y="271.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (568,886,570 samples, 0.01%)</title><rect x="146.3" y="165" width="0.1" height="15.0" fill="rgb(249,205,34)" rx="2" ry="2" />
+<text  x="149.29" y="175.5" ></text>
+</g>
+<g >
+<title>unix_destruct_scm (7,865,243,436 samples, 0.15%)</title><rect x="189.0" y="149" width="1.8" height="15.0" fill="rgb(219,75,48)" rx="2" ry="2" />
+<text  x="191.97" y="159.5" ></text>
+</g>
+<g >
+<title>__slab_free (7,348,672,641 samples, 0.14%)</title><rect x="262.7" y="149" width="1.6" height="15.0" fill="rgb(215,160,53)" rx="2" ry="2" />
+<text  x="265.66" y="159.5" ></text>
+</g>
+<g >
+<title>alloc_skb_with_frags (181,975,125,018 samples, 3.53%)</title><rect x="955.0" y="341" width="41.6" height="15.0" fill="rgb(245,168,40)" rx="2" ry="2" />
+<text  x="957.97" y="351.5" >all..</text>
+</g>
+<g >
+<title>update_cfs_group (2,344,811,811 samples, 0.05%)</title><rect x="1112.5" y="389" width="0.6" height="15.0" fill="rgb(252,49,12)" rx="2" ry="2" />
+<text  x="1115.53" y="399.5" ></text>
+</g>
+<g >
+<title>__sys_recvfrom (64,918,639,802 samples, 1.26%)</title><rect x="256.4" y="229" width="14.9" height="15.0" fill="rgb(226,6,11)" rx="2" ry="2" />
+<text  x="259.43" y="239.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (1,983,064,494 samples, 0.04%)</title><rect x="1021.2" y="421" width="0.4" height="15.0" fill="rgb(232,211,35)" rx="2" ry="2" />
+<text  x="1024.19" y="431.5" ></text>
+</g>
+<g >
+<title>update_load_avg (1,348,369,190 samples, 0.03%)</title><rect x="1176.7" y="309" width="0.3" height="15.0" fill="rgb(214,158,22)" rx="2" ry="2" />
+<text  x="1179.71" y="319.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_safe_stack (516,079,811 samples, 0.01%)</title><rect x="11.4" y="501" width="0.1" height="15.0" fill="rgb(243,80,32)" rx="2" ry="2" />
+<text  x="14.37" y="511.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (704,977,889 samples, 0.01%)</title><rect x="56.3" y="309" width="0.1" height="15.0" fill="rgb(251,36,0)" rx="2" ry="2" />
+<text  x="59.25" y="319.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (816,664,274 samples, 0.02%)</title><rect x="1001.5" y="277" width="0.2" height="15.0" fill="rgb(229,28,7)" rx="2" ry="2" />
+<text  x="1004.47" y="287.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (599,706,992 samples, 0.01%)</title><rect x="145.0" y="165" width="0.1" height="15.0" fill="rgb(237,184,31)" rx="2" ry="2" />
+<text  x="147.99" y="175.5" ></text>
+</g>
+<g >
+<title>enqueue_task (15,585,616,869 samples, 0.30%)</title><rect x="370.9" y="341" width="3.5" height="15.0" fill="rgb(224,106,20)" rx="2" ry="2" />
+<text  x="373.86" y="351.5" ></text>
+</g>
+<g >
+<title>nbd_internal_run (495,057,865,336 samples, 9.60%)</title><rect x="158.9" y="341" width="113.3" height="15.0" fill="rgb(231,119,17)" rx="2" ry="2" />
+<text  x="161.89" y="351.5" >nbd_internal_run</text>
+</g>
+<g >
+<title>ret_from_fork (1,685,230,958 samples, 0.03%)</title><rect x="275.3" y="549" width="0.4" height="15.0" fill="rgb(223,74,24)" rx="2" ry="2" />
+<text  x="278.30" y="559.5" ></text>
+</g>
+<g >
+<title>__wrgsbase_inactive (1,270,616,787 samples, 0.02%)</title><rect x="295.2" y="469" width="0.3" height="15.0" fill="rgb(250,189,15)" rx="2" ry="2" />
+<text  x="298.17" y="479.5" ></text>
+</g>
+<g >
+<title>rcu_note_context_switch (2,089,889,016 samples, 0.04%)</title><rect x="338.9" y="341" width="0.5" height="15.0" fill="rgb(214,224,3)" rx="2" ry="2" />
+<text  x="341.87" y="351.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (690,163,547 samples, 0.01%)</title><rect x="791.4" y="245" width="0.1" height="15.0" fill="rgb(245,50,51)" rx="2" ry="2" />
+<text  x="794.37" y="255.5" ></text>
+</g>
+<g >
+<title>inode_to_bdi (675,731,025 samples, 0.01%)</title><rect x="434.8" y="341" width="0.2" height="15.0" fill="rgb(230,87,29)" rx="2" ry="2" />
+<text  x="437.84" y="351.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (788,087,029 samples, 0.02%)</title><rect x="767.4" y="261" width="0.2" height="15.0" fill="rgb(205,70,44)" rx="2" ry="2" />
+<text  x="770.39" y="271.5" ></text>
+</g>
+<g >
+<title>nbd_internal_run (1,996,805,173 samples, 0.04%)</title><rect x="273.6" y="357" width="0.5" height="15.0" fill="rgb(214,21,48)" rx="2" ry="2" />
+<text  x="276.61" y="367.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (10,815,410,022 samples, 0.21%)</title><rect x="316.0" y="341" width="2.4" height="15.0" fill="rgb(228,147,0)" rx="2" ry="2" />
+<text  x="318.97" y="351.5" ></text>
+</g>
+<g >
+<title>read_tsc (792,160,651 samples, 0.02%)</title><rect x="1043.5" y="341" width="0.2" height="15.0" fill="rgb(207,9,12)" rx="2" ry="2" />
+<text  x="1046.47" y="351.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (827,443,453 samples, 0.02%)</title><rect x="183.7" y="165" width="0.2" height="15.0" fill="rgb(254,65,15)" rx="2" ry="2" />
+<text  x="186.72" y="175.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (655,362,656 samples, 0.01%)</title><rect x="96.8" y="101" width="0.1" height="15.0" fill="rgb(210,149,2)" rx="2" ry="2" />
+<text  x="99.78" y="111.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (1,825,015,022 samples, 0.04%)</title><rect x="1041.9" y="421" width="0.4" height="15.0" fill="rgb(227,53,36)" rx="2" ry="2" />
+<text  x="1044.86" y="431.5" ></text>
+</g>
+<g >
+<title>perf_event_task_tick (453,918,638 samples, 0.01%)</title><rect x="1044.1" y="309" width="0.1" height="15.0" fill="rgb(250,128,47)" rx="2" ry="2" />
+<text  x="1047.11" y="319.5" ></text>
+</g>
+<g >
+<title>[libnbd.so.0.0.0] (861,215,354 samples, 0.02%)</title><rect x="120.0" y="373" width="0.2" height="15.0" fill="rgb(230,2,13)" rx="2" ry="2" />
+<text  x="123.00" y="383.5" ></text>
+</g>
+<g >
+<title>[unknown] (4,755,842,307 samples, 0.09%)</title><rect x="283.9" y="549" width="1.1" height="15.0" fill="rgb(206,87,23)" rx="2" ry="2" />
+<text  x="286.87" y="559.5" ></text>
+</g>
+<g >
+<title>unix_write_space (517,774,075 samples, 0.01%)</title><rect x="266.8" y="117" width="0.2" height="15.0" fill="rgb(214,15,51)" rx="2" ry="2" />
+<text  x="269.85" y="127.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (998,545,575 samples, 0.02%)</title><rect x="120.8" y="357" width="0.2" height="15.0" fill="rgb(219,6,4)" rx="2" ry="2" />
+<text  x="123.78" y="367.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (498,408,472 samples, 0.01%)</title><rect x="317.0" y="309" width="0.1" height="15.0" fill="rgb(234,107,42)" rx="2" ry="2" />
+<text  x="320.03" y="319.5" ></text>
+</g>
+<g >
+<title>current_time (3,368,999,085 samples, 0.07%)</title><rect x="415.5" y="325" width="0.8" height="15.0" fill="rgb(251,227,2)" rx="2" ry="2" />
+<text  x="418.50" y="335.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (2,583,675,378 samples, 0.05%)</title><rect x="862.2" y="293" width="0.6" height="15.0" fill="rgb(252,59,20)" rx="2" ry="2" />
+<text  x="865.16" y="303.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,538,753,803 samples, 0.03%)</title><rect x="280.3" y="501" width="0.3" height="15.0" fill="rgb(221,124,45)" rx="2" ry="2" />
+<text  x="283.27" y="511.5" ></text>
+</g>
+<g >
+<title>xas_descend (3,104,478,469 samples, 0.06%)</title><rect x="431.9" y="261" width="0.7" height="15.0" fill="rgb(223,21,54)" rx="2" ry="2" />
+<text  x="434.89" y="271.5" ></text>
+</g>
+<g >
+<title>acpi_processor_ffh_cstate_enter (40,934,896,413 samples, 0.79%)</title><rect x="1031.5" y="421" width="9.4" height="15.0" fill="rgb(244,154,30)" rx="2" ry="2" />
+<text  x="1034.54" y="431.5" ></text>
+</g>
+<g >
+<title>kthread (1,585,588,752 samples, 0.03%)</title><rect x="276.0" y="533" width="0.4" height="15.0" fill="rgb(241,44,2)" rx="2" ry="2" />
+<text  x="278.99" y="543.5" ></text>
+</g>
+<g >
+<title>xas_descend (4,323,304,506 samples, 0.08%)</title><rect x="400.2" y="293" width="1.0" height="15.0" fill="rgb(228,66,50)" rx="2" ry="2" />
+<text  x="403.20" y="303.5" ></text>
+</g>
+<g >
+<title>socket_recv (794,262,920 samples, 0.02%)</title><rect x="272.0" y="325" width="0.2" height="15.0" fill="rgb(249,13,52)" rx="2" ry="2" />
+<text  x="274.98" y="335.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (622,723,976 samples, 0.01%)</title><rect x="282.3" y="421" width="0.1" height="15.0" fill="rgb(223,185,25)" rx="2" ry="2" />
+<text  x="285.27" y="431.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (19,651,942,969 samples, 0.38%)</title><rect x="365.6" y="357" width="4.5" height="15.0" fill="rgb(236,206,47)" rx="2" ry="2" />
+<text  x="368.61" y="367.5" ></text>
+</g>
+<g >
+<title>__memmove_avx_unaligned_erms (641,112,182 samples, 0.01%)</title><rect x="126.0" y="309" width="0.1" height="15.0" fill="rgb(237,117,42)" rx="2" ry="2" />
+<text  x="128.99" y="319.5" ></text>
+</g>
+<g >
+<title>generic_write_end (4,288,720,884 samples, 0.08%)</title><rect x="433.9" y="325" width="0.9" height="15.0" fill="rgb(206,91,53)" rx="2" ry="2" />
+<text  x="436.86" y="335.5" ></text>
+</g>
+<g >
+<title>kworker/u64:19- (1,306,472,119 samples, 0.03%)</title><rect x="279.0" y="565" width="0.3" height="15.0" fill="rgb(253,80,13)" rx="2" ry="2" />
+<text  x="281.97" y="575.5" ></text>
+</g>
+<g >
+<title>td_io_queue (362,100,604,447 samples, 7.02%)</title><rect x="27.5" y="437" width="82.9" height="15.0" fill="rgb(211,202,37)" rx="2" ry="2" />
+<text  x="30.50" y="447.5" >td_io_queue</text>
+</g>
+<g >
+<title>__x86_return_thunk (1,462,453,098 samples, 0.03%)</title><rect x="822.0" y="437" width="0.3" height="15.0" fill="rgb(226,106,7)" rx="2" ry="2" />
+<text  x="824.98" y="447.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (545,805,105 samples, 0.01%)</title><rect x="1027.0" y="357" width="0.2" height="15.0" fill="rgb(209,3,26)" rx="2" ry="2" />
+<text  x="1030.03" y="367.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (4,130,639,902 samples, 0.08%)</title><rect x="14.6" y="421" width="1.0" height="15.0" fill="rgb(217,26,19)" rx="2" ry="2" />
+<text  x="17.63" y="431.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (2,774,749,150 samples, 0.05%)</title><rect x="766.6" y="245" width="0.6" height="15.0" fill="rgb(239,143,42)" rx="2" ry="2" />
+<text  x="769.57" y="255.5" ></text>
+</g>
+<g >
+<title>__this_cpu_preempt_check (934,181,838 samples, 0.02%)</title><rect x="1056.9" y="421" width="0.2" height="15.0" fill="rgb(222,222,17)" rx="2" ry="2" />
+<text  x="1059.93" y="431.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (25,213,295,674 samples, 0.49%)</title><rect x="871.4" y="325" width="5.8" height="15.0" fill="rgb(207,73,22)" rx="2" ry="2" />
+<text  x="874.39" y="335.5" ></text>
+</g>
+<g >
+<title>[perf] (3,692,662,284 samples, 0.07%)</title><rect x="1017.1" y="389" width="0.9" height="15.0" fill="rgb(238,7,2)" rx="2" ry="2" />
+<text  x="1020.11" y="399.5" ></text>
+</g>
+<g >
+<title>_int_free (1,842,669,614 samples, 0.04%)</title><rect x="122.1" y="325" width="0.4" height="15.0" fill="rgb(251,92,54)" rx="2" ry="2" />
+<text  x="125.07" y="335.5" ></text>
+</g>
+<g >
+<title>__get_task_ioprio (1,405,957,110 samples, 0.03%)</title><rect x="828.0" y="389" width="0.3" height="15.0" fill="rgb(247,188,0)" rx="2" ry="2" />
+<text  x="831.02" y="399.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (448,504,745 samples, 0.01%)</title><rect x="276.4" y="437" width="0.1" height="15.0" fill="rgb(246,55,3)" rx="2" ry="2" />
+<text  x="279.36" y="447.5" ></text>
+</g>
+<g >
+<title>read_tsc (553,109,278 samples, 0.01%)</title><rect x="1187.7" y="453" width="0.2" height="15.0" fill="rgb(208,43,51)" rx="2" ry="2" />
+<text  x="1190.73" y="463.5" ></text>
+</g>
+<g >
+<title>[fio-nbd.so] (674,121,559,918 samples, 13.07%)</title><rect x="119.3" y="389" width="154.3" height="15.0" fill="rgb(243,38,31)" rx="2" ry="2" />
+<text  x="122.34" y="399.5" >[fio-nbd.so]</text>
+</g>
+<g >
+<title>__entry_text_start (1,326,346,393 samples, 0.03%)</title><rect x="61.9" y="293" width="0.3" height="15.0" fill="rgb(227,210,33)" rx="2" ry="2" />
+<text  x="64.88" y="303.5" ></text>
+</g>
+<g >
+<title>check_preempt_curr (741,952,128 samples, 0.01%)</title><rect x="1177.7" y="357" width="0.2" height="15.0" fill="rgb(214,159,7)" rx="2" ry="2" />
+<text  x="1180.69" y="367.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (3,300,501,990 samples, 0.06%)</title><rect x="20.1" y="405" width="0.7" height="15.0" fill="rgb(222,165,54)" rx="2" ry="2" />
+<text  x="23.07" y="415.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (631,921,084 samples, 0.01%)</title><rect x="808.2" y="357" width="0.1" height="15.0" fill="rgb(216,7,17)" rx="2" ry="2" />
+<text  x="811.16" y="367.5" ></text>
+</g>
+<g >
+<title>read_tsc (1,350,386,450 samples, 0.03%)</title><rect x="1058.6" y="373" width="0.3" height="15.0" fill="rgb(206,210,6)" rx="2" ry="2" />
+<text  x="1061.56" y="383.5" ></text>
+</g>
+<g >
+<title>__poll (1,441,259,182 samples, 0.03%)</title><rect x="11.6" y="549" width="0.3" height="15.0" fill="rgb(251,68,48)" rx="2" ry="2" />
+<text  x="14.56" y="559.5" ></text>
+</g>
+<g >
+<title>__x86_indirect_thunk_rax (811,666,243 samples, 0.02%)</title><rect x="912.2" y="453" width="0.2" height="15.0" fill="rgb(240,8,48)" rx="2" ry="2" />
+<text  x="915.19" y="463.5" ></text>
+</g>
+<g >
+<title>set_next_entity (820,873,380 samples, 0.02%)</title><rect x="147.7" y="197" width="0.2" height="15.0" fill="rgb(236,15,6)" rx="2" ry="2" />
+<text  x="150.72" y="207.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (3,379,144,750 samples, 0.07%)</title><rect x="985.8" y="277" width="0.8" height="15.0" fill="rgb(225,227,13)" rx="2" ry="2" />
+<text  x="988.81" y="287.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (1,543,501,285 samples, 0.03%)</title><rect x="957.9" y="261" width="0.4" height="15.0" fill="rgb(209,163,27)" rx="2" ry="2" />
+<text  x="960.92" y="271.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (4,622,991,285 samples, 0.09%)</title><rect x="1114.7" y="373" width="1.0" height="15.0" fill="rgb(253,138,40)" rx="2" ry="2" />
+<text  x="1117.69" y="383.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (1,536,118,025 samples, 0.03%)</title><rect x="54.8" y="213" width="0.3" height="15.0" fill="rgb(249,111,20)" rx="2" ry="2" />
+<text  x="57.79" y="223.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,010,568,635 samples, 0.02%)</title><rect x="284.2" y="485" width="0.2" height="15.0" fill="rgb(215,150,23)" rx="2" ry="2" />
+<text  x="287.17" y="495.5" ></text>
+</g>
+<g >
+<title>selinux_file_permission (3,614,208,308 samples, 0.07%)</title><rect x="404.3" y="341" width="0.8" height="15.0" fill="rgb(211,39,53)" rx="2" ry="2" />
+<text  x="407.26" y="351.5" ></text>
+</g>
+<g >
+<title>ktime_get (849,866,081 samples, 0.02%)</title><rect x="1187.7" y="469" width="0.2" height="15.0" fill="rgb(253,206,42)" rx="2" ry="2" />
+<text  x="1190.66" y="479.5" ></text>
+</g>
+<g >
+<title>fio_time_init (572,524,137 samples, 0.01%)</title><rect x="275.0" y="485" width="0.1" height="15.0" fill="rgb(245,8,21)" rx="2" ry="2" />
+<text  x="278.00" y="495.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,149,533,499 samples, 0.02%)</title><rect x="1189.3" y="469" width="0.3" height="15.0" fill="rgb(205,101,53)" rx="2" ry="2" />
+<text  x="1192.32" y="479.5" ></text>
+</g>
+<g >
+<title>__get_user_8 (582,561,101 samples, 0.01%)</title><rect x="157.5" y="245" width="0.2" height="15.0" fill="rgb(214,39,28)" rx="2" ry="2" />
+<text  x="160.54" y="255.5" ></text>
+</g>
+<g >
+<title>preempt_count_sub (755,444,519 samples, 0.01%)</title><rect x="935.5" y="341" width="0.1" height="15.0" fill="rgb(234,98,53)" rx="2" ry="2" />
+<text  x="938.46" y="351.5" ></text>
+</g>
+<g >
+<title>enqueue_task (117,205,788,302 samples, 2.27%)</title><rect x="1103.6" y="437" width="26.8" height="15.0" fill="rgb(243,168,15)" rx="2" ry="2" />
+<text  x="1106.59" y="447.5" >e..</text>
+</g>
+<g >
+<title>sock_sendmsg (369,882,187,294 samples, 7.17%)</title><rect x="919.9" y="389" width="84.7" height="15.0" fill="rgb(212,133,36)" rx="2" ry="2" />
+<text  x="922.93" y="399.5" >sock_send..</text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (3,085,943,843 samples, 0.06%)</title><rect x="194.7" y="165" width="0.7" height="15.0" fill="rgb(212,171,30)" rx="2" ry="2" />
+<text  x="197.68" y="175.5" ></text>
+</g>
+<g >
+<title>skb_set_owner_w (9,262,675,776 samples, 0.18%)</title><rect x="996.6" y="341" width="2.2" height="15.0" fill="rgb(216,141,43)" rx="2" ry="2" />
+<text  x="999.65" y="351.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (503,739,343 samples, 0.01%)</title><rect x="853.7" y="245" width="0.2" height="15.0" fill="rgb(241,63,41)" rx="2" ry="2" />
+<text  x="856.74" y="255.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (562,890,723 samples, 0.01%)</title><rect x="233.6" y="85" width="0.1" height="15.0" fill="rgb(214,219,31)" rx="2" ry="2" />
+<text  x="236.62" y="95.5" ></text>
+</g>
+<g >
+<title>update_load_avg (438,692,615 samples, 0.01%)</title><rect x="802.7" y="245" width="0.1" height="15.0" fill="rgb(221,147,23)" rx="2" ry="2" />
+<text  x="805.70" y="255.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (798,874,153 samples, 0.02%)</title><rect x="795.3" y="309" width="0.1" height="15.0" fill="rgb(236,123,44)" rx="2" ry="2" />
+<text  x="798.26" y="319.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (2,598,545,145 samples, 0.05%)</title><rect x="177.7" y="165" width="0.6" height="15.0" fill="rgb(236,156,43)" rx="2" ry="2" />
+<text  x="180.74" y="175.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (44,945,133,017 samples, 0.87%)</title><rect x="1054.7" y="437" width="10.3" height="15.0" fill="rgb(214,131,25)" rx="2" ry="2" />
+<text  x="1057.69" y="447.5" ></text>
+</g>
+<g >
+<title>__send (694,912,946 samples, 0.01%)</title><rect x="381.2" y="485" width="0.2" height="15.0" fill="rgb(247,48,10)" rx="2" ry="2" />
+<text  x="384.23" y="495.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (469,776,699 samples, 0.01%)</title><rect x="766.4" y="229" width="0.1" height="15.0" fill="rgb(240,124,40)" rx="2" ry="2" />
+<text  x="769.42" y="239.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (1,739,705,728 samples, 0.03%)</title><rect x="364.6" y="357" width="0.4" height="15.0" fill="rgb(241,92,13)" rx="2" ry="2" />
+<text  x="367.62" y="367.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (2,588,073,422 samples, 0.05%)</title><rect x="133.0" y="325" width="0.6" height="15.0" fill="rgb(231,85,38)" rx="2" ry="2" />
+<text  x="136.00" y="335.5" ></text>
+</g>
+<g >
+<title>selinux_file_permission (3,532,336,741 samples, 0.07%)</title><rect x="807.0" y="341" width="0.8" height="15.0" fill="rgb(244,215,23)" rx="2" ry="2" />
+<text  x="809.97" y="351.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (3,291,055,142 samples, 0.06%)</title><rect x="148.0" y="213" width="0.8" height="15.0" fill="rgb(209,105,41)" rx="2" ry="2" />
+<text  x="151.03" y="223.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (515,056,215 samples, 0.01%)</title><rect x="862.4" y="245" width="0.1" height="15.0" fill="rgb(253,152,54)" rx="2" ry="2" />
+<text  x="865.42" y="255.5" ></text>
+</g>
+<g >
+<title>td_io_commit (443,334,602 samples, 0.01%)</title><rect x="110.1" y="421" width="0.1" height="15.0" fill="rgb(235,26,52)" rx="2" ry="2" />
+<text  x="113.11" y="431.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (2,702,844,072 samples, 0.05%)</title><rect x="93.0" y="117" width="0.6" height="15.0" fill="rgb(214,205,34)" rx="2" ry="2" />
+<text  x="95.97" y="127.5" ></text>
+</g>
+<g >
+<title>llist_reverse_order (28,510,986,369 samples, 0.55%)</title><rect x="1077.7" y="453" width="6.5" height="15.0" fill="rgb(205,46,42)" rx="2" ry="2" />
+<text  x="1080.66" y="463.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock@@GLIBC_2.2.5 (1,167,404,205 samples, 0.02%)</title><rect x="272.8" y="357" width="0.2" height="15.0" fill="rgb(245,99,22)" rx="2" ry="2" />
+<text  x="275.78" y="367.5" ></text>
+</g>
+<g >
+<title>schedule (1,578,576,516 samples, 0.03%)</title><rect x="887.0" y="325" width="0.4" height="15.0" fill="rgb(226,91,8)" rx="2" ry="2" />
+<text  x="890.01" y="335.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (9,415,212,229 samples, 0.18%)</title><rect x="340.1" y="341" width="2.2" height="15.0" fill="rgb(236,120,24)" rx="2" ry="2" />
+<text  x="343.13" y="351.5" ></text>
+</g>
+<g >
+<title>inode_to_bdi (461,140,118 samples, 0.01%)</title><rect x="418.9" y="309" width="0.2" height="15.0" fill="rgb(235,138,47)" rx="2" ry="2" />
+<text  x="421.95" y="319.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (503,171,068 samples, 0.01%)</title><rect x="259.9" y="165" width="0.1" height="15.0" fill="rgb(224,210,8)" rx="2" ry="2" />
+<text  x="262.89" y="175.5" ></text>
+</g>
+<g >
+<title>record_times (847,847,354 samples, 0.02%)</title><rect x="336.5" y="309" width="0.2" height="15.0" fill="rgb(224,151,9)" rx="2" ry="2" />
+<text  x="339.53" y="319.5" ></text>
+</g>
+<g >
+<title>__memcg_kmem_charge_page (9,986,233,554 samples, 0.19%)</title><rect x="956.8" y="309" width="2.2" height="15.0" fill="rgb(240,36,46)" rx="2" ry="2" />
+<text  x="959.76" y="319.5" ></text>
+</g>
+<g >
+<title>sugov_update_single_freq (462,082,105 samples, 0.01%)</title><rect x="324.1" y="261" width="0.1" height="15.0" fill="rgb(217,49,0)" rx="2" ry="2" />
+<text  x="327.14" y="271.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,526,760,897 samples, 0.03%)</title><rect x="280.3" y="485" width="0.3" height="15.0" fill="rgb(248,8,32)" rx="2" ry="2" />
+<text  x="283.27" y="495.5" ></text>
+</g>
+<g >
+<title>task_h_load (1,441,254,272 samples, 0.03%)</title><rect x="369.8" y="341" width="0.3" height="15.0" fill="rgb(240,88,31)" rx="2" ry="2" />
+<text  x="372.78" y="351.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (2,817,041,333 samples, 0.05%)</title><rect x="74.3" y="181" width="0.6" height="15.0" fill="rgb(244,187,43)" rx="2" ry="2" />
+<text  x="77.28" y="191.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (170,333,336,682 samples, 3.30%)</title><rect x="67.0" y="213" width="39.0" height="15.0" fill="rgb(246,157,18)" rx="2" ry="2" />
+<text  x="69.98" y="223.5" >uni..</text>
+</g>
+<g >
+<title>unix_passcred_enabled (871,558,602 samples, 0.02%)</title><rect x="1003.9" y="357" width="0.2" height="15.0" fill="rgb(232,182,25)" rx="2" ry="2" />
+<text  x="1006.86" y="367.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (78,464,380,589 samples, 1.52%)</title><rect x="37.8" y="277" width="17.9" height="15.0" fill="rgb(253,91,3)" rx="2" ry="2" />
+<text  x="40.77" y="287.5" ></text>
+</g>
+<g >
+<title>psi_task_change (2,372,096,464 samples, 0.05%)</title><rect x="1024.5" y="389" width="0.5" height="15.0" fill="rgb(219,23,41)" rx="2" ry="2" />
+<text  x="1027.49" y="399.5" ></text>
+</g>
+<g >
+<title>plugin_pread (104,665,729,917 samples, 2.03%)</title><rect x="381.8" y="469" width="24.0" height="15.0" fill="rgb(220,2,1)" rx="2" ry="2" />
+<text  x="384.83" y="479.5" >p..</text>
+</g>
+<g >
+<title>__rcu_read_unlock (442,431,296 samples, 0.01%)</title><rect x="930.4" y="357" width="0.1" height="15.0" fill="rgb(234,29,45)" rx="2" ry="2" />
+<text  x="933.42" y="367.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,100,411,017 samples, 0.02%)</title><rect x="281.7" y="549" width="0.3" height="15.0" fill="rgb(231,52,46)" rx="2" ry="2" />
+<text  x="284.71" y="559.5" ></text>
+</g>
+<g >
+<title>unix_destruct_scm (23,961,533,192 samples, 0.46%)</title><rect x="871.7" y="309" width="5.5" height="15.0" fill="rgb(209,46,31)" rx="2" ry="2" />
+<text  x="874.67" y="319.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (27,621,191,166 samples, 0.54%)</title><rect x="851.5" y="293" width="6.4" height="15.0" fill="rgb(214,168,4)" rx="2" ry="2" />
+<text  x="854.54" y="303.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (2,263,888,614 samples, 0.04%)</title><rect x="1007.6" y="421" width="0.5" height="15.0" fill="rgb(226,203,47)" rx="2" ry="2" />
+<text  x="1010.62" y="431.5" ></text>
+</g>
+<g >
+<title>kworker/u64:7-k (1,712,707,219 samples, 0.03%)</title><rect x="282.8" y="565" width="0.4" height="15.0" fill="rgb(221,69,28)" rx="2" ry="2" />
+<text  x="285.78" y="575.5" ></text>
+</g>
+<g >
+<title>nbd_poll (829,194,428 samples, 0.02%)</title><rect x="274.5" y="389" width="0.2" height="15.0" fill="rgb(229,135,42)" rx="2" ry="2" />
+<text  x="277.52" y="399.5" ></text>
+</g>
+<g >
+<title>__vasprintf_internal (17,131,454,647 samples, 0.33%)</title><rect x="124.1" y="341" width="3.9" height="15.0" fill="rgb(217,138,46)" rx="2" ry="2" />
+<text  x="127.11" y="351.5" ></text>
+</g>
+<g >
+<title>__check_object_size (11,200,528,150 samples, 0.22%)</title><rect x="198.9" y="117" width="2.6" height="15.0" fill="rgb(228,192,22)" rx="2" ry="2" />
+<text  x="201.95" y="127.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (1,171,565,311 samples, 0.02%)</title><rect x="219.7" y="213" width="0.3" height="15.0" fill="rgb(247,79,12)" rx="2" ry="2" />
+<text  x="222.72" y="223.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (28,502,502,198 samples, 0.55%)</title><rect x="75.3" y="149" width="6.5" height="15.0" fill="rgb(251,184,13)" rx="2" ry="2" />
+<text  x="78.31" y="159.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (960,240,313 samples, 0.02%)</title><rect x="351.6" y="469" width="0.3" height="15.0" fill="rgb(205,226,8)" rx="2" ry="2" />
+<text  x="354.65" y="479.5" ></text>
+</g>
+<g >
+<title>check_preempt_curr (495,909,795 samples, 0.01%)</title><rect x="802.9" y="277" width="0.1" height="15.0" fill="rgb(221,14,43)" rx="2" ry="2" />
+<text  x="805.90" y="287.5" ></text>
+</g>
+<g >
+<title>llist_reverse_order (1,007,787,893 samples, 0.02%)</title><rect x="1022.8" y="421" width="0.2" height="15.0" fill="rgb(211,168,13)" rx="2" ry="2" />
+<text  x="1025.79" y="431.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (561,380,890 samples, 0.01%)</title><rect x="219.2" y="85" width="0.1" height="15.0" fill="rgb(240,205,9)" rx="2" ry="2" />
+<text  x="222.19" y="95.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (1,262,231,278 samples, 0.02%)</title><rect x="794.2" y="293" width="0.3" height="15.0" fill="rgb(233,11,33)" rx="2" ry="2" />
+<text  x="797.20" y="303.5" ></text>
+</g>
+<g >
+<title>read_tsc (837,903,086 samples, 0.02%)</title><rect x="1045.4" y="373" width="0.2" height="15.0" fill="rgb(215,17,10)" rx="2" ry="2" />
+<text  x="1048.42" y="383.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,278,247,874 samples, 0.02%)</title><rect x="279.0" y="469" width="0.3" height="15.0" fill="rgb(227,152,51)" rx="2" ry="2" />
+<text  x="281.97" y="479.5" ></text>
+</g>
+<g >
+<title>kthread (1,100,411,017 samples, 0.02%)</title><rect x="281.7" y="533" width="0.3" height="15.0" fill="rgb(252,105,7)" rx="2" ry="2" />
+<text  x="284.71" y="543.5" ></text>
+</g>
+<g >
+<title>__unfreeze_partials (759,561,640 samples, 0.01%)</title><rect x="847.2" y="341" width="0.1" height="15.0" fill="rgb(250,157,48)" rx="2" ry="2" />
+<text  x="850.15" y="351.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (596,269,276 samples, 0.01%)</title><rect x="113.2" y="357" width="0.1" height="15.0" fill="rgb(227,221,9)" rx="2" ry="2" />
+<text  x="116.16" y="367.5" ></text>
+</g>
+<g >
+<title>add_lat_sample (2,595,214,130 samples, 0.05%)</title><rect x="116.5" y="373" width="0.6" height="15.0" fill="rgb(230,130,1)" rx="2" ry="2" />
+<text  x="119.49" y="383.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_getpeersec_dgram (2,441,229,014 samples, 0.05%)</title><rect x="937.0" y="341" width="0.5" height="15.0" fill="rgb(220,163,1)" rx="2" ry="2" />
+<text  x="939.99" y="351.5" ></text>
+</g>
+<g >
+<title>skb_release_data (18,796,196,220 samples, 0.36%)</title><rect x="260.2" y="165" width="4.3" height="15.0" fill="rgb(228,120,16)" rx="2" ry="2" />
+<text  x="263.24" y="175.5" ></text>
+</g>
+<g >
+<title>[perf] (4,277,426,306 samples, 0.08%)</title><rect x="1017.1" y="501" width="1.0" height="15.0" fill="rgb(248,207,40)" rx="2" ry="2" />
+<text  x="1020.08" y="511.5" ></text>
+</g>
+<g >
+<title>percpu_ref_put_many.constprop.0 (750,334,738 samples, 0.01%)</title><rect x="958.3" y="293" width="0.2" height="15.0" fill="rgb(215,76,39)" rx="2" ry="2" />
+<text  x="961.28" y="303.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (692,453,115 samples, 0.01%)</title><rect x="202.5" y="277" width="0.2" height="15.0" fill="rgb(225,51,2)" rx="2" ry="2" />
+<text  x="205.55" y="287.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (463,535,715 samples, 0.01%)</title><rect x="11.7" y="485" width="0.1" height="15.0" fill="rgb(240,142,46)" rx="2" ry="2" />
+<text  x="14.71" y="495.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (13,474,551,944 samples, 0.26%)</title><rect x="195.8" y="133" width="3.1" height="15.0" fill="rgb(238,116,46)" rx="2" ry="2" />
+<text  x="198.78" y="143.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (1,153,357,219 samples, 0.02%)</title><rect x="87.2" y="133" width="0.3" height="15.0" fill="rgb(235,45,19)" rx="2" ry="2" />
+<text  x="90.22" y="143.5" ></text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_ISSUE_COMMAND_START.constprop.0 (715,165,335 samples, 0.01%)</title><rect x="36.2" y="357" width="0.1" height="15.0" fill="rgb(253,186,47)" rx="2" ry="2" />
+<text  x="39.17" y="367.5" ></text>
+</g>
+<g >
+<title>osq_lock (1,381,257,474,138 samples, 26.79%)</title><rect x="451.6" y="325" width="316.1" height="15.0" fill="rgb(252,142,1)" rx="2" ry="2" />
+<text  x="454.60" y="335.5" >osq_lock</text>
+</g>
+<g >
+<title>mod_memcg_state (1,277,808,934 samples, 0.02%)</title><rect x="979.1" y="245" width="0.3" height="15.0" fill="rgb(216,68,25)" rx="2" ry="2" />
+<text  x="982.11" y="255.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (2,628,090,095 samples, 0.05%)</title><rect x="112.6" y="357" width="0.6" height="15.0" fill="rgb(216,179,46)" rx="2" ry="2" />
+<text  x="115.56" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,540,182,548 samples, 0.03%)</title><rect x="282.8" y="453" width="0.3" height="15.0" fill="rgb(223,222,52)" rx="2" ry="2" />
+<text  x="285.79" y="463.5" ></text>
+</g>
+<g >
+<title>__x86_indirect_thunk_rax (879,169,951 samples, 0.02%)</title><rect x="821.0" y="453" width="0.2" height="15.0" fill="rgb(244,107,1)" rx="2" ry="2" />
+<text  x="824.03" y="463.5" ></text>
+</g>
+<g >
+<title>alloc_skb_with_frags (34,941,759,789 samples, 0.68%)</title><rect x="46.0" y="197" width="7.9" height="15.0" fill="rgb(249,174,41)" rx="2" ry="2" />
+<text  x="48.95" y="207.5" ></text>
+</g>
+<g >
+<title>record_times (2,493,465,607 samples, 0.05%)</title><rect x="1128.9" y="389" width="0.6" height="15.0" fill="rgb(206,43,46)" rx="2" ry="2" />
+<text  x="1131.92" y="399.5" ></text>
+</g>
+<g >
+<title>sysvec_reschedule_ipi (630,900,418 samples, 0.01%)</title><rect x="1065.1" y="437" width="0.2" height="15.0" fill="rgb(235,154,9)" rx="2" ry="2" />
+<text  x="1068.12" y="447.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (1,769,707,102 samples, 0.03%)</title><rect x="262.3" y="133" width="0.4" height="15.0" fill="rgb(223,80,30)" rx="2" ry="2" />
+<text  x="265.26" y="143.5" ></text>
+</g>
+<g >
+<title>mod_memcg_lruvec_state (497,555,102 samples, 0.01%)</title><rect x="977.1" y="245" width="0.1" height="15.0" fill="rgb(215,62,28)" rx="2" ry="2" />
+<text  x="980.05" y="255.5" ></text>
+</g>
+<g >
+<title>update_curr (512,800,642 samples, 0.01%)</title><rect x="322.3" y="229" width="0.1" height="15.0" fill="rgb(208,115,52)" rx="2" ry="2" />
+<text  x="325.32" y="239.5" ></text>
+</g>
+<g >
+<title>osq_unlock (9,013,795,831 samples, 0.17%)</title><rect x="767.7" y="325" width="2.1" height="15.0" fill="rgb(248,19,3)" rx="2" ry="2" />
+<text  x="770.69" y="335.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (32,289,451,291 samples, 0.63%)</title><rect x="387.8" y="309" width="7.4" height="15.0" fill="rgb(253,48,33)" rx="2" ry="2" />
+<text  x="390.76" y="319.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (708,922,721 samples, 0.01%)</title><rect x="1017.5" y="229" width="0.2" height="15.0" fill="rgb(228,157,48)" rx="2" ry="2" />
+<text  x="1020.49" y="239.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (14,680,700,296 samples, 0.28%)</title><rect x="990.0" y="277" width="3.3" height="15.0" fill="rgb(244,205,0)" rx="2" ry="2" />
+<text  x="992.96" y="287.5" ></text>
+</g>
+<g >
+<title>connection_get_status (6,816,755,105 samples, 0.13%)</title><rect x="809.7" y="485" width="1.6" height="15.0" fill="rgb(209,161,21)" rx="2" ry="2" />
+<text  x="812.71" y="495.5" ></text>
+</g>
+<g >
+<title>__schedule (21,860,782,582 samples, 0.42%)</title><rect x="789.5" y="309" width="5.0" height="15.0" fill="rgb(221,83,21)" rx="2" ry="2" />
+<text  x="792.48" y="319.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (69,807,067,269 samples, 1.35%)</title><rect x="204.1" y="261" width="16.0" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
+<text  x="207.10" y="271.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,355,013,535 samples, 0.03%)</title><rect x="282.1" y="549" width="0.3" height="15.0" fill="rgb(225,189,5)" rx="2" ry="2" />
+<text  x="285.10" y="559.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (3,753,767,427 samples, 0.07%)</title><rect x="256.9" y="213" width="0.9" height="15.0" fill="rgb(215,55,21)" rx="2" ry="2" />
+<text  x="259.94" y="223.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (750,083,760 samples, 0.01%)</title><rect x="172.5" y="293" width="0.2" height="15.0" fill="rgb(254,123,26)" rx="2" ry="2" />
+<text  x="175.52" y="303.5" ></text>
+</g>
+<g >
+<title>read (2,227,380,440 samples, 0.04%)</title><rect x="284.4" y="533" width="0.6" height="15.0" fill="rgb(235,50,47)" rx="2" ry="2" />
+<text  x="287.45" y="543.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (450,314,810 samples, 0.01%)</title><rect x="328.6" y="309" width="0.1" height="15.0" fill="rgb(234,136,30)" rx="2" ry="2" />
+<text  x="331.62" y="319.5" ></text>
+</g>
+<g >
+<title>kfree (558,358,215 samples, 0.01%)</title><rect x="264.4" y="149" width="0.1" height="15.0" fill="rgb(217,92,32)" rx="2" ry="2" />
+<text  x="267.36" y="159.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (745,948,225 samples, 0.01%)</title><rect x="142.4" y="213" width="0.2" height="15.0" fill="rgb(247,25,40)" rx="2" ry="2" />
+<text  x="145.40" y="223.5" ></text>
+</g>
+<g >
+<title>ext4_nonda_switch (2,793,668,777 samples, 0.05%)</title><rect x="428.7" y="309" width="0.6" height="15.0" fill="rgb(234,75,15)" rx="2" ry="2" />
+<text  x="431.66" y="319.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,477,662,802 samples, 0.03%)</title><rect x="278.6" y="501" width="0.4" height="15.0" fill="rgb(213,109,0)" rx="2" ry="2" />
+<text  x="281.63" y="511.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (1,182,259,859 samples, 0.02%)</title><rect x="227.2" y="165" width="0.3" height="15.0" fill="rgb(238,78,30)" rx="2" ry="2" />
+<text  x="230.22" y="175.5" ></text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_ISSUE_COMMAND_PREPARE_WRITE_PAYLOAD.constprop.0 (899,460,745 samples, 0.02%)</title><rect x="59.9" y="341" width="0.2" height="15.0" fill="rgb(211,207,52)" rx="2" ry="2" />
+<text  x="62.92" y="351.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (724,102,256 samples, 0.01%)</title><rect x="228.8" y="69" width="0.2" height="15.0" fill="rgb(240,124,11)" rx="2" ry="2" />
+<text  x="231.83" y="79.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (604,276,805 samples, 0.01%)</title><rect x="1177.9" y="373" width="0.1" height="15.0" fill="rgb(212,47,15)" rx="2" ry="2" />
+<text  x="1180.86" y="383.5" ></text>
+</g>
+<g >
+<title>ct_nmi_exit (680,637,341 samples, 0.01%)</title><rect x="1174.3" y="405" width="0.2" height="15.0" fill="rgb(246,169,28)" rx="2" ry="2" />
+<text  x="1177.35" y="415.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_from_iter (53,706,221,110 samples, 1.04%)</title><rect x="938.9" y="357" width="12.3" height="15.0" fill="rgb(228,91,28)" rx="2" ry="2" />
+<text  x="941.88" y="367.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (1,105,351,153 samples, 0.02%)</title><rect x="1010.3" y="405" width="0.3" height="15.0" fill="rgb(218,198,5)" rx="2" ry="2" />
+<text  x="1013.32" y="415.5" ></text>
+</g>
+<g >
+<title>schedule (180,907,698,913 samples, 3.51%)</title><rect x="301.1" y="373" width="41.4" height="15.0" fill="rgb(234,165,5)" rx="2" ry="2" />
+<text  x="304.07" y="383.5" >sch..</text>
+</g>
+<g >
+<title>policy_nodemask (510,755,220 samples, 0.01%)</title><rect x="996.5" y="309" width="0.1" height="15.0" fill="rgb(230,93,23)" rx="2" ry="2" />
+<text  x="999.48" y="319.5" ></text>
+</g>
+<g >
+<title>__slab_alloc.isra.0 (3,384,382,904 samples, 0.07%)</title><rect x="984.0" y="293" width="0.8" height="15.0" fill="rgb(213,195,23)" rx="2" ry="2" />
+<text  x="987.02" y="303.5" ></text>
+</g>
+<g >
+<title>sock_read_iter (316,238,637,056 samples, 6.13%)</title><rect x="834.1" y="389" width="72.4" height="15.0" fill="rgb(233,126,35)" rx="2" ry="2" />
+<text  x="837.11" y="399.5" >sock_rea..</text>
+</g>
+<g >
+<title>[fio-nbd.so] (346,365,911,777 samples, 6.72%)</title><rect x="29.3" y="421" width="79.3" height="15.0" fill="rgb(250,177,37)" rx="2" ry="2" />
+<text  x="32.30" y="431.5" >[fio-nbd...</text>
+</g>
+<g >
+<title>_raw_spin_rq_lock_irqsave (2,491,855,151 samples, 0.05%)</title><rect x="1023.3" y="421" width="0.5" height="15.0" fill="rgb(225,103,27)" rx="2" ry="2" />
+<text  x="1026.26" y="431.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (458,872,096 samples, 0.01%)</title><rect x="379.3" y="309" width="0.1" height="15.0" fill="rgb(219,50,8)" rx="2" ry="2" />
+<text  x="382.34" y="319.5" ></text>
+</g>
+<g >
+<title>nohz_run_idle_balance (1,205,220,112 samples, 0.02%)</title><rect x="1170.8" y="485" width="0.3" height="15.0" fill="rgb(250,34,32)" rx="2" ry="2" />
+<text  x="1173.79" y="495.5" ></text>
+</g>
+<g >
+<title>scm_recv.isra.0 (1,121,554,026 samples, 0.02%)</title><rect x="887.4" y="341" width="0.2" height="15.0" fill="rgb(208,74,1)" rx="2" ry="2" />
+<text  x="890.37" y="351.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (1,053,698,614 samples, 0.02%)</title><rect x="1064.7" y="421" width="0.3" height="15.0" fill="rgb(237,222,33)" rx="2" ry="2" />
+<text  x="1067.73" y="431.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_sendmsg (580,925,168 samples, 0.01%)</title><rect x="38.9" y="213" width="0.2" height="15.0" fill="rgb(252,107,10)" rx="2" ry="2" />
+<text  x="41.94" y="223.5" ></text>
+</g>
+<g >
+<title>timerqueue_iterate_next (814,215,228 samples, 0.02%)</title><rect x="1156.0" y="421" width="0.2" height="15.0" fill="rgb(206,4,8)" rx="2" ry="2" />
+<text  x="1159.00" y="431.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (470,287,735 samples, 0.01%)</title><rect x="55.7" y="277" width="0.1" height="15.0" fill="rgb(243,105,53)" rx="2" ry="2" />
+<text  x="58.73" y="287.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (1,147,251,978 samples, 0.02%)</title><rect x="908.0" y="405" width="0.3" height="15.0" fill="rgb(245,156,40)" rx="2" ry="2" />
+<text  x="911.00" y="415.5" ></text>
+</g>
+<g >
+<title>ct_nmi_enter (600,629,140 samples, 0.01%)</title><rect x="1178.3" y="389" width="0.1" height="15.0" fill="rgb(246,223,33)" rx="2" ry="2" />
+<text  x="1181.26" y="399.5" ></text>
+</g>
+<g >
+<title>nbd_internal_command_common (221,147,226,670 samples, 4.29%)</title><rect x="57.6" y="373" width="50.6" height="15.0" fill="rgb(252,164,37)" rx="2" ry="2" />
+<text  x="60.56" y="383.5" >nbd_i..</text>
+</g>
+<g >
+<title>preempt_count_add (1,120,474,125 samples, 0.02%)</title><rect x="1157.1" y="421" width="0.2" height="15.0" fill="rgb(228,82,4)" rx="2" ry="2" />
+<text  x="1160.07" y="431.5" ></text>
+</g>
+<g >
+<title>tick_irq_enter (486,641,405 samples, 0.01%)</title><rect x="1178.1" y="389" width="0.1" height="15.0" fill="rgb(217,205,34)" rx="2" ry="2" />
+<text  x="1181.11" y="399.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (1,657,738,416 samples, 0.03%)</title><rect x="113.3" y="389" width="0.4" height="15.0" fill="rgb(254,65,18)" rx="2" ry="2" />
+<text  x="116.30" y="399.5" ></text>
+</g>
+<g >
+<title>rcu_preempt_deferred_qs (1,820,629,482 samples, 0.04%)</title><rect x="1066.8" y="437" width="0.4" height="15.0" fill="rgb(219,100,35)" rx="2" ry="2" />
+<text  x="1069.78" y="447.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (870,771,407 samples, 0.02%)</title><rect x="131.1" y="357" width="0.2" height="15.0" fill="rgb(253,187,16)" rx="2" ry="2" />
+<text  x="134.11" y="367.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (78,858,526,170 samples, 1.53%)</title><rect x="416.8" y="341" width="18.0" height="15.0" fill="rgb(251,82,37)" rx="2" ry="2" />
+<text  x="419.80" y="351.5" ></text>
+</g>
+<g >
+<title>psi_flags_change (542,597,253 samples, 0.01%)</title><rect x="333.7" y="325" width="0.1" height="15.0" fill="rgb(214,19,32)" rx="2" ry="2" />
+<text  x="336.67" y="335.5" ></text>
+</g>
+<g >
+<title>[perf] (4,276,478,319 samples, 0.08%)</title><rect x="1017.1" y="453" width="1.0" height="15.0" fill="rgb(208,96,25)" rx="2" ry="2" />
+<text  x="1020.08" y="463.5" ></text>
+</g>
+<g >
+<title>available_idle_cpu (696,296,965 samples, 0.01%)</title><rect x="1002.1" y="261" width="0.1" height="15.0" fill="rgb(209,104,11)" rx="2" ry="2" />
+<text  x="1005.08" y="271.5" ></text>
+</g>
+<g >
+<title>fio_backend (1,149,758,478,545 samples, 22.30%)</title><rect x="11.9" y="485" width="263.1" height="15.0" fill="rgb(252,15,46)" rx="2" ry="2" />
+<text  x="14.89" y="495.5" >fio_backend</text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (8,983,895,856 samples, 0.17%)</title><rect x="100.2" y="133" width="2.0" height="15.0" fill="rgb(219,102,35)" rx="2" ry="2" />
+<text  x="103.17" y="143.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (30,187,839,081 samples, 0.59%)</title><rect x="419.5" y="309" width="6.9" height="15.0" fill="rgb(249,10,28)" rx="2" ry="2" />
+<text  x="422.45" y="319.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (1,998,765,071 samples, 0.04%)</title><rect x="385.0" y="357" width="0.4" height="15.0" fill="rgb(224,107,39)" rx="2" ry="2" />
+<text  x="387.99" y="367.5" ></text>
+</g>
+<g >
+<title>set_next_entity (2,496,008,510 samples, 0.05%)</title><rect x="331.7" y="325" width="0.5" height="15.0" fill="rgb(233,32,29)" rx="2" ry="2" />
+<text  x="334.66" y="335.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (736,664,189 samples, 0.01%)</title><rect x="281.0" y="453" width="0.1" height="15.0" fill="rgb(219,150,37)" rx="2" ry="2" />
+<text  x="283.96" y="463.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (778,027,433 samples, 0.02%)</title><rect x="134.3" y="309" width="0.2" height="15.0" fill="rgb(205,130,21)" rx="2" ry="2" />
+<text  x="137.33" y="319.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (1,005,034,948 samples, 0.02%)</title><rect x="254.1" y="213" width="0.2" height="15.0" fill="rgb(211,157,20)" rx="2" ry="2" />
+<text  x="257.09" y="223.5" ></text>
+</g>
+<g >
+<title>alloc_skb_with_frags (90,557,533,800 samples, 1.76%)</title><rect x="83.2" y="181" width="20.7" height="15.0" fill="rgb(242,80,26)" rx="2" ry="2" />
+<text  x="86.22" y="191.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (1,481,662,763 samples, 0.03%)</title><rect x="908.4" y="453" width="0.4" height="15.0" fill="rgb(232,17,0)" rx="2" ry="2" />
+<text  x="911.41" y="463.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (1,766,235,155 samples, 0.03%)</title><rect x="178.3" y="213" width="0.4" height="15.0" fill="rgb(249,66,12)" rx="2" ry="2" />
+<text  x="181.34" y="223.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_updated (658,610,895 samples, 0.01%)</title><rect x="853.4" y="213" width="0.2" height="15.0" fill="rgb(232,110,44)" rx="2" ry="2" />
+<text  x="856.41" y="223.5" ></text>
+</g>
+<g >
+<title>propagate_protected_usage (1,196,862,110 samples, 0.02%)</title><rect x="856.9" y="245" width="0.2" height="15.0" fill="rgb(234,125,45)" rx="2" ry="2" />
+<text  x="859.87" y="255.5" ></text>
+</g>
+<g >
+<title>wait_for_completions.lto_priv.0 (718,195,749,647 samples, 13.93%)</title><rect x="110.5" y="437" width="164.3" height="15.0" fill="rgb(244,34,39)" rx="2" ry="2" />
+<text  x="113.46" y="447.5" >wait_for_completions...</text>
+</g>
+<g >
+<title>skb_release_data (53,625,738,746 samples, 1.04%)</title><rect x="227.6" y="149" width="12.3" height="15.0" fill="rgb(206,139,18)" rx="2" ry="2" />
+<text  x="230.58" y="159.5" ></text>
+</g>
+<g >
+<title>__memmove_avx_unaligned (1,538,764,816 samples, 0.03%)</title><rect x="125.6" y="309" width="0.4" height="15.0" fill="rgb(234,200,5)" rx="2" ry="2" />
+<text  x="128.64" y="319.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,545,346,702 samples, 0.03%)</title><rect x="277.3" y="485" width="0.3" height="15.0" fill="rgb(253,115,13)" rx="2" ry="2" />
+<text  x="280.27" y="495.5" ></text>
+</g>
+<g >
+<title>preempt_count_sub (2,456,178,949 samples, 0.05%)</title><rect x="1163.0" y="405" width="0.5" height="15.0" fill="rgb(249,137,39)" rx="2" ry="2" />
+<text  x="1165.98" y="415.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,027,322,080 samples, 0.02%)</title><rect x="10.1" y="421" width="0.2" height="15.0" fill="rgb(254,176,40)" rx="2" ry="2" />
+<text  x="13.06" y="431.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (7,162,006,413 samples, 0.14%)</title><rect x="880.1" y="325" width="1.6" height="15.0" fill="rgb(244,212,29)" rx="2" ry="2" />
+<text  x="883.11" y="335.5" ></text>
+</g>
+<g >
+<title>__fget_light (1,472,746,413 samples, 0.03%)</title><rect x="178.4" y="197" width="0.3" height="15.0" fill="rgb(235,191,38)" rx="2" ry="2" />
+<text  x="181.40" y="207.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (230,282,583,334 samples, 4.47%)</title><rect x="1084.6" y="469" width="52.7" height="15.0" fill="rgb(230,33,34)" rx="2" ry="2" />
+<text  x="1087.57" y="479.5" >sched..</text>
+</g>
+<g >
+<title>__slab_alloc.isra.0 (1,379,984,484 samples, 0.03%)</title><rect x="48.0" y="133" width="0.3" height="15.0" fill="rgb(246,150,34)" rx="2" ry="2" />
+<text  x="50.96" y="143.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (577,068,104 samples, 0.01%)</title><rect x="88.0" y="133" width="0.1" height="15.0" fill="rgb(242,135,42)" rx="2" ry="2" />
+<text  x="90.96" y="143.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (9,080,617,908 samples, 0.18%)</title><rect x="234.0" y="133" width="2.1" height="15.0" fill="rgb(237,84,30)" rx="2" ry="2" />
+<text  x="237.02" y="143.5" ></text>
+</g>
+<g >
+<title>nr_iowait_cpu (7,896,677,222 samples, 0.15%)</title><rect x="1149.2" y="469" width="1.8" height="15.0" fill="rgb(253,49,51)" rx="2" ry="2" />
+<text  x="1152.16" y="479.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (464,491,237 samples, 0.01%)</title><rect x="1025.2" y="405" width="0.1" height="15.0" fill="rgb(221,104,52)" rx="2" ry="2" />
+<text  x="1028.24" y="415.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,563,013,864 samples, 0.03%)</title><rect x="283.5" y="501" width="0.4" height="15.0" fill="rgb(244,36,48)" rx="2" ry="2" />
+<text  x="286.50" y="511.5" ></text>
+</g>
+<g >
+<title>update_curr (508,532,957 samples, 0.01%)</title><rect x="314.8" y="309" width="0.1" height="15.0" fill="rgb(211,181,18)" rx="2" ry="2" />
+<text  x="317.83" y="319.5" ></text>
+</g>
+<g >
+<title>wake_q_add (7,921,681,254 samples, 0.15%)</title><rect x="796.3" y="309" width="1.8" height="15.0" fill="rgb(209,9,2)" rx="2" ry="2" />
+<text  x="799.27" y="319.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (1,886,856,858 samples, 0.04%)</title><rect x="1102.5" y="421" width="0.5" height="15.0" fill="rgb(207,114,53)" rx="2" ry="2" />
+<text  x="1105.54" y="431.5" ></text>
+</g>
+<g >
+<title>fpregs_restore_userregs (437,471,375 samples, 0.01%)</title><rect x="379.0" y="405" width="0.1" height="15.0" fill="rgb(245,142,8)" rx="2" ry="2" />
+<text  x="381.98" y="415.5" ></text>
+</g>
+<g >
+<title>put_file_log (2,006,672,807 samples, 0.04%)</title><rect x="117.8" y="389" width="0.5" height="15.0" fill="rgb(229,149,20)" rx="2" ry="2" />
+<text  x="120.81" y="399.5" ></text>
+</g>
+<g >
+<title>nbd_aio_pwrite (225,110,750,846 samples, 4.37%)</title><rect x="56.8" y="405" width="51.5" height="15.0" fill="rgb(248,67,15)" rx="2" ry="2" />
+<text  x="59.79" y="415.5" >nbd_a..</text>
+</g>
+<g >
+<title>__fget_light (764,576,564 samples, 0.01%)</title><rect x="224.3" y="181" width="0.1" height="15.0" fill="rgb(215,25,25)" rx="2" ry="2" />
+<text  x="227.27" y="191.5" ></text>
+</g>
+<g >
+<title>kworker/u64:20- (1,552,186,392 samples, 0.03%)</title><rect x="279.6" y="565" width="0.3" height="15.0" fill="rgb(230,147,26)" rx="2" ry="2" />
+<text  x="282.59" y="575.5" ></text>
+</g>
+<g >
+<title>nbd_poll (622,345,960,447 samples, 12.07%)</title><rect x="130.8" y="373" width="142.4" height="15.0" fill="rgb(211,32,18)" rx="2" ry="2" />
+<text  x="133.77" y="383.5" >nbd_poll</text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (45,981,572,748 samples, 0.89%)</title><rect x="1041.0" y="453" width="10.5" height="15.0" fill="rgb(208,2,36)" rx="2" ry="2" />
+<text  x="1043.97" y="463.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,579,735,922 samples, 0.03%)</title><rect x="276.0" y="485" width="0.4" height="15.0" fill="rgb(207,229,21)" rx="2" ry="2" />
+<text  x="279.00" y="495.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (470,586,020 samples, 0.01%)</title><rect x="995.6" y="277" width="0.1" height="15.0" fill="rgb(248,34,38)" rx="2" ry="2" />
+<text  x="998.60" y="287.5" ></text>
+</g>
+<g >
+<title>kworker/u64:2-k (1,429,080,678 samples, 0.03%)</title><rect x="279.3" y="565" width="0.3" height="15.0" fill="rgb(222,184,28)" rx="2" ry="2" />
+<text  x="282.27" y="575.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (8,796,089,707 samples, 0.17%)</title><rect x="93.6" y="117" width="2.0" height="15.0" fill="rgb(209,224,17)" rx="2" ry="2" />
+<text  x="96.59" y="127.5" ></text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_REPLY_STRUCTURED_REPLY_RECV_OFFSET_DATA.constprop.0 (76,733,633,663 samples, 1.49%)</title><rect x="202.8" y="325" width="17.5" height="15.0" fill="rgb(215,164,43)" rx="2" ry="2" />
+<text  x="205.78" y="335.5" ></text>
+</g>
+<g >
+<title>__libc_recv (146,000,377,624 samples, 2.83%)</title><rect x="221.3" y="277" width="33.4" height="15.0" fill="rgb(208,223,15)" rx="2" ry="2" />
+<text  x="224.26" y="287.5" >__..</text>
+</g>
+<g >
+<title>send_from_wbuf (1,819,500,144 samples, 0.04%)</title><rect x="10.3" y="469" width="0.4" height="15.0" fill="rgb(216,159,31)" rx="2" ry="2" />
+<text  x="13.31" y="479.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (30,446,610,767 samples, 0.59%)</title><rect x="142.8" y="261" width="7.0" height="15.0" fill="rgb(233,192,53)" rx="2" ry="2" />
+<text  x="145.80" y="271.5" ></text>
+</g>
+<g >
+<title>xas_load (6,001,905,823 samples, 0.12%)</title><rect x="431.4" y="277" width="1.3" height="15.0" fill="rgb(209,88,28)" rx="2" ry="2" />
+<text  x="434.37" y="287.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (10,307,789,636 samples, 0.20%)</title><rect x="176.0" y="197" width="2.3" height="15.0" fill="rgb(236,94,18)" rx="2" ry="2" />
+<text  x="178.98" y="207.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,335,043,388 samples, 0.03%)</title><rect x="277.6" y="549" width="0.3" height="15.0" fill="rgb(239,81,33)" rx="2" ry="2" />
+<text  x="280.62" y="559.5" ></text>
+</g>
+<g >
+<title>kworker/u64:25- (1,321,153,538 samples, 0.03%)</title><rect x="281.1" y="565" width="0.3" height="15.0" fill="rgb(253,128,40)" rx="2" ry="2" />
+<text  x="284.14" y="575.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (1,686,056,650 samples, 0.03%)</title><rect x="959.7" y="293" width="0.4" height="15.0" fill="rgb(217,6,39)" rx="2" ry="2" />
+<text  x="962.74" y="303.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (476,878,731 samples, 0.01%)</title><rect x="275.5" y="437" width="0.2" height="15.0" fill="rgb(247,4,39)" rx="2" ry="2" />
+<text  x="278.55" y="447.5" ></text>
+</g>
+<g >
+<title>__slab_free (6,063,955,221 samples, 0.12%)</title><rect x="845.8" y="341" width="1.4" height="15.0" fill="rgb(251,96,8)" rx="2" ry="2" />
+<text  x="848.76" y="351.5" ></text>
+</g>
+<g >
+<title>sugov_update_single_freq (457,107,470 samples, 0.01%)</title><rect x="322.7" y="213" width="0.1" height="15.0" fill="rgb(222,14,34)" rx="2" ry="2" />
+<text  x="325.67" y="223.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (2,402,698,064 samples, 0.05%)</title><rect x="86.1" y="133" width="0.5" height="15.0" fill="rgb(219,108,50)" rx="2" ry="2" />
+<text  x="89.05" y="143.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (679,732,821 samples, 0.01%)</title><rect x="1042.6" y="405" width="0.1" height="15.0" fill="rgb(232,175,22)" rx="2" ry="2" />
+<text  x="1045.56" y="415.5" ></text>
+</g>
+<g >
+<title>_int_malloc (610,601,286 samples, 0.01%)</title><rect x="34.8" y="357" width="0.2" height="15.0" fill="rgb(222,197,46)" rx="2" ry="2" />
+<text  x="37.84" y="367.5" ></text>
+</g>
+<g >
+<title>unix_write_space (971,516,528 samples, 0.02%)</title><rect x="214.4" y="101" width="0.2" height="15.0" fill="rgb(210,6,42)" rx="2" ry="2" />
+<text  x="217.36" y="111.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,294,527,655 samples, 0.03%)</title><rect x="1050.3" y="389" width="0.3" height="15.0" fill="rgb(239,107,32)" rx="2" ry="2" />
+<text  x="1053.32" y="399.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (584,978,822 samples, 0.01%)</title><rect x="848.7" y="325" width="0.1" height="15.0" fill="rgb(223,229,38)" rx="2" ry="2" />
+<text  x="851.66" y="335.5" ></text>
+</g>
+<g >
+<title>update_curr (454,216,243 samples, 0.01%)</title><rect x="323.6" y="261" width="0.1" height="15.0" fill="rgb(246,192,15)" rx="2" ry="2" />
+<text  x="326.62" y="271.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (5,965,409,974 samples, 0.12%)</title><rect x="942.4" y="325" width="1.4" height="15.0" fill="rgb(235,169,35)" rx="2" ry="2" />
+<text  x="945.43" y="335.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (583,609,027 samples, 0.01%)</title><rect x="1027.3" y="421" width="0.1" height="15.0" fill="rgb(206,99,36)" rx="2" ry="2" />
+<text  x="1030.29" y="431.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,205,879,709 samples, 0.02%)</title><rect x="53.6" y="133" width="0.2" height="15.0" fill="rgb(239,180,11)" rx="2" ry="2" />
+<text  x="56.55" y="143.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (439,397,672 samples, 0.01%)</title><rect x="1027.2" y="421" width="0.1" height="15.0" fill="rgb(254,35,44)" rx="2" ry="2" />
+<text  x="1030.19" y="431.5" ></text>
+</g>
+<g >
+<title>skb_unlink (2,484,481,477 samples, 0.05%)</title><rect x="243.5" y="165" width="0.6" height="15.0" fill="rgb(221,208,3)" rx="2" ry="2" />
+<text  x="246.49" y="175.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (963,692,831 samples, 0.02%)</title><rect x="281.7" y="453" width="0.2" height="15.0" fill="rgb(236,12,24)" rx="2" ry="2" />
+<text  x="284.72" y="463.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (437,235,909 samples, 0.01%)</title><rect x="1025.2" y="389" width="0.1" height="15.0" fill="rgb(248,69,49)" rx="2" ry="2" />
+<text  x="1028.25" y="399.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,647,860,304 samples, 0.03%)</title><rect x="275.3" y="469" width="0.4" height="15.0" fill="rgb(242,207,12)" rx="2" ry="2" />
+<text  x="278.30" y="479.5" ></text>
+</g>
+<g >
+<title>security_socket_sendmsg (19,796,615,480 samples, 0.38%)</title><rect x="920.6" y="373" width="4.6" height="15.0" fill="rgb(244,43,14)" rx="2" ry="2" />
+<text  x="923.65" y="383.5" ></text>
+</g>
+<g >
+<title>get_futex_key (1,253,168,800 samples, 0.02%)</title><rect x="359.4" y="389" width="0.3" height="15.0" fill="rgb(227,154,32)" rx="2" ry="2" />
+<text  x="362.41" y="399.5" ></text>
+</g>
+<g >
+<title>update_load_avg (17,410,856,556 samples, 0.34%)</title><rect x="1113.4" y="389" width="4.0" height="15.0" fill="rgb(229,29,24)" rx="2" ry="2" />
+<text  x="1116.39" y="399.5" ></text>
+</g>
+<g >
+<title>io_queue_event (6,300,654,413 samples, 0.12%)</title><rect x="25.7" y="437" width="1.4" height="15.0" fill="rgb(249,28,43)" rx="2" ry="2" />
+<text  x="28.70" y="447.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (2,816,929,263 samples, 0.05%)</title><rect x="968.8" y="261" width="0.6" height="15.0" fill="rgb(237,184,24)" rx="2" ry="2" />
+<text  x="971.79" y="271.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,077,890,693 samples, 0.02%)</title><rect x="281.7" y="485" width="0.3" height="15.0" fill="rgb(210,76,36)" rx="2" ry="2" />
+<text  x="284.71" y="495.5" ></text>
+</g>
+<g >
+<title>__sys_recvfrom (117,959,611,292 samples, 2.29%)</title><rect x="174.5" y="229" width="27.0" height="15.0" fill="rgb(231,187,19)" rx="2" ry="2" />
+<text  x="177.52" y="239.5" >_..</text>
+</g>
+<g >
+<title>__x86_return_thunk (483,366,511 samples, 0.01%)</title><rect x="408.8" y="405" width="0.1" height="15.0" fill="rgb(207,84,26)" rx="2" ry="2" />
+<text  x="411.83" y="415.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (2,264,021,869 samples, 0.04%)</title><rect x="853.1" y="245" width="0.6" height="15.0" fill="rgb(245,139,49)" rx="2" ry="2" />
+<text  x="856.14" y="255.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (561,536,597 samples, 0.01%)</title><rect x="1179.1" y="437" width="0.2" height="15.0" fill="rgb(227,2,32)" rx="2" ry="2" />
+<text  x="1182.13" y="447.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (1,163,063,860 samples, 0.02%)</title><rect x="253.7" y="85" width="0.2" height="15.0" fill="rgb(212,49,42)" rx="2" ry="2" />
+<text  x="256.67" y="95.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (81,585,330,265 samples, 1.58%)</title><rect x="37.6" y="293" width="18.6" height="15.0" fill="rgb(253,78,37)" rx="2" ry="2" />
+<text  x="40.56" y="303.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,640,317,891 samples, 0.03%)</title><rect x="96.1" y="101" width="0.4" height="15.0" fill="rgb(245,52,36)" rx="2" ry="2" />
+<text  x="99.09" y="111.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,505,856,133 samples, 0.03%)</title><rect x="276.6" y="485" width="0.3" height="15.0" fill="rgb(248,228,51)" rx="2" ry="2" />
+<text  x="279.60" y="495.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (57,060,348,366 samples, 1.11%)</title><rect x="258.2" y="197" width="13.1" height="15.0" fill="rgb(245,119,44)" rx="2" ry="2" />
+<text  x="261.23" y="207.5" ></text>
+</g>
+<g >
+<title>send_from_wbuf (87,759,269,856 samples, 1.70%)</title><rect x="36.3" y="357" width="20.1" height="15.0" fill="rgb(205,21,22)" rx="2" ry="2" />
+<text  x="39.34" y="367.5" ></text>
+</g>
+<g >
+<title>avc_lookup (1,888,345,764 samples, 0.04%)</title><rect x="924.7" y="325" width="0.5" height="15.0" fill="rgb(220,179,32)" rx="2" ry="2" />
+<text  x="927.75" y="335.5" ></text>
+</g>
+<g >
+<title>timerqueue_del (599,057,102 samples, 0.01%)</title><rect x="1044.3" y="373" width="0.1" height="15.0" fill="rgb(211,113,9)" rx="2" ry="2" />
+<text  x="1047.26" y="383.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,680,468,387 samples, 0.03%)</title><rect x="282.8" y="469" width="0.4" height="15.0" fill="rgb(245,55,6)" rx="2" ry="2" />
+<text  x="285.78" y="479.5" ></text>
+</g>
+<g >
+<title>do_futex (105,446,986,726 samples, 2.04%)</title><rect x="354.1" y="421" width="24.2" height="15.0" fill="rgb(247,62,7)" rx="2" ry="2" />
+<text  x="357.13" y="431.5" >d..</text>
+</g>
+<g >
+<title>process_one_work (1,429,146,730 samples, 0.03%)</title><rect x="280.6" y="501" width="0.4" height="15.0" fill="rgb(235,9,5)" rx="2" ry="2" />
+<text  x="283.62" y="511.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (933,475,472 samples, 0.02%)</title><rect x="791.3" y="277" width="0.2" height="15.0" fill="rgb(212,52,48)" rx="2" ry="2" />
+<text  x="794.33" y="287.5" ></text>
+</g>
+<g >
+<title>io_completed (16,001,963,572 samples, 0.31%)</title><rect x="113.7" y="405" width="3.6" height="15.0" fill="rgb(230,186,25)" rx="2" ry="2" />
+<text  x="116.68" y="415.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,321,153,538 samples, 0.03%)</title><rect x="281.1" y="517" width="0.3" height="15.0" fill="rgb(213,74,54)" rx="2" ry="2" />
+<text  x="284.14" y="527.5" ></text>
+</g>
+<g >
+<title>recv_into_rbuf.lto_priv.0 (74,462,442,145 samples, 1.44%)</title><rect x="254.9" y="325" width="17.0" height="15.0" fill="rgb(222,26,18)" rx="2" ry="2" />
+<text  x="257.88" y="335.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (3,770,289,772 samples, 0.07%)</title><rect x="794.6" y="325" width="0.9" height="15.0" fill="rgb(208,16,8)" rx="2" ry="2" />
+<text  x="797.64" y="335.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (4,317,431,520 samples, 0.08%)</title><rect x="380.2" y="485" width="1.0" height="15.0" fill="rgb(241,10,51)" rx="2" ry="2" />
+<text  x="383.23" y="495.5" ></text>
+</g>
+<g >
+<title>skb_free_head (946,209,524 samples, 0.02%)</title><rect x="871.2" y="309" width="0.2" height="15.0" fill="rgb(230,104,44)" rx="2" ry="2" />
+<text  x="874.17" y="319.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (11,096,652,771 samples, 0.22%)</title><rect x="1134.6" y="437" width="2.5" height="15.0" fill="rgb(243,69,25)" rx="2" ry="2" />
+<text  x="1137.60" y="447.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (1,051,785,361 samples, 0.02%)</title><rect x="1019.8" y="549" width="0.3" height="15.0" fill="rgb(247,206,4)" rx="2" ry="2" />
+<text  x="1022.82" y="559.5" ></text>
+</g>
+<g >
+<title>hrtimer_next_event_without (1,187,432,219 samples, 0.02%)</title><rect x="1026.0" y="421" width="0.3" height="15.0" fill="rgb(212,30,41)" rx="2" ry="2" />
+<text  x="1029.05" y="431.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (5,610,315,718 samples, 0.11%)</title><rect x="156.9" y="293" width="1.2" height="15.0" fill="rgb(231,13,51)" rx="2" ry="2" />
+<text  x="159.85" y="303.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (490,531,574 samples, 0.01%)</title><rect x="96.6" y="69" width="0.1" height="15.0" fill="rgb(227,24,35)" rx="2" ry="2" />
+<text  x="99.56" y="79.5" ></text>
+</g>
+<g >
+<title>__axmap_set (1,183,514,591 samples, 0.02%)</title><rect x="21.3" y="405" width="0.2" height="15.0" fill="rgb(232,139,43)" rx="2" ry="2" />
+<text  x="24.27" y="415.5" ></text>
+</g>
+<g >
+<title>__slab_free (2,076,669,946 samples, 0.04%)</title><rect x="207.8" y="165" width="0.5" height="15.0" fill="rgb(205,173,41)" rx="2" ry="2" />
+<text  x="210.78" y="175.5" ></text>
+</g>
+<g >
+<title>free_unref_page (8,908,414,868 samples, 0.17%)</title><rect x="868.3" y="309" width="2.0" height="15.0" fill="rgb(247,32,25)" rx="2" ry="2" />
+<text  x="871.31" y="319.5" ></text>
+</g>
+<g >
+<title>tick_nohz_get_next_hrtimer (573,909,211 samples, 0.01%)</title><rect x="1074.1" y="469" width="0.1" height="15.0" fill="rgb(245,170,17)" rx="2" ry="2" />
+<text  x="1077.06" y="479.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (641,708,498 samples, 0.01%)</title><rect x="276.6" y="437" width="0.2" height="15.0" fill="rgb(205,13,1)" rx="2" ry="2" />
+<text  x="279.61" y="447.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (83,001,126,071 samples, 1.61%)</title><rect x="37.2" y="309" width="19.0" height="15.0" fill="rgb(235,5,5)" rx="2" ry="2" />
+<text  x="40.23" y="319.5" ></text>
+</g>
+<g >
+<title>skb_unlink (6,636,288,566 samples, 0.13%)</title><rect x="887.6" y="341" width="1.5" height="15.0" fill="rgb(213,221,38)" rx="2" ry="2" />
+<text  x="890.62" y="351.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (983,097,429 samples, 0.02%)</title><rect x="242.0" y="149" width="0.3" height="15.0" fill="rgb(205,121,26)" rx="2" ry="2" />
+<text  x="245.03" y="159.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (731,004,632 samples, 0.01%)</title><rect x="192.6" y="149" width="0.2" height="15.0" fill="rgb(244,189,23)" rx="2" ry="2" />
+<text  x="195.59" y="159.5" ></text>
+</g>
+<g >
+<title>get_io_u (42,025,193,168 samples, 0.82%)</title><rect x="16.1" y="437" width="9.6" height="15.0" fill="rgb(240,48,33)" rx="2" ry="2" />
+<text  x="19.05" y="447.5" ></text>
+</g>
+<g >
+<title>plist_add (3,546,482,932 samples, 0.07%)</title><rect x="300.1" y="357" width="0.8" height="15.0" fill="rgb(219,57,1)" rx="2" ry="2" />
+<text  x="303.08" y="367.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (23,381,449,897 samples, 0.45%)</title><rect x="851.8" y="277" width="5.3" height="15.0" fill="rgb(253,176,0)" rx="2" ry="2" />
+<text  x="854.79" y="287.5" ></text>
+</g>
+<g >
+<title>__schedule (3,426,256,758 samples, 0.07%)</title><rect x="379.1" y="389" width="0.8" height="15.0" fill="rgb(245,143,7)" rx="2" ry="2" />
+<text  x="382.11" y="399.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (438,370,264 samples, 0.01%)</title><rect x="1017.5" y="213" width="0.1" height="15.0" fill="rgb(211,178,50)" rx="2" ry="2" />
+<text  x="1020.50" y="223.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,354,023,151 samples, 0.03%)</title><rect x="282.1" y="501" width="0.3" height="15.0" fill="rgb(210,224,5)" rx="2" ry="2" />
+<text  x="285.10" y="511.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (1,391,858,709 samples, 0.03%)</title><rect x="405.2" y="373" width="0.3" height="15.0" fill="rgb(212,67,45)" rx="2" ry="2" />
+<text  x="408.23" y="383.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (5,535,288,037 samples, 0.11%)</title><rect x="860.9" y="293" width="1.2" height="15.0" fill="rgb(218,48,54)" rx="2" ry="2" />
+<text  x="863.88" y="303.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (1,322,518,319 samples, 0.03%)</title><rect x="1174.6" y="405" width="0.3" height="15.0" fill="rgb(218,87,43)" rx="2" ry="2" />
+<text  x="1177.58" y="415.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (696,391,910 samples, 0.01%)</title><rect x="279.6" y="437" width="0.2" height="15.0" fill="rgb(248,78,7)" rx="2" ry="2" />
+<text  x="282.60" y="447.5" ></text>
+</g>
+<g >
+<title>__schedule (3,606,647,983 samples, 0.07%)</title><rect x="1009.5" y="373" width="0.8" height="15.0" fill="rgb(252,205,2)" rx="2" ry="2" />
+<text  x="1012.48" y="383.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (7,332,571,979 samples, 0.14%)</title><rect x="209.5" y="133" width="1.7" height="15.0" fill="rgb(248,132,6)" rx="2" ry="2" />
+<text  x="212.51" y="143.5" ></text>
+</g>
+<g >
+<title>nbd_internal_run (93,652,119,814 samples, 1.82%)</title><rect x="35.1" y="373" width="21.4" height="15.0" fill="rgb(238,96,10)" rx="2" ry="2" />
+<text  x="38.10" y="383.5" >n..</text>
+</g>
+<g >
+<title>update_rq_clock (28,204,977,463 samples, 0.55%)</title><rect x="1130.8" y="453" width="6.5" height="15.0" fill="rgb(239,181,41)" rx="2" ry="2" />
+<text  x="1133.82" y="463.5" ></text>
+</g>
+<g >
+<title>kfree (528,777,062 samples, 0.01%)</title><rect x="212.5" y="133" width="0.2" height="15.0" fill="rgb(251,71,19)" rx="2" ry="2" />
+<text  x="215.55" y="143.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,362,295,628 samples, 0.03%)</title><rect x="275.7" y="501" width="0.3" height="15.0" fill="rgb(222,56,28)" rx="2" ry="2" />
+<text  x="278.68" y="511.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (2,303,732,381 samples, 0.04%)</title><rect x="51.7" y="149" width="0.5" height="15.0" fill="rgb(224,15,21)" rx="2" ry="2" />
+<text  x="54.66" y="159.5" ></text>
+</g>
+<g >
+<title>kworker/u64:12- (1,508,913,734 samples, 0.03%)</title><rect x="276.6" y="565" width="0.3" height="15.0" fill="rgb(254,59,35)" rx="2" ry="2" />
+<text  x="279.60" y="575.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (658,791,382 samples, 0.01%)</title><rect x="353.3" y="453" width="0.1" height="15.0" fill="rgb(205,126,19)" rx="2" ry="2" />
+<text  x="356.30" y="463.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock@@GLIBC_2.2.5 (660,072,795 samples, 0.01%)</title><rect x="130.3" y="357" width="0.2" height="15.0" fill="rgb(225,147,43)" rx="2" ry="2" />
+<text  x="133.34" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (535,655,899 samples, 0.01%)</title><rect x="280.0" y="437" width="0.1" height="15.0" fill="rgb(235,149,52)" rx="2" ry="2" />
+<text  x="282.99" y="447.5" ></text>
+</g>
+<g >
+<title>schedule_timeout (1,627,943,067 samples, 0.03%)</title><rect x="887.0" y="341" width="0.4" height="15.0" fill="rgb(237,193,47)" rx="2" ry="2" />
+<text  x="889.99" y="351.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (6,979,493,980 samples, 0.14%)</title><rect x="86.6" y="149" width="1.6" height="15.0" fill="rgb(244,172,2)" rx="2" ry="2" />
+<text  x="89.60" y="159.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,508,913,734 samples, 0.03%)</title><rect x="276.6" y="517" width="0.3" height="15.0" fill="rgb(221,183,45)" rx="2" ry="2" />
+<text  x="279.60" y="527.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (2,384,734,996 samples, 0.05%)</title><rect x="801.7" y="293" width="0.6" height="15.0" fill="rgb(216,65,9)" rx="2" ry="2" />
+<text  x="804.75" y="303.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (27,570,530,302 samples, 0.53%)</title><rect x="970.9" y="277" width="6.3" height="15.0" fill="rgb(240,155,22)" rx="2" ry="2" />
+<text  x="973.86" y="287.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (4,291,674,275 samples, 0.08%)</title><rect x="337.8" y="325" width="1.0" height="15.0" fill="rgb(207,160,51)" rx="2" ry="2" />
+<text  x="340.84" y="335.5" ></text>
+</g>
+<g >
+<title>__send (440,475,344,796 samples, 8.54%)</title><rect x="910.6" y="469" width="100.8" height="15.0" fill="rgb(215,15,46)" rx="2" ry="2" />
+<text  x="913.58" y="479.5" >__send</text>
+</g>
+<g >
+<title>reweight_entity (703,074,978 samples, 0.01%)</title><rect x="372.6" y="309" width="0.2" height="15.0" fill="rgb(222,202,9)" rx="2" ry="2" />
+<text  x="375.62" y="319.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (3,438,736,328 samples, 0.07%)</title><rect x="1129.6" y="389" width="0.8" height="15.0" fill="rgb(228,27,37)" rx="2" ry="2" />
+<text  x="1132.59" y="399.5" ></text>
+</g>
+<g >
+<title>avc_lookup (447,454,562 samples, 0.01%)</title><rect x="39.6" y="181" width="0.1" height="15.0" fill="rgb(244,34,5)" rx="2" ry="2" />
+<text  x="42.64" y="191.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (2,282,897,417 samples, 0.04%)</title><rect x="208.3" y="165" width="0.5" height="15.0" fill="rgb(245,68,29)" rx="2" ry="2" />
+<text  x="211.26" y="175.5" ></text>
+</g>
+<g >
+<title>__schedule (63,973,651,877 samples, 1.24%)</title><rect x="1171.5" y="469" width="14.6" height="15.0" fill="rgb(209,192,45)" rx="2" ry="2" />
+<text  x="1174.49" y="479.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (905,017,376 samples, 0.02%)</title><rect x="261.9" y="117" width="0.2" height="15.0" fill="rgb(253,104,35)" rx="2" ry="2" />
+<text  x="264.86" y="127.5" ></text>
+</g>
+<g >
+<title>can_stop_idle_tick (893,383,396 samples, 0.02%)</title><rect x="1151.6" y="453" width="0.2" height="15.0" fill="rgb(227,28,43)" rx="2" ry="2" />
+<text  x="1154.64" y="463.5" ></text>
+</g>
+<g >
+<title>switch_mm_irqs_off (475,544,844 samples, 0.01%)</title><rect x="149.2" y="213" width="0.1" height="15.0" fill="rgb(239,200,4)" rx="2" ry="2" />
+<text  x="152.17" y="223.5" ></text>
+</g>
+<g >
+<title>__task_rq_lock (1,011,681,602 samples, 0.02%)</title><rect x="799.1" y="293" width="0.2" height="15.0" fill="rgb(225,99,11)" rx="2" ry="2" />
+<text  x="802.09" y="303.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (7,956,659,563 samples, 0.15%)</title><rect x="1164.6" y="405" width="1.8" height="15.0" fill="rgb(222,50,42)" rx="2" ry="2" />
+<text  x="1167.60" y="415.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (502,371,306 samples, 0.01%)</title><rect x="20.7" y="389" width="0.1" height="15.0" fill="rgb(207,32,29)" rx="2" ry="2" />
+<text  x="23.71" y="399.5" ></text>
+</g>
+<g >
+<title>inode_needs_update_time.part.0.isra.0 (1,883,034,207 samples, 0.04%)</title><rect x="416.4" y="325" width="0.4" height="15.0" fill="rgb(242,176,10)" rx="2" ry="2" />
+<text  x="419.37" y="335.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (4,970,188,266 samples, 0.10%)</title><rect x="371.5" y="309" width="1.1" height="15.0" fill="rgb(245,117,35)" rx="2" ry="2" />
+<text  x="374.48" y="319.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (768,758,083 samples, 0.01%)</title><rect x="960.1" y="293" width="0.2" height="15.0" fill="rgb(242,214,1)" rx="2" ry="2" />
+<text  x="963.13" y="303.5" ></text>
+</g>
+<g >
+<title>kthread (625,635,842 samples, 0.01%)</title><rect x="282.0" y="533" width="0.1" height="15.0" fill="rgb(243,56,21)" rx="2" ry="2" />
+<text  x="284.96" y="543.5" ></text>
+</g>
+<g >
+<title>fput (443,371,700 samples, 0.01%)</title><rect x="384.5" y="373" width="0.1" height="15.0" fill="rgb(222,207,42)" rx="2" ry="2" />
+<text  x="387.53" y="383.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (465,611,804 samples, 0.01%)</title><rect x="401.7" y="325" width="0.1" height="15.0" fill="rgb(245,70,8)" rx="2" ry="2" />
+<text  x="404.73" y="335.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,456,456,908 samples, 0.03%)</title><rect x="278.6" y="469" width="0.4" height="15.0" fill="rgb(243,94,3)" rx="2" ry="2" />
+<text  x="281.63" y="479.5" ></text>
+</g>
+<g >
+<title>get_next_timer_interrupt (1,162,472,687 samples, 0.02%)</title><rect x="1026.4" y="405" width="0.2" height="15.0" fill="rgb(210,6,26)" rx="2" ry="2" />
+<text  x="1029.38" y="415.5" ></text>
+</g>
+<g >
+<title>kthread (1,590,026,845 samples, 0.03%)</title><rect x="282.4" y="533" width="0.4" height="15.0" fill="rgb(226,179,48)" rx="2" ry="2" />
+<text  x="285.41" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (463,535,715 samples, 0.01%)</title><rect x="11.7" y="517" width="0.1" height="15.0" fill="rgb(219,99,23)" rx="2" ry="2" />
+<text  x="14.71" y="527.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_from_iter (6,122,983,550 samples, 0.12%)</title><rect x="43.7" y="213" width="1.4" height="15.0" fill="rgb(210,153,1)" rx="2" ry="2" />
+<text  x="46.75" y="223.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_recvmsg (538,643,588 samples, 0.01%)</title><rect x="257.1" y="181" width="0.1" height="15.0" fill="rgb(224,28,10)" rx="2" ry="2" />
+<text  x="260.12" y="191.5" ></text>
+</g>
+<g >
+<title>worker_thread (828,917,334 samples, 0.02%)</title><rect x="281.0" y="517" width="0.1" height="15.0" fill="rgb(219,176,17)" rx="2" ry="2" />
+<text  x="283.95" y="527.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (455,839,317 samples, 0.01%)</title><rect x="1184.3" y="437" width="0.1" height="15.0" fill="rgb(242,184,35)" rx="2" ry="2" />
+<text  x="1187.26" y="447.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (440,395,395 samples, 0.01%)</title><rect x="42.9" y="213" width="0.1" height="15.0" fill="rgb(215,99,38)" rx="2" ry="2" />
+<text  x="45.91" y="223.5" ></text>
+</g>
+<g >
+<title>__schedule (177,837,233,184 samples, 3.45%)</title><rect x="301.6" y="357" width="40.7" height="15.0" fill="rgb(241,84,24)" rx="2" ry="2" />
+<text  x="304.59" y="367.5" >__s..</text>
+</g>
+<g >
+<title>fpregs_restore_userregs (7,777,608,730 samples, 0.15%)</title><rect x="348.7" y="405" width="1.8" height="15.0" fill="rgb(225,32,13)" rx="2" ry="2" />
+<text  x="351.73" y="415.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (1,400,513,239 samples, 0.03%)</title><rect x="1162.3" y="405" width="0.3" height="15.0" fill="rgb(245,225,34)" rx="2" ry="2" />
+<text  x="1165.29" y="415.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,529,280,003 samples, 0.03%)</title><rect x="277.3" y="469" width="0.3" height="15.0" fill="rgb(210,221,19)" rx="2" ry="2" />
+<text  x="280.27" y="479.5" ></text>
+</g>
+<g >
+<title>__cond_resched (675,049,945 samples, 0.01%)</title><rect x="1004.4" y="341" width="0.2" height="15.0" fill="rgb(228,177,5)" rx="2" ry="2" />
+<text  x="1007.42" y="351.5" ></text>
+</g>
+<g >
+<title>policy_node (810,420,314 samples, 0.02%)</title><rect x="996.3" y="309" width="0.2" height="15.0" fill="rgb(249,41,18)" rx="2" ry="2" />
+<text  x="999.29" y="319.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,047,317,153 samples, 0.02%)</title><rect x="276.4" y="485" width="0.2" height="15.0" fill="rgb(207,143,13)" rx="2" ry="2" />
+<text  x="279.36" y="495.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (10,574,755,205 samples, 0.21%)</title><rect x="328.9" y="309" width="2.4" height="15.0" fill="rgb(221,139,1)" rx="2" ry="2" />
+<text  x="331.92" y="319.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (2,520,742,083 samples, 0.05%)</title><rect x="146.4" y="165" width="0.6" height="15.0" fill="rgb(213,101,6)" rx="2" ry="2" />
+<text  x="149.42" y="175.5" ></text>
+</g>
+<g >
+<title>kthread (1,364,326,557 samples, 0.03%)</title><rect x="275.7" y="533" width="0.3" height="15.0" fill="rgb(238,47,12)" rx="2" ry="2" />
+<text  x="278.68" y="543.5" ></text>
+</g>
+<g >
+<title>pick_next_task_idle (3,077,090,631 samples, 0.06%)</title><rect x="332.3" y="341" width="0.7" height="15.0" fill="rgb(208,166,40)" rx="2" ry="2" />
+<text  x="335.28" y="351.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_actor (10,842,099,167 samples, 0.21%)</title><rect x="217.1" y="165" width="2.5" height="15.0" fill="rgb(228,179,41)" rx="2" ry="2" />
+<text  x="220.11" y="175.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (27,306,867,809 samples, 0.53%)</title><rect x="857.9" y="309" width="6.3" height="15.0" fill="rgb(230,29,49)" rx="2" ry="2" />
+<text  x="860.92" y="319.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (825,886,187 samples, 0.02%)</title><rect x="281.0" y="485" width="0.1" height="15.0" fill="rgb(240,198,4)" rx="2" ry="2" />
+<text  x="283.95" y="495.5" ></text>
+</g>
+<g >
+<title>hrtimer_get_next_event (13,400,629,685 samples, 0.26%)</title><rect x="1164.0" y="421" width="3.1" height="15.0" fill="rgb(212,198,9)" rx="2" ry="2" />
+<text  x="1167.03" y="431.5" ></text>
+</g>
+<g >
+<title>__x64_sys_recvfrom (65,570,546,162 samples, 1.27%)</title><rect x="256.3" y="245" width="15.0" height="15.0" fill="rgb(241,124,14)" rx="2" ry="2" />
+<text  x="259.28" y="255.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (1,185,463,326 samples, 0.02%)</title><rect x="331.0" y="293" width="0.3" height="15.0" fill="rgb(232,8,46)" rx="2" ry="2" />
+<text  x="334.01" y="303.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (2,271,403,647 samples, 0.04%)</title><rect x="58.0" y="357" width="0.5" height="15.0" fill="rgb(247,161,1)" rx="2" ry="2" />
+<text  x="60.96" y="367.5" ></text>
+</g>
+<g >
+<title>__task_rq_lock (1,880,398,611 samples, 0.04%)</title><rect x="363.9" y="357" width="0.5" height="15.0" fill="rgb(222,135,4)" rx="2" ry="2" />
+<text  x="366.95" y="367.5" ></text>
+</g>
+<g >
+<title>psi_account_irqtime (1,221,172,773 samples, 0.02%)</title><rect x="377.9" y="341" width="0.3" height="15.0" fill="rgb(221,223,0)" rx="2" ry="2" />
+<text  x="380.89" y="351.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,568,130,666 samples, 0.03%)</title><rect x="282.4" y="469" width="0.4" height="15.0" fill="rgb(214,221,31)" rx="2" ry="2" />
+<text  x="285.41" y="479.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (8,782,600,526 samples, 0.17%)</title><rect x="1008.3" y="405" width="2.0" height="15.0" fill="rgb(254,210,9)" rx="2" ry="2" />
+<text  x="1011.31" y="415.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (1,724,664,717 samples, 0.03%)</title><rect x="229.3" y="53" width="0.4" height="15.0" fill="rgb(223,126,18)" rx="2" ry="2" />
+<text  x="232.33" y="63.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (653,519,413 samples, 0.01%)</title><rect x="277.3" y="437" width="0.1" height="15.0" fill="rgb(230,62,52)" rx="2" ry="2" />
+<text  x="280.28" y="447.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (103,250,427,982 samples, 2.00%)</title><rect x="134.5" y="309" width="23.6" height="15.0" fill="rgb(212,210,13)" rx="2" ry="2" />
+<text  x="137.51" y="319.5" >d..</text>
+</g>
+<g >
+<title>fput (614,743,167 samples, 0.01%)</title><rect x="410.5" y="373" width="0.1" height="15.0" fill="rgb(216,38,2)" rx="2" ry="2" />
+<text  x="413.48" y="383.5" ></text>
+</g>
+<g >
+<title>kmalloc_size_roundup (5,740,485,104 samples, 0.11%)</title><rect x="980.5" y="309" width="1.3" height="15.0" fill="rgb(233,112,41)" rx="2" ry="2" />
+<text  x="983.53" y="319.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (813,304,867 samples, 0.02%)</title><rect x="106.6" y="261" width="0.2" height="15.0" fill="rgb(232,177,49)" rx="2" ry="2" />
+<text  x="109.59" y="271.5" ></text>
+</g>
+<g >
+<title>sock_wfree (4,966,647,336 samples, 0.10%)</title><rect x="240.1" y="117" width="1.2" height="15.0" fill="rgb(230,150,48)" rx="2" ry="2" />
+<text  x="243.12" y="127.5" ></text>
+</g>
+<g >
+<title>kthread (1,479,698,886 samples, 0.03%)</title><rect x="278.6" y="533" width="0.4" height="15.0" fill="rgb(244,117,8)" rx="2" ry="2" />
+<text  x="281.63" y="543.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (4,567,221,515 samples, 0.09%)</title><rect x="907.0" y="405" width="1.0" height="15.0" fill="rgb(206,27,1)" rx="2" ry="2" />
+<text  x="909.95" y="415.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (466,746,948 samples, 0.01%)</title><rect x="105.5" y="165" width="0.1" height="15.0" fill="rgb(243,13,40)" rx="2" ry="2" />
+<text  x="108.54" y="175.5" ></text>
+</g>
+<g >
+<title>__schedule (2,939,550,584 samples, 0.06%)</title><rect x="1026.8" y="437" width="0.7" height="15.0" fill="rgb(239,103,27)" rx="2" ry="2" />
+<text  x="1029.84" y="447.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (700,011,946 samples, 0.01%)</title><rect x="1184.2" y="453" width="0.2" height="15.0" fill="rgb(236,73,37)" rx="2" ry="2" />
+<text  x="1187.24" y="463.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (714,568,349 samples, 0.01%)</title><rect x="1057.7" y="405" width="0.2" height="15.0" fill="rgb(208,89,24)" rx="2" ry="2" />
+<text  x="1060.73" y="415.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (9,145,744,775 samples, 0.18%)</title><rect x="941.7" y="341" width="2.1" height="15.0" fill="rgb(231,115,26)" rx="2" ry="2" />
+<text  x="944.70" y="351.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (745,297,041 samples, 0.01%)</title><rect x="862.4" y="261" width="0.1" height="15.0" fill="rgb(226,3,0)" rx="2" ry="2" />
+<text  x="865.36" y="271.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (616,338,965 samples, 0.01%)</title><rect x="283.2" y="437" width="0.1" height="15.0" fill="rgb(243,109,22)" rx="2" ry="2" />
+<text  x="286.18" y="447.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (489,345,370 samples, 0.01%)</title><rect x="1064.9" y="389" width="0.1" height="15.0" fill="rgb(212,108,44)" rx="2" ry="2" />
+<text  x="1067.86" y="399.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (2,958,442,096 samples, 0.06%)</title><rect x="1065.7" y="437" width="0.6" height="15.0" fill="rgb(206,72,3)" rx="2" ry="2" />
+<text  x="1068.67" y="447.5" ></text>
+</g>
+<g >
+<title>irq_work_needs_cpu (4,069,517,422 samples, 0.08%)</title><rect x="1167.1" y="437" width="0.9" height="15.0" fill="rgb(251,93,1)" rx="2" ry="2" />
+<text  x="1170.10" y="447.5" ></text>
+</g>
+<g >
+<title>unix_write_space (460,594,238 samples, 0.01%)</title><rect x="190.7" y="117" width="0.1" height="15.0" fill="rgb(237,16,17)" rx="2" ry="2" />
+<text  x="193.67" y="127.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (1,445,511,714 samples, 0.03%)</title><rect x="1017.3" y="261" width="0.4" height="15.0" fill="rgb(219,139,45)" rx="2" ry="2" />
+<text  x="1020.32" y="271.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (702,150,241 samples, 0.01%)</title><rect x="801.4" y="293" width="0.1" height="15.0" fill="rgb(222,48,16)" rx="2" ry="2" />
+<text  x="804.35" y="303.5" ></text>
+</g>
+<g >
+<title>do_poll.lto_priv.0 (615,763,920,157 samples, 11.94%)</title><rect x="131.4" y="357" width="140.9" height="15.0" fill="rgb(228,166,34)" rx="2" ry="2" />
+<text  x="134.41" y="367.5" >do_poll.lto_priv.0</text>
+</g>
+<g >
+<title>kworker/u64:17- (1,372,022,609 samples, 0.03%)</title><rect x="278.3" y="565" width="0.3" height="15.0" fill="rgb(241,137,25)" rx="2" ry="2" />
+<text  x="281.32" y="575.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (1,815,501,109 samples, 0.04%)</title><rect x="364.0" y="325" width="0.4" height="15.0" fill="rgb(211,187,24)" rx="2" ry="2" />
+<text  x="366.96" y="335.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (380,049,566,159 samples, 7.37%)</title><rect x="821.3" y="453" width="87.0" height="15.0" fill="rgb(238,51,49)" rx="2" ry="2" />
+<text  x="824.30" y="463.5" >entry_SYSC..</text>
+</g>
+<g >
+<title>schedule_idle (3,005,034,316 samples, 0.06%)</title><rect x="1026.8" y="453" width="0.7" height="15.0" fill="rgb(222,19,53)" rx="2" ry="2" />
+<text  x="1029.83" y="463.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (57,992,670,879 samples, 1.12%)</title><rect x="258.0" y="213" width="13.3" height="15.0" fill="rgb(244,74,28)" rx="2" ry="2" />
+<text  x="261.01" y="223.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (2,351,289,422 samples, 0.05%)</title><rect x="146.5" y="149" width="0.5" height="15.0" fill="rgb(213,225,18)" rx="2" ry="2" />
+<text  x="149.45" y="159.5" ></text>
+</g>
+<g >
+<title>update_load_avg (806,660,256 samples, 0.02%)</title><rect x="1056.5" y="325" width="0.1" height="15.0" fill="rgb(222,128,7)" rx="2" ry="2" />
+<text  x="1059.46" y="335.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (11,130,104,448 samples, 0.22%)</title><rect x="993.3" y="293" width="2.6" height="15.0" fill="rgb(244,67,21)" rx="2" ry="2" />
+<text  x="996.32" y="303.5" ></text>
+</g>
+<g >
+<title>restore_fpregs_from_fpstate (613,364,613 samples, 0.01%)</title><rect x="808.4" y="341" width="0.1" height="15.0" fill="rgb(209,85,37)" rx="2" ry="2" />
+<text  x="811.36" y="351.5" ></text>
+</g>
+<g >
+<title>_raw_spin_rq_lock_irqsave (2,108,617,849 samples, 0.04%)</title><rect x="321.6" y="293" width="0.5" height="15.0" fill="rgb(254,178,37)" rx="2" ry="2" />
+<text  x="324.60" y="303.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (3,559,253,497 samples, 0.07%)</title><rect x="24.8" y="389" width="0.8" height="15.0" fill="rgb(231,105,39)" rx="2" ry="2" />
+<text  x="27.78" y="399.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (473,685,415 samples, 0.01%)</title><rect x="979.8" y="245" width="0.1" height="15.0" fill="rgb(243,64,33)" rx="2" ry="2" />
+<text  x="982.83" y="255.5" ></text>
+</g>
+<g >
+<title>__rdgsbase_inactive (1,079,252,719 samples, 0.02%)</title><rect x="293.7" y="469" width="0.3" height="15.0" fill="rgb(239,47,6)" rx="2" ry="2" />
+<text  x="296.71" y="479.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (2,476,992,402 samples, 0.05%)</title><rect x="108.8" y="389" width="0.6" height="15.0" fill="rgb(220,51,8)" rx="2" ry="2" />
+<text  x="111.80" y="399.5" ></text>
+</g>
+<g >
+<title>place_entity (1,439,033,214 samples, 0.03%)</title><rect x="1111.9" y="389" width="0.4" height="15.0" fill="rgb(245,178,24)" rx="2" ry="2" />
+<text  x="1114.95" y="399.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (97,886,689,500 samples, 1.90%)</title><rect x="383.2" y="405" width="22.4" height="15.0" fill="rgb(246,113,31)" rx="2" ry="2" />
+<text  x="386.21" y="415.5" >d..</text>
+</g>
+<g >
+<title>mem_cgroup_handle_over_high (676,825,288 samples, 0.01%)</title><rect x="350.5" y="405" width="0.2" height="15.0" fill="rgb(207,84,48)" rx="2" ry="2" />
+<text  x="353.51" y="415.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (19,040,812,569 samples, 0.37%)</title><rect x="333.0" y="341" width="4.4" height="15.0" fill="rgb(253,167,31)" rx="2" ry="2" />
+<text  x="336.00" y="351.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (13,575,244,300 samples, 0.26%)</title><rect x="153.5" y="213" width="3.1" height="15.0" fill="rgb(221,64,23)" rx="2" ry="2" />
+<text  x="156.51" y="223.5" ></text>
+</g>
+<g >
+<title>__printf_buffer_done (873,984,010 samples, 0.02%)</title><rect x="123.9" y="341" width="0.2" height="15.0" fill="rgb(242,9,13)" rx="2" ry="2" />
+<text  x="126.91" y="351.5" ></text>
+</g>
+<g >
+<title>__memset_avx2_unaligned_erms (13,828,612,091 samples, 0.27%)</title><rect x="30.4" y="405" width="3.1" height="15.0" fill="rgb(215,23,15)" rx="2" ry="2" />
+<text  x="33.36" y="415.5" ></text>
+</g>
+<g >
+<title>worker_thread (625,635,842 samples, 0.01%)</title><rect x="282.0" y="517" width="0.1" height="15.0" fill="rgb(224,114,52)" rx="2" ry="2" />
+<text  x="284.96" y="527.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (829,750,798 samples, 0.02%)</title><rect x="1027.0" y="389" width="0.2" height="15.0" fill="rgb(214,182,28)" rx="2" ry="2" />
+<text  x="1029.98" y="399.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (499,889,849 samples, 0.01%)</title><rect x="281.5" y="437" width="0.1" height="15.0" fill="rgb(242,209,30)" rx="2" ry="2" />
+<text  x="284.46" y="447.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (2,333,550,600 samples, 0.05%)</title><rect x="317.6" y="261" width="0.5" height="15.0" fill="rgb(242,102,48)" rx="2" ry="2" />
+<text  x="320.60" y="271.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (824,521,922 samples, 0.02%)</title><rect x="862.3" y="277" width="0.2" height="15.0" fill="rgb(224,102,20)" rx="2" ry="2" />
+<text  x="865.35" y="287.5" ></text>
+</g>
+<g >
+<title>__libc_recv (71,424,609,649 samples, 1.39%)</title><rect x="203.9" y="277" width="16.3" height="15.0" fill="rgb(228,198,33)" rx="2" ry="2" />
+<text  x="206.86" y="287.5" ></text>
+</g>
+<g >
+<title>__fget_light (721,557,744 samples, 0.01%)</title><rect x="257.8" y="197" width="0.2" height="15.0" fill="rgb(216,197,49)" rx="2" ry="2" />
+<text  x="260.85" y="207.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (2,670,936,640 samples, 0.05%)</title><rect x="1183.6" y="437" width="0.6" height="15.0" fill="rgb(229,107,41)" rx="2" ry="2" />
+<text  x="1186.63" y="447.5" ></text>
+</g>
+<g >
+<title>security_socket_getpeersec_dgram (2,776,063,971 samples, 0.05%)</title><rect x="43.1" y="213" width="0.6" height="15.0" fill="rgb(252,0,32)" rx="2" ry="2" />
+<text  x="46.11" y="223.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,355,013,535 samples, 0.03%)</title><rect x="282.1" y="517" width="0.3" height="15.0" fill="rgb(205,190,29)" rx="2" ry="2" />
+<text  x="285.10" y="527.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (2,067,846,456 samples, 0.04%)</title><rect x="1021.8" y="405" width="0.4" height="15.0" fill="rgb(243,183,18)" rx="2" ry="2" />
+<text  x="1024.76" y="415.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (15,211,412,315 samples, 0.30%)</title><rect x="1042.3" y="421" width="3.5" height="15.0" fill="rgb(236,157,20)" rx="2" ry="2" />
+<text  x="1045.28" y="431.5" ></text>
+</g>
+<g >
+<title>nbd_internal_command_common (98,577,206,614 samples, 1.91%)</title><rect x="34.0" y="389" width="22.6" height="15.0" fill="rgb(219,173,37)" rx="2" ry="2" />
+<text  x="37.02" y="399.5" >n..</text>
+</g>
+<g >
+<title>__unfreeze_partials (893,749,350 samples, 0.02%)</title><rect x="868.1" y="309" width="0.2" height="15.0" fill="rgb(242,22,19)" rx="2" ry="2" />
+<text  x="871.09" y="319.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,508,913,734 samples, 0.03%)</title><rect x="276.6" y="549" width="0.3" height="15.0" fill="rgb(226,5,46)" rx="2" ry="2" />
+<text  x="279.60" y="559.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (1,378,796,531 samples, 0.03%)</title><rect x="803.6" y="293" width="0.3" height="15.0" fill="rgb(229,78,48)" rx="2" ry="2" />
+<text  x="806.55" y="303.5" ></text>
+</g>
+<g >
+<title>nbd_unlocked_aio_pwrite (222,749,245,709 samples, 4.32%)</title><rect x="57.2" y="389" width="51.0" height="15.0" fill="rgb(233,205,12)" rx="2" ry="2" />
+<text  x="60.21" y="399.5" >nbd_u..</text>
+</g>
+<g >
+<title>hrtimer_get_next_event (523,324,370 samples, 0.01%)</title><rect x="1026.5" y="389" width="0.1" height="15.0" fill="rgb(228,169,11)" rx="2" ry="2" />
+<text  x="1029.53" y="399.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,138,155,074 samples, 0.02%)</title><rect x="281.1" y="469" width="0.3" height="15.0" fill="rgb(251,117,54)" rx="2" ry="2" />
+<text  x="284.14" y="479.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (2,120,281,873 samples, 0.04%)</title><rect x="102.7" y="117" width="0.5" height="15.0" fill="rgb(233,29,27)" rx="2" ry="2" />
+<text  x="105.69" y="127.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (1,382,506,940 samples, 0.03%)</title><rect x="44.1" y="181" width="0.3" height="15.0" fill="rgb(254,177,49)" rx="2" ry="2" />
+<text  x="47.09" y="191.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (978,171,090 samples, 0.02%)</title><rect x="156.6" y="293" width="0.3" height="15.0" fill="rgb(225,118,24)" rx="2" ry="2" />
+<text  x="159.63" y="303.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (805,569,659 samples, 0.02%)</title><rect x="799.1" y="261" width="0.2" height="15.0" fill="rgb(231,186,20)" rx="2" ry="2" />
+<text  x="802.13" y="271.5" ></text>
+</g>
+<g >
+<title>record_times (1,172,706,332 samples, 0.02%)</title><rect x="1183.4" y="421" width="0.2" height="15.0" fill="rgb(218,67,2)" rx="2" ry="2" />
+<text  x="1186.36" y="431.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (512,021,513 samples, 0.01%)</title><rect x="1170.9" y="469" width="0.2" height="15.0" fill="rgb(223,146,8)" rx="2" ry="2" />
+<text  x="1173.94" y="479.5" ></text>
+</g>
+<g >
+<title>kmalloc_slab (3,022,559,373 samples, 0.06%)</title><rect x="981.1" y="293" width="0.7" height="15.0" fill="rgb(226,41,3)" rx="2" ry="2" />
+<text  x="984.15" y="303.5" ></text>
+</g>
+<g >
+<title>acpi_processor_ffh_cstate_enter (1,981,365,851 samples, 0.04%)</title><rect x="1020.7" y="389" width="0.5" height="15.0" fill="rgb(217,156,10)" rx="2" ry="2" />
+<text  x="1023.73" y="399.5" ></text>
+</g>
+<g >
+<title>inode_security (1,778,051,126 samples, 0.03%)</title><rect x="807.4" y="325" width="0.4" height="15.0" fill="rgb(234,87,26)" rx="2" ry="2" />
+<text  x="810.37" y="335.5" ></text>
+</g>
+<g >
+<title>ttwu_do_wakeup (512,424,624 samples, 0.01%)</title><rect x="802.9" y="293" width="0.1" height="15.0" fill="rgb(222,203,50)" rx="2" ry="2" />
+<text  x="805.90" y="303.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (2,110,040,074 samples, 0.04%)</title><rect x="957.8" y="277" width="0.5" height="15.0" fill="rgb(215,8,46)" rx="2" ry="2" />
+<text  x="960.80" y="287.5" ></text>
+</g>
+<g >
+<title>fpregs_restore_userregs (807,568,122 samples, 0.02%)</title><rect x="808.3" y="357" width="0.2" height="15.0" fill="rgb(235,180,2)" rx="2" ry="2" />
+<text  x="811.31" y="367.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (827,731,965 samples, 0.02%)</title><rect x="215.4" y="149" width="0.1" height="15.0" fill="rgb(236,139,47)" rx="2" ry="2" />
+<text  x="218.35" y="159.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,364,326,557 samples, 0.03%)</title><rect x="275.7" y="549" width="0.3" height="15.0" fill="rgb(220,76,53)" rx="2" ry="2" />
+<text  x="278.68" y="559.5" ></text>
+</g>
+<g >
+<title>nbd_aio_command_completed (9,525,687,707 samples, 0.18%)</title><rect x="120.7" y="373" width="2.2" height="15.0" fill="rgb(215,114,13)" rx="2" ry="2" />
+<text  x="123.67" y="383.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (30,910,246,284 samples, 0.60%)</title><rect x="245.4" y="117" width="7.0" height="15.0" fill="rgb(254,16,16)" rx="2" ry="2" />
+<text  x="248.37" y="127.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (4,089,055,433 samples, 0.08%)</title><rect x="766.4" y="293" width="0.9" height="15.0" fill="rgb(209,75,25)" rx="2" ry="2" />
+<text  x="769.38" y="303.5" ></text>
+</g>
+<g >
+<title>idle_cpu (1,403,829,207 samples, 0.03%)</title><rect x="327.5" y="261" width="0.3" height="15.0" fill="rgb(205,127,11)" rx="2" ry="2" />
+<text  x="330.51" y="271.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (535,247,504 samples, 0.01%)</title><rect x="934.4" y="341" width="0.1" height="15.0" fill="rgb(231,64,16)" rx="2" ry="2" />
+<text  x="937.39" y="351.5" ></text>
+</g>
+<g >
+<title>check_spread.isra.0 (455,374,793 samples, 0.01%)</title><rect x="1111.8" y="389" width="0.1" height="15.0" fill="rgb(217,203,22)" rx="2" ry="2" />
+<text  x="1114.84" y="399.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (4,931,986,400 samples, 0.10%)</title><rect x="1072.5" y="453" width="1.1" height="15.0" fill="rgb(209,136,43)" rx="2" ry="2" />
+<text  x="1075.51" y="463.5" ></text>
+</g>
+<g >
+<title>kworker/u64:0-k (1,686,237,098 samples, 0.03%)</title><rect x="275.3" y="565" width="0.4" height="15.0" fill="rgb(249,47,35)" rx="2" ry="2" />
+<text  x="278.30" y="575.5" ></text>
+</g>
+<g >
+<title>sched_idle_set_state (1,764,668,997 samples, 0.03%)</title><rect x="1073.7" y="453" width="0.4" height="15.0" fill="rgb(251,130,5)" rx="2" ry="2" />
+<text  x="1076.65" y="463.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,429,080,678 samples, 0.03%)</title><rect x="279.3" y="517" width="0.3" height="15.0" fill="rgb(206,31,10)" rx="2" ry="2" />
+<text  x="282.27" y="527.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (3,027,485,933 samples, 0.06%)</title><rect x="188.0" y="133" width="0.7" height="15.0" fill="rgb(233,118,35)" rx="2" ry="2" />
+<text  x="190.98" y="143.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (1,447,127,206 samples, 0.03%)</title><rect x="365.3" y="357" width="0.3" height="15.0" fill="rgb(209,95,4)" rx="2" ry="2" />
+<text  x="368.27" y="367.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_reschedule_ipi (1,254,479,801 samples, 0.02%)</title><rect x="1065.0" y="453" width="0.3" height="15.0" fill="rgb(212,226,22)" rx="2" ry="2" />
+<text  x="1067.97" y="463.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (1,911,503,534 samples, 0.04%)</title><rect x="853.2" y="229" width="0.5" height="15.0" fill="rgb(254,7,44)" rx="2" ry="2" />
+<text  x="856.22" y="239.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,409,863,989 samples, 0.03%)</title><rect x="276.9" y="549" width="0.4" height="15.0" fill="rgb(254,27,9)" rx="2" ry="2" />
+<text  x="279.95" y="559.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,020,582,574 samples, 0.02%)</title><rect x="10.1" y="405" width="0.2" height="15.0" fill="rgb(207,221,47)" rx="2" ry="2" />
+<text  x="13.06" y="415.5" ></text>
+</g>
+<g >
+<title>post_alloc_hook (767,709,157 samples, 0.01%)</title><rect x="960.6" y="293" width="0.2" height="15.0" fill="rgb(249,95,3)" rx="2" ry="2" />
+<text  x="963.64" y="303.5" ></text>
+</g>
+<g >
+<title>send_call_function_single_ipi (549,447,605 samples, 0.01%)</title><rect x="803.4" y="277" width="0.2" height="15.0" fill="rgb(243,130,29)" rx="2" ry="2" />
+<text  x="806.43" y="287.5" ></text>
+</g>
+<g >
+<title>malloc (1,450,368,822 samples, 0.03%)</title><rect x="127.7" y="325" width="0.3" height="15.0" fill="rgb(249,19,3)" rx="2" ry="2" />
+<text  x="130.70" y="335.5" ></text>
+</g>
+<g >
+<title>__printf_buffer_write (444,369,685 samples, 0.01%)</title><rect x="126.7" y="325" width="0.1" height="15.0" fill="rgb(249,22,11)" rx="2" ry="2" />
+<text  x="129.66" y="335.5" ></text>
+</g>
+<g >
+<title>_raw_spin_rq_lock_irqsave (472,928,479 samples, 0.01%)</title><rect x="1175.4" y="373" width="0.1" height="15.0" fill="rgb(206,173,5)" rx="2" ry="2" />
+<text  x="1178.44" y="383.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (488,963,133 samples, 0.01%)</title><rect x="364.9" y="293" width="0.1" height="15.0" fill="rgb(238,154,11)" rx="2" ry="2" />
+<text  x="367.85" y="303.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (3,574,907,382 samples, 0.07%)</title><rect x="849.2" y="341" width="0.8" height="15.0" fill="rgb(207,163,17)" rx="2" ry="2" />
+<text  x="852.20" y="351.5" ></text>
+</g>
+<g >
+<title>update_process_times (1,538,170,836 samples, 0.03%)</title><rect x="1043.9" y="341" width="0.4" height="15.0" fill="rgb(230,40,0)" rx="2" ry="2" />
+<text  x="1046.91" y="351.5" ></text>
+</g>
+<g >
+<title>mod_memcg_lruvec_state (534,951,006 samples, 0.01%)</title><rect x="993.2" y="261" width="0.1" height="15.0" fill="rgb(231,107,26)" rx="2" ry="2" />
+<text  x="996.19" y="271.5" ></text>
+</g>
+<g >
+<title>update_load_avg (2,817,032,529 samples, 0.05%)</title><rect x="373.0" y="309" width="0.7" height="15.0" fill="rgb(225,175,4)" rx="2" ry="2" />
+<text  x="376.01" y="319.5" ></text>
+</g>
+<g >
+<title>psi_account_irqtime (4,898,609,242 samples, 0.10%)</title><rect x="340.6" y="325" width="1.1" height="15.0" fill="rgb(243,150,25)" rx="2" ry="2" />
+<text  x="343.60" y="335.5" ></text>
+</g>
+<g >
+<title>tick_irq_enter (8,087,983,345 samples, 0.16%)</title><rect x="1057.9" y="405" width="1.8" height="15.0" fill="rgb(247,103,18)" rx="2" ry="2" />
+<text  x="1060.89" y="415.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (5,151,366,295 samples, 0.10%)</title><rect x="831.0" y="357" width="1.2" height="15.0" fill="rgb(221,200,14)" rx="2" ry="2" />
+<text  x="833.98" y="367.5" ></text>
+</g>
+<g >
+<title>tick_nohz_stop_tick (771,185,744 samples, 0.01%)</title><rect x="1188.8" y="469" width="0.2" height="15.0" fill="rgb(223,80,21)" rx="2" ry="2" />
+<text  x="1191.84" y="479.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (932,398,123 samples, 0.02%)</title><rect x="451.2" y="309" width="0.2" height="15.0" fill="rgb(247,226,0)" rx="2" ry="2" />
+<text  x="454.21" y="319.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (3,046,511,614 samples, 0.06%)</title><rect x="1157.3" y="437" width="0.7" height="15.0" fill="rgb(227,88,47)" rx="2" ry="2" />
+<text  x="1160.33" y="447.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,095,213,022 samples, 0.02%)</title><rect x="10.1" y="485" width="0.2" height="15.0" fill="rgb(221,121,25)" rx="2" ry="2" />
+<text  x="13.06" y="495.5" ></text>
+</g>
+<g >
+<title>[unknown] (722,908,067 samples, 0.01%)</title><rect x="10.1" y="341" width="0.1" height="15.0" fill="rgb(215,165,9)" rx="2" ry="2" />
+<text  x="13.06" y="351.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (68,000,150,438 samples, 1.32%)</title><rect x="256.2" y="261" width="15.5" height="15.0" fill="rgb(233,14,27)" rx="2" ry="2" />
+<text  x="259.18" y="271.5" ></text>
+</g>
+<g >
+<title>rest_init (31,308,706,217 samples, 0.61%)</title><rect x="1020.5" y="501" width="7.2" height="15.0" fill="rgb(206,186,22)" rx="2" ry="2" />
+<text  x="1023.52" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_read (2,068,403,852 samples, 0.04%)</title><rect x="822.8" y="421" width="0.5" height="15.0" fill="rgb(248,68,3)" rx="2" ry="2" />
+<text  x="825.79" y="431.5" ></text>
+</g>
+<g >
+<title>init_icd (730,779,563 samples, 0.01%)</title><rect x="111.2" y="421" width="0.1" height="15.0" fill="rgb(226,112,1)" rx="2" ry="2" />
+<text  x="114.17" y="431.5" ></text>
+</g>
+<g >
+<title>__do_softirq (1,712,920,602 samples, 0.03%)</title><rect x="1041.9" y="405" width="0.4" height="15.0" fill="rgb(239,162,5)" rx="2" ry="2" />
+<text  x="1044.87" y="415.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (467,445,417 samples, 0.01%)</title><rect x="1009.2" y="389" width="0.1" height="15.0" fill="rgb(224,229,41)" rx="2" ry="2" />
+<text  x="1012.22" y="399.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (58,888,461,381 samples, 1.14%)</title><rect x="1051.5" y="453" width="13.5" height="15.0" fill="rgb(248,57,12)" rx="2" ry="2" />
+<text  x="1054.50" y="463.5" ></text>
+</g>
+<g >
+<title>send_call_function_single_ipi (2,325,204,858 samples, 0.05%)</title><rect x="377.2" y="341" width="0.6" height="15.0" fill="rgb(229,223,51)" rx="2" ry="2" />
+<text  x="380.24" y="351.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,551,227,045 samples, 0.03%)</title><rect x="279.6" y="501" width="0.3" height="15.0" fill="rgb(243,119,2)" rx="2" ry="2" />
+<text  x="282.59" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (685,481,350 samples, 0.01%)</title><rect x="277.9" y="437" width="0.2" height="15.0" fill="rgb(214,19,47)" rx="2" ry="2" />
+<text  x="280.94" y="447.5" ></text>
+</g>
+<g >
+<title>nbd_internal_run (216,302,970,300 samples, 4.19%)</title><rect x="58.6" y="357" width="49.5" height="15.0" fill="rgb(208,29,22)" rx="2" ry="2" />
+<text  x="61.59" y="367.5" >nbd_..</text>
+</g>
+<g >
+<title>try_to_wake_up (23,870,998,264 samples, 0.46%)</title><rect x="798.4" y="309" width="5.5" height="15.0" fill="rgb(243,131,48)" rx="2" ry="2" />
+<text  x="801.41" y="319.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (545,802,819 samples, 0.01%)</title><rect x="1178.4" y="405" width="0.1" height="15.0" fill="rgb(249,41,47)" rx="2" ry="2" />
+<text  x="1181.39" y="415.5" ></text>
+</g>
+<g >
+<title>__cond_resched (585,170,814 samples, 0.01%)</title><rect x="968.5" y="277" width="0.2" height="15.0" fill="rgb(251,107,24)" rx="2" ry="2" />
+<text  x="971.53" y="287.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,688,906,160 samples, 0.03%)</title><rect x="277.9" y="549" width="0.4" height="15.0" fill="rgb(226,220,50)" rx="2" ry="2" />
+<text  x="280.93" y="559.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,147,292,570 samples, 0.02%)</title><rect x="281.4" y="549" width="0.3" height="15.0" fill="rgb(233,56,4)" rx="2" ry="2" />
+<text  x="284.44" y="559.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (988,376,955 samples, 0.02%)</title><rect x="120.2" y="373" width="0.2" height="15.0" fill="rgb(254,120,44)" rx="2" ry="2" />
+<text  x="123.20" y="383.5" ></text>
+</g>
+<g >
+<title>start_secondary (709,018,331,953 samples, 13.75%)</title><rect x="1027.7" y="533" width="162.2" height="15.0" fill="rgb(243,81,22)" rx="2" ry="2" />
+<text  x="1030.69" y="543.5" >start_secondary</text>
+</g>
+<g >
+<title>__rcu_read_lock (745,982,130 samples, 0.01%)</title><rect x="1000.2" y="341" width="0.2" height="15.0" fill="rgb(231,205,22)" rx="2" ry="2" />
+<text  x="1003.23" y="351.5" ></text>
+</g>
+<g >
+<title>acpi_idle_do_entry (42,582,533,963 samples, 0.83%)</title><rect x="1031.2" y="437" width="9.7" height="15.0" fill="rgb(221,123,24)" rx="2" ry="2" />
+<text  x="1034.16" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,339,677,957 samples, 0.03%)</title><rect x="280.3" y="453" width="0.3" height="15.0" fill="rgb(234,122,20)" rx="2" ry="2" />
+<text  x="283.28" y="463.5" ></text>
+</g>
+<g >
+<title>plugin_pwrite (498,668,621 samples, 0.01%)</title><rect x="814.7" y="485" width="0.1" height="15.0" fill="rgb(244,149,9)" rx="2" ry="2" />
+<text  x="817.70" y="495.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,685,230,958 samples, 0.03%)</title><rect x="275.3" y="517" width="0.4" height="15.0" fill="rgb(206,195,53)" rx="2" ry="2" />
+<text  x="278.30" y="527.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (1,580,743,349 samples, 0.03%)</title><rect x="802.4" y="261" width="0.4" height="15.0" fill="rgb(213,221,5)" rx="2" ry="2" />
+<text  x="805.44" y="271.5" ></text>
+</g>
+<g >
+<title>__x64_sys_recvfrom (119,745,835,630 samples, 2.32%)</title><rect x="174.1" y="245" width="27.4" height="15.0" fill="rgb(211,149,5)" rx="2" ry="2" />
+<text  x="177.11" y="255.5" >_..</text>
+</g>
+<g >
+<title>schedule (3,571,344,403 samples, 0.07%)</title><rect x="379.1" y="405" width="0.8" height="15.0" fill="rgb(239,186,39)" rx="2" ry="2" />
+<text  x="382.09" y="415.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_enter (3,918,118,869 samples, 0.08%)</title><rect x="1186.6" y="485" width="0.9" height="15.0" fill="rgb(218,211,33)" rx="2" ry="2" />
+<text  x="1189.56" y="495.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,399,909,996 samples, 0.03%)</title><rect x="279.6" y="453" width="0.3" height="15.0" fill="rgb(216,140,52)" rx="2" ry="2" />
+<text  x="282.60" y="463.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (867,057,331 samples, 0.02%)</title><rect x="49.9" y="117" width="0.2" height="15.0" fill="rgb(224,18,51)" rx="2" ry="2" />
+<text  x="52.95" y="127.5" ></text>
+</g>
+<g >
+<title>sock_wfree (20,485,208,907 samples, 0.40%)</title><rect x="872.5" y="293" width="4.7" height="15.0" fill="rgb(244,114,35)" rx="2" ry="2" />
+<text  x="875.47" y="303.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (1,846,075,122 samples, 0.04%)</title><rect x="71.4" y="181" width="0.5" height="15.0" fill="rgb(234,113,27)" rx="2" ry="2" />
+<text  x="74.45" y="191.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (511,809,093 samples, 0.01%)</title><rect x="957.3" y="293" width="0.1" height="15.0" fill="rgb(236,79,54)" rx="2" ry="2" />
+<text  x="960.26" y="303.5" ></text>
+</g>
+<g >
+<title>cpuacct_charge (632,570,613 samples, 0.01%)</title><rect x="144.7" y="165" width="0.1" height="15.0" fill="rgb(221,83,34)" rx="2" ry="2" />
+<text  x="147.66" y="175.5" ></text>
+</g>
+<g >
+<title>psi_group_change (2,633,453,867 samples, 0.05%)</title><rect x="373.8" y="309" width="0.6" height="15.0" fill="rgb(237,126,26)" rx="2" ry="2" />
+<text  x="376.76" y="319.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (3,486,522,571 samples, 0.07%)</title><rect x="978.2" y="261" width="0.8" height="15.0" fill="rgb(220,167,20)" rx="2" ry="2" />
+<text  x="981.22" y="271.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,016,823,965 samples, 0.02%)</title><rect x="186.6" y="117" width="0.3" height="15.0" fill="rgb(226,205,48)" rx="2" ry="2" />
+<text  x="189.63" y="127.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (4,360,176,599 samples, 0.08%)</title><rect x="140.3" y="245" width="1.0" height="15.0" fill="rgb(231,196,25)" rx="2" ry="2" />
+<text  x="143.30" y="255.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (682,647,314 samples, 0.01%)</title><rect x="1067.0" y="421" width="0.2" height="15.0" fill="rgb(217,147,16)" rx="2" ry="2" />
+<text  x="1070.04" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (422,079,753,385 samples, 8.19%)</title><rect x="914.0" y="437" width="96.6" height="15.0" fill="rgb(225,92,30)" rx="2" ry="2" />
+<text  x="916.98" y="447.5" >do_syscall_64</text>
+</g>
+<g >
+<title>__x86_return_thunk (611,162,280 samples, 0.01%)</title><rect x="296.1" y="453" width="0.1" height="15.0" fill="rgb(221,152,48)" rx="2" ry="2" />
+<text  x="299.08" y="463.5" ></text>
+</g>
+<g >
+<title>sugov_update_single_freq (477,495,030 samples, 0.01%)</title><rect x="315.8" y="309" width="0.1" height="15.0" fill="rgb(208,198,18)" rx="2" ry="2" />
+<text  x="318.84" y="319.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (620,469,108 samples, 0.01%)</title><rect x="183.9" y="165" width="0.2" height="15.0" fill="rgb(205,8,21)" rx="2" ry="2" />
+<text  x="186.91" y="175.5" ></text>
+</g>
+<g >
+<title>__fio_gettime.lto_priv.0 (4,328,106,947 samples, 0.08%)</title><rect x="112.3" y="389" width="1.0" height="15.0" fill="rgb(247,18,24)" rx="2" ry="2" />
+<text  x="115.31" y="399.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (402,266,295,922 samples, 7.80%)</title><rect x="915.5" y="405" width="92.1" height="15.0" fill="rgb(210,184,51)" rx="2" ry="2" />
+<text  x="918.54" y="415.5" >__sys_sendto</text>
+</g>
+<g >
+<title>wake_q_add_safe (2,226,593,821 samples, 0.04%)</title><rect x="359.7" y="389" width="0.5" height="15.0" fill="rgb(232,82,41)" rx="2" ry="2" />
+<text  x="362.69" y="399.5" ></text>
+</g>
+<g >
+<title>__x64_sys_recvfrom (65,988,438,987 samples, 1.28%)</title><rect x="204.5" y="229" width="15.1" height="15.0" fill="rgb(214,159,50)" rx="2" ry="2" />
+<text  x="207.49" y="239.5" ></text>
+</g>
+<g >
+<title>skb_put (1,082,725,719 samples, 0.02%)</title><rect x="45.1" y="213" width="0.3" height="15.0" fill="rgb(221,216,0)" rx="2" ry="2" />
+<text  x="48.15" y="223.5" ></text>
+</g>
+<g >
+<title>[fio-nbd.so] (4,731,670,047 samples, 0.09%)</title><rect x="165.5" y="309" width="1.1" height="15.0" fill="rgb(247,59,10)" rx="2" ry="2" />
+<text  x="168.47" y="319.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (1,002,486,023 samples, 0.02%)</title><rect x="224.0" y="149" width="0.2" height="15.0" fill="rgb(216,70,37)" rx="2" ry="2" />
+<text  x="226.99" y="159.5" ></text>
+</g>
+<g >
+<title>nbd_aio_command_completed (440,321,045 samples, 0.01%)</title><rect x="274.1" y="389" width="0.1" height="15.0" fill="rgb(217,113,6)" rx="2" ry="2" />
+<text  x="277.07" y="399.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (1,165,516,016 samples, 0.02%)</title><rect x="226.3" y="149" width="0.3" height="15.0" fill="rgb(209,132,2)" rx="2" ry="2" />
+<text  x="229.32" y="159.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_getpeersec_dgram (1,036,039,238 samples, 0.02%)</title><rect x="72.6" y="181" width="0.2" height="15.0" fill="rgb(227,12,20)" rx="2" ry="2" />
+<text  x="75.58" y="191.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (8,228,231,093 samples, 0.16%)</title><rect x="212.7" y="149" width="1.9" height="15.0" fill="rgb(234,132,17)" rx="2" ry="2" />
+<text  x="215.70" y="159.5" ></text>
+</g>
+<g >
+<title>percpu_ref_put_many.constprop.0 (468,354,526 samples, 0.01%)</title><rect x="233.8" y="85" width="0.2" height="15.0" fill="rgb(217,43,1)" rx="2" ry="2" />
+<text  x="236.85" y="95.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (467,195,923 samples, 0.01%)</title><rect x="222.1" y="245" width="0.1" height="15.0" fill="rgb(208,123,33)" rx="2" ry="2" />
+<text  x="225.07" y="255.5" ></text>
+</g>
+<g >
+<title>selinux_socket_recvmsg (9,432,383,612 samples, 0.18%)</title><rect x="837.0" y="341" width="2.2" height="15.0" fill="rgb(239,54,54)" rx="2" ry="2" />
+<text  x="840.02" y="351.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (5,771,489,343 samples, 0.11%)</title><rect x="270.0" y="149" width="1.3" height="15.0" fill="rgb(238,162,19)" rx="2" ry="2" />
+<text  x="272.96" y="159.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_actor (75,775,584,609 samples, 1.47%)</title><rect x="889.1" y="341" width="17.4" height="15.0" fill="rgb(239,174,3)" rx="2" ry="2" />
+<text  x="892.14" y="351.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit.isra.0 (8,010,314,943 samples, 0.16%)</title><rect x="1065.4" y="453" width="1.8" height="15.0" fill="rgb(242,22,4)" rx="2" ry="2" />
+<text  x="1068.36" y="463.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (725,387,840 samples, 0.01%)</title><rect x="1180.8" y="405" width="0.2" height="15.0" fill="rgb(248,30,23)" rx="2" ry="2" />
+<text  x="1183.81" y="415.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (1,750,170,460,931 samples, 33.94%)</title><rect x="408.9" y="405" width="400.6" height="15.0" fill="rgb(248,109,21)" rx="2" ry="2" />
+<text  x="411.94" y="415.5" >do_syscall_64</text>
+</g>
+<g >
+<title>__alloc_skb (64,867,597,856 samples, 1.26%)</title><rect x="88.5" y="165" width="14.9" height="15.0" fill="rgb(205,137,24)" rx="2" ry="2" />
+<text  x="91.54" y="175.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (1,176,142,594 samples, 0.02%)</title><rect x="1026.9" y="421" width="0.3" height="15.0" fill="rgb(235,28,2)" rx="2" ry="2" />
+<text  x="1029.92" y="431.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (986,885,009 samples, 0.02%)</title><rect x="979.4" y="261" width="0.2" height="15.0" fill="rgb(206,40,29)" rx="2" ry="2" />
+<text  x="982.41" y="271.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,372,022,609 samples, 0.03%)</title><rect x="278.3" y="517" width="0.3" height="15.0" fill="rgb(235,96,7)" rx="2" ry="2" />
+<text  x="281.32" y="527.5" ></text>
+</g>
+<g >
+<title>current_time (1,244,619,420 samples, 0.02%)</title><rect x="403.0" y="309" width="0.3" height="15.0" fill="rgb(250,143,20)" rx="2" ry="2" />
+<text  x="405.99" y="319.5" ></text>
+</g>
+<g >
+<title>file_has_perm (7,711,433,733 samples, 0.15%)</title><rect x="830.7" y="373" width="1.8" height="15.0" fill="rgb(232,107,23)" rx="2" ry="2" />
+<text  x="833.71" y="383.5" ></text>
+</g>
+<g >
+<title>update_cfs_group (478,493,289 samples, 0.01%)</title><rect x="1176.5" y="309" width="0.1" height="15.0" fill="rgb(241,7,41)" rx="2" ry="2" />
+<text  x="1179.54" y="319.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (8,314,276,334 samples, 0.16%)</title><rect x="984.8" y="293" width="1.9" height="15.0" fill="rgb(209,92,16)" rx="2" ry="2" />
+<text  x="987.84" y="303.5" ></text>
+</g>
+<g >
+<title>io_bytes_exceeded.lto_priv.0 (812,407,916 samples, 0.02%)</title><rect x="12.0" y="453" width="0.2" height="15.0" fill="rgb(243,158,28)" rx="2" ry="2" />
+<text  x="15.04" y="463.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (451,358,939 samples, 0.01%)</title><rect x="882.9" y="309" width="0.1" height="15.0" fill="rgb(236,76,54)" rx="2" ry="2" />
+<text  x="885.92" y="319.5" ></text>
+</g>
+<g >
+<title>socket_recv (72,302,241,698 samples, 1.40%)</title><rect x="203.7" y="293" width="16.5" height="15.0" fill="rgb(224,226,46)" rx="2" ry="2" />
+<text  x="206.66" y="303.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,031,978,691 samples, 0.02%)</title><rect x="10.1" y="437" width="0.2" height="15.0" fill="rgb(250,39,53)" rx="2" ry="2" />
+<text  x="13.06" y="447.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (478,262,515 samples, 0.01%)</title><rect x="339.2" y="325" width="0.1" height="15.0" fill="rgb(217,171,16)" rx="2" ry="2" />
+<text  x="342.24" y="335.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (1,606,331,712 samples, 0.03%)</title><rect x="186.5" y="133" width="0.4" height="15.0" fill="rgb(219,133,22)" rx="2" ry="2" />
+<text  x="189.50" y="143.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (13,185,215,010 samples, 0.26%)</title><rect x="1004.6" y="389" width="3.0" height="15.0" fill="rgb(227,4,31)" rx="2" ry="2" />
+<text  x="1007.58" y="399.5" ></text>
+</g>
+<g >
+<title>process_one_work (620,858,728 samples, 0.01%)</title><rect x="282.0" y="501" width="0.1" height="15.0" fill="rgb(211,37,43)" rx="2" ry="2" />
+<text  x="284.96" y="511.5" ></text>
+</g>
+<g >
+<title>memcg_check_events (749,505,694 samples, 0.01%)</title><rect x="229.7" y="85" width="0.2" height="15.0" fill="rgb(211,216,47)" rx="2" ry="2" />
+<text  x="232.73" y="95.5" ></text>
+</g>
+<g >
+<title>put_prev_entity (532,201,074 samples, 0.01%)</title><rect x="331.5" y="325" width="0.2" height="15.0" fill="rgb(225,124,19)" rx="2" ry="2" />
+<text  x="334.54" y="335.5" ></text>
+</g>
+<g >
+<title>cpu_startup_entry (31,308,706,217 samples, 0.61%)</title><rect x="1020.5" y="485" width="7.2" height="15.0" fill="rgb(239,202,47)" rx="2" ry="2" />
+<text  x="1023.52" y="495.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,038,695,846 samples, 0.02%)</title><rect x="10.1" y="469" width="0.2" height="15.0" fill="rgb(222,104,5)" rx="2" ry="2" />
+<text  x="13.06" y="479.5" ></text>
+</g>
+<g >
+<title>selinux_socket_sendmsg (14,771,273,136 samples, 0.29%)</title><rect x="921.8" y="357" width="3.4" height="15.0" fill="rgb(241,161,8)" rx="2" ry="2" />
+<text  x="924.80" y="367.5" ></text>
+</g>
+<g >
+<title>flush_smp_call_function_queue (11,712,776,446 samples, 0.23%)</title><rect x="1022.7" y="453" width="2.7" height="15.0" fill="rgb(223,43,52)" rx="2" ry="2" />
+<text  x="1025.67" y="463.5" ></text>
+</g>
+<g >
+<title>enqueue_task (553,631,072 samples, 0.01%)</title><rect x="146.1" y="149" width="0.1" height="15.0" fill="rgb(243,57,18)" rx="2" ry="2" />
+<text  x="149.06" y="159.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (22,228,111,314 samples, 0.43%)</title><rect x="998.8" y="357" width="5.1" height="15.0" fill="rgb(212,208,19)" rx="2" ry="2" />
+<text  x="1001.77" y="367.5" ></text>
+</g>
+<g >
+<title>read (460,709,692 samples, 0.01%)</title><rect x="811.2" y="469" width="0.1" height="15.0" fill="rgb(206,160,6)" rx="2" ry="2" />
+<text  x="814.16" y="479.5" ></text>
+</g>
+<g >
+<title>plist_del (1,139,507,942 samples, 0.02%)</title><rect x="359.1" y="357" width="0.3" height="15.0" fill="rgb(207,7,30)" rx="2" ry="2" />
+<text  x="362.13" y="367.5" ></text>
+</g>
+<g >
+<title>kmalloc_size_roundup (1,573,844,992 samples, 0.03%)</title><rect x="50.5" y="165" width="0.3" height="15.0" fill="rgb(232,151,9)" rx="2" ry="2" />
+<text  x="53.46" y="175.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (3,518,165,024 samples, 0.07%)</title><rect x="142.0" y="229" width="0.8" height="15.0" fill="rgb(252,77,53)" rx="2" ry="2" />
+<text  x="144.99" y="239.5" ></text>
+</g>
+<g >
+<title>psi_task_change (742,681,577 samples, 0.01%)</title><rect x="1056.6" y="357" width="0.2" height="15.0" fill="rgb(229,194,42)" rx="2" ry="2" />
+<text  x="1059.65" y="367.5" ></text>
+</g>
+<g >
+<title>sock_alloc_send_pskb (193,465,708,048 samples, 3.75%)</title><rect x="954.5" y="357" width="44.3" height="15.0" fill="rgb(209,6,36)" rx="2" ry="2" />
+<text  x="957.50" y="367.5" >sock..</text>
+</g>
+<g >
+<title>blkcg_maybe_throttle_current (3,415,821,903 samples, 0.07%)</title><rect x="347.9" y="405" width="0.8" height="15.0" fill="rgb(249,106,33)" rx="2" ry="2" />
+<text  x="350.95" y="415.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (610,073,306 samples, 0.01%)</title><rect x="379.3" y="341" width="0.2" height="15.0" fill="rgb(216,124,8)" rx="2" ry="2" />
+<text  x="382.31" y="351.5" ></text>
+</g>
+<g >
+<title>__switch_to_asm (2,279,240,857 samples, 0.04%)</title><rect x="1018.7" y="549" width="0.5" height="15.0" fill="rgb(210,197,9)" rx="2" ry="2" />
+<text  x="1021.72" y="559.5" ></text>
+</g>
+<g >
+<title>kthread (1,508,913,734 samples, 0.03%)</title><rect x="276.6" y="533" width="0.3" height="15.0" fill="rgb(208,10,29)" rx="2" ry="2" />
+<text  x="279.60" y="543.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,563,968,875 samples, 0.03%)</title><rect x="283.5" y="517" width="0.4" height="15.0" fill="rgb(208,187,31)" rx="2" ry="2" />
+<text  x="286.50" y="527.5" ></text>
+</g>
+<g >
+<title>error_entry (823,360,660 samples, 0.02%)</title><rect x="1020.2" y="549" width="0.1" height="15.0" fill="rgb(254,171,10)" rx="2" ry="2" />
+<text  x="1023.16" y="559.5" ></text>
+</g>
+<g >
+<title>__hrtimer_next_event_base (14,704,715,585 samples, 0.29%)</title><rect x="1152.8" y="437" width="3.4" height="15.0" fill="rgb(213,203,47)" rx="2" ry="2" />
+<text  x="1155.82" y="447.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (724,454,041 samples, 0.01%)</title><rect x="282.1" y="485" width="0.2" height="15.0" fill="rgb(236,128,10)" rx="2" ry="2" />
+<text  x="285.10" y="495.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_actor (26,761,292,435 samples, 0.52%)</title><rect x="195.4" y="181" width="6.1" height="15.0" fill="rgb(212,166,45)" rx="2" ry="2" />
+<text  x="198.39" y="191.5" ></text>
+</g>
+<g >
+<title>acpi_idle_enter (46,676,433,963 samples, 0.91%)</title><rect x="1030.3" y="453" width="10.6" height="15.0" fill="rgb(231,214,48)" rx="2" ry="2" />
+<text  x="1033.25" y="463.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (10,600,405,461 samples, 0.21%)</title><rect x="217.2" y="149" width="2.4" height="15.0" fill="rgb(251,224,11)" rx="2" ry="2" />
+<text  x="220.16" y="159.5" ></text>
+</g>
+<g >
+<title>preempt_count_sub (448,357,777 samples, 0.01%)</title><rect x="426.4" y="309" width="0.1" height="15.0" fill="rgb(205,14,10)" rx="2" ry="2" />
+<text  x="429.42" y="319.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (4,185,930,216 samples, 0.08%)</title><rect x="994.4" y="277" width="1.0" height="15.0" fill="rgb(243,121,20)" rx="2" ry="2" />
+<text  x="997.41" y="287.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,006,596,373 samples, 0.39%)</title><rect x="84.0" y="165" width="4.5" height="15.0" fill="rgb(226,176,26)" rx="2" ry="2" />
+<text  x="86.96" y="175.5" ></text>
+</g>
+<g >
+<title>__libc_pread (1,135,606,763 samples, 0.02%)</title><rect x="283.9" y="501" width="0.3" height="15.0" fill="rgb(227,53,16)" rx="2" ry="2" />
+<text  x="286.90" y="511.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (623,740,903 samples, 0.01%)</title><rect x="282.3" y="453" width="0.1" height="15.0" fill="rgb(227,204,40)" rx="2" ry="2" />
+<text  x="285.27" y="463.5" ></text>
+</g>
+<g >
+<title>sock_wfree (6,673,906,644 samples, 0.13%)</title><rect x="189.2" y="133" width="1.6" height="15.0" fill="rgb(235,158,51)" rx="2" ry="2" />
+<text  x="192.25" y="143.5" ></text>
+</g>
+<g >
+<title>plugin_pread (1,189,414,685 samples, 0.02%)</title><rect x="283.9" y="533" width="0.3" height="15.0" fill="rgb(227,194,10)" rx="2" ry="2" />
+<text  x="286.90" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (7,849,674,922 samples, 0.15%)</title><rect x="41.1" y="213" width="1.8" height="15.0" fill="rgb(251,159,1)" rx="2" ry="2" />
+<text  x="44.11" y="223.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (859,395,208 samples, 0.02%)</title><rect x="271.0" y="101" width="0.2" height="15.0" fill="rgb(208,25,47)" rx="2" ry="2" />
+<text  x="274.00" y="111.5" ></text>
+</g>
+<g >
+<title>simple_copy_to_iter (2,750,208,278 samples, 0.05%)</title><rect x="270.7" y="133" width="0.6" height="15.0" fill="rgb(249,122,51)" rx="2" ry="2" />
+<text  x="273.65" y="143.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (1,649,115,929 samples, 0.03%)</title><rect x="1009.7" y="357" width="0.4" height="15.0" fill="rgb(233,145,27)" rx="2" ry="2" />
+<text  x="1012.70" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (944,805,516 samples, 0.02%)</title><rect x="277.0" y="453" width="0.2" height="15.0" fill="rgb(214,93,7)" rx="2" ry="2" />
+<text  x="279.95" y="463.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (105,910,784,160 samples, 2.05%)</title><rect x="133.9" y="325" width="24.2" height="15.0" fill="rgb(252,133,43)" rx="2" ry="2" />
+<text  x="136.90" y="335.5" >e..</text>
+</g>
+<g >
+<title>dequeue_entity (1,683,989,724 samples, 0.03%)</title><rect x="323.6" y="277" width="0.3" height="15.0" fill="rgb(239,71,20)" rx="2" ry="2" />
+<text  x="326.56" y="287.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (2,948,510,532 samples, 0.06%)</title><rect x="1050.0" y="421" width="0.7" height="15.0" fill="rgb(245,99,21)" rx="2" ry="2" />
+<text  x="1053.00" y="431.5" ></text>
+</g>
+<g >
+<title>is_vmalloc_addr (473,119,291 samples, 0.01%)</title><rect x="941.6" y="325" width="0.1" height="15.0" fill="rgb(230,82,36)" rx="2" ry="2" />
+<text  x="944.59" y="335.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (2,317,099,465 samples, 0.04%)</title><rect x="49.2" y="117" width="0.5" height="15.0" fill="rgb(251,0,34)" rx="2" ry="2" />
+<text  x="52.18" y="127.5" ></text>
+</g>
+<g >
+<title>socket_send (849,791,484 samples, 0.02%)</title><rect x="107.9" y="341" width="0.2" height="15.0" fill="rgb(244,166,44)" rx="2" ry="2" />
+<text  x="110.89" y="351.5" ></text>
+</g>
+<g >
+<title>__put_user_8 (1,271,091,932 samples, 0.02%)</title><rect x="347.6" y="389" width="0.3" height="15.0" fill="rgb(217,177,19)" rx="2" ry="2" />
+<text  x="350.61" y="399.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (2,223,919,122 samples, 0.04%)</title><rect x="793.2" y="293" width="0.6" height="15.0" fill="rgb(207,155,10)" rx="2" ry="2" />
+<text  x="796.25" y="303.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (711,771,977 samples, 0.01%)</title><rect x="379.3" y="357" width="0.2" height="15.0" fill="rgb(251,37,44)" rx="2" ry="2" />
+<text  x="382.29" y="367.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (1,971,530,118 samples, 0.04%)</title><rect x="66.5" y="181" width="0.5" height="15.0" fill="rgb(242,168,20)" rx="2" ry="2" />
+<text  x="69.53" y="191.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,395,933,433 samples, 0.03%)</title><rect x="280.0" y="549" width="0.3" height="15.0" fill="rgb(224,202,41)" rx="2" ry="2" />
+<text  x="282.95" y="559.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (919,177,677 samples, 0.02%)</title><rect x="379.2" y="373" width="0.3" height="15.0" fill="rgb(213,164,27)" rx="2" ry="2" />
+<text  x="382.25" y="383.5" ></text>
+</g>
+<g >
+<title>psi_task_change (3,361,173,851 samples, 0.07%)</title><rect x="373.7" y="325" width="0.7" height="15.0" fill="rgb(232,115,52)" rx="2" ry="2" />
+<text  x="376.66" y="335.5" ></text>
+</g>
+<g >
+<title>update_load_avg (10,965,902,208 samples, 0.21%)</title><rect x="312.1" y="309" width="2.5" height="15.0" fill="rgb(254,153,14)" rx="2" ry="2" />
+<text  x="315.12" y="319.5" ></text>
+</g>
+<g >
+<title>generic_write_end (1,041,628,383 samples, 0.02%)</title><rect x="1017.7" y="261" width="0.2" height="15.0" fill="rgb(250,148,42)" rx="2" ry="2" />
+<text  x="1020.70" y="271.5" ></text>
+</g>
+<g >
+<title>activate_task (558,930,314 samples, 0.01%)</title><rect x="146.1" y="165" width="0.1" height="15.0" fill="rgb(207,122,29)" rx="2" ry="2" />
+<text  x="149.06" y="175.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit_state (1,537,664,286 samples, 0.03%)</title><rect x="1066.3" y="437" width="0.4" height="15.0" fill="rgb(239,202,22)" rx="2" ry="2" />
+<text  x="1069.35" y="447.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (1,891,689,399 samples, 0.04%)</title><rect x="1021.2" y="405" width="0.4" height="15.0" fill="rgb(240,226,25)" rx="2" ry="2" />
+<text  x="1024.21" y="415.5" ></text>
+</g>
+<g >
+<title>skb_unlink (3,468,306,883 samples, 0.07%)</title><rect x="194.6" y="181" width="0.8" height="15.0" fill="rgb(254,205,17)" rx="2" ry="2" />
+<text  x="197.60" y="191.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (576,314,827 samples, 0.01%)</title><rect x="1055.5" y="421" width="0.1" height="15.0" fill="rgb(230,108,12)" rx="2" ry="2" />
+<text  x="1058.50" y="431.5" ></text>
+</g>
+<g >
+<title>update_load_avg (2,924,863,388 samples, 0.06%)</title><rect x="1180.5" y="421" width="0.6" height="15.0" fill="rgb(225,107,3)" rx="2" ry="2" />
+<text  x="1183.47" y="431.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (13,613,766,293 samples, 0.26%)</title><rect x="1174.9" y="405" width="3.1" height="15.0" fill="rgb(246,163,46)" rx="2" ry="2" />
+<text  x="1177.88" y="415.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (23,666,684,229 samples, 0.46%)</title><rect x="345.4" y="437" width="5.4" height="15.0" fill="rgb(236,207,29)" rx="2" ry="2" />
+<text  x="348.37" y="447.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (644,894,405 samples, 0.01%)</title><rect x="801.5" y="293" width="0.2" height="15.0" fill="rgb(231,44,47)" rx="2" ry="2" />
+<text  x="804.51" y="303.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (555,513,630 samples, 0.01%)</title><rect x="208.7" y="149" width="0.1" height="15.0" fill="rgb(240,20,54)" rx="2" ry="2" />
+<text  x="211.65" y="159.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (28,743,386,402 samples, 0.56%)</title><rect x="986.7" y="293" width="6.6" height="15.0" fill="rgb(222,107,0)" rx="2" ry="2" />
+<text  x="989.74" y="303.5" ></text>
+</g>
+<g >
+<title>psi_task_change (858,837,397 samples, 0.02%)</title><rect x="323.3" y="277" width="0.2" height="15.0" fill="rgb(248,145,22)" rx="2" ry="2" />
+<text  x="326.29" y="287.5" ></text>
+</g>
+<g >
+<title>__GI___libc_write (3,682,698,486 samples, 0.07%)</title><rect x="1017.1" y="373" width="0.9" height="15.0" fill="rgb(215,95,16)" rx="2" ry="2" />
+<text  x="1020.11" y="383.5" ></text>
+</g>
+<g >
+<title>selinux_socket_recvmsg (2,612,923,720 samples, 0.05%)</title><rect x="205.5" y="165" width="0.6" height="15.0" fill="rgb(232,97,25)" rx="2" ry="2" />
+<text  x="208.53" y="175.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (3,284,383,967 samples, 0.06%)</title><rect x="808.7" y="373" width="0.8" height="15.0" fill="rgb(223,206,2)" rx="2" ry="2" />
+<text  x="811.70" y="383.5" ></text>
+</g>
+<g >
+<title>backend_pread (106,352,750,130 samples, 2.06%)</title><rect x="381.4" y="485" width="24.4" height="15.0" fill="rgb(233,221,21)" rx="2" ry="2" />
+<text  x="384.44" y="495.5" >b..</text>
+</g>
+<g >
+<title>pthread_mutex_lock@@GLIBC_2.2.5 (2,645,353,458 samples, 0.05%)</title><rect x="810.6" y="469" width="0.6" height="15.0" fill="rgb(252,187,19)" rx="2" ry="2" />
+<text  x="813.56" y="479.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (5,189,931,430 samples, 0.10%)</title><rect x="1023.8" y="421" width="1.2" height="15.0" fill="rgb(214,18,27)" rx="2" ry="2" />
+<text  x="1026.85" y="431.5" ></text>
+</g>
+<g >
+<title>futex_unqueue (2,828,282,421 samples, 0.05%)</title><rect x="298.9" y="389" width="0.7" height="15.0" fill="rgb(213,83,35)" rx="2" ry="2" />
+<text  x="301.95" y="399.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (685,742,935 samples, 0.01%)</title><rect x="1181.0" y="405" width="0.1" height="15.0" fill="rgb(222,12,30)" rx="2" ry="2" />
+<text  x="1183.98" y="415.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (894,885,151 samples, 0.02%)</title><rect x="341.5" y="309" width="0.2" height="15.0" fill="rgb(210,144,27)" rx="2" ry="2" />
+<text  x="344.52" y="319.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (52,961,815,243 samples, 1.03%)</title><rect x="1105.3" y="421" width="12.1" height="15.0" fill="rgb(215,27,37)" rx="2" ry="2" />
+<text  x="1108.26" y="431.5" ></text>
+</g>
+<g >
+<title>consume_skb (27,971,435,429 samples, 0.54%)</title><rect x="184.4" y="181" width="6.4" height="15.0" fill="rgb(244,215,18)" rx="2" ry="2" />
+<text  x="187.37" y="191.5" ></text>
+</g>
+<g >
+<title>get_next_rand_block.constprop.0 (11,039,684,519 samples, 0.21%)</title><rect x="21.7" y="421" width="2.5" height="15.0" fill="rgb(231,57,18)" rx="2" ry="2" />
+<text  x="24.68" y="431.5" ></text>
+</g>
+<g >
+<title>enqueue_task (2,314,055,603 samples, 0.04%)</title><rect x="317.6" y="245" width="0.5" height="15.0" fill="rgb(217,153,54)" rx="2" ry="2" />
+<text  x="320.60" y="255.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit.isra.0 (503,572,496 samples, 0.01%)</title><rect x="1022.2" y="421" width="0.2" height="15.0" fill="rgb(245,150,54)" rx="2" ry="2" />
+<text  x="1025.24" y="431.5" ></text>
+</g>
+<g >
+<title>nbd_internal_set_error_context (706,507,461 samples, 0.01%)</title><rect x="272.4" y="357" width="0.2" height="15.0" fill="rgb(254,10,46)" rx="2" ry="2" />
+<text  x="275.40" y="367.5" ></text>
+</g>
+<g >
+<title>nr_iowait_cpu (1,822,746,369 samples, 0.04%)</title><rect x="1049.2" y="389" width="0.4" height="15.0" fill="rgb(240,168,33)" rx="2" ry="2" />
+<text  x="1052.18" y="399.5" ></text>
+</g>
+<g >
+<title>set_next_buddy (716,113,764 samples, 0.01%)</title><rect x="314.9" y="325" width="0.2" height="15.0" fill="rgb(215,74,52)" rx="2" ry="2" />
+<text  x="317.94" y="335.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (95,475,471,630 samples, 1.85%)</title><rect x="134.8" y="293" width="21.8" height="15.0" fill="rgb(236,110,6)" rx="2" ry="2" />
+<text  x="137.77" y="303.5" >_..</text>
+</g>
+<g >
+<title>_copy_from_iter (29,456,070,339 samples, 0.57%)</title><rect x="75.1" y="165" width="6.7" height="15.0" fill="rgb(234,132,42)" rx="2" ry="2" />
+<text  x="78.09" y="175.5" ></text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_REPLY_SIMPLE_REPLY_START.constprop.0 (442,594,632 samples, 0.01%)</title><rect x="171.6" y="325" width="0.1" height="15.0" fill="rgb(225,183,31)" rx="2" ry="2" />
+<text  x="174.59" y="335.5" ></text>
+</g>
+<g >
+<title>fpregs_restore_userregs (964,195,858 samples, 0.02%)</title><rect x="157.8" y="261" width="0.2" height="15.0" fill="rgb(212,179,54)" rx="2" ry="2" />
+<text  x="160.76" y="271.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (1,588,585,522 samples, 0.03%)</title><rect x="935.3" y="357" width="0.3" height="15.0" fill="rgb(217,212,17)" rx="2" ry="2" />
+<text  x="938.27" y="367.5" ></text>
+</g>
+<g >
+<title>kworker/u64:4-e (625,635,842 samples, 0.01%)</title><rect x="282.0" y="565" width="0.1" height="15.0" fill="rgb(236,17,40)" rx="2" ry="2" />
+<text  x="284.96" y="575.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (632,396,775 samples, 0.01%)</title><rect x="957.4" y="293" width="0.1" height="15.0" fill="rgb(252,138,9)" rx="2" ry="2" />
+<text  x="960.38" y="303.5" ></text>
+</g>
+<g >
+<title>selinux_socket_sendmsg (5,376,918,561 samples, 0.10%)</title><rect x="65.8" y="197" width="1.2" height="15.0" fill="rgb(218,77,27)" rx="2" ry="2" />
+<text  x="68.75" y="207.5" ></text>
+</g>
+<g >
+<title>update_cfs_group (1,001,459,833 samples, 0.02%)</title><rect x="372.8" y="309" width="0.2" height="15.0" fill="rgb(229,52,47)" rx="2" ry="2" />
+<text  x="375.78" y="319.5" ></text>
+</g>
+<g >
+<title>update_cfs_group (2,859,148,163 samples, 0.06%)</title><rect x="308.6" y="309" width="0.7" height="15.0" fill="rgb(208,209,50)" rx="2" ry="2" />
+<text  x="311.62" y="319.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,563,968,875 samples, 0.03%)</title><rect x="283.5" y="549" width="0.4" height="15.0" fill="rgb(243,109,37)" rx="2" ry="2" />
+<text  x="286.50" y="559.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (880,171,521 samples, 0.02%)</title><rect x="852.6" y="245" width="0.2" height="15.0" fill="rgb(218,60,39)" rx="2" ry="2" />
+<text  x="855.60" y="255.5" ></text>
+</g>
+<g >
+<title>page_counter_uncharge (14,358,300,239 samples, 0.28%)</title><rect x="853.9" y="261" width="3.2" height="15.0" fill="rgb(223,208,7)" rx="2" ry="2" />
+<text  x="856.86" y="271.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (665,288,283 samples, 0.01%)</title><rect x="87.5" y="133" width="0.1" height="15.0" fill="rgb(247,189,7)" rx="2" ry="2" />
+<text  x="90.49" y="143.5" ></text>
+</g>
+<g >
+<title>thread_main (1,146,407,607,632 samples, 22.23%)</title><rect x="12.5" y="453" width="262.3" height="15.0" fill="rgb(242,150,34)" rx="2" ry="2" />
+<text  x="15.47" y="463.5" >thread_main</text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (6,825,815,639 samples, 0.13%)</title><rect x="378.4" y="437" width="1.6" height="15.0" fill="rgb(230,108,17)" rx="2" ry="2" />
+<text  x="381.44" y="447.5" ></text>
+</g>
+<g >
+<title>__libc_pwrite (462,830,478 samples, 0.01%)</title><rect x="406.3" y="453" width="0.1" height="15.0" fill="rgb(253,7,35)" rx="2" ry="2" />
+<text  x="409.28" y="463.5" ></text>
+</g>
+<g >
+<title>td_io_getevents.part.0 (683,604,293,775 samples, 13.26%)</title><rect x="118.3" y="405" width="156.4" height="15.0" fill="rgb(221,221,2)" rx="2" ry="2" />
+<text  x="121.27" y="415.5" >td_io_getevents.part.0</text>
+</g>
+<g >
+<title>check_preempt_curr (1,209,929,734 samples, 0.02%)</title><rect x="1130.5" y="437" width="0.3" height="15.0" fill="rgb(234,177,0)" rx="2" ry="2" />
+<text  x="1133.54" y="447.5" ></text>
+</g>
+<g >
+<title>__strchrnul_avx2 (3,548,657,354 samples, 0.07%)</title><rect x="126.8" y="325" width="0.8" height="15.0" fill="rgb(219,135,33)" rx="2" ry="2" />
+<text  x="129.76" y="335.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (405,543,114,784 samples, 7.86%)</title><rect x="914.8" y="421" width="92.8" height="15.0" fill="rgb(208,92,6)" rx="2" ry="2" />
+<text  x="917.81" y="431.5" >__x64_sys_s..</text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (1,134,992,198 samples, 0.02%)</title><rect x="271.4" y="229" width="0.3" height="15.0" fill="rgb(234,139,21)" rx="2" ry="2" />
+<text  x="274.42" y="239.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (5,286,354,135 samples, 0.10%)</title><rect x="924.0" y="341" width="1.2" height="15.0" fill="rgb(216,206,36)" rx="2" ry="2" />
+<text  x="926.97" y="351.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (4,628,050,651 samples, 0.09%)</title><rect x="881.7" y="325" width="1.1" height="15.0" fill="rgb(207,64,16)" rx="2" ry="2" />
+<text  x="884.75" y="335.5" ></text>
+</g>
+<g >
+<title>rwsem_wake.isra.0 (40,873,300,644 samples, 0.79%)</title><rect x="794.5" y="341" width="9.4" height="15.0" fill="rgb(213,115,16)" rx="2" ry="2" />
+<text  x="797.52" y="351.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (4,253,602,399 samples, 0.08%)</title><rect x="905.2" y="261" width="1.0" height="15.0" fill="rgb(254,82,9)" rx="2" ry="2" />
+<text  x="908.23" y="271.5" ></text>
+</g>
+<g >
+<title>nbd_aio_peek_command_completed (31,698,072,327 samples, 0.61%)</title><rect x="122.9" y="373" width="7.2" height="15.0" fill="rgb(220,131,1)" rx="2" ry="2" />
+<text  x="125.85" y="383.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (662,396,520 samples, 0.01%)</title><rect x="1042.1" y="373" width="0.2" height="15.0" fill="rgb(206,172,50)" rx="2" ry="2" />
+<text  x="1045.11" y="383.5" ></text>
+</g>
+<g >
+<title>ext4_file_read_iter (1,786,870,978 samples, 0.03%)</title><rect x="385.5" y="357" width="0.4" height="15.0" fill="rgb(219,101,19)" rx="2" ry="2" />
+<text  x="388.51" y="367.5" ></text>
+</g>
+<g >
+<title>set_task_cpu (556,265,080 samples, 0.01%)</title><rect x="802.3" y="293" width="0.1" height="15.0" fill="rgb(240,37,19)" rx="2" ry="2" />
+<text  x="805.30" y="303.5" ></text>
+</g>
+<g >
+<title>psi_group_change (41,772,878,706 samples, 0.81%)</title><rect x="1119.9" y="405" width="9.6" height="15.0" fill="rgb(251,189,29)" rx="2" ry="2" />
+<text  x="1122.93" y="415.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (2,540,778,923 samples, 0.05%)</title><rect x="105.1" y="197" width="0.6" height="15.0" fill="rgb(220,200,29)" rx="2" ry="2" />
+<text  x="108.08" y="207.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (24,626,341,052 samples, 0.48%)</title><rect x="1173.0" y="453" width="5.7" height="15.0" fill="rgb(222,167,21)" rx="2" ry="2" />
+<text  x="1176.03" y="463.5" ></text>
+</g>
+<g >
+<title>add_clat_sample (4,307,570,870 samples, 0.08%)</title><rect x="115.5" y="373" width="1.0" height="15.0" fill="rgb(231,48,2)" rx="2" ry="2" />
+<text  x="118.51" y="383.5" ></text>
+</g>
+<g >
+<title>file_pwrite (1,762,435,634,923 samples, 34.18%)</title><rect x="406.4" y="453" width="403.3" height="15.0" fill="rgb(211,109,26)" rx="2" ry="2" />
+<text  x="409.39" y="463.5" >file_pwrite</text>
+</g>
+<g >
+<title>kworker/u64:14- (1,550,455,938 samples, 0.03%)</title><rect x="277.3" y="565" width="0.3" height="15.0" fill="rgb(213,80,43)" rx="2" ry="2" />
+<text  x="280.27" y="575.5" ></text>
+</g>
+<g >
+<title>policy_node (546,676,009 samples, 0.01%)</title><rect x="103.7" y="149" width="0.1" height="15.0" fill="rgb(217,36,35)" rx="2" ry="2" />
+<text  x="106.72" y="159.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,549,439,567 samples, 0.03%)</title><rect x="277.3" y="501" width="0.3" height="15.0" fill="rgb(237,155,3)" rx="2" ry="2" />
+<text  x="280.27" y="511.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (14,902,716,925 samples, 0.29%)</title><rect x="1000.4" y="341" width="3.4" height="15.0" fill="rgb(226,18,3)" rx="2" ry="2" />
+<text  x="1003.40" y="351.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (2,546,825,488 samples, 0.05%)</title><rect x="92.4" y="101" width="0.5" height="15.0" fill="rgb(214,178,40)" rx="2" ry="2" />
+<text  x="95.36" y="111.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (710,062,045 samples, 0.01%)</title><rect x="1128.8" y="389" width="0.1" height="15.0" fill="rgb(250,24,25)" rx="2" ry="2" />
+<text  x="1131.76" y="399.5" ></text>
+</g>
+<g >
+<title>kworker/u64:23- (1,434,080,129 samples, 0.03%)</title><rect x="280.6" y="565" width="0.4" height="15.0" fill="rgb(228,45,43)" rx="2" ry="2" />
+<text  x="283.62" y="575.5" ></text>
+</g>
+<g >
+<title>__memmove_avx_unaligned_erms (477,278,554 samples, 0.01%)</title><rect x="123.8" y="341" width="0.1" height="15.0" fill="rgb(250,185,37)" rx="2" ry="2" />
+<text  x="126.77" y="351.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (44,449,701,016 samples, 0.86%)</title><rect x="305.8" y="341" width="10.1" height="15.0" fill="rgb(248,9,9)" rx="2" ry="2" />
+<text  x="308.77" y="351.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (17,533,350,985 samples, 0.34%)</title><rect x="1174.5" y="421" width="4.0" height="15.0" fill="rgb(227,98,34)" rx="2" ry="2" />
+<text  x="1177.51" y="431.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (2,594,467,067 samples, 0.05%)</title><rect x="958.5" y="293" width="0.5" height="15.0" fill="rgb(230,162,46)" rx="2" ry="2" />
+<text  x="961.45" y="303.5" ></text>
+</g>
+<g >
+<title>kmalloc_size_roundup (2,450,504,586 samples, 0.05%)</title><rect x="97.2" y="149" width="0.5" height="15.0" fill="rgb(206,19,47)" rx="2" ry="2" />
+<text  x="100.17" y="159.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (462,445,843 samples, 0.01%)</title><rect x="995.5" y="245" width="0.1" height="15.0" fill="rgb(231,172,17)" rx="2" ry="2" />
+<text  x="998.49" y="255.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (4,025,528,566 samples, 0.08%)</title><rect x="99.3" y="133" width="0.9" height="15.0" fill="rgb(250,78,53)" rx="2" ry="2" />
+<text  x="102.25" y="143.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,479,698,886 samples, 0.03%)</title><rect x="278.6" y="549" width="0.4" height="15.0" fill="rgb(238,139,38)" rx="2" ry="2" />
+<text  x="281.63" y="559.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (2,523,351,855 samples, 0.05%)</title><rect x="846.6" y="325" width="0.6" height="15.0" fill="rgb(235,155,29)" rx="2" ry="2" />
+<text  x="849.57" y="335.5" ></text>
+</g>
+<g >
+<title>restore_fpregs_from_fpstate (649,712,733 samples, 0.01%)</title><rect x="157.8" y="245" width="0.2" height="15.0" fill="rgb(205,9,33)" rx="2" ry="2" />
+<text  x="160.84" y="255.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (187,360,128,644 samples, 3.63%)</title><rect x="299.6" y="389" width="42.9" height="15.0" fill="rgb(242,202,30)" rx="2" ry="2" />
+<text  x="302.60" y="399.5" >fute..</text>
+</g>
+<g >
+<title>_copy_from_iter (31,367,848,364 samples, 0.61%)</title><rect x="944.0" y="325" width="7.2" height="15.0" fill="rgb(228,95,37)" rx="2" ry="2" />
+<text  x="946.98" y="335.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (23,079,401,089 samples, 0.45%)</title><rect x="345.4" y="421" width="5.3" height="15.0" fill="rgb(246,14,41)" rx="2" ry="2" />
+<text  x="348.43" y="431.5" ></text>
+</g>
+<g >
+<title>pthread_rwlock_rdlock@GLIBC_2.2.5 (13,679,489,166 samples, 0.27%)</title><rect x="811.4" y="469" width="3.1" height="15.0" fill="rgb(238,215,24)" rx="2" ry="2" />
+<text  x="814.39" y="479.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (1,871,514,481 samples, 0.04%)</title><rect x="45.4" y="197" width="0.5" height="15.0" fill="rgb(233,33,20)" rx="2" ry="2" />
+<text  x="48.42" y="207.5" ></text>
+</g>
+<g >
+<title>sock_alloc_send_pskb (96,316,573,289 samples, 1.87%)</title><rect x="83.0" y="197" width="22.1" height="15.0" fill="rgb(236,97,51)" rx="2" ry="2" />
+<text  x="86.03" y="207.5" >s..</text>
+</g>
+<g >
+<title>__GI___pthread_enable_asynccancel (489,855,937 samples, 0.01%)</title><rect x="172.7" y="293" width="0.1" height="15.0" fill="rgb(232,93,23)" rx="2" ry="2" />
+<text  x="175.70" y="303.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (346,943,689,578 samples, 6.73%)</title><rect x="925.2" y="373" width="79.4" height="15.0" fill="rgb(222,129,14)" rx="2" ry="2" />
+<text  x="928.18" y="383.5" >unix_stre..</text>
+</g>
+<g >
+<title>__sys_recvfrom (65,306,041,626 samples, 1.27%)</title><rect x="204.6" y="213" width="15.0" height="15.0" fill="rgb(242,14,18)" rx="2" ry="2" />
+<text  x="207.64" y="223.5" ></text>
+</g>
+<g >
+<title>security_socket_getpeersec_dgram (5,195,587,963 samples, 0.10%)</title><rect x="72.2" y="197" width="1.2" height="15.0" fill="rgb(232,4,41)" rx="2" ry="2" />
+<text  x="75.20" y="207.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (4,612,261,861 samples, 0.09%)</title><rect x="94.6" y="101" width="1.0" height="15.0" fill="rgb(239,33,33)" rx="2" ry="2" />
+<text  x="97.55" y="111.5" ></text>
+</g>
+<g >
+<title>kthread (1,061,149,882 samples, 0.02%)</title><rect x="276.4" y="533" width="0.2" height="15.0" fill="rgb(253,73,10)" rx="2" ry="2" />
+<text  x="279.36" y="543.5" ></text>
+</g>
+<g >
+<title>get_futex_key (973,786,189 samples, 0.02%)</title><rect x="345.0" y="373" width="0.2" height="15.0" fill="rgb(251,45,48)" rx="2" ry="2" />
+<text  x="347.95" y="383.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (1,309,077,077 samples, 0.03%)</title><rect x="109.5" y="421" width="0.3" height="15.0" fill="rgb(242,157,44)" rx="2" ry="2" />
+<text  x="112.47" y="431.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (1,570,988,562 samples, 0.03%)</title><rect x="1166.4" y="405" width="0.4" height="15.0" fill="rgb(241,212,5)" rx="2" ry="2" />
+<text  x="1169.42" y="415.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_updated (441,831,646 samples, 0.01%)</title><rect x="310.8" y="277" width="0.1" height="15.0" fill="rgb(252,69,24)" rx="2" ry="2" />
+<text  x="313.79" y="287.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,584,913,519 samples, 0.03%)</title><rect x="282.4" y="485" width="0.4" height="15.0" fill="rgb(211,120,54)" rx="2" ry="2" />
+<text  x="285.41" y="495.5" ></text>
+</g>
+<g >
+<title>__x86_indirect_thunk_rax (840,530,321 samples, 0.02%)</title><rect x="1019.5" y="549" width="0.2" height="15.0" fill="rgb(222,172,31)" rx="2" ry="2" />
+<text  x="1022.48" y="559.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (588,661,951 samples, 0.01%)</title><rect x="1170.6" y="453" width="0.2" height="15.0" fill="rgb(222,36,39)" rx="2" ry="2" />
+<text  x="1173.62" y="463.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,100,411,017 samples, 0.02%)</title><rect x="281.7" y="517" width="0.3" height="15.0" fill="rgb(248,36,38)" rx="2" ry="2" />
+<text  x="284.71" y="527.5" ></text>
+</g>
+<g >
+<title>__fget_light (1,435,860,776 samples, 0.03%)</title><rect x="55.4" y="229" width="0.3" height="15.0" fill="rgb(218,217,6)" rx="2" ry="2" />
+<text  x="58.39" y="239.5" ></text>
+</g>
+<g >
+<title>__libc_pread (101,728,792,681 samples, 1.97%)</title><rect x="382.5" y="437" width="23.3" height="15.0" fill="rgb(239,44,45)" rx="2" ry="2" />
+<text  x="385.50" y="447.5" >_..</text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,196,978,913 samples, 0.02%)</title><rect x="278.3" y="453" width="0.3" height="15.0" fill="rgb(237,194,40)" rx="2" ry="2" />
+<text  x="281.32" y="463.5" ></text>
+</g>
+<g >
+<title>rcu_nocb_flush_deferred_wakeup (764,952,859 samples, 0.01%)</title><rect x="1171.1" y="485" width="0.1" height="15.0" fill="rgb(224,68,7)" rx="2" ry="2" />
+<text  x="1174.06" y="495.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (1,302,214,419 samples, 0.03%)</title><rect x="48.0" y="117" width="0.3" height="15.0" fill="rgb(207,84,15)" rx="2" ry="2" />
+<text  x="50.97" y="127.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (2,344,756,910 samples, 0.05%)</title><rect x="85.4" y="133" width="0.5" height="15.0" fill="rgb(231,167,48)" rx="2" ry="2" />
+<text  x="88.36" y="143.5" ></text>
+</g>
+<g >
+<title>connection_worker (3,197,548,238,109 samples, 62.01%)</title><rect x="285.2" y="517" width="731.8" height="15.0" fill="rgb(224,220,37)" rx="2" ry="2" />
+<text  x="288.24" y="527.5" >connection_worker</text>
+</g>
+<g >
+<title>enqueue_entity (1,393,447,363 samples, 0.03%)</title><rect x="1002.5" y="229" width="0.3" height="15.0" fill="rgb(236,87,45)" rx="2" ry="2" />
+<text  x="1005.51" y="239.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (463,535,715 samples, 0.01%)</title><rect x="11.7" y="501" width="0.1" height="15.0" fill="rgb(229,183,4)" rx="2" ry="2" />
+<text  x="14.71" y="511.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (742,983,790 samples, 0.01%)</title><rect x="766.4" y="277" width="0.2" height="15.0" fill="rgb(218,37,14)" rx="2" ry="2" />
+<text  x="769.38" y="287.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,298,500,988 samples, 0.03%)</title><rect x="279.0" y="485" width="0.3" height="15.0" fill="rgb(230,128,41)" rx="2" ry="2" />
+<text  x="281.97" y="495.5" ></text>
+</g>
+<g >
+<title>_find_next_bit (1,465,370,288 samples, 0.03%)</title><rect x="367.9" y="341" width="0.3" height="15.0" fill="rgb(236,109,5)" rx="2" ry="2" />
+<text  x="370.85" y="351.5" ></text>
+</g>
+<g >
+<title>__radix_tree_lookup (1,405,954,193 samples, 0.03%)</title><rect x="418.4" y="309" width="0.3" height="15.0" fill="rgb(247,124,39)" rx="2" ry="2" />
+<text  x="421.42" y="319.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (559,256,141 samples, 0.01%)</title><rect x="960.3" y="293" width="0.1" height="15.0" fill="rgb(215,198,35)" rx="2" ry="2" />
+<text  x="963.31" y="303.5" ></text>
+</g>
+<g >
+<title>uncharge_folio (3,121,714,742 samples, 0.06%)</title><rect x="857.1" y="277" width="0.8" height="15.0" fill="rgb(225,116,34)" rx="2" ry="2" />
+<text  x="860.15" y="287.5" ></text>
+</g>
+<g >
+<title>update_load_avg (1,602,001,092 samples, 0.03%)</title><rect x="330.6" y="293" width="0.4" height="15.0" fill="rgb(248,145,47)" rx="2" ry="2" />
+<text  x="333.65" y="303.5" ></text>
+</g>
+<g >
+<title>psi_group_change (1,715,276,621 samples, 0.03%)</title><rect x="1024.6" y="373" width="0.4" height="15.0" fill="rgb(246,212,0)" rx="2" ry="2" />
+<text  x="1027.60" y="383.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (1,722,304,142 samples, 0.03%)</title><rect x="940.1" y="325" width="0.4" height="15.0" fill="rgb(220,158,48)" rx="2" ry="2" />
+<text  x="943.09" y="335.5" ></text>
+</g>
+<g >
+<title>__cgroup_account_cputime (495,866,292 samples, 0.01%)</title><rect x="144.5" y="165" width="0.2" height="15.0" fill="rgb(214,193,3)" rx="2" ry="2" />
+<text  x="147.55" y="175.5" ></text>
+</g>
+<g >
+<title>kthread (1,395,933,433 samples, 0.03%)</title><rect x="280.0" y="533" width="0.3" height="15.0" fill="rgb(247,128,40)" rx="2" ry="2" />
+<text  x="282.95" y="543.5" ></text>
+</g>
+<g >
+<title>menu_reflect (458,014,708 samples, 0.01%)</title><rect x="1137.4" y="485" width="0.1" height="15.0" fill="rgb(240,154,24)" rx="2" ry="2" />
+<text  x="1140.39" y="495.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (2,179,483,933 samples, 0.04%)</title><rect x="147.2" y="181" width="0.5" height="15.0" fill="rgb(247,112,21)" rx="2" ry="2" />
+<text  x="150.17" y="191.5" ></text>
+</g>
+<g >
+<title>__folio_put (26,895,778,269 samples, 0.52%)</title><rect x="227.9" y="133" width="6.1" height="15.0" fill="rgb(242,43,16)" rx="2" ry="2" />
+<text  x="230.87" y="143.5" ></text>
+</g>
+<g >
+<title>start_thread (3,198,061,986,726 samples, 62.02%)</title><rect x="285.2" y="533" width="731.9" height="15.0" fill="rgb(225,0,54)" rx="2" ry="2" />
+<text  x="288.21" y="543.5" >start_thread</text>
+</g>
+<g >
+<title>__alloc_pages (22,601,017,867 samples, 0.44%)</title><rect x="956.2" y="325" width="5.2" height="15.0" fill="rgb(254,93,2)" rx="2" ry="2" />
+<text  x="959.23" y="335.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (924,948,456 samples, 0.02%)</title><rect x="206.1" y="197" width="0.2" height="15.0" fill="rgb(221,212,52)" rx="2" ry="2" />
+<text  x="209.13" y="207.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_uncharge (26,282,835,668 samples, 0.51%)</title><rect x="227.9" y="117" width="6.1" height="15.0" fill="rgb(227,69,43)" rx="2" ry="2" />
+<text  x="230.94" y="127.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (10,448,594,491 samples, 0.20%)</title><rect x="217.2" y="133" width="2.4" height="15.0" fill="rgb(239,165,15)" rx="2" ry="2" />
+<text  x="220.20" y="143.5" ></text>
+</g>
+<g >
+<title>add_slat_sample (661,008,838 samples, 0.01%)</title><rect x="15.6" y="437" width="0.1" height="15.0" fill="rgb(252,109,29)" rx="2" ry="2" />
+<text  x="18.59" y="447.5" ></text>
+</g>
+<g >
+<title>irq_enter_rcu (737,258,851 samples, 0.01%)</title><rect x="1021.4" y="389" width="0.2" height="15.0" fill="rgb(253,137,30)" rx="2" ry="2" />
+<text  x="1024.41" y="399.5" ></text>
+</g>
+<g >
+<title>do_idle (31,294,230,779 samples, 0.61%)</title><rect x="1020.5" y="469" width="7.2" height="15.0" fill="rgb(237,99,52)" rx="2" ry="2" />
+<text  x="1023.53" y="479.5" ></text>
+</g>
+<g >
+<title>ttwu_do_wakeup (1,751,019,898 samples, 0.03%)</title><rect x="1130.4" y="453" width="0.4" height="15.0" fill="rgb(242,211,11)" rx="2" ry="2" />
+<text  x="1133.41" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (27,392,874,730 samples, 0.53%)</title><rect x="426.5" y="325" width="6.3" height="15.0" fill="rgb(239,226,13)" rx="2" ry="2" />
+<text  x="429.53" y="335.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (814,010,011 samples, 0.02%)</title><rect x="791.4" y="261" width="0.1" height="15.0" fill="rgb(233,123,6)" rx="2" ry="2" />
+<text  x="794.36" y="271.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,543,564,769 samples, 0.03%)</title><rect x="280.3" y="517" width="0.3" height="15.0" fill="rgb(250,99,3)" rx="2" ry="2" />
+<text  x="283.27" y="527.5" ></text>
+</g>
+<g >
+<title>simple_copy_to_iter (3,413,625,368 samples, 0.07%)</title><rect x="218.8" y="117" width="0.8" height="15.0" fill="rgb(216,202,11)" rx="2" ry="2" />
+<text  x="221.80" y="127.5" ></text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_REPLY_STRUCTURED_REPLY_RECV_OFFSET_DATA_DATA.constprop.0 (150,400,377,394 samples, 2.92%)</title><rect x="220.3" y="325" width="34.5" height="15.0" fill="rgb(252,53,47)" rx="2" ry="2" />
+<text  x="223.34" y="335.5" >nb..</text>
+</g>
+<g >
+<title>pthread_rwlock_unlock@@GLIBC_2.34 (1,247,904,664 samples, 0.02%)</title><rect x="818.0" y="485" width="0.3" height="15.0" fill="rgb(246,102,37)" rx="2" ry="2" />
+<text  x="821.03" y="495.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (2,068,266,218 samples, 0.04%)</title><rect x="1056.2" y="357" width="0.4" height="15.0" fill="rgb(231,40,31)" rx="2" ry="2" />
+<text  x="1059.17" y="367.5" ></text>
+</g>
+<g >
+<title>__check_object_size (2,701,942,533 samples, 0.05%)</title><rect x="73.7" y="181" width="0.6" height="15.0" fill="rgb(247,23,27)" rx="2" ry="2" />
+<text  x="76.66" y="191.5" ></text>
+</g>
+<g >
+<title>nbd_internal_set_last_error (2,653,422,922 samples, 0.05%)</title><rect x="128.7" y="357" width="0.6" height="15.0" fill="rgb(205,177,33)" rx="2" ry="2" />
+<text  x="131.69" y="367.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (762,278,105 samples, 0.01%)</title><rect x="378.3" y="437" width="0.1" height="15.0" fill="rgb(223,98,3)" rx="2" ry="2" />
+<text  x="381.26" y="447.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (4,659,082,999 samples, 0.09%)</title><rect x="337.8" y="341" width="1.1" height="15.0" fill="rgb(213,216,23)" rx="2" ry="2" />
+<text  x="340.81" y="351.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (3,632,979,620 samples, 0.07%)</title><rect x="223.4" y="181" width="0.8" height="15.0" fill="rgb(243,13,33)" rx="2" ry="2" />
+<text  x="226.39" y="191.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (644,081,197 samples, 0.01%)</title><rect x="1027.0" y="373" width="0.2" height="15.0" fill="rgb(225,126,33)" rx="2" ry="2" />
+<text  x="1030.00" y="383.5" ></text>
+</g>
+<g >
+<title>tick_irq_enter (655,366,393 samples, 0.01%)</title><rect x="1021.4" y="373" width="0.2" height="15.0" fill="rgb(248,36,33)" rx="2" ry="2" />
+<text  x="1024.43" y="383.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (107,377,789,277 samples, 2.08%)</title><rect x="353.7" y="437" width="24.6" height="15.0" fill="rgb(238,102,9)" rx="2" ry="2" />
+<text  x="356.69" y="447.5" >_..</text>
+</g>
+<g >
+<title>kworker/u64:26 (1,147,292,570 samples, 0.02%)</title><rect x="281.4" y="565" width="0.3" height="15.0" fill="rgb(206,211,36)" rx="2" ry="2" />
+<text  x="284.44" y="575.5" ></text>
+</g>
+<g >
+<title>kworker/u64:21- (1,397,938,239 samples, 0.03%)</title><rect x="279.9" y="565" width="0.4" height="15.0" fill="rgb(241,133,10)" rx="2" ry="2" />
+<text  x="282.95" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (544,679,710 samples, 0.01%)</title><rect x="277.6" y="437" width="0.2" height="15.0" fill="rgb(228,206,45)" rx="2" ry="2" />
+<text  x="280.63" y="447.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (727,571,781 samples, 0.01%)</title><rect x="208.8" y="165" width="0.2" height="15.0" fill="rgb(209,162,30)" rx="2" ry="2" />
+<text  x="211.85" y="175.5" ></text>
+</g>
+<g >
+<title>__get_user_8 (3,459,040,777 samples, 0.07%)</title><rect x="346.8" y="389" width="0.8" height="15.0" fill="rgb(218,134,7)" rx="2" ry="2" />
+<text  x="349.82" y="399.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (1,572,200,672 samples, 0.03%)</title><rect x="215.5" y="149" width="0.4" height="15.0" fill="rgb(251,182,44)" rx="2" ry="2" />
+<text  x="218.54" y="159.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (2,789,465,197 samples, 0.05%)</title><rect x="322.1" y="261" width="0.7" height="15.0" fill="rgb(211,4,31)" rx="2" ry="2" />
+<text  x="325.14" y="271.5" ></text>
+</g>
+<g >
+<title>update_load_avg (2,206,213,982 samples, 0.04%)</title><rect x="315.4" y="325" width="0.5" height="15.0" fill="rgb(241,22,13)" rx="2" ry="2" />
+<text  x="318.44" y="335.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (1,680,286,280 samples, 0.03%)</title><rect x="210.8" y="117" width="0.4" height="15.0" fill="rgb(222,149,9)" rx="2" ry="2" />
+<text  x="213.80" y="127.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (1,446,993,206 samples, 0.03%)</title><rect x="970.3" y="261" width="0.4" height="15.0" fill="rgb(241,43,46)" rx="2" ry="2" />
+<text  x="973.32" y="271.5" ></text>
+</g>
+<g >
+<title>__GI___lll_lock_wake (123,946,104,094 samples, 2.40%)</title><rect x="351.9" y="485" width="28.3" height="15.0" fill="rgb(227,58,45)" rx="2" ry="2" />
+<text  x="354.87" y="495.5" >__..</text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (783,450,846 samples, 0.02%)</title><rect x="287.8" y="485" width="0.1" height="15.0" fill="rgb(207,191,48)" rx="2" ry="2" />
+<text  x="290.76" y="495.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (529,859,394 samples, 0.01%)</title><rect x="379.3" y="325" width="0.1" height="15.0" fill="rgb(220,153,21)" rx="2" ry="2" />
+<text  x="382.32" y="335.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (60,235,012,676 samples, 1.17%)</title><rect x="318.5" y="341" width="13.8" height="15.0" fill="rgb(231,40,20)" rx="2" ry="2" />
+<text  x="321.49" y="351.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock@@GLIBC_2.2.5 (3,852,093,358 samples, 0.07%)</title><rect x="1015.4" y="501" width="0.9" height="15.0" fill="rgb(209,128,32)" rx="2" ry="2" />
+<text  x="1018.38" y="511.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (777,962,056 samples, 0.02%)</title><rect x="958.8" y="277" width="0.1" height="15.0" fill="rgb(237,121,17)" rx="2" ry="2" />
+<text  x="961.77" y="287.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_enable_asynccancel (1,072,116,189 samples, 0.02%)</title><rect x="819.3" y="469" width="0.3" height="15.0" fill="rgb(237,159,33)" rx="2" ry="2" />
+<text  x="822.33" y="479.5" ></text>
+</g>
+<g >
+<title>scm_recv.isra.0 (985,774,869 samples, 0.02%)</title><rect x="194.4" y="181" width="0.2" height="15.0" fill="rgb(253,222,0)" rx="2" ry="2" />
+<text  x="197.37" y="191.5" ></text>
+</g>
+<g >
+<title>[unknown] (834,823,703 samples, 0.02%)</title><rect x="10.1" y="357" width="0.1" height="15.0" fill="rgb(239,106,12)" rx="2" ry="2" />
+<text  x="13.06" y="367.5" ></text>
+</g>
+<g >
+<title>psi_task_change (2,766,258,131 samples, 0.05%)</title><rect x="1177.0" y="341" width="0.7" height="15.0" fill="rgb(207,15,30)" rx="2" ry="2" />
+<text  x="1180.03" y="351.5" ></text>
+</g>
+<g >
+<title>psi_group_change (2,203,264,564 samples, 0.04%)</title><rect x="1177.1" y="325" width="0.5" height="15.0" fill="rgb(238,197,14)" rx="2" ry="2" />
+<text  x="1180.10" y="335.5" ></text>
+</g>
+<g >
+<title>__printf_buffer (9,294,016,846 samples, 0.18%)</title><rect x="124.5" y="325" width="2.2" height="15.0" fill="rgb(236,10,27)" rx="2" ry="2" />
+<text  x="127.53" y="335.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (1,970,911,333 samples, 0.04%)</title><rect x="192.0" y="165" width="0.4" height="15.0" fill="rgb(250,37,53)" rx="2" ry="2" />
+<text  x="194.99" y="175.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,661,492,242 samples, 0.03%)</title><rect x="277.9" y="469" width="0.4" height="15.0" fill="rgb(207,46,45)" rx="2" ry="2" />
+<text  x="280.93" y="479.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (729,031,597 samples, 0.01%)</title><rect x="86.3" y="117" width="0.2" height="15.0" fill="rgb(217,186,46)" rx="2" ry="2" />
+<text  x="89.35" y="127.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (499,173,010 samples, 0.01%)</title><rect x="85.8" y="85" width="0.1" height="15.0" fill="rgb(216,134,31)" rx="2" ry="2" />
+<text  x="88.77" y="95.5" ></text>
+</g>
+<g >
+<title>switch_mm_irqs_off (6,189,106,273 samples, 0.12%)</title><rect x="1184.7" y="453" width="1.4" height="15.0" fill="rgb(250,166,50)" rx="2" ry="2" />
+<text  x="1187.69" y="463.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,536,811,450 samples, 0.03%)</title><rect x="283.5" y="469" width="0.4" height="15.0" fill="rgb(249,48,4)" rx="2" ry="2" />
+<text  x="286.50" y="479.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (4,326,303,748 samples, 0.08%)</title><rect x="766.3" y="309" width="1.0" height="15.0" fill="rgb(211,182,6)" rx="2" ry="2" />
+<text  x="769.32" y="319.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter_state (193,646,648,475 samples, 3.76%)</title><rect x="1029.7" y="469" width="44.4" height="15.0" fill="rgb(244,109,41)" rx="2" ry="2" />
+<text  x="1032.74" y="479.5" >cpui..</text>
+</g>
+<g >
+<title>touch_atime (9,012,236,063 samples, 0.17%)</title><rect x="401.5" y="341" width="2.1" height="15.0" fill="rgb(238,119,33)" rx="2" ry="2" />
+<text  x="404.51" y="351.5" ></text>
+</g>
+<g >
+<title>__schedule (1,547,885,693 samples, 0.03%)</title><rect x="887.0" y="309" width="0.4" height="15.0" fill="rgb(215,195,2)" rx="2" ry="2" />
+<text  x="890.01" y="319.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (77,346,052,459 samples, 1.50%)</title><rect x="360.6" y="373" width="17.7" height="15.0" fill="rgb(254,220,44)" rx="2" ry="2" />
+<text  x="363.56" y="383.5" ></text>
+</g>
+<g >
+<title>update_load_avg (1,505,502,868 samples, 0.03%)</title><rect x="322.4" y="229" width="0.4" height="15.0" fill="rgb(222,69,50)" rx="2" ry="2" />
+<text  x="325.44" y="239.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (813,609,812 samples, 0.02%)</title><rect x="1187.2" y="453" width="0.2" height="15.0" fill="rgb(241,220,10)" rx="2" ry="2" />
+<text  x="1190.24" y="463.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (7,602,766,077 samples, 0.15%)</title><rect x="214.6" y="165" width="1.7" height="15.0" fill="rgb(215,31,54)" rx="2" ry="2" />
+<text  x="217.61" y="175.5" ></text>
+</g>
+<g >
+<title>kthread (1,355,013,535 samples, 0.03%)</title><rect x="282.1" y="533" width="0.3" height="15.0" fill="rgb(234,105,16)" rx="2" ry="2" />
+<text  x="285.10" y="543.5" ></text>
+</g>
+<g >
+<title>propagate_protected_usage (1,363,914,456 samples, 0.03%)</title><rect x="232.9" y="69" width="0.4" height="15.0" fill="rgb(208,73,0)" rx="2" ry="2" />
+<text  x="235.94" y="79.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,688,906,160 samples, 0.03%)</title><rect x="277.9" y="501" width="0.4" height="15.0" fill="rgb(211,111,28)" rx="2" ry="2" />
+<text  x="280.93" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (698,380,021 samples, 0.01%)</title><rect x="282.4" y="437" width="0.2" height="15.0" fill="rgb(224,69,54)" rx="2" ry="2" />
+<text  x="285.42" y="447.5" ></text>
+</g>
+<g >
+<title>alloc_pages (2,931,655,339 samples, 0.06%)</title><rect x="995.9" y="325" width="0.7" height="15.0" fill="rgb(238,68,40)" rx="2" ry="2" />
+<text  x="998.93" y="335.5" ></text>
+</g>
+<g >
+<title>update_irq_load_avg (549,873,787 samples, 0.01%)</title><rect x="1137.1" y="437" width="0.2" height="15.0" fill="rgb(249,86,14)" rx="2" ry="2" />
+<text  x="1140.14" y="447.5" ></text>
+</g>
+<g >
+<title>kthread (1,710,658,390 samples, 0.03%)</title><rect x="282.8" y="533" width="0.4" height="15.0" fill="rgb(248,173,5)" rx="2" ry="2" />
+<text  x="285.78" y="543.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (991,937,004 samples, 0.02%)</title><rect x="61.2" y="309" width="0.2" height="15.0" fill="rgb(252,118,12)" rx="2" ry="2" />
+<text  x="64.15" y="319.5" ></text>
+</g>
+<g >
+<title>[fio-nbd.so] (656,075,789 samples, 0.01%)</title><rect x="111.0" y="421" width="0.2" height="15.0" fill="rgb(248,12,15)" rx="2" ry="2" />
+<text  x="114.02" y="431.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_updated (553,895,736 samples, 0.01%)</title><rect x="229.5" y="37" width="0.1" height="15.0" fill="rgb(228,55,53)" rx="2" ry="2" />
+<text  x="232.50" y="47.5" ></text>
+</g>
+<g >
+<title>__fget_light (719,763,998 samples, 0.01%)</title><rect x="206.2" y="181" width="0.1" height="15.0" fill="rgb(247,213,49)" rx="2" ry="2" />
+<text  x="209.18" y="191.5" ></text>
+</g>
+<g >
+<title>nbd_aio_peek_command_completed (802,797,084 samples, 0.02%)</title><rect x="274.2" y="389" width="0.2" height="15.0" fill="rgb(205,40,28)" rx="2" ry="2" />
+<text  x="277.17" y="399.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,585,588,752 samples, 0.03%)</title><rect x="276.0" y="549" width="0.4" height="15.0" fill="rgb(207,60,5)" rx="2" ry="2" />
+<text  x="278.99" y="559.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (1,720,755,720,873 samples, 33.37%)</title><rect x="412.2" y="357" width="393.8" height="15.0" fill="rgb(241,121,39)" rx="2" ry="2" />
+<text  x="415.20" y="367.5" >ext4_buffered_write_iter</text>
+</g>
+<g >
+<title>import_single_range (1,291,669,466 samples, 0.03%)</title><rect x="919.6" y="389" width="0.3" height="15.0" fill="rgb(214,229,47)" rx="2" ry="2" />
+<text  x="922.64" y="399.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (8,108,341,310 samples, 0.16%)</title><rect x="241.3" y="165" width="1.8" height="15.0" fill="rgb(254,145,35)" rx="2" ry="2" />
+<text  x="244.28" y="175.5" ></text>
+</g>
+<g >
+<title>[perf] (3,861,907,812 samples, 0.07%)</title><rect x="1017.1" y="421" width="0.9" height="15.0" fill="rgb(217,80,11)" rx="2" ry="2" />
+<text  x="1020.08" y="431.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (30,698,307,000 samples, 0.60%)</title><rect x="877.3" y="341" width="7.1" height="15.0" fill="rgb(239,220,48)" rx="2" ry="2" />
+<text  x="880.34" y="351.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (522,800,978 samples, 0.01%)</title><rect x="1064.9" y="405" width="0.1" height="15.0" fill="rgb(244,179,41)" rx="2" ry="2" />
+<text  x="1067.85" y="415.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (544,489,899 samples, 0.01%)</title><rect x="216.4" y="165" width="0.2" height="15.0" fill="rgb(222,222,13)" rx="2" ry="2" />
+<text  x="219.45" y="175.5" ></text>
+</g>
+<g >
+<title>activate_task (3,572,986,615 samples, 0.07%)</title><rect x="322.1" y="293" width="0.8" height="15.0" fill="rgb(247,159,1)" rx="2" ry="2" />
+<text  x="325.11" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (622,095,245 samples, 0.01%)</title><rect x="282.3" y="373" width="0.1" height="15.0" fill="rgb(214,44,38)" rx="2" ry="2" />
+<text  x="285.27" y="383.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (3,256,989,586 samples, 0.06%)</title><rect x="766.6" y="277" width="0.7" height="15.0" fill="rgb(254,94,42)" rx="2" ry="2" />
+<text  x="769.55" y="287.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (15,705,828,345 samples, 0.30%)</title><rect x="324.2" y="293" width="3.6" height="15.0" fill="rgb(227,54,21)" rx="2" ry="2" />
+<text  x="327.24" y="303.5" ></text>
+</g>
+<g >
+<title>__get_user_nocheck_4 (2,455,123,119 samples, 0.05%)</title><rect x="342.8" y="357" width="0.6" height="15.0" fill="rgb(227,20,2)" rx="2" ry="2" />
+<text  x="345.83" y="367.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (8,930,933,793 samples, 0.17%)</title><rect x="184.8" y="149" width="2.1" height="15.0" fill="rgb(213,213,25)" rx="2" ry="2" />
+<text  x="187.82" y="159.5" ></text>
+</g>
+<g >
+<title>check_stack_object (530,436,503 samples, 0.01%)</title><rect x="906.3" y="261" width="0.1" height="15.0" fill="rgb(246,221,47)" rx="2" ry="2" />
+<text  x="909.26" y="271.5" ></text>
+</g>
+<g >
+<title>irq_enter_rcu (602,755,741 samples, 0.01%)</title><rect x="1178.1" y="405" width="0.1" height="15.0" fill="rgb(233,110,49)" rx="2" ry="2" />
+<text  x="1181.08" y="415.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (752,832,883 samples, 0.01%)</title><rect x="242.4" y="133" width="0.2" height="15.0" fill="rgb(234,32,24)" rx="2" ry="2" />
+<text  x="245.43" y="143.5" ></text>
+</g>
+<g >
+<title>check_stack_object (768,524,024 samples, 0.01%)</title><rect x="941.4" y="325" width="0.2" height="15.0" fill="rgb(236,69,53)" rx="2" ry="2" />
+<text  x="944.41" y="335.5" ></text>
+</g>
+<g >
+<title>utime_since_now (4,832,690,366 samples, 0.09%)</title><rect x="24.6" y="421" width="1.1" height="15.0" fill="rgb(214,54,42)" rx="2" ry="2" />
+<text  x="27.56" y="431.5" ></text>
+</g>
+<g >
+<title>fput (1,505,359,890 samples, 0.03%)</title><rect x="825.2" y="405" width="0.4" height="15.0" fill="rgb(222,201,24)" rx="2" ry="2" />
+<text  x="828.23" y="415.5" ></text>
+</g>
+<g >
+<title>nbd_internal_get_error_context (448,584,344 samples, 0.01%)</title><rect x="130.5" y="373" width="0.1" height="15.0" fill="rgb(252,211,49)" rx="2" ry="2" />
+<text  x="133.49" y="383.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,400,047,318 samples, 0.03%)</title><rect x="283.5" y="453" width="0.3" height="15.0" fill="rgb(249,40,40)" rx="2" ry="2" />
+<text  x="286.51" y="463.5" ></text>
+</g>
+<g >
+<title>[unknown] (995,288,270 samples, 0.02%)</title><rect x="10.1" y="389" width="0.2" height="15.0" fill="rgb(246,213,50)" rx="2" ry="2" />
+<text  x="13.06" y="399.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (580,453,262 samples, 0.01%)</title><rect x="275.7" y="437" width="0.1" height="15.0" fill="rgb(239,10,23)" rx="2" ry="2" />
+<text  x="278.69" y="447.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (1,293,635,809 samples, 0.03%)</title><rect x="904.9" y="261" width="0.3" height="15.0" fill="rgb(232,131,1)" rx="2" ry="2" />
+<text  x="907.94" y="271.5" ></text>
+</g>
+<g >
+<title>__flush_smp_call_function_queue (1,714,094,826 samples, 0.03%)</title><rect x="1174.9" y="389" width="0.4" height="15.0" fill="rgb(231,196,17)" rx="2" ry="2" />
+<text  x="1177.91" y="399.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (3,295,007,880 samples, 0.06%)</title><rect x="182.4" y="165" width="0.7" height="15.0" fill="rgb(220,187,31)" rx="2" ry="2" />
+<text  x="185.39" y="175.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (74,373,011,293 samples, 1.44%)</title><rect x="889.5" y="309" width="17.0" height="15.0" fill="rgb(242,0,3)" rx="2" ry="2" />
+<text  x="892.46" y="319.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (2,896,210,456 samples, 0.06%)</title><rect x="1056.2" y="389" width="0.6" height="15.0" fill="rgb(211,176,40)" rx="2" ry="2" />
+<text  x="1059.15" y="399.5" ></text>
+</g>
+<g >
+<title>file_pread (683,870,844 samples, 0.01%)</title><rect x="381.7" y="469" width="0.1" height="15.0" fill="rgb(222,141,11)" rx="2" ry="2" />
+<text  x="384.67" y="479.5" ></text>
+</g>
+<g >
+<title>mutex_lock (503,661,300 samples, 0.01%)</title><rect x="269.1" y="181" width="0.1" height="15.0" fill="rgb(211,117,12)" rx="2" ry="2" />
+<text  x="272.11" y="191.5" ></text>
+</g>
+<g >
+<title>switch_mm_irqs_off (3,411,665,194 samples, 0.07%)</title><rect x="339.4" y="341" width="0.7" height="15.0" fill="rgb(208,140,24)" rx="2" ry="2" />
+<text  x="342.35" y="351.5" ></text>
+</g>
+<g >
+<title>ktime_get_coarse_real_ts64 (565,879,778 samples, 0.01%)</title><rect x="416.1" y="309" width="0.2" height="15.0" fill="rgb(247,171,23)" rx="2" ry="2" />
+<text  x="419.14" y="319.5" ></text>
+</g>
+<g >
+<title>vfs_write (1,735,496,355,788 samples, 33.66%)</title><rect x="410.6" y="373" width="397.2" height="15.0" fill="rgb(252,78,2)" rx="2" ry="2" />
+<text  x="413.62" y="383.5" >vfs_write</text>
+</g>
+<g >
+<title>socket_recv (147,178,471,171 samples, 2.85%)</title><rect x="221.0" y="293" width="33.7" height="15.0" fill="rgb(233,61,0)" rx="2" ry="2" />
+<text  x="223.99" y="303.5" >so..</text>
+</g>
+<g >
+<title>__skb_datagram_iter (25,820,009,278 samples, 0.50%)</title><rect x="195.6" y="149" width="5.9" height="15.0" fill="rgb(232,156,16)" rx="2" ry="2" />
+<text  x="198.60" y="159.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (6,963,630,463 samples, 0.14%)</title><rect x="143.7" y="213" width="1.6" height="15.0" fill="rgb(218,124,10)" rx="2" ry="2" />
+<text  x="146.67" y="223.5" ></text>
+</g>
+<g >
+<title>kthread (1,442,906,589 samples, 0.03%)</title><rect x="283.2" y="533" width="0.3" height="15.0" fill="rgb(238,87,3)" rx="2" ry="2" />
+<text  x="286.17" y="543.5" ></text>
+</g>
+<g >
+<title>__slab_alloc.isra.0 (2,706,740,249 samples, 0.05%)</title><rect x="92.3" y="117" width="0.7" height="15.0" fill="rgb(213,50,27)" rx="2" ry="2" />
+<text  x="95.35" y="127.5" ></text>
+</g>
+<g >
+<title>nbd_unlocked_aio_command_completed (6,020,237,194 samples, 0.12%)</title><rect x="121.3" y="357" width="1.3" height="15.0" fill="rgb(219,103,7)" rx="2" ry="2" />
+<text  x="124.27" y="367.5" ></text>
+</g>
+<g >
+<title>__cgroup_account_cputime (791,450,169 samples, 0.02%)</title><rect x="371.9" y="277" width="0.2" height="15.0" fill="rgb(240,132,33)" rx="2" ry="2" />
+<text  x="374.91" y="287.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (4,030,747,124 samples, 0.08%)</title><rect x="1129.5" y="405" width="0.9" height="15.0" fill="rgb(234,8,14)" rx="2" ry="2" />
+<text  x="1132.49" y="415.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (4,127,785,377 samples, 0.08%)</title><rect x="1056.0" y="405" width="0.9" height="15.0" fill="rgb(212,85,4)" rx="2" ry="2" />
+<text  x="1058.98" y="415.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node_track_caller (13,325,559,834 samples, 0.26%)</title><rect x="47.4" y="165" width="3.1" height="15.0" fill="rgb(234,199,10)" rx="2" ry="2" />
+<text  x="50.40" y="175.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (1,717,394,206 samples, 0.03%)</title><rect x="210.2" y="117" width="0.4" height="15.0" fill="rgb(218,90,17)" rx="2" ry="2" />
+<text  x="213.22" y="127.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (454,200,164 samples, 0.01%)</title><rect x="147.0" y="165" width="0.1" height="15.0" fill="rgb(249,5,38)" rx="2" ry="2" />
+<text  x="150.02" y="175.5" ></text>
+</g>
+<g >
+<title>ttwu_do_wakeup (1,979,524,119 samples, 0.04%)</title><rect x="374.4" y="357" width="0.5" height="15.0" fill="rgb(247,120,33)" rx="2" ry="2" />
+<text  x="377.43" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (642,943,134 samples, 0.01%)</title><rect x="282.1" y="453" width="0.2" height="15.0" fill="rgb(211,2,2)" rx="2" ry="2" />
+<text  x="285.11" y="463.5" ></text>
+</g>
+<g >
+<title>__rcu_read_unlock (908,504,250 samples, 0.02%)</title><rect x="957.5" y="293" width="0.2" height="15.0" fill="rgb(220,172,19)" rx="2" ry="2" />
+<text  x="960.52" y="303.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (53,976,102,374 samples, 1.05%)</title><rect x="1090.2" y="421" width="12.3" height="15.0" fill="rgb(219,215,12)" rx="2" ry="2" />
+<text  x="1093.18" y="431.5" ></text>
+</g>
+<g >
+<title>update_load_avg (2,079,962,223 samples, 0.04%)</title><rect x="372.1" y="293" width="0.5" height="15.0" fill="rgb(226,166,20)" rx="2" ry="2" />
+<text  x="375.15" y="303.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (1,040,035,996 samples, 0.02%)</title><rect x="379.5" y="373" width="0.2" height="15.0" fill="rgb(223,201,5)" rx="2" ry="2" />
+<text  x="382.46" y="383.5" ></text>
+</g>
+<g >
+<title>do_futex (208,267,277,078 samples, 4.04%)</title><rect x="297.5" y="421" width="47.7" height="15.0" fill="rgb(217,143,29)" rx="2" ry="2" />
+<text  x="300.52" y="431.5" >do_f..</text>
+</g>
+<g >
+<title>kworker/u64:3-k (1,101,431,886 samples, 0.02%)</title><rect x="281.7" y="565" width="0.3" height="15.0" fill="rgb(217,60,33)" rx="2" ry="2" />
+<text  x="284.71" y="575.5" ></text>
+</g>
+<g >
+<title>update_min_vruntime (1,013,687,255 samples, 0.02%)</title><rect x="311.9" y="293" width="0.2" height="15.0" fill="rgb(213,120,1)" rx="2" ry="2" />
+<text  x="314.89" y="303.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (456,847,386 samples, 0.01%)</title><rect x="887.1" y="293" width="0.1" height="15.0" fill="rgb(217,89,22)" rx="2" ry="2" />
+<text  x="890.06" y="303.5" ></text>
+</g>
+<g >
+<title>_int_malloc (609,640,541 samples, 0.01%)</title><rect x="58.3" y="341" width="0.2" height="15.0" fill="rgb(225,209,44)" rx="2" ry="2" />
+<text  x="61.33" y="351.5" ></text>
+</g>
+<g >
+<title>pick_next_task_idle (532,592,385 samples, 0.01%)</title><rect x="147.9" y="213" width="0.1" height="15.0" fill="rgb(236,137,29)" rx="2" ry="2" />
+<text  x="150.91" y="223.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (1,125,560,038 samples, 0.02%)</title><rect x="55.9" y="261" width="0.3" height="15.0" fill="rgb(229,106,23)" rx="2" ry="2" />
+<text  x="58.89" y="271.5" ></text>
+</g>
+<g >
+<title>preempt_count_sub (776,083,306 samples, 0.02%)</title><rect x="1166.6" y="389" width="0.2" height="15.0" fill="rgb(254,20,9)" rx="2" ry="2" />
+<text  x="1169.61" y="399.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (1,940,542,551 samples, 0.04%)</title><rect x="270.2" y="117" width="0.5" height="15.0" fill="rgb(219,157,17)" rx="2" ry="2" />
+<text  x="273.21" y="127.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,026,244,923 samples, 0.02%)</title><rect x="276.4" y="469" width="0.2" height="15.0" fill="rgb(244,5,34)" rx="2" ry="2" />
+<text  x="279.36" y="479.5" ></text>
+</g>
+<g >
+<title>__list_add_valid (1,000,764,162 samples, 0.02%)</title><rect x="300.7" y="341" width="0.2" height="15.0" fill="rgb(211,84,5)" rx="2" ry="2" />
+<text  x="303.66" y="351.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (6,034,031,337 samples, 0.12%)</title><rect x="217.4" y="101" width="1.4" height="15.0" fill="rgb(247,180,13)" rx="2" ry="2" />
+<text  x="220.42" y="111.5" ></text>
+</g>
+<g >
+<title>__update_idle_core (2,723,092,724 samples, 0.05%)</title><rect x="332.4" y="325" width="0.6" height="15.0" fill="rgb(236,130,26)" rx="2" ry="2" />
+<text  x="335.36" y="335.5" ></text>
+</g>
+<g >
+<title>psi_task_change (651,748,141 samples, 0.01%)</title><rect x="322.8" y="261" width="0.1" height="15.0" fill="rgb(222,134,9)" rx="2" ry="2" />
+<text  x="325.78" y="271.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,684,205,169 samples, 0.03%)</title><rect x="275.3" y="501" width="0.4" height="15.0" fill="rgb(246,95,35)" rx="2" ry="2" />
+<text  x="278.30" y="511.5" ></text>
+</g>
+<g >
+<title>malloc (911,381,273 samples, 0.02%)</title><rect x="128.0" y="341" width="0.2" height="15.0" fill="rgb(206,156,18)" rx="2" ry="2" />
+<text  x="131.03" y="351.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (603,184,207 samples, 0.01%)</title><rect x="87.6" y="133" width="0.2" height="15.0" fill="rgb(213,108,50)" rx="2" ry="2" />
+<text  x="90.64" y="143.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (57,866,650,985 samples, 1.12%)</title><rect x="206.3" y="197" width="13.3" height="15.0" fill="rgb(211,21,18)" rx="2" ry="2" />
+<text  x="209.34" y="207.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (2,295,856,993 samples, 0.04%)</title><rect x="882.3" y="309" width="0.5" height="15.0" fill="rgb(229,202,41)" rx="2" ry="2" />
+<text  x="885.26" y="319.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,147,292,570 samples, 0.02%)</title><rect x="281.4" y="517" width="0.3" height="15.0" fill="rgb(245,100,15)" rx="2" ry="2" />
+<text  x="284.44" y="527.5" ></text>
+</g>
+<g >
+<title>kworker/u64:9-e (1,563,968,875 samples, 0.03%)</title><rect x="283.5" y="565" width="0.4" height="15.0" fill="rgb(243,194,24)" rx="2" ry="2" />
+<text  x="286.50" y="575.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (4,022,245,723 samples, 0.08%)</title><rect x="883.4" y="309" width="0.9" height="15.0" fill="rgb(238,126,45)" rx="2" ry="2" />
+<text  x="886.42" y="319.5" ></text>
+</g>
+<g >
+<title>refill_stock (951,339,852 samples, 0.02%)</title><rect x="862.5" y="277" width="0.3" height="15.0" fill="rgb(205,10,15)" rx="2" ry="2" />
+<text  x="865.54" y="287.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (462,790,227 samples, 0.01%)</title><rect x="1159.9" y="437" width="0.1" height="15.0" fill="rgb(214,183,45)" rx="2" ry="2" />
+<text  x="1162.94" y="447.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (3,732,351,275 samples, 0.07%)</title><rect x="317.4" y="293" width="0.9" height="15.0" fill="rgb(241,94,43)" rx="2" ry="2" />
+<text  x="320.40" y="303.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (470,579,122 samples, 0.01%)</title><rect x="270.9" y="101" width="0.1" height="15.0" fill="rgb(224,51,31)" rx="2" ry="2" />
+<text  x="273.89" y="111.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (1,982,659,046 samples, 0.04%)</title><rect x="341.7" y="325" width="0.5" height="15.0" fill="rgb(218,92,46)" rx="2" ry="2" />
+<text  x="344.73" y="335.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,184,053,609 samples, 0.02%)</title><rect x="235.8" y="101" width="0.3" height="15.0" fill="rgb(233,162,38)" rx="2" ry="2" />
+<text  x="238.82" y="111.5" ></text>
+</g>
+<g >
+<title>psi_group_change (8,252,572,160 samples, 0.16%)</title><rect x="1181.7" y="437" width="1.9" height="15.0" fill="rgb(223,24,1)" rx="2" ry="2" />
+<text  x="1184.74" y="447.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (127,917,454,155 samples, 2.48%)</title><rect x="224.7" y="181" width="29.3" height="15.0" fill="rgb(218,202,36)" rx="2" ry="2" />
+<text  x="227.68" y="191.5" >un..</text>
+</g>
+<g >
+<title>irq_enter_rcu (497,444,893 samples, 0.01%)</title><rect x="1021.9" y="389" width="0.1" height="15.0" fill="rgb(247,138,14)" rx="2" ry="2" />
+<text  x="1024.91" y="399.5" ></text>
+</g>
+<g >
+<title>selinux_socket_sendmsg (2,932,567,043 samples, 0.06%)</title><rect x="39.1" y="213" width="0.6" height="15.0" fill="rgb(229,140,39)" rx="2" ry="2" />
+<text  x="42.07" y="223.5" ></text>
+</g>
+<g >
+<title>utime_since (500,039,986 samples, 0.01%)</title><rect x="274.8" y="453" width="0.2" height="15.0" fill="rgb(232,124,38)" rx="2" ry="2" />
+<text  x="277.84" y="463.5" ></text>
+</g>
+<g >
+<title>kthread (1,543,564,769 samples, 0.03%)</title><rect x="280.3" y="533" width="0.3" height="15.0" fill="rgb(236,21,45)" rx="2" ry="2" />
+<text  x="283.27" y="543.5" ></text>
+</g>
+<g >
+<title>__libc_start_main@@GLIBC_2.34 (4,277,426,306 samples, 0.08%)</title><rect x="1017.1" y="533" width="1.0" height="15.0" fill="rgb(243,92,10)" rx="2" ry="2" />
+<text  x="1020.08" y="543.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (653,441,064 samples, 0.01%)</title><rect x="280.3" y="437" width="0.1" height="15.0" fill="rgb(234,32,46)" rx="2" ry="2" />
+<text  x="283.28" y="447.5" ></text>
+</g>
+<g >
+<title>__send (1,778,934,091 samples, 0.03%)</title><rect x="273.7" y="309" width="0.4" height="15.0" fill="rgb(228,32,23)" rx="2" ry="2" />
+<text  x="276.66" y="319.5" ></text>
+</g>
+<g >
+<title>__poll (112,936,478,354 samples, 2.19%)</title><rect x="132.6" y="341" width="25.9" height="15.0" fill="rgb(230,6,50)" rx="2" ry="2" />
+<text  x="135.62" y="351.5" >_..</text>
+</g>
+<g >
+<title>kthread (1,563,968,875 samples, 0.03%)</title><rect x="283.5" y="533" width="0.4" height="15.0" fill="rgb(210,208,25)" rx="2" ry="2" />
+<text  x="286.50" y="543.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (693,867,757 samples, 0.01%)</title><rect x="268.5" y="149" width="0.2" height="15.0" fill="rgb(213,81,15)" rx="2" ry="2" />
+<text  x="271.55" y="159.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (581,356,408 samples, 0.01%)</title><rect x="278.6" y="437" width="0.2" height="15.0" fill="rgb(234,226,12)" rx="2" ry="2" />
+<text  x="281.64" y="447.5" ></text>
+</g>
+<g >
+<title>nbd_internal_set_error_context (500,311,912 samples, 0.01%)</title><rect x="130.6" y="373" width="0.1" height="15.0" fill="rgb(235,126,23)" rx="2" ry="2" />
+<text  x="133.59" y="383.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_enable_asynccancel (716,773,634 samples, 0.01%)</title><rect x="132.4" y="341" width="0.2" height="15.0" fill="rgb(250,56,24)" rx="2" ry="2" />
+<text  x="135.43" y="351.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (8,183,475,886 samples, 0.16%)</title><rect x="188.9" y="165" width="1.9" height="15.0" fill="rgb(216,202,39)" rx="2" ry="2" />
+<text  x="191.90" y="175.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (717,431,685 samples, 0.01%)</title><rect x="1050.8" y="405" width="0.2" height="15.0" fill="rgb(231,157,10)" rx="2" ry="2" />
+<text  x="1053.83" y="415.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (2,470,278,584 samples, 0.05%)</title><rect x="98.7" y="117" width="0.5" height="15.0" fill="rgb(224,44,27)" rx="2" ry="2" />
+<text  x="101.65" y="127.5" ></text>
+</g>
+<g >
+<title>menu_select (145,331,701,648 samples, 2.82%)</title><rect x="1137.5" y="485" width="33.3" height="15.0" fill="rgb(231,146,6)" rx="2" ry="2" />
+<text  x="1140.50" y="495.5" >me..</text>
+</g>
+<g >
+<title>pthread_getspecific@@GLIBC_2.34 (2,302,163,883 samples, 0.04%)</title><rect x="129.3" y="357" width="0.5" height="15.0" fill="rgb(241,181,38)" rx="2" ry="2" />
+<text  x="132.29" y="367.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (725,993,747 samples, 0.01%)</title><rect x="995.4" y="277" width="0.2" height="15.0" fill="rgb(254,218,32)" rx="2" ry="2" />
+<text  x="998.44" y="287.5" ></text>
+</g>
+<g >
+<title>__x64_sys_pread64 (95,004,472,768 samples, 1.84%)</title><rect x="383.3" y="389" width="21.8" height="15.0" fill="rgb(219,181,29)" rx="2" ry="2" />
+<text  x="386.34" y="399.5" >_..</text>
+</g>
+<g >
+<title>tick_nohz_idle_stop_tick (1,220,961,401 samples, 0.02%)</title><rect x="1188.7" y="485" width="0.3" height="15.0" fill="rgb(213,148,44)" rx="2" ry="2" />
+<text  x="1191.74" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (3,416,458,683 samples, 0.07%)</title><rect x="1044.4" y="389" width="0.8" height="15.0" fill="rgb(212,4,9)" rx="2" ry="2" />
+<text  x="1047.40" y="399.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (663,535,224 samples, 0.01%)</title><rect x="357.3" y="373" width="0.1" height="15.0" fill="rgb(249,133,14)" rx="2" ry="2" />
+<text  x="360.29" y="383.5" ></text>
+</g>
+<g >
+<title>__schedule (463,535,715 samples, 0.01%)</title><rect x="11.7" y="437" width="0.1" height="15.0" fill="rgb(245,191,26)" rx="2" ry="2" />
+<text  x="14.71" y="447.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (509,772,376 samples, 0.01%)</title><rect x="769.8" y="325" width="0.1" height="15.0" fill="rgb(227,86,10)" rx="2" ry="2" />
+<text  x="772.76" y="335.5" ></text>
+</g>
+<g >
+<title>rb_next (6,040,363,002 samples, 0.12%)</title><rect x="1154.6" y="421" width="1.4" height="15.0" fill="rgb(247,77,21)" rx="2" ry="2" />
+<text  x="1157.62" y="431.5" ></text>
+</g>
+<g >
+<title>futex_wait_setup (11,815,948,881 samples, 0.23%)</title><rect x="342.5" y="389" width="2.7" height="15.0" fill="rgb(250,92,37)" rx="2" ry="2" />
+<text  x="345.47" y="399.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (446,274,179 samples, 0.01%)</title><rect x="15.8" y="437" width="0.1" height="15.0" fill="rgb(214,226,26)" rx="2" ry="2" />
+<text  x="18.77" y="447.5" ></text>
+</g>
+<g >
+<title>update_curr (2,211,992,917 samples, 0.04%)</title><rect x="144.4" y="181" width="0.5" height="15.0" fill="rgb(207,124,31)" rx="2" ry="2" />
+<text  x="147.36" y="191.5" ></text>
+</g>
+<g >
+<title>available_idle_cpu (5,784,828,186 samples, 0.11%)</title><rect x="368.2" y="341" width="1.3" height="15.0" fill="rgb(213,42,27)" rx="2" ry="2" />
+<text  x="371.19" y="351.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (976,923,586 samples, 0.02%)</title><rect x="212.3" y="117" width="0.2" height="15.0" fill="rgb(251,175,50)" rx="2" ry="2" />
+<text  x="215.31" y="127.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (522,820,951 samples, 0.01%)</title><rect x="1163.9" y="421" width="0.1" height="15.0" fill="rgb(226,182,39)" rx="2" ry="2" />
+<text  x="1166.91" y="431.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,331,976,000 samples, 0.03%)</title><rect x="277.6" y="485" width="0.3" height="15.0" fill="rgb(217,143,29)" rx="2" ry="2" />
+<text  x="280.62" y="495.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_recvmsg (521,825,986 samples, 0.01%)</title><rect x="205.4" y="165" width="0.1" height="15.0" fill="rgb(226,151,33)" rx="2" ry="2" />
+<text  x="208.42" y="175.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (603,970,716 samples, 0.01%)</title><rect x="158.3" y="325" width="0.2" height="15.0" fill="rgb(208,71,52)" rx="2" ry="2" />
+<text  x="161.33" y="335.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (803,565,823 samples, 0.02%)</title><rect x="210.4" y="101" width="0.2" height="15.0" fill="rgb(218,153,8)" rx="2" ry="2" />
+<text  x="213.40" y="111.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,590,026,845 samples, 0.03%)</title><rect x="282.4" y="549" width="0.4" height="15.0" fill="rgb(217,168,5)" rx="2" ry="2" />
+<text  x="285.41" y="559.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (777,433,339 samples, 0.02%)</title><rect x="1007.3" y="357" width="0.2" height="15.0" fill="rgb(243,54,1)" rx="2" ry="2" />
+<text  x="1010.34" y="367.5" ></text>
+</g>
+<g >
+<title>psi_group_change (534,845,983 samples, 0.01%)</title><rect x="322.8" y="245" width="0.1" height="15.0" fill="rgb(209,221,20)" rx="2" ry="2" />
+<text  x="325.79" y="255.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (1,485,026,722 samples, 0.03%)</title><rect x="434.4" y="293" width="0.3" height="15.0" fill="rgb(205,81,10)" rx="2" ry="2" />
+<text  x="437.36" y="303.5" ></text>
+</g>
+<g >
+<title>__strlen_avx2 (551,858,683 samples, 0.01%)</title><rect x="127.6" y="325" width="0.1" height="15.0" fill="rgb(227,191,45)" rx="2" ry="2" />
+<text  x="130.57" y="335.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (749,892,496 samples, 0.01%)</title><rect x="308.3" y="309" width="0.1" height="15.0" fill="rgb(209,92,51)" rx="2" ry="2" />
+<text  x="311.26" y="319.5" ></text>
+</g>
+<g >
+<title>uncharge_batch (22,064,530,094 samples, 0.43%)</title><rect x="228.2" y="101" width="5.1" height="15.0" fill="rgb(230,69,30)" rx="2" ry="2" />
+<text  x="231.20" y="111.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (718,172,463 samples, 0.01%)</title><rect x="215.7" y="133" width="0.2" height="15.0" fill="rgb(250,175,17)" rx="2" ry="2" />
+<text  x="218.70" y="143.5" ></text>
+</g>
+<g >
+<title>update_curr (1,440,471,875 samples, 0.03%)</title><rect x="371.8" y="293" width="0.3" height="15.0" fill="rgb(226,38,34)" rx="2" ry="2" />
+<text  x="374.82" y="303.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,364,326,557 samples, 0.03%)</title><rect x="275.7" y="517" width="0.3" height="15.0" fill="rgb(248,158,47)" rx="2" ry="2" />
+<text  x="278.68" y="527.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (1,544,760,441 samples, 0.03%)</title><rect x="216.0" y="149" width="0.3" height="15.0" fill="rgb(240,141,26)" rx="2" ry="2" />
+<text  x="219.00" y="159.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,590,026,845 samples, 0.03%)</title><rect x="282.4" y="517" width="0.4" height="15.0" fill="rgb(210,82,34)" rx="2" ry="2" />
+<text  x="285.41" y="527.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,516,338,928 samples, 0.03%)</title><rect x="273.7" y="293" width="0.3" height="15.0" fill="rgb(218,188,6)" rx="2" ry="2" />
+<text  x="276.66" y="303.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (3,379,089,482 samples, 0.07%)</title><rect x="790.3" y="277" width="0.8" height="15.0" fill="rgb(253,143,5)" rx="2" ry="2" />
+<text  x="793.29" y="287.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,245,336,075 samples, 0.02%)</title><rect x="280.0" y="485" width="0.3" height="15.0" fill="rgb(247,53,47)" rx="2" ry="2" />
+<text  x="282.98" y="495.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (42,983,590,150 samples, 0.83%)</title><rect x="1041.7" y="437" width="9.8" height="15.0" fill="rgb(249,145,21)" rx="2" ry="2" />
+<text  x="1044.66" y="447.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (872,438,995 samples, 0.02%)</title><rect x="194.2" y="181" width="0.2" height="15.0" fill="rgb(252,220,54)" rx="2" ry="2" />
+<text  x="197.16" y="191.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock@@GLIBC_2.2.5 (791,127,097 samples, 0.02%)</title><rect x="273.3" y="373" width="0.1" height="15.0" fill="rgb(216,51,13)" rx="2" ry="2" />
+<text  x="276.25" y="383.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,497,282,482 samples, 0.03%)</title><rect x="277.9" y="453" width="0.4" height="15.0" fill="rgb(223,60,40)" rx="2" ry="2" />
+<text  x="280.94" y="463.5" ></text>
+</g>
+<g >
+<title>skb_release_data (91,324,559,776 samples, 1.77%)</title><rect x="850.5" y="325" width="20.9" height="15.0" fill="rgb(230,224,53)" rx="2" ry="2" />
+<text  x="853.49" y="335.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (5,699,681,845 samples, 0.11%)</title><rect x="1175.7" y="341" width="1.3" height="15.0" fill="rgb(223,69,24)" rx="2" ry="2" />
+<text  x="1178.73" y="351.5" ></text>
+</g>
+<g >
+<title>clone3 (3,198,075,278,394 samples, 62.02%)</title><rect x="285.2" y="549" width="731.9" height="15.0" fill="rgb(208,119,4)" rx="2" ry="2" />
+<text  x="288.21" y="559.5" >clone3</text>
+</g>
+<g >
+<title>__list_del_entry_valid (941,483,796 samples, 0.02%)</title><rect x="359.2" y="341" width="0.2" height="15.0" fill="rgb(225,16,21)" rx="2" ry="2" />
+<text  x="362.17" y="351.5" ></text>
+</g>
+<g >
+<title>__rcu_read_unlock (456,273,202 samples, 0.01%)</title><rect x="983.9" y="293" width="0.1" height="15.0" fill="rgb(220,179,48)" rx="2" ry="2" />
+<text  x="986.91" y="303.5" ></text>
+</g>
+<g >
+<title>perf (4,296,622,133 samples, 0.08%)</title><rect x="1017.1" y="565" width="1.0" height="15.0" fill="rgb(205,29,44)" rx="2" ry="2" />
+<text  x="1020.08" y="575.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (5,831,435,374 samples, 0.11%)</title><rect x="969.5" y="277" width="1.4" height="15.0" fill="rgb(244,164,48)" rx="2" ry="2" />
+<text  x="972.52" y="287.5" ></text>
+</g>
+<g >
+<title>security_file_permission (4,788,483,903 samples, 0.09%)</title><rect x="404.0" y="357" width="1.1" height="15.0" fill="rgb(247,45,10)" rx="2" ry="2" />
+<text  x="406.99" y="367.5" ></text>
+</g>
+<g >
+<title>enqueue_task (3,555,987,939 samples, 0.07%)</title><rect x="322.1" y="277" width="0.8" height="15.0" fill="rgb(252,19,29)" rx="2" ry="2" />
+<text  x="325.12" y="287.5" ></text>
+</g>
+<g >
+<title>skb_queue_tail (10,937,894,978 samples, 0.21%)</title><rect x="952.0" y="357" width="2.5" height="15.0" fill="rgb(254,205,16)" rx="2" ry="2" />
+<text  x="954.99" y="367.5" ></text>
+</g>
+<g >
+<title>__switch_to (1,450,603,932 samples, 0.03%)</title><rect x="1018.4" y="549" width="0.3" height="15.0" fill="rgb(236,8,45)" rx="2" ry="2" />
+<text  x="1021.39" y="559.5" ></text>
+</g>
+<g >
+<title>__update_idle_core (464,455,956 samples, 0.01%)</title><rect x="147.9" y="197" width="0.1" height="15.0" fill="rgb(216,21,3)" rx="2" ry="2" />
+<text  x="150.92" y="207.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,429,080,678 samples, 0.03%)</title><rect x="279.3" y="549" width="0.3" height="15.0" fill="rgb(254,8,28)" rx="2" ry="2" />
+<text  x="282.27" y="559.5" ></text>
+</g>
+<g >
+<title>io_u_queued_complete (453,710,340 samples, 0.01%)</title><rect x="27.2" y="437" width="0.1" height="15.0" fill="rgb(236,147,18)" rx="2" ry="2" />
+<text  x="30.24" y="447.5" ></text>
+</g>
+<g >
+<title>tick_check_broadcast_expired (1,662,334,827 samples, 0.03%)</title><rect x="1186.2" y="485" width="0.4" height="15.0" fill="rgb(245,11,26)" rx="2" ry="2" />
+<text  x="1189.18" y="495.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (14,261,162,546 samples, 0.28%)</title><rect x="835.9" y="357" width="3.3" height="15.0" fill="rgb(233,188,47)" rx="2" ry="2" />
+<text  x="838.92" y="367.5" ></text>
+</g>
+<g >
+<title>file_pread (1,189,414,685 samples, 0.02%)</title><rect x="283.9" y="517" width="0.3" height="15.0" fill="rgb(236,63,48)" rx="2" ry="2" />
+<text  x="286.90" y="527.5" ></text>
+</g>
+<g >
+<title>copy_page_to_iter (34,619,588,507 samples, 0.67%)</title><rect x="387.3" y="341" width="7.9" height="15.0" fill="rgb(242,213,37)" rx="2" ry="2" />
+<text  x="390.29" y="351.5" ></text>
+</g>
+<g >
+<title>check_preempt_wakeup (1,518,802,802 samples, 0.03%)</title><rect x="374.5" y="325" width="0.4" height="15.0" fill="rgb(229,57,21)" rx="2" ry="2" />
+<text  x="377.53" y="335.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (6,906,899,824 samples, 0.13%)</title><rect x="791.6" y="293" width="1.5" height="15.0" fill="rgb(226,52,3)" rx="2" ry="2" />
+<text  x="794.56" y="303.5" ></text>
+</g>
+<g >
+<title>psi_group_change (696,057,130 samples, 0.01%)</title><rect x="323.3" y="261" width="0.2" height="15.0" fill="rgb(219,227,18)" rx="2" ry="2" />
+<text  x="326.30" y="271.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,432,040,337 samples, 0.03%)</title><rect x="280.6" y="517" width="0.4" height="15.0" fill="rgb(234,162,3)" rx="2" ry="2" />
+<text  x="283.62" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,411,160,113 samples, 0.03%)</title><rect x="276.0" y="453" width="0.3" height="15.0" fill="rgb(230,52,42)" rx="2" ry="2" />
+<text  x="279.00" y="463.5" ></text>
+</g>
+<g >
+<title>poll_idle (19,914,517,209 samples, 0.39%)</title><rect x="1067.9" y="453" width="4.6" height="15.0" fill="rgb(214,158,20)" rx="2" ry="2" />
+<text  x="1070.94" y="463.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (3,306,625,718 samples, 0.06%)</title><rect x="934.5" y="341" width="0.8" height="15.0" fill="rgb(225,195,40)" rx="2" ry="2" />
+<text  x="937.52" y="351.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (5,953,738,820 samples, 0.12%)</title><rect x="269.9" y="165" width="1.4" height="15.0" fill="rgb(253,74,3)" rx="2" ry="2" />
+<text  x="272.92" y="175.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (11,598,077,951 samples, 0.22%)</title><rect x="1175.3" y="389" width="2.7" height="15.0" fill="rgb(246,125,37)" rx="2" ry="2" />
+<text  x="1178.35" y="399.5" ></text>
+</g>
+<g >
+<title>run_rebalance_domains (668,896,797 samples, 0.01%)</title><rect x="1042.1" y="389" width="0.2" height="15.0" fill="rgb(212,206,18)" rx="2" ry="2" />
+<text  x="1045.11" y="399.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (2,164,614,836 samples, 0.04%)</title><rect x="85.4" y="117" width="0.5" height="15.0" fill="rgb(230,60,27)" rx="2" ry="2" />
+<text  x="88.40" y="127.5" ></text>
+</g>
+<g >
+<title>sock_poll (29,971,516,310 samples, 0.58%)</title><rect x="149.8" y="261" width="6.8" height="15.0" fill="rgb(217,98,44)" rx="2" ry="2" />
+<text  x="152.76" y="271.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (1,525,926,337 samples, 0.03%)</title><rect x="792.2" y="229" width="0.4" height="15.0" fill="rgb(237,85,14)" rx="2" ry="2" />
+<text  x="795.21" y="239.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_sendmsg (2,417,615,823 samples, 0.05%)</title><rect x="921.2" y="357" width="0.6" height="15.0" fill="rgb(249,162,54)" rx="2" ry="2" />
+<text  x="924.25" y="367.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,036,747,309 samples, 0.02%)</title><rect x="10.1" y="453" width="0.2" height="15.0" fill="rgb(212,129,19)" rx="2" ry="2" />
+<text  x="13.06" y="463.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (3,185,765,908 samples, 0.06%)</title><rect x="766.6" y="261" width="0.7" height="15.0" fill="rgb(252,48,41)" rx="2" ry="2" />
+<text  x="769.57" y="271.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (829,890,231 samples, 0.02%)</title><rect x="406.5" y="437" width="0.2" height="15.0" fill="rgb(249,31,32)" rx="2" ry="2" />
+<text  x="409.54" y="447.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (570,847,475 samples, 0.01%)</title><rect x="849.1" y="341" width="0.1" height="15.0" fill="rgb(227,124,11)" rx="2" ry="2" />
+<text  x="852.07" y="351.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (3,652,945,752 samples, 0.07%)</title><rect x="201.7" y="245" width="0.8" height="15.0" fill="rgb(240,225,40)" rx="2" ry="2" />
+<text  x="204.68" y="255.5" ></text>
+</g>
+<g >
+<title>__send (887,618,817 samples, 0.02%)</title><rect x="285.0" y="549" width="0.2" height="15.0" fill="rgb(216,114,6)" rx="2" ry="2" />
+<text  x="288.00" y="559.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (504,836,302 samples, 0.01%)</title><rect x="382.3" y="437" width="0.1" height="15.0" fill="rgb(238,143,29)" rx="2" ry="2" />
+<text  x="385.30" y="447.5" ></text>
+</g>
+<g >
+<title>nbd_internal_retire_and_free_command (675,002,082 samples, 0.01%)</title><rect x="122.5" y="341" width="0.1" height="15.0" fill="rgb(229,126,43)" rx="2" ry="2" />
+<text  x="125.49" y="351.5" ></text>
+</g>
+<g >
+<title>__wrgsbase_inactive (1,000,324,544 samples, 0.02%)</title><rect x="1019.2" y="549" width="0.3" height="15.0" fill="rgb(251,30,28)" rx="2" ry="2" />
+<text  x="1022.25" y="559.5" ></text>
+</g>
+<g >
+<title>refill_stock (497,306,222 samples, 0.01%)</title><rect x="883.0" y="309" width="0.1" height="15.0" fill="rgb(230,112,37)" rx="2" ry="2" />
+<text  x="886.02" y="319.5" ></text>
+</g>
+<g >
+<title>__send (202,641,004,323 samples, 3.93%)</title><rect x="61.5" y="309" width="46.4" height="15.0" fill="rgb(209,182,5)" rx="2" ry="2" />
+<text  x="64.52" y="319.5" >__send</text>
+</g>
+<g >
+<title>unix_stream_read_generic (96,936,407,092 samples, 1.88%)</title><rect x="179.3" y="197" width="22.2" height="15.0" fill="rgb(205,79,14)" rx="2" ry="2" />
+<text  x="182.33" y="207.5" >u..</text>
+</g>
+<g >
+<title>psi_task_switch (13,479,574,014 samples, 0.26%)</title><rect x="1181.2" y="453" width="3.0" height="15.0" fill="rgb(235,34,0)" rx="2" ry="2" />
+<text  x="1184.16" y="463.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (696,077,086 samples, 0.01%)</title><rect x="1084.3" y="469" width="0.1" height="15.0" fill="rgb(225,88,36)" rx="2" ry="2" />
+<text  x="1087.26" y="479.5" ></text>
+</g>
+<g >
+<title>update_load_avg (807,042,446 samples, 0.02%)</title><rect x="1024.3" y="357" width="0.2" height="15.0" fill="rgb(232,37,52)" rx="2" ry="2" />
+<text  x="1027.31" y="367.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (850,680,037 samples, 0.02%)</title><rect x="793.8" y="277" width="0.2" height="15.0" fill="rgb(246,162,0)" rx="2" ry="2" />
+<text  x="796.83" y="287.5" ></text>
+</g>
+<g >
+<title>[unknown] (4,072,062,573 samples, 0.08%)</title><rect x="10.1" y="517" width="0.9" height="15.0" fill="rgb(220,145,18)" rx="2" ry="2" />
+<text  x="13.06" y="527.5" ></text>
+</g>
+<g >
+<title>unlock_request (14,028,577,427 samples, 0.27%)</title><rect x="1011.6" y="485" width="3.2" height="15.0" fill="rgb(228,36,23)" rx="2" ry="2" />
+<text  x="1014.56" y="495.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,026,405,200 samples, 0.02%)</title><rect x="268.9" y="149" width="0.2" height="15.0" fill="rgb(249,77,6)" rx="2" ry="2" />
+<text  x="271.86" y="159.5" ></text>
+</g>
+<g >
+<title>unlock_file (673,856,858 samples, 0.01%)</title><rect x="110.2" y="421" width="0.2" height="15.0" fill="rgb(207,141,22)" rx="2" ry="2" />
+<text  x="113.21" y="431.5" ></text>
+</g>
+<g >
+<title>__rcu_read_unlock (731,792,269 samples, 0.01%)</title><rect x="85.2" y="133" width="0.2" height="15.0" fill="rgb(246,36,32)" rx="2" ry="2" />
+<text  x="88.19" y="143.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (3,450,859,378 samples, 0.07%)</title><rect x="1017.1" y="277" width="0.8" height="15.0" fill="rgb(234,101,52)" rx="2" ry="2" />
+<text  x="1020.15" y="287.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (856,210,901 samples, 0.02%)</title><rect x="1022.0" y="389" width="0.2" height="15.0" fill="rgb(237,59,36)" rx="2" ry="2" />
+<text  x="1025.02" y="399.5" ></text>
+</g>
+<g >
+<title>up_write (9,252,146,817 samples, 0.18%)</title><rect x="803.9" y="341" width="2.1" height="15.0" fill="rgb(230,22,7)" rx="2" ry="2" />
+<text  x="806.87" y="351.5" ></text>
+</g>
+<g >
+<title>[perf] (3,896,038,412 samples, 0.08%)</title><rect x="1017.1" y="437" width="0.9" height="15.0" fill="rgb(219,139,4)" rx="2" ry="2" />
+<text  x="1020.08" y="447.5" ></text>
+</g>
+<g >
+<title>__folio_put (28,237,192,622 samples, 0.55%)</title><rect x="851.5" y="309" width="6.4" height="15.0" fill="rgb(238,73,28)" rx="2" ry="2" />
+<text  x="854.46" y="319.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (2,609,474,691 samples, 0.05%)</title><rect x="1002.4" y="277" width="0.6" height="15.0" fill="rgb(232,210,2)" rx="2" ry="2" />
+<text  x="1005.40" y="287.5" ></text>
+</g>
+<g >
+<title>backend_pwrite (1,765,082,030,344 samples, 34.23%)</title><rect x="405.8" y="485" width="403.9" height="15.0" fill="rgb(214,93,8)" rx="2" ry="2" />
+<text  x="408.78" y="495.5" >backend_pwrite</text>
+</g>
+<g >
+<title>skb_unlink (2,102,501,583 samples, 0.04%)</title><rect x="216.6" y="165" width="0.5" height="15.0" fill="rgb(216,179,5)" rx="2" ry="2" />
+<text  x="219.62" y="175.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (1,751,595,399,152 samples, 33.97%)</title><rect x="408.6" y="421" width="400.9" height="15.0" fill="rgb(239,112,45)" rx="2" ry="2" />
+<text  x="411.62" y="431.5" >entry_SYSCALL_64_after_hwframe</text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (1,042,319,112 samples, 0.02%)</title><rect x="141.4" y="245" width="0.3" height="15.0" fill="rgb(236,145,43)" rx="2" ry="2" />
+<text  x="144.43" y="255.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (752,346,327 samples, 0.01%)</title><rect x="1029.4" y="469" width="0.2" height="15.0" fill="rgb(206,128,35)" rx="2" ry="2" />
+<text  x="1032.41" y="479.5" ></text>
+</g>
+<g >
+<title>__fdget_pos (7,089,922,498 samples, 0.14%)</title><rect x="823.6" y="405" width="1.6" height="15.0" fill="rgb(206,182,34)" rx="2" ry="2" />
+<text  x="826.60" y="415.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (128,981,616,948 samples, 2.50%)</title><rect x="224.4" y="197" width="29.6" height="15.0" fill="rgb(220,205,23)" rx="2" ry="2" />
+<text  x="227.44" y="207.5" >un..</text>
+</g>
+<g >
+<title>plugin_pwrite (1,206,530,925 samples, 0.02%)</title><rect x="284.2" y="533" width="0.2" height="15.0" fill="rgb(216,23,33)" rx="2" ry="2" />
+<text  x="287.17" y="543.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,559,763,059 samples, 0.03%)</title><rect x="276.0" y="469" width="0.4" height="15.0" fill="rgb(210,202,37)" rx="2" ry="2" />
+<text  x="279.00" y="479.5" ></text>
+</g>
+<g >
+<title>recv_into_rbuf.lto_priv.0 (148,685,233,792 samples, 2.88%)</title><rect x="220.6" y="309" width="34.1" height="15.0" fill="rgb(215,11,36)" rx="2" ry="2" />
+<text  x="223.65" y="319.5" >re..</text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (549,186,611 samples, 0.01%)</title><rect x="278.3" y="437" width="0.1" height="15.0" fill="rgb(227,0,0)" rx="2" ry="2" />
+<text  x="281.32" y="447.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (1,350,038,538 samples, 0.03%)</title><rect x="882.8" y="325" width="0.3" height="15.0" fill="rgb(237,47,36)" rx="2" ry="2" />
+<text  x="885.82" y="335.5" ></text>
+</g>
+<g >
+<title>ktime_get (1,381,787,340 samples, 0.03%)</title><rect x="1186.9" y="469" width="0.3" height="15.0" fill="rgb(208,196,0)" rx="2" ry="2" />
+<text  x="1189.90" y="479.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (10,671,135,088 samples, 0.21%)</title><rect x="974.6" y="245" width="2.4" height="15.0" fill="rgb(234,145,35)" rx="2" ry="2" />
+<text  x="977.58" y="255.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (451,957,997 samples, 0.01%)</title><rect x="55.0" y="181" width="0.1" height="15.0" fill="rgb(206,103,37)" rx="2" ry="2" />
+<text  x="58.03" y="191.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,477,662,802 samples, 0.03%)</title><rect x="278.6" y="485" width="0.4" height="15.0" fill="rgb(223,81,50)" rx="2" ry="2" />
+<text  x="281.63" y="495.5" ></text>
+</g>
+<g >
+<title>plugin_pread (774,947,061 samples, 0.02%)</title><rect x="814.5" y="485" width="0.2" height="15.0" fill="rgb(226,10,32)" rx="2" ry="2" />
+<text  x="817.52" y="495.5" ></text>
+</g>
+<g >
+<title>_find_next_and_bit (831,072,281 samples, 0.02%)</title><rect x="327.3" y="261" width="0.2" height="15.0" fill="rgb(207,82,32)" rx="2" ry="2" />
+<text  x="330.32" y="271.5" ></text>
+</g>
+<g >
+<title>kworker/u64:5-k (1,355,013,535 samples, 0.03%)</title><rect x="282.1" y="565" width="0.3" height="15.0" fill="rgb(231,91,38)" rx="2" ry="2" />
+<text  x="285.10" y="575.5" ></text>
+</g>
+<g >
+<title>all (5,156,376,823,268 samples, 100%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(220,8,7)" rx="2" ry="2" />
+<text  x="13.00" y="591.5" ></text>
+</g>
+<g >
+<title>update_load_avg (1,256,425,360 samples, 0.02%)</title><rect x="331.9" y="309" width="0.3" height="15.0" fill="rgb(240,69,48)" rx="2" ry="2" />
+<text  x="334.94" y="319.5" ></text>
+</g>
+<g >
+<title>unix_write_space (1,432,184,391 samples, 0.03%)</title><rect x="876.8" y="277" width="0.4" height="15.0" fill="rgb(213,100,40)" rx="2" ry="2" />
+<text  x="879.83" y="287.5" ></text>
+</g>
+<g >
+<title>simple_copy_to_iter (6,587,083,159 samples, 0.13%)</title><rect x="252.5" y="117" width="1.5" height="15.0" fill="rgb(215,58,40)" rx="2" ry="2" />
+<text  x="255.45" y="127.5" ></text>
+</g>
+<g >
+<title>update_load_avg (540,770,113 samples, 0.01%)</title><rect x="147.8" y="181" width="0.1" height="15.0" fill="rgb(247,154,19)" rx="2" ry="2" />
+<text  x="150.79" y="191.5" ></text>
+</g>
+<g >
+<title>inode_security (996,076,828 samples, 0.02%)</title><rect x="833.9" y="357" width="0.2" height="15.0" fill="rgb(229,53,34)" rx="2" ry="2" />
+<text  x="836.89" y="367.5" ></text>
+</g>
+<g >
+<title>__rdgsbase_inactive (1,164,206,274 samples, 0.02%)</title><rect x="1018.1" y="549" width="0.3" height="15.0" fill="rgb(224,175,43)" rx="2" ry="2" />
+<text  x="1021.13" y="559.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (1,714,295,403 samples, 0.03%)</title><rect x="55.8" y="277" width="0.4" height="15.0" fill="rgb(219,16,36)" rx="2" ry="2" />
+<text  x="58.83" y="287.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,316,610,499 samples, 0.03%)</title><rect x="1166.8" y="405" width="0.3" height="15.0" fill="rgb(245,12,14)" rx="2" ry="2" />
+<text  x="1169.78" y="415.5" ></text>
+</g>
+<g >
+<title>__fget_light (2,467,790,682 samples, 0.05%)</title><rect x="139.7" y="261" width="0.5" height="15.0" fill="rgb(236,53,43)" rx="2" ry="2" />
+<text  x="142.66" y="271.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (935,316,770 samples, 0.02%)</title><rect x="257.8" y="213" width="0.2" height="15.0" fill="rgb(231,27,7)" rx="2" ry="2" />
+<text  x="260.80" y="223.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,161,350,818 samples, 0.02%)</title><rect x="192.9" y="149" width="0.3" height="15.0" fill="rgb(212,72,33)" rx="2" ry="2" />
+<text  x="195.94" y="159.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (2,691,353,403 samples, 0.05%)</title><rect x="861.5" y="277" width="0.6" height="15.0" fill="rgb(237,208,13)" rx="2" ry="2" />
+<text  x="864.49" y="287.5" ></text>
+</g>
+<g >
+<title>start_kernel (31,308,706,217 samples, 0.61%)</title><rect x="1020.5" y="533" width="7.2" height="15.0" fill="rgb(223,202,11)" rx="2" ry="2" />
+<text  x="1023.52" y="543.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (922,795,372 samples, 0.02%)</title><rect x="235.2" y="101" width="0.2" height="15.0" fill="rgb(244,48,30)" rx="2" ry="2" />
+<text  x="238.17" y="111.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (1,298,635,697 samples, 0.03%)</title><rect x="73.9" y="165" width="0.3" height="15.0" fill="rgb(231,146,23)" rx="2" ry="2" />
+<text  x="76.92" y="175.5" ></text>
+</g>
+<g >
+<title>__check_object_size (19,433,730,740 samples, 0.38%)</title><rect x="902.0" y="277" width="4.5" height="15.0" fill="rgb(244,52,47)" rx="2" ry="2" />
+<text  x="905.03" y="287.5" ></text>
+</g>
+<g >
+<title>scheduler_tick (1,757,742,832 samples, 0.03%)</title><rect x="766.7" y="181" width="0.4" height="15.0" fill="rgb(246,228,24)" rx="2" ry="2" />
+<text  x="769.74" y="191.5" ></text>
+</g>
+<g >
+<title>__send (1,635,904,055 samples, 0.03%)</title><rect x="10.3" y="437" width="0.4" height="15.0" fill="rgb(222,189,39)" rx="2" ry="2" />
+<text  x="13.35" y="447.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (2,702,397,615 samples, 0.05%)</title><rect x="886.3" y="341" width="0.6" height="15.0" fill="rgb(249,108,24)" rx="2" ry="2" />
+<text  x="889.26" y="351.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,321,153,538 samples, 0.03%)</title><rect x="281.1" y="549" width="0.3" height="15.0" fill="rgb(229,170,9)" rx="2" ry="2" />
+<text  x="284.14" y="559.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_actor (6,452,563,921 samples, 0.13%)</title><rect x="269.8" y="181" width="1.5" height="15.0" fill="rgb(215,173,35)" rx="2" ry="2" />
+<text  x="272.81" y="191.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (1,484,426,553 samples, 0.03%)</title><rect x="810.2" y="469" width="0.4" height="15.0" fill="rgb(229,140,28)" rx="2" ry="2" />
+<text  x="813.21" y="479.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (1,628,673,501 samples, 0.03%)</title><rect x="792.2" y="245" width="0.4" height="15.0" fill="rgb(218,63,41)" rx="2" ry="2" />
+<text  x="795.18" y="255.5" ></text>
+</g>
+<g >
+<title>__check_heap_object (1,072,164,468 samples, 0.02%)</title><rect x="200.5" y="101" width="0.3" height="15.0" fill="rgb(234,179,27)" rx="2" ry="2" />
+<text  x="203.55" y="111.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (722,904,882 samples, 0.01%)</title><rect x="1151.8" y="453" width="0.2" height="15.0" fill="rgb(254,70,10)" rx="2" ry="2" />
+<text  x="1154.84" y="463.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (24,731,663,999 samples, 0.48%)</title><rect x="97.7" y="149" width="5.7" height="15.0" fill="rgb(247,90,11)" rx="2" ry="2" />
+<text  x="100.73" y="159.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (484,683,138 samples, 0.01%)</title><rect x="277.0" y="437" width="0.1" height="15.0" fill="rgb(207,148,53)" rx="2" ry="2" />
+<text  x="279.95" y="447.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (2,422,023,203 samples, 0.05%)</title><rect x="1010.8" y="453" width="0.5" height="15.0" fill="rgb(224,25,10)" rx="2" ry="2" />
+<text  x="1013.79" y="463.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (3,215,278,065 samples, 0.06%)</title><rect x="800.6" y="277" width="0.7" height="15.0" fill="rgb(232,209,13)" rx="2" ry="2" />
+<text  x="803.57" y="287.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,442,906,589 samples, 0.03%)</title><rect x="283.2" y="517" width="0.3" height="15.0" fill="rgb(250,42,7)" rx="2" ry="2" />
+<text  x="286.17" y="527.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (919,651,443 samples, 0.02%)</title><rect x="767.4" y="277" width="0.2" height="15.0" fill="rgb(209,126,18)" rx="2" ry="2" />
+<text  x="770.36" y="287.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (714,480,178 samples, 0.01%)</title><rect x="1178.2" y="405" width="0.2" height="15.0" fill="rgb(249,43,11)" rx="2" ry="2" />
+<text  x="1181.23" y="415.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,549,439,567 samples, 0.03%)</title><rect x="277.3" y="549" width="0.3" height="15.0" fill="rgb(249,11,8)" rx="2" ry="2" />
+<text  x="280.27" y="559.5" ></text>
+</g>
+<g >
+<title>__libc_recv (2,181,931,206 samples, 0.04%)</title><rect x="11.0" y="517" width="0.5" height="15.0" fill="rgb(249,188,3)" rx="2" ry="2" />
+<text  x="13.99" y="527.5" ></text>
+</g>
+<g >
+<title>run_rebalance_domains (480,367,348 samples, 0.01%)</title><rect x="766.4" y="245" width="0.1" height="15.0" fill="rgb(223,223,13)" rx="2" ry="2" />
+<text  x="769.42" y="255.5" ></text>
+</g>
+<g >
+<title>__fsnotify_parent (1,097,910,686 samples, 0.02%)</title><rect x="411.8" y="357" width="0.3" height="15.0" fill="rgb(224,135,8)" rx="2" ry="2" />
+<text  x="414.83" y="367.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (3,943,241,517 samples, 0.08%)</title><rect x="940.5" y="325" width="0.9" height="15.0" fill="rgb(236,60,23)" rx="2" ry="2" />
+<text  x="943.48" y="335.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (14,699,371,414 samples, 0.29%)</title><rect x="324.5" y="277" width="3.3" height="15.0" fill="rgb(234,89,42)" rx="2" ry="2" />
+<text  x="327.47" y="287.5" ></text>
+</g>
+<g >
+<title>nbd_aio_pread (101,631,668,001 samples, 1.97%)</title><rect x="33.5" y="405" width="23.3" height="15.0" fill="rgb(215,167,22)" rx="2" ry="2" />
+<text  x="36.53" y="415.5" >n..</text>
+</g>
+<g >
+<title>ttwu_do_wakeup (439,901,078 samples, 0.01%)</title><rect x="1003.0" y="277" width="0.1" height="15.0" fill="rgb(222,5,12)" rx="2" ry="2" />
+<text  x="1005.99" y="287.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,322,783,090 samples, 0.03%)</title><rect x="278.6" y="453" width="0.3" height="15.0" fill="rgb(241,167,21)" rx="2" ry="2" />
+<text  x="281.64" y="463.5" ></text>
+</g>
+<g >
+<title>__switch_to_asm (491,491,371 samples, 0.01%)</title><rect x="408.3" y="421" width="0.2" height="15.0" fill="rgb(221,21,40)" rx="2" ry="2" />
+<text  x="411.35" y="431.5" ></text>
+</g>
+<g >
+<title>pthread_getspecific@@GLIBC_2.34 (5,220,583,092 samples, 0.10%)</title><rect x="814.8" y="485" width="1.2" height="15.0" fill="rgb(251,52,35)" rx="2" ry="2" />
+<text  x="817.82" y="495.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (2,522,333,923 samples, 0.05%)</title><rect x="336.8" y="309" width="0.5" height="15.0" fill="rgb(228,60,5)" rx="2" ry="2" />
+<text  x="339.77" y="319.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (14,101,999,304 samples, 0.27%)</title><rect x="973.9" y="261" width="3.3" height="15.0" fill="rgb(239,142,15)" rx="2" ry="2" />
+<text  x="976.94" y="271.5" ></text>
+</g>
+<g >
+<title>__memcg_kmem_charge_page (8,966,421,736 samples, 0.17%)</title><rect x="84.6" y="149" width="2.0" height="15.0" fill="rgb(246,211,45)" rx="2" ry="2" />
+<text  x="87.55" y="159.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (2,066,995,438 samples, 0.04%)</title><rect x="259.5" y="181" width="0.5" height="15.0" fill="rgb(229,152,12)" rx="2" ry="2" />
+<text  x="262.53" y="191.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (240,514,125,713 samples, 4.66%)</title><rect x="295.7" y="469" width="55.1" height="15.0" fill="rgb(246,205,34)" rx="2" ry="2" />
+<text  x="298.75" y="479.5" >entry..</text>
+</g>
+<g >
+<title>put_io_u (3,696,741,389 samples, 0.07%)</title><rect x="117.4" y="405" width="0.9" height="15.0" fill="rgb(219,7,10)" rx="2" ry="2" />
+<text  x="120.42" y="415.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (1,313,698,568 samples, 0.03%)</title><rect x="123.3" y="357" width="0.3" height="15.0" fill="rgb(222,165,25)" rx="2" ry="2" />
+<text  x="126.28" y="367.5" ></text>
+</g>
+<g >
+<title>rcu_note_context_switch (1,205,171,971 samples, 0.02%)</title><rect x="1184.4" y="453" width="0.3" height="15.0" fill="rgb(213,192,50)" rx="2" ry="2" />
+<text  x="1187.40" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (68,522,713,619 samples, 1.33%)</title><rect x="204.4" y="245" width="15.7" height="15.0" fill="rgb(209,98,21)" rx="2" ry="2" />
+<text  x="207.38" y="255.5" ></text>
+</g>
+<g >
+<title>xas_load (7,744,114,739 samples, 0.15%)</title><rect x="399.6" y="309" width="1.7" height="15.0" fill="rgb(218,145,46)" rx="2" ry="2" />
+<text  x="402.57" y="319.5" ></text>
+</g>
+<g >
+<title>xas_start (643,046,902 samples, 0.01%)</title><rect x="432.6" y="261" width="0.1" height="15.0" fill="rgb(230,196,48)" rx="2" ry="2" />
+<text  x="435.60" y="271.5" ></text>
+</g>
+<g >
+<title>unix_destruct_scm (5,891,255,185 samples, 0.11%)</title><rect x="239.9" y="133" width="1.4" height="15.0" fill="rgb(232,101,8)" rx="2" ry="2" />
+<text  x="242.90" y="143.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (3,456,144,282 samples, 0.07%)</title><rect x="257.0" y="197" width="0.8" height="15.0" fill="rgb(207,55,29)" rx="2" ry="2" />
+<text  x="260.01" y="207.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (695,536,133 samples, 0.01%)</title><rect x="276.0" y="437" width="0.2" height="15.0" fill="rgb(251,7,4)" rx="2" ry="2" />
+<text  x="279.00" y="447.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (1,446,136,307 samples, 0.03%)</title><rect x="48.3" y="133" width="0.3" height="15.0" fill="rgb(223,51,22)" rx="2" ry="2" />
+<text  x="51.28" y="143.5" ></text>
+</g>
+<g >
+<title>__switch_to (1,998,309,944 samples, 0.04%)</title><rect x="305.2" y="341" width="0.4" height="15.0" fill="rgb(246,224,21)" rx="2" ry="2" />
+<text  x="308.16" y="351.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,061,149,882 samples, 0.02%)</title><rect x="276.4" y="549" width="0.2" height="15.0" fill="rgb(216,178,16)" rx="2" ry="2" />
+<text  x="279.36" y="559.5" ></text>
+</g>
+<g >
+<title>raw_recv (690,170,428 samples, 0.01%)</title><rect x="1016.5" y="501" width="0.1" height="15.0" fill="rgb(216,12,0)" rx="2" ry="2" />
+<text  x="1019.49" y="511.5" ></text>
+</g>
+<g >
+<title>generic_write_check_limits (1,248,145,600 samples, 0.02%)</title><rect x="414.8" y="309" width="0.3" height="15.0" fill="rgb(253,184,4)" rx="2" ry="2" />
+<text  x="417.85" y="319.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (461,157,543 samples, 0.01%)</title><rect x="315.6" y="309" width="0.1" height="15.0" fill="rgb(209,64,18)" rx="2" ry="2" />
+<text  x="318.63" y="319.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,008,950,556 samples, 0.02%)</title><rect x="281.5" y="453" width="0.2" height="15.0" fill="rgb(225,56,21)" rx="2" ry="2" />
+<text  x="284.46" y="463.5" ></text>
+</g>
+<g >
+<title>futex_wake_mark (6,489,715,128 samples, 0.13%)</title><rect x="357.9" y="389" width="1.5" height="15.0" fill="rgb(231,141,39)" rx="2" ry="2" />
+<text  x="360.92" y="399.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (8,748,858,327 samples, 0.17%)</title><rect x="1175.7" y="373" width="2.0" height="15.0" fill="rgb(215,95,54)" rx="2" ry="2" />
+<text  x="1178.66" y="383.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (11,368,754,000 samples, 0.22%)</title><rect x="69.3" y="197" width="2.6" height="15.0" fill="rgb(247,129,5)" rx="2" ry="2" />
+<text  x="72.27" y="207.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (1,614,763,250 samples, 0.03%)</title><rect x="330.0" y="293" width="0.4" height="15.0" fill="rgb(242,154,29)" rx="2" ry="2" />
+<text  x="333.00" y="303.5" ></text>
+</g>
+<g >
+<title>enter_STATE_REPLY_STRUCTURED_REPLY_CHECK.constprop.0 (551,755,770 samples, 0.01%)</title><rect x="166.6" y="325" width="0.1" height="15.0" fill="rgb(235,23,24)" rx="2" ry="2" />
+<text  x="169.59" y="335.5" ></text>
+</g>
+<g >
+<title>error_entry (3,222,557,528 samples, 0.06%)</title><rect x="1067.2" y="453" width="0.7" height="15.0" fill="rgb(213,84,43)" rx="2" ry="2" />
+<text  x="1070.20" y="463.5" ></text>
+</g>
+<g >
+<title>wb_writeback (623,740,903 samples, 0.01%)</title><rect x="282.3" y="469" width="0.1" height="15.0" fill="rgb(213,215,22)" rx="2" ry="2" />
+<text  x="285.27" y="479.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (1,268,058,715 samples, 0.02%)</title><rect x="157.4" y="261" width="0.3" height="15.0" fill="rgb(226,144,6)" rx="2" ry="2" />
+<text  x="160.44" y="271.5" ></text>
+</g>
+<g >
+<title>update_curr (12,406,548,533 samples, 0.24%)</title><rect x="309.3" y="309" width="2.8" height="15.0" fill="rgb(213,196,43)" rx="2" ry="2" />
+<text  x="312.28" y="319.5" ></text>
+</g>
+<g >
+<title>psi_group_change (438,590,839 samples, 0.01%)</title><rect x="318.0" y="213" width="0.1" height="15.0" fill="rgb(222,205,49)" rx="2" ry="2" />
+<text  x="321.02" y="223.5" ></text>
+</g>
+<g >
+<title>skb_set_owner_w (3,661,821,023 samples, 0.07%)</title><rect x="53.9" y="197" width="0.9" height="15.0" fill="rgb(216,138,44)" rx="2" ry="2" />
+<text  x="56.95" y="207.5" ></text>
+</g>
+<g >
+<title>__fget_light (4,293,776,046 samples, 0.08%)</title><rect x="409.5" y="373" width="1.0" height="15.0" fill="rgb(243,140,31)" rx="2" ry="2" />
+<text  x="412.49" y="383.5" ></text>
+</g>
+<g >
+<title>__slab_alloc.isra.0 (2,633,994,783 samples, 0.05%)</title><rect x="98.6" y="133" width="0.6" height="15.0" fill="rgb(254,173,52)" rx="2" ry="2" />
+<text  x="101.64" y="143.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (3,439,161,537 samples, 0.07%)</title><rect x="838.4" y="325" width="0.8" height="15.0" fill="rgb(249,124,21)" rx="2" ry="2" />
+<text  x="841.40" y="335.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (502,998,106 samples, 0.01%)</title><rect x="1029.4" y="453" width="0.1" height="15.0" fill="rgb(216,115,21)" rx="2" ry="2" />
+<text  x="1032.43" y="463.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (571,813,710 samples, 0.01%)</title><rect x="1084.4" y="469" width="0.2" height="15.0" fill="rgb(245,218,15)" rx="2" ry="2" />
+<text  x="1087.42" y="479.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (1,022,959,742 samples, 0.02%)</title><rect x="1064.5" y="389" width="0.2" height="15.0" fill="rgb(245,3,23)" rx="2" ry="2" />
+<text  x="1067.50" y="399.5" ></text>
+</g>
+<g >
+<title>skb_queue_tail (2,000,513,833 samples, 0.04%)</title><rect x="45.4" y="213" width="0.5" height="15.0" fill="rgb(225,134,10)" rx="2" ry="2" />
+<text  x="48.39" y="223.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (9,229,621,347 samples, 0.18%)</title><rect x="267.0" y="181" width="2.1" height="15.0" fill="rgb(211,10,15)" rx="2" ry="2" />
+<text  x="270.00" y="191.5" ></text>
+</g>
+<g >
+<title>crypt_convert (713,878,794 samples, 0.01%)</title><rect x="282.1" y="469" width="0.2" height="15.0" fill="rgb(205,26,49)" rx="2" ry="2" />
+<text  x="285.10" y="479.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.isra.0 (2,938,898,976 samples, 0.06%)</title><rect x="434.0" y="309" width="0.7" height="15.0" fill="rgb(207,15,29)" rx="2" ry="2" />
+<text  x="437.03" y="319.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (4,277,426,306 samples, 0.08%)</title><rect x="1017.1" y="517" width="1.0" height="15.0" fill="rgb(254,181,0)" rx="2" ry="2" />
+<text  x="1020.08" y="527.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (724,626,361 samples, 0.01%)</title><rect x="809.5" y="421" width="0.2" height="15.0" fill="rgb(230,167,31)" rx="2" ry="2" />
+<text  x="812.54" y="431.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (702,797,638 samples, 0.01%)</title><rect x="1017.8" y="229" width="0.1" height="15.0" fill="rgb(205,166,53)" rx="2" ry="2" />
+<text  x="1020.77" y="239.5" ></text>
+</g>
+<g >
+<title>cfree@GLIBC_2.2.5 (3,733,798,489 samples, 0.07%)</title><rect x="121.6" y="341" width="0.9" height="15.0" fill="rgb(238,207,18)" rx="2" ry="2" />
+<text  x="124.64" y="351.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (799,972,738 samples, 0.02%)</title><rect x="210.6" y="117" width="0.2" height="15.0" fill="rgb(254,77,6)" rx="2" ry="2" />
+<text  x="213.62" y="127.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (529,582,553 samples, 0.01%)</title><rect x="853.0" y="261" width="0.1" height="15.0" fill="rgb(232,108,21)" rx="2" ry="2" />
+<text  x="856.00" y="271.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (4,017,768,954 samples, 0.08%)</title><rect x="1176.1" y="325" width="0.9" height="15.0" fill="rgb(235,0,28)" rx="2" ry="2" />
+<text  x="1179.10" y="335.5" ></text>
+</g>
+<g >
+<title>__check_object_size (2,632,507,691 samples, 0.05%)</title><rect x="270.7" y="117" width="0.6" height="15.0" fill="rgb(242,130,44)" rx="2" ry="2" />
+<text  x="273.68" y="127.5" ></text>
+</g>
+<g >
+<title>cpuidle_governor_latency_req (2,930,561,277 samples, 0.06%)</title><rect x="1148.5" y="469" width="0.6" height="15.0" fill="rgb(248,169,34)" rx="2" ry="2" />
+<text  x="1151.47" y="479.5" ></text>
+</g>
+<g >
+<title>psi_account_irqtime (1,570,301,269 samples, 0.03%)</title><rect x="328.2" y="277" width="0.4" height="15.0" fill="rgb(242,227,49)" rx="2" ry="2" />
+<text  x="331.19" y="287.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,306,472,119 samples, 0.03%)</title><rect x="279.0" y="517" width="0.3" height="15.0" fill="rgb(232,112,12)" rx="2" ry="2" />
+<text  x="281.97" y="527.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter_atomic (527,869,467 samples, 0.01%)</title><rect x="1017.2" y="261" width="0.1" height="15.0" fill="rgb(235,53,46)" rx="2" ry="2" />
+<text  x="1020.20" y="271.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,105,836,917 samples, 0.02%)</title><rect x="280.0" y="453" width="0.2" height="15.0" fill="rgb(247,138,48)" rx="2" ry="2" />
+<text  x="282.99" y="463.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter (8,911,966,312 samples, 0.17%)</title><rect x="1020.6" y="453" width="2.1" height="15.0" fill="rgb(205,0,54)" rx="2" ry="2" />
+<text  x="1023.62" y="463.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (2,565,861,459 samples, 0.05%)</title><rect x="1183.7" y="421" width="0.5" height="15.0" fill="rgb(228,59,10)" rx="2" ry="2" />
+<text  x="1186.65" y="431.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (2,558,562,955 samples, 0.05%)</title><rect x="322.2" y="245" width="0.6" height="15.0" fill="rgb(227,3,24)" rx="2" ry="2" />
+<text  x="325.19" y="255.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irq (3,100,075,866 samples, 0.06%)</title><rect x="450.8" y="325" width="0.7" height="15.0" fill="rgb(247,5,52)" rx="2" ry="2" />
+<text  x="453.76" y="335.5" ></text>
+</g>
+<g >
+<title>llist_add_batch (1,963,429,913 samples, 0.04%)</title><rect x="375.9" y="325" width="0.5" height="15.0" fill="rgb(237,178,18)" rx="2" ry="2" />
+<text  x="378.92" y="335.5" ></text>
+</g>
+<g >
+<title>load_balance (3,568,565,417 samples, 0.07%)</title><rect x="791.8" y="261" width="0.8" height="15.0" fill="rgb(247,30,15)" rx="2" ry="2" />
+<text  x="794.81" y="271.5" ></text>
+</g>
+<g >
+<title>__fio_gettime.lto_priv.0 (5,630,341,335 samples, 0.11%)</title><rect x="19.5" y="421" width="1.3" height="15.0" fill="rgb(222,141,15)" rx="2" ry="2" />
+<text  x="22.53" y="431.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (2,105,481,078 samples, 0.04%)</title><rect x="229.2" y="85" width="0.5" height="15.0" fill="rgb(240,65,34)" rx="2" ry="2" />
+<text  x="232.24" y="95.5" ></text>
+</g>
+<g >
+<title>update_curr (1,376,016,281 samples, 0.03%)</title><rect x="1113.1" y="389" width="0.3" height="15.0" fill="rgb(216,102,48)" rx="2" ry="2" />
+<text  x="1116.07" y="399.5" ></text>
+</g>
+<g >
+<title>sock_alloc_send_pskb (39,045,512,583 samples, 0.76%)</title><rect x="45.9" y="213" width="8.9" height="15.0" fill="rgb(231,170,30)" rx="2" ry="2" />
+<text  x="48.85" y="223.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,500,877,223 samples, 0.03%)</title><rect x="293.4" y="469" width="0.3" height="15.0" fill="rgb(223,159,17)" rx="2" ry="2" />
+<text  x="296.36" y="479.5" ></text>
+</g>
+<g >
+<title>available_idle_cpu (530,141,480 samples, 0.01%)</title><rect x="332.9" y="309" width="0.1" height="15.0" fill="rgb(232,190,12)" rx="2" ry="2" />
+<text  x="335.86" y="319.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,061,673,686 samples, 0.02%)</title><rect x="242.9" y="133" width="0.2" height="15.0" fill="rgb(226,19,37)" rx="2" ry="2" />
+<text  x="245.88" y="143.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (4,807,019,917 samples, 0.09%)</title><rect x="48.6" y="133" width="1.1" height="15.0" fill="rgb(241,150,49)" rx="2" ry="2" />
+<text  x="51.61" y="143.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (1,408,443,768 samples, 0.03%)</title><rect x="156.3" y="197" width="0.3" height="15.0" fill="rgb(226,164,24)" rx="2" ry="2" />
+<text  x="159.29" y="207.5" ></text>
+</g>
+<g >
+<title>tick_sched_do_timer (1,019,302,952 samples, 0.02%)</title><rect x="1043.7" y="357" width="0.2" height="15.0" fill="rgb(219,83,53)" rx="2" ry="2" />
+<text  x="1046.66" y="367.5" ></text>
+</g>
+<g >
+<title>schedule (934,429,619 samples, 0.02%)</title><rect x="907.8" y="389" width="0.2" height="15.0" fill="rgb(249,54,27)" rx="2" ry="2" />
+<text  x="910.78" y="399.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (615,741,213 samples, 0.01%)</title><rect x="857.5" y="261" width="0.2" height="15.0" fill="rgb(228,54,31)" rx="2" ry="2" />
+<text  x="860.53" y="271.5" ></text>
+</g>
+<g >
+<title>psi_account_irqtime (727,247,637 samples, 0.01%)</title><rect x="803.7" y="277" width="0.1" height="15.0" fill="rgb(222,138,23)" rx="2" ry="2" />
+<text  x="806.67" y="287.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter_atomic (32,036,042,157 samples, 0.62%)</title><rect x="419.2" y="325" width="7.3" height="15.0" fill="rgb(223,198,30)" rx="2" ry="2" />
+<text  x="422.19" y="335.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,551,227,045 samples, 0.03%)</title><rect x="279.6" y="517" width="0.3" height="15.0" fill="rgb(206,9,4)" rx="2" ry="2" />
+<text  x="282.59" y="527.5" ></text>
+</g>
+<g >
+<title>schedule (29,797,569,956 samples, 0.58%)</title><rect x="142.9" y="245" width="6.9" height="15.0" fill="rgb(208,184,54)" rx="2" ry="2" />
+<text  x="145.95" y="255.5" ></text>
+</g>
+<g >
+<title>__flush_smp_call_function_queue (1,258,949,417 samples, 0.02%)</title><rect x="1022.7" y="437" width="0.3" height="15.0" fill="rgb(246,197,36)" rx="2" ry="2" />
+<text  x="1025.73" y="447.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (30,392,978,468 samples, 0.59%)</title><rect x="944.2" y="309" width="7.0" height="15.0" fill="rgb(237,179,34)" rx="2" ry="2" />
+<text  x="947.20" y="319.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (6,647,289,076 samples, 0.13%)</title><rect x="1042.9" y="389" width="1.5" height="15.0" fill="rgb(238,169,15)" rx="2" ry="2" />
+<text  x="1045.88" y="399.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (3,083,171,028 samples, 0.06%)</title><rect x="350.9" y="469" width="0.7" height="15.0" fill="rgb(236,162,50)" rx="2" ry="2" />
+<text  x="353.94" y="479.5" ></text>
+</g>
+<g >
+<title>tick_nohz_tick_stopped (4,660,072,019 samples, 0.09%)</title><rect x="1169.7" y="469" width="1.1" height="15.0" fill="rgb(206,143,13)" rx="2" ry="2" />
+<text  x="1172.69" y="479.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (77,496,367,964 samples, 1.50%)</title><rect x="38.0" y="261" width="17.7" height="15.0" fill="rgb(254,66,20)" rx="2" ry="2" />
+<text  x="40.99" y="271.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (565,935,481 samples, 0.01%)</title><rect x="279.0" y="437" width="0.1" height="15.0" fill="rgb(249,56,20)" rx="2" ry="2" />
+<text  x="281.97" y="447.5" ></text>
+</g>
+<g >
+<title>__check_object_size (6,490,165,075 samples, 0.13%)</title><rect x="252.5" y="101" width="1.5" height="15.0" fill="rgb(233,68,39)" rx="2" ry="2" />
+<text  x="255.47" y="111.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (714,017,394 samples, 0.01%)</title><rect x="1045.8" y="421" width="0.2" height="15.0" fill="rgb(247,104,12)" rx="2" ry="2" />
+<text  x="1048.84" y="431.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (2,600,543,593 samples, 0.05%)</title><rect x="1021.6" y="421" width="0.6" height="15.0" fill="rgb(239,51,20)" rx="2" ry="2" />
+<text  x="1024.64" y="431.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (646,268,281 samples, 0.01%)</title><rect x="295.5" y="469" width="0.1" height="15.0" fill="rgb(207,103,12)" rx="2" ry="2" />
+<text  x="298.50" y="479.5" ></text>
+</g>
+<g >
+<title>nbd_internal_set_error_context (1,190,915,871 samples, 0.02%)</title><rect x="128.4" y="357" width="0.3" height="15.0" fill="rgb(239,24,8)" rx="2" ry="2" />
+<text  x="131.41" y="367.5" ></text>
+</g>
+<g >
+<title>__build_skb_around (2,579,268,736 samples, 0.05%)</title><rect x="965.9" y="309" width="0.5" height="15.0" fill="rgb(237,25,26)" rx="2" ry="2" />
+<text  x="968.85" y="319.5" ></text>
+</g>
+<g >
+<title>down_write (7,532,693,775 samples, 0.15%)</title><rect x="412.7" y="341" width="1.7" height="15.0" fill="rgb(244,1,11)" rx="2" ry="2" />
+<text  x="415.67" y="351.5" ></text>
+</g>
+<g >
+<title>[unknown] (6,507,820,500 samples, 0.13%)</title><rect x="10.1" y="533" width="1.4" height="15.0" fill="rgb(205,166,20)" rx="2" ry="2" />
+<text  x="13.06" y="543.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,585,588,752 samples, 0.03%)</title><rect x="276.0" y="517" width="0.4" height="15.0" fill="rgb(210,154,9)" rx="2" ry="2" />
+<text  x="278.99" y="527.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (4,075,242,105 samples, 0.08%)</title><rect x="223.3" y="197" width="0.9" height="15.0" fill="rgb(251,34,30)" rx="2" ry="2" />
+<text  x="226.28" y="207.5" ></text>
+</g>
+<g >
+<title>mnt_user_ns (1,293,049,038 samples, 0.03%)</title><rect x="403.3" y="309" width="0.3" height="15.0" fill="rgb(229,218,22)" rx="2" ry="2" />
+<text  x="406.28" y="319.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,425,001,218 samples, 0.03%)</title><rect x="279.3" y="485" width="0.3" height="15.0" fill="rgb(223,36,11)" rx="2" ry="2" />
+<text  x="282.27" y="495.5" ></text>
+</g>
+<g >
+<title>[unknown] (6,554,915,623 samples, 0.13%)</title><rect x="10.1" y="549" width="1.5" height="15.0" fill="rgb(249,94,23)" rx="2" ry="2" />
+<text  x="13.06" y="559.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (34,362,702,153 samples, 0.67%)</title><rect x="46.1" y="181" width="7.8" height="15.0" fill="rgb(225,161,31)" rx="2" ry="2" />
+<text  x="49.08" y="191.5" ></text>
+</g>
+<g >
+<title>enqueue_task (548,881,409 samples, 0.01%)</title><rect x="767.4" y="229" width="0.1" height="15.0" fill="rgb(253,2,17)" rx="2" ry="2" />
+<text  x="770.41" y="239.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (567,666,802 samples, 0.01%)</title><rect x="1084.3" y="453" width="0.1" height="15.0" fill="rgb(225,174,15)" rx="2" ry="2" />
+<text  x="1087.29" y="463.5" ></text>
+</g>
+<g >
+<title>kthread (1,147,292,570 samples, 0.02%)</title><rect x="281.4" y="533" width="0.3" height="15.0" fill="rgb(229,38,34)" rx="2" ry="2" />
+<text  x="284.44" y="543.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,507,900,446 samples, 0.03%)</title><rect x="276.6" y="501" width="0.3" height="15.0" fill="rgb(218,131,47)" rx="2" ry="2" />
+<text  x="279.60" y="511.5" ></text>
+</g>
+<g >
+<title>wake_up_q (25,282,843,076 samples, 0.49%)</title><rect x="798.1" y="325" width="5.8" height="15.0" fill="rgb(228,178,35)" rx="2" ry="2" />
+<text  x="801.08" y="335.5" ></text>
+</g>
+<g >
+<title>__slab_free (4,437,285,129 samples, 0.09%)</title><rect x="182.1" y="181" width="1.0" height="15.0" fill="rgb(215,117,14)" rx="2" ry="2" />
+<text  x="185.13" y="191.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (1,535,274,575 samples, 0.03%)</title><rect x="242.8" y="149" width="0.3" height="15.0" fill="rgb(232,111,12)" rx="2" ry="2" />
+<text  x="245.78" y="159.5" ></text>
+</g>
+<g >
+<title>tick_sched_handle (1,621,076,563 samples, 0.03%)</title><rect x="1043.9" y="357" width="0.4" height="15.0" fill="rgb(217,158,34)" rx="2" ry="2" />
+<text  x="1046.89" y="367.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (1,770,425,085 samples, 0.03%)</title><rect x="235.7" y="117" width="0.4" height="15.0" fill="rgb(241,89,40)" rx="2" ry="2" />
+<text  x="238.70" y="127.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (197,518,444,285 samples, 3.83%)</title><rect x="62.3" y="293" width="45.2" height="15.0" fill="rgb(237,210,48)" rx="2" ry="2" />
+<text  x="65.30" y="303.5" >entr..</text>
+</g>
+<g >
+<title>__folio_mark_dirty (1,035,368,249 samples, 0.02%)</title><rect x="434.4" y="277" width="0.3" height="15.0" fill="rgb(239,180,7)" rx="2" ry="2" />
+<text  x="437.44" y="287.5" ></text>
+</g>
+<g >
+<title>update_load_avg (986,088,874 samples, 0.02%)</title><rect x="324.0" y="277" width="0.2" height="15.0" fill="rgb(219,51,0)" rx="2" ry="2" />
+<text  x="327.02" y="287.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (568,698,828 samples, 0.01%)</title><rect x="1051.0" y="405" width="0.1" height="15.0" fill="rgb(242,96,41)" rx="2" ry="2" />
+<text  x="1054.00" y="415.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (439,969,910 samples, 0.01%)</title><rect x="1173.4" y="437" width="0.1" height="15.0" fill="rgb(251,56,22)" rx="2" ry="2" />
+<text  x="1176.38" y="447.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_recvmsg (592,571,133 samples, 0.01%)</title><rect x="223.5" y="165" width="0.1" height="15.0" fill="rgb(209,168,43)" rx="2" ry="2" />
+<text  x="226.49" y="175.5" ></text>
+</g>
+<g >
+<title>psi_task_change (560,173,009 samples, 0.01%)</title><rect x="318.0" y="229" width="0.1" height="15.0" fill="rgb(234,112,17)" rx="2" ry="2" />
+<text  x="321.01" y="239.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (3,901,146,380 samples, 0.08%)</title><rect x="183.2" y="181" width="0.9" height="15.0" fill="rgb(222,42,27)" rx="2" ry="2" />
+<text  x="186.16" y="191.5" ></text>
+</g>
+<g >
+<title>fput (6,429,271,208 samples, 0.12%)</title><rect x="918.2" y="389" width="1.4" height="15.0" fill="rgb(251,68,44)" rx="2" ry="2" />
+<text  x="921.16" y="399.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (2,333,827,674 samples, 0.05%)</title><rect x="234.9" y="117" width="0.6" height="15.0" fill="rgb(240,17,31)" rx="2" ry="2" />
+<text  x="237.94" y="127.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (188,864,628,349 samples, 3.66%)</title><rect x="63.4" y="261" width="43.2" height="15.0" fill="rgb(228,185,39)" rx="2" ry="2" />
+<text  x="66.36" y="271.5" >__x6..</text>
+</g>
+<g >
+<title>__send (1,438,270,280 samples, 0.03%)</title><rect x="819.6" y="469" width="0.3" height="15.0" fill="rgb(216,32,25)" rx="2" ry="2" />
+<text  x="822.57" y="479.5" ></text>
+</g>
+<g >
+<title>socket_get_fd (646,508,456 samples, 0.01%)</title><rect x="273.0" y="357" width="0.2" height="15.0" fill="rgb(228,97,9)" rx="2" ry="2" />
+<text  x="276.05" y="367.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (10,112,912,850 samples, 0.20%)</title><rect x="1023.0" y="437" width="2.4" height="15.0" fill="rgb(240,157,8)" rx="2" ry="2" />
+<text  x="1026.04" y="447.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (911,855,014 samples, 0.02%)</title><rect x="208.0" y="149" width="0.3" height="15.0" fill="rgb(209,36,50)" rx="2" ry="2" />
+<text  x="211.05" y="159.5" ></text>
+</g>
+<g >
+<title>__slab_free (5,900,442,850 samples, 0.11%)</title><rect x="211.2" y="133" width="1.3" height="15.0" fill="rgb(227,50,29)" rx="2" ry="2" />
+<text  x="214.19" y="143.5" ></text>
+</g>
+<g >
+<title>selinux_socket_recvmsg (7,536,471,581 samples, 0.15%)</title><rect x="176.6" y="181" width="1.7" height="15.0" fill="rgb(210,143,22)" rx="2" ry="2" />
+<text  x="179.61" y="191.5" ></text>
+</g>
+<g >
+<title>vfs_read (353,564,276,255 samples, 6.86%)</title><rect x="825.6" y="405" width="80.9" height="15.0" fill="rgb(253,22,48)" rx="2" ry="2" />
+<text  x="828.57" y="415.5" >vfs_read</text>
+</g>
+<g >
+<title>crypt_convert (1,478,878,912 samples, 0.03%)</title><rect x="276.6" y="469" width="0.3" height="15.0" fill="rgb(237,205,31)" rx="2" ry="2" />
+<text  x="279.60" y="479.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (57,174,933,949 samples, 1.11%)</title><rect x="1089.9" y="437" width="13.1" height="15.0" fill="rgb(205,68,32)" rx="2" ry="2" />
+<text  x="1092.88" y="447.5" ></text>
+</g>
+<g >
+<title>_start (1,150,342,788,699 samples, 22.31%)</title><rect x="11.9" y="549" width="263.2" height="15.0" fill="rgb(249,23,32)" rx="2" ry="2" />
+<text  x="14.89" y="559.5" >_start</text>
+</g>
+<g >
+<title>skb_release_head_state (10,603,451,248 samples, 0.21%)</title><rect x="264.5" y="165" width="2.5" height="15.0" fill="rgb(219,35,12)" rx="2" ry="2" />
+<text  x="267.54" y="175.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (1,295,671,225 samples, 0.03%)</title><rect x="1025.1" y="421" width="0.3" height="15.0" fill="rgb(240,52,19)" rx="2" ry="2" />
+<text  x="1028.06" y="431.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (1,194,534,724 samples, 0.02%)</title><rect x="237.3" y="117" width="0.3" height="15.0" fill="rgb(248,30,9)" rx="2" ry="2" />
+<text  x="240.28" y="127.5" ></text>
+</g>
+<g >
+<title>__count_memcg_events (1,924,408,423 samples, 0.04%)</title><rect x="852.4" y="261" width="0.5" height="15.0" fill="rgb(217,174,21)" rx="2" ry="2" />
+<text  x="855.41" y="271.5" ></text>
+</g>
+<g >
+<title>enqueue_task (2,588,901,627 samples, 0.05%)</title><rect x="1002.4" y="261" width="0.6" height="15.0" fill="rgb(253,172,40)" rx="2" ry="2" />
+<text  x="1005.40" y="271.5" ></text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_ISSUE_COMMAND_START.constprop.0 (728,673,652 samples, 0.01%)</title><rect x="60.1" y="341" width="0.2" height="15.0" fill="rgb(229,144,36)" rx="2" ry="2" />
+<text  x="63.12" y="351.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (788,873,648 samples, 0.02%)</title><rect x="10.7" y="485" width="0.2" height="15.0" fill="rgb(226,217,30)" rx="2" ry="2" />
+<text  x="13.72" y="495.5" ></text>
+</g>
+<g >
+<title>psi_account_irqtime (663,889,850 samples, 0.01%)</title><rect x="794.3" y="277" width="0.1" height="15.0" fill="rgb(218,73,12)" rx="2" ry="2" />
+<text  x="797.28" y="287.5" ></text>
+</g>
+<g >
+<title>skb_put (3,593,703,011 samples, 0.07%)</title><rect x="951.2" y="357" width="0.8" height="15.0" fill="rgb(249,226,18)" rx="2" ry="2" />
+<text  x="954.17" y="367.5" ></text>
+</g>
+<g >
+<title>timekeeping_max_deferment (5,672,960,597 samples, 0.11%)</title><rect x="1168.4" y="437" width="1.3" height="15.0" fill="rgb(230,62,53)" rx="2" ry="2" />
+<text  x="1171.38" y="447.5" ></text>
+</g>
+<g >
+<title>kthread (1,549,439,567 samples, 0.03%)</title><rect x="277.3" y="533" width="0.3" height="15.0" fill="rgb(221,82,25)" rx="2" ry="2" />
+<text  x="280.27" y="543.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (913,545,981 samples, 0.02%)</title><rect x="1173.5" y="437" width="0.2" height="15.0" fill="rgb(245,101,35)" rx="2" ry="2" />
+<text  x="1176.48" y="447.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (2,074,461,776 samples, 0.04%)</title><rect x="44.7" y="181" width="0.4" height="15.0" fill="rgb(243,127,31)" rx="2" ry="2" />
+<text  x="47.67" y="191.5" ></text>
+</g>
+<g >
+<title>send_from_wbuf (208,007,181,670 samples, 4.03%)</title><rect x="60.3" y="341" width="47.6" height="15.0" fill="rgb(228,136,24)" rx="2" ry="2" />
+<text  x="63.29" y="351.5" >send..</text>
+</g>
+<g >
+<title>process_one_work (1,099,397,478 samples, 0.02%)</title><rect x="281.7" y="501" width="0.3" height="15.0" fill="rgb(205,219,32)" rx="2" ry="2" />
+<text  x="284.71" y="511.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock@@GLIBC_2.2.5 (1,252,812,450 samples, 0.02%)</title><rect x="129.8" y="357" width="0.3" height="15.0" fill="rgb(225,5,1)" rx="2" ry="2" />
+<text  x="132.82" y="367.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (3,354,233,480 samples, 0.07%)</title><rect x="101.5" y="101" width="0.7" height="15.0" fill="rgb(251,37,11)" rx="2" ry="2" />
+<text  x="104.45" y="111.5" ></text>
+</g>
+<g >
+<title>acpi_idle_do_entry (2,053,421,039 samples, 0.04%)</title><rect x="1020.7" y="405" width="0.5" height="15.0" fill="rgb(225,0,2)" rx="2" ry="2" />
+<text  x="1023.71" y="415.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (444,253,660 samples, 0.01%)</title><rect x="1186.7" y="437" width="0.1" height="15.0" fill="rgb(240,215,31)" rx="2" ry="2" />
+<text  x="1189.74" y="447.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (942,364,569 samples, 0.02%)</title><rect x="235.5" y="117" width="0.2" height="15.0" fill="rgb(253,88,41)" rx="2" ry="2" />
+<text  x="238.48" y="127.5" ></text>
+</g>
+<g >
+<title>mutex_lock (465,067,984 samples, 0.01%)</title><rect x="243.1" y="165" width="0.1" height="15.0" fill="rgb(230,19,47)" rx="2" ry="2" />
+<text  x="246.13" y="175.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (1,285,104,965 samples, 0.02%)</title><rect x="365.3" y="341" width="0.3" height="15.0" fill="rgb(226,182,50)" rx="2" ry="2" />
+<text  x="368.29" y="351.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (1,065,445,837 samples, 0.02%)</title><rect x="132.2" y="341" width="0.2" height="15.0" fill="rgb(228,62,54)" rx="2" ry="2" />
+<text  x="135.18" y="351.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (4,992,653,253 samples, 0.10%)</title><rect x="52.2" y="149" width="1.1" height="15.0" fill="rgb(253,62,42)" rx="2" ry="2" />
+<text  x="55.19" y="159.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (835,984,794 samples, 0.02%)</title><rect x="1073.8" y="437" width="0.2" height="15.0" fill="rgb(205,131,50)" rx="2" ry="2" />
+<text  x="1076.84" y="447.5" ></text>
+</g>
+<g >
+<title>kworker/u64:10- (1,586,610,051 samples, 0.03%)</title><rect x="276.0" y="565" width="0.4" height="15.0" fill="rgb(246,169,33)" rx="2" ry="2" />
+<text  x="278.99" y="575.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (5,802,589,861 samples, 0.11%)</title><rect x="95.6" y="117" width="1.3" height="15.0" fill="rgb(205,203,46)" rx="2" ry="2" />
+<text  x="98.61" y="127.5" ></text>
+</g>
+<g >
+<title>generic_write_checks (2,250,779,932 samples, 0.04%)</title><rect x="414.6" y="325" width="0.5" height="15.0" fill="rgb(206,89,53)" rx="2" ry="2" />
+<text  x="417.62" y="335.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_enable_asynccancel (608,386,523 samples, 0.01%)</title><rect x="61.4" y="309" width="0.1" height="15.0" fill="rgb(232,48,47)" rx="2" ry="2" />
+<text  x="64.38" y="319.5" ></text>
+</g>
+<g >
+<title>avc_lookup (1,285,120,618 samples, 0.02%)</title><rect x="831.9" y="341" width="0.3" height="15.0" fill="rgb(236,2,45)" rx="2" ry="2" />
+<text  x="834.87" y="351.5" ></text>
+</g>
+<g >
+<title>enqueue_task (8,678,410,823 samples, 0.17%)</title><rect x="1175.7" y="357" width="2.0" height="15.0" fill="rgb(244,10,36)" rx="2" ry="2" />
+<text  x="1178.68" y="367.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (7,716,335,390 samples, 0.15%)</title><rect x="417.4" y="325" width="1.8" height="15.0" fill="rgb(222,53,23)" rx="2" ry="2" />
+<text  x="420.43" y="335.5" ></text>
+</g>
+<g >
+<title>error_entry (1,081,925,692 samples, 0.02%)</title><rect x="1054.4" y="437" width="0.2" height="15.0" fill="rgb(236,131,37)" rx="2" ry="2" />
+<text  x="1057.40" y="447.5" ></text>
+</g>
+<g >
+<title>tick_sched_timer (2,651,383,925 samples, 0.05%)</title><rect x="766.6" y="229" width="0.6" height="15.0" fill="rgb(250,99,49)" rx="2" ry="2" />
+<text  x="769.59" y="239.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (32,046,495,483 samples, 0.62%)</title><rect x="307.4" y="325" width="7.3" height="15.0" fill="rgb(248,185,48)" rx="2" ry="2" />
+<text  x="310.39" y="335.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (179,165,634,174 samples, 3.47%)</title><rect x="65.0" y="229" width="41.0" height="15.0" fill="rgb(245,51,38)" rx="2" ry="2" />
+<text  x="67.96" y="239.5" >soc..</text>
+</g>
+<g >
+<title>__entry_text_start (1,953,538,717 samples, 0.04%)</title><rect x="820.5" y="453" width="0.5" height="15.0" fill="rgb(250,150,1)" rx="2" ry="2" />
+<text  x="823.54" y="463.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (503,519,560 samples, 0.01%)</title><rect x="158.0" y="277" width="0.1" height="15.0" fill="rgb(234,126,47)" rx="2" ry="2" />
+<text  x="161.02" y="287.5" ></text>
+</g>
+<g >
+<title>raw_send_socket (1,112,547,577 samples, 0.02%)</title><rect x="1016.6" y="501" width="0.3" height="15.0" fill="rgb(211,35,47)" rx="2" ry="2" />
+<text  x="1019.65" y="511.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,676,445,950 samples, 0.03%)</title><rect x="275.3" y="485" width="0.4" height="15.0" fill="rgb(216,187,3)" rx="2" ry="2" />
+<text  x="278.30" y="495.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (1,585,837,870 samples, 0.03%)</title><rect x="192.9" y="165" width="0.3" height="15.0" fill="rgb(225,75,47)" rx="2" ry="2" />
+<text  x="195.85" y="175.5" ></text>
+</g>
+<g >
+<title>skb_set_owner_w (4,960,386,402 samples, 0.10%)</title><rect x="103.9" y="181" width="1.2" height="15.0" fill="rgb(237,85,20)" rx="2" ry="2" />
+<text  x="106.94" y="191.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,421,253,840 samples, 0.03%)</title><rect x="280.6" y="485" width="0.4" height="15.0" fill="rgb(208,20,44)" rx="2" ry="2" />
+<text  x="283.62" y="495.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (2,752,657,832 samples, 0.05%)</title><rect x="336.7" y="325" width="0.7" height="15.0" fill="rgb(243,135,19)" rx="2" ry="2" />
+<text  x="339.72" y="335.5" ></text>
+</g>
+<g >
+<title>__libc_start_main@@GLIBC_2.34 (1,150,342,788,699 samples, 22.31%)</title><rect x="11.9" y="533" width="263.2" height="15.0" fill="rgb(217,110,23)" rx="2" ry="2" />
+<text  x="14.89" y="543.5" >__libc_start_main@@GLIBC_2.34</text>
+</g>
+<g >
+<title>syscall_return_via_sysret (1,285,165,893 samples, 0.02%)</title><rect x="107.6" y="293" width="0.3" height="15.0" fill="rgb(228,160,11)" rx="2" ry="2" />
+<text  x="110.58" y="303.5" ></text>
+</g>
+<g >
+<title>cfree@GLIBC_2.2.5 (1,792,124,323 samples, 0.03%)</title><rect x="128.9" y="341" width="0.4" height="15.0" fill="rgb(231,103,42)" rx="2" ry="2" />
+<text  x="131.88" y="351.5" ></text>
+</g>
+<g >
+<title>__futex_queue (3,847,787,182 samples, 0.07%)</title><rect x="300.0" y="373" width="0.9" height="15.0" fill="rgb(220,43,9)" rx="2" ry="2" />
+<text  x="303.01" y="383.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (294,087,224,689 samples, 5.70%)</title><rect x="839.2" y="373" width="67.3" height="15.0" fill="rgb(230,226,20)" rx="2" ry="2" />
+<text  x="842.18" y="383.5" >unix_st..</text>
+</g>
+<g >
+<title>check_preemption_disabled (726,363,238 samples, 0.01%)</title><rect x="1189.7" y="469" width="0.2" height="15.0" fill="rgb(222,2,16)" rx="2" ry="2" />
+<text  x="1192.75" y="479.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (1,480,311,046 samples, 0.03%)</title><rect x="321.7" y="245" width="0.4" height="15.0" fill="rgb(244,104,35)" rx="2" ry="2" />
+<text  x="324.72" y="255.5" ></text>
+</g>
+<g >
+<title>wait_for_unix_gc (882,649,205 samples, 0.02%)</title><rect x="105.8" y="197" width="0.2" height="15.0" fill="rgb(226,74,51)" rx="2" ry="2" />
+<text  x="108.76" y="207.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_getpeersec_dgram (449,926,073 samples, 0.01%)</title><rect x="43.3" y="197" width="0.1" height="15.0" fill="rgb(218,170,2)" rx="2" ry="2" />
+<text  x="46.31" y="207.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (480,612,059 samples, 0.01%)</title><rect x="281.1" y="437" width="0.2" height="15.0" fill="rgb(232,198,16)" rx="2" ry="2" />
+<text  x="284.15" y="447.5" ></text>
+</g>
+<g >
+<title>read (388,815,240,208 samples, 7.54%)</title><rect x="819.9" y="469" width="89.0" height="15.0" fill="rgb(210,110,31)" rx="2" ry="2" />
+<text  x="822.92" y="479.5" >read</text>
+</g>
+<g >
+<title>process_one_work (1,710,658,390 samples, 0.03%)</title><rect x="282.8" y="501" width="0.4" height="15.0" fill="rgb(230,72,22)" rx="2" ry="2" />
+<text  x="285.78" y="511.5" ></text>
+</g>
+<g >
+<title>put_prev_task_fair (1,983,160,261 samples, 0.04%)</title><rect x="337.4" y="341" width="0.4" height="15.0" fill="rgb(220,120,2)" rx="2" ry="2" />
+<text  x="340.35" y="351.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (1,764,553,211 samples, 0.03%)</title><rect x="364.0" y="309" width="0.4" height="15.0" fill="rgb(219,44,34)" rx="2" ry="2" />
+<text  x="366.97" y="319.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (677,698,459 samples, 0.01%)</title><rect x="25.4" y="373" width="0.2" height="15.0" fill="rgb(222,32,46)" rx="2" ry="2" />
+<text  x="28.44" y="383.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (828,917,334 samples, 0.02%)</title><rect x="281.0" y="549" width="0.1" height="15.0" fill="rgb(207,199,12)" rx="2" ry="2" />
+<text  x="283.95" y="559.5" ></text>
+</g>
+<g >
+<title>kfree (2,204,440,659 samples, 0.04%)</title><rect x="239.3" y="133" width="0.5" height="15.0" fill="rgb(251,170,48)" rx="2" ry="2" />
+<text  x="242.27" y="143.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (1,660,094,578 samples, 0.03%)</title><rect x="341.8" y="309" width="0.4" height="15.0" fill="rgb(227,137,25)" rx="2" ry="2" />
+<text  x="344.80" y="319.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_file_permission (1,841,186,881 samples, 0.04%)</title><rect x="830.3" y="373" width="0.4" height="15.0" fill="rgb(215,23,13)" rx="2" ry="2" />
+<text  x="833.29" y="383.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,213,800,601 samples, 0.02%)</title><rect x="255.6" y="277" width="0.2" height="15.0" fill="rgb(230,97,43)" rx="2" ry="2" />
+<text  x="258.57" y="287.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (689,421,776 samples, 0.01%)</title><rect x="283.5" y="437" width="0.2" height="15.0" fill="rgb(246,151,33)" rx="2" ry="2" />
+<text  x="286.51" y="447.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (12,515,310,363 samples, 0.24%)</title><rect x="47.5" y="149" width="2.9" height="15.0" fill="rgb(215,92,5)" rx="2" ry="2" />
+<text  x="50.50" y="159.5" ></text>
+</g>
+<g >
+<title>file_pwrite (1,206,530,925 samples, 0.02%)</title><rect x="284.2" y="517" width="0.2" height="15.0" fill="rgb(213,6,8)" rx="2" ry="2" />
+<text  x="287.17" y="527.5" ></text>
+</g>
+<g >
+<title>unix_stream_recvmsg (99,512,078,350 samples, 1.93%)</title><rect x="178.7" y="213" width="22.8" height="15.0" fill="rgb(246,62,29)" rx="2" ry="2" />
+<text  x="181.74" y="223.5" >u..</text>
+</g>
+<g >
+<title>update_rq_clock (2,024,570,848 samples, 0.04%)</title><rect x="149.3" y="213" width="0.4" height="15.0" fill="rgb(234,42,5)" rx="2" ry="2" />
+<text  x="152.28" y="223.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (42,995,690,625 samples, 0.83%)</title><rect x="244.1" y="149" width="9.9" height="15.0" fill="rgb(221,76,27)" rx="2" ry="2" />
+<text  x="247.12" y="159.5" ></text>
+</g>
+<g >
+<title>attach_entity_load_avg (531,559,166 samples, 0.01%)</title><rect x="1117.0" y="373" width="0.2" height="15.0" fill="rgb(228,66,42)" rx="2" ry="2" />
+<text  x="1120.04" y="383.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (2,019,479,336 samples, 0.04%)</title><rect x="313.9" y="293" width="0.5" height="15.0" fill="rgb(250,165,36)" rx="2" ry="2" />
+<text  x="316.89" y="303.5" ></text>
+</g>
+<g >
+<title>td_io_prep (1,091,792,166 samples, 0.02%)</title><rect x="24.3" y="421" width="0.3" height="15.0" fill="rgb(209,1,5)" rx="2" ry="2" />
+<text  x="27.31" y="431.5" ></text>
+</g>
+<g >
+<title>selinux_file_permission (7,153,352,595 samples, 0.14%)</title><rect x="832.5" y="373" width="1.6" height="15.0" fill="rgb(212,73,30)" rx="2" ry="2" />
+<text  x="835.48" y="383.5" ></text>
+</g>
+<g >
+<title>unix_destruct_scm (10,202,104,806 samples, 0.20%)</title><rect x="264.6" y="149" width="2.4" height="15.0" fill="rgb(225,48,13)" rx="2" ry="2" />
+<text  x="267.63" y="159.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,406,712,452 samples, 0.03%)</title><rect x="279.3" y="469" width="0.3" height="15.0" fill="rgb(241,104,49)" rx="2" ry="2" />
+<text  x="282.27" y="479.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (6,686,259,665 samples, 0.13%)</title><rect x="217.3" y="117" width="1.5" height="15.0" fill="rgb(218,207,2)" rx="2" ry="2" />
+<text  x="220.27" y="127.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (950,293,939 samples, 0.02%)</title><rect x="979.2" y="229" width="0.2" height="15.0" fill="rgb(250,186,14)" rx="2" ry="2" />
+<text  x="982.19" y="239.5" ></text>
+</g>
+<g >
+<title>poll_freewait (6,409,351,033 samples, 0.12%)</title><rect x="141.3" y="261" width="1.5" height="15.0" fill="rgb(239,210,27)" rx="2" ry="2" />
+<text  x="144.33" y="271.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (716,286,884 samples, 0.01%)</title><rect x="1017.5" y="245" width="0.2" height="15.0" fill="rgb(247,191,14)" rx="2" ry="2" />
+<text  x="1020.49" y="255.5" ></text>
+</g>
+<g >
+<title>tick_nohz_next_event (1,864,696,107 samples, 0.04%)</title><rect x="1026.3" y="421" width="0.4" height="15.0" fill="rgb(244,100,3)" rx="2" ry="2" />
+<text  x="1029.32" y="431.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (5,137,870,709 samples, 0.10%)</title><rect x="317.1" y="325" width="1.2" height="15.0" fill="rgb(224,66,33)" rx="2" ry="2" />
+<text  x="320.14" y="335.5" ></text>
+</g>
+<g >
+<title>filemap_get_read_batch (26,165,939,470 samples, 0.51%)</title><rect x="395.4" y="325" width="5.9" height="15.0" fill="rgb(234,78,8)" rx="2" ry="2" />
+<text  x="398.35" y="335.5" ></text>
+</g>
+<g >
+<title>kthread (1,688,906,160 samples, 0.03%)</title><rect x="277.9" y="533" width="0.4" height="15.0" fill="rgb(243,217,7)" rx="2" ry="2" />
+<text  x="280.93" y="543.5" ></text>
+</g>
+<g >
+<title>fsnotify_perm.part.0 (3,779,919,186 samples, 0.07%)</title><rect x="828.4" y="389" width="0.8" height="15.0" fill="rgb(235,194,23)" rx="2" ry="2" />
+<text  x="831.38" y="399.5" ></text>
+</g>
+<g >
+<title>tick_nohz_restart_sched_tick (516,252,462 samples, 0.01%)</title><rect x="1188.0" y="469" width="0.2" height="15.0" fill="rgb(205,162,20)" rx="2" ry="2" />
+<text  x="1191.04" y="479.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (1,604,166,933 samples, 0.03%)</title><rect x="791.2" y="293" width="0.4" height="15.0" fill="rgb(247,209,2)" rx="2" ry="2" />
+<text  x="794.19" y="303.5" ></text>
+</g>
+<g >
+<title>plugin_pwrite (1,763,577,799,000 samples, 34.20%)</title><rect x="406.1" y="469" width="403.6" height="15.0" fill="rgb(236,60,53)" rx="2" ry="2" />
+<text  x="409.13" y="479.5" >plugin_pwrite</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (69,283,286,030 samples, 1.34%)</title><rect x="255.9" y="277" width="15.8" height="15.0" fill="rgb(210,141,1)" rx="2" ry="2" />
+<text  x="258.89" y="287.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,335,043,388 samples, 0.03%)</title><rect x="277.6" y="517" width="0.3" height="15.0" fill="rgb(217,224,22)" rx="2" ry="2" />
+<text  x="280.62" y="527.5" ></text>
+</g>
+<g >
+<title>__rcu_read_unlock (599,231,521 samples, 0.01%)</title><rect x="970.7" y="261" width="0.1" height="15.0" fill="rgb(222,183,41)" rx="2" ry="2" />
+<text  x="973.70" y="271.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (453,339,176 samples, 0.01%)</title><rect x="315.7" y="309" width="0.1" height="15.0" fill="rgb(246,78,39)" rx="2" ry="2" />
+<text  x="318.73" y="319.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (10,802,587,690 samples, 0.21%)</title><rect x="1178.7" y="453" width="2.4" height="15.0" fill="rgb(207,157,17)" rx="2" ry="2" />
+<text  x="1181.66" y="463.5" ></text>
+</g>
+<g >
+<title>futex_q_lock (6,507,210,120 samples, 0.13%)</title><rect x="343.4" y="373" width="1.5" height="15.0" fill="rgb(223,32,43)" rx="2" ry="2" />
+<text  x="346.39" y="383.5" ></text>
+</g>
+<g >
+<title>__schedule (29,361,373,225 samples, 0.57%)</title><rect x="143.0" y="229" width="6.7" height="15.0" fill="rgb(243,51,0)" rx="2" ry="2" />
+<text  x="146.02" y="239.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (729,077,080 samples, 0.01%)</title><rect x="1186.7" y="469" width="0.2" height="15.0" fill="rgb(213,188,43)" rx="2" ry="2" />
+<text  x="1189.70" y="479.5" ></text>
+</g>
+<g >
+<title>futex_get_value_locked (2,821,535,144 samples, 0.05%)</title><rect x="342.7" y="373" width="0.7" height="15.0" fill="rgb(218,137,16)" rx="2" ry="2" />
+<text  x="345.74" y="383.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,349,859,441 samples, 0.03%)</title><rect x="276.6" y="453" width="0.3" height="15.0" fill="rgb(230,143,14)" rx="2" ry="2" />
+<text  x="279.61" y="463.5" ></text>
+</g>
+<g >
+<title>psi_task_change (715,516,476 samples, 0.01%)</title><rect x="1002.8" y="245" width="0.2" height="15.0" fill="rgb(240,87,47)" rx="2" ry="2" />
+<text  x="1005.83" y="255.5" ></text>
+</g>
+<g >
+<title>selinux_socket_recvmsg (2,582,116,268 samples, 0.05%)</title><rect x="223.6" y="165" width="0.6" height="15.0" fill="rgb(210,143,49)" rx="2" ry="2" />
+<text  x="226.63" y="175.5" ></text>
+</g>
+<g >
+<title>__file_remove_privs (488,725,551 samples, 0.01%)</title><rect x="415.4" y="325" width="0.1" height="15.0" fill="rgb(224,107,1)" rx="2" ry="2" />
+<text  x="418.37" y="335.5" ></text>
+</g>
+<g >
+<title>__fget_light (6,863,919,407 samples, 0.13%)</title><rect x="823.6" y="389" width="1.6" height="15.0" fill="rgb(245,27,14)" rx="2" ry="2" />
+<text  x="826.65" y="399.5" ></text>
+</g>
+<g >
+<title>axmap_set_nr (1,575,911,450 samples, 0.03%)</title><rect x="21.2" y="421" width="0.3" height="15.0" fill="rgb(248,95,15)" rx="2" ry="2" />
+<text  x="24.18" y="431.5" ></text>
+</g>
+<g >
+<title>__fio_gettime.lto_priv.0 (5,693,227,370 samples, 0.11%)</title><rect x="14.3" y="437" width="1.3" height="15.0" fill="rgb(228,37,7)" rx="2" ry="2" />
+<text  x="17.27" y="447.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (3,249,075,711 samples, 0.06%)</title><rect x="317.5" y="277" width="0.8" height="15.0" fill="rgb(244,158,28)" rx="2" ry="2" />
+<text  x="320.51" y="287.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (1,709,215,216 samples, 0.03%)</title><rect x="219.7" y="229" width="0.4" height="15.0" fill="rgb(208,5,40)" rx="2" ry="2" />
+<text  x="222.67" y="239.5" ></text>
+</g>
+<g >
+<title>socket_send (470,117,213 samples, 0.01%)</title><rect x="56.4" y="357" width="0.1" height="15.0" fill="rgb(225,119,32)" rx="2" ry="2" />
+<text  x="59.42" y="367.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (880,994,263 samples, 0.02%)</title><rect x="1173.5" y="421" width="0.2" height="15.0" fill="rgb(240,218,15)" rx="2" ry="2" />
+<text  x="1176.49" y="431.5" ></text>
+</g>
+<g >
+<title>wake_up_q (78,907,736,846 samples, 1.53%)</title><rect x="360.2" y="389" width="18.1" height="15.0" fill="rgb(214,154,17)" rx="2" ry="2" />
+<text  x="363.20" y="399.5" ></text>
+</g>
+<g >
+<title>set_next_entity (6,111,750,570 samples, 0.12%)</title><rect x="1179.7" y="437" width="1.4" height="15.0" fill="rgb(234,33,5)" rx="2" ry="2" />
+<text  x="1182.74" y="447.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,337,020,523 samples, 0.03%)</title><rect x="278.3" y="469" width="0.3" height="15.0" fill="rgb(209,102,48)" rx="2" ry="2" />
+<text  x="281.32" y="479.5" ></text>
+</g>
+<g >
+<title>__libc_recv (130,982,573,450 samples, 2.54%)</title><rect x="172.8" y="293" width="30.0" height="15.0" fill="rgb(247,183,39)" rx="2" ry="2" />
+<text  x="175.81" y="303.5" >__..</text>
+</g>
+<g >
+<title>account_io_completion (9,813,251,032 samples, 0.19%)</title><rect x="114.8" y="389" width="2.3" height="15.0" fill="rgb(226,151,45)" rx="2" ry="2" />
+<text  x="117.84" y="399.5" ></text>
+</g>
+<g >
+<title>process_one_work (827,904,372 samples, 0.02%)</title><rect x="281.0" y="501" width="0.1" height="15.0" fill="rgb(233,84,7)" rx="2" ry="2" />
+<text  x="283.95" y="511.5" ></text>
+</g>
+<g >
+<title>__fget_light (2,111,295,881 samples, 0.04%)</title><rect x="106.1" y="213" width="0.5" height="15.0" fill="rgb(248,100,3)" rx="2" ry="2" />
+<text  x="109.10" y="223.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (1,869,928,729 samples, 0.04%)</title><rect x="405.2" y="389" width="0.4" height="15.0" fill="rgb(246,180,45)" rx="2" ry="2" />
+<text  x="408.18" y="399.5" ></text>
+</g>
+<g >
+<title>kmalloc_slab (912,307,959 samples, 0.02%)</title><rect x="96.9" y="133" width="0.3" height="15.0" fill="rgb(217,57,45)" rx="2" ry="2" />
+<text  x="99.94" y="143.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (116,012,601,607 samples, 2.25%)</title><rect x="353.4" y="453" width="26.6" height="15.0" fill="rgb(205,112,19)" rx="2" ry="2" />
+<text  x="356.45" y="463.5" >d..</text>
+</g>
+<g >
+<title>socket_send (1,996,805,173 samples, 0.04%)</title><rect x="273.6" y="325" width="0.5" height="15.0" fill="rgb(220,51,14)" rx="2" ry="2" />
+<text  x="276.61" y="335.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (1,674,615,221 samples, 0.03%)</title><rect x="269.4" y="165" width="0.4" height="15.0" fill="rgb(215,88,2)" rx="2" ry="2" />
+<text  x="272.42" y="175.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_enable_asynccancel (1,164,975,662 samples, 0.02%)</title><rect x="910.3" y="469" width="0.3" height="15.0" fill="rgb(225,16,34)" rx="2" ry="2" />
+<text  x="913.31" y="479.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (822,397,973 samples, 0.02%)</title><rect x="328.7" y="309" width="0.2" height="15.0" fill="rgb(216,171,23)" rx="2" ry="2" />
+<text  x="331.73" y="319.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (2,060,852,141 samples, 0.04%)</title><rect x="909.8" y="469" width="0.5" height="15.0" fill="rgb(249,150,54)" rx="2" ry="2" />
+<text  x="912.84" y="479.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (2,378,911,738 samples, 0.05%)</title><rect x="34.4" y="373" width="0.6" height="15.0" fill="rgb(244,58,11)" rx="2" ry="2" />
+<text  x="37.44" y="383.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,409,863,989 samples, 0.03%)</title><rect x="276.9" y="501" width="0.4" height="15.0" fill="rgb(218,100,27)" rx="2" ry="2" />
+<text  x="279.95" y="511.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (3,325,211,976 samples, 0.06%)</title><rect x="323.5" y="293" width="0.7" height="15.0" fill="rgb(237,178,34)" rx="2" ry="2" />
+<text  x="326.48" y="303.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (604,924,185 samples, 0.01%)</title><rect x="107.4" y="245" width="0.1" height="15.0" fill="rgb(217,220,21)" rx="2" ry="2" />
+<text  x="110.35" y="255.5" ></text>
+</g>
+<g >
+<title>ttwu_queue_wakelist (2,361,747,093 samples, 0.05%)</title><rect x="803.0" y="293" width="0.6" height="15.0" fill="rgb(218,201,50)" rx="2" ry="2" />
+<text  x="806.01" y="303.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (825,319,738 samples, 0.02%)</title><rect x="341.5" y="293" width="0.2" height="15.0" fill="rgb(241,138,19)" rx="2" ry="2" />
+<text  x="344.53" y="303.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (1,980,691,833 samples, 0.04%)</title><rect x="913.5" y="437" width="0.5" height="15.0" fill="rgb(245,17,46)" rx="2" ry="2" />
+<text  x="916.53" y="447.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,364,905,632 samples, 0.03%)</title><rect x="278.3" y="501" width="0.3" height="15.0" fill="rgb(230,58,41)" rx="2" ry="2" />
+<text  x="281.32" y="511.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (591,208,270 samples, 0.01%)</title><rect x="791.4" y="229" width="0.1" height="15.0" fill="rgb(253,62,3)" rx="2" ry="2" />
+<text  x="794.39" y="239.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (553,205,190 samples, 0.01%)</title><rect x="238.3" y="117" width="0.2" height="15.0" fill="rgb(214,92,44)" rx="2" ry="2" />
+<text  x="241.34" y="127.5" ></text>
+</g>
+<g >
+<title>unix_write_space (716,540,502 samples, 0.01%)</title><rect x="241.1" y="101" width="0.2" height="15.0" fill="rgb(214,160,32)" rx="2" ry="2" />
+<text  x="244.09" y="111.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (150,869,455,027 samples, 2.93%)</title><rect x="961.4" y="325" width="34.5" height="15.0" fill="rgb(247,8,44)" rx="2" ry="2" />
+<text  x="964.40" y="335.5" >__..</text>
+</g>
+<g >
+<title>crypt_convert (1,536,025,426 samples, 0.03%)</title><rect x="279.6" y="469" width="0.3" height="15.0" fill="rgb(210,4,52)" rx="2" ry="2" />
+<text  x="282.60" y="479.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,409,863,989 samples, 0.03%)</title><rect x="276.9" y="517" width="0.4" height="15.0" fill="rgb(253,210,45)" rx="2" ry="2" />
+<text  x="279.95" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (1,110,957,424 samples, 0.02%)</title><rect x="432.8" y="325" width="0.2" height="15.0" fill="rgb(208,194,44)" rx="2" ry="2" />
+<text  x="435.79" y="335.5" ></text>
+</g>
+<g >
+<title>psi_group_change (562,301,583 samples, 0.01%)</title><rect x="1056.7" y="341" width="0.1" height="15.0" fill="rgb(215,33,26)" rx="2" ry="2" />
+<text  x="1059.67" y="351.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (444,940,114 samples, 0.01%)</title><rect x="242.7" y="149" width="0.1" height="15.0" fill="rgb(230,94,27)" rx="2" ry="2" />
+<text  x="245.68" y="159.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,442,906,589 samples, 0.03%)</title><rect x="283.2" y="549" width="0.3" height="15.0" fill="rgb(211,60,48)" rx="2" ry="2" />
+<text  x="286.17" y="559.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_actor (43,260,886,637 samples, 0.84%)</title><rect x="244.1" y="165" width="9.9" height="15.0" fill="rgb(254,189,9)" rx="2" ry="2" />
+<text  x="247.06" y="175.5" ></text>
+</g>
+<g >
+<title>skb_queue_tail (3,946,192,605 samples, 0.08%)</title><rect x="82.1" y="197" width="0.9" height="15.0" fill="rgb(217,76,9)" rx="2" ry="2" />
+<text  x="85.13" y="207.5" ></text>
+</g>
+<g >
+<title>__build_skb_around (534,678,385 samples, 0.01%)</title><rect x="47.3" y="165" width="0.1" height="15.0" fill="rgb(225,184,5)" rx="2" ry="2" />
+<text  x="50.28" y="175.5" ></text>
+</g>
+<g >
+<title>__libc_recv (1,059,026,245 samples, 0.02%)</title><rect x="10.7" y="501" width="0.3" height="15.0" fill="rgb(245,10,13)" rx="2" ry="2" />
+<text  x="13.72" y="511.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (469,447,538 samples, 0.01%)</title><rect x="1065.1" y="421" width="0.1" height="15.0" fill="rgb(242,198,32)" rx="2" ry="2" />
+<text  x="1068.14" y="431.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (699,080,260 samples, 0.01%)</title><rect x="365.4" y="325" width="0.2" height="15.0" fill="rgb(241,19,44)" rx="2" ry="2" />
+<text  x="368.41" y="335.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,427,264,342 samples, 0.03%)</title><rect x="283.2" y="485" width="0.3" height="15.0" fill="rgb(214,139,9)" rx="2" ry="2" />
+<text  x="286.17" y="495.5" ></text>
+</g>
+<g >
+<title>[perf] (4,277,426,306 samples, 0.08%)</title><rect x="1017.1" y="469" width="1.0" height="15.0" fill="rgb(232,109,45)" rx="2" ry="2" />
+<text  x="1020.08" y="479.5" ></text>
+</g>
+<g >
+<title>__check_object_size (2,781,155,731 samples, 0.05%)</title><rect x="43.8" y="197" width="0.7" height="15.0" fill="rgb(229,108,44)" rx="2" ry="2" />
+<text  x="46.84" y="207.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (623,740,903 samples, 0.01%)</title><rect x="282.3" y="437" width="0.1" height="15.0" fill="rgb(208,53,30)" rx="2" ry="2" />
+<text  x="285.27" y="447.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (791,146,733 samples, 0.02%)</title><rect x="1174.3" y="421" width="0.2" height="15.0" fill="rgb(215,199,25)" rx="2" ry="2" />
+<text  x="1177.32" y="431.5" ></text>
+</g>
+<g >
+<title>migrate_task_rq_fair (2,211,567,203 samples, 0.04%)</title><rect x="370.3" y="341" width="0.5" height="15.0" fill="rgb(243,41,25)" rx="2" ry="2" />
+<text  x="373.33" y="351.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (1,121,420,038 samples, 0.02%)</title><rect x="888.9" y="309" width="0.2" height="15.0" fill="rgb(243,201,7)" rx="2" ry="2" />
+<text  x="891.88" y="319.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (1,420,312,257 samples, 0.03%)</title><rect x="979.6" y="261" width="0.4" height="15.0" fill="rgb(218,210,36)" rx="2" ry="2" />
+<text  x="982.63" y="271.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,123,407,896 samples, 0.02%)</title><rect x="281.4" y="485" width="0.3" height="15.0" fill="rgb(238,137,11)" rx="2" ry="2" />
+<text  x="284.45" y="495.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (2,361,036,319 samples, 0.05%)</title><rect x="1023.3" y="405" width="0.5" height="15.0" fill="rgb(220,60,31)" rx="2" ry="2" />
+<text  x="1026.29" y="415.5" ></text>
+</g>
+<g >
+<title>pm_qos_read_value (874,929,752 samples, 0.02%)</title><rect x="1148.9" y="453" width="0.2" height="15.0" fill="rgb(246,179,7)" rx="2" ry="2" />
+<text  x="1151.94" y="463.5" ></text>
+</g>
+<g >
+<title>ct_nmi_enter (6,770,093,459 samples, 0.13%)</title><rect x="1063.2" y="405" width="1.5" height="15.0" fill="rgb(219,89,6)" rx="2" ry="2" />
+<text  x="1066.18" y="415.5" ></text>
+</g>
+<g >
+<title>__get_io_u (1,423,717,358 samples, 0.03%)</title><rect x="20.8" y="421" width="0.3" height="15.0" fill="rgb(207,103,24)" rx="2" ry="2" />
+<text  x="23.82" y="431.5" ></text>
+</g>
+<g >
+<title>avc_lookup (632,091,198 samples, 0.01%)</title><rect x="66.8" y="165" width="0.2" height="15.0" fill="rgb(208,51,20)" rx="2" ry="2" />
+<text  x="69.84" y="175.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (11,773,732,420 samples, 0.23%)</title><rect x="371.0" y="325" width="2.7" height="15.0" fill="rgb(221,147,37)" rx="2" ry="2" />
+<text  x="373.96" y="335.5" ></text>
+</g>
+<g >
+<title>kworker/u64:11- (1,061,149,882 samples, 0.02%)</title><rect x="276.4" y="565" width="0.2" height="15.0" fill="rgb(241,125,23)" rx="2" ry="2" />
+<text  x="279.36" y="575.5" ></text>
+</g>
+<g >
+<title>__calc_delta (662,132,837 samples, 0.01%)</title><rect x="310.4" y="293" width="0.1" height="15.0" fill="rgb(221,160,22)" rx="2" ry="2" />
+<text  x="313.37" y="303.5" ></text>
+</g>
+<g >
+<title>__libc_pread (656,942,161 samples, 0.01%)</title><rect x="381.9" y="453" width="0.2" height="15.0" fill="rgb(235,71,16)" rx="2" ry="2" />
+<text  x="384.94" y="463.5" ></text>
+</g>
+<g >
+<title>selinux_socket_getpeersec_dgram (5,838,150,442 samples, 0.11%)</title><rect x="937.5" y="341" width="1.4" height="15.0" fill="rgb(241,25,13)" rx="2" ry="2" />
+<text  x="940.54" y="351.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (468,544,214 samples, 0.01%)</title><rect x="96.7" y="101" width="0.1" height="15.0" fill="rgb(241,118,16)" rx="2" ry="2" />
+<text  x="99.68" y="111.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (545,876,238 samples, 0.01%)</title><rect x="1176.8" y="293" width="0.1" height="15.0" fill="rgb(244,49,48)" rx="2" ry="2" />
+<text  x="1179.79" y="303.5" ></text>
+</g>
+<g >
+<title>kworker/u64:13- (1,410,888,365 samples, 0.03%)</title><rect x="276.9" y="565" width="0.4" height="15.0" fill="rgb(240,150,47)" rx="2" ry="2" />
+<text  x="279.95" y="575.5" ></text>
+</g>
+<g >
+<title>lock_request (14,221,135,317 samples, 0.28%)</title><rect x="811.3" y="485" width="3.2" height="15.0" fill="rgb(246,127,17)" rx="2" ry="2" />
+<text  x="814.27" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (710,563,893 samples, 0.01%)</title><rect x="300.9" y="373" width="0.2" height="15.0" fill="rgb(229,141,27)" rx="2" ry="2" />
+<text  x="303.89" y="383.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (3,514,330,553 samples, 0.07%)</title><rect x="1063.7" y="389" width="0.8" height="15.0" fill="rgb(233,143,5)" rx="2" ry="2" />
+<text  x="1066.69" y="399.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (792,244,853 samples, 0.02%)</title><rect x="802.5" y="245" width="0.2" height="15.0" fill="rgb(229,220,25)" rx="2" ry="2" />
+<text  x="805.49" y="255.5" ></text>
+</g>
+<g >
+<title>ktime_get (2,353,699,506 samples, 0.05%)</title><rect x="1058.3" y="389" width="0.6" height="15.0" fill="rgb(233,185,16)" rx="2" ry="2" />
+<text  x="1061.33" y="399.5" ></text>
+</g>
+<g >
+<title>kworker/u64:15- (1,336,058,823 samples, 0.03%)</title><rect x="277.6" y="565" width="0.3" height="15.0" fill="rgb(227,182,12)" rx="2" ry="2" />
+<text  x="280.62" y="575.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (556,397,023 samples, 0.01%)</title><rect x="1103.1" y="453" width="0.1" height="15.0" fill="rgb(215,95,30)" rx="2" ry="2" />
+<text  x="1106.06" y="463.5" ></text>
+</g>
+<g >
+<title>load_balance (5,973,372,932 samples, 0.12%)</title><rect x="145.8" y="181" width="1.3" height="15.0" fill="rgb(252,210,52)" rx="2" ry="2" />
+<text  x="148.76" y="191.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node_track_caller (61,213,674,213 samples, 1.19%)</title><rect x="966.4" y="309" width="14.1" height="15.0" fill="rgb(253,167,16)" rx="2" ry="2" />
+<text  x="969.44" y="319.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,334,024,416 samples, 0.03%)</title><rect x="277.6" y="501" width="0.3" height="15.0" fill="rgb(223,142,23)" rx="2" ry="2" />
+<text  x="280.62" y="511.5" ></text>
+</g>
+<g >
+<title>__cond_resched (496,295,693 samples, 0.01%)</title><rect x="983.8" y="293" width="0.1" height="15.0" fill="rgb(214,44,44)" rx="2" ry="2" />
+<text  x="986.80" y="303.5" ></text>
+</g>
+<g >
+<title>[nbdkit] (776,648,151 samples, 0.02%)</title><rect x="291.7" y="485" width="0.2" height="15.0" fill="rgb(236,178,4)" rx="2" ry="2" />
+<text  x="294.67" y="495.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_uncharge_pages (756,735,491 samples, 0.01%)</title><rect x="262.1" y="133" width="0.2" height="15.0" fill="rgb(209,113,42)" rx="2" ry="2" />
+<text  x="265.08" y="143.5" ></text>
+</g>
+<g >
+<title>send_from_wbuf (1,996,805,173 samples, 0.04%)</title><rect x="273.6" y="341" width="0.5" height="15.0" fill="rgb(209,104,19)" rx="2" ry="2" />
+<text  x="276.61" y="351.5" ></text>
+</g>
+<g >
+<title>scheduler_tick (807,896,439 samples, 0.02%)</title><rect x="1044.1" y="325" width="0.2" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
+<text  x="1047.07" y="335.5" ></text>
+</g>
+<g >
+<title>ktime_get (10,111,225,821 samples, 0.20%)</title><rect x="1046.9" y="389" width="2.3" height="15.0" fill="rgb(233,197,6)" rx="2" ry="2" />
+<text  x="1049.87" y="399.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (883,880,255 samples, 0.02%)</title><rect x="42.7" y="197" width="0.2" height="15.0" fill="rgb(253,168,28)" rx="2" ry="2" />
+<text  x="45.71" y="207.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,061,149,882 samples, 0.02%)</title><rect x="276.4" y="517" width="0.2" height="15.0" fill="rgb(210,55,2)" rx="2" ry="2" />
+<text  x="279.36" y="527.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,361,862,353 samples, 0.03%)</title><rect x="278.3" y="485" width="0.3" height="15.0" fill="rgb(225,104,36)" rx="2" ry="2" />
+<text  x="281.32" y="495.5" ></text>
+</g>
+<g >
+<title>alloc_pages (2,397,712,486 samples, 0.05%)</title><rect x="103.4" y="165" width="0.5" height="15.0" fill="rgb(242,129,15)" rx="2" ry="2" />
+<text  x="106.39" y="175.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,284,791,614 samples, 0.02%)</title><rect x="819.6" y="453" width="0.3" height="15.0" fill="rgb(208,201,24)" rx="2" ry="2" />
+<text  x="822.57" y="463.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (1,380,485,986 samples, 0.03%)</title><rect x="192.4" y="165" width="0.4" height="15.0" fill="rgb(249,30,35)" rx="2" ry="2" />
+<text  x="195.44" y="175.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,304,464,248 samples, 0.03%)</title><rect x="279.0" y="501" width="0.3" height="15.0" fill="rgb(230,125,2)" rx="2" ry="2" />
+<text  x="281.97" y="511.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (506,304,244 samples, 0.01%)</title><rect x="377.1" y="325" width="0.1" height="15.0" fill="rgb(228,154,4)" rx="2" ry="2" />
+<text  x="380.12" y="335.5" ></text>
+</g>
+<g >
+<title>nr_iowait_cpu (789,487,750 samples, 0.02%)</title><rect x="1187.9" y="469" width="0.1" height="15.0" fill="rgb(248,24,31)" rx="2" ry="2" />
+<text  x="1190.86" y="479.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (591,643,920 samples, 0.01%)</title><rect x="805.8" y="325" width="0.2" height="15.0" fill="rgb(236,66,31)" rx="2" ry="2" />
+<text  x="808.84" y="335.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (10,291,345,168 samples, 0.20%)</title><rect x="952.1" y="341" width="2.4" height="15.0" fill="rgb(230,38,24)" rx="2" ry="2" />
+<text  x="955.14" y="351.5" ></text>
+</g>
+<g >
+<title>__fget_light (4,003,683,248 samples, 0.08%)</title><rect x="383.6" y="373" width="0.9" height="15.0" fill="rgb(214,178,49)" rx="2" ry="2" />
+<text  x="386.61" y="383.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (1,123,830,127 samples, 0.02%)</title><rect x="344.4" y="357" width="0.2" height="15.0" fill="rgb(219,215,21)" rx="2" ry="2" />
+<text  x="347.38" y="367.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (583,671,013 samples, 0.01%)</title><rect x="332.1" y="293" width="0.1" height="15.0" fill="rgb(230,29,17)" rx="2" ry="2" />
+<text  x="335.09" y="303.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (447,037,110 samples, 0.01%)</title><rect x="977.1" y="229" width="0.1" height="15.0" fill="rgb(209,125,9)" rx="2" ry="2" />
+<text  x="980.06" y="239.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (7,299,553,419 samples, 0.14%)</title><rect x="346.2" y="405" width="1.7" height="15.0" fill="rgb(231,52,42)" rx="2" ry="2" />
+<text  x="349.25" y="415.5" ></text>
+</g>
+<g >
+<title>filemap_get_pages (27,164,826,677 samples, 0.53%)</title><rect x="395.2" y="341" width="6.2" height="15.0" fill="rgb(238,197,4)" rx="2" ry="2" />
+<text  x="398.21" y="351.5" ></text>
+</g>
+<g >
+<title>nbd_get_debug (733,579,047 samples, 0.01%)</title><rect x="274.4" y="389" width="0.1" height="15.0" fill="rgb(230,49,9)" rx="2" ry="2" />
+<text  x="277.35" y="399.5" ></text>
+</g>
+<g >
+<title>update_load_avg (1,621,951,932 samples, 0.03%)</title><rect x="144.9" y="181" width="0.3" height="15.0" fill="rgb(248,181,20)" rx="2" ry="2" />
+<text  x="147.86" y="191.5" ></text>
+</g>
+<g >
+<title>security_socket_sendmsg (7,463,165,104 samples, 0.14%)</title><rect x="65.3" y="213" width="1.7" height="15.0" fill="rgb(249,135,0)" rx="2" ry="2" />
+<text  x="68.28" y="223.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,543,564,769 samples, 0.03%)</title><rect x="280.3" y="549" width="0.3" height="15.0" fill="rgb(245,88,49)" rx="2" ry="2" />
+<text  x="283.27" y="559.5" ></text>
+</g>
+<g >
+<title>kthread (1,306,472,119 samples, 0.03%)</title><rect x="279.0" y="533" width="0.3" height="15.0" fill="rgb(222,150,51)" rx="2" ry="2" />
+<text  x="281.97" y="543.5" ></text>
+</g>
+<g >
+<title>consume_skb (118,150,784,813 samples, 2.29%)</title><rect x="850.1" y="341" width="27.1" height="15.0" fill="rgb(207,97,38)" rx="2" ry="2" />
+<text  x="853.12" y="351.5" >c..</text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (1,608,485,177 samples, 0.03%)</title><rect x="271.4" y="245" width="0.3" height="15.0" fill="rgb(222,202,46)" rx="2" ry="2" />
+<text  x="274.37" y="255.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (21,576,528,363 samples, 0.42%)</title><rect x="1059.8" y="421" width="4.9" height="15.0" fill="rgb(241,228,17)" rx="2" ry="2" />
+<text  x="1062.79" y="431.5" ></text>
+</g>
+<g >
+<title>psi_task_change (56,920,901,366 samples, 1.10%)</title><rect x="1117.4" y="421" width="13.0" height="15.0" fill="rgb(249,126,32)" rx="2" ry="2" />
+<text  x="1120.39" y="431.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (10,558,299,186 samples, 0.20%)</title><rect x="190.8" y="181" width="2.4" height="15.0" fill="rgb(252,227,48)" rx="2" ry="2" />
+<text  x="193.80" y="191.5" ></text>
+</g>
+<g >
+<title>percpu_ref_put_many.constprop.0 (692,076,957 samples, 0.01%)</title><rect x="85.9" y="133" width="0.2" height="15.0" fill="rgb(209,24,20)" rx="2" ry="2" />
+<text  x="88.89" y="143.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (1,300,801,250 samples, 0.03%)</title><rect x="268.4" y="165" width="0.3" height="15.0" fill="rgb(225,209,53)" rx="2" ry="2" />
+<text  x="271.41" y="175.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (6,229,648,552 samples, 0.12%)</title><rect x="906.8" y="421" width="1.5" height="15.0" fill="rgb(223,21,29)" rx="2" ry="2" />
+<text  x="909.84" y="431.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (2,611,522,495 samples, 0.05%)</title><rect x="270.1" y="133" width="0.6" height="15.0" fill="rgb(234,78,10)" rx="2" ry="2" />
+<text  x="273.06" y="143.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,037,310,197 samples, 0.02%)</title><rect x="281.1" y="453" width="0.3" height="15.0" fill="rgb(243,77,16)" rx="2" ry="2" />
+<text  x="284.15" y="463.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (811,011,568 samples, 0.02%)</title><rect x="317.7" y="213" width="0.2" height="15.0" fill="rgb(207,75,53)" rx="2" ry="2" />
+<text  x="320.71" y="223.5" ></text>
+</g>
+<g >
+<title>unix_stream_sendmsg (67,993,062,198 samples, 1.32%)</title><rect x="39.7" y="229" width="15.6" height="15.0" fill="rgb(245,193,47)" rx="2" ry="2" />
+<text  x="42.74" y="239.5" ></text>
+</g>
+<g >
+<title>kfree (604,830,239 samples, 0.01%)</title><rect x="188.7" y="149" width="0.1" height="15.0" fill="rgb(205,57,16)" rx="2" ry="2" />
+<text  x="191.69" y="159.5" ></text>
+</g>
+<g >
+<title>prepare_alloc_pages.constprop.0 (1,851,049,801 samples, 0.04%)</title><rect x="961.0" y="309" width="0.4" height="15.0" fill="rgb(242,108,13)" rx="2" ry="2" />
+<text  x="963.98" y="319.5" ></text>
+</g>
+<g >
+<title>__libc_pwrite (1,135,743,567 samples, 0.02%)</title><rect x="284.2" y="501" width="0.2" height="15.0" fill="rgb(237,170,32)" rx="2" ry="2" />
+<text  x="287.17" y="511.5" ></text>
+</g>
+<g >
+<title>avc_lookup (564,314,371 samples, 0.01%)</title><rect x="839.1" y="309" width="0.1" height="15.0" fill="rgb(227,33,14)" rx="2" ry="2" />
+<text  x="842.05" y="319.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (2,719,222,660 samples, 0.05%)</title><rect x="328.0" y="293" width="0.6" height="15.0" fill="rgb(240,37,25)" rx="2" ry="2" />
+<text  x="331.00" y="303.5" ></text>
+</g>
+<g >
+<title>__switch_to_asm (3,141,903,196 samples, 0.06%)</title><rect x="294.5" y="469" width="0.7" height="15.0" fill="rgb(233,150,26)" rx="2" ry="2" />
+<text  x="297.45" y="479.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (568,615,885 samples, 0.01%)</title><rect x="1072.3" y="437" width="0.1" height="15.0" fill="rgb(253,110,1)" rx="2" ry="2" />
+<text  x="1075.25" y="447.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (56,882,278,589 samples, 1.10%)</title><rect x="206.6" y="181" width="13.0" height="15.0" fill="rgb(225,186,31)" rx="2" ry="2" />
+<text  x="209.57" y="191.5" ></text>
+</g>
+<g >
+<title>rb_insert_color (750,579,543 samples, 0.01%)</title><rect x="1112.3" y="389" width="0.1" height="15.0" fill="rgb(227,120,10)" rx="2" ry="2" />
+<text  x="1115.27" y="399.5" ></text>
+</g>
+<g >
+<title>set_task_cpu (3,160,157,068 samples, 0.06%)</title><rect x="370.1" y="357" width="0.7" height="15.0" fill="rgb(211,38,34)" rx="2" ry="2" />
+<text  x="373.11" y="367.5" ></text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_REPLY_CHECK_SIMPLE_OR_STRUCTURED_REPLY.constprop.0 (21,312,161,163 samples, 0.41%)</title><rect x="166.7" y="325" width="4.9" height="15.0" fill="rgb(215,158,14)" rx="2" ry="2" />
+<text  x="169.72" y="335.5" ></text>
+</g>
+<g >
+<title>update_irq_load_avg (475,176,801 samples, 0.01%)</title><rect x="342.2" y="325" width="0.1" height="15.0" fill="rgb(225,72,31)" rx="2" ry="2" />
+<text  x="345.18" y="335.5" ></text>
+</g>
+<g >
+<title>raw_send_socket (447,899,192,967 samples, 8.69%)</title><rect x="908.9" y="485" width="102.5" height="15.0" fill="rgb(240,108,16)" rx="2" ry="2" />
+<text  x="911.90" y="495.5" >raw_send_soc..</text>
+</g>
+<g >
+<title>recv_into_rbuf.lto_priv.0 (606,575,244 samples, 0.01%)</title><rect x="272.2" y="341" width="0.1" height="15.0" fill="rgb(220,32,52)" rx="2" ry="2" />
+<text  x="275.18" y="351.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (996,320,902 samples, 0.02%)</title><rect x="173.7" y="261" width="0.2" height="15.0" fill="rgb(243,2,32)" rx="2" ry="2" />
+<text  x="176.66" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_file_write_iter (1,722,946,200 samples, 0.03%)</title><rect x="806.0" y="357" width="0.4" height="15.0" fill="rgb(207,55,7)" rx="2" ry="2" />
+<text  x="808.99" y="367.5" ></text>
+</g>
+<g >
+<title>simple_copy_to_iter (20,012,277,351 samples, 0.39%)</title><rect x="901.9" y="293" width="4.6" height="15.0" fill="rgb(236,208,12)" rx="2" ry="2" />
+<text  x="904.90" y="303.5" ></text>
+</g>
+<g >
+<title>memcg_account_kmem (1,497,137,528 samples, 0.03%)</title><rect x="979.1" y="261" width="0.3" height="15.0" fill="rgb(216,80,1)" rx="2" ry="2" />
+<text  x="982.06" y="271.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (597,530,226 samples, 0.01%)</title><rect x="320.1" y="309" width="0.2" height="15.0" fill="rgb(213,154,11)" rx="2" ry="2" />
+<text  x="323.14" y="319.5" ></text>
+</g>
+<g >
+<title>psi_flags_change (3,931,343,625 samples, 0.08%)</title><rect x="1119.0" y="405" width="0.9" height="15.0" fill="rgb(242,143,47)" rx="2" ry="2" />
+<text  x="1122.03" y="415.5" ></text>
+</g>
+<g >
+<title>kthread (1,432,040,337 samples, 0.03%)</title><rect x="280.6" y="533" width="0.4" height="15.0" fill="rgb(252,9,30)" rx="2" ry="2" />
+<text  x="283.62" y="543.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (549,459,521 samples, 0.01%)</title><rect x="15.4" y="405" width="0.2" height="15.0" fill="rgb(239,113,49)" rx="2" ry="2" />
+<text  x="18.45" y="415.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (1,738,030,409 samples, 0.03%)</title><rect x="1024.1" y="373" width="0.4" height="15.0" fill="rgb(245,101,34)" rx="2" ry="2" />
+<text  x="1027.09" y="383.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (33,120,999,929 samples, 0.64%)</title><rect x="387.6" y="325" width="7.6" height="15.0" fill="rgb(221,1,42)" rx="2" ry="2" />
+<text  x="390.57" y="335.5" ></text>
+</g>
+<g >
+<title>memcg_check_events (859,888,406 samples, 0.02%)</title><rect x="853.7" y="261" width="0.2" height="15.0" fill="rgb(207,226,42)" rx="2" ry="2" />
+<text  x="856.66" y="271.5" ></text>
+</g>
+<g >
+<title>__fget_light (12,249,409,532 samples, 0.24%)</title><rect x="1004.8" y="373" width="2.8" height="15.0" fill="rgb(219,137,35)" rx="2" ry="2" />
+<text  x="1007.79" y="383.5" ></text>
+</g>
+<g >
+<title>selinux_socket_recvmsg (2,425,304,053 samples, 0.05%)</title><rect x="257.2" y="181" width="0.6" height="15.0" fill="rgb(213,84,25)" rx="2" ry="2" />
+<text  x="260.24" y="191.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter (32,202,994,023 samples, 0.62%)</title><rect x="943.8" y="341" width="7.4" height="15.0" fill="rgb(212,204,3)" rx="2" ry="2" />
+<text  x="946.80" y="351.5" ></text>
+</g>
+<g >
+<title>__poll (1,819,500,144 samples, 0.04%)</title><rect x="10.3" y="485" width="0.4" height="15.0" fill="rgb(238,47,40)" rx="2" ry="2" />
+<text  x="13.31" y="495.5" ></text>
+</g>
+<g >
+<title>security_file_permission (21,096,100,117 samples, 0.41%)</title><rect x="829.3" y="389" width="4.8" height="15.0" fill="rgb(235,109,23)" rx="2" ry="2" />
+<text  x="832.29" y="399.5" ></text>
+</g>
+<g >
+<title>read_tsc (1,016,964,468 samples, 0.02%)</title><rect x="1187.0" y="453" width="0.2" height="15.0" fill="rgb(211,180,39)" rx="2" ry="2" />
+<text  x="1189.98" y="463.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (5,502,102,000 samples, 0.11%)</title><rect x="1115.7" y="373" width="1.3" height="15.0" fill="rgb(229,48,28)" rx="2" ry="2" />
+<text  x="1118.75" y="383.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (1,056,930,237 samples, 0.02%)</title><rect x="205.9" y="149" width="0.2" height="15.0" fill="rgb(251,31,7)" rx="2" ry="2" />
+<text  x="208.89" y="159.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (1,483,514,200 samples, 0.03%)</title><rect x="19.7" y="405" width="0.4" height="15.0" fill="rgb(239,57,15)" rx="2" ry="2" />
+<text  x="22.73" y="415.5" ></text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_ISSUE_COMMAND_FINISH.constprop.0 (557,673,615 samples, 0.01%)</title><rect x="59.8" y="341" width="0.1" height="15.0" fill="rgb(221,83,30)" rx="2" ry="2" />
+<text  x="62.79" y="351.5" ></text>
+</g>
+<g >
+<title>axmap_isset (4,108,704,141 samples, 0.08%)</title><rect x="22.4" y="405" width="1.0" height="15.0" fill="rgb(238,188,14)" rx="2" ry="2" />
+<text  x="25.45" y="415.5" ></text>
+</g>
+<g >
+<title>pthread_getspecific@@GLIBC_2.34 (933,274,844 samples, 0.02%)</title><rect x="272.6" y="357" width="0.2" height="15.0" fill="rgb(236,174,11)" rx="2" ry="2" />
+<text  x="275.57" y="367.5" ></text>
+</g>
+<g >
+<title>irq_enter_rcu (17,466,973,982 samples, 0.34%)</title><rect x="1046.0" y="421" width="4.0" height="15.0" fill="rgb(249,48,16)" rx="2" ry="2" />
+<text  x="1049.00" y="431.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (2,521,081,250 samples, 0.05%)</title><rect x="200.8" y="101" width="0.6" height="15.0" fill="rgb(214,213,23)" rx="2" ry="2" />
+<text  x="203.79" y="111.5" ></text>
+</g>
+<g >
+<title>pthread_getspecific@@GLIBC_2.34 (2,630,426,567 samples, 0.05%)</title><rect x="1014.8" y="501" width="0.6" height="15.0" fill="rgb(206,188,10)" rx="2" ry="2" />
+<text  x="1017.77" y="511.5" ></text>
+</g>
+<g >
+<title>sugov_update_single_freq (1,202,348,990 samples, 0.02%)</title><rect x="373.4" y="293" width="0.3" height="15.0" fill="rgb(233,22,47)" rx="2" ry="2" />
+<text  x="376.38" y="303.5" ></text>
+</g>
+<g >
+<title>get_next_timer_interrupt (30,829,749,448 samples, 0.60%)</title><rect x="1160.0" y="437" width="7.1" height="15.0" fill="rgb(224,84,7)" rx="2" ry="2" />
+<text  x="1163.04" y="447.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (475,108,068 samples, 0.01%)</title><rect x="993.2" y="245" width="0.1" height="15.0" fill="rgb(242,203,8)" rx="2" ry="2" />
+<text  x="996.21" y="255.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (3,855,628,803 samples, 0.07%)</title><rect x="863.2" y="277" width="0.9" height="15.0" fill="rgb(210,126,22)" rx="2" ry="2" />
+<text  x="866.25" y="287.5" ></text>
+</g>
+<g >
+<title>kthread (1,372,022,609 samples, 0.03%)</title><rect x="278.3" y="533" width="0.3" height="15.0" fill="rgb(233,91,6)" rx="2" ry="2" />
+<text  x="281.32" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (1,302,212,711 samples, 0.03%)</title><rect x="357.2" y="389" width="0.3" height="15.0" fill="rgb(219,61,18)" rx="2" ry="2" />
+<text  x="360.21" y="399.5" ></text>
+</g>
+<g >
+<title>__futex_unqueue (1,390,297,091 samples, 0.03%)</title><rect x="359.1" y="373" width="0.3" height="15.0" fill="rgb(229,3,49)" rx="2" ry="2" />
+<text  x="362.07" y="383.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (99,230,046,408 samples, 1.92%)</title><rect x="382.9" y="421" width="22.7" height="15.0" fill="rgb(253,129,30)" rx="2" ry="2" />
+<text  x="385.90" y="431.5" >e..</text>
+</g>
+<g >
+<title>__sys_sendto (187,203,196,732 samples, 3.63%)</title><rect x="63.7" y="245" width="42.9" height="15.0" fill="rgb(211,17,37)" rx="2" ry="2" />
+<text  x="66.74" y="255.5" >__sy..</text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,274,874,166 samples, 0.02%)</title><rect x="280.6" y="453" width="0.3" height="15.0" fill="rgb(252,40,40)" rx="2" ry="2" />
+<text  x="283.63" y="463.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (646,227,935 samples, 0.01%)</title><rect x="1174.7" y="389" width="0.2" height="15.0" fill="rgb(237,142,13)" rx="2" ry="2" />
+<text  x="1177.73" y="399.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_recvmsg (1,771,721,580 samples, 0.03%)</title><rect x="836.6" y="341" width="0.4" height="15.0" fill="rgb(253,137,45)" rx="2" ry="2" />
+<text  x="839.62" y="351.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (649,600,323 samples, 0.01%)</title><rect x="869.1" y="293" width="0.2" height="15.0" fill="rgb(224,109,15)" rx="2" ry="2" />
+<text  x="872.14" y="303.5" ></text>
+</g>
+<g >
+<title>__get_next_rand_offset.isra.0 (3,160,464,483 samples, 0.06%)</title><rect x="21.7" y="405" width="0.7" height="15.0" fill="rgb(235,149,9)" rx="2" ry="2" />
+<text  x="24.72" y="415.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,395,933,433 samples, 0.03%)</title><rect x="280.0" y="517" width="0.3" height="15.0" fill="rgb(205,170,15)" rx="2" ry="2" />
+<text  x="282.95" y="527.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (484,710,357 samples, 0.01%)</title><rect x="1017.2" y="245" width="0.1" height="15.0" fill="rgb(241,206,15)" rx="2" ry="2" />
+<text  x="1020.21" y="255.5" ></text>
+</g>
+<g >
+<title>do_idle (708,512,442,814 samples, 13.74%)</title><rect x="1027.8" y="501" width="162.1" height="15.0" fill="rgb(217,102,20)" rx="2" ry="2" />
+<text  x="1030.80" y="511.5" >do_idle</text>
+</g>
+<g >
+<title>nbd_internal_enter_STATE_REPLY_START.constprop.0 (135,853,740,466 samples, 2.63%)</title><rect x="171.7" y="325" width="31.1" height="15.0" fill="rgb(220,207,37)" rx="2" ry="2" />
+<text  x="174.69" y="335.5" >nb..</text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (3,254,176,676 samples, 0.06%)</title><rect x="112.6" y="373" width="0.7" height="15.0" fill="rgb(244,228,14)" rx="2" ry="2" />
+<text  x="115.55" y="383.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (45,997,684,012 samples, 0.89%)</title><rect x="891.4" y="277" width="10.5" height="15.0" fill="rgb(208,96,11)" rx="2" ry="2" />
+<text  x="894.35" y="287.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (2,789,499,065 samples, 0.05%)</title><rect x="24.8" y="373" width="0.6" height="15.0" fill="rgb(217,142,33)" rx="2" ry="2" />
+<text  x="27.80" y="383.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (2,379,577,314 samples, 0.05%)</title><rect x="52.8" y="133" width="0.5" height="15.0" fill="rgb(249,50,27)" rx="2" ry="2" />
+<text  x="55.79" y="143.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (3,154,076,699 samples, 0.06%)</title><rect x="106.8" y="261" width="0.7" height="15.0" fill="rgb(249,30,29)" rx="2" ry="2" />
+<text  x="109.77" y="271.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (729,419,919 samples, 0.01%)</title><rect x="62.8" y="277" width="0.2" height="15.0" fill="rgb(223,214,9)" rx="2" ry="2" />
+<text  x="65.82" y="287.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,196,339,682 samples, 0.02%)</title><rect x="277.6" y="453" width="0.3" height="15.0" fill="rgb(218,26,35)" rx="2" ry="2" />
+<text  x="280.63" y="463.5" ></text>
+</g>
+<g >
+<title>kthread (1,551,227,045 samples, 0.03%)</title><rect x="279.6" y="533" width="0.3" height="15.0" fill="rgb(242,5,9)" rx="2" ry="2" />
+<text  x="282.59" y="543.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,703,515,182 samples, 0.03%)</title><rect x="282.8" y="485" width="0.4" height="15.0" fill="rgb(207,141,22)" rx="2" ry="2" />
+<text  x="285.78" y="495.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (503,773,387 samples, 0.01%)</title><rect x="799.2" y="245" width="0.1" height="15.0" fill="rgb(249,195,40)" rx="2" ry="2" />
+<text  x="802.20" y="255.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (608,325,765 samples, 0.01%)</title><rect x="279.3" y="437" width="0.1" height="15.0" fill="rgb(241,184,26)" rx="2" ry="2" />
+<text  x="282.27" y="447.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (8,423,647,209 samples, 0.16%)</title><rect x="959.0" y="309" width="2.0" height="15.0" fill="rgb(222,11,22)" rx="2" ry="2" />
+<text  x="962.05" y="319.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (601,945,419 samples, 0.01%)</title><rect x="954.3" y="325" width="0.1" height="15.0" fill="rgb(218,222,31)" rx="2" ry="2" />
+<text  x="957.28" y="335.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (72,787,608,444 samples, 1.41%)</title><rect x="38.6" y="245" width="16.7" height="15.0" fill="rgb(239,225,43)" rx="2" ry="2" />
+<text  x="41.64" y="255.5" ></text>
+</g>
+<g >
+<title>free_pcp_prepare (1,415,910,210 samples, 0.03%)</title><rect x="869.3" y="293" width="0.4" height="15.0" fill="rgb(222,22,41)" rx="2" ry="2" />
+<text  x="872.33" y="303.5" ></text>
+</g>
+<g >
+<title>preempt_count_sub (815,933,871 samples, 0.02%)</title><rect x="311.0" y="277" width="0.2" height="15.0" fill="rgb(205,41,1)" rx="2" ry="2" />
+<text  x="314.00" y="287.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (21,081,746,467 samples, 0.41%)</title><rect x="1173.7" y="437" width="4.8" height="15.0" fill="rgb(241,55,11)" rx="2" ry="2" />
+<text  x="1176.69" y="447.5" ></text>
+</g>
+<g >
+<title>__printf_buffer_write (2,244,364,353 samples, 0.04%)</title><rect x="126.1" y="309" width="0.6" height="15.0" fill="rgb(222,95,38)" rx="2" ry="2" />
+<text  x="129.14" y="319.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter (30,272,894,987 samples, 0.59%)</title><rect x="74.9" y="181" width="7.0" height="15.0" fill="rgb(223,218,35)" rx="2" ry="2" />
+<text  x="77.92" y="191.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (2,898,435,943 samples, 0.06%)</title><rect x="984.1" y="277" width="0.6" height="15.0" fill="rgb(210,211,30)" rx="2" ry="2" />
+<text  x="987.06" y="287.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (3,719,831,695 samples, 0.07%)</title><rect x="911.3" y="453" width="0.9" height="15.0" fill="rgb(220,206,28)" rx="2" ry="2" />
+<text  x="914.31" y="463.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,585,588,752 samples, 0.03%)</title><rect x="276.0" y="501" width="0.4" height="15.0" fill="rgb(237,14,31)" rx="2" ry="2" />
+<text  x="278.99" y="511.5" ></text>
+</g>
+<g >
+<title>ct_nmi_enter (2,614,212,085 samples, 0.05%)</title><rect x="1050.1" y="405" width="0.6" height="15.0" fill="rgb(222,58,2)" rx="2" ry="2" />
+<text  x="1053.08" y="415.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (1,805,120,529 samples, 0.04%)</title><rect x="1002.4" y="245" width="0.4" height="15.0" fill="rgb(234,42,16)" rx="2" ry="2" />
+<text  x="1005.42" y="255.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (630,546,794 samples, 0.01%)</title><rect x="145.3" y="213" width="0.1" height="15.0" fill="rgb(226,10,44)" rx="2" ry="2" />
+<text  x="148.27" y="223.5" ></text>
+</g>
+<g >
+<title>[unknown] (2,915,656,299 samples, 0.06%)</title><rect x="10.1" y="501" width="0.6" height="15.0" fill="rgb(234,105,35)" rx="2" ry="2" />
+<text  x="13.06" y="511.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (2,687,429,779 samples, 0.05%)</title><rect x="106.0" y="229" width="0.6" height="15.0" fill="rgb(222,92,46)" rx="2" ry="2" />
+<text  x="108.96" y="239.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (2,620,316,911 samples, 0.05%)</title><rect x="258.9" y="165" width="0.6" height="15.0" fill="rgb(208,54,31)" rx="2" ry="2" />
+<text  x="261.91" y="175.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock@@GLIBC_2.2.5 (601,569,065 samples, 0.01%)</title><rect x="122.7" y="357" width="0.2" height="15.0" fill="rgb(225,129,48)" rx="2" ry="2" />
+<text  x="125.72" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (622,095,245 samples, 0.01%)</title><rect x="282.3" y="389" width="0.1" height="15.0" fill="rgb(226,59,28)" rx="2" ry="2" />
+<text  x="285.27" y="399.5" ></text>
+</g>
+<g >
+<title>nbdkit (3,203,982,344,532 samples, 62.14%)</title><rect x="283.9" y="565" width="733.2" height="15.0" fill="rgb(240,211,45)" rx="2" ry="2" />
+<text  x="286.87" y="575.5" >nbdkit</text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (2,151,133,570 samples, 0.04%)</title><rect x="201.8" y="229" width="0.5" height="15.0" fill="rgb(220,7,1)" rx="2" ry="2" />
+<text  x="204.78" y="239.5" ></text>
+</g>
+<g >
+<title>consume_skb (60,095,266,322 samples, 1.17%)</title><rect x="227.5" y="165" width="13.8" height="15.0" fill="rgb(208,114,33)" rx="2" ry="2" />
+<text  x="230.50" y="175.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (1,822,253,869 samples, 0.04%)</title><rect x="364.0" y="341" width="0.4" height="15.0" fill="rgb(205,67,3)" rx="2" ry="2" />
+<text  x="366.96" y="351.5" ></text>
+</g>
+<g >
+<title>__get_task_ioprio (446,867,831 samples, 0.01%)</title><rect x="412.1" y="357" width="0.1" height="15.0" fill="rgb(209,135,47)" rx="2" ry="2" />
+<text  x="415.08" y="367.5" ></text>
+</g>
+<g >
+<title>__memset_avx2_unaligned (512,101,278 samples, 0.01%)</title><rect x="30.2" y="405" width="0.2" height="15.0" fill="rgb(227,150,19)" rx="2" ry="2" />
+<text  x="33.24" y="415.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (1,364,778,421 samples, 0.03%)</title><rect x="268.8" y="165" width="0.3" height="15.0" fill="rgb(243,215,7)" rx="2" ry="2" />
+<text  x="271.80" y="175.5" ></text>
+</g>
+<g >
+<title>__sys_recvfrom (136,974,220,125 samples, 2.66%)</title><rect x="222.6" y="213" width="31.4" height="15.0" fill="rgb(247,23,47)" rx="2" ry="2" />
+<text  x="225.61" y="223.5" >__..</text>
+</g>
+<g >
+<title>memcg_account_kmem (2,362,724,153 samples, 0.05%)</title><rect x="957.7" y="293" width="0.6" height="15.0" fill="rgb(237,59,3)" rx="2" ry="2" />
+<text  x="960.74" y="303.5" ></text>
+</g>
+<g >
+<title>kworker/u64:24- (832,944,371 samples, 0.02%)</title><rect x="281.0" y="565" width="0.1" height="15.0" fill="rgb(228,73,23)" rx="2" ry="2" />
+<text  x="283.95" y="575.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (15,873,795,809 samples, 0.31%)</title><rect x="835.6" y="373" width="3.6" height="15.0" fill="rgb(218,139,34)" rx="2" ry="2" />
+<text  x="838.55" y="383.5" ></text>
+</g>
+<g >
+<title>rwsem_spin_on_owner (85,017,603,598 samples, 1.65%)</title><rect x="769.9" y="325" width="19.5" height="15.0" fill="rgb(224,86,16)" rx="2" ry="2" />
+<text  x="772.95" y="335.5" ></text>
+</g>
+<g >
+<title>ttwu_queue_wakelist (12,618,969,983 samples, 0.24%)</title><rect x="374.9" y="357" width="2.9" height="15.0" fill="rgb(209,225,1)" rx="2" ry="2" />
+<text  x="377.88" y="367.5" ></text>
+</g>
+<g >
+<title>skb_unlink (1,890,548,956 samples, 0.04%)</title><rect x="269.4" y="181" width="0.4" height="15.0" fill="rgb(206,202,38)" rx="2" ry="2" />
+<text  x="272.38" y="191.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (2,833,591,779 samples, 0.05%)</title><rect x="49.7" y="133" width="0.7" height="15.0" fill="rgb(225,84,17)" rx="2" ry="2" />
+<text  x="52.71" y="143.5" ></text>
+</g>
+<g >
+<title>sugov_update_single_freq (918,395,294 samples, 0.02%)</title><rect x="314.4" y="293" width="0.2" height="15.0" fill="rgb(231,106,28)" rx="2" ry="2" />
+<text  x="317.42" y="303.5" ></text>
+</g>
+<g >
+<title>__libc_recv (689,561,215 samples, 0.01%)</title><rect x="172.2" y="309" width="0.2" height="15.0" fill="rgb(212,29,32)" rx="2" ry="2" />
+<text  x="175.20" y="319.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (981,691,955 samples, 0.02%)</title><rect x="224.2" y="197" width="0.2" height="15.0" fill="rgb(247,215,51)" rx="2" ry="2" />
+<text  x="227.22" y="207.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (968,857,155 samples, 0.02%)</title><rect x="142.6" y="213" width="0.2" height="15.0" fill="rgb(246,121,15)" rx="2" ry="2" />
+<text  x="145.57" y="223.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,264,790,456 samples, 0.02%)</title><rect x="203.3" y="277" width="0.3" height="15.0" fill="rgb(219,67,46)" rx="2" ry="2" />
+<text  x="206.32" y="287.5" ></text>
+</g>
+<g >
+<title>raw_recv (395,851,575,961 samples, 7.68%)</title><rect x="818.3" y="485" width="90.6" height="15.0" fill="rgb(231,168,3)" rx="2" ry="2" />
+<text  x="821.31" y="495.5" >raw_recv</text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (2,093,818,659 samples, 0.04%)</title><rect x="106.9" y="245" width="0.5" height="15.0" fill="rgb(245,71,11)" rx="2" ry="2" />
+<text  x="109.88" y="255.5" ></text>
+</g>
+<g >
+<title>__slab_alloc.isra.0 (3,188,130,074 samples, 0.06%)</title><rect x="968.8" y="277" width="0.7" height="15.0" fill="rgb(249,134,34)" rx="2" ry="2" />
+<text  x="971.76" y="287.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (549,885,607 samples, 0.01%)</title><rect x="767.4" y="245" width="0.1" height="15.0" fill="rgb(209,93,53)" rx="2" ry="2" />
+<text  x="770.41" y="255.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (563,899,124 samples, 0.01%)</title><rect x="316.9" y="325" width="0.1" height="15.0" fill="rgb(242,205,48)" rx="2" ry="2" />
+<text  x="319.89" y="335.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (1,405,346,564 samples, 0.03%)</title><rect x="1102.2" y="405" width="0.3" height="15.0" fill="rgb(235,157,1)" rx="2" ry="2" />
+<text  x="1105.21" y="415.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (1,150,342,106,648 samples, 22.31%)</title><rect x="11.9" y="517" width="263.2" height="15.0" fill="rgb(205,46,5)" rx="2" ry="2" />
+<text  x="14.89" y="527.5" >__libc_start_call_main</text>
+</g>
+<g >
+<title>put_prev_entity (952,710,678 samples, 0.02%)</title><rect x="337.6" y="325" width="0.2" height="15.0" fill="rgb(241,217,53)" rx="2" ry="2" />
+<text  x="340.59" y="335.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (625,635,842 samples, 0.01%)</title><rect x="282.0" y="549" width="0.1" height="15.0" fill="rgb(213,167,16)" rx="2" ry="2" />
+<text  x="284.96" y="559.5" ></text>
+</g>
+<g >
+<title>[nbdkit] (954,404,158 samples, 0.02%)</title><rect x="285.6" y="501" width="0.2" height="15.0" fill="rgb(207,124,39)" rx="2" ry="2" />
+<text  x="288.59" y="511.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_mutex_unlock_usercnt (657,507,803 samples, 0.01%)</title><rect x="130.2" y="357" width="0.1" height="15.0" fill="rgb(240,24,43)" rx="2" ry="2" />
+<text  x="133.19" y="367.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (10,627,882,667 samples, 0.21%)</title><rect x="1008.1" y="421" width="2.5" height="15.0" fill="rgb(223,88,0)" rx="2" ry="2" />
+<text  x="1011.14" y="431.5" ></text>
+</g>
+<g >
+<title>newidle_balance (53,144,054,667 samples, 1.03%)</title><rect x="319.2" y="325" width="12.1" height="15.0" fill="rgb(232,14,45)" rx="2" ry="2" />
+<text  x="322.18" y="335.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (651,367,688 samples, 0.01%)</title><rect x="1017.3" y="245" width="0.2" height="15.0" fill="rgb(247,28,16)" rx="2" ry="2" />
+<text  x="1020.33" y="255.5" ></text>
+</g>
+<g >
+<title>kthread (1,335,043,388 samples, 0.03%)</title><rect x="277.6" y="533" width="0.3" height="15.0" fill="rgb(206,150,3)" rx="2" ry="2" />
+<text  x="280.62" y="543.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (2,149,387,508 samples, 0.04%)</title><rect x="377.8" y="357" width="0.5" height="15.0" fill="rgb(253,172,38)" rx="2" ry="2" />
+<text  x="380.77" y="367.5" ></text>
+</g>
+<g >
+<title>fio (1,158,435,078,196 samples, 22.47%)</title><rect x="10.1" y="565" width="265.1" height="15.0" fill="rgb(214,90,12)" rx="2" ry="2" />
+<text  x="13.06" y="575.5" >fio</text>
+</g>
+<g >
+<title>[unknown] (1,996,805,173 samples, 0.04%)</title><rect x="273.6" y="389" width="0.5" height="15.0" fill="rgb(249,52,50)" rx="2" ry="2" />
+<text  x="276.61" y="399.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (12,272,739,703 samples, 0.24%)</title><rect x="196.1" y="117" width="2.8" height="15.0" fill="rgb(243,62,36)" rx="2" ry="2" />
+<text  x="199.06" y="127.5" ></text>
+</g>
+<g >
+<title>can_migrate_task (920,534,930 samples, 0.02%)</title><rect x="322.9" y="293" width="0.2" height="15.0" fill="rgb(242,193,14)" rx="2" ry="2" />
+<text  x="325.93" y="303.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,551,227,045 samples, 0.03%)</title><rect x="279.6" y="549" width="0.3" height="15.0" fill="rgb(244,156,22)" rx="2" ry="2" />
+<text  x="282.59" y="559.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (681,579,844 samples, 0.01%)</title><rect x="338.6" y="309" width="0.2" height="15.0" fill="rgb(224,211,30)" rx="2" ry="2" />
+<text  x="341.60" y="319.5" ></text>
+</g>
+<g >
+<title>[perf] (4,277,426,306 samples, 0.08%)</title><rect x="1017.1" y="549" width="1.0" height="15.0" fill="rgb(246,71,23)" rx="2" ry="2" />
+<text  x="1020.08" y="559.5" ></text>
+</g>
+<g >
+<title>menu_select (6,322,562,807 samples, 0.12%)</title><rect x="1025.4" y="453" width="1.4" height="15.0" fill="rgb(212,217,35)" rx="2" ry="2" />
+<text  x="1028.36" y="463.5" ></text>
+</g>
+<g >
+<title>rcu_needs_cpu (1,543,045,497 samples, 0.03%)</title><rect x="1168.0" y="437" width="0.4" height="15.0" fill="rgb(220,112,18)" rx="2" ry="2" />
+<text  x="1171.03" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (758,103,845 samples, 0.01%)</title><rect x="282.8" y="437" width="0.2" height="15.0" fill="rgb(250,62,47)" rx="2" ry="2" />
+<text  x="285.79" y="447.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (555,618,997 samples, 0.01%)</title><rect x="36.8" y="325" width="0.1" height="15.0" fill="rgb(219,50,45)" rx="2" ry="2" />
+<text  x="39.80" y="335.5" ></text>
+</g>
+<g >
+<title>consume_skb (24,298,963,919 samples, 0.47%)</title><rect x="209.0" y="165" width="5.6" height="15.0" fill="rgb(240,222,2)" rx="2" ry="2" />
+<text  x="212.02" y="175.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (5,611,758,248 samples, 0.11%)</title><rect x="144.0" y="197" width="1.3" height="15.0" fill="rgb(207,41,44)" rx="2" ry="2" />
+<text  x="146.98" y="207.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node_track_caller (25,370,110,841 samples, 0.49%)</title><rect x="91.3" y="149" width="5.9" height="15.0" fill="rgb(242,180,12)" rx="2" ry="2" />
+<text  x="94.35" y="159.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (463,535,715 samples, 0.01%)</title><rect x="11.7" y="469" width="0.1" height="15.0" fill="rgb(211,126,47)" rx="2" ry="2" />
+<text  x="14.71" y="479.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,115,483,059 samples, 0.02%)</title><rect x="216.1" y="133" width="0.2" height="15.0" fill="rgb(219,59,2)" rx="2" ry="2" />
+<text  x="219.09" y="143.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (3,542,645,127 samples, 0.07%)</title><rect x="94.8" y="85" width="0.8" height="15.0" fill="rgb(254,20,29)" rx="2" ry="2" />
+<text  x="97.79" y="95.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (238,424,618,295 samples, 4.62%)</title><rect x="296.2" y="453" width="54.6" height="15.0" fill="rgb(252,200,5)" rx="2" ry="2" />
+<text  x="299.22" y="463.5" >do_sy..</text>
+</g>
+<g >
+<title>sock_wfree (9,029,574,657 samples, 0.18%)</title><rect x="264.9" y="133" width="2.1" height="15.0" fill="rgb(244,189,20)" rx="2" ry="2" />
+<text  x="267.90" y="143.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,123,816,542 samples, 0.02%)</title><rect x="262.4" y="117" width="0.3" height="15.0" fill="rgb(246,152,54)" rx="2" ry="2" />
+<text  x="265.40" y="127.5" ></text>
+</g>
+<g >
+<title>__list_add_valid (1,013,372,647 samples, 0.02%)</title><rect x="870.0" y="277" width="0.2" height="15.0" fill="rgb(242,8,16)" rx="2" ry="2" />
+<text  x="872.96" y="287.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (2,233,113,691 samples, 0.04%)</title><rect x="1023.3" y="389" width="0.5" height="15.0" fill="rgb(211,60,29)" rx="2" ry="2" />
+<text  x="1026.30" y="399.5" ></text>
+</g>
+<g >
+<title>__slab_free (17,110,498,088 samples, 0.33%)</title><rect x="864.2" y="309" width="3.9" height="15.0" fill="rgb(224,77,32)" rx="2" ry="2" />
+<text  x="867.17" y="319.5" ></text>
+</g>
+<g >
+<title>dequeue_task (1,094,194,888 samples, 0.02%)</title><rect x="323.2" y="293" width="0.3" height="15.0" fill="rgb(232,15,10)" rx="2" ry="2" />
+<text  x="326.23" y="303.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_unlock@@GLIBC_2.2.5 (747,747,011 samples, 0.01%)</title><rect x="273.4" y="373" width="0.2" height="15.0" fill="rgb(228,65,14)" rx="2" ry="2" />
+<text  x="276.44" y="383.5" ></text>
+</g>
+<g >
+<title>put_file (1,744,151,010 samples, 0.03%)</title><rect x="117.9" y="373" width="0.4" height="15.0" fill="rgb(242,209,23)" rx="2" ry="2" />
+<text  x="120.87" y="383.5" ></text>
+</g>
+<g >
+<title>futex_hash (956,839,670 samples, 0.02%)</title><rect x="344.7" y="357" width="0.2" height="15.0" fill="rgb(249,144,38)" rx="2" ry="2" />
+<text  x="347.66" y="367.5" ></text>
+</g>
+<g >
+<title>kworker/u64:8-k (1,443,887,376 samples, 0.03%)</title><rect x="283.2" y="565" width="0.3" height="15.0" fill="rgb(238,24,39)" rx="2" ry="2" />
+<text  x="286.17" y="575.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (668,235,103 samples, 0.01%)</title><rect x="254.5" y="261" width="0.1" height="15.0" fill="rgb(236,170,25)" rx="2" ry="2" />
+<text  x="257.46" y="271.5" ></text>
+</g>
+<g >
+<title>get_cpu_device (1,162,647,529 samples, 0.02%)</title><rect x="1148.7" y="453" width="0.2" height="15.0" fill="rgb(224,145,42)" rx="2" ry="2" />
+<text  x="1151.67" y="463.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (1,933,071,878 samples, 0.04%)</title><rect x="74.5" y="165" width="0.4" height="15.0" fill="rgb(246,151,10)" rx="2" ry="2" />
+<text  x="77.48" y="175.5" ></text>
+</g>
+<g >
+<title>newidle_balance (5,827,791,216 samples, 0.11%)</title><rect x="791.7" y="277" width="1.3" height="15.0" fill="rgb(228,40,32)" rx="2" ry="2" />
+<text  x="794.66" y="287.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (4,893,546,492 samples, 0.09%)</title><rect x="156.9" y="277" width="1.1" height="15.0" fill="rgb(234,142,23)" rx="2" ry="2" />
+<text  x="159.90" y="287.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (3,558,869,638 samples, 0.07%)</title><rect x="433.0" y="325" width="0.9" height="15.0" fill="rgb(233,135,14)" rx="2" ry="2" />
+<text  x="436.05" y="335.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (1,467,356,127 samples, 0.03%)</title><rect x="99.8" y="117" width="0.3" height="15.0" fill="rgb(242,117,2)" rx="2" ry="2" />
+<text  x="102.77" y="127.5" ></text>
+</g>
+<g >
+<title>__x64_sys_pwrite64 (1,741,998,677,758 samples, 33.78%)</title><rect x="409.1" y="389" width="398.7" height="15.0" fill="rgb(230,90,30)" rx="2" ry="2" />
+<text  x="412.13" y="399.5" >__x64_sys_pwrite64</text>
+</g>
+<g >
+<title>mutex_lock (8,261,992,235 samples, 0.16%)</title><rect x="884.4" y="341" width="1.9" height="15.0" fill="rgb(245,144,32)" rx="2" ry="2" />
+<text  x="887.36" y="351.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,408,209,199 samples, 0.03%)</title><rect x="283.2" y="469" width="0.3" height="15.0" fill="rgb(222,123,14)" rx="2" ry="2" />
+<text  x="286.17" y="479.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (566,017,493 samples, 0.01%)</title><rect x="72.0" y="197" width="0.2" height="15.0" fill="rgb(223,223,19)" rx="2" ry="2" />
+<text  x="75.05" y="207.5" ></text>
+</g>
+<g >
+<title>unix_stream_read_generic (290,415,445,854 samples, 5.63%)</title><rect x="840.0" y="357" width="66.5" height="15.0" fill="rgb(231,168,49)" rx="2" ry="2" />
+<text  x="843.02" y="367.5" >unix_st..</text>
+</g>
+<g >
+<title>tick_check_oneshot_broadcast_this_cpu (1,630,069,965 samples, 0.03%)</title><rect x="1049.6" y="389" width="0.4" height="15.0" fill="rgb(248,215,32)" rx="2" ry="2" />
+<text  x="1052.63" y="399.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,425,303,918 samples, 0.03%)</title><rect x="282.4" y="453" width="0.3" height="15.0" fill="rgb(210,111,32)" rx="2" ry="2" />
+<text  x="285.42" y="463.5" ></text>
+</g>
+<g >
+<title>__libc_pwrite (1,760,651,397,800 samples, 34.15%)</title><rect x="406.8" y="437" width="402.9" height="15.0" fill="rgb(231,173,47)" rx="2" ry="2" />
+<text  x="409.79" y="447.5" >__libc_pwrite</text>
+</g>
+<g >
+<title>avc_has_perm (1,116,442,267 samples, 0.02%)</title><rect x="39.5" y="197" width="0.2" height="15.0" fill="rgb(252,165,19)" rx="2" ry="2" />
+<text  x="42.49" y="207.5" ></text>
+</g>
+<g >
+<title>fio_gettime.constprop.0 (699,108,561 samples, 0.01%)</title><rect x="15.9" y="437" width="0.1" height="15.0" fill="rgb(247,168,35)" rx="2" ry="2" />
+<text  x="18.87" y="447.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,020,970,971 samples, 0.02%)</title><rect x="283.9" y="485" width="0.2" height="15.0" fill="rgb(246,42,16)" rx="2" ry="2" />
+<text  x="286.90" y="495.5" ></text>
+</g>
+<g >
+<title>uncharge_folio (3,084,581,933 samples, 0.06%)</title><rect x="233.3" y="101" width="0.7" height="15.0" fill="rgb(218,182,47)" rx="2" ry="2" />
+<text  x="236.25" y="111.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,267,518,724 samples, 0.02%)</title><rect x="279.3" y="453" width="0.3" height="15.0" fill="rgb(220,135,36)" rx="2" ry="2" />
+<text  x="282.27" y="463.5" ></text>
+</g>
+<g >
+<title>allocate_slab (808,999,019 samples, 0.02%)</title><rect x="92.7" y="85" width="0.1" height="15.0" fill="rgb(210,73,2)" rx="2" ry="2" />
+<text  x="95.66" y="95.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (1,822,193,517 samples, 0.04%)</title><rect x="216.7" y="149" width="0.4" height="15.0" fill="rgb(234,223,41)" rx="2" ry="2" />
+<text  x="219.69" y="159.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (15,695,408,933 samples, 0.30%)</title><rect x="370.8" y="357" width="3.6" height="15.0" fill="rgb(212,164,25)" rx="2" ry="2" />
+<text  x="373.83" y="367.5" ></text>
+</g>
+<g >
+<title>free_unref_page (7,470,161,290 samples, 0.14%)</title><rect x="237.6" y="133" width="1.7" height="15.0" fill="rgb(229,65,8)" rx="2" ry="2" />
+<text  x="240.56" y="143.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (626,532,742 samples, 0.01%)</title><rect x="153.2" y="229" width="0.1" height="15.0" fill="rgb(226,78,15)" rx="2" ry="2" />
+<text  x="156.17" y="239.5" ></text>
+</g>
+<g >
+<title>cpuacct_charge (3,034,401,929 samples, 0.06%)</title><rect x="311.2" y="293" width="0.7" height="15.0" fill="rgb(227,96,51)" rx="2" ry="2" />
+<text  x="314.19" y="303.5" ></text>
+</g>
+<g >
+<title>allocate_slab (654,712,491 samples, 0.01%)</title><rect x="99.0" y="101" width="0.1" height="15.0" fill="rgb(250,184,20)" rx="2" ry="2" />
+<text  x="101.95" y="111.5" ></text>
+</g>
+<g >
+<title>kmalloc_slab (1,386,173,578 samples, 0.03%)</title><rect x="97.4" y="133" width="0.3" height="15.0" fill="rgb(232,117,16)" rx="2" ry="2" />
+<text  x="100.41" y="143.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (846,603,565 samples, 0.02%)</title><rect x="370.6" y="309" width="0.2" height="15.0" fill="rgb(246,199,47)" rx="2" ry="2" />
+<text  x="373.63" y="319.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,393,275,362 samples, 0.03%)</title><rect x="280.0" y="501" width="0.3" height="15.0" fill="rgb(254,37,28)" rx="2" ry="2" />
+<text  x="282.95" y="511.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (9,189,296,319 samples, 0.18%)</title><rect x="260.6" y="149" width="2.1" height="15.0" fill="rgb(254,92,2)" rx="2" ry="2" />
+<text  x="263.56" y="159.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (6,110,058,825 samples, 0.12%)</title><rect x="239.9" y="149" width="1.4" height="15.0" fill="rgb(212,199,6)" rx="2" ry="2" />
+<text  x="242.85" y="159.5" ></text>
+</g>
+<g >
+<title>[unknown] (527,275,581 samples, 0.01%)</title><rect x="10.1" y="325" width="0.1" height="15.0" fill="rgb(241,219,34)" rx="2" ry="2" />
+<text  x="13.06" y="335.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (1,744,820,736 samples, 0.03%)</title><rect x="1166.0" y="389" width="0.4" height="15.0" fill="rgb(239,108,30)" rx="2" ry="2" />
+<text  x="1169.02" y="399.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,229,191,495 samples, 0.02%)</title><rect x="280.0" y="469" width="0.3" height="15.0" fill="rgb(212,210,19)" rx="2" ry="2" />
+<text  x="282.98" y="479.5" ></text>
+</g>
+<g >
+<title>enqueue_task (2,873,110,491 samples, 0.06%)</title><rect x="1056.2" y="373" width="0.6" height="15.0" fill="rgb(208,5,41)" rx="2" ry="2" />
+<text  x="1059.16" y="383.5" ></text>
+</g>
+<g >
+<title>load_balance (36,083,208,403 samples, 0.70%)</title><rect x="320.4" y="309" width="8.2" height="15.0" fill="rgb(223,110,11)" rx="2" ry="2" />
+<text  x="323.36" y="319.5" ></text>
+</g>
+<g >
+<title>cpu_startup_entry (709,018,331,953 samples, 13.75%)</title><rect x="1027.7" y="517" width="162.2" height="15.0" fill="rgb(205,118,22)" rx="2" ry="2" />
+<text  x="1030.69" y="527.5" >cpu_startup_entry</text>
+</g>
+<g >
+<title>default_send_IPI_single_phys (2,372,622,217 samples, 0.05%)</title><rect x="376.5" y="341" width="0.5" height="15.0" fill="rgb(238,107,20)" rx="2" ry="2" />
+<text  x="379.49" y="351.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (4,097,380,252 samples, 0.08%)</title><rect x="1162.6" y="421" width="0.9" height="15.0" fill="rgb(225,78,7)" rx="2" ry="2" />
+<text  x="1165.61" y="431.5" ></text>
+</g>
+<g >
+<title>futex_wake (104,592,535,142 samples, 2.03%)</title><rect x="354.3" y="405" width="24.0" height="15.0" fill="rgb(214,62,13)" rx="2" ry="2" />
+<text  x="357.32" y="415.5" >f..</text>
+</g>
+<g >
+<title>do_syscall_64 (125,096,795,102 samples, 2.43%)</title><rect x="173.9" y="261" width="28.6" height="15.0" fill="rgb(219,184,11)" rx="2" ry="2" />
+<text  x="176.89" y="271.5" >do..</text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (440,550,007 samples, 0.01%)</title><rect x="789.2" y="309" width="0.1" height="15.0" fill="rgb(223,176,1)" rx="2" ry="2" />
+<text  x="792.21" y="319.5" ></text>
+</g>
+<g >
+<title>__schedule (895,765,264 samples, 0.02%)</title><rect x="907.8" y="373" width="0.2" height="15.0" fill="rgb(223,124,46)" rx="2" ry="2" />
+<text  x="910.79" y="383.5" ></text>
+</g>
+<g >
+<title>task_tick_fair (909,894,479 samples, 0.02%)</title><rect x="766.9" y="165" width="0.2" height="15.0" fill="rgb(221,90,7)" rx="2" ry="2" />
+<text  x="769.91" y="175.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (6,197,292,334 samples, 0.12%)</title><rect x="862.8" y="293" width="1.4" height="15.0" fill="rgb(246,193,38)" rx="2" ry="2" />
+<text  x="865.75" y="303.5" ></text>
+</g>
+<g >
+<title>native_apic_mem_write (634,575,346 samples, 0.01%)</title><rect x="1045.6" y="405" width="0.2" height="15.0" fill="rgb(231,77,31)" rx="2" ry="2" />
+<text  x="1048.62" y="415.5" ></text>
+</g>
+<g >
+<title>__GI___lll_lock_wait (262,258,668,298 samples, 5.09%)</title><rect x="291.9" y="485" width="60.0" height="15.0" fill="rgb(227,210,52)" rx="2" ry="2" />
+<text  x="294.85" y="495.5" >__GI__..</text>
+</g>
+<g >
+<title>__slab_free (2,361,917,913 samples, 0.05%)</title><rect x="226.0" y="165" width="0.6" height="15.0" fill="rgb(206,84,50)" rx="2" ry="2" />
+<text  x="229.05" y="175.5" ></text>
+</g>
+<g >
+<title>io_u_queued_complete (713,843,271,301 samples, 13.84%)</title><rect x="111.4" y="421" width="163.3" height="15.0" fill="rgb(228,17,22)" rx="2" ry="2" />
+<text  x="114.35" y="431.5" >io_u_queued_complete</text>
+</g>
+<g >
+<title>cpus_share_cache (698,562,899 samples, 0.01%)</title><rect x="369.6" y="341" width="0.2" height="15.0" fill="rgb(244,42,30)" rx="2" ry="2" />
+<text  x="372.60" y="351.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (2,414,589,630 samples, 0.05%)</title><rect x="263.8" y="133" width="0.5" height="15.0" fill="rgb(252,111,52)" rx="2" ry="2" />
+<text  x="266.79" y="143.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (92,149,116,753 samples, 1.79%)</title><rect x="135.5" y="277" width="21.1" height="15.0" fill="rgb(228,212,11)" rx="2" ry="2" />
+<text  x="138.54" y="287.5" ></text>
+</g>
+<g >
+<title>__build_skb_around (1,362,837,607 samples, 0.03%)</title><rect x="91.0" y="149" width="0.3" height="15.0" fill="rgb(239,117,32)" rx="2" ry="2" />
+<text  x="94.04" y="159.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,357,416,304 samples, 0.03%)</title><rect x="275.7" y="485" width="0.3" height="15.0" fill="rgb(214,75,44)" rx="2" ry="2" />
+<text  x="278.68" y="495.5" ></text>
+</g>
+<g >
+<title>__rcu_read_unlock (446,259,534 samples, 0.01%)</title><rect x="880.0" y="325" width="0.1" height="15.0" fill="rgb(224,211,26)" rx="2" ry="2" />
+<text  x="882.97" y="335.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (4,636,248,592 samples, 0.09%)</title><rect x="1161.5" y="421" width="1.1" height="15.0" fill="rgb(252,116,25)" rx="2" ry="2" />
+<text  x="1164.55" y="431.5" ></text>
+</g>
+<g >
+<title>futex_wait (207,279,218,764 samples, 4.02%)</title><rect x="297.7" y="405" width="47.5" height="15.0" fill="rgb(211,63,2)" rx="2" ry="2" />
+<text  x="300.74" y="415.5" >fute..</text>
+</g>
+<g >
+<title>socket_recv (73,054,409,655 samples, 1.42%)</title><rect x="255.2" y="309" width="16.7" height="15.0" fill="rgb(206,34,41)" rx="2" ry="2" />
+<text  x="258.20" y="319.5" ></text>
+</g>
+<g >
+<title>wait_for_unix_gc (2,273,878,881 samples, 0.04%)</title><rect x="1004.1" y="357" width="0.5" height="15.0" fill="rgb(248,146,8)" rx="2" ry="2" />
+<text  x="1007.06" y="367.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,109,242,324 samples, 0.02%)</title><rect x="281.4" y="469" width="0.3" height="15.0" fill="rgb(224,21,48)" rx="2" ry="2" />
+<text  x="284.45" y="479.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,570,318,163 samples, 0.03%)</title><rect x="1167.6" y="421" width="0.4" height="15.0" fill="rgb(222,58,12)" rx="2" ry="2" />
+<text  x="1170.64" y="431.5" ></text>
+</g>
+<g >
+<title>__schedule (829,904,776 samples, 0.02%)</title><rect x="808.5" y="341" width="0.2" height="15.0" fill="rgb(219,147,35)" rx="2" ry="2" />
+<text  x="811.51" y="351.5" ></text>
+</g>
+<g >
+<title>check_preempt_curr (1,781,374,938 samples, 0.03%)</title><rect x="374.5" y="341" width="0.4" height="15.0" fill="rgb(215,224,30)" rx="2" ry="2" />
+<text  x="377.47" y="351.5" ></text>
+</g>
+<g >
+<title>selinux_socket_getpeersec_dgram (1,445,231,347 samples, 0.03%)</title><rect x="43.4" y="197" width="0.3" height="15.0" fill="rgb(213,13,47)" rx="2" ry="2" />
+<text  x="46.42" y="207.5" ></text>
+</g>
+<g >
+<title>protocol_recv_request_send_reply (3,174,120,505,283 samples, 61.56%)</title><rect x="288.4" y="501" width="726.4" height="15.0" fill="rgb(236,142,45)" rx="2" ry="2" />
+<text  x="291.40" y="511.5" >protocol_recv_request_send_reply</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (119,156,371,814 samples, 2.31%)</title><rect x="352.7" y="469" width="27.3" height="15.0" fill="rgb(224,160,39)" rx="2" ry="2" />
+<text  x="355.74" y="479.5" >e..</text>
+</g>
+<g >
+<title>schedule_idle (65,288,272,967 samples, 1.27%)</title><rect x="1171.2" y="485" width="15.0" height="15.0" fill="rgb(227,153,53)" rx="2" ry="2" />
+<text  x="1174.24" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (8,101,787,491 samples, 0.16%)</title><rect x="426.8" y="309" width="1.9" height="15.0" fill="rgb(209,189,53)" rx="2" ry="2" />
+<text  x="429.80" y="319.5" ></text>
+</g>
+<g >
+<title>switch_mm_irqs_off (487,846,419 samples, 0.01%)</title><rect x="1010.2" y="357" width="0.1" height="15.0" fill="rgb(223,122,49)" rx="2" ry="2" />
+<text  x="1013.19" y="367.5" ></text>
+</g>
+<g >
+<title>crypt_convert (813,641,249 samples, 0.02%)</title><rect x="281.0" y="469" width="0.1" height="15.0" fill="rgb(254,75,2)" rx="2" ry="2" />
+<text  x="283.95" y="479.5" ></text>
+</g>
+<g >
+<title>socket_send (86,463,422,688 samples, 1.68%)</title><rect x="36.6" y="341" width="19.8" height="15.0" fill="rgb(242,94,7)" rx="2" ry="2" />
+<text  x="39.63" y="351.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,855,623,832 samples, 0.04%)</title><rect x="352.1" y="469" width="0.4" height="15.0" fill="rgb(229,159,37)" rx="2" ry="2" />
+<text  x="355.11" y="479.5" ></text>
+</g>
+<g >
+<title>refill_obj_stock (5,384,165,557 samples, 0.10%)</title><rect x="883.1" y="325" width="1.3" height="15.0" fill="rgb(226,14,41)" rx="2" ry="2" />
+<text  x="886.13" y="335.5" ></text>
+</g>
+<g >
+<title>__do_softirq (621,392,493 samples, 0.01%)</title><rect x="766.4" y="261" width="0.1" height="15.0" fill="rgb(234,53,42)" rx="2" ry="2" />
+<text  x="769.39" y="271.5" ></text>
+</g>
+<g >
+<title>add_wait_queue (14,441,503,487 samples, 0.28%)</title><rect x="153.3" y="229" width="3.3" height="15.0" fill="rgb(210,26,52)" rx="2" ry="2" />
+<text  x="156.31" y="239.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (375,589,994,737 samples, 7.28%)</title><rect x="822.3" y="437" width="86.0" height="15.0" fill="rgb(253,229,31)" rx="2" ry="2" />
+<text  x="825.31" y="447.5" >do_syscall..</text>
+</g>
+<g >
+<title>do_syscall_64 (3,653,910,614 samples, 0.07%)</title><rect x="1017.1" y="341" width="0.9" height="15.0" fill="rgb(249,20,39)" rx="2" ry="2" />
+<text  x="1020.12" y="351.5" ></text>
+</g>
+<g >
+<title>sock_wfree (6,755,330,356 samples, 0.13%)</title><rect x="213.0" y="117" width="1.6" height="15.0" fill="rgb(250,46,28)" rx="2" ry="2" />
+<text  x="216.04" y="127.5" ></text>
+</g>
+<g >
+<title>_raw_spin_trylock (811,249,715 samples, 0.02%)</title><rect x="869.0" y="293" width="0.1" height="15.0" fill="rgb(208,44,11)" rx="2" ry="2" />
+<text  x="871.96" y="303.5" ></text>
+</g>
+<g >
+<title>fault_in_readable (3,174,233,230 samples, 0.06%)</title><rect x="433.1" y="309" width="0.8" height="15.0" fill="rgb(252,108,35)" rx="2" ry="2" />
+<text  x="436.14" y="319.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (476,073,543 samples, 0.01%)</title><rect x="204.3" y="245" width="0.1" height="15.0" fill="rgb(214,58,14)" rx="2" ry="2" />
+<text  x="207.28" y="255.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (667,816,110 samples, 0.01%)</title><rect x="365.0" y="357" width="0.2" height="15.0" fill="rgb(210,127,24)" rx="2" ry="2" />
+<text  x="368.02" y="367.5" ></text>
+</g>
+<g >
+<title>ext4_generic_write_checks (3,235,457,208 samples, 0.06%)</title><rect x="414.4" y="341" width="0.7" height="15.0" fill="rgb(247,91,47)" rx="2" ry="2" />
+<text  x="417.39" y="351.5" ></text>
+</g>
+<g >
+<title>security_file_permission (4,748,548,021 samples, 0.09%)</title><rect x="806.7" y="357" width="1.1" height="15.0" fill="rgb(250,70,6)" rx="2" ry="2" />
+<text  x="809.69" y="367.5" ></text>
+</g>
+<g >
+<title>nbd_internal_command_common (1,996,805,173 samples, 0.04%)</title><rect x="273.6" y="373" width="0.5" height="15.0" fill="rgb(206,198,37)" rx="2" ry="2" />
+<text  x="276.61" y="383.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (2,025,340,092 samples, 0.04%)</title><rect x="321.6" y="277" width="0.5" height="15.0" fill="rgb(238,202,29)" rx="2" ry="2" />
+<text  x="324.61" y="287.5" ></text>
+</g>
+<g >
+<title>cmpxchg_double_slab.isra.0 (2,599,778,790 samples, 0.05%)</title><rect x="867.5" y="293" width="0.6" height="15.0" fill="rgb(224,130,34)" rx="2" ry="2" />
+<text  x="870.49" y="303.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (443,911,035 samples, 0.01%)</title><rect x="879.9" y="325" width="0.1" height="15.0" fill="rgb(213,148,32)" rx="2" ry="2" />
+<text  x="882.87" y="335.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,284,438,970 samples, 0.02%)</title><rect x="283.2" y="453" width="0.3" height="15.0" fill="rgb(250,199,22)" rx="2" ry="2" />
+<text  x="286.18" y="463.5" ></text>
+</g>
+<g >
+<title>available_idle_cpu (621,284,684 samples, 0.01%)</title><rect x="802.0" y="277" width="0.2" height="15.0" fill="rgb(235,178,22)" rx="2" ry="2" />
+<text  x="805.04" y="287.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (211,506,742,719 samples, 4.10%)</title><rect x="296.8" y="437" width="48.4" height="15.0" fill="rgb(229,102,23)" rx="2" ry="2" />
+<text  x="299.78" y="447.5" >__x6..</text>
+</g>
+<g >
+<title>put_prev_entity (826,094,003 samples, 0.02%)</title><rect x="1009.8" y="341" width="0.2" height="15.0" fill="rgb(228,162,22)" rx="2" ry="2" />
+<text  x="1012.79" y="351.5" ></text>
+</g>
+<g >
+<title>irq_enter_rcu (9,393,502,340 samples, 0.18%)</title><rect x="1057.6" y="421" width="2.2" height="15.0" fill="rgb(224,160,40)" rx="2" ry="2" />
+<text  x="1060.64" y="431.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (6,929,162,900 samples, 0.13%)</title><rect x="807.9" y="389" width="1.6" height="15.0" fill="rgb(233,205,14)" rx="2" ry="2" />
+<text  x="810.87" y="399.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (630,562,636 samples, 0.01%)</title><rect x="995.5" y="261" width="0.1" height="15.0" fill="rgb(235,136,18)" rx="2" ry="2" />
+<text  x="998.46" y="271.5" ></text>
+</g>
+<g >
+<title>_copy_from_user (4,691,511,936 samples, 0.09%)</title><rect x="140.2" y="261" width="1.1" height="15.0" fill="rgb(228,177,47)" rx="2" ry="2" />
+<text  x="143.23" y="271.5" ></text>
+</g>
+<g >
+<title>kworker/u64:6-k (1,590,026,845 samples, 0.03%)</title><rect x="282.4" y="565" width="0.4" height="15.0" fill="rgb(247,143,39)" rx="2" ry="2" />
+<text  x="285.41" y="575.5" ></text>
+</g>
+<g >
+<title>kthread (1,409,863,989 samples, 0.03%)</title><rect x="276.9" y="533" width="0.4" height="15.0" fill="rgb(223,47,32)" rx="2" ry="2" />
+<text  x="279.95" y="543.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,756,527,757 samples, 0.03%)</title><rect x="52.9" y="117" width="0.4" height="15.0" fill="rgb(227,143,50)" rx="2" ry="2" />
+<text  x="55.92" y="127.5" ></text>
+</g>
+<g >
+<title>read_tsc (1,761,501,252 samples, 0.03%)</title><rect x="1048.8" y="373" width="0.4" height="15.0" fill="rgb(215,96,21)" rx="2" ry="2" />
+<text  x="1051.78" y="383.5" ></text>
+</g>
+<g >
+<title>selinux_socket_getpeersec_dgram (2,500,815,543 samples, 0.05%)</title><rect x="72.8" y="181" width="0.6" height="15.0" fill="rgb(231,147,18)" rx="2" ry="2" />
+<text  x="75.82" y="191.5" ></text>
+</g>
+<g >
+<title>kworker/u64:16- (1,690,933,957 samples, 0.03%)</title><rect x="277.9" y="565" width="0.4" height="15.0" fill="rgb(213,224,6)" rx="2" ry="2" />
+<text  x="280.93" y="575.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,057,352,669 samples, 0.02%)</title><rect x="276.4" y="501" width="0.2" height="15.0" fill="rgb(209,84,52)" rx="2" ry="2" />
+<text  x="279.36" y="511.5" ></text>
+</g>
+<g >
+<title>update_load_avg (696,432,718 samples, 0.01%)</title><rect x="1002.7" y="213" width="0.1" height="15.0" fill="rgb(245,112,27)" rx="2" ry="2" />
+<text  x="1005.67" y="223.5" ></text>
+</g>
+<g >
+<title>__check_object_size (9,959,563,613 samples, 0.19%)</title><rect x="939.4" y="341" width="2.3" height="15.0" fill="rgb(249,122,5)" rx="2" ry="2" />
+<text  x="942.42" y="351.5" ></text>
+</g>
+<g >
+<title>newidle_balance (9,228,496,102 samples, 0.18%)</title><rect x="145.6" y="197" width="2.1" height="15.0" fill="rgb(213,225,38)" rx="2" ry="2" />
+<text  x="148.55" y="207.5" ></text>
+</g>
+<g >
+<title>flush_smp_call_function_queue (274,563,759,736 samples, 5.32%)</title><rect x="1074.4" y="485" width="62.9" height="15.0" fill="rgb(217,49,11)" rx="2" ry="2" />
+<text  x="1077.44" y="495.5" >flush_..</text>
+</g>
+<g >
+<title>log_io_u (1,091,686,087 samples, 0.02%)</title><rect x="109.8" y="421" width="0.2" height="15.0" fill="rgb(224,170,24)" rx="2" ry="2" />
+<text  x="112.77" y="431.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,061,010,156 samples, 0.02%)</title><rect x="281.7" y="469" width="0.3" height="15.0" fill="rgb(212,51,15)" rx="2" ry="2" />
+<text  x="284.71" y="479.5" ></text>
+</g>
+<g >
+<title>_raw_spin_rq_lock_irqsave (60,630,354,268 samples, 1.18%)</title><rect x="1089.1" y="453" width="13.9" height="15.0" fill="rgb(224,82,4)" rx="2" ry="2" />
+<text  x="1092.09" y="463.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,710,658,390 samples, 0.03%)</title><rect x="282.8" y="549" width="0.4" height="15.0" fill="rgb(205,118,9)" rx="2" ry="2" />
+<text  x="285.78" y="559.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (707,943,870 samples, 0.01%)</title><rect x="201.5" y="245" width="0.2" height="15.0" fill="rgb(252,101,29)" rx="2" ry="2" />
+<text  x="204.52" y="255.5" ></text>
+</g>
+<g >
+<title>ksys_write (3,631,742,001 samples, 0.07%)</title><rect x="1017.1" y="325" width="0.8" height="15.0" fill="rgb(223,99,4)" rx="2" ry="2" />
+<text  x="1020.12" y="335.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,479,698,886 samples, 0.03%)</title><rect x="278.6" y="517" width="0.4" height="15.0" fill="rgb(245,37,6)" rx="2" ry="2" />
+<text  x="281.63" y="527.5" ></text>
+</g>
+<g >
+<title>__switch_to (1,525,870,379 samples, 0.03%)</title><rect x="1172.6" y="453" width="0.3" height="15.0" fill="rgb(205,126,6)" rx="2" ry="2" />
+<text  x="1175.56" y="463.5" ></text>
+</g>
+<g >
+<title>__hrtimer_next_event_base (616,082,401 samples, 0.01%)</title><rect x="1026.1" y="405" width="0.1" height="15.0" fill="rgb(218,111,2)" rx="2" ry="2" />
+<text  x="1029.08" y="415.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (1,180,066,688 samples, 0.02%)</title><rect x="848.8" y="325" width="0.3" height="15.0" fill="rgb(235,173,50)" rx="2" ry="2" />
+<text  x="851.80" y="335.5" ></text>
+</g>
+<g >
+<title>__x64_sys_recvfrom (137,892,077,715 samples, 2.67%)</title><rect x="222.4" y="229" width="31.6" height="15.0" fill="rgb(254,3,4)" rx="2" ry="2" />
+<text  x="225.40" y="239.5" >__..</text>
+</g>
+<g >
+<title>update_load_avg (934,489,180 samples, 0.02%)</title><rect x="323.7" y="261" width="0.2" height="15.0" fill="rgb(209,140,13)" rx="2" ry="2" />
+<text  x="326.73" y="271.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (61,548,198,072 samples, 1.19%)</title><rect x="981.8" y="309" width="14.1" height="15.0" fill="rgb(254,14,38)" rx="2" ry="2" />
+<text  x="984.84" y="319.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,500,628,958 samples, 0.03%)</title><rect x="280.3" y="469" width="0.3" height="15.0" fill="rgb(223,106,32)" rx="2" ry="2" />
+<text  x="283.27" y="479.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (476,190,100 samples, 0.01%)</title><rect x="55.0" y="197" width="0.1" height="15.0" fill="rgb(228,132,37)" rx="2" ry="2" />
+<text  x="58.03" y="207.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (2,306,788,157 samples, 0.04%)</title><rect x="1001.8" y="277" width="0.5" height="15.0" fill="rgb(229,32,50)" rx="2" ry="2" />
+<text  x="1004.78" y="287.5" ></text>
+</g>
+<g >
+<title>acpi_idle_enter (2,313,699,835 samples, 0.04%)</title><rect x="1020.7" y="421" width="0.5" height="15.0" fill="rgb(244,152,39)" rx="2" ry="2" />
+<text  x="1023.65" y="431.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (2,172,806,183 samples, 0.04%)</title><rect x="1057.1" y="421" width="0.5" height="15.0" fill="rgb(229,58,23)" rx="2" ry="2" />
+<text  x="1060.14" y="431.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (921,875,766 samples, 0.02%)</title><rect x="257.6" y="165" width="0.2" height="15.0" fill="rgb(243,83,25)" rx="2" ry="2" />
+<text  x="260.59" y="175.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (593,619,172 samples, 0.01%)</title><rect x="227.0" y="149" width="0.2" height="15.0" fill="rgb(234,213,6)" rx="2" ry="2" />
+<text  x="230.02" y="159.5" ></text>
+</g>
+<g >
+<title>nr_iowait_cpu (992,003,814 samples, 0.02%)</title><rect x="1058.9" y="389" width="0.2" height="15.0" fill="rgb(238,115,24)" rx="2" ry="2" />
+<text  x="1061.87" y="399.5" ></text>
+</g>
+<g >
+<title>__default_send_IPI_dest_field (2,073,879,242 samples, 0.04%)</title><rect x="376.6" y="325" width="0.4" height="15.0" fill="rgb(234,135,20)" rx="2" ry="2" />
+<text  x="379.56" y="335.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (11,253,290,581 samples, 0.22%)</title><rect x="175.8" y="213" width="2.5" height="15.0" fill="rgb(247,120,6)" rx="2" ry="2" />
+<text  x="178.76" y="223.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (488,789,118 samples, 0.01%)</title><rect x="105.5" y="181" width="0.2" height="15.0" fill="rgb(252,165,14)" rx="2" ry="2" />
+<text  x="108.54" y="191.5" ></text>
+</g>
+<g >
+<title>socket_send (205,517,315,224 samples, 3.99%)</title><rect x="60.9" y="325" width="47.0" height="15.0" fill="rgb(215,221,25)" rx="2" ry="2" />
+<text  x="63.86" y="335.5" >sock..</text>
+</g>
+<g >
+<title>ksys_read (363,610,705,811 samples, 7.05%)</title><rect x="823.3" y="421" width="83.2" height="15.0" fill="rgb(206,144,24)" rx="2" ry="2" />
+<text  x="826.27" y="431.5" >ksys_read</text>
+</g>
+<g >
+<title>wb_workfn (626,429,625 samples, 0.01%)</title><rect x="282.3" y="485" width="0.1" height="15.0" fill="rgb(219,21,18)" rx="2" ry="2" />
+<text  x="285.27" y="495.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (1,579,047,865 samples, 0.03%)</title><rect x="85.5" y="101" width="0.4" height="15.0" fill="rgb(228,121,33)" rx="2" ry="2" />
+<text  x="88.53" y="111.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (813,404,020 samples, 0.02%)</title><rect x="186.1" y="117" width="0.2" height="15.0" fill="rgb(243,141,23)" rx="2" ry="2" />
+<text  x="189.14" y="127.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (5,780,343,603 samples, 0.11%)</title><rect x="887.8" y="325" width="1.3" height="15.0" fill="rgb(253,42,28)" rx="2" ry="2" />
+<text  x="890.82" y="335.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (570,231,781 samples, 0.01%)</title><rect x="364.8" y="309" width="0.2" height="15.0" fill="rgb(220,39,37)" rx="2" ry="2" />
+<text  x="367.84" y="319.5" ></text>
+</g>
+<g >
+<title>schedule (22,316,615,254 samples, 0.43%)</title><rect x="789.4" y="325" width="5.1" height="15.0" fill="rgb(244,227,49)" rx="2" ry="2" />
+<text  x="792.40" y="335.5" ></text>
+</g>
+<g >
+<title>get_next_rand_offset.lto_priv.0 (1,240,434,471 samples, 0.02%)</title><rect x="23.4" y="405" width="0.3" height="15.0" fill="rgb(219,185,32)" rx="2" ry="2" />
+<text  x="26.40" y="415.5" ></text>
+</g>
+<g >
+<title>futex_hash (1,205,855,414 samples, 0.02%)</title><rect x="357.6" y="389" width="0.3" height="15.0" fill="rgb(215,91,8)" rx="2" ry="2" />
+<text  x="360.64" y="399.5" ></text>
+</g>
+<g >
+<title>schedule (463,535,715 samples, 0.01%)</title><rect x="11.7" y="453" width="0.1" height="15.0" fill="rgb(214,51,1)" rx="2" ry="2" />
+<text  x="14.71" y="463.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (2,932,721,558 samples, 0.06%)</title><rect x="108.8" y="405" width="0.7" height="15.0" fill="rgb(244,14,19)" rx="2" ry="2" />
+<text  x="111.79" y="415.5" ></text>
+</g>
+<g >
+<title>__libc_recv (1,566,817,148 samples, 0.03%)</title><rect x="203.3" y="293" width="0.4" height="15.0" fill="rgb(242,226,54)" rx="2" ry="2" />
+<text  x="206.30" y="303.5" ></text>
+</g>
+<g >
+<title>__switch_to (2,174,843,937 samples, 0.04%)</title><rect x="294.0" y="469" width="0.5" height="15.0" fill="rgb(249,113,20)" rx="2" ry="2" />
+<text  x="296.95" y="479.5" ></text>
+</g>
+<g >
+<title>do_writepages (622,723,976 samples, 0.01%)</title><rect x="282.3" y="405" width="0.1" height="15.0" fill="rgb(226,217,8)" rx="2" ry="2" />
+<text  x="285.27" y="415.5" ></text>
+</g>
+<g >
+<title>remove_wait_queue (4,344,995,423 samples, 0.08%)</title><rect x="141.8" y="245" width="1.0" height="15.0" fill="rgb(213,28,25)" rx="2" ry="2" />
+<text  x="144.80" y="255.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (57,608,725,486 samples, 1.12%)</title><rect x="966.8" y="293" width="13.2" height="15.0" fill="rgb(231,63,9)" rx="2" ry="2" />
+<text  x="969.79" y="303.5" ></text>
+</g>
+<g >
+<title>free_unref_page_commit (2,309,266,348 samples, 0.04%)</title><rect x="869.7" y="293" width="0.5" height="15.0" fill="rgb(245,106,51)" rx="2" ry="2" />
+<text  x="872.67" y="303.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,450,457,685 samples, 0.03%)</title><rect x="10.3" y="421" width="0.4" height="15.0" fill="rgb(228,147,24)" rx="2" ry="2" />
+<text  x="13.35" y="431.5" ></text>
+</g>
+<g >
+<title>kthread (828,917,334 samples, 0.02%)</title><rect x="281.0" y="533" width="0.1" height="15.0" fill="rgb(219,38,26)" rx="2" ry="2" />
+<text  x="283.95" y="543.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (835,157,873 samples, 0.02%)</title><rect x="799.1" y="277" width="0.2" height="15.0" fill="rgb(247,228,50)" rx="2" ry="2" />
+<text  x="802.13" y="287.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (140,834,963,869 samples, 2.73%)</title><rect x="222.2" y="245" width="32.2" height="15.0" fill="rgb(212,113,7)" rx="2" ry="2" />
+<text  x="225.18" y="255.5" >do..</text>
+</g>
+<g >
+<title>psi_group_change (12,805,189,682 samples, 0.25%)</title><rect x="333.8" y="325" width="2.9" height="15.0" fill="rgb(218,21,30)" rx="2" ry="2" />
+<text  x="336.79" y="335.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (696,036,880 samples, 0.01%)</title><rect x="1021.2" y="389" width="0.2" height="15.0" fill="rgb(252,161,45)" rx="2" ry="2" />
+<text  x="1024.24" y="399.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (2,069,722,786 samples, 0.04%)</title><rect x="802.4" y="293" width="0.5" height="15.0" fill="rgb(253,146,33)" rx="2" ry="2" />
+<text  x="805.42" y="303.5" ></text>
+</g>
+<g >
+<title>skb_release_data (15,739,711,942 samples, 0.31%)</title><rect x="209.1" y="149" width="3.6" height="15.0" fill="rgb(254,78,19)" rx="2" ry="2" />
+<text  x="212.10" y="159.5" ></text>
+</g>
+<g >
+<title>ramp_time_over (532,643,182 samples, 0.01%)</title><rect x="26.9" y="405" width="0.1" height="15.0" fill="rgb(240,164,12)" rx="2" ry="2" />
+<text  x="29.90" y="415.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (5,676,428,924 samples, 0.11%)</title><rect x="1055.6" y="421" width="1.3" height="15.0" fill="rgb(247,46,3)" rx="2" ry="2" />
+<text  x="1058.63" y="431.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (933,949,270 samples, 0.02%)</title><rect x="148.9" y="197" width="0.2" height="15.0" fill="rgb(242,109,0)" rx="2" ry="2" />
+<text  x="151.87" y="207.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,609,685,947 samples, 0.03%)</title><rect x="1163.5" y="421" width="0.4" height="15.0" fill="rgb(235,14,22)" rx="2" ry="2" />
+<text  x="1166.55" y="431.5" ></text>
+</g>
+<g >
+<title>kmalloc_slab (2,066,423,359 samples, 0.04%)</title><rect x="980.0" y="293" width="0.5" height="15.0" fill="rgb(240,222,47)" rx="2" ry="2" />
+<text  x="982.98" y="303.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (4,374,796,681 samples, 0.08%)</title><rect x="317.3" y="309" width="1.0" height="15.0" fill="rgb(225,152,42)" rx="2" ry="2" />
+<text  x="320.31" y="319.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter_state (8,863,713,334 samples, 0.17%)</title><rect x="1020.6" y="437" width="2.1" height="15.0" fill="rgb(226,72,29)" rx="2" ry="2" />
+<text  x="1023.63" y="447.5" ></text>
+</g>
+<g >
+<title>_int_free (923,937,128 samples, 0.02%)</title><rect x="129.1" y="325" width="0.2" height="15.0" fill="rgb(242,134,15)" rx="2" ry="2" />
+<text  x="132.08" y="335.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (2,725,226,064 samples, 0.05%)</title><rect x="20.1" y="389" width="0.6" height="15.0" fill="rgb(241,145,16)" rx="2" ry="2" />
+<text  x="23.08" y="399.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (1,972,497,615 samples, 0.04%)</title><rect x="284.4" y="517" width="0.5" height="15.0" fill="rgb(234,77,1)" rx="2" ry="2" />
+<text  x="287.45" y="527.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,056,902,383 samples, 0.02%)</title><rect x="276.9" y="485" width="0.3" height="15.0" fill="rgb(229,200,40)" rx="2" ry="2" />
+<text  x="279.95" y="495.5" ></text>
+</g>
+<g >
+<title>__slab_alloc.isra.0 (1,408,072,645 samples, 0.03%)</title><rect x="51.3" y="149" width="0.4" height="15.0" fill="rgb(237,13,4)" rx="2" ry="2" />
+<text  x="54.33" y="159.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,321,153,538 samples, 0.03%)</title><rect x="281.1" y="501" width="0.3" height="15.0" fill="rgb(223,56,32)" rx="2" ry="2" />
+<text  x="284.14" y="511.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (1,012,693,639 samples, 0.02%)</title><rect x="1026.9" y="405" width="0.3" height="15.0" fill="rgb(215,26,4)" rx="2" ry="2" />
+<text  x="1029.94" y="415.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,309,055,852 samples, 0.03%)</title><rect x="277.6" y="469" width="0.3" height="15.0" fill="rgb(226,16,46)" rx="2" ry="2" />
+<text  x="280.62" y="479.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_lock@@GLIBC_2.2.5 (1,346,746,440 samples, 0.03%)</title><rect x="287.9" y="485" width="0.3" height="15.0" fill="rgb(212,61,0)" rx="2" ry="2" />
+<text  x="290.94" y="495.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_recvmsg (1,253,750,471 samples, 0.02%)</title><rect x="176.3" y="181" width="0.3" height="15.0" fill="rgb(251,107,37)" rx="2" ry="2" />
+<text  x="179.33" y="191.5" ></text>
+</g>
+<g >
+<title>unix_destruct_scm (7,907,731,041 samples, 0.15%)</title><rect x="212.8" y="133" width="1.8" height="15.0" fill="rgb(243,137,8)" rx="2" ry="2" />
+<text  x="215.77" y="143.5" ></text>
+</g>
+<g >
+<title>reweight_entity (953,619,141 samples, 0.02%)</title><rect x="314.7" y="325" width="0.2" height="15.0" fill="rgb(235,216,16)" rx="2" ry="2" />
+<text  x="317.73" y="335.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (677,981,252 samples, 0.01%)</title><rect x="995.7" y="277" width="0.2" height="15.0" fill="rgb(225,96,15)" rx="2" ry="2" />
+<text  x="998.71" y="287.5" ></text>
+</g>
+<g >
+<title>[perf] (3,777,912,860 samples, 0.07%)</title><rect x="1017.1" y="405" width="0.9" height="15.0" fill="rgb(235,196,53)" rx="2" ry="2" />
+<text  x="1020.10" y="415.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (194,489,901,475 samples, 3.77%)</title><rect x="63.0" y="277" width="44.5" height="15.0" fill="rgb(222,129,11)" rx="2" ry="2" />
+<text  x="65.99" y="287.5" >do_s..</text>
+</g>
+<g >
+<title>sched_clock_cpu (736,263,225 samples, 0.01%)</title><rect x="377.1" y="341" width="0.1" height="15.0" fill="rgb(231,109,17)" rx="2" ry="2" />
+<text  x="380.07" y="351.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (10,322,052,304 samples, 0.20%)</title><rect x="990.8" y="261" width="2.3" height="15.0" fill="rgb(241,216,21)" rx="2" ry="2" />
+<text  x="993.78" y="271.5" ></text>
+</g>
+<g >
+<title>last_block (2,284,539,434 samples, 0.04%)</title><rect x="23.7" y="405" width="0.5" height="15.0" fill="rgb(216,203,41)" rx="2" ry="2" />
+<text  x="26.68" y="415.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (914,234,991 samples, 0.02%)</title><rect x="793.8" y="293" width="0.2" height="15.0" fill="rgb(230,69,41)" rx="2" ry="2" />
+<text  x="796.82" y="303.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (11,830,217,936 samples, 0.23%)</title><rect x="1000.9" y="293" width="2.7" height="15.0" fill="rgb(254,166,46)" rx="2" ry="2" />
+<text  x="1003.92" y="303.5" ></text>
+</g>
+<g >
+<title>timer_clear_idle (1,397,380,045 samples, 0.03%)</title><rect x="1189.6" y="485" width="0.3" height="15.0" fill="rgb(210,118,49)" rx="2" ry="2" />
+<text  x="1192.62" y="495.5" ></text>
+</g>
+<g >
+<title>free_pcp_prepare (1,037,216,988 samples, 0.02%)</title><rect x="238.5" y="117" width="0.2" height="15.0" fill="rgb(230,172,35)" rx="2" ry="2" />
+<text  x="241.50" y="127.5" ></text>
+</g>
+<g >
+<title>ktime_get (1,946,315,130 samples, 0.04%)</title><rect x="1043.2" y="357" width="0.5" height="15.0" fill="rgb(219,225,12)" rx="2" ry="2" />
+<text  x="1046.21" y="367.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (991,044,805 samples, 0.02%)</title><rect x="51.9" y="133" width="0.3" height="15.0" fill="rgb(236,79,50)" rx="2" ry="2" />
+<text  x="54.94" y="143.5" ></text>
+</g>
+<g >
+<title>atime_needs_update (7,534,330,010 samples, 0.15%)</title><rect x="401.9" y="325" width="1.7" height="15.0" fill="rgb(250,167,20)" rx="2" ry="2" />
+<text  x="404.85" y="335.5" ></text>
+</g>
+<g >
+<title>mutex_unlock (873,223,644 samples, 0.02%)</title><rect x="243.2" y="165" width="0.2" height="15.0" fill="rgb(216,188,47)" rx="2" ry="2" />
+<text  x="246.24" y="175.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (1,048,629,944 samples, 0.02%)</title><rect x="767.3" y="293" width="0.3" height="15.0" fill="rgb(205,178,17)" rx="2" ry="2" />
+<text  x="770.34" y="303.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,155,001,594 samples, 0.02%)</title><rect x="1188.4" y="469" width="0.3" height="15.0" fill="rgb(233,29,38)" rx="2" ry="2" />
+<text  x="1191.44" y="479.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (12,597,609,079 samples, 0.24%)</title><rect x="1042.7" y="405" width="2.9" height="15.0" fill="rgb(223,96,45)" rx="2" ry="2" />
+<text  x="1045.73" y="415.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (651,695,457 samples, 0.01%)</title><rect x="364.8" y="325" width="0.2" height="15.0" fill="rgb(242,74,7)" rx="2" ry="2" />
+<text  x="367.83" y="335.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (3,666,237,169 samples, 0.07%)</title><rect x="1017.1" y="357" width="0.9" height="15.0" fill="rgb(224,116,13)" rx="2" ry="2" />
+<text  x="1020.11" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (695,174,645 samples, 0.01%)</title><rect x="275.3" y="437" width="0.2" height="15.0" fill="rgb(241,116,42)" rx="2" ry="2" />
+<text  x="278.31" y="447.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (14,792,385,444 samples, 0.29%)</title><rect x="429.4" y="309" width="3.3" height="15.0" fill="rgb(227,224,48)" rx="2" ry="2" />
+<text  x="432.36" y="319.5" ></text>
+</g>
+<g >
+<title>add_slat_sample (2,813,982,213 samples, 0.05%)</title><rect x="26.0" y="421" width="0.7" height="15.0" fill="rgb(213,21,24)" rx="2" ry="2" />
+<text  x="29.04" y="431.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (830,778,697 samples, 0.02%)</title><rect x="364.4" y="357" width="0.2" height="15.0" fill="rgb(210,135,10)" rx="2" ry="2" />
+<text  x="367.38" y="367.5" ></text>
+</g>
+<g >
+<title>schedule (3,751,715,170 samples, 0.07%)</title><rect x="1009.5" y="389" width="0.8" height="15.0" fill="rgb(205,130,43)" rx="2" ry="2" />
+<text  x="1012.46" y="399.5" ></text>
+</g>
+<g >
+<title>nbd_get_debug (1,669,607,694 samples, 0.03%)</title><rect x="130.1" y="373" width="0.4" height="15.0" fill="rgb(249,65,14)" rx="2" ry="2" />
+<text  x="133.11" y="383.5" ></text>
+</g>
+<g >
+<title>__send (84,874,065,735 samples, 1.65%)</title><rect x="37.0" y="325" width="19.4" height="15.0" fill="rgb(239,105,29)" rx="2" ry="2" />
+<text  x="40.00" y="335.5" ></text>
+</g>
+<g >
+<title>ktime_get_update_offsets_now (1,293,054,961 samples, 0.03%)</title><rect x="1045.3" y="389" width="0.3" height="15.0" fill="rgb(213,58,52)" rx="2" ry="2" />
+<text  x="1048.32" y="399.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (561,333,150 samples, 0.01%)</title><rect x="958.1" y="245" width="0.2" height="15.0" fill="rgb(240,39,43)" rx="2" ry="2" />
+<text  x="961.14" y="255.5" ></text>
+</g>
+<g >
+<title>tick_irq_enter (16,545,724,272 samples, 0.32%)</title><rect x="1046.2" y="405" width="3.8" height="15.0" fill="rgb(239,82,36)" rx="2" ry="2" />
+<text  x="1049.21" y="415.5" ></text>
+</g>
+<g >
+<title>__slab_free (6,351,620,383 samples, 0.12%)</title><rect x="236.1" y="133" width="1.5" height="15.0" fill="rgb(245,124,2)" rx="2" ry="2" />
+<text  x="239.10" y="143.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (1,024,431,623 samples, 0.02%)</title><rect x="148.9" y="213" width="0.2" height="15.0" fill="rgb(239,178,7)" rx="2" ry="2" />
+<text  x="151.87" y="223.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (461,004,294 samples, 0.01%)</title><rect x="281.7" y="437" width="0.1" height="15.0" fill="rgb(205,40,9)" rx="2" ry="2" />
+<text  x="284.72" y="447.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,439,101,463 samples, 0.03%)</title><rect x="283.2" y="501" width="0.3" height="15.0" fill="rgb(246,103,30)" rx="2" ry="2" />
+<text  x="286.17" y="511.5" ></text>
+</g>
+<g >
+<title>cache_from_obj (1,667,404,656 samples, 0.03%)</title><rect x="268.0" y="165" width="0.4" height="15.0" fill="rgb(240,198,48)" rx="2" ry="2" />
+<text  x="271.03" y="175.5" ></text>
+</g>
+<g >
+<title>arch_call_rest_init (31,308,706,217 samples, 0.61%)</title><rect x="1020.5" y="517" width="7.2" height="15.0" fill="rgb(225,139,41)" rx="2" ry="2" />
+<text  x="1023.52" y="527.5" ></text>
+</g>
+<g >
+<title>update_process_times (2,361,191,318 samples, 0.05%)</title><rect x="766.7" y="197" width="0.5" height="15.0" fill="rgb(217,120,36)" rx="2" ry="2" />
+<text  x="769.66" y="207.5" ></text>
+</g>
+<g >
+<title>kmalloc_slab (860,488,185 samples, 0.02%)</title><rect x="50.6" y="149" width="0.2" height="15.0" fill="rgb(228,65,47)" rx="2" ry="2" />
+<text  x="53.62" y="159.5" ></text>
+</g>
+<g >
+<title>local_touch_nmi (531,273,929 samples, 0.01%)</title><rect x="1137.3" y="485" width="0.1" height="15.0" fill="rgb(206,139,49)" rx="2" ry="2" />
+<text  x="1140.27" y="495.5" ></text>
+</g>
+<g >
+<title>enter_STATE_REPLY_FINISH_COMMAND.constprop.0 (20,440,936,902 samples, 0.40%)</title><rect x="161.9" y="325" width="4.7" height="15.0" fill="rgb(207,132,18)" rx="2" ry="2" />
+<text  x="164.91" y="335.5" ></text>
+</g>
+<g >
+<title>file_pread (103,521,167,748 samples, 2.01%)</title><rect x="382.1" y="453" width="23.7" height="15.0" fill="rgb(249,155,46)" rx="2" ry="2" />
+<text  x="385.09" y="463.5" >f..</text>
+</g>
+<g >
+<title>bad_range (440,206,134 samples, 0.01%)</title><rect x="960.4" y="293" width="0.1" height="15.0" fill="rgb(208,173,50)" rx="2" ry="2" />
+<text  x="963.44" y="303.5" ></text>
+</g>
+<g >
+<title>init_icd (6,993,136,483 samples, 0.14%)</title><rect x="112.1" y="405" width="1.6" height="15.0" fill="rgb(213,120,53)" rx="2" ry="2" />
+<text  x="115.08" y="415.5" ></text>
+</g>
+<g >
+<title>psi_account_irqtime (1,238,066,005 samples, 0.02%)</title><rect x="1134.3" y="437" width="0.3" height="15.0" fill="rgb(253,193,18)" rx="2" ry="2" />
+<text  x="1137.32" y="447.5" ></text>
+</g>
+<g >
+<title>__slab_free (7,887,245,398 samples, 0.15%)</title><rect x="186.9" y="149" width="1.8" height="15.0" fill="rgb(229,67,35)" rx="2" ry="2" />
+<text  x="189.87" y="159.5" ></text>
+</g>
+<g >
+<title>kworker/u64:22- (1,544,570,549 samples, 0.03%)</title><rect x="280.3" y="565" width="0.3" height="15.0" fill="rgb(241,224,19)" rx="2" ry="2" />
+<text  x="283.27" y="575.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (3,575,720,405 samples, 0.07%)</title><rect x="205.3" y="181" width="0.8" height="15.0" fill="rgb(223,223,50)" rx="2" ry="2" />
+<text  x="208.31" y="191.5" ></text>
+</g>
+<g >
+<title>restore_fpregs_from_fpstate (5,248,127,387 samples, 0.10%)</title><rect x="349.3" y="389" width="1.2" height="15.0" fill="rgb(250,8,5)" rx="2" ry="2" />
+<text  x="352.31" y="399.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (710,845,186 samples, 0.01%)</title><rect x="1066.5" y="421" width="0.2" height="15.0" fill="rgb(249,82,48)" rx="2" ry="2" />
+<text  x="1069.52" y="431.5" ></text>
+</g>
+<g >
+<title>__flush_smp_call_function_queue (1,263,953,401 samples, 0.02%)</title><rect x="1055.6" y="405" width="0.3" height="15.0" fill="rgb(250,30,10)" rx="2" ry="2" />
+<text  x="1058.65" y="415.5" ></text>
+</g>
+<g >
+<title>pthread_mutex_unlock@@GLIBC_2.2.5 (1,003,642,056 samples, 0.02%)</title><rect x="1016.3" y="501" width="0.2" height="15.0" fill="rgb(211,113,7)" rx="2" ry="2" />
+<text  x="1019.26" y="511.5" ></text>
+</g>
+<g >
+<title>update_load_avg (1,080,250,160 samples, 0.02%)</title><rect x="790.8" y="261" width="0.3" height="15.0" fill="rgb(248,123,31)" rx="2" ry="2" />
+<text  x="793.81" y="271.5" ></text>
+</g>
+<g >
+<title>enqueue_task (2,057,367,175 samples, 0.04%)</title><rect x="802.4" y="277" width="0.5" height="15.0" fill="rgb(206,216,39)" rx="2" ry="2" />
+<text  x="805.43" y="287.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (4,576,014,066 samples, 0.09%)</title><rect x="790.1" y="293" width="1.1" height="15.0" fill="rgb(206,208,2)" rx="2" ry="2" />
+<text  x="793.14" y="303.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,306,472,119 samples, 0.03%)</title><rect x="279.0" y="549" width="0.3" height="15.0" fill="rgb(221,35,3)" rx="2" ry="2" />
+<text  x="281.97" y="559.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (13,669,521,709 samples, 0.27%)</title><rect x="50.8" y="165" width="3.1" height="15.0" fill="rgb(245,160,9)" rx="2" ry="2" />
+<text  x="53.82" y="175.5" ></text>
+</g>
+<g >
+<title>hrtimer_next_event_without (27,907,166,844 samples, 0.54%)</title><rect x="1152.0" y="453" width="6.4" height="15.0" fill="rgb(235,196,22)" rx="2" ry="2" />
+<text  x="1155.03" y="463.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (2,254,177,174 samples, 0.04%)</title><rect x="243.5" y="149" width="0.6" height="15.0" fill="rgb(251,116,4)" rx="2" ry="2" />
+<text  x="246.54" y="159.5" ></text>
+</g>
+<g >
+<title>secondary_startup_64_no_verify (740,327,038,170 samples, 14.36%)</title><rect x="1020.5" y="549" width="169.4" height="15.0" fill="rgb(243,148,22)" rx="2" ry="2" />
+<text  x="1023.52" y="559.5" >secondary_startup_64_..</text>
+</g>
+<g >
+<title>bpf_lsm_file_permission (520,619,861 samples, 0.01%)</title><rect x="806.8" y="341" width="0.2" height="15.0" fill="rgb(248,58,2)" rx="2" ry="2" />
+<text  x="809.85" y="351.5" ></text>
+</g>
+</g>
+</svg>