2023 talk about flamegraphs
[libguestfs-talks.git] / 2023-flamegraphs / fp.svg
diff --git a/2023-flamegraphs/fp.svg b/2023-flamegraphs/fp.svg
new file mode 100644 (file)
index 0000000..851c39c
--- /dev/null
@@ -0,0 +1,10565 @@
+<?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="870" onload="init(evt)" viewBox="0 0 1200 870" 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="870.0" fill="url(#background)"  />
+<text id="title" x="600.00" y="24" >Flame Graph</text>
+<text id="details" x="10.00" y="853" > </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="853" > </text>
+<g id="frames">
+<g >
+<title>ext4_end_io_rsv_work (15,865,262 samples, 0.01%)</title><rect x="178.7" y="725" width="0.2" height="15.0" fill="rgb(254,82,32)" rx="2" ry="2" />
+<text  x="181.71" y="735.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (30,377,302 samples, 0.03%)</title><rect x="69.2" y="645" width="0.3" height="15.0" fill="rgb(254,214,26)" rx="2" ry="2" />
+<text  x="72.21" y="655.5" ></text>
+</g>
+<g >
+<title>rtl8169_start_xmit (196,245,350 samples, 0.16%)</title><rect x="309.0" y="245" width="2.0" height="15.0" fill="rgb(217,69,13)" rx="2" ry="2" />
+<text  x="312.05" y="255.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (69,072,388 samples, 0.06%)</title><rect x="550.8" y="533" width="0.7" height="15.0" fill="rgb(245,183,9)" rx="2" ry="2" />
+<text  x="553.81" y="543.5" ></text>
+</g>
+<g >
+<title>[perf] (181,733,797 samples, 0.15%)</title><rect x="397.2" y="661" width="1.8" height="15.0" fill="rgb(232,50,7)" rx="2" ry="2" />
+<text  x="400.23" y="671.5" ></text>
+</g>
+<g >
+<title>blk_mq_submit_bio (53,417,379 samples, 0.04%)</title><rect x="10.2" y="709" width="0.5" height="15.0" fill="rgb(211,129,26)" rx="2" ry="2" />
+<text  x="13.20" y="719.5" ></text>
+</g>
+<g >
+<title>process_one_work (611,746,188 samples, 0.50%)</title><rect x="178.9" y="741" width="5.9" height="15.0" fill="rgb(242,202,11)" rx="2" ry="2" />
+<text  x="181.87" y="751.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rt_sigaction (304,659,044 samples, 0.25%)</title><rect x="343.4" y="533" width="2.9" height="15.0" fill="rgb(239,36,49)" rx="2" ry="2" />
+<text  x="346.37" y="543.5" ></text>
+</g>
+<g >
+<title>__do_softirq (11,879,085 samples, 0.01%)</title><rect x="1170.1" y="629" width="0.1" height="15.0" fill="rgb(229,47,7)" rx="2" ry="2" />
+<text  x="1173.11" y="639.5" ></text>
+</g>
+<g >
+<title>kthread (1,116,170,422 samples, 0.92%)</title><rect x="11.7" y="773" width="10.9" height="15.0" fill="rgb(208,77,40)" rx="2" ry="2" />
+<text  x="14.69" y="783.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (13,695,891 samples, 0.01%)</title><rect x="43.1" y="709" width="0.2" height="15.0" fill="rgb(234,84,42)" rx="2" ry="2" />
+<text  x="46.13" y="719.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (145,110,786 samples, 0.12%)</title><rect x="893.6" y="405" width="1.5" height="15.0" fill="rgb(247,60,51)" rx="2" ry="2" />
+<text  x="896.64" y="415.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (28,516,395 samples, 0.02%)</title><rect x="353.2" y="549" width="0.2" height="15.0" fill="rgb(244,46,50)" rx="2" ry="2" />
+<text  x="356.17" y="559.5" ></text>
+</g>
+<g >
+<title>read_tsc (38,993,434 samples, 0.03%)</title><rect x="376.7" y="453" width="0.4" height="15.0" fill="rgb(241,227,4)" rx="2" ry="2" />
+<text  x="379.68" y="463.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,050,363,476 samples, 0.87%)</title><rect x="148.5" y="709" width="10.3" height="15.0" fill="rgb(237,151,40)" rx="2" ry="2" />
+<text  x="151.54" y="719.5" ></text>
+</g>
+<g >
+<title>rebalance_domains (43,517,798 samples, 0.04%)</title><rect x="564.5" y="581" width="0.5" height="15.0" fill="rgb(221,204,1)" rx="2" ry="2" />
+<text  x="567.53" y="591.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (38,759,511 samples, 0.03%)</title><rect x="441.0" y="469" width="0.4" height="15.0" fill="rgb(250,92,21)" rx="2" ry="2" />
+<text  x="443.99" y="479.5" ></text>
+</g>
+<g >
+<title>apic_ack_irq (48,148,129 samples, 0.04%)</title><rect x="759.8" y="629" width="0.5" height="15.0" fill="rgb(240,60,18)" rx="2" ry="2" />
+<text  x="762.84" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (251,529,897 samples, 0.21%)</title><rect x="142.3" y="677" width="2.5" height="15.0" fill="rgb(232,221,45)" rx="2" ry="2" />
+<text  x="145.32" y="687.5" ></text>
+</g>
+<g >
+<title>curl_easy_setopt (15,547,136 samples, 0.01%)</title><rect x="384.8" y="629" width="0.1" height="15.0" fill="rgb(239,51,20)" rx="2" ry="2" />
+<text  x="387.76" y="639.5" ></text>
+</g>
+<g >
+<title>__remove_hrtimer (29,873,741 samples, 0.02%)</title><rect x="1183.5" y="661" width="0.3" height="15.0" fill="rgb(241,123,33)" rx="2" ry="2" />
+<text  x="1186.51" y="671.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (36,290,412 samples, 0.03%)</title><rect x="249.1" y="629" width="0.3" height="15.0" fill="rgb(236,91,43)" rx="2" ry="2" />
+<text  x="252.08" y="639.5" ></text>
+</g>
+<g >
+<title>xas_descend (10,773,501 samples, 0.01%)</title><rect x="444.3" y="485" width="0.1" height="15.0" fill="rgb(222,115,27)" rx="2" ry="2" />
+<text  x="447.33" y="495.5" ></text>
+</g>
+<g >
+<title>xas_load (13,500,066 samples, 0.01%)</title><rect x="114.7" y="533" width="0.1" height="15.0" fill="rgb(205,95,39)" rx="2" ry="2" />
+<text  x="117.67" y="543.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (12,342,282 samples, 0.01%)</title><rect x="203.4" y="517" width="0.1" height="15.0" fill="rgb(210,52,35)" rx="2" ry="2" />
+<text  x="206.40" y="527.5" ></text>
+</g>
+<g >
+<title>run_rebalance_domains (57,046,683 samples, 0.05%)</title><rect x="906.3" y="629" width="0.5" height="15.0" fill="rgb(248,17,14)" rx="2" ry="2" />
+<text  x="909.27" y="639.5" ></text>
+</g>
+<g >
+<title>__libc_start_main@@GLIBC_2.34 (192,192,189 samples, 0.16%)</title><rect x="397.2" y="773" width="1.9" height="15.0" fill="rgb(224,104,9)" rx="2" ry="2" />
+<text  x="400.23" y="783.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (2,784,916,075 samples, 2.30%)</title><rect x="423.5" y="661" width="27.1" height="15.0" fill="rgb(229,166,12)" rx="2" ry="2" />
+<text  x="426.52" y="671.5" >d..</text>
+</g>
+<g >
+<title>ext4_es_lookup_extent (67,344,881 samples, 0.06%)</title><rect x="433.4" y="533" width="0.6" height="15.0" fill="rgb(208,194,9)" rx="2" ry="2" />
+<text  x="436.37" y="543.5" ></text>
+</g>
+<g >
+<title>cpuidle_governor_latency_req (261,723,171 samples, 0.22%)</title><rect x="1153.9" y="709" width="2.5" height="15.0" fill="rgb(211,61,15)" rx="2" ry="2" />
+<text  x="1156.87" y="719.5" ></text>
+</g>
+<g >
+<title>_copy_from_user (58,834,085 samples, 0.05%)</title><rect x="361.3" y="485" width="0.6" height="15.0" fill="rgb(229,86,18)" rx="2" ry="2" />
+<text  x="364.31" y="495.5" ></text>
+</g>
+<g >
+<title>nft_hash_lookup_fast (12,608,898 samples, 0.01%)</title><rect x="318.1" y="277" width="0.1" height="15.0" fill="rgb(225,24,49)" rx="2" ry="2" />
+<text  x="321.07" y="287.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (56,106,190 samples, 0.05%)</title><rect x="1158.1" y="693" width="0.5" height="15.0" fill="rgb(249,68,41)" rx="2" ry="2" />
+<text  x="1161.09" y="703.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (630,387,248 samples, 0.52%)</title><rect x="327.0" y="469" width="6.1" height="15.0" fill="rgb(218,81,7)" rx="2" ry="2" />
+<text  x="329.97" y="479.5" ></text>
+</g>
+<g >
+<title>__rdgsbase_inactive (30,961,559 samples, 0.03%)</title><rect x="554.4" y="789" width="0.3" height="15.0" fill="rgb(213,202,28)" rx="2" ry="2" />
+<text  x="557.37" y="799.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,116,170,422 samples, 0.92%)</title><rect x="11.7" y="757" width="10.9" height="15.0" fill="rgb(224,212,44)" rx="2" ry="2" />
+<text  x="14.69" y="767.5" ></text>
+</g>
+<g >
+<title>nf_nat_inet_fn (12,127,636 samples, 0.01%)</title><rect x="317.1" y="309" width="0.1" height="15.0" fill="rgb(220,56,52)" rx="2" ry="2" />
+<text  x="320.13" y="319.5" ></text>
+</g>
+<g >
+<title>start_secondary (63,972,931,141 samples, 52.77%)</title><rect x="566.6" y="773" width="622.7" height="15.0" fill="rgb(250,57,46)" rx="2" ry="2" />
+<text  x="569.62" y="783.5" >start_secondary</text>
+</g>
+<g >
+<title>br_handle_frame (4,375,138,808 samples, 3.61%)</title><rect x="862.5" y="517" width="42.6" height="15.0" fill="rgb(212,136,9)" rx="2" ry="2" />
+<text  x="865.54" y="527.5" >br_h..</text>
+</g>
+<g >
+<title>skcipher_walk_virt (24,506,547 samples, 0.02%)</title><rect x="100.9" y="645" width="0.2" height="15.0" fill="rgb(218,204,1)" rx="2" ry="2" />
+<text  x="103.86" y="655.5" ></text>
+</g>
+<g >
+<title>__schedule (864,765,003 samples, 0.71%)</title><rect x="1168.4" y="709" width="8.5" height="15.0" fill="rgb(249,198,18)" rx="2" ry="2" />
+<text  x="1171.43" y="719.5" ></text>
+</g>
+<g >
+<title>kworker/u64:5-k (925,316,212 samples, 0.76%)</title><rect x="237.0" y="805" width="9.0" height="15.0" fill="rgb(212,18,0)" rx="2" ry="2" />
+<text  x="239.95" y="815.5" ></text>
+</g>
+<g >
+<title>ebt_do_table (60,086,667 samples, 0.05%)</title><rect x="864.5" y="453" width="0.6" height="15.0" fill="rgb(254,125,46)" rx="2" ry="2" />
+<text  x="867.52" y="463.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (63,276,079 samples, 0.05%)</title><rect x="401.5" y="485" width="0.6" height="15.0" fill="rgb(243,173,39)" rx="2" ry="2" />
+<text  x="404.48" y="495.5" ></text>
+</g>
+<g >
+<title>[unknown] (19,861,061 samples, 0.02%)</title><rect x="399.8" y="789" width="0.2" height="15.0" fill="rgb(249,56,40)" rx="2" ry="2" />
+<text  x="402.82" y="799.5" ></text>
+</g>
+<g >
+<title>inet6_recvmsg (28,557,414 samples, 0.02%)</title><rect x="400.3" y="405" width="0.3" height="15.0" fill="rgb(240,111,52)" rx="2" ry="2" />
+<text  x="403.33" y="415.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (25,776,001 samples, 0.02%)</title><rect x="1035.2" y="661" width="0.3" height="15.0" fill="rgb(221,218,8)" rx="2" ry="2" />
+<text  x="1038.21" y="671.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (42,781,767 samples, 0.04%)</title><rect x="257.8" y="645" width="0.4" height="15.0" fill="rgb(232,157,16)" rx="2" ry="2" />
+<text  x="260.77" y="655.5" ></text>
+</g>
+<g >
+<title>common_interrupt (31,077,664 samples, 0.03%)</title><rect x="563.4" y="645" width="0.3" height="15.0" fill="rgb(254,180,31)" rx="2" ry="2" />
+<text  x="566.40" y="655.5" ></text>
+</g>
+<g >
+<title>__posix_memalign (30,401,272 samples, 0.03%)</title><rect x="413.6" y="597" width="0.3" height="15.0" fill="rgb(247,79,15)" rx="2" ry="2" />
+<text  x="416.60" y="607.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_core.constprop.0 (211,374,602 samples, 0.17%)</title><rect x="807.8" y="533" width="2.1" height="15.0" fill="rgb(241,68,9)" rx="2" ry="2" />
+<text  x="810.82" y="543.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (17,980,506 samples, 0.01%)</title><rect x="1161.4" y="677" width="0.1" height="15.0" fill="rgb(222,145,43)" rx="2" ry="2" />
+<text  x="1164.37" y="687.5" ></text>
+</g>
+<g >
+<title>process_backlog (304,409,408 samples, 0.25%)</title><rect x="388.4" y="373" width="3.0" height="15.0" fill="rgb(254,203,54)" rx="2" ry="2" />
+<text  x="391.42" y="383.5" ></text>
+</g>
+<g >
+<title>[unknown] (131,776,173 samples, 0.11%)</title><rect x="281.0" y="789" width="1.3" height="15.0" fill="rgb(246,126,12)" rx="2" ry="2" />
+<text  x="283.99" y="799.5" ></text>
+</g>
+<g >
+<title>__pollwait (19,171,681 samples, 0.02%)</title><rect x="380.3" y="453" width="0.2" height="15.0" fill="rgb(250,139,53)" rx="2" ry="2" />
+<text  x="383.27" y="463.5" ></text>
+</g>
+<g >
+<title>native_apic_mem_write (13,301,219 samples, 0.01%)</title><rect x="806.8" y="517" width="0.2" height="15.0" fill="rgb(225,170,33)" rx="2" ry="2" />
+<text  x="809.84" y="527.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (14,123,699 samples, 0.01%)</title><rect x="204.8" y="517" width="0.1" height="15.0" fill="rgb(249,184,6)" rx="2" ry="2" />
+<text  x="207.78" y="527.5" ></text>
+</g>
+<g >
+<title>acpi_processor_ffh_cstate_enter (2,304,825,257 samples, 1.90%)</title><rect x="720.4" y="661" width="22.5" height="15.0" fill="rgb(212,82,31)" rx="2" ry="2" />
+<text  x="723.42" y="671.5" >a..</text>
+</g>
+<g >
+<title>kcryptd_crypt (656,464,426 samples, 0.54%)</title><rect x="196.1" y="725" width="6.4" height="15.0" fill="rgb(218,186,23)" rx="2" ry="2" />
+<text  x="199.11" y="735.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (499,471,490 samples, 0.41%)</title><rect x="291.8" y="533" width="4.9" height="15.0" fill="rgb(225,166,15)" rx="2" ry="2" />
+<text  x="294.83" y="543.5" ></text>
+</g>
+<g >
+<title>rcu_needs_cpu (58,739,331 samples, 0.05%)</title><rect x="1165.1" y="677" width="0.6" height="15.0" fill="rgb(229,176,1)" rx="2" ry="2" />
+<text  x="1168.09" y="687.5" ></text>
+</g>
+<g >
+<title>event_notifier_test_and_clear (38,856,848 samples, 0.03%)</title><rect x="417.4" y="645" width="0.4" height="15.0" fill="rgb(214,129,11)" rx="2" ry="2" />
+<text  x="420.38" y="655.5" ></text>
+</g>
+<g >
+<title>check_preempt_curr (40,201,002 samples, 0.03%)</title><rect x="1034.5" y="613" width="0.4" height="15.0" fill="rgb(207,45,18)" rx="2" ry="2" />
+<text  x="1037.49" y="623.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,025,597,374 samples, 0.85%)</title><rect x="97.2" y="789" width="10.0" height="15.0" fill="rgb(251,187,2)" rx="2" ry="2" />
+<text  x="100.17" y="799.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (114,415,813 samples, 0.09%)</title><rect x="1139.0" y="645" width="1.1" height="15.0" fill="rgb(228,137,21)" rx="2" ry="2" />
+<text  x="1141.95" y="655.5" ></text>
+</g>
+<g >
+<title>xts_crypt (119,455,629 samples, 0.10%)</title><rect x="15.1" y="661" width="1.2" height="15.0" fill="rgb(213,104,6)" rx="2" ry="2" />
+<text  x="18.15" y="671.5" ></text>
+</g>
+<g >
+<title>__wrgsbase_inactive (33,655,157 samples, 0.03%)</title><rect x="555.6" y="789" width="0.3" height="15.0" fill="rgb(250,105,53)" rx="2" ry="2" />
+<text  x="558.57" y="799.5" ></text>
+</g>
+<g >
+<title>do_truncate (120,738,582 samples, 0.10%)</title><rect x="546.5" y="661" width="1.2" height="15.0" fill="rgb(227,88,49)" rx="2" ry="2" />
+<text  x="549.50" y="671.5" ></text>
+</g>
+<g >
+<title>netif_skb_features (16,417,817 samples, 0.01%)</title><rect x="312.4" y="325" width="0.2" height="15.0" fill="rgb(234,179,50)" rx="2" ry="2" />
+<text  x="315.41" y="335.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (12,042,229 samples, 0.01%)</title><rect x="394.8" y="501" width="0.1" height="15.0" fill="rgb(226,209,54)" rx="2" ry="2" />
+<text  x="397.80" y="511.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (449,993,681 samples, 0.37%)</title><rect x="1030.8" y="645" width="4.4" height="15.0" fill="rgb(218,1,14)" rx="2" ry="2" />
+<text  x="1033.79" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (92,832,055 samples, 0.08%)</title><rect x="196.3" y="661" width="0.9" height="15.0" fill="rgb(225,168,41)" rx="2" ry="2" />
+<text  x="199.33" y="671.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (86,851,670 samples, 0.07%)</title><rect x="402.5" y="453" width="0.9" height="15.0" fill="rgb(242,6,51)" rx="2" ry="2" />
+<text  x="405.52" y="463.5" ></text>
+</g>
+<g >
+<title>__pskb_pull_tail (27,136,389 samples, 0.02%)</title><rect x="294.4" y="277" width="0.3" height="15.0" fill="rgb(230,181,23)" rx="2" ry="2" />
+<text  x="297.44" y="287.5" ></text>
+</g>
+<g >
+<title>resched_curr (31,878,889 samples, 0.03%)</title><rect x="1034.6" y="597" width="0.3" height="15.0" fill="rgb(246,56,7)" rx="2" ry="2" />
+<text  x="1037.58" y="607.5" ></text>
+</g>
+<g >
+<title>curl_multi_perform (11,331,710 samples, 0.01%)</title><rect x="384.9" y="629" width="0.2" height="15.0" fill="rgb(251,97,16)" rx="2" ry="2" />
+<text  x="387.95" y="639.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (42,595,459 samples, 0.04%)</title><rect x="217.2" y="645" width="0.4" height="15.0" fill="rgb(231,90,33)" rx="2" ry="2" />
+<text  x="220.20" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (27,026,668 samples, 0.02%)</title><rect x="412.2" y="341" width="0.3" height="15.0" fill="rgb(237,214,19)" rx="2" ry="2" />
+<text  x="415.24" y="351.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (37,657,436 samples, 0.03%)</title><rect x="1116.5" y="613" width="0.4" height="15.0" fill="rgb(219,171,9)" rx="2" ry="2" />
+<text  x="1119.52" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (417,556,492 samples, 0.34%)</title><rect x="254.5" y="677" width="4.1" height="15.0" fill="rgb(237,130,11)" rx="2" ry="2" />
+<text  x="257.55" y="687.5" ></text>
+</g>
+<g >
+<title>available_idle_cpu (12,010,905 samples, 0.01%)</title><rect x="883.1" y="261" width="0.2" height="15.0" fill="rgb(231,72,3)" rx="2" ry="2" />
+<text  x="886.14" y="271.5" ></text>
+</g>
+<g >
+<title>page_frag_alloc_align (15,924,063 samples, 0.01%)</title><rect x="802.4" y="565" width="0.1" height="15.0" fill="rgb(244,107,6)" rx="2" ry="2" />
+<text  x="805.39" y="575.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (29,671,726 samples, 0.02%)</title><rect x="217.3" y="629" width="0.3" height="15.0" fill="rgb(206,140,54)" rx="2" ry="2" />
+<text  x="220.33" y="639.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter_state (737,331,024 samples, 0.61%)</title><rect x="558.8" y="677" width="7.2" height="15.0" fill="rgb(211,179,13)" rx="2" ry="2" />
+<text  x="561.78" y="687.5" ></text>
+</g>
+<g >
+<title>iptable_mangle_hook (45,094,635 samples, 0.04%)</title><rect x="314.7" y="325" width="0.4" height="15.0" fill="rgb(207,27,5)" rx="2" ry="2" />
+<text  x="317.70" y="335.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (264,231,550 samples, 0.22%)</title><rect x="218.1" y="677" width="2.6" height="15.0" fill="rgb(241,174,30)" rx="2" ry="2" />
+<text  x="221.11" y="687.5" ></text>
+</g>
+<g >
+<title>ip_rcv_finish_core.constprop.0 (160,251,297 samples, 0.13%)</title><rect x="888.2" y="437" width="1.5" height="15.0" fill="rgb(235,131,46)" rx="2" ry="2" />
+<text  x="891.17" y="447.5" ></text>
+</g>
+<g >
+<title>__memmove_avx_unaligned (58,134,714 samples, 0.05%)</title><rect x="334.7" y="549" width="0.6" height="15.0" fill="rgb(206,221,31)" rx="2" ry="2" />
+<text  x="337.75" y="559.5" ></text>
+</g>
+<g >
+<title>__switch_to_asm (53,974,900 samples, 0.04%)</title><rect x="555.0" y="789" width="0.6" height="15.0" fill="rgb(247,56,31)" rx="2" ry="2" />
+<text  x="558.04" y="799.5" ></text>
+</g>
+<g >
+<title>inet_ntop (27,837,461 samples, 0.02%)</title><rect x="334.2" y="533" width="0.3" height="15.0" fill="rgb(220,199,16)" rx="2" ry="2" />
+<text  x="337.25" y="543.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (37,690,250 samples, 0.03%)</title><rect x="142.0" y="645" width="0.3" height="15.0" fill="rgb(221,162,41)" rx="2" ry="2" />
+<text  x="144.95" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (47,365,019 samples, 0.04%)</title><rect x="414.8" y="485" width="0.4" height="15.0" fill="rgb(252,172,26)" rx="2" ry="2" />
+<text  x="417.77" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (12,022,289 samples, 0.01%)</title><rect x="272.0" y="709" width="0.2" height="15.0" fill="rgb(230,37,43)" rx="2" ry="2" />
+<text  x="275.05" y="719.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (352,110,113 samples, 0.29%)</title><rect x="113.2" y="677" width="3.4" height="15.0" fill="rgb(250,178,27)" rx="2" ry="2" />
+<text  x="116.19" y="687.5" ></text>
+</g>
+<g >
+<title>ip_output (18,980,303 samples, 0.02%)</title><rect x="295.7" y="325" width="0.2" height="15.0" fill="rgb(233,176,1)" rx="2" ry="2" />
+<text  x="298.74" y="335.5" ></text>
+</g>
+<g >
+<title>acpi_idle_do_entry (467,565,495 samples, 0.39%)</title><rect x="558.8" y="645" width="4.6" height="15.0" fill="rgb(254,122,34)" rx="2" ry="2" />
+<text  x="561.84" y="655.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (973,709,322 samples, 0.80%)</title><rect x="404.4" y="645" width="9.5" height="15.0" fill="rgb(207,80,38)" rx="2" ry="2" />
+<text  x="407.42" y="655.5" ></text>
+</g>
+<g >
+<title>psi_group_change (15,765,879 samples, 0.01%)</title><rect x="421.8" y="565" width="0.2" height="15.0" fill="rgb(233,100,28)" rx="2" ry="2" />
+<text  x="424.84" y="575.5" ></text>
+</g>
+<g >
+<title>g_main_context_check (71,986,028 samples, 0.06%)</title><rect x="416.5" y="709" width="0.7" height="15.0" fill="rgb(244,220,4)" rx="2" ry="2" />
+<text  x="419.49" y="719.5" ></text>
+</g>
+<g >
+<title>set_next_entity (130,758,123 samples, 0.11%)</title><rect x="1171.5" y="677" width="1.2" height="15.0" fill="rgb(235,141,11)" rx="2" ry="2" />
+<text  x="1174.48" y="687.5" ></text>
+</g>
+<g >
+<title>newidle_balance (19,103,849 samples, 0.02%)</title><rect x="553.5" y="629" width="0.2" height="15.0" fill="rgb(205,104,3)" rx="2" ry="2" />
+<text  x="556.53" y="639.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (176,104,455 samples, 0.15%)</title><rect x="397.3" y="597" width="1.7" height="15.0" fill="rgb(225,27,21)" rx="2" ry="2" />
+<text  x="400.26" y="607.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (16,395,923 samples, 0.01%)</title><rect x="348.5" y="549" width="0.2" height="15.0" fill="rgb(225,120,41)" rx="2" ry="2" />
+<text  x="351.50" y="559.5" ></text>
+</g>
+<g >
+<title>file_modified_flags (53,207,578 samples, 0.04%)</title><rect x="423.8" y="597" width="0.5" height="15.0" fill="rgb(252,21,45)" rx="2" ry="2" />
+<text  x="426.80" y="607.5" ></text>
+</g>
+<g >
+<title>skb_release_data (54,926,314 samples, 0.05%)</title><rect x="809.9" y="565" width="0.6" height="15.0" fill="rgb(214,143,2)" rx="2" ry="2" />
+<text  x="812.92" y="575.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (50,145,824 samples, 0.04%)</title><rect x="141.4" y="629" width="0.5" height="15.0" fill="rgb(222,54,13)" rx="2" ry="2" />
+<text  x="144.40" y="639.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output (398,437,454 samples, 0.33%)</title><rect x="387.8" y="485" width="3.9" height="15.0" fill="rgb(227,135,15)" rx="2" ry="2" />
+<text  x="390.79" y="495.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (464,832,417 samples, 0.38%)</title><rect x="225.4" y="677" width="4.6" height="15.0" fill="rgb(214,172,22)" rx="2" ry="2" />
+<text  x="228.44" y="687.5" ></text>
+</g>
+<g >
+<title>amd_iommu_flush_iotlb_all (35,871,853 samples, 0.03%)</title><rect x="907.0" y="549" width="0.4" height="15.0" fill="rgb(218,32,12)" rx="2" ry="2" />
+<text  x="910.04" y="559.5" ></text>
+</g>
+<g >
+<title>plugin_pread (10,514,627,957 samples, 8.67%)</title><rect x="282.9" y="661" width="102.4" height="15.0" fill="rgb(216,14,46)" rx="2" ry="2" />
+<text  x="285.90" y="671.5" >plugin_pread</text>
+</g>
+<g >
+<title>asm_common_interrupt (26,136,337 samples, 0.02%)</title><rect x="1170.0" y="677" width="0.3" height="15.0" fill="rgb(214,205,45)" rx="2" ry="2" />
+<text  x="1173.01" y="687.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (96,370,792 samples, 0.08%)</title><rect x="875.4" y="325" width="1.0" height="15.0" fill="rgb(243,183,34)" rx="2" ry="2" />
+<text  x="878.43" y="335.5" ></text>
+</g>
+<g >
+<title>kthread (1,060,238,503 samples, 0.87%)</title><rect x="148.5" y="773" width="10.3" height="15.0" fill="rgb(221,185,50)" rx="2" ry="2" />
+<text  x="151.52" y="783.5" ></text>
+</g>
+<g >
+<title>__isoc99_sscanf (36,146,279 samples, 0.03%)</title><rect x="337.6" y="565" width="0.4" height="15.0" fill="rgb(209,62,0)" rx="2" ry="2" />
+<text  x="340.65" y="575.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (43,113,106 samples, 0.04%)</title><rect x="400.3" y="501" width="0.4" height="15.0" fill="rgb(236,177,4)" rx="2" ry="2" />
+<text  x="403.29" y="511.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,305,459,047 samples, 1.08%)</title><rect x="224.2" y="789" width="12.8" height="15.0" fill="rgb(211,170,10)" rx="2" ry="2" />
+<text  x="227.25" y="799.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,076,744,919 samples, 0.89%)</title><rect x="254.2" y="757" width="10.5" height="15.0" fill="rgb(210,43,34)" rx="2" ry="2" />
+<text  x="257.21" y="767.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,141,645,781 samples, 0.94%)</title><rect x="43.3" y="757" width="11.1" height="15.0" fill="rgb(219,86,47)" rx="2" ry="2" />
+<text  x="46.26" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_end (16,428,845 samples, 0.01%)</title><rect x="442.3" y="581" width="0.1" height="15.0" fill="rgb(254,7,6)" rx="2" ry="2" />
+<text  x="445.26" y="591.5" ></text>
+</g>
+<g >
+<title>osq_lock (163,862,172 samples, 0.14%)</title><rect x="445.1" y="581" width="1.6" height="15.0" fill="rgb(225,144,3)" rx="2" ry="2" />
+<text  x="448.12" y="591.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (23,828,798 samples, 0.02%)</title><rect x="1178.8" y="709" width="0.3" height="15.0" fill="rgb(220,54,33)" rx="2" ry="2" />
+<text  x="1181.82" y="719.5" ></text>
+</g>
+<g >
+<title>kworker/u64:0-k (1,116,170,422 samples, 0.92%)</title><rect x="11.7" y="805" width="10.9" height="15.0" fill="rgb(213,197,12)" rx="2" ry="2" />
+<text  x="14.69" y="815.5" ></text>
+</g>
+<g >
+<title>wake_up_q (26,525,011 samples, 0.02%)</title><rect x="415.0" y="421" width="0.2" height="15.0" fill="rgb(248,228,30)" rx="2" ry="2" />
+<text  x="417.95" y="431.5" ></text>
+</g>
+<g >
+<title>sshd (23,483,812 samples, 0.02%)</title><rect x="554.1" y="805" width="0.3" height="15.0" fill="rgb(234,194,3)" rx="2" ry="2" />
+<text  x="557.13" y="815.5" ></text>
+</g>
+<g >
+<title>napi_gro_flush (10,703,456 samples, 0.01%)</title><rect x="807.7" y="565" width="0.1" height="15.0" fill="rgb(230,24,52)" rx="2" ry="2" />
+<text  x="810.69" y="575.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (18,361,165 samples, 0.02%)</title><rect x="22.4" y="661" width="0.2" height="15.0" fill="rgb(235,61,4)" rx="2" ry="2" />
+<text  x="25.38" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (128,056,323 samples, 0.11%)</title><rect x="171.3" y="661" width="1.3" height="15.0" fill="rgb(211,105,17)" rx="2" ry="2" />
+<text  x="174.31" y="671.5" ></text>
+</g>
+<g >
+<title>__switch_to (38,085,235 samples, 0.03%)</title><rect x="554.7" y="789" width="0.3" height="15.0" fill="rgb(253,156,13)" rx="2" ry="2" />
+<text  x="557.67" y="799.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,116,170,422 samples, 0.92%)</title><rect x="11.7" y="741" width="10.9" height="15.0" fill="rgb(244,28,29)" rx="2" ry="2" />
+<text  x="14.69" y="751.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (40,581,014 samples, 0.03%)</title><rect x="1112.5" y="645" width="0.4" height="15.0" fill="rgb(245,51,10)" rx="2" ry="2" />
+<text  x="1115.48" y="655.5" ></text>
+</g>
+<g >
+<title>xts_crypt (94,609,675 samples, 0.08%)</title><rect x="25.9" y="661" width="0.9" height="15.0" fill="rgb(234,30,12)" rx="2" ry="2" />
+<text  x="28.89" y="671.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (997,406,341 samples, 0.82%)</title><rect x="65.5" y="789" width="9.7" height="15.0" fill="rgb(242,71,1)" rx="2" ry="2" />
+<text  x="68.53" y="799.5" ></text>
+</g>
+<g >
+<title>__poll (32,238,725 samples, 0.03%)</title><rect x="336.9" y="533" width="0.4" height="15.0" fill="rgb(209,180,27)" rx="2" ry="2" />
+<text  x="339.94" y="543.5" ></text>
+</g>
+<g >
+<title>__rcu_read_unlock (82,941,176 samples, 0.07%)</title><rect x="307.3" y="309" width="0.8" height="15.0" fill="rgb(229,228,3)" rx="2" ry="2" />
+<text  x="310.26" y="319.5" ></text>
+</g>
+<g >
+<title>__br_forward (14,497,082 samples, 0.01%)</title><rect x="293.4" y="261" width="0.2" height="15.0" fill="rgb(206,189,17)" rx="2" ry="2" />
+<text  x="296.43" y="271.5" ></text>
+</g>
+<g >
+<title>process_backlog (196,709,683 samples, 0.16%)</title><rect x="408.8" y="149" width="2.0" height="15.0" fill="rgb(231,197,18)" rx="2" ry="2" />
+<text  x="411.85" y="159.5" ></text>
+</g>
+<g >
+<title>blk_co_pread (1,026,074,034 samples, 0.85%)</title><rect x="404.2" y="725" width="10.0" height="15.0" fill="rgb(240,161,39)" rx="2" ry="2" />
+<text  x="407.17" y="735.5" ></text>
+</g>
+<g >
+<title>kworker/u64:9-k (903,220,189 samples, 0.75%)</title><rect x="272.0" y="805" width="8.8" height="15.0" fill="rgb(215,201,24)" rx="2" ry="2" />
+<text  x="275.05" y="815.5" ></text>
+</g>
+<g >
+<title>iommu_dma_map_page (134,020,232 samples, 0.11%)</title><rect x="309.6" y="213" width="1.3" height="15.0" fill="rgb(228,112,34)" rx="2" ry="2" />
+<text  x="312.62" y="223.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output2 (13,060,396 samples, 0.01%)</title><rect x="401.6" y="277" width="0.1" height="15.0" fill="rgb(245,153,50)" rx="2" ry="2" />
+<text  x="404.58" y="287.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (397,242,259 samples, 0.33%)</title><rect x="408.0" y="309" width="3.9" height="15.0" fill="rgb(208,60,0)" rx="2" ry="2" />
+<text  x="411.03" y="319.5" ></text>
+</g>
+<g >
+<title>fq_codel_dequeue (11,468,132 samples, 0.01%)</title><rect x="308.5" y="261" width="0.1" height="15.0" fill="rgb(236,212,51)" rx="2" ry="2" />
+<text  x="311.47" y="271.5" ></text>
+</g>
+<g >
+<title>psi_group_change (2,063,037,611 samples, 1.70%)</title><rect x="1118.9" y="645" width="20.1" height="15.0" fill="rgb(207,117,8)" rx="2" ry="2" />
+<text  x="1121.87" y="655.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (44,961,372 samples, 0.04%)</title><rect x="130.6" y="629" width="0.4" height="15.0" fill="rgb(225,29,47)" rx="2" ry="2" />
+<text  x="133.58" y="639.5" ></text>
+</g>
+<g >
+<title>put_prev_task_idle (14,556,171 samples, 0.01%)</title><rect x="1171.3" y="677" width="0.2" height="15.0" fill="rgb(246,158,20)" rx="2" ry="2" />
+<text  x="1174.33" y="687.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (20,792,459 samples, 0.02%)</title><rect x="876.6" y="309" width="0.2" height="15.0" fill="rgb(236,112,12)" rx="2" ry="2" />
+<text  x="879.57" y="319.5" ></text>
+</g>
+<g >
+<title>nohz_balance_enter_idle (15,650,548 samples, 0.01%)</title><rect x="1166.7" y="725" width="0.2" height="15.0" fill="rgb(231,10,39)" rx="2" ry="2" />
+<text  x="1169.72" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (404,521,068 samples, 0.33%)</title><rect x="292.7" y="485" width="4.0" height="15.0" fill="rgb(252,179,40)" rx="2" ry="2" />
+<text  x="295.73" y="495.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (37,867,132 samples, 0.03%)</title><rect x="240.4" y="645" width="0.3" height="15.0" fill="rgb(233,148,7)" rx="2" ry="2" />
+<text  x="243.35" y="655.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (16,833,205 samples, 0.01%)</title><rect x="412.2" y="325" width="0.2" height="15.0" fill="rgb(248,117,31)" rx="2" ry="2" />
+<text  x="415.24" y="335.5" ></text>
+</g>
+<g >
+<title>tcp_poll (72,148,263 samples, 0.06%)</title><rect x="332.4" y="437" width="0.7" height="15.0" fill="rgb(252,216,3)" rx="2" ry="2" />
+<text  x="335.40" y="447.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (20,056,697 samples, 0.02%)</title><rect x="340.0" y="501" width="0.2" height="15.0" fill="rgb(230,109,10)" rx="2" ry="2" />
+<text  x="342.96" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (54,943,256 samples, 0.05%)</title><rect x="409.4" y="53" width="0.6" height="15.0" fill="rgb(212,200,38)" rx="2" ry="2" />
+<text  x="412.45" y="63.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,050,315,656 samples, 0.87%)</title><rect x="214.0" y="757" width="10.2" height="15.0" fill="rgb(250,131,13)" rx="2" ry="2" />
+<text  x="217.00" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (886,520,384 samples, 0.73%)</title><rect x="97.3" y="693" width="8.7" height="15.0" fill="rgb(232,178,10)" rx="2" ry="2" />
+<text  x="100.33" y="703.5" ></text>
+</g>
+<g >
+<title>timerqueue_del (11,651,239 samples, 0.01%)</title><rect x="1186.4" y="677" width="0.1" height="15.0" fill="rgb(250,210,25)" rx="2" ry="2" />
+<text  x="1189.43" y="687.5" ></text>
+</g>
+<g >
+<title>net_rx_action (204,167,169 samples, 0.17%)</title><rect x="408.8" y="181" width="2.0" height="15.0" fill="rgb(219,147,41)" rx="2" ry="2" />
+<text  x="411.79" y="191.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (255,103,501 samples, 0.21%)</title><rect x="123.4" y="677" width="2.4" height="15.0" fill="rgb(230,108,30)" rx="2" ry="2" />
+<text  x="126.35" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (424,031,523 samples, 0.35%)</title><rect x="408.0" y="341" width="4.1" height="15.0" fill="rgb(244,37,43)" rx="2" ry="2" />
+<text  x="410.96" y="351.5" ></text>
+</g>
+<g >
+<title>process_backlog (11,112,714 samples, 0.01%)</title><rect x="401.6" y="181" width="0.1" height="15.0" fill="rgb(211,191,28)" rx="2" ry="2" />
+<text  x="404.60" y="191.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (78,356,402 samples, 0.06%)</title><rect x="53.4" y="693" width="0.7" height="15.0" fill="rgb(235,190,46)" rx="2" ry="2" />
+<text  x="56.36" y="703.5" ></text>
+</g>
+<g >
+<title>kmalloc_size_roundup (15,276,594 samples, 0.01%)</title><rect x="304.0" y="373" width="0.1" height="15.0" fill="rgb(237,103,37)" rx="2" ry="2" />
+<text  x="306.96" y="383.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (19,525,985 samples, 0.02%)</title><rect x="1184.7" y="677" width="0.2" height="15.0" fill="rgb(225,188,22)" rx="2" ry="2" />
+<text  x="1187.70" y="687.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (10,583,434 samples, 0.01%)</title><rect x="402.3" y="421" width="0.1" height="15.0" fill="rgb(226,73,23)" rx="2" ry="2" />
+<text  x="405.28" y="431.5" ></text>
+</g>
+<g >
+<title>rb_erase (12,463,321 samples, 0.01%)</title><rect x="1172.0" y="661" width="0.1" height="15.0" fill="rgb(214,5,15)" rx="2" ry="2" />
+<text  x="1174.97" y="671.5" ></text>
+</g>
+<g >
+<title>curl_multi_perform (7,155,727,929 samples, 5.90%)</title><rect x="284.2" y="613" width="69.7" height="15.0" fill="rgb(244,93,7)" rx="2" ry="2" />
+<text  x="287.25" y="623.5" >curl_mu..</text>
+</g>
+<g >
+<title>process_one_work (812,814,308 samples, 0.67%)</title><rect x="206.1" y="741" width="7.9" height="15.0" fill="rgb(246,221,38)" rx="2" ry="2" />
+<text  x="209.06" y="751.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (10,516,473 samples, 0.01%)</title><rect x="370.3" y="389" width="0.1" height="15.0" fill="rgb(249,2,11)" rx="2" ry="2" />
+<text  x="373.30" y="399.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (58,875,517 samples, 0.05%)</title><rect x="333.4" y="485" width="0.6" height="15.0" fill="rgb(228,135,48)" rx="2" ry="2" />
+<text  x="336.40" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (20,709,306 samples, 0.02%)</title><rect x="1031.0" y="597" width="0.2" height="15.0" fill="rgb(211,9,22)" rx="2" ry="2" />
+<text  x="1034.03" y="607.5" ></text>
+</g>
+<g >
+<title>__fget_light (20,488,726 samples, 0.02%)</title><rect x="324.6" y="437" width="0.2" height="15.0" fill="rgb(208,199,1)" rx="2" ry="2" />
+<text  x="327.59" y="447.5" ></text>
+</g>
+<g >
+<title>raw_notifier_call_chain (10,382,972 samples, 0.01%)</title><rect x="912.9" y="533" width="0.1" height="15.0" fill="rgb(220,4,50)" rx="2" ry="2" />
+<text  x="915.86" y="543.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (33,041,435 samples, 0.03%)</title><rect x="342.2" y="565" width="0.3" height="15.0" fill="rgb(206,16,21)" rx="2" ry="2" />
+<text  x="345.18" y="575.5" ></text>
+</g>
+<g >
+<title>read_tsc (37,754,980 samples, 0.03%)</title><rect x="1178.5" y="693" width="0.3" height="15.0" fill="rgb(237,11,23)" rx="2" ry="2" />
+<text  x="1181.45" y="703.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (29,287,676 samples, 0.02%)</title><rect x="1177.8" y="709" width="0.3" height="15.0" fill="rgb(229,61,39)" rx="2" ry="2" />
+<text  x="1180.82" y="719.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (10,917,270 samples, 0.01%)</title><rect x="178.6" y="693" width="0.1" height="15.0" fill="rgb(229,89,52)" rx="2" ry="2" />
+<text  x="181.60" y="703.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (42,474,348 samples, 0.04%)</title><rect x="229.0" y="629" width="0.4" height="15.0" fill="rgb(212,212,18)" rx="2" ry="2" />
+<text  x="232.02" y="639.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (554,143,692 samples, 0.46%)</title><rect x="407.4" y="565" width="5.4" height="15.0" fill="rgb(220,41,27)" rx="2" ry="2" />
+<text  x="410.43" y="575.5" ></text>
+</g>
+<g >
+<title>fq_flush_iotlb (38,250,255 samples, 0.03%)</title><rect x="907.0" y="565" width="0.4" height="15.0" fill="rgb(242,228,10)" rx="2" ry="2" />
+<text  x="910.02" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,003,598,727 samples, 0.83%)</title><rect x="54.7" y="693" width="9.8" height="15.0" fill="rgb(240,112,30)" rx="2" ry="2" />
+<text  x="57.74" y="703.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (63,670,321 samples, 0.05%)</title><rect x="410.1" y="101" width="0.6" height="15.0" fill="rgb(218,65,36)" rx="2" ry="2" />
+<text  x="413.12" y="111.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (364,391,597 samples, 0.30%)</title><rect x="237.2" y="677" width="3.5" height="15.0" fill="rgb(221,122,49)" rx="2" ry="2" />
+<text  x="240.17" y="687.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (116,231,286 samples, 0.10%)</title><rect x="858.9" y="629" width="1.2" height="15.0" fill="rgb(254,40,19)" rx="2" ry="2" />
+<text  x="861.95" y="639.5" ></text>
+</g>
+<g >
+<title>llist_add_batch (17,207,620 samples, 0.01%)</title><rect x="885.1" y="245" width="0.2" height="15.0" fill="rgb(246,141,30)" rx="2" ry="2" />
+<text  x="888.10" y="255.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (73,639,029 samples, 0.06%)</title><rect x="224.5" y="677" width="0.7" height="15.0" fill="rgb(233,195,25)" rx="2" ry="2" />
+<text  x="227.53" y="687.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (15,365,072 samples, 0.01%)</title><rect x="295.8" y="309" width="0.1" height="15.0" fill="rgb(240,82,26)" rx="2" ry="2" />
+<text  x="298.78" y="319.5" ></text>
+</g>
+<g >
+<title>__calc_delta (18,771,855 samples, 0.02%)</title><rect x="369.3" y="389" width="0.2" height="15.0" fill="rgb(253,146,15)" rx="2" ry="2" />
+<text  x="372.34" y="399.5" ></text>
+</g>
+<g >
+<title>futex_wait (274,724,635 samples, 0.23%)</title><rect x="549.8" y="597" width="2.7" height="15.0" fill="rgb(253,148,37)" rx="2" ry="2" />
+<text  x="552.81" y="607.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,118,012,769 samples, 0.92%)</title><rect x="75.2" y="757" width="10.9" height="15.0" fill="rgb(242,176,13)" rx="2" ry="2" />
+<text  x="78.25" y="767.5" ></text>
+</g>
+<g >
+<title>llist_reverse_order (90,309,386 samples, 0.07%)</title><rect x="1029.8" y="629" width="0.9" height="15.0" fill="rgb(242,26,5)" rx="2" ry="2" />
+<text  x="1032.83" y="639.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output2 (391,211,924 samples, 0.32%)</title><rect x="387.9" y="469" width="3.8" height="15.0" fill="rgb(244,125,15)" rx="2" ry="2" />
+<text  x="390.86" y="479.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (30,744,026 samples, 0.03%)</title><rect x="292.0" y="517" width="0.3" height="15.0" fill="rgb(221,13,8)" rx="2" ry="2" />
+<text  x="295.01" y="527.5" ></text>
+</g>
+<g >
+<title>qemu_aio_coroutine_enter (10,788,617 samples, 0.01%)</title><rect x="418.1" y="613" width="0.1" height="15.0" fill="rgb(209,118,41)" rx="2" ry="2" />
+<text  x="421.06" y="623.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit_state (35,680,203 samples, 0.03%)</title><rect x="1072.0" y="677" width="0.3" height="15.0" fill="rgb(245,81,43)" rx="2" ry="2" />
+<text  x="1075.00" y="687.5" ></text>
+</g>
+<g >
+<title>__xa_set_mark (32,682,275 samples, 0.03%)</title><rect x="444.2" y="517" width="0.4" height="15.0" fill="rgb(220,63,46)" rx="2" ry="2" />
+<text  x="447.23" y="527.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (11,507,087 samples, 0.01%)</title><rect x="915.5" y="549" width="0.1" height="15.0" fill="rgb(213,86,51)" rx="2" ry="2" />
+<text  x="918.51" y="559.5" ></text>
+</g>
+<g >
+<title>xts_crypt (127,570,884 samples, 0.11%)</title><rect x="141.1" y="661" width="1.2" height="15.0" fill="rgb(215,108,48)" rx="2" ry="2" />
+<text  x="144.08" y="671.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (21,606,117 samples, 0.02%)</title><rect x="439.9" y="485" width="0.2" height="15.0" fill="rgb(242,56,44)" rx="2" ry="2" />
+<text  x="442.90" y="495.5" ></text>
+</g>
+<g >
+<title>sock_poll (21,604,889 samples, 0.02%)</title><rect x="422.5" y="629" width="0.2" height="15.0" fill="rgb(250,107,27)" rx="2" ry="2" />
+<text  x="425.51" y="639.5" ></text>
+</g>
+<g >
+<title>cpu_startup_entry (812,027,677 samples, 0.67%)</title><rect x="558.7" y="725" width="7.9" height="15.0" fill="rgb(215,177,13)" rx="2" ry="2" />
+<text  x="561.71" y="735.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (13,856,866 samples, 0.01%)</title><rect x="245.8" y="693" width="0.2" height="15.0" fill="rgb(221,208,20)" rx="2" ry="2" />
+<text  x="248.82" y="703.5" ></text>
+</g>
+<g >
+<title>__rcu_read_lock (11,864,320 samples, 0.01%)</title><rect x="361.1" y="469" width="0.1" height="15.0" fill="rgb(222,99,5)" rx="2" ry="2" />
+<text  x="364.13" y="479.5" ></text>
+</g>
+<g >
+<title>_nohz_idle_balance.isra.0 (111,704,238 samples, 0.09%)</title><rect x="564.2" y="597" width="1.1" height="15.0" fill="rgb(252,180,9)" rx="2" ry="2" />
+<text  x="567.21" y="607.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (12,412,570 samples, 0.01%)</title><rect x="264.5" y="709" width="0.1" height="15.0" fill="rgb(237,60,0)" rx="2" ry="2" />
+<text  x="267.50" y="719.5" ></text>
+</g>
+<g >
+<title>psi_group_change (18,977,796 samples, 0.02%)</title><rect x="551.8" y="517" width="0.2" height="15.0" fill="rgb(249,3,3)" rx="2" ry="2" />
+<text  x="554.81" y="527.5" ></text>
+</g>
+<g >
+<title>irq_work_needs_cpu (82,574,932 samples, 0.07%)</title><rect x="1164.3" y="677" width="0.8" height="15.0" fill="rgb(236,28,39)" rx="2" ry="2" />
+<text  x="1167.29" y="687.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (78,707,821 samples, 0.06%)</title><rect x="876.5" y="325" width="0.8" height="15.0" fill="rgb(246,118,31)" rx="2" ry="2" />
+<text  x="879.53" y="335.5" ></text>
+</g>
+<g >
+<title>iommu_map_atomic (13,313,744 samples, 0.01%)</title><rect x="294.0" y="133" width="0.1" height="15.0" fill="rgb(247,229,15)" rx="2" ry="2" />
+<text  x="296.99" y="143.5" ></text>
+</g>
+<g >
+<title>inet6_recvmsg (57,012,991 samples, 0.05%)</title><rect x="401.5" y="389" width="0.6" height="15.0" fill="rgb(225,146,25)" rx="2" ry="2" />
+<text  x="404.51" y="399.5" ></text>
+</g>
+<g >
+<title>_mid_memalign.isra.0 (29,140,008 samples, 0.02%)</title><rect x="413.6" y="581" width="0.3" height="15.0" fill="rgb(237,141,39)" rx="2" ry="2" />
+<text  x="416.61" y="591.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (33,381,435 samples, 0.03%)</title><rect x="1096.9" y="677" width="0.4" height="15.0" fill="rgb(208,31,50)" rx="2" ry="2" />
+<text  x="1099.93" y="687.5" ></text>
+</g>
+<g >
+<title>br_dev_xmit (11,072,820 samples, 0.01%)</title><rect x="808.4" y="309" width="0.1" height="15.0" fill="rgb(206,115,8)" rx="2" ry="2" />
+<text  x="811.41" y="319.5" ></text>
+</g>
+<g >
+<title>__hrtimer_next_event_base (79,054,522 samples, 0.07%)</title><rect x="1158.9" y="677" width="0.7" height="15.0" fill="rgb(225,224,15)" rx="2" ry="2" />
+<text  x="1161.86" y="687.5" ></text>
+</g>
+<g >
+<title>tsc_verify_tsc_adjust (50,723,805 samples, 0.04%)</title><rect x="571.7" y="709" width="0.5" height="15.0" fill="rgb(239,105,3)" rx="2" ry="2" />
+<text  x="574.70" y="719.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (127,951,827 samples, 0.11%)</title><rect x="817.6" y="613" width="1.2" height="15.0" fill="rgb(217,0,54)" rx="2" ry="2" />
+<text  x="820.57" y="623.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (48,191,946 samples, 0.04%)</title><rect x="280.2" y="693" width="0.5" height="15.0" fill="rgb(231,3,7)" rx="2" ry="2" />
+<text  x="283.18" y="703.5" ></text>
+</g>
+<g >
+<title>__nf_ct_refresh_acct (13,540,409 samples, 0.01%)</title><rect x="894.7" y="389" width="0.1" height="15.0" fill="rgb(208,39,45)" rx="2" ry="2" />
+<text  x="897.71" y="399.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (107,425,512 samples, 0.09%)</title><rect x="293.4" y="293" width="1.0" height="15.0" fill="rgb(252,195,33)" rx="2" ry="2" />
+<text  x="296.36" y="303.5" ></text>
+</g>
+<g >
+<title>__this_cpu_preempt_check (19,259,644 samples, 0.02%)</title><rect x="918.5" y="661" width="0.2" height="15.0" fill="rgb(238,137,14)" rx="2" ry="2" />
+<text  x="921.48" y="671.5" ></text>
+</g>
+<g >
+<title>__cgroup_account_cputime (13,985,589 samples, 0.01%)</title><rect x="369.5" y="389" width="0.2" height="15.0" fill="rgb(238,77,24)" rx="2" ry="2" />
+<text  x="372.52" y="399.5" ></text>
+</g>
+<g >
+<title>mpage_process_page_bufs (35,736,545 samples, 0.03%)</title><rect x="205.1" y="581" width="0.4" height="15.0" fill="rgb(244,110,0)" rx="2" ry="2" />
+<text  x="208.13" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (62,547,784 samples, 0.05%)</title><rect x="401.5" y="469" width="0.6" height="15.0" fill="rgb(214,145,12)" rx="2" ry="2" />
+<text  x="404.49" y="479.5" ></text>
+</g>
+<g >
+<title>aio_co_enter (14,383,249 samples, 0.01%)</title><rect x="418.0" y="629" width="0.2" height="15.0" fill="rgb(222,222,34)" rx="2" ry="2" />
+<text  x="421.05" y="639.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (128,518,777 samples, 0.11%)</title><rect x="320.4" y="373" width="1.3" height="15.0" fill="rgb(246,220,47)" rx="2" ry="2" />
+<text  x="323.45" y="383.5" ></text>
+</g>
+<g >
+<title>napi_complete_done (4,551,360,089 samples, 3.75%)</title><rect x="861.0" y="581" width="44.3" height="15.0" fill="rgb(219,170,48)" rx="2" ry="2" />
+<text  x="864.04" y="591.5" >napi..</text>
+</g>
+<g >
+<title>process_one_work (1,025,597,374 samples, 0.85%)</title><rect x="97.2" y="741" width="10.0" height="15.0" fill="rgb(216,9,32)" rx="2" ry="2" />
+<text  x="100.17" y="751.5" ></text>
+</g>
+<g >
+<title>wb_writeback (364,791,472 samples, 0.30%)</title><rect x="202.5" y="709" width="3.6" height="15.0" fill="rgb(242,27,9)" rx="2" ry="2" />
+<text  x="205.50" y="719.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (235,935,343 samples, 0.19%)</title><rect x="1170.5" y="693" width="2.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
+<text  x="1173.45" y="703.5" ></text>
+</g>
+<g >
+<title>tick_sched_timer (363,319,591 samples, 0.30%)</title><rect x="912.2" y="613" width="3.5" height="15.0" fill="rgb(224,161,22)" rx="2" ry="2" />
+<text  x="915.16" y="623.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (428,885,527 samples, 0.35%)</title><rect x="159.1" y="677" width="4.2" height="15.0" fill="rgb(217,52,49)" rx="2" ry="2" />
+<text  x="162.12" y="687.5" ></text>
+</g>
+<g >
+<title>hrtimer_try_to_cancel (112,357,024 samples, 0.09%)</title><rect x="1183.4" y="677" width="1.1" height="15.0" fill="rgb(228,216,41)" rx="2" ry="2" />
+<text  x="1186.43" y="687.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output (13,167,937 samples, 0.01%)</title><rect x="401.6" y="293" width="0.1" height="15.0" fill="rgb(226,174,43)" rx="2" ry="2" />
+<text  x="404.58" y="303.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (16,590,188 samples, 0.01%)</title><rect x="379.3" y="437" width="0.2" height="15.0" fill="rgb(253,207,30)" rx="2" ry="2" />
+<text  x="382.30" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (26,953,407 samples, 0.02%)</title><rect x="206.1" y="693" width="0.2" height="15.0" fill="rgb(216,75,28)" rx="2" ry="2" />
+<text  x="209.07" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (251,308,698 samples, 0.21%)</title><rect x="155.5" y="677" width="2.4" height="15.0" fill="rgb(254,17,34)" rx="2" ry="2" />
+<text  x="158.46" y="687.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (767,046,703 samples, 0.63%)</title><rect x="415.7" y="757" width="7.5" height="15.0" fill="rgb(219,196,23)" rx="2" ry="2" />
+<text  x="418.70" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (146,618,527 samples, 0.12%)</title><rect x="11.9" y="661" width="1.4" height="15.0" fill="rgb(221,12,28)" rx="2" ry="2" />
+<text  x="14.91" y="671.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (37,027,865 samples, 0.03%)</title><rect x="47.2" y="645" width="0.3" height="15.0" fill="rgb(247,121,44)" rx="2" ry="2" />
+<text  x="50.18" y="655.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (192,311,251 samples, 0.16%)</title><rect x="408.9" y="133" width="1.8" height="15.0" fill="rgb(233,190,15)" rx="2" ry="2" />
+<text  x="411.87" y="143.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (481,901,390 samples, 0.40%)</title><rect x="342.5" y="565" width="4.7" height="15.0" fill="rgb(210,202,44)" rx="2" ry="2" />
+<text  x="345.52" y="575.5" ></text>
+</g>
+<g >
+<title>common_interrupt (25,668,913 samples, 0.02%)</title><rect x="1170.0" y="661" width="0.3" height="15.0" fill="rgb(220,2,6)" rx="2" ry="2" />
+<text  x="1173.01" y="671.5" ></text>
+</g>
+<g >
+<title>find_lock_entries (14,718,295 samples, 0.01%)</title><rect x="547.1" y="581" width="0.2" height="15.0" fill="rgb(250,70,1)" rx="2" ry="2" />
+<text  x="550.11" y="591.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (72,328,532 samples, 0.06%)</title><rect x="1036.8" y="661" width="0.7" height="15.0" fill="rgb(225,229,46)" rx="2" ry="2" />
+<text  x="1039.81" y="671.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (44,455,055 samples, 0.04%)</title><rect x="397.9" y="485" width="0.5" height="15.0" fill="rgb(208,75,38)" rx="2" ry="2" />
+<text  x="400.93" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (10,857,279 samples, 0.01%)</title><rect x="424.0" y="501" width="0.1" height="15.0" fill="rgb(216,35,21)" rx="2" ry="2" />
+<text  x="427.03" y="511.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (644,574,447 samples, 0.53%)</title><rect x="306.0" y="341" width="6.2" height="15.0" fill="rgb(215,136,6)" rx="2" ry="2" />
+<text  x="308.98" y="351.5" ></text>
+</g>
+<g >
+<title>tcp_mstamp_refresh (44,792,957 samples, 0.04%)</title><rect x="886.7" y="373" width="0.5" height="15.0" fill="rgb(243,166,38)" rx="2" ry="2" />
+<text  x="889.74" y="383.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (95,224,281 samples, 0.08%)</title><rect x="294.8" y="293" width="0.9" height="15.0" fill="rgb(205,169,39)" rx="2" ry="2" />
+<text  x="297.81" y="303.5" ></text>
+</g>
+<g >
+<title>[libprocps.so.8.0.3] (15,350,790 samples, 0.01%)</title><rect x="399.1" y="773" width="0.2" height="15.0" fill="rgb(235,8,28)" rx="2" ry="2" />
+<text  x="402.13" y="783.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,482,901 samples, 0.01%)</title><rect x="872.9" y="405" width="0.1" height="15.0" fill="rgb(216,142,15)" rx="2" ry="2" />
+<text  x="875.89" y="415.5" ></text>
+</g>
+<g >
+<title>psi_group_change (81,809,931 samples, 0.07%)</title><rect x="1033.6" y="581" width="0.8" height="15.0" fill="rgb(237,62,18)" rx="2" ry="2" />
+<text  x="1036.57" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_gro_receive (12,824,423 samples, 0.01%)</title><rect x="814.1" y="533" width="0.1" height="15.0" fill="rgb(249,56,0)" rx="2" ry="2" />
+<text  x="817.12" y="543.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (324,730,967 samples, 0.27%)</title><rect x="419.6" y="645" width="3.1" height="15.0" fill="rgb(218,83,46)" rx="2" ry="2" />
+<text  x="422.56" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_cleanup_rbuf (37,602,981 samples, 0.03%)</title><rect x="303.1" y="405" width="0.4" height="15.0" fill="rgb(251,63,46)" rx="2" ry="2" />
+<text  x="306.11" y="415.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (1,332,282,287 samples, 1.10%)</title><rect x="1077.6" y="693" width="13.0" height="15.0" fill="rgb(250,124,14)" rx="2" ry="2" />
+<text  x="1080.65" y="703.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,024,076,844 samples, 0.84%)</title><rect x="196.1" y="757" width="10.0" height="15.0" fill="rgb(214,194,42)" rx="2" ry="2" />
+<text  x="199.08" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (222,385,694 samples, 0.18%)</title><rect x="179.0" y="677" width="2.2" height="15.0" fill="rgb(238,196,26)" rx="2" ry="2" />
+<text  x="182.05" y="687.5" ></text>
+</g>
+<g >
+<title>error_entry (172,265,589 samples, 0.14%)</title><rect x="850.2" y="677" width="1.7" height="15.0" fill="rgb(229,144,4)" rx="2" ry="2" />
+<text  x="853.21" y="687.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages_ratelimited_flags (57,360,884 samples, 0.05%)</title><rect x="424.4" y="581" width="0.6" height="15.0" fill="rgb(253,72,20)" rx="2" ry="2" />
+<text  x="427.42" y="591.5" ></text>
+</g>
+<g >
+<title>skb_attempt_defer_free (37,112,194 samples, 0.03%)</title><rect x="320.0" y="405" width="0.3" height="15.0" fill="rgb(226,97,48)" rx="2" ry="2" />
+<text  x="322.98" y="415.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (45,336,183 samples, 0.04%)</title><rect x="349.1" y="517" width="0.5" height="15.0" fill="rgb(247,46,17)" rx="2" ry="2" />
+<text  x="352.13" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (929,193,008 samples, 0.77%)</title><rect x="254.5" y="693" width="9.1" height="15.0" fill="rgb(244,180,45)" rx="2" ry="2" />
+<text  x="257.55" y="703.5" ></text>
+</g>
+<g >
+<title>sch_direct_xmit (44,405,812 samples, 0.04%)</title><rect x="875.8" y="261" width="0.4" height="15.0" fill="rgb(238,163,25)" rx="2" ry="2" />
+<text  x="878.82" y="271.5" ></text>
+</g>
+<g >
+<title>[perf] (192,192,189 samples, 0.16%)</title><rect x="397.2" y="741" width="1.9" height="15.0" fill="rgb(227,165,43)" rx="2" ry="2" />
+<text  x="400.23" y="751.5" ></text>
+</g>
+<g >
+<title>perf_event_task_tick (23,293,430 samples, 0.02%)</title><rect x="543.6" y="517" width="0.2" height="15.0" fill="rgb(234,164,2)" rx="2" ry="2" />
+<text  x="546.60" y="527.5" ></text>
+</g>
+<g >
+<title>curl_maprintf (59,582,027 samples, 0.05%)</title><rect x="339.6" y="565" width="0.6" height="15.0" fill="rgb(247,7,47)" rx="2" ry="2" />
+<text  x="342.65" y="575.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (16,967,925 samples, 0.01%)</title><rect x="282.3" y="757" width="0.2" height="15.0" fill="rgb(238,211,10)" rx="2" ry="2" />
+<text  x="285.31" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (1,590,441,625 samples, 1.31%)</title><rect x="872.1" y="421" width="15.5" height="15.0" fill="rgb(233,208,22)" rx="2" ry="2" />
+<text  x="875.08" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (175,335,643 samples, 0.14%)</title><rect x="397.3" y="581" width="1.7" height="15.0" fill="rgb(211,71,13)" rx="2" ry="2" />
+<text  x="400.27" y="591.5" ></text>
+</g>
+<g >
+<title>__pollwait (36,197,400 samples, 0.03%)</title><rect x="378.7" y="453" width="0.3" height="15.0" fill="rgb(225,84,23)" rx="2" ry="2" />
+<text  x="381.69" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (355,338,694 samples, 0.29%)</title><rect x="419.5" y="677" width="3.4" height="15.0" fill="rgb(250,105,22)" rx="2" ry="2" />
+<text  x="422.47" y="687.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (69,784,091 samples, 0.06%)</title><rect x="864.4" y="469" width="0.7" height="15.0" fill="rgb(240,70,29)" rx="2" ry="2" />
+<text  x="867.43" y="479.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (64,781,051 samples, 0.05%)</title><rect x="106.0" y="693" width="0.6" height="15.0" fill="rgb(205,205,49)" rx="2" ry="2" />
+<text  x="108.96" y="703.5" ></text>
+</g>
+<g >
+<title>crypt_free_buffer_pages (70,519,441 samples, 0.06%)</title><rect x="760.8" y="549" width="0.7" height="15.0" fill="rgb(226,148,7)" rx="2" ry="2" />
+<text  x="763.85" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (150,460,258 samples, 0.12%)</title><rect x="160.6" y="661" width="1.5" height="15.0" fill="rgb(241,220,30)" rx="2" ry="2" />
+<text  x="163.65" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (152,264,917 samples, 0.13%)</title><rect x="215.6" y="661" width="1.5" height="15.0" fill="rgb(231,175,0)" rx="2" ry="2" />
+<text  x="218.58" y="671.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (38,543,814 samples, 0.03%)</title><rect x="553.4" y="693" width="0.4" height="15.0" fill="rgb(219,118,14)" rx="2" ry="2" />
+<text  x="556.41" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (254,607,880 samples, 0.21%)</title><rect x="26.8" y="677" width="2.5" height="15.0" fill="rgb(205,5,45)" rx="2" ry="2" />
+<text  x="29.82" y="687.5" ></text>
+</g>
+<g >
+<title>__libc_recv (2,890,966,695 samples, 2.38%)</title><rect x="297.2" y="533" width="28.2" height="15.0" fill="rgb(235,41,5)" rx="2" ry="2" />
+<text  x="300.24" y="543.5" >_..</text>
+</g>
+<g >
+<title>skcipher_walk_virt (37,880,537 samples, 0.03%)</title><rect x="47.6" y="645" width="0.4" height="15.0" fill="rgb(223,111,29)" rx="2" ry="2" />
+<text  x="50.59" y="655.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (396,698,645 samples, 0.33%)</title><rect x="292.8" y="437" width="3.8" height="15.0" fill="rgb(248,69,20)" rx="2" ry="2" />
+<text  x="295.77" y="447.5" ></text>
+</g>
+<g >
+<title>cfree@GLIBC_2.2.5 (11,389,623 samples, 0.01%)</title><rect x="336.1" y="549" width="0.1" height="15.0" fill="rgb(247,189,44)" rx="2" ry="2" />
+<text  x="339.09" y="559.5" ></text>
+</g>
+<g >
+<title>__memmove_avx_unaligned_erms (294,021,697 samples, 0.24%)</title><rect x="404.5" y="629" width="2.9" height="15.0" fill="rgb(219,167,33)" rx="2" ry="2" />
+<text  x="407.51" y="639.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (18,445,037 samples, 0.02%)</title><rect x="808.8" y="341" width="0.2" height="15.0" fill="rgb(234,205,3)" rx="2" ry="2" />
+<text  x="811.81" y="351.5" ></text>
+</g>
+<g >
+<title>__do_softirq (17,535,563 samples, 0.01%)</title><rect x="543.2" y="613" width="0.2" height="15.0" fill="rgb(252,53,52)" rx="2" ry="2" />
+<text  x="546.22" y="623.5" ></text>
+</g>
+<g >
+<title>tick_do_update_jiffies64 (11,064,408 samples, 0.01%)</title><rect x="912.5" y="581" width="0.1" height="15.0" fill="rgb(207,92,15)" rx="2" ry="2" />
+<text  x="915.52" y="591.5" ></text>
+</g>
+<g >
+<title>ct_kernel_enter.constprop.0 (21,587,688 samples, 0.02%)</title><rect x="565.6" y="645" width="0.2" height="15.0" fill="rgb(238,185,1)" rx="2" ry="2" />
+<text  x="568.57" y="655.5" ></text>
+</g>
+<g >
+<title>menu_select (2,130,973,644 samples, 1.76%)</title><rect x="1146.0" y="725" width="20.7" height="15.0" fill="rgb(220,136,45)" rx="2" ry="2" />
+<text  x="1148.98" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,003,052,323 samples, 0.83%)</title><rect x="86.4" y="693" width="9.8" height="15.0" fill="rgb(207,182,31)" rx="2" ry="2" />
+<text  x="89.44" y="703.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (38,596,539 samples, 0.03%)</title><rect x="1104.0" y="693" width="0.4" height="15.0" fill="rgb(214,175,18)" rx="2" ry="2" />
+<text  x="1107.01" y="703.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (14,144,588 samples, 0.01%)</title><rect x="110.4" y="645" width="0.1" height="15.0" fill="rgb(216,178,17)" rx="2" ry="2" />
+<text  x="113.37" y="655.5" ></text>
+</g>
+<g >
+<title>ip_rcv (70,682,393 samples, 0.06%)</title><rect x="809.1" y="453" width="0.7" height="15.0" fill="rgb(237,199,27)" rx="2" ry="2" />
+<text  x="812.12" y="463.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (11,662,994 samples, 0.01%)</title><rect x="325.1" y="469" width="0.2" height="15.0" fill="rgb(226,219,0)" rx="2" ry="2" />
+<text  x="328.14" y="479.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_pre_routing (44,242,168 samples, 0.04%)</title><rect x="895.2" y="421" width="0.4" height="15.0" fill="rgb(212,121,8)" rx="2" ry="2" />
+<text  x="898.18" y="431.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (14,464,958 samples, 0.01%)</title><rect x="283.8" y="565" width="0.1" height="15.0" fill="rgb(248,228,45)" rx="2" ry="2" />
+<text  x="286.76" y="575.5" ></text>
+</g>
+<g >
+<title>kworker/u64:19- (1,109,724,305 samples, 0.92%)</title><rect x="126.7" y="805" width="10.8" height="15.0" fill="rgb(215,56,46)" rx="2" ry="2" />
+<text  x="129.71" y="815.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,003,514,497 samples, 0.83%)</title><rect x="116.8" y="709" width="9.8" height="15.0" fill="rgb(253,219,2)" rx="2" ry="2" />
+<text  x="119.82" y="719.5" ></text>
+</g>
+<g >
+<title>__napi_poll (199,622,729 samples, 0.16%)</title><rect x="408.8" y="165" width="2.0" height="15.0" fill="rgb(240,33,42)" rx="2" ry="2" />
+<text  x="411.83" y="175.5" ></text>
+</g>
+<g >
+<title>rtl8169_start_xmit (36,028,645 samples, 0.03%)</title><rect x="293.8" y="197" width="0.3" height="15.0" fill="rgb(221,200,6)" rx="2" ry="2" />
+<text  x="296.79" y="207.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,149,736,273 samples, 0.95%)</title><rect x="184.9" y="725" width="11.2" height="15.0" fill="rgb(208,118,18)" rx="2" ry="2" />
+<text  x="187.87" y="735.5" ></text>
+</g>
+<g >
+<title>futex_q_lock (12,028,058 samples, 0.01%)</title><rect x="553.8" y="677" width="0.1" height="15.0" fill="rgb(213,135,20)" rx="2" ry="2" />
+<text  x="556.79" y="687.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (2,687,148,013 samples, 2.22%)</title><rect x="1113.9" y="693" width="26.2" height="15.0" fill="rgb(209,98,39)" rx="2" ry="2" />
+<text  x="1116.91" y="703.5" >t..</text>
+</g>
+<g >
+<title>_start (16,967,925 samples, 0.01%)</title><rect x="282.3" y="789" width="0.2" height="15.0" fill="rgb(234,37,52)" rx="2" ry="2" />
+<text  x="285.31" y="799.5" ></text>
+</g>
+<g >
+<title>vfs_read (55,787,561 samples, 0.05%)</title><rect x="385.6" y="629" width="0.5" height="15.0" fill="rgb(224,23,34)" rx="2" ry="2" />
+<text  x="388.56" y="639.5" ></text>
+</g>
+<g >
+<title>siphash_4u64 (22,907,909 samples, 0.02%)</title><rect x="316.0" y="293" width="0.2" height="15.0" fill="rgb(212,150,5)" rx="2" ry="2" />
+<text  x="319.02" y="303.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (27,291,210 samples, 0.02%)</title><rect x="1175.6" y="661" width="0.3" height="15.0" fill="rgb(222,154,48)" rx="2" ry="2" />
+<text  x="1178.61" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (30,258,785 samples, 0.02%)</title><rect x="398.7" y="469" width="0.3" height="15.0" fill="rgb(243,102,26)" rx="2" ry="2" />
+<text  x="401.66" y="479.5" ></text>
+</g>
+<g >
+<title>ipv6_rcv (13,936,259 samples, 0.01%)</title><rect x="396.3" y="357" width="0.1" height="15.0" fill="rgb(239,97,7)" rx="2" ry="2" />
+<text  x="399.26" y="367.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (14,155,441 samples, 0.01%)</title><rect x="817.4" y="613" width="0.2" height="15.0" fill="rgb(236,78,3)" rx="2" ry="2" />
+<text  x="820.43" y="623.5" ></text>
+</g>
+<g >
+<title>nft_ct_get_eval (18,184,927 samples, 0.02%)</title><rect x="870.9" y="389" width="0.2" height="15.0" fill="rgb(210,99,49)" rx="2" ry="2" />
+<text  x="873.89" y="399.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (2,136,741,990 samples, 1.76%)</title><rect x="424.3" y="597" width="20.8" height="15.0" fill="rgb(218,101,20)" rx="2" ry="2" />
+<text  x="427.32" y="607.5" ></text>
+</g>
+<g >
+<title>kworker/u64:13 (997,503,257 samples, 0.82%)</title><rect x="65.5" y="805" width="9.7" height="15.0" fill="rgb(222,214,18)" rx="2" ry="2" />
+<text  x="68.53" y="815.5" ></text>
+</g>
+<g >
+<title>__x64_sys_getsockname (29,588,397 samples, 0.02%)</title><rect x="337.3" y="517" width="0.3" height="15.0" fill="rgb(239,16,54)" rx="2" ry="2" />
+<text  x="340.30" y="527.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (38,904,821 samples, 0.03%)</title><rect x="78.9" y="629" width="0.4" height="15.0" fill="rgb(216,90,49)" rx="2" ry="2" />
+<text  x="81.93" y="639.5" ></text>
+</g>
+<g >
+<title>update_load_avg (31,361,588 samples, 0.03%)</title><rect x="884.0" y="213" width="0.3" height="15.0" fill="rgb(254,131,44)" rx="2" ry="2" />
+<text  x="887.04" y="223.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,003,235,284 samples, 0.83%)</title><rect x="75.5" y="693" width="9.7" height="15.0" fill="rgb(239,192,54)" rx="2" ry="2" />
+<text  x="78.48" y="703.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (40,694,415 samples, 0.03%)</title><rect x="336.2" y="549" width="0.4" height="15.0" fill="rgb(235,72,17)" rx="2" ry="2" />
+<text  x="339.20" y="559.5" ></text>
+</g>
+<g >
+<title>__schedule (130,698,507 samples, 0.11%)</title><rect x="421.0" y="597" width="1.2" height="15.0" fill="rgb(240,113,33)" rx="2" ry="2" />
+<text  x="423.96" y="607.5" ></text>
+</g>
+<g >
+<title>crypt_convert (923,290,194 samples, 0.76%)</title><rect x="169.6" y="709" width="9.0" height="15.0" fill="rgb(235,138,36)" rx="2" ry="2" />
+<text  x="172.61" y="719.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (240,171,098 samples, 0.20%)</title><rect x="1110.5" y="661" width="2.4" height="15.0" fill="rgb(224,145,35)" rx="2" ry="2" />
+<text  x="1113.54" y="671.5" ></text>
+</g>
+<g >
+<title>ktime_get (31,286,473 samples, 0.03%)</title><rect x="807.3" y="549" width="0.3" height="15.0" fill="rgb(229,204,7)" rx="2" ry="2" />
+<text  x="810.28" y="559.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (46,324,683 samples, 0.04%)</title><rect x="333.4" y="469" width="0.5" height="15.0" fill="rgb(232,5,14)" rx="2" ry="2" />
+<text  x="336.43" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (17,415,441 samples, 0.01%)</title><rect x="116.6" y="693" width="0.2" height="15.0" fill="rgb(247,6,8)" rx="2" ry="2" />
+<text  x="119.65" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_check_space (13,089,446 samples, 0.01%)</title><rect x="879.3" y="373" width="0.2" height="15.0" fill="rgb(249,158,42)" rx="2" ry="2" />
+<text  x="882.32" y="383.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,118,012,769 samples, 0.92%)</title><rect x="75.2" y="741" width="10.9" height="15.0" fill="rgb(210,99,47)" rx="2" ry="2" />
+<text  x="78.25" y="751.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (10,297,965 samples, 0.01%)</title><rect x="277.8" y="645" width="0.1" height="15.0" fill="rgb(249,177,24)" rx="2" ry="2" />
+<text  x="280.83" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (295,499,768 samples, 0.24%)</title><rect x="232.8" y="677" width="2.9" height="15.0" fill="rgb(207,10,34)" rx="2" ry="2" />
+<text  x="235.78" y="687.5" ></text>
+</g>
+<g >
+<title>sugov_update_single_freq (15,504,016 samples, 0.01%)</title><rect x="1033.3" y="549" width="0.1" height="15.0" fill="rgb(249,20,13)" rx="2" ry="2" />
+<text  x="1036.27" y="559.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (53,724,249 samples, 0.04%)</title><rect x="15.3" y="645" width="0.5" height="15.0" fill="rgb(245,36,39)" rx="2" ry="2" />
+<text  x="18.30" y="655.5" ></text>
+</g>
+<g >
+<title>kthread (1,118,012,769 samples, 0.92%)</title><rect x="75.2" y="773" width="10.9" height="15.0" fill="rgb(211,1,18)" rx="2" ry="2" />
+<text  x="78.25" y="783.5" ></text>
+</g>
+<g >
+<title>inet6_csk_route_socket (10,587,648 samples, 0.01%)</title><rect x="408.2" y="277" width="0.1" height="15.0" fill="rgb(252,192,36)" rx="2" ry="2" />
+<text  x="411.19" y="287.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (32,896,164 samples, 0.03%)</title><rect x="337.3" y="533" width="0.3" height="15.0" fill="rgb(221,84,6)" rx="2" ry="2" />
+<text  x="340.29" y="543.5" ></text>
+</g>
+<g >
+<title>generic_write_end (213,334,359 samples, 0.18%)</title><rect x="443.0" y="581" width="2.1" height="15.0" fill="rgb(216,29,53)" rx="2" ry="2" />
+<text  x="446.04" y="591.5" ></text>
+</g>
+<g >
+<title>common_interrupt (17,325,869 samples, 0.01%)</title><rect x="394.7" y="517" width="0.2" height="15.0" fill="rgb(216,132,4)" rx="2" ry="2" />
+<text  x="397.75" y="527.5" ></text>
+</g>
+<g >
+<title>[perf] (177,335,028 samples, 0.15%)</title><rect x="397.3" y="629" width="1.7" height="15.0" fill="rgb(242,211,24)" rx="2" ry="2" />
+<text  x="400.25" y="639.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (60,229,215 samples, 0.05%)</title><rect x="401.5" y="421" width="0.6" height="15.0" fill="rgb(253,188,48)" rx="2" ry="2" />
+<text  x="404.50" y="431.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irq (21,051,238 samples, 0.02%)</title><rect x="352.6" y="517" width="0.2" height="15.0" fill="rgb(225,180,30)" rx="2" ry="2" />
+<text  x="355.61" y="527.5" ></text>
+</g>
+<g >
+<title>futex_setup_timer (14,216,563 samples, 0.01%)</title><rect x="549.9" y="581" width="0.1" height="15.0" fill="rgb(222,112,18)" rx="2" ry="2" />
+<text  x="552.91" y="591.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (10,731,802 samples, 0.01%)</title><rect x="1185.5" y="709" width="0.1" height="15.0" fill="rgb(208,221,46)" rx="2" ry="2" />
+<text  x="1188.50" y="719.5" ></text>
+</g>
+<g >
+<title>cpuidle_reflect (58,895,681 samples, 0.05%)</title><rect x="1098.1" y="725" width="0.6" height="15.0" fill="rgb(224,195,10)" rx="2" ry="2" />
+<text  x="1101.09" y="735.5" ></text>
+</g>
+<g >
+<title>read_tsc (23,837,397 samples, 0.02%)</title><rect x="916.6" y="597" width="0.2" height="15.0" fill="rgb(224,9,9)" rx="2" ry="2" />
+<text  x="919.56" y="607.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (33,841,605 samples, 0.03%)</title><rect x="398.6" y="485" width="0.4" height="15.0" fill="rgb(252,161,16)" rx="2" ry="2" />
+<text  x="401.63" y="495.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (15,123,572 samples, 0.01%)</title><rect x="418.7" y="693" width="0.2" height="15.0" fill="rgb(253,75,37)" rx="2" ry="2" />
+<text  x="421.74" y="703.5" ></text>
+</g>
+<g >
+<title>timerqueue_del (22,502,600 samples, 0.02%)</title><rect x="365.3" y="437" width="0.3" height="15.0" fill="rgb(217,73,35)" rx="2" ry="2" />
+<text  x="368.33" y="447.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (14,840,712 samples, 0.01%)</title><rect x="1033.1" y="549" width="0.2" height="15.0" fill="rgb(237,209,19)" rx="2" ry="2" />
+<text  x="1036.12" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (155,003,790 samples, 0.13%)</title><rect x="22.8" y="661" width="1.5" height="15.0" fill="rgb(235,41,44)" rx="2" ry="2" />
+<text  x="25.80" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (21,096,784 samples, 0.02%)</title><rect x="385.8" y="581" width="0.2" height="15.0" fill="rgb(250,160,49)" rx="2" ry="2" />
+<text  x="388.84" y="591.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_uncharge_skmem (61,548,896 samples, 0.05%)</title><rect x="302.0" y="389" width="0.6" height="15.0" fill="rgb(254,99,12)" rx="2" ry="2" />
+<text  x="305.00" y="399.5" ></text>
+</g>
+<g >
+<title>update_load_avg (14,476,089 samples, 0.01%)</title><rect x="551.3" y="501" width="0.2" height="15.0" fill="rgb(217,117,18)" rx="2" ry="2" />
+<text  x="554.32" y="511.5" ></text>
+</g>
+<g >
+<title>perf_adjust_freq_unthr_context (20,825,763 samples, 0.02%)</title><rect x="543.6" y="501" width="0.2" height="15.0" fill="rgb(228,69,45)" rx="2" ry="2" />
+<text  x="546.62" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (748,734,637 samples, 0.62%)</title><rect x="879.5" y="373" width="7.2" height="15.0" fill="rgb(207,122,40)" rx="2" ry="2" />
+<text  x="882.45" y="383.5" ></text>
+</g>
+<g >
+<title>__do_softirq (5,046,797,659 samples, 4.16%)</title><rect x="858.5" y="645" width="49.1" height="15.0" fill="rgb(205,144,13)" rx="2" ry="2" />
+<text  x="861.45" y="655.5" >__do..</text>
+</g>
+<g >
+<title>copy_user_generic_string (65,892,993 samples, 0.05%)</title><rect x="351.7" y="517" width="0.7" height="15.0" fill="rgb(221,33,8)" rx="2" ry="2" />
+<text  x="354.75" y="527.5" ></text>
+</g>
+<g >
+<title>ip6t_do_table (27,715,742 samples, 0.02%)</title><rect x="391.9" y="469" width="0.3" height="15.0" fill="rgb(237,161,45)" rx="2" ry="2" />
+<text  x="394.89" y="479.5" ></text>
+</g>
+<g >
+<title>scan (77,432,382 samples, 0.06%)</title><rect x="553.3" y="805" width="0.8" height="15.0" fill="rgb(217,104,9)" rx="2" ry="2" />
+<text  x="556.30" y="815.5" ></text>
+</g>
+<g >
+<title>timerqueue_add (10,882,809 samples, 0.01%)</title><rect x="1187.1" y="677" width="0.1" height="15.0" fill="rgb(223,196,42)" rx="2" ry="2" />
+<text  x="1190.08" y="687.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (81,158,557 samples, 0.07%)</title><rect x="263.6" y="693" width="0.8" height="15.0" fill="rgb(240,126,5)" rx="2" ry="2" />
+<text  x="266.59" y="703.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,097,282,025 samples, 0.91%)</title><rect x="158.9" y="725" width="10.7" height="15.0" fill="rgb(232,141,45)" rx="2" ry="2" />
+<text  x="161.87" y="735.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (11,009,384 samples, 0.01%)</title><rect x="928.0" y="613" width="0.1" height="15.0" fill="rgb(240,201,13)" rx="2" ry="2" />
+<text  x="930.96" y="623.5" ></text>
+</g>
+<g >
+<title>do_idle (63,956,741,329 samples, 52.76%)</title><rect x="566.8" y="741" width="622.5" height="15.0" fill="rgb(249,102,14)" rx="2" ry="2" />
+<text  x="569.78" y="751.5" >do_idle</text>
+</g>
+<g >
+<title>menu_select (33,807,828 samples, 0.03%)</title><rect x="566.0" y="693" width="0.4" height="15.0" fill="rgb(238,141,15)" rx="2" ry="2" />
+<text  x="569.03" y="703.5" ></text>
+</g>
+<g >
+<title>sg_init_table (13,968,861 samples, 0.01%)</title><rect x="236.7" y="693" width="0.1" height="15.0" fill="rgb(246,217,11)" rx="2" ry="2" />
+<text  x="239.65" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (27,666,775 samples, 0.02%)</title><rect x="915.9" y="629" width="0.2" height="15.0" fill="rgb(252,121,17)" rx="2" ry="2" />
+<text  x="918.87" y="639.5" ></text>
+</g>
+<g >
+<title>inflate (9,801,554,399 samples, 8.09%)</title><rect x="450.7" y="693" width="95.4" height="15.0" fill="rgb(222,2,24)" rx="2" ry="2" />
+<text  x="453.72" y="703.5" >inflate</text>
+</g>
+<g >
+<title>update_curr (23,479,307 samples, 0.02%)</title><rect x="551.1" y="501" width="0.2" height="15.0" fill="rgb(239,42,38)" rx="2" ry="2" />
+<text  x="554.09" y="511.5" ></text>
+</g>
+<g >
+<title>sk_reset_timer (55,519,219 samples, 0.05%)</title><rect x="877.5" y="389" width="0.6" height="15.0" fill="rgb(247,22,34)" rx="2" ry="2" />
+<text  x="880.55" y="399.5" ></text>
+</g>
+<g >
+<title>default_send_IPI_single_phys (25,649,341 samples, 0.02%)</title><rect x="885.3" y="261" width="0.3" height="15.0" fill="rgb(209,13,49)" rx="2" ry="2" />
+<text  x="888.30" y="271.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irq (21,817,829 samples, 0.02%)</title><rect x="345.9" y="501" width="0.2" height="15.0" fill="rgb(221,68,38)" rx="2" ry="2" />
+<text  x="348.88" y="511.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (126,607,813 samples, 0.10%)</title><rect x="1186.2" y="709" width="1.2" height="15.0" fill="rgb(254,169,35)" rx="2" ry="2" />
+<text  x="1189.16" y="719.5" ></text>
+</g>
+<g >
+<title>iommu_dma_map_sg (32,890,753 samples, 0.03%)</title><rect x="10.3" y="597" width="0.4" height="15.0" fill="rgb(206,180,44)" rx="2" ry="2" />
+<text  x="13.33" y="607.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (3,144,301,624 samples, 2.59%)</title><rect x="354.0" y="597" width="30.6" height="15.0" fill="rgb(252,100,48)" rx="2" ry="2" />
+<text  x="357.04" y="607.5" >[l..</text>
+</g>
+<g >
+<title>cpuidle_not_available (50,825,886 samples, 0.04%)</title><rect x="1097.6" y="725" width="0.5" height="15.0" fill="rgb(210,168,39)" rx="2" ry="2" />
+<text  x="1100.59" y="735.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (12,950,783 samples, 0.01%)</title><rect x="395.6" y="549" width="0.2" height="15.0" fill="rgb(228,83,7)" rx="2" ry="2" />
+<text  x="398.64" y="559.5" ></text>
+</g>
+<g >
+<title>mod_objcg_state (19,055,217 samples, 0.02%)</title><rect x="430.0" y="469" width="0.2" height="15.0" fill="rgb(222,196,52)" rx="2" ry="2" />
+<text  x="433.04" y="479.5" ></text>
+</g>
+<g >
+<title>__kmalloc_node_track_caller (26,604,348 samples, 0.02%)</title><rect x="303.7" y="373" width="0.3" height="15.0" fill="rgb(205,37,8)" rx="2" ry="2" />
+<text  x="306.70" y="383.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,116,466,139 samples, 0.92%)</title><rect x="54.5" y="709" width="10.9" height="15.0" fill="rgb(214,198,30)" rx="2" ry="2" />
+<text  x="57.49" y="719.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (15,312,051 samples, 0.01%)</title><rect x="546.9" y="549" width="0.1" height="15.0" fill="rgb(240,30,34)" rx="2" ry="2" />
+<text  x="549.87" y="559.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (13,069,575 samples, 0.01%)</title><rect x="65.4" y="677" width="0.1" height="15.0" fill="rgb(245,148,17)" rx="2" ry="2" />
+<text  x="68.37" y="687.5" ></text>
+</g>
+<g >
+<title>avc_has_perm (27,670,135 samples, 0.02%)</title><rect x="324.3" y="405" width="0.3" height="15.0" fill="rgb(236,68,28)" rx="2" ry="2" />
+<text  x="327.30" y="415.5" ></text>
+</g>
+<g >
+<title>ppoll (393,314,508 samples, 0.32%)</title><rect x="419.2" y="709" width="3.8" height="15.0" fill="rgb(243,8,11)" rx="2" ry="2" />
+<text  x="422.21" y="719.5" ></text>
+</g>
+<g >
+<title>ktime_get (14,504,035 samples, 0.01%)</title><rect x="912.3" y="597" width="0.1" height="15.0" fill="rgb(220,40,47)" rx="2" ry="2" />
+<text  x="915.28" y="607.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (3,866,971,490 samples, 3.19%)</title><rect x="865.7" y="469" width="37.7" height="15.0" fill="rgb(220,172,23)" rx="2" ry="2" />
+<text  x="868.74" y="479.5" >__n..</text>
+</g>
+<g >
+<title>arch_cpu_idle_enter (57,374,857 samples, 0.05%)</title><rect x="571.6" y="725" width="0.6" height="15.0" fill="rgb(227,139,7)" rx="2" ry="2" />
+<text  x="574.64" y="735.5" ></text>
+</g>
+<g >
+<title>br_dev_queue_push_xmit (358,336,977 samples, 0.30%)</title><rect x="308.1" y="309" width="3.5" height="15.0" fill="rgb(224,69,19)" rx="2" ry="2" />
+<text  x="311.09" y="319.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (14,035,572 samples, 0.01%)</title><rect x="284.0" y="613" width="0.2" height="15.0" fill="rgb(209,109,36)" rx="2" ry="2" />
+<text  x="287.03" y="623.5" ></text>
+</g>
+<g >
+<title>do_futex (62,876,679 samples, 0.05%)</title><rect x="553.4" y="725" width="0.6" height="15.0" fill="rgb(218,106,50)" rx="2" ry="2" />
+<text  x="556.38" y="735.5" ></text>
+</g>
+<g >
+<title>ip_output (128,845,080 samples, 0.11%)</title><rect x="318.3" y="373" width="1.3" height="15.0" fill="rgb(234,147,34)" rx="2" ry="2" />
+<text  x="321.33" y="383.5" ></text>
+</g>
+<g >
+<title>record_times (15,713,889 samples, 0.01%)</title><rect x="373.4" y="405" width="0.2" height="15.0" fill="rgb(212,103,22)" rx="2" ry="2" />
+<text  x="376.44" y="415.5" ></text>
+</g>
+<g >
+<title>dmcrypt_write (59,542,910 samples, 0.05%)</title><rect x="10.1" y="757" width="0.6" height="15.0" fill="rgb(216,225,11)" rx="2" ry="2" />
+<text  x="13.14" y="767.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,054,676,528 samples, 0.87%)</title><rect x="33.0" y="725" width="10.3" height="15.0" fill="rgb(236,24,49)" rx="2" ry="2" />
+<text  x="36.00" y="735.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (44,637,314 samples, 0.04%)</title><rect x="414.8" y="469" width="0.4" height="15.0" fill="rgb(249,220,37)" rx="2" ry="2" />
+<text  x="417.78" y="479.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (94,712,150 samples, 0.08%)</title><rect x="390.4" y="325" width="1.0" height="15.0" fill="rgb(246,186,23)" rx="2" ry="2" />
+<text  x="393.43" y="335.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0.isra.0 (201,482,989 samples, 0.17%)</title><rect x="443.1" y="565" width="2.0" height="15.0" fill="rgb(211,9,1)" rx="2" ry="2" />
+<text  x="446.13" y="575.5" ></text>
+</g>
+<g >
+<title>handle_irq_event (22,228,267 samples, 0.02%)</title><rect x="563.4" y="597" width="0.2" height="15.0" fill="rgb(208,175,23)" rx="2" ry="2" />
+<text  x="566.42" y="607.5" ></text>
+</g>
+<g >
+<title>hrtimer_update_next_event (13,702,416 samples, 0.01%)</title><rect x="1183.6" y="645" width="0.1" height="15.0" fill="rgb(225,197,31)" rx="2" ry="2" />
+<text  x="1186.57" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (115,859,827 samples, 0.10%)</title><rect x="111.6" y="677" width="1.1" height="15.0" fill="rgb(236,92,4)" rx="2" ry="2" />
+<text  x="114.57" y="687.5" ></text>
+</g>
+<g >
+<title>sg_init_table (10,939,332 samples, 0.01%)</title><rect x="97.0" y="693" width="0.1" height="15.0" fill="rgb(251,212,10)" rx="2" ry="2" />
+<text  x="99.97" y="703.5" ></text>
+</g>
+<g >
+<title>wb_workfn (353,132,263 samples, 0.29%)</title><rect x="113.2" y="725" width="3.4" height="15.0" fill="rgb(246,109,40)" rx="2" ry="2" />
+<text  x="116.18" y="735.5" ></text>
+</g>
+<g >
+<title>xts_crypt (113,641,084 samples, 0.09%)</title><rect x="119.9" y="661" width="1.1" height="15.0" fill="rgb(211,65,17)" rx="2" ry="2" />
+<text  x="122.90" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (331,519,575 samples, 0.27%)</title><rect x="293.0" y="389" width="3.2" height="15.0" fill="rgb(250,26,26)" rx="2" ry="2" />
+<text  x="296.00" y="399.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (374,254,729 samples, 0.31%)</title><rect x="844.4" y="661" width="3.6" height="15.0" fill="rgb(238,110,34)" rx="2" ry="2" />
+<text  x="847.39" y="671.5" ></text>
+</g>
+<g >
+<title>aio_bh_poll (59,003,840 samples, 0.05%)</title><rect x="417.8" y="661" width="0.6" height="15.0" fill="rgb(215,228,33)" rx="2" ry="2" />
+<text  x="420.82" y="671.5" ></text>
+</g>
+<g >
+<title>amd_iommu_unmap_pages (30,436,753 samples, 0.03%)</title><rect x="814.7" y="517" width="0.3" height="15.0" fill="rgb(245,94,32)" rx="2" ry="2" />
+<text  x="817.71" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (260,509,943 samples, 0.21%)</title><rect x="37.2" y="677" width="2.6" height="15.0" fill="rgb(253,163,18)" rx="2" ry="2" />
+<text  x="40.25" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (69,074,332 samples, 0.06%)</title><rect x="553.4" y="757" width="0.6" height="15.0" fill="rgb(231,171,40)" rx="2" ry="2" />
+<text  x="556.37" y="767.5" ></text>
+</g>
+<g >
+<title>ipv6_rcv (74,916,050 samples, 0.06%)</title><rect x="410.0" y="117" width="0.7" height="15.0" fill="rgb(210,183,33)" rx="2" ry="2" />
+<text  x="413.01" y="127.5" ></text>
+</g>
+<g >
+<title>futex_wait_setup (14,599,634 samples, 0.01%)</title><rect x="552.3" y="581" width="0.1" height="15.0" fill="rgb(216,74,25)" rx="2" ry="2" />
+<text  x="555.27" y="591.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (27,109,347 samples, 0.02%)</title><rect x="403.1" y="293" width="0.2" height="15.0" fill="rgb(226,98,37)" rx="2" ry="2" />
+<text  x="406.07" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (21,083,950 samples, 0.02%)</title><rect x="398.7" y="437" width="0.2" height="15.0" fill="rgb(213,173,51)" rx="2" ry="2" />
+<text  x="401.67" y="447.5" ></text>
+</g>
+<g >
+<title>call_timer_fn (72,320,099 samples, 0.06%)</title><rect x="906.9" y="597" width="0.7" height="15.0" fill="rgb(217,124,13)" rx="2" ry="2" />
+<text  x="909.87" y="607.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (17,844,759 samples, 0.01%)</title><rect x="808.8" y="325" width="0.2" height="15.0" fill="rgb(252,126,13)" rx="2" ry="2" />
+<text  x="811.81" y="335.5" ></text>
+</g>
+<g >
+<title>__iommu_dma_unmap (80,150,936 samples, 0.07%)</title><rect x="814.5" y="549" width="0.8" height="15.0" fill="rgb(228,53,7)" rx="2" ry="2" />
+<text  x="817.54" y="559.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (61,702,984 samples, 0.05%)</title><rect x="550.9" y="517" width="0.6" height="15.0" fill="rgb(208,222,21)" rx="2" ry="2" />
+<text  x="553.88" y="527.5" ></text>
+</g>
+<g >
+<title>kthread (903,220,189 samples, 0.75%)</title><rect x="272.0" y="773" width="8.8" height="15.0" fill="rgb(229,225,44)" rx="2" ry="2" />
+<text  x="275.05" y="783.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (935,288,074 samples, 0.77%)</title><rect x="169.6" y="725" width="9.1" height="15.0" fill="rgb(241,118,49)" rx="2" ry="2" />
+<text  x="172.60" y="735.5" ></text>
+</g>
+<g >
+<title>alloc_buffer_head (13,512,881 samples, 0.01%)</title><rect x="397.6" y="437" width="0.1" height="15.0" fill="rgb(232,208,31)" rx="2" ry="2" />
+<text  x="400.59" y="447.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (204,030,866 samples, 0.17%)</title><rect x="393.1" y="549" width="2.0" height="15.0" fill="rgb(233,112,51)" rx="2" ry="2" />
+<text  x="396.09" y="559.5" ></text>
+</g>
+<g >
+<title>newidle_balance (48,119,436 samples, 0.04%)</title><rect x="371.1" y="421" width="0.5" height="15.0" fill="rgb(214,87,36)" rx="2" ry="2" />
+<text  x="374.09" y="431.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (333,194,800 samples, 0.27%)</title><rect x="400.2" y="645" width="3.2" height="15.0" fill="rgb(238,65,51)" rx="2" ry="2" />
+<text  x="403.16" y="655.5" ></text>
+</g>
+<g >
+<title>dql_completed (12,844,872 samples, 0.01%)</title><rect x="802.8" y="581" width="0.1" height="15.0" fill="rgb(236,86,49)" rx="2" ry="2" />
+<text  x="805.76" y="591.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (142,243,955 samples, 0.12%)</title><rect x="564.2" y="645" width="1.4" height="15.0" fill="rgb(233,106,3)" rx="2" ry="2" />
+<text  x="567.19" y="655.5" ></text>
+</g>
+<g >
+<title>__poll (884,739,925 samples, 0.73%)</title><rect x="325.4" y="533" width="8.6" height="15.0" fill="rgb(210,219,12)" rx="2" ry="2" />
+<text  x="328.40" y="543.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_charge_skmem (72,587,675 samples, 0.06%)</title><rect x="879.8" y="357" width="0.7" height="15.0" fill="rgb(235,107,23)" rx="2" ry="2" />
+<text  x="882.82" y="367.5" ></text>
+</g>
+<g >
+<title>iommu_dma_sync_single_for_cpu (16,673,653 samples, 0.01%)</title><rect x="803.1" y="581" width="0.2" height="15.0" fill="rgb(225,204,41)" rx="2" ry="2" />
+<text  x="806.13" y="591.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (19,913,318 samples, 0.02%)</title><rect x="395.6" y="565" width="0.2" height="15.0" fill="rgb(223,148,5)" rx="2" ry="2" />
+<text  x="398.62" y="575.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (710,581,354 samples, 0.59%)</title><rect x="305.7" y="357" width="6.9" height="15.0" fill="rgb(210,225,23)" rx="2" ry="2" />
+<text  x="308.71" y="367.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock_bh (43,099,128 samples, 0.04%)</title><rect x="904.6" y="485" width="0.4" height="15.0" fill="rgb(221,185,13)" rx="2" ry="2" />
+<text  x="907.57" y="495.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (1,071,466,528 samples, 0.88%)</title><rect x="386.3" y="677" width="10.4" height="15.0" fill="rgb(251,30,15)" rx="2" ry="2" />
+<text  x="389.27" y="687.5" ></text>
+</g>
+<g >
+<title>thread_pool_submit_co (24,755,463 samples, 0.02%)</title><rect x="402.2" y="581" width="0.2" height="15.0" fill="rgb(244,24,44)" rx="2" ry="2" />
+<text  x="405.16" y="591.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (17,000,881 samples, 0.01%)</title><rect x="224.0" y="693" width="0.2" height="15.0" fill="rgb(206,27,11)" rx="2" ry="2" />
+<text  x="227.04" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (37,974,596 samples, 0.03%)</title><rect x="1159.6" y="677" width="0.4" height="15.0" fill="rgb(240,18,11)" rx="2" ry="2" />
+<text  x="1162.63" y="687.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,058,003,385 samples, 0.87%)</title><rect x="148.5" y="725" width="10.3" height="15.0" fill="rgb(220,106,30)" rx="2" ry="2" />
+<text  x="151.54" y="735.5" ></text>
+</g>
+<g >
+<title>free_pcppages_bulk (17,915,538 samples, 0.01%)</title><rect x="546.6" y="533" width="0.2" height="15.0" fill="rgb(251,71,51)" rx="2" ry="2" />
+<text  x="549.59" y="543.5" ></text>
+</g>
+<g >
+<title>native_read_msr (16,635,986 samples, 0.01%)</title><rect x="913.9" y="533" width="0.1" height="15.0" fill="rgb(252,137,38)" rx="2" ry="2" />
+<text  x="916.87" y="543.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (29,223,461 samples, 0.02%)</title><rect x="65.5" y="709" width="0.3" height="15.0" fill="rgb(218,126,42)" rx="2" ry="2" />
+<text  x="68.53" y="719.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (28,818,452 samples, 0.02%)</title><rect x="398.0" y="453" width="0.2" height="15.0" fill="rgb(242,70,44)" rx="2" ry="2" />
+<text  x="400.96" y="463.5" ></text>
+</g>
+<g >
+<title>update_curr (85,981,951 samples, 0.07%)</title><rect x="369.0" y="405" width="0.9" height="15.0" fill="rgb(253,93,42)" rx="2" ry="2" />
+<text  x="372.04" y="415.5" ></text>
+</g>
+<g >
+<title>[perf] (192,192,189 samples, 0.16%)</title><rect x="397.2" y="693" width="1.9" height="15.0" fill="rgb(241,93,53)" rx="2" ry="2" />
+<text  x="400.23" y="703.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (154,802,889 samples, 0.13%)</title><rect x="293.3" y="325" width="1.5" height="15.0" fill="rgb(234,8,5)" rx="2" ry="2" />
+<text  x="296.25" y="335.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (83,280,436 samples, 0.07%)</title><rect x="823.3" y="629" width="0.8" height="15.0" fill="rgb(207,228,26)" rx="2" ry="2" />
+<text  x="826.28" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (125,681,193 samples, 0.10%)</title><rect x="273.5" y="661" width="1.2" height="15.0" fill="rgb(233,120,20)" rx="2" ry="2" />
+<text  x="276.52" y="671.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (1,109,351,746 samples, 0.92%)</title><rect x="1052.5" y="661" width="10.8" height="15.0" fill="rgb(210,15,44)" rx="2" ry="2" />
+<text  x="1055.50" y="671.5" ></text>
+</g>
+<g >
+<title>memset (10,385,975 samples, 0.01%)</title><rect x="169.4" y="677" width="0.1" height="15.0" fill="rgb(224,115,31)" rx="2" ry="2" />
+<text  x="172.36" y="687.5" ></text>
+</g>
+<g >
+<title>find_get_pages_range_tag (51,022,203 samples, 0.04%)</title><rect x="205.5" y="565" width="0.5" height="15.0" fill="rgb(254,107,29)" rx="2" ry="2" />
+<text  x="208.49" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (15,143,169 samples, 0.01%)</title><rect x="554.2" y="757" width="0.1" height="15.0" fill="rgb(254,53,32)" rx="2" ry="2" />
+<text  x="557.19" y="767.5" ></text>
+</g>
+<g >
+<title>flush_sigqueue_mask (21,837,591 samples, 0.02%)</title><rect x="346.1" y="501" width="0.2" height="15.0" fill="rgb(221,28,7)" rx="2" ry="2" />
+<text  x="349.09" y="511.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (13,346,304 samples, 0.01%)</title><rect x="552.6" y="613" width="0.1" height="15.0" fill="rgb(207,11,44)" rx="2" ry="2" />
+<text  x="555.57" y="623.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (12,257,307 samples, 0.01%)</title><rect x="563.7" y="661" width="0.1" height="15.0" fill="rgb(233,205,3)" rx="2" ry="2" />
+<text  x="566.71" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (16,203,211 samples, 0.01%)</title><rect x="772.1" y="613" width="0.2" height="15.0" fill="rgb(241,47,16)" rx="2" ry="2" />
+<text  x="775.12" y="623.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (103,209,858 samples, 0.09%)</title><rect x="402.4" y="581" width="1.0" height="15.0" fill="rgb(253,195,25)" rx="2" ry="2" />
+<text  x="405.40" y="591.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (29,223,461 samples, 0.02%)</title><rect x="65.5" y="693" width="0.3" height="15.0" fill="rgb(217,44,50)" rx="2" ry="2" />
+<text  x="68.53" y="703.5" ></text>
+</g>
+<g >
+<title>pagecache_get_page (825,114,283 samples, 0.68%)</title><rect x="434.2" y="565" width="8.0" height="15.0" fill="rgb(246,198,37)" rx="2" ry="2" />
+<text  x="437.18" y="575.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (755,451,458 samples, 0.62%)</title><rect x="264.7" y="789" width="7.3" height="15.0" fill="rgb(236,112,38)" rx="2" ry="2" />
+<text  x="267.69" y="799.5" ></text>
+</g>
+<g >
+<title>nvme_poll_cq (19,356,675 samples, 0.02%)</title><rect x="761.6" y="581" width="0.2" height="15.0" fill="rgb(253,73,7)" rx="2" ry="2" />
+<text  x="764.61" y="591.5" ></text>
+</g>
+<g >
+<title>__fopen_internal (12,923,818 samples, 0.01%)</title><rect x="1189.6" y="725" width="0.1" height="15.0" fill="rgb(233,121,11)" rx="2" ry="2" />
+<text  x="1192.60" y="735.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (199,677,388 samples, 0.16%)</title><rect x="400.2" y="565" width="1.9" height="15.0" fill="rgb(225,224,23)" rx="2" ry="2" />
+<text  x="403.19" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_es_insert_delayed_block (137,482,023 samples, 0.11%)</title><rect x="432.0" y="533" width="1.4" height="15.0" fill="rgb(219,2,14)" rx="2" ry="2" />
+<text  x="435.04" y="543.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (22,117,361 samples, 0.02%)</title><rect x="324.9" y="469" width="0.2" height="15.0" fill="rgb(214,74,39)" rx="2" ry="2" />
+<text  x="327.93" y="479.5" ></text>
+</g>
+<g >
+<title>ttwu_queue_wakelist (91,423,368 samples, 0.08%)</title><rect x="885.0" y="277" width="0.9" height="15.0" fill="rgb(225,51,21)" rx="2" ry="2" />
+<text  x="887.99" y="287.5" ></text>
+</g>
+<g >
+<title>do_softirq.part.0 (351,859,557 samples, 0.29%)</title><rect x="388.2" y="437" width="3.5" height="15.0" fill="rgb(229,207,5)" rx="2" ry="2" />
+<text  x="391.23" y="447.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (13,914,478 samples, 0.01%)</title><rect x="430.4" y="469" width="0.2" height="15.0" fill="rgb(232,11,6)" rx="2" ry="2" />
+<text  x="433.42" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_end_io_rsv_work (142,236,507 samples, 0.12%)</title><rect x="107.2" y="725" width="1.3" height="15.0" fill="rgb(242,120,31)" rx="2" ry="2" />
+<text  x="110.16" y="735.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (24,945,561 samples, 0.02%)</title><rect x="374.3" y="437" width="0.2" height="15.0" fill="rgb(230,1,34)" rx="2" ry="2" />
+<text  x="377.30" y="447.5" ></text>
+</g>
+<g >
+<title>sysvec_call_function_single (953,448,084 samples, 0.79%)</title><rect x="1028.5" y="677" width="9.3" height="15.0" fill="rgb(226,222,20)" rx="2" ry="2" />
+<text  x="1031.54" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (288,482,495 samples, 0.24%)</title><rect x="18.6" y="677" width="2.9" height="15.0" fill="rgb(230,97,2)" rx="2" ry="2" />
+<text  x="21.65" y="687.5" ></text>
+</g>
+<g >
+<title>__sys_recvfrom (2,720,424,454 samples, 2.24%)</title><rect x="298.3" y="469" width="26.5" height="15.0" fill="rgb(221,6,0)" rx="2" ry="2" />
+<text  x="301.31" y="479.5" >_..</text>
+</g>
+<g >
+<title>sched_idle_set_state (353,205,494 samples, 0.29%)</title><rect x="1093.8" y="693" width="3.5" height="15.0" fill="rgb(242,3,44)" rx="2" ry="2" />
+<text  x="1096.82" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (12,740,305 samples, 0.01%)</title><rect x="1164.0" y="645" width="0.1" height="15.0" fill="rgb(253,90,28)" rx="2" ry="2" />
+<text  x="1167.01" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (161,842,850 samples, 0.13%)</title><rect x="256.1" y="661" width="1.5" height="15.0" fill="rgb(229,124,52)" rx="2" ry="2" />
+<text  x="259.06" y="671.5" ></text>
+</g>
+<g >
+<title>__smp_call_single_queue (18,365,395 samples, 0.02%)</title><rect x="885.1" y="261" width="0.2" height="15.0" fill="rgb(211,88,2)" rx="2" ry="2" />
+<text  x="888.09" y="271.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (179,336,969 samples, 0.15%)</title><rect x="315.3" y="325" width="1.7" height="15.0" fill="rgb(231,221,15)" rx="2" ry="2" />
+<text  x="318.29" y="335.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (108,071,606 samples, 0.09%)</title><rect x="548.0" y="661" width="1.0" height="15.0" fill="rgb(233,92,54)" rx="2" ry="2" />
+<text  x="550.97" y="671.5" ></text>
+</g>
+<g >
+<title>__iommu_unmap (41,793,319 samples, 0.03%)</title><rect x="814.7" y="533" width="0.4" height="15.0" fill="rgb(253,134,52)" rx="2" ry="2" />
+<text  x="817.65" y="543.5" ></text>
+</g>
+<g >
+<title>sk_filter_trim_cap (112,418,116 samples, 0.09%)</title><rect x="873.2" y="405" width="1.1" height="15.0" fill="rgb(234,18,27)" rx="2" ry="2" />
+<text  x="876.19" y="415.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (189,825,443 samples, 0.16%)</title><rect x="381.6" y="501" width="1.9" height="15.0" fill="rgb(210,160,48)" rx="2" ry="2" />
+<text  x="384.64" y="511.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (14,442,360 samples, 0.01%)</title><rect x="148.7" y="693" width="0.1" height="15.0" fill="rgb(215,166,31)" rx="2" ry="2" />
+<text  x="151.68" y="703.5" ></text>
+</g>
+<g >
+<title>crypt_convert (903,554,729 samples, 0.75%)</title><rect x="237.0" y="709" width="8.8" height="15.0" fill="rgb(217,108,12)" rx="2" ry="2" />
+<text  x="240.02" y="719.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (118,594,028 samples, 0.10%)</title><rect x="875.3" y="357" width="1.2" height="15.0" fill="rgb(242,52,49)" rx="2" ry="2" />
+<text  x="878.32" y="367.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (55,543,527 samples, 0.05%)</title><rect x="401.5" y="357" width="0.6" height="15.0" fill="rgb(250,39,12)" rx="2" ry="2" />
+<text  x="404.52" y="367.5" ></text>
+</g>
+<g >
+<title>update_load_avg (82,342,669 samples, 0.07%)</title><rect x="1116.4" y="629" width="0.8" height="15.0" fill="rgb(210,43,9)" rx="2" ry="2" />
+<text  x="1119.36" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,897,856 samples, 0.01%)</title><rect x="401.4" y="453" width="0.1" height="15.0" fill="rgb(251,71,16)" rx="2" ry="2" />
+<text  x="404.35" y="463.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (545,190,554 samples, 0.45%)</title><rect x="179.0" y="693" width="5.3" height="15.0" fill="rgb(230,206,16)" rx="2" ry="2" />
+<text  x="182.04" y="703.5" ></text>
+</g>
+<g >
+<title>kthread (755,451,458 samples, 0.62%)</title><rect x="264.7" y="773" width="7.3" height="15.0" fill="rgb(236,197,19)" rx="2" ry="2" />
+<text  x="267.69" y="783.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (72,238,708 samples, 0.06%)</title><rect x="883.6" y="229" width="0.7" height="15.0" fill="rgb(219,76,54)" rx="2" ry="2" />
+<text  x="886.64" y="239.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (68,793,755 samples, 0.06%)</title><rect x="147.6" y="693" width="0.6" height="15.0" fill="rgb(206,219,43)" rx="2" ry="2" />
+<text  x="150.57" y="703.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (15,900,510 samples, 0.01%)</title><rect x="858.8" y="629" width="0.1" height="15.0" fill="rgb(211,40,16)" rx="2" ry="2" />
+<text  x="861.79" y="639.5" ></text>
+</g>
+<g >
+<title>__xfrm_policy_check2.constprop.0 (15,795,508 samples, 0.01%)</title><rect x="872.7" y="405" width="0.2" height="15.0" fill="rgb(214,227,34)" rx="2" ry="2" />
+<text  x="875.73" y="415.5" ></text>
+</g>
+<g >
+<title>read_tsc (10,882,175 samples, 0.01%)</title><rect x="558.6" y="789" width="0.1" height="15.0" fill="rgb(219,102,7)" rx="2" ry="2" />
+<text  x="561.57" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (154,049,832 samples, 0.13%)</title><rect x="169.8" y="661" width="1.5" height="15.0" fill="rgb(244,93,19)" rx="2" ry="2" />
+<text  x="172.81" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (821,493,093 samples, 0.68%)</title><rect x="237.2" y="693" width="8.0" height="15.0" fill="rgb(241,228,39)" rx="2" ry="2" />
+<text  x="240.15" y="703.5" ></text>
+</g>
+<g >
+<title>psi_group_change (41,395,146 samples, 0.03%)</title><rect x="884.4" y="229" width="0.4" height="15.0" fill="rgb(240,25,44)" rx="2" ry="2" />
+<text  x="887.43" y="239.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (270,138,554 samples, 0.22%)</title><rect x="220.7" y="677" width="2.6" height="15.0" fill="rgb(211,164,41)" rx="2" ry="2" />
+<text  x="223.68" y="687.5" ></text>
+</g>
+<g >
+<title>ktime_get (46,892,008 samples, 0.04%)</title><rect x="806.4" y="533" width="0.4" height="15.0" fill="rgb(207,99,34)" rx="2" ry="2" />
+<text  x="809.36" y="543.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (15,517,294 samples, 0.01%)</title><rect x="416.2" y="709" width="0.2" height="15.0" fill="rgb(213,85,50)" rx="2" ry="2" />
+<text  x="419.21" y="719.5" ></text>
+</g>
+<g >
+<title>__es_remove_extent (36,958,576 samples, 0.03%)</title><rect x="432.8" y="517" width="0.4" height="15.0" fill="rgb(210,96,10)" rx="2" ry="2" />
+<text  x="435.84" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (715,069,282 samples, 0.59%)</title><rect x="206.4" y="693" width="7.0" height="15.0" fill="rgb(235,195,27)" rx="2" ry="2" />
+<text  x="209.42" y="703.5" ></text>
+</g>
+<g >
+<title>vfs_write (173,685,987 samples, 0.14%)</title><rect x="397.3" y="549" width="1.7" height="15.0" fill="rgb(205,155,15)" rx="2" ry="2" />
+<text  x="400.28" y="559.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (29,509,258 samples, 0.02%)</title><rect x="880.2" y="341" width="0.3" height="15.0" fill="rgb(206,167,35)" rx="2" ry="2" />
+<text  x="883.24" y="351.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (213,361,847 samples, 0.18%)</title><rect x="408.7" y="229" width="2.1" height="15.0" fill="rgb(247,29,26)" rx="2" ry="2" />
+<text  x="411.72" y="239.5" ></text>
+</g>
+<g >
+<title>fdb_find_rcu (46,807,718 samples, 0.04%)</title><rect x="863.7" y="469" width="0.4" height="15.0" fill="rgb(250,194,22)" rx="2" ry="2" />
+<text  x="866.65" y="479.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (333,194,800 samples, 0.27%)</title><rect x="400.2" y="661" width="3.2" height="15.0" fill="rgb(227,56,28)" rx="2" ry="2" />
+<text  x="403.16" y="671.5" ></text>
+</g>
+<g >
+<title>tick_check_oneshot_broadcast_this_cpu (28,666,788 samples, 0.02%)</title><rect x="1036.4" y="629" width="0.3" height="15.0" fill="rgb(215,113,39)" rx="2" ry="2" />
+<text  x="1039.42" y="639.5" ></text>
+</g>
+<g >
+<title>__list_add_valid (10,701,006 samples, 0.01%)</title><rect x="438.5" y="453" width="0.1" height="15.0" fill="rgb(242,8,19)" rx="2" ry="2" />
+<text  x="441.49" y="463.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (813,855,899 samples, 0.67%)</title><rect x="206.1" y="789" width="7.9" height="15.0" fill="rgb(207,207,43)" rx="2" ry="2" />
+<text  x="209.06" y="799.5" ></text>
+</g>
+<g >
+<title>check_spread.isra.0 (10,479,368 samples, 0.01%)</title><rect x="374.2" y="405" width="0.1" height="15.0" fill="rgb(205,51,49)" rx="2" ry="2" />
+<text  x="377.20" y="415.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,108,367,062 samples, 0.91%)</title><rect x="75.3" y="709" width="10.7" height="15.0" fill="rgb(225,178,43)" rx="2" ry="2" />
+<text  x="78.26" y="719.5" ></text>
+</g>
+<g >
+<title>napi_skb_cache_put (21,186,107 samples, 0.02%)</title><rect x="814.3" y="581" width="0.2" height="15.0" fill="rgb(220,224,2)" rx="2" ry="2" />
+<text  x="817.27" y="591.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (12,702,493 samples, 0.01%)</title><rect x="808.4" y="341" width="0.1" height="15.0" fill="rgb(210,138,3)" rx="2" ry="2" />
+<text  x="811.40" y="351.5" ></text>
+</g>
+<g >
+<title>rtl8169_start_xmit (31,304,097 samples, 0.03%)</title><rect x="875.9" y="229" width="0.3" height="15.0" fill="rgb(222,74,4)" rx="2" ry="2" />
+<text  x="878.88" y="239.5" ></text>
+</g>
+<g >
+<title>kthread (1,024,076,844 samples, 0.84%)</title><rect x="196.1" y="773" width="10.0" height="15.0" fill="rgb(239,210,54)" rx="2" ry="2" />
+<text  x="199.08" y="783.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (400,193,497 samples, 0.33%)</title><rect x="292.8" y="453" width="3.8" height="15.0" fill="rgb(246,50,36)" rx="2" ry="2" />
+<text  x="295.75" y="463.5" ></text>
+</g>
+<g >
+<title>__libc_sigaction (39,068,976 samples, 0.03%)</title><rect x="281.0" y="757" width="0.4" height="15.0" fill="rgb(235,160,27)" rx="2" ry="2" />
+<text  x="283.99" y="767.5" ></text>
+</g>
+<g >
+<title>fq_ring_free (14,235,989 samples, 0.01%)</title><rect x="907.4" y="565" width="0.1" height="15.0" fill="rgb(243,79,29)" rx="2" ry="2" />
+<text  x="910.39" y="575.5" ></text>
+</g>
+<g >
+<title>curl_getenv (10,724,411 samples, 0.01%)</title><rect x="339.5" y="565" width="0.1" height="15.0" fill="rgb(240,77,52)" rx="2" ry="2" />
+<text  x="342.54" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (67,021,632 samples, 0.06%)</title><rect x="179.9" y="661" width="0.7" height="15.0" fill="rgb(241,30,34)" rx="2" ry="2" />
+<text  x="182.91" y="671.5" ></text>
+</g>
+<g >
+<title>get_nohz_timer_target (16,662,207 samples, 0.01%)</title><rect x="877.8" y="357" width="0.2" height="15.0" fill="rgb(247,27,11)" rx="2" ry="2" />
+<text  x="880.81" y="367.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (34,153,025 samples, 0.03%)</title><rect x="809.5" y="421" width="0.3" height="15.0" fill="rgb(213,43,35)" rx="2" ry="2" />
+<text  x="812.48" y="431.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (57,137,437 samples, 0.05%)</title><rect x="774.4" y="613" width="0.5" height="15.0" fill="rgb(223,167,26)" rx="2" ry="2" />
+<text  x="777.37" y="623.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,130,081,586 samples, 0.93%)</title><rect x="137.5" y="757" width="11.0" height="15.0" fill="rgb(246,50,38)" rx="2" ry="2" />
+<text  x="140.52" y="767.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (30,565,587 samples, 0.03%)</title><rect x="240.0" y="629" width="0.3" height="15.0" fill="rgb(212,166,44)" rx="2" ry="2" />
+<text  x="242.96" y="639.5" ></text>
+</g>
+<g >
+<title>do_writepages (352,110,113 samples, 0.29%)</title><rect x="113.2" y="645" width="3.4" height="15.0" fill="rgb(240,202,41)" rx="2" ry="2" />
+<text  x="116.19" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (203,588,628 samples, 0.17%)</title><rect x="209.5" y="677" width="2.0" height="15.0" fill="rgb(215,32,13)" rx="2" ry="2" />
+<text  x="212.53" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (838,047,270 samples, 0.69%)</title><rect x="169.8" y="693" width="8.1" height="15.0" fill="rgb(251,194,0)" rx="2" ry="2" />
+<text  x="172.79" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (443,050,511 samples, 0.37%)</title><rect x="75.5" y="677" width="4.3" height="15.0" fill="rgb(243,66,6)" rx="2" ry="2" />
+<text  x="78.48" y="687.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (86,237,022 samples, 0.07%)</title><rect x="115.7" y="597" width="0.8" height="15.0" fill="rgb(224,85,21)" rx="2" ry="2" />
+<text  x="118.70" y="607.5" ></text>
+</g>
+<g >
+<title>malloc (20,682,730 samples, 0.02%)</title><rect x="350.7" y="581" width="0.2" height="15.0" fill="rgb(245,21,1)" rx="2" ry="2" />
+<text  x="353.74" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (264,026,815 samples, 0.22%)</title><rect x="258.6" y="677" width="2.6" height="15.0" fill="rgb(237,9,30)" rx="2" ry="2" />
+<text  x="261.61" y="687.5" ></text>
+</g>
+<g >
+<title>pskb_expand_head (17,157,534 samples, 0.01%)</title><rect x="294.5" y="261" width="0.2" height="15.0" fill="rgb(230,12,35)" rx="2" ry="2" />
+<text  x="297.49" y="271.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (49,450,115 samples, 0.04%)</title><rect x="100.3" y="645" width="0.5" height="15.0" fill="rgb(206,25,2)" rx="2" ry="2" />
+<text  x="103.28" y="655.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (49,119,681 samples, 0.04%)</title><rect x="1113.2" y="693" width="0.5" height="15.0" fill="rgb(242,187,49)" rx="2" ry="2" />
+<text  x="1116.21" y="703.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (13,819,244 samples, 0.01%)</title><rect x="86.3" y="693" width="0.1" height="15.0" fill="rgb(208,206,34)" rx="2" ry="2" />
+<text  x="89.31" y="703.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (298,829,015 samples, 0.25%)</title><rect x="388.4" y="357" width="3.0" height="15.0" fill="rgb(235,163,8)" rx="2" ry="2" />
+<text  x="391.45" y="367.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (15,167,207 samples, 0.01%)</title><rect x="236.8" y="693" width="0.1" height="15.0" fill="rgb(243,137,51)" rx="2" ry="2" />
+<text  x="239.79" y="703.5" ></text>
+</g>
+<g >
+<title>__iommu_map_sg (25,993,660 samples, 0.02%)</title><rect x="10.4" y="581" width="0.2" height="15.0" fill="rgb(229,124,35)" rx="2" ry="2" />
+<text  x="13.39" y="591.5" ></text>
+</g>
+<g >
+<title>task_tick_fair (10,436,939 samples, 0.01%)</title><rect x="543.8" y="517" width="0.1" height="15.0" fill="rgb(239,18,6)" rx="2" ry="2" />
+<text  x="546.83" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (180,946,534 samples, 0.15%)</title><rect x="56.3" y="661" width="1.8" height="15.0" fill="rgb(214,219,19)" rx="2" ry="2" />
+<text  x="59.31" y="671.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (75,833,336 samples, 0.06%)</title><rect x="882.7" y="277" width="0.8" height="15.0" fill="rgb(238,63,42)" rx="2" ry="2" />
+<text  x="885.72" y="287.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (66,353,549 samples, 0.05%)</title><rect x="195.2" y="693" width="0.7" height="15.0" fill="rgb(225,87,18)" rx="2" ry="2" />
+<text  x="198.22" y="703.5" ></text>
+</g>
+<g >
+<title>common_interrupt (9,460,955,954 samples, 7.80%)</title><rect x="758.1" y="677" width="92.1" height="15.0" fill="rgb(207,229,0)" rx="2" ry="2" />
+<text  x="761.12" y="687.5" >common_inte..</text>
+</g>
+<g >
+<title>nft_do_chain (17,197,975 samples, 0.01%)</title><rect x="295.6" y="261" width="0.1" height="15.0" fill="rgb(248,101,24)" rx="2" ry="2" />
+<text  x="298.55" y="271.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (35,211,049 samples, 0.03%)</title><rect x="314.8" y="309" width="0.3" height="15.0" fill="rgb(244,140,27)" rx="2" ry="2" />
+<text  x="317.79" y="319.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (23,518,191 samples, 0.02%)</title><rect x="90.5" y="645" width="0.2" height="15.0" fill="rgb(227,47,30)" rx="2" ry="2" />
+<text  x="93.45" y="655.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (19,075,626 samples, 0.02%)</title><rect x="551.5" y="533" width="0.2" height="15.0" fill="rgb(219,173,35)" rx="2" ry="2" />
+<text  x="554.53" y="543.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (16,037,106 samples, 0.01%)</title><rect x="1164.1" y="645" width="0.2" height="15.0" fill="rgb(207,90,48)" rx="2" ry="2" />
+<text  x="1167.13" y="655.5" ></text>
+</g>
+<g >
+<title>xts_crypt (76,322,951 samples, 0.06%)</title><rect x="208.8" y="661" width="0.7" height="15.0" fill="rgb(221,101,41)" rx="2" ry="2" />
+<text  x="211.79" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (17,693,230 samples, 0.01%)</title><rect x="431.4" y="501" width="0.1" height="15.0" fill="rgb(215,77,23)" rx="2" ry="2" />
+<text  x="434.35" y="511.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (27,325,049 samples, 0.02%)</title><rect x="1032.9" y="549" width="0.2" height="15.0" fill="rgb(227,105,36)" rx="2" ry="2" />
+<text  x="1035.85" y="559.5" ></text>
+</g>
+<g >
+<title>__memchr_avx2 (13,121,162 samples, 0.01%)</title><rect x="347.3" y="581" width="0.1" height="15.0" fill="rgb(209,124,37)" rx="2" ry="2" />
+<text  x="350.28" y="591.5" ></text>
+</g>
+<g >
+<title>aesni_enc (11,302,705 samples, 0.01%)</title><rect x="228.8" y="645" width="0.1" height="15.0" fill="rgb(242,220,5)" rx="2" ry="2" />
+<text  x="231.83" y="655.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (14,759,153 samples, 0.01%)</title><rect x="399.8" y="709" width="0.2" height="15.0" fill="rgb(247,90,4)" rx="2" ry="2" />
+<text  x="402.84" y="719.5" ></text>
+</g>
+<g >
+<title>clone3 (11,749,885,323 samples, 9.69%)</title><rect x="282.5" y="789" width="114.4" height="15.0" fill="rgb(229,95,7)" rx="2" ry="2" />
+<text  x="285.48" y="799.5" >clone3</text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (414,307,137 samples, 0.34%)</title><rect x="33.2" y="677" width="4.0" height="15.0" fill="rgb(217,72,9)" rx="2" ry="2" />
+<text  x="36.21" y="687.5" ></text>
+</g>
+<g >
+<title>__do_sys_brk (25,845,032 samples, 0.02%)</title><rect x="413.0" y="517" width="0.2" height="15.0" fill="rgb(247,184,26)" rx="2" ry="2" />
+<text  x="415.95" y="527.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (20,726,159 samples, 0.02%)</title><rect x="808.0" y="453" width="0.2" height="15.0" fill="rgb(210,34,15)" rx="2" ry="2" />
+<text  x="811.01" y="463.5" ></text>
+</g>
+<g >
+<title>fq_flush_timeout (64,372,640 samples, 0.05%)</title><rect x="906.9" y="581" width="0.6" height="15.0" fill="rgb(231,200,47)" rx="2" ry="2" />
+<text  x="909.90" y="591.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (484,291,293 samples, 0.40%)</title><rect x="881.3" y="325" width="4.7" height="15.0" fill="rgb(237,41,1)" rx="2" ry="2" />
+<text  x="884.33" y="335.5" ></text>
+</g>
+<g >
+<title>__napi_alloc_skb (88,004,206 samples, 0.07%)</title><rect x="801.7" y="581" width="0.8" height="15.0" fill="rgb(242,69,45)" rx="2" ry="2" />
+<text  x="804.69" y="591.5" ></text>
+</g>
+<g >
+<title>pgrep (31,427,107 samples, 0.03%)</title><rect x="399.1" y="805" width="0.3" height="15.0" fill="rgb(215,78,47)" rx="2" ry="2" />
+<text  x="402.12" y="815.5" ></text>
+</g>
+<g >
+<title>update_cfs_group (26,387,529 samples, 0.02%)</title><rect x="368.8" y="405" width="0.2" height="15.0" fill="rgb(221,225,1)" rx="2" ry="2" />
+<text  x="371.78" y="415.5" ></text>
+</g>
+<g >
+<title>crypt_convert (599,257,379 samples, 0.49%)</title><rect x="178.9" y="709" width="5.8" height="15.0" fill="rgb(249,176,28)" rx="2" ry="2" />
+<text  x="181.88" y="719.5" ></text>
+</g>
+<g >
+<title>__nf_conntrack_find_get (44,793,545 samples, 0.04%)</title><rect x="315.5" y="309" width="0.4" height="15.0" fill="rgb(222,169,0)" rx="2" ry="2" />
+<text  x="318.50" y="319.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (41,624,435 samples, 0.03%)</title><rect x="281.0" y="773" width="0.4" height="15.0" fill="rgb(223,205,2)" rx="2" ry="2" />
+<text  x="283.99" y="783.5" ></text>
+</g>
+<g >
+<title>xts_crypt (121,231,676 samples, 0.10%)</title><rect x="162.1" y="661" width="1.2" height="15.0" fill="rgb(228,195,52)" rx="2" ry="2" />
+<text  x="165.11" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (660,012,374 samples, 0.54%)</title><rect x="264.9" y="693" width="6.4" height="15.0" fill="rgb(208,118,48)" rx="2" ry="2" />
+<text  x="267.91" y="703.5" ></text>
+</g>
+<g >
+<title>scheduler_tick (42,058,925 samples, 0.03%)</title><rect x="543.6" y="533" width="0.4" height="15.0" fill="rgb(241,96,18)" rx="2" ry="2" />
+<text  x="546.56" y="543.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (339,639,475 samples, 0.28%)</title><rect x="400.1" y="741" width="3.3" height="15.0" fill="rgb(243,167,16)" rx="2" ry="2" />
+<text  x="403.12" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (386,735,941 samples, 0.32%)</title><rect x="292.9" y="421" width="3.7" height="15.0" fill="rgb(224,161,20)" rx="2" ry="2" />
+<text  x="295.87" y="431.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (152,127,149 samples, 0.13%)</title><rect x="117.0" y="661" width="1.5" height="15.0" fill="rgb(237,197,41)" rx="2" ry="2" />
+<text  x="120.04" y="671.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_enable_asynccancel (16,364,517 samples, 0.01%)</title><rect x="296.9" y="533" width="0.1" height="15.0" fill="rgb(229,138,45)" rx="2" ry="2" />
+<text  x="299.87" y="543.5" ></text>
+</g>
+<g >
+<title>tick_sched_do_timer (63,180,273 samples, 0.05%)</title><rect x="912.4" y="597" width="0.7" height="15.0" fill="rgb(217,78,1)" rx="2" ry="2" />
+<text  x="915.45" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (137,335,983 samples, 0.11%)</title><rect x="238.4" y="661" width="1.3" height="15.0" fill="rgb(246,220,4)" rx="2" ry="2" />
+<text  x="241.35" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (10,898,152 samples, 0.01%)</title><rect x="396.3" y="325" width="0.1" height="15.0" fill="rgb(246,195,14)" rx="2" ry="2" />
+<text  x="399.29" y="335.5" ></text>
+</g>
+<g >
+<title>kworker/u64:2-k (1,130,081,586 samples, 0.93%)</title><rect x="137.5" y="805" width="11.0" height="15.0" fill="rgb(242,215,54)" rx="2" ry="2" />
+<text  x="140.52" y="815.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (29,876,541 samples, 0.02%)</title><rect x="1163.1" y="661" width="0.3" height="15.0" fill="rgb(241,8,12)" rx="2" ry="2" />
+<text  x="1166.13" y="671.5" ></text>
+</g>
+<g >
+<title>refresh_cpu_vm_stats (27,305,581 samples, 0.02%)</title><rect x="1188.7" y="693" width="0.3" height="15.0" fill="rgb(213,133,15)" rx="2" ry="2" />
+<text  x="1191.74" y="703.5" ></text>
+</g>
+<g >
+<title>unix_poll (109,084,574 samples, 0.09%)</title><rect x="379.7" y="469" width="1.1" height="15.0" fill="rgb(217,144,54)" rx="2" ry="2" />
+<text  x="382.70" y="479.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (69,328,861 samples, 0.06%)</title><rect x="553.4" y="773" width="0.6" height="15.0" fill="rgb(215,226,28)" rx="2" ry="2" />
+<text  x="556.37" y="783.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (14,711,228 samples, 0.01%)</title><rect x="877.1" y="293" width="0.2" height="15.0" fill="rgb(213,192,7)" rx="2" ry="2" />
+<text  x="880.14" y="303.5" ></text>
+</g>
+<g >
+<title>memchr_inv (26,755,951 samples, 0.02%)</title><rect x="1188.4" y="661" width="0.2" height="15.0" fill="rgb(225,45,49)" rx="2" ry="2" />
+<text  x="1191.39" y="671.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free_bulk.part.0 (15,043,163 samples, 0.01%)</title><rect x="814.3" y="565" width="0.2" height="15.0" fill="rgb(236,182,13)" rx="2" ry="2" />
+<text  x="817.33" y="575.5" ></text>
+</g>
+<g >
+<title>ext4_setattr (120,738,582 samples, 0.10%)</title><rect x="546.5" y="629" width="1.2" height="15.0" fill="rgb(246,200,45)" rx="2" ry="2" />
+<text  x="549.50" y="639.5" ></text>
+</g>
+<g >
+<title>cfree@GLIBC_2.2.5 (38,522,444 samples, 0.03%)</title><rect x="412.8" y="629" width="0.4" height="15.0" fill="rgb(221,196,47)" rx="2" ry="2" />
+<text  x="415.85" y="639.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (846,801,969 samples, 0.70%)</title><rect x="246.0" y="789" width="8.2" height="15.0" fill="rgb(236,216,40)" rx="2" ry="2" />
+<text  x="248.97" y="799.5" ></text>
+</g>
+<g >
+<title>enqueue_task (2,670,957,165 samples, 2.20%)</title><rect x="1114.1" y="677" width="26.0" height="15.0" fill="rgb(243,87,38)" rx="2" ry="2" />
+<text  x="1117.07" y="687.5" >e..</text>
+</g>
+<g >
+<title>hrtimer_init_sleeper (34,602,954 samples, 0.03%)</title><rect x="364.0" y="469" width="0.3" height="15.0" fill="rgb(241,44,22)" rx="2" ry="2" />
+<text  x="366.97" y="479.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (31,061,746 samples, 0.03%)</title><rect x="1112.9" y="661" width="0.3" height="15.0" fill="rgb(239,29,17)" rx="2" ry="2" />
+<text  x="1115.88" y="671.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (19,233,522 samples, 0.02%)</title><rect x="403.8" y="677" width="0.2" height="15.0" fill="rgb(230,76,42)" rx="2" ry="2" />
+<text  x="406.81" y="687.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (13,730,231 samples, 0.01%)</title><rect x="1176.2" y="677" width="0.1" height="15.0" fill="rgb(214,38,43)" rx="2" ry="2" />
+<text  x="1179.21" y="687.5" ></text>
+</g>
+<g >
+<title>hash_conntrack_raw (54,446,964 samples, 0.04%)</title><rect x="893.1" y="405" width="0.5" height="15.0" fill="rgb(234,40,20)" rx="2" ry="2" />
+<text  x="896.11" y="415.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (15,865,262 samples, 0.01%)</title><rect x="178.7" y="789" width="0.2" height="15.0" fill="rgb(242,214,22)" rx="2" ry="2" />
+<text  x="181.71" y="799.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,054,676,528 samples, 0.87%)</title><rect x="33.0" y="789" width="10.3" height="15.0" fill="rgb(228,135,28)" rx="2" ry="2" />
+<text  x="36.00" y="799.5" ></text>
+</g>
+<g >
+<title>nf_confirm (23,768,534 samples, 0.02%)</title><rect x="869.3" y="421" width="0.2" height="15.0" fill="rgb(208,194,48)" rx="2" ry="2" />
+<text  x="872.27" y="431.5" ></text>
+</g>
+<g >
+<title>__poll (17,224,829 samples, 0.01%)</title><rect x="335.8" y="549" width="0.1" height="15.0" fill="rgb(234,4,52)" rx="2" ry="2" />
+<text  x="338.76" y="559.5" ></text>
+</g>
+<g >
+<title>br_forward_finish (30,538,787 samples, 0.03%)</title><rect x="311.7" y="309" width="0.3" height="15.0" fill="rgb(246,114,47)" rx="2" ry="2" />
+<text  x="314.73" y="319.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode_prepare (14,109,352 samples, 0.01%)</title><rect x="383.5" y="501" width="0.1" height="15.0" fill="rgb(237,167,23)" rx="2" ry="2" />
+<text  x="386.49" y="511.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (30,437,665 samples, 0.03%)</title><rect x="868.8" y="405" width="0.3" height="15.0" fill="rgb(208,41,7)" rx="2" ry="2" />
+<text  x="871.81" y="415.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (23,971,246 samples, 0.02%)</title><rect x="1162.6" y="645" width="0.2" height="15.0" fill="rgb(222,42,2)" rx="2" ry="2" />
+<text  x="1165.56" y="655.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_updated (12,436,014 samples, 0.01%)</title><rect x="302.4" y="341" width="0.1" height="15.0" fill="rgb(230,184,12)" rx="2" ry="2" />
+<text  x="305.38" y="351.5" ></text>
+</g>
+<g >
+<title>can_stop_idle_tick (56,739,032 samples, 0.05%)</title><rect x="1157.5" y="693" width="0.6" height="15.0" fill="rgb(207,212,25)" rx="2" ry="2" />
+<text  x="1160.54" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (17,720,943 samples, 0.01%)</title><rect x="365.9" y="453" width="0.1" height="15.0" fill="rgb(235,143,33)" rx="2" ry="2" />
+<text  x="368.87" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (45,476,704 samples, 0.04%)</title><rect x="106.7" y="629" width="0.5" height="15.0" fill="rgb(234,49,25)" rx="2" ry="2" />
+<text  x="109.71" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (177,526,224 samples, 0.15%)</title><rect x="186.7" y="661" width="1.8" height="15.0" fill="rgb(233,124,32)" rx="2" ry="2" />
+<text  x="189.73" y="671.5" ></text>
+</g>
+<g >
+<title>dma_map_sgtable (32,890,753 samples, 0.03%)</title><rect x="10.3" y="629" width="0.4" height="15.0" fill="rgb(214,12,3)" rx="2" ry="2" />
+<text  x="13.33" y="639.5" ></text>
+</g>
+<g >
+<title>worker_thread (925,316,212 samples, 0.76%)</title><rect x="237.0" y="757" width="9.0" height="15.0" fill="rgb(223,58,37)" rx="2" ry="2" />
+<text  x="239.95" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_wmem_schedule (19,274,314 samples, 0.02%)</title><rect x="395.8" y="565" width="0.2" height="15.0" fill="rgb(254,81,12)" rx="2" ry="2" />
+<text  x="398.83" y="575.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (31,266,902 samples, 0.03%)</title><rect x="906.0" y="597" width="0.3" height="15.0" fill="rgb(241,224,14)" rx="2" ry="2" />
+<text  x="908.95" y="607.5" ></text>
+</g>
+<g >
+<title>x86_pmu_enable_event (28,016,426 samples, 0.02%)</title><rect x="914.8" y="501" width="0.3" height="15.0" fill="rgb(238,83,5)" rx="2" ry="2" />
+<text  x="917.78" y="511.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (94,783,026 samples, 0.08%)</title><rect x="338.6" y="565" width="0.9" height="15.0" fill="rgb(242,14,37)" rx="2" ry="2" />
+<text  x="341.62" y="575.5" ></text>
+</g>
+<g >
+<title>__default_send_IPI_dest_field (21,002,473 samples, 0.02%)</title><rect x="885.3" y="245" width="0.3" height="15.0" fill="rgb(238,190,21)" rx="2" ry="2" />
+<text  x="888.35" y="255.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (1,313,048,353 samples, 1.08%)</title><rect x="874.5" y="405" width="12.8" height="15.0" fill="rgb(251,87,32)" rx="2" ry="2" />
+<text  x="877.52" y="415.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (374,375,519 samples, 0.31%)</title><rect x="272.3" y="677" width="3.6" height="15.0" fill="rgb(205,124,40)" rx="2" ry="2" />
+<text  x="275.30" y="687.5" ></text>
+</g>
+<g >
+<title>futex_wake (40,271,026 samples, 0.03%)</title><rect x="414.8" y="437" width="0.4" height="15.0" fill="rgb(209,53,29)" rx="2" ry="2" />
+<text  x="417.82" y="447.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,076,373,174 samples, 0.89%)</title><rect x="254.2" y="741" width="10.5" height="15.0" fill="rgb(215,161,25)" rx="2" ry="2" />
+<text  x="257.21" y="751.5" ></text>
+</g>
+<g >
+<title>ip_local_out (99,137,601 samples, 0.08%)</title><rect x="294.8" y="325" width="0.9" height="15.0" fill="rgb(213,161,24)" rx="2" ry="2" />
+<text  x="297.78" y="335.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (65,146,523 samples, 0.05%)</title><rect x="859.4" y="613" width="0.7" height="15.0" fill="rgb(228,39,24)" rx="2" ry="2" />
+<text  x="862.44" y="623.5" ></text>
+</g>
+<g >
+<title>__sys_getsockname (29,134,071 samples, 0.02%)</title><rect x="337.3" y="501" width="0.3" height="15.0" fill="rgb(214,71,18)" rx="2" ry="2" />
+<text  x="340.31" y="511.5" ></text>
+</g>
+<g >
+<title>selinux_socket_sock_rcv_skb (35,500,127 samples, 0.03%)</title><rect x="873.9" y="373" width="0.4" height="15.0" fill="rgb(227,108,1)" rx="2" ry="2" />
+<text  x="876.94" y="383.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter (738,980,386 samples, 0.61%)</title><rect x="558.8" y="693" width="7.2" height="15.0" fill="rgb(241,44,48)" rx="2" ry="2" />
+<text  x="561.78" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (935,784,044 samples, 0.77%)</title><rect x="148.8" y="693" width="9.1" height="15.0" fill="rgb(207,42,21)" rx="2" ry="2" />
+<text  x="151.82" y="703.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (26,793,111 samples, 0.02%)</title><rect x="58.9" y="645" width="0.2" height="15.0" fill="rgb(231,69,32)" rx="2" ry="2" />
+<text  x="61.87" y="655.5" ></text>
+</g>
+<g >
+<title>napi_gro_flush (33,757,675 samples, 0.03%)</title><rect x="861.3" y="565" width="0.3" height="15.0" fill="rgb(218,100,18)" rx="2" ry="2" />
+<text  x="864.29" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (604,838,828 samples, 0.50%)</title><rect x="387.2" y="549" width="5.9" height="15.0" fill="rgb(220,161,52)" rx="2" ry="2" />
+<text  x="390.17" y="559.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (12,371,566 samples, 0.01%)</title><rect x="203.8" y="501" width="0.1" height="15.0" fill="rgb(216,170,35)" rx="2" ry="2" />
+<text  x="206.79" y="511.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (278,363,860 samples, 0.23%)</title><rect x="367.7" y="437" width="2.8" height="15.0" fill="rgb(220,147,14)" rx="2" ry="2" />
+<text  x="370.74" y="447.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (32,333,304 samples, 0.03%)</title><rect x="1144.7" y="709" width="0.3" height="15.0" fill="rgb(250,140,15)" rx="2" ry="2" />
+<text  x="1147.68" y="719.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (200,119,273 samples, 0.17%)</title><rect x="1069.2" y="661" width="2.0" height="15.0" fill="rgb(251,145,6)" rx="2" ry="2" />
+<text  x="1072.22" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (98,573,402 samples, 0.08%)</title><rect x="317.2" y="325" width="1.0" height="15.0" fill="rgb(234,113,3)" rx="2" ry="2" />
+<text  x="320.24" y="335.5" ></text>
+</g>
+<g >
+<title>read_tsc (26,523,445 samples, 0.02%)</title><rect x="931.9" y="629" width="0.3" height="15.0" fill="rgb(229,228,28)" rx="2" ry="2" />
+<text  x="934.92" y="639.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (12,768,700 samples, 0.01%)</title><rect x="303.0" y="373" width="0.1" height="15.0" fill="rgb(232,152,45)" rx="2" ry="2" />
+<text  x="305.96" y="383.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (24,342,614 samples, 0.02%)</title><rect x="849.5" y="661" width="0.2" height="15.0" fill="rgb(235,118,40)" rx="2" ry="2" />
+<text  x="852.46" y="671.5" ></text>
+</g>
+<g >
+<title>filemap_get_folios (14,599,771 samples, 0.01%)</title><rect x="113.5" y="581" width="0.2" height="15.0" fill="rgb(205,30,12)" rx="2" ry="2" />
+<text  x="116.53" y="591.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (11,256,062,190 samples, 9.29%)</title><rect x="742.9" y="693" width="109.6" height="15.0" fill="rgb(231,150,28)" rx="2" ry="2" />
+<text  x="745.91" y="703.5" >asm_common_in..</text>
+</g>
+<g >
+<title>_raw_read_lock (12,264,489 samples, 0.01%)</title><rect x="433.8" y="517" width="0.1" height="15.0" fill="rgb(224,107,42)" rx="2" ry="2" />
+<text  x="436.76" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (791,877,039 samples, 0.65%)</title><rect x="326.3" y="501" width="7.7" height="15.0" fill="rgb(245,228,51)" rx="2" ry="2" />
+<text  x="329.27" y="511.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rt_sigaction (165,551,272 samples, 0.14%)</title><rect x="351.5" y="549" width="1.6" height="15.0" fill="rgb(221,19,11)" rx="2" ry="2" />
+<text  x="354.49" y="559.5" ></text>
+</g>
+<g >
+<title>nr_iowait_cpu (32,131,904 samples, 0.03%)</title><rect x="1156.6" y="709" width="0.3" height="15.0" fill="rgb(236,205,27)" rx="2" ry="2" />
+<text  x="1159.62" y="719.5" ></text>
+</g>
+<g >
+<title>ip6t_do_table (19,063,282 samples, 0.02%)</title><rect x="411.0" y="245" width="0.1" height="15.0" fill="rgb(242,123,13)" rx="2" ry="2" />
+<text  x="413.96" y="255.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,100,962,040 samples, 0.91%)</title><rect x="158.8" y="741" width="10.8" height="15.0" fill="rgb(244,144,1)" rx="2" ry="2" />
+<text  x="161.84" y="751.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (28,281,827 samples, 0.02%)</title><rect x="297.4" y="517" width="0.3" height="15.0" fill="rgb(233,101,38)" rx="2" ry="2" />
+<text  x="300.39" y="527.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (19,602,222 samples, 0.02%)</title><rect x="403.1" y="261" width="0.2" height="15.0" fill="rgb(219,182,53)" rx="2" ry="2" />
+<text  x="406.14" y="271.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,066,546,117 samples, 0.88%)</title><rect x="22.6" y="725" width="10.4" height="15.0" fill="rgb(239,103,26)" rx="2" ry="2" />
+<text  x="25.61" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (207,105,555 samples, 0.17%)</title><rect x="351.4" y="565" width="2.0" height="15.0" fill="rgb(252,181,35)" rx="2" ry="2" />
+<text  x="354.43" y="575.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (18,209,801 samples, 0.02%)</title><rect x="411.4" y="229" width="0.2" height="15.0" fill="rgb(254,115,42)" rx="2" ry="2" />
+<text  x="414.42" y="239.5" ></text>
+</g>
+<g >
+<title>native_apic_mem_write (12,458,933 samples, 0.01%)</title><rect x="916.8" y="597" width="0.1" height="15.0" fill="rgb(246,106,37)" rx="2" ry="2" />
+<text  x="919.82" y="607.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,116,170,422 samples, 0.92%)</title><rect x="11.7" y="789" width="10.9" height="15.0" fill="rgb(227,36,17)" rx="2" ry="2" />
+<text  x="14.69" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (464,962,282 samples, 0.38%)</title><rect x="137.8" y="677" width="4.5" height="15.0" fill="rgb(207,20,4)" rx="2" ry="2" />
+<text  x="140.79" y="687.5" ></text>
+</g>
+<g >
+<title>__send (412,760,807 samples, 0.34%)</title><rect x="292.7" y="517" width="4.0" height="15.0" fill="rgb(224,84,24)" rx="2" ry="2" />
+<text  x="295.66" y="527.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (20,667,453 samples, 0.02%)</title><rect x="353.2" y="533" width="0.2" height="15.0" fill="rgb(207,198,28)" rx="2" ry="2" />
+<text  x="356.19" y="543.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (54,311,034 samples, 0.04%)</title><rect x="875.7" y="277" width="0.5" height="15.0" fill="rgb(213,9,23)" rx="2" ry="2" />
+<text  x="878.72" y="287.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (570,841,821 samples, 0.47%)</title><rect x="196.3" y="693" width="5.5" height="15.0" fill="rgb(209,223,44)" rx="2" ry="2" />
+<text  x="199.28" y="703.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (78,258,099 samples, 0.06%)</title><rect x="1184.6" y="693" width="0.7" height="15.0" fill="rgb(238,55,49)" rx="2" ry="2" />
+<text  x="1187.57" y="703.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (11,773,126 samples, 0.01%)</title><rect x="909.7" y="629" width="0.1" height="15.0" fill="rgb(227,53,5)" rx="2" ry="2" />
+<text  x="912.66" y="639.5" ></text>
+</g>
+<g >
+<title>__printf_buffer (14,453,230 samples, 0.01%)</title><rect x="334.3" y="485" width="0.2" height="15.0" fill="rgb(253,74,38)" rx="2" ry="2" />
+<text  x="337.32" y="495.5" ></text>
+</g>
+<g >
+<title>do_futex (279,168,174 samples, 0.23%)</title><rect x="549.8" y="613" width="2.7" height="15.0" fill="rgb(224,192,32)" rx="2" ry="2" />
+<text  x="552.76" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (66,839,349 samples, 0.06%)</title><rect x="385.5" y="661" width="0.6" height="15.0" fill="rgb(212,8,11)" rx="2" ry="2" />
+<text  x="388.48" y="671.5" ></text>
+</g>
+<g >
+<title>__submit_bio (53,417,379 samples, 0.04%)</title><rect x="10.2" y="725" width="0.5" height="15.0" fill="rgb(253,178,50)" rx="2" ry="2" />
+<text  x="13.20" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (399,202,134 samples, 0.33%)</title><rect x="214.2" y="677" width="3.9" height="15.0" fill="rgb(211,197,19)" rx="2" ry="2" />
+<text  x="217.22" y="687.5" ></text>
+</g>
+<g >
+<title>_aesni_enc1 (10,704,428 samples, 0.01%)</title><rect x="68.7" y="629" width="0.1" height="15.0" fill="rgb(249,228,37)" rx="2" ry="2" />
+<text  x="71.67" y="639.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (55,830,084 samples, 0.05%)</title><rect x="396.0" y="549" width="0.6" height="15.0" fill="rgb(248,37,9)" rx="2" ry="2" />
+<text  x="399.02" y="559.5" ></text>
+</g>
+<g >
+<title>rtl8169_poll (4,608,007,344 samples, 3.80%)</title><rect x="860.6" y="597" width="44.9" height="15.0" fill="rgb(212,49,15)" rx="2" ry="2" />
+<text  x="863.60" y="607.5" >rtl8..</text>
+</g>
+<g >
+<title>__local_bh_enable_ip (35,511,671 samples, 0.03%)</title><rect x="396.1" y="469" width="0.3" height="15.0" fill="rgb(250,157,12)" rx="2" ry="2" />
+<text  x="399.09" y="479.5" ></text>
+</g>
+<g >
+<title>update_curr (12,635,355 samples, 0.01%)</title><rect x="421.4" y="549" width="0.1" height="15.0" fill="rgb(237,208,25)" rx="2" ry="2" />
+<text  x="424.38" y="559.5" ></text>
+</g>
+<g >
+<title>cpuidle_get_cpu_driver (22,593,600 samples, 0.02%)</title><rect x="1097.4" y="725" width="0.2" height="15.0" fill="rgb(227,175,38)" rx="2" ry="2" />
+<text  x="1100.37" y="735.5" ></text>
+</g>
+<g >
+<title>pthread_cond_timedwait@@GLIBC_2.3.2 (361,721,637 samples, 0.30%)</title><rect x="549.3" y="693" width="3.5" height="15.0" fill="rgb(252,164,30)" rx="2" ry="2" />
+<text  x="552.27" y="703.5" ></text>
+</g>
+<g >
+<title>futex_wait (53,488,079 samples, 0.04%)</title><rect x="553.4" y="709" width="0.5" height="15.0" fill="rgb(236,212,6)" rx="2" ry="2" />
+<text  x="556.39" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (364,791,472 samples, 0.30%)</title><rect x="202.5" y="613" width="3.6" height="15.0" fill="rgb(240,127,6)" rx="2" ry="2" />
+<text  x="205.50" y="623.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (284,234,630 samples, 0.23%)</title><rect x="293.2" y="341" width="2.7" height="15.0" fill="rgb(242,191,1)" rx="2" ry="2" />
+<text  x="296.16" y="351.5" ></text>
+</g>
+<g >
+<title>curl_url_get (154,185,491 samples, 0.13%)</title><rect x="348.2" y="581" width="1.5" height="15.0" fill="rgb(213,185,12)" rx="2" ry="2" />
+<text  x="351.22" y="591.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (11,605,468 samples, 0.01%)</title><rect x="254.1" y="709" width="0.1" height="15.0" fill="rgb(241,11,0)" rx="2" ry="2" />
+<text  x="257.09" y="719.5" ></text>
+</g>
+<g >
+<title>xts_crypt (66,713,732 samples, 0.06%)</title><rect x="180.6" y="661" width="0.6" height="15.0" fill="rgb(215,54,13)" rx="2" ry="2" />
+<text  x="183.56" y="671.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (32,032,970 samples, 0.03%)</title><rect x="184.3" y="693" width="0.4" height="15.0" fill="rgb(252,55,29)" rx="2" ry="2" />
+<text  x="187.35" y="703.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (14,899,602 samples, 0.01%)</title><rect x="388.0" y="421" width="0.2" height="15.0" fill="rgb(240,24,44)" rx="2" ry="2" />
+<text  x="391.04" y="431.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (17,115,711 samples, 0.01%)</title><rect x="422.8" y="645" width="0.1" height="15.0" fill="rgb(219,138,28)" rx="2" ry="2" />
+<text  x="425.75" y="655.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (48,470,294 samples, 0.04%)</title><rect x="213.4" y="693" width="0.4" height="15.0" fill="rgb(233,53,9)" rx="2" ry="2" />
+<text  x="216.38" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (699,300,249 samples, 0.58%)</title><rect x="246.6" y="693" width="6.8" height="15.0" fill="rgb(213,109,35)" rx="2" ry="2" />
+<text  x="249.64" y="703.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_core.constprop.0 (43,608,948 samples, 0.04%)</title><rect x="865.9" y="453" width="0.4" height="15.0" fill="rgb(226,184,47)" rx="2" ry="2" />
+<text  x="868.91" y="463.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (148,857,423 samples, 0.12%)</title><rect x="883.5" y="277" width="1.4" height="15.0" fill="rgb(212,127,45)" rx="2" ry="2" />
+<text  x="886.45" y="287.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (94,746,859 samples, 0.08%)</title><rect x="264.9" y="661" width="0.9" height="15.0" fill="rgb(222,0,3)" rx="2" ry="2" />
+<text  x="267.92" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (197,629,321 samples, 0.16%)</title><rect x="45.1" y="661" width="1.9" height="15.0" fill="rgb(247,15,53)" rx="2" ry="2" />
+<text  x="48.08" y="671.5" ></text>
+</g>
+<g >
+<title>__mod_zone_page_state (11,961,780 samples, 0.01%)</title><rect x="444.1" y="517" width="0.1" height="15.0" fill="rgb(213,78,7)" rx="2" ry="2" />
+<text  x="447.11" y="527.5" ></text>
+</g>
+<g >
+<title>xts_crypt (102,875,476 samples, 0.08%)</title><rect x="100.1" y="661" width="1.0" height="15.0" fill="rgb(241,54,38)" rx="2" ry="2" />
+<text  x="103.10" y="671.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (15,797,234 samples, 0.01%)</title><rect x="114.4" y="517" width="0.1" height="15.0" fill="rgb(221,204,31)" rx="2" ry="2" />
+<text  x="117.35" y="527.5" ></text>
+</g>
+<g >
+<title>qemu-img (15,729,431,809 samples, 12.98%)</title><rect x="400.1" y="805" width="153.1" height="15.0" fill="rgb(223,162,52)" rx="2" ry="2" />
+<text  x="403.06" y="815.5" >qemu-img</text>
+</g>
+<g >
+<title>sched_clock_cpu (13,922,416 samples, 0.01%)</title><rect x="1028.9" y="629" width="0.1" height="15.0" fill="rgb(225,52,40)" rx="2" ry="2" />
+<text  x="1031.89" y="639.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (201,294,679 samples, 0.17%)</title><rect x="400.2" y="597" width="1.9" height="15.0" fill="rgb(242,215,0)" rx="2" ry="2" />
+<text  x="403.19" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (809,841,568 samples, 0.67%)</title><rect x="272.3" y="693" width="7.9" height="15.0" fill="rgb(252,26,16)" rx="2" ry="2" />
+<text  x="275.30" y="703.5" ></text>
+</g>
+<g >
+<title>qio_channel_yield (20,048,047 samples, 0.02%)</title><rect x="401.1" y="517" width="0.2" height="15.0" fill="rgb(213,74,43)" rx="2" ry="2" />
+<text  x="404.06" y="527.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (12,923,206 samples, 0.01%)</title><rect x="22.4" y="597" width="0.1" height="15.0" fill="rgb(230,64,24)" rx="2" ry="2" />
+<text  x="25.39" y="607.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (20,533,655 samples, 0.02%)</title><rect x="421.8" y="581" width="0.2" height="15.0" fill="rgb(210,109,22)" rx="2" ry="2" />
+<text  x="424.81" y="591.5" ></text>
+</g>
+<g >
+<title>ktime_get (43,631,107 samples, 0.04%)</title><rect x="849.8" y="645" width="0.4" height="15.0" fill="rgb(228,58,32)" rx="2" ry="2" />
+<text  x="852.79" y="655.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (23,419,649 samples, 0.02%)</title><rect x="919.7" y="645" width="0.2" height="15.0" fill="rgb(239,1,2)" rx="2" ry="2" />
+<text  x="922.65" y="655.5" ></text>
+</g>
+<g >
+<title>save_fpregs_to_fpstate (69,632,041 samples, 0.06%)</title><rect x="383.7" y="549" width="0.7" height="15.0" fill="rgb(205,178,41)" rx="2" ry="2" />
+<text  x="386.72" y="559.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,108,693,995 samples, 0.91%)</title><rect x="126.7" y="741" width="10.8" height="15.0" fill="rgb(221,137,36)" rx="2" ry="2" />
+<text  x="129.72" y="751.5" ></text>
+</g>
+<g >
+<title>pthread_cond_signal@@GLIBC_2.3.2 (53,953,100 samples, 0.04%)</title><rect x="414.7" y="517" width="0.5" height="15.0" fill="rgb(233,207,37)" rx="2" ry="2" />
+<text  x="417.71" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (22,945,959 samples, 0.02%)</title><rect x="400.4" y="373" width="0.2" height="15.0" fill="rgb(224,58,17)" rx="2" ry="2" />
+<text  x="403.39" y="383.5" ></text>
+</g>
+<g >
+<title>enqueue_task (321,417,416 samples, 0.27%)</title><rect x="1031.3" y="613" width="3.2" height="15.0" fill="rgb(243,154,27)" rx="2" ry="2" />
+<text  x="1034.33" y="623.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_enter (96,163,865 samples, 0.08%)</title><rect x="1178.1" y="725" width="1.0" height="15.0" fill="rgb(233,65,53)" rx="2" ry="2" />
+<text  x="1181.14" y="735.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (53,261,543 samples, 0.04%)</title><rect x="548.2" y="597" width="0.5" height="15.0" fill="rgb(233,29,7)" rx="2" ry="2" />
+<text  x="551.19" y="607.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (10,274,210 samples, 0.01%)</title><rect x="364.5" y="453" width="0.1" height="15.0" fill="rgb(243,135,43)" rx="2" ry="2" />
+<text  x="367.51" y="463.5" ></text>
+</g>
+<g >
+<title>net_rx_action (11,112,714 samples, 0.01%)</title><rect x="401.6" y="213" width="0.1" height="15.0" fill="rgb(220,64,35)" rx="2" ry="2" />
+<text  x="404.60" y="223.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (54,603,652 samples, 0.05%)</title><rect x="89.8" y="645" width="0.6" height="15.0" fill="rgb(212,34,9)" rx="2" ry="2" />
+<text  x="92.85" y="655.5" ></text>
+</g>
+<g >
+<title>flush_smp_call_function_queue (4,528,607,893 samples, 3.74%)</title><rect x="1098.9" y="725" width="44.1" height="15.0" fill="rgb(240,219,42)" rx="2" ry="2" />
+<text  x="1101.92" y="735.5" >flus..</text>
+</g>
+<g >
+<title>__ip_local_out (97,951,596 samples, 0.08%)</title><rect x="294.8" y="309" width="0.9" height="15.0" fill="rgb(220,198,33)" rx="2" ry="2" />
+<text  x="297.79" y="319.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (53,949,547 samples, 0.04%)</title><rect x="177.9" y="693" width="0.6" height="15.0" fill="rgb(242,91,28)" rx="2" ry="2" />
+<text  x="180.95" y="703.5" ></text>
+</g>
+<g >
+<title>__libc_start_call_main (192,192,189 samples, 0.16%)</title><rect x="397.2" y="757" width="1.9" height="15.0" fill="rgb(231,224,28)" rx="2" ry="2" />
+<text  x="400.23" y="767.5" ></text>
+</g>
+<g >
+<title>worker_thread (813,855,899 samples, 0.67%)</title><rect x="206.1" y="757" width="7.9" height="15.0" fill="rgb(253,42,32)" rx="2" ry="2" />
+<text  x="209.06" y="767.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (13,903,825 samples, 0.01%)</title><rect x="431.6" y="517" width="0.1" height="15.0" fill="rgb(238,208,38)" rx="2" ry="2" />
+<text  x="434.61" y="527.5" ></text>
+</g>
+<g >
+<title>__qdisc_run (19,145,749 samples, 0.02%)</title><rect x="308.4" y="277" width="0.2" height="15.0" fill="rgb(208,133,23)" rx="2" ry="2" />
+<text  x="311.40" y="287.5" ></text>
+</g>
+<g >
+<title>mpage_submit_page (207,937,423 samples, 0.17%)</title><rect x="113.7" y="581" width="2.0" height="15.0" fill="rgb(249,218,28)" rx="2" ry="2" />
+<text  x="116.68" y="591.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (32,396,391 samples, 0.03%)</title><rect x="283.6" y="613" width="0.3" height="15.0" fill="rgb(224,133,25)" rx="2" ry="2" />
+<text  x="286.60" y="623.5" ></text>
+</g>
+<g >
+<title>pollwake (47,380,637 samples, 0.04%)</title><rect x="548.2" y="581" width="0.5" height="15.0" fill="rgb(226,114,12)" rx="2" ry="2" />
+<text  x="551.25" y="591.5" ></text>
+</g>
+<g >
+<title>filemap_add_folio (467,420,497 samples, 0.39%)</title><rect x="434.5" y="533" width="4.5" height="15.0" fill="rgb(216,64,36)" rx="2" ry="2" />
+<text  x="437.48" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (1,069,643,206 samples, 0.88%)</title><rect x="386.3" y="661" width="10.4" height="15.0" fill="rgb(207,34,29)" rx="2" ry="2" />
+<text  x="389.29" y="671.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (27,903,458 samples, 0.02%)</title><rect x="808.4" y="389" width="0.3" height="15.0" fill="rgb(254,156,25)" rx="2" ry="2" />
+<text  x="811.38" y="399.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (271,352,938 samples, 0.22%)</title><rect x="134.0" y="677" width="2.7" height="15.0" fill="rgb(220,140,0)" rx="2" ry="2" />
+<text  x="137.03" y="687.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (34,541,986 samples, 0.03%)</title><rect x="189.2" y="645" width="0.3" height="15.0" fill="rgb(234,97,25)" rx="2" ry="2" />
+<text  x="192.17" y="655.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (27,346,493 samples, 0.02%)</title><rect x="401.8" y="293" width="0.2" height="15.0" fill="rgb(222,149,8)" rx="2" ry="2" />
+<text  x="404.78" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (84,104,224 samples, 0.07%)</title><rect x="397.5" y="501" width="0.9" height="15.0" fill="rgb(241,139,3)" rx="2" ry="2" />
+<text  x="400.54" y="511.5" ></text>
+</g>
+<g >
+<title>read_tsc (21,861,971 samples, 0.02%)</title><rect x="1036.0" y="613" width="0.2" height="15.0" fill="rgb(232,45,42)" rx="2" ry="2" />
+<text  x="1039.00" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (1,026,128,966 samples, 0.85%)</title><rect x="386.6" y="597" width="10.0" height="15.0" fill="rgb(217,154,38)" rx="2" ry="2" />
+<text  x="389.61" y="607.5" ></text>
+</g>
+<g >
+<title>[unknown]  (77,432,382 samples, 0.06%)</title><rect x="553.3" y="789" width="0.8" height="15.0" fill="rgb(225,9,20)" rx="2" ry="2" />
+<text  x="556.30" y="799.5" ></text>
+</g>
+<g >
+<title>sched_clock_idle_wakeup_event (328,944,082 samples, 0.27%)</title><rect x="1090.6" y="693" width="3.2" height="15.0" fill="rgb(221,12,41)" rx="2" ry="2" />
+<text  x="1093.62" y="703.5" ></text>
+</g>
+<g >
+<title>ip6_xmit (520,837,724 samples, 0.43%)</title><rect x="387.7" y="501" width="5.1" height="15.0" fill="rgb(226,119,4)" rx="2" ry="2" />
+<text  x="390.70" y="511.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (11,117,876 samples, 0.01%)</title><rect x="196.0" y="693" width="0.1" height="15.0" fill="rgb(213,127,49)" rx="2" ry="2" />
+<text  x="198.95" y="703.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,094,673,964 samples, 0.90%)</title><rect x="11.7" y="725" width="10.7" height="15.0" fill="rgb(214,211,32)" rx="2" ry="2" />
+<text  x="14.72" y="735.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (15,830,602 samples, 0.01%)</title><rect x="65.4" y="709" width="0.1" height="15.0" fill="rgb(253,170,16)" rx="2" ry="2" />
+<text  x="68.36" y="719.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (26,169,666 samples, 0.02%)</title><rect x="388.5" y="325" width="0.3" height="15.0" fill="rgb(232,182,51)" rx="2" ry="2" />
+<text  x="391.51" y="335.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (4,898,789,309 samples, 4.04%)</title><rect x="773.2" y="661" width="47.7" height="15.0" fill="rgb(224,119,52)" rx="2" ry="2" />
+<text  x="776.17" y="671.5" >__ir..</text>
+</g>
+<g >
+<title>get_page_from_freelist (17,611,846 samples, 0.01%)</title><rect x="395.1" y="517" width="0.2" height="15.0" fill="rgb(218,218,30)" rx="2" ry="2" />
+<text  x="398.14" y="527.5" ></text>
+</g>
+<g >
+<title>switch_mm_irqs_off (47,729,183 samples, 0.04%)</title><rect x="1176.3" y="693" width="0.5" height="15.0" fill="rgb(253,206,6)" rx="2" ry="2" />
+<text  x="1179.34" y="703.5" ></text>
+</g>
+<g >
+<title>crypt_convert (782,469,466 samples, 0.65%)</title><rect x="246.5" y="709" width="7.6" height="15.0" fill="rgb(215,103,5)" rx="2" ry="2" />
+<text  x="249.47" y="719.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (10,658,558 samples, 0.01%)</title><rect x="1077.3" y="613" width="0.1" height="15.0" fill="rgb(241,60,20)" rx="2" ry="2" />
+<text  x="1080.26" y="623.5" ></text>
+</g>
+<g >
+<title>record_times (18,943,566 samples, 0.02%)</title><rect x="1175.4" y="661" width="0.2" height="15.0" fill="rgb(253,142,16)" rx="2" ry="2" />
+<text  x="1178.41" y="671.5" ></text>
+</g>
+<g >
+<title>acpi_idle_enter (471,284,440 samples, 0.39%)</title><rect x="558.8" y="661" width="4.6" height="15.0" fill="rgb(244,77,7)" rx="2" ry="2" />
+<text  x="561.80" y="671.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (1,633,111,122 samples, 1.35%)</title><rect x="871.7" y="437" width="15.9" height="15.0" fill="rgb(217,68,13)" rx="2" ry="2" />
+<text  x="874.67" y="447.5" ></text>
+</g>
+<g >
+<title>iommu_v1_map_pages (40,271,223 samples, 0.03%)</title><rect x="310.3" y="149" width="0.4" height="15.0" fill="rgb(249,178,51)" rx="2" ry="2" />
+<text  x="313.35" y="159.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (920,037,421 samples, 0.76%)</title><rect x="237.0" y="725" width="9.0" height="15.0" fill="rgb(245,76,32)" rx="2" ry="2" />
+<text  x="240.00" y="735.5" ></text>
+</g>
+<g >
+<title>__GI___libc_write (112,059,532 samples, 0.09%)</title><rect x="547.9" y="693" width="1.1" height="15.0" fill="rgb(253,170,26)" rx="2" ry="2" />
+<text  x="550.94" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver (531,273,658 samples, 0.44%)</title><rect x="866.3" y="453" width="5.2" height="15.0" fill="rgb(230,118,10)" rx="2" ry="2" />
+<text  x="869.33" y="463.5" ></text>
+</g>
+<g >
+<title>__sk_mem_reduce_allocated (173,268,304 samples, 0.14%)</title><rect x="301.4" y="405" width="1.7" height="15.0" fill="rgb(221,183,34)" rx="2" ry="2" />
+<text  x="304.43" y="415.5" ></text>
+</g>
+<g >
+<title>__rdgsbase_inactive (18,552,400 samples, 0.02%)</title><rect x="355.5" y="549" width="0.2" height="15.0" fill="rgb(222,36,46)" rx="2" ry="2" />
+<text  x="358.55" y="559.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (20,250,693 samples, 0.02%)</title><rect x="808.0" y="437" width="0.2" height="15.0" fill="rgb(213,229,33)" rx="2" ry="2" />
+<text  x="811.01" y="447.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (32,314,740 samples, 0.03%)</title><rect x="875.9" y="245" width="0.3" height="15.0" fill="rgb(218,113,46)" rx="2" ry="2" />
+<text  x="878.87" y="255.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_page (156,916,906 samples, 0.13%)</title><rect x="203.0" y="565" width="1.5" height="15.0" fill="rgb(251,44,20)" rx="2" ry="2" />
+<text  x="205.96" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (520,182,048 samples, 0.43%)</title><rect x="407.6" y="469" width="5.1" height="15.0" fill="rgb(226,182,26)" rx="2" ry="2" />
+<text  x="410.59" y="479.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (59,288,953 samples, 0.05%)</title><rect x="396.0" y="565" width="0.6" height="15.0" fill="rgb(213,158,42)" rx="2" ry="2" />
+<text  x="399.02" y="575.5" ></text>
+</g>
+<g >
+<title>iommu_dma_unmap_page (165,519,619 samples, 0.14%)</title><rect x="814.5" y="565" width="1.6" height="15.0" fill="rgb(226,179,23)" rx="2" ry="2" />
+<text  x="817.49" y="575.5" ></text>
+</g>
+<g >
+<title>fput (11,414,842 samples, 0.01%)</title><rect x="298.9" y="453" width="0.1" height="15.0" fill="rgb(211,179,4)" rx="2" ry="2" />
+<text  x="301.92" y="463.5" ></text>
+</g>
+<g >
+<title>read_tsc (36,934,283 samples, 0.03%)</title><rect x="849.9" y="629" width="0.3" height="15.0" fill="rgb(246,64,27)" rx="2" ry="2" />
+<text  x="852.85" y="639.5" ></text>
+</g>
+<g >
+<title>timerqueue_add (20,830,205 samples, 0.02%)</title><rect x="364.7" y="437" width="0.2" height="15.0" fill="rgb(220,70,43)" rx="2" ry="2" />
+<text  x="367.71" y="447.5" ></text>
+</g>
+<g >
+<title>kworker/u64:6-k (847,765,699 samples, 0.70%)</title><rect x="246.0" y="805" width="8.2" height="15.0" fill="rgb(211,194,22)" rx="2" ry="2" />
+<text  x="248.96" y="815.5" ></text>
+</g>
+<g >
+<title>__schedule (173,645,410 samples, 0.14%)</title><rect x="550.5" y="549" width="1.7" height="15.0" fill="rgb(209,99,18)" rx="2" ry="2" />
+<text  x="553.55" y="559.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (35,348,403 samples, 0.03%)</title><rect x="246.1" y="677" width="0.3" height="15.0" fill="rgb(208,152,14)" rx="2" ry="2" />
+<text  x="249.10" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_send_mss (12,668,138 samples, 0.01%)</title><rect x="395.5" y="565" width="0.1" height="15.0" fill="rgb(234,10,37)" rx="2" ry="2" />
+<text  x="398.46" y="575.5" ></text>
+</g>
+<g >
+<title>ktime_get (669,602,148 samples, 0.55%)</title><rect x="921.0" y="629" width="6.6" height="15.0" fill="rgb(246,183,16)" rx="2" ry="2" />
+<text  x="924.04" y="639.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (1,239,030,149 samples, 1.02%)</title><rect x="403.4" y="741" width="12.1" height="15.0" fill="rgb(206,173,18)" rx="2" ry="2" />
+<text  x="406.45" y="751.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (28,869,482 samples, 0.02%)</title><rect x="389.9" y="181" width="0.3" height="15.0" fill="rgb(220,146,21)" rx="2" ry="2" />
+<text  x="392.93" y="191.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (63,802,271 samples, 0.05%)</title><rect x="168.7" y="693" width="0.6" height="15.0" fill="rgb(239,157,31)" rx="2" ry="2" />
+<text  x="171.70" y="703.5" ></text>
+</g>
+<g >
+<title>[perf] (192,192,189 samples, 0.16%)</title><rect x="397.2" y="709" width="1.9" height="15.0" fill="rgb(227,69,14)" rx="2" ry="2" />
+<text  x="400.23" y="719.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (2,804,718,320 samples, 2.31%)</title><rect x="298.0" y="501" width="27.3" height="15.0" fill="rgb(222,47,10)" rx="2" ry="2" />
+<text  x="300.95" y="511.5" >d..</text>
+</g>
+<g >
+<title>kworker/u64:31- (1,026,143,689 samples, 0.85%)</title><rect x="196.1" y="805" width="10.0" height="15.0" fill="rgb(205,162,52)" rx="2" ry="2" />
+<text  x="199.06" y="815.5" ></text>
+</g>
+<g >
+<title>emacs (13,679,764 samples, 0.01%)</title><rect x="10.7" y="805" width="0.2" height="15.0" fill="rgb(221,6,26)" rx="2" ry="2" />
+<text  x="13.72" y="815.5" ></text>
+</g>
+<g >
+<title>schedule (178,502,928 samples, 0.15%)</title><rect x="550.5" y="565" width="1.8" height="15.0" fill="rgb(243,174,48)" rx="2" ry="2" />
+<text  x="553.53" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (421,169,827 samples, 0.35%)</title><rect x="148.8" y="677" width="4.1" height="15.0" fill="rgb(228,62,0)" rx="2" ry="2" />
+<text  x="151.82" y="687.5" ></text>
+</g>
+<g >
+<title>br_forward (14,217,057 samples, 0.01%)</title><rect x="311.6" y="309" width="0.1" height="15.0" fill="rgb(207,46,5)" rx="2" ry="2" />
+<text  x="314.59" y="319.5" ></text>
+</g>
+<g >
+<title>exit_to_user_mode_prepare (53,163,696 samples, 0.04%)</title><rect x="346.6" y="517" width="0.5" height="15.0" fill="rgb(250,115,23)" rx="2" ry="2" />
+<text  x="349.62" y="527.5" ></text>
+</g>
+<g >
+<title>xts_crypt (105,865,975 samples, 0.09%)</title><rect x="239.7" y="661" width="1.0" height="15.0" fill="rgb(217,184,43)" rx="2" ry="2" />
+<text  x="242.69" y="671.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,088,018,208 samples, 0.90%)</title><rect x="158.9" y="709" width="10.6" height="15.0" fill="rgb(224,183,16)" rx="2" ry="2" />
+<text  x="161.87" y="719.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (75,588,266 samples, 0.06%)</title><rect x="1141.2" y="677" width="0.7" height="15.0" fill="rgb(209,141,37)" rx="2" ry="2" />
+<text  x="1144.19" y="687.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (139,610,668 samples, 0.12%)</title><rect x="107.2" y="693" width="1.3" height="15.0" fill="rgb(211,192,16)" rx="2" ry="2" />
+<text  x="110.18" y="703.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (242,517,563 samples, 0.20%)</title><rect x="113.3" y="597" width="2.4" height="15.0" fill="rgb(230,143,19)" rx="2" ry="2" />
+<text  x="116.34" y="607.5" ></text>
+</g>
+<g >
+<title>sock_poll (379,026,324 samples, 0.31%)</title><rect x="377.1" y="485" width="3.7" height="15.0" fill="rgb(214,139,0)" rx="2" ry="2" />
+<text  x="380.07" y="495.5" ></text>
+</g>
+<g >
+<title>__iommu_map (25,397,352 samples, 0.02%)</title><rect x="10.4" y="565" width="0.2" height="15.0" fill="rgb(219,49,24)" rx="2" ry="2" />
+<text  x="13.40" y="575.5" ></text>
+</g>
+<g >
+<title>xts_crypt (140,921,582 samples, 0.12%)</title><rect x="130.2" y="661" width="1.3" height="15.0" fill="rgb(211,95,39)" rx="2" ry="2" />
+<text  x="133.15" y="671.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (560,870,206 samples, 0.46%)</title><rect x="407.4" y="613" width="5.4" height="15.0" fill="rgb(242,106,36)" rx="2" ry="2" />
+<text  x="410.37" y="623.5" ></text>
+</g>
+<g >
+<title>load_balance (38,485,233 samples, 0.03%)</title><rect x="564.6" y="565" width="0.4" height="15.0" fill="rgb(225,194,32)" rx="2" ry="2" />
+<text  x="567.58" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (112,582,954 samples, 0.09%)</title><rect x="206.5" y="661" width="1.0" height="15.0" fill="rgb(240,39,7)" rx="2" ry="2" />
+<text  x="209.45" y="671.5" ></text>
+</g>
+<g >
+<title>psi_task_change (2,352,724,900 samples, 1.94%)</title><rect x="1117.2" y="661" width="22.9" height="15.0" fill="rgb(230,87,38)" rx="2" ry="2" />
+<text  x="1120.16" y="671.5" >p..</text>
+</g>
+<g >
+<title>___sys_sendmsg (511,251,793 samples, 0.42%)</title><rect x="407.6" y="421" width="5.0" height="15.0" fill="rgb(233,161,53)" rx="2" ry="2" />
+<text  x="410.63" y="431.5" ></text>
+</g>
+<g >
+<title>ip_output (20,984,521 samples, 0.02%)</title><rect x="877.3" y="357" width="0.2" height="15.0" fill="rgb(236,71,52)" rx="2" ry="2" />
+<text  x="880.30" y="367.5" ></text>
+</g>
+<g >
+<title>ct_nmi_enter (221,369,488 samples, 0.18%)</title><rect x="928.9" y="645" width="2.1" height="15.0" fill="rgb(205,136,36)" rx="2" ry="2" />
+<text  x="931.88" y="655.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (27,303,793 samples, 0.02%)</title><rect x="373.6" y="421" width="0.3" height="15.0" fill="rgb(232,49,8)" rx="2" ry="2" />
+<text  x="376.60" y="431.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (26,313,979 samples, 0.02%)</title><rect x="415.0" y="405" width="0.2" height="15.0" fill="rgb(243,179,19)" rx="2" ry="2" />
+<text  x="417.95" y="415.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_state (45,175,719 samples, 0.04%)</title><rect x="302.2" y="357" width="0.4" height="15.0" fill="rgb(243,93,32)" rx="2" ry="2" />
+<text  x="305.15" y="367.5" ></text>
+</g>
+<g >
+<title>[unknown] (32,099,323 samples, 0.03%)</title><rect x="1189.4" y="789" width="0.3" height="15.0" fill="rgb(249,95,17)" rx="2" ry="2" />
+<text  x="1192.44" y="799.5" ></text>
+</g>
+<g >
+<title>__es_tree_search.isra.0 (15,618,138 samples, 0.01%)</title><rect x="433.0" y="501" width="0.2" height="15.0" fill="rgb(245,140,37)" rx="2" ry="2" />
+<text  x="436.00" y="511.5" ></text>
+</g>
+<g >
+<title>kworker/u64:14- (1,118,968,031 samples, 0.92%)</title><rect x="75.2" y="805" width="10.9" height="15.0" fill="rgb(240,156,24)" rx="2" ry="2" />
+<text  x="78.24" y="815.5" ></text>
+</g>
+<g >
+<title>worker_thread (903,220,189 samples, 0.75%)</title><rect x="272.0" y="757" width="8.8" height="15.0" fill="rgb(215,212,43)" rx="2" ry="2" />
+<text  x="275.05" y="767.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_alloc_node (24,027,520 samples, 0.02%)</title><rect x="303.7" y="357" width="0.2" height="15.0" fill="rgb(236,161,18)" rx="2" ry="2" />
+<text  x="306.71" y="367.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (16,617,099 samples, 0.01%)</title><rect x="399.8" y="757" width="0.2" height="15.0" fill="rgb(205,135,36)" rx="2" ry="2" />
+<text  x="402.82" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (19,297,371 samples, 0.02%)</title><rect x="397.7" y="469" width="0.2" height="15.0" fill="rgb(221,52,3)" rx="2" ry="2" />
+<text  x="400.72" y="479.5" ></text>
+</g>
+<g >
+<title>_copy_from_user (69,441,235 samples, 0.06%)</title><rect x="351.7" y="533" width="0.7" height="15.0" fill="rgb(248,168,0)" rx="2" ry="2" />
+<text  x="354.71" y="543.5" ></text>
+</g>
+<g >
+<title>__mod_timer (47,347,139 samples, 0.04%)</title><rect x="877.6" y="373" width="0.5" height="15.0" fill="rgb(253,229,2)" rx="2" ry="2" />
+<text  x="880.59" y="383.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (70,408,973 samples, 0.06%)</title><rect x="21.5" y="693" width="0.7" height="15.0" fill="rgb(205,95,30)" rx="2" ry="2" />
+<text  x="24.48" y="703.5" ></text>
+</g>
+<g >
+<title>lapic_next_event (14,904,056 samples, 0.01%)</title><rect x="916.8" y="613" width="0.1" height="15.0" fill="rgb(246,65,36)" rx="2" ry="2" />
+<text  x="919.80" y="623.5" ></text>
+</g>
+<g >
+<title>read (69,437,940 samples, 0.06%)</title><rect x="385.5" y="693" width="0.6" height="15.0" fill="rgb(216,56,15)" rx="2" ry="2" />
+<text  x="388.46" y="703.5" ></text>
+</g>
+<g >
+<title>__libc_calloc (15,426,226 samples, 0.01%)</title><rect x="297.1" y="533" width="0.1" height="15.0" fill="rgb(234,5,10)" rx="2" ry="2" />
+<text  x="300.09" y="543.5" ></text>
+</g>
+<g >
+<title>do_writepages (45,476,704 samples, 0.04%)</title><rect x="106.7" y="645" width="0.5" height="15.0" fill="rgb(238,117,8)" rx="2" ry="2" />
+<text  x="109.71" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (351,604,094 samples, 0.29%)</title><rect x="113.2" y="613" width="3.4" height="15.0" fill="rgb(223,205,22)" rx="2" ry="2" />
+<text  x="116.19" y="623.5" ></text>
+</g>
+<g >
+<title>do_sys_ftruncate (120,738,582 samples, 0.10%)</title><rect x="546.5" y="677" width="1.2" height="15.0" fill="rgb(219,203,41)" rx="2" ry="2" />
+<text  x="549.50" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (12,200,014 samples, 0.01%)</title><rect x="399.2" y="725" width="0.1" height="15.0" fill="rgb(208,135,17)" rx="2" ry="2" />
+<text  x="402.15" y="735.5" ></text>
+</g>
+<g >
+<title>update_load_avg (60,153,782 samples, 0.05%)</title><rect x="1172.2" y="661" width="0.5" height="15.0" fill="rgb(236,186,7)" rx="2" ry="2" />
+<text  x="1175.16" y="671.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (34,936,697 samples, 0.03%)</title><rect x="100.4" y="629" width="0.4" height="15.0" fill="rgb(228,10,53)" rx="2" ry="2" />
+<text  x="103.42" y="639.5" ></text>
+</g>
+<g >
+<title>xts_crypt (94,743,823 samples, 0.08%)</title><rect x="68.6" y="661" width="0.9" height="15.0" fill="rgb(220,40,33)" rx="2" ry="2" />
+<text  x="71.58" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (159,234,551 samples, 0.13%)</title><rect x="86.5" y="661" width="1.5" height="15.0" fill="rgb(229,179,16)" rx="2" ry="2" />
+<text  x="89.47" y="671.5" ></text>
+</g>
+<g >
+<title>__libc_sendmsg (522,103,252 samples, 0.43%)</title><rect x="407.6" y="485" width="5.1" height="15.0" fill="rgb(219,114,17)" rx="2" ry="2" />
+<text  x="410.58" y="495.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (38,380,300 samples, 0.03%)</title><rect x="172.8" y="629" width="0.4" height="15.0" fill="rgb(233,193,51)" rx="2" ry="2" />
+<text  x="175.83" y="639.5" ></text>
+</g>
+<g >
+<title>allocate_slab (13,494,301 samples, 0.01%)</title><rect x="429.3" y="453" width="0.1" height="15.0" fill="rgb(224,124,53)" rx="2" ry="2" />
+<text  x="432.29" y="463.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (26,401,507 samples, 0.02%)</title><rect x="398.7" y="453" width="0.2" height="15.0" fill="rgb(230,150,5)" rx="2" ry="2" />
+<text  x="401.67" y="463.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (61,843,553 samples, 0.05%)</title><rect x="401.5" y="453" width="0.6" height="15.0" fill="rgb(238,150,31)" rx="2" ry="2" />
+<text  x="404.49" y="463.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (386,224,562 samples, 0.32%)</title><rect x="97.3" y="677" width="3.8" height="15.0" fill="rgb(234,195,0)" rx="2" ry="2" />
+<text  x="100.34" y="687.5" ></text>
+</g>
+<g >
+<title>nbdkit (11,943,542,267 samples, 9.85%)</title><rect x="281.0" y="805" width="116.2" height="15.0" fill="rgb(226,219,26)" rx="2" ry="2" />
+<text  x="283.96" y="815.5" >nbdkit</text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (282,522,755 samples, 0.23%)</title><rect x="1110.4" y="677" width="2.8" height="15.0" fill="rgb(247,137,34)" rx="2" ry="2" />
+<text  x="1113.43" y="687.5" ></text>
+</g>
+<g >
+<title>read_tsc (19,005,157 samples, 0.02%)</title><rect x="807.4" y="533" width="0.2" height="15.0" fill="rgb(251,83,4)" rx="2" ry="2" />
+<text  x="810.40" y="543.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (251,013,019 samples, 0.21%)</title><rect x="101.1" y="677" width="2.4" height="15.0" fill="rgb(246,2,14)" rx="2" ry="2" />
+<text  x="104.10" y="687.5" ></text>
+</g>
+<g >
+<title>ip6_xmit (11,174,314 samples, 0.01%)</title><rect x="400.4" y="325" width="0.1" height="15.0" fill="rgb(219,135,40)" rx="2" ry="2" />
+<text  x="403.44" y="335.5" ></text>
+</g>
+<g >
+<title>__sysvec_call_function_single (630,920,105 samples, 0.52%)</title><rect x="1029.0" y="661" width="6.2" height="15.0" fill="rgb(243,3,54)" rx="2" ry="2" />
+<text  x="1032.03" y="671.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (1,009,725,080 samples, 0.83%)</title><rect x="404.3" y="677" width="9.8" height="15.0" fill="rgb(212,165,16)" rx="2" ry="2" />
+<text  x="407.29" y="687.5" ></text>
+</g>
+<g >
+<title>ebt_do_table (99,910,732 samples, 0.08%)</title><rect x="904.2" y="501" width="0.9" height="15.0" fill="rgb(228,63,19)" rx="2" ry="2" />
+<text  x="907.16" y="511.5" ></text>
+</g>
+<g >
+<title>curl_maprintf (86,713,313 samples, 0.07%)</title><rect x="348.7" y="565" width="0.9" height="15.0" fill="rgb(247,229,49)" rx="2" ry="2" />
+<text  x="351.73" y="575.5" ></text>
+</g>
+<g >
+<title>memcpy (239,994,791 samples, 0.20%)</title><rect x="803.4" y="581" width="2.3" height="15.0" fill="rgb(235,42,18)" rx="2" ry="2" />
+<text  x="806.41" y="591.5" ></text>
+</g>
+<g >
+<title>ktime_get (178,850,341 samples, 0.15%)</title><rect x="1180.7" y="709" width="1.7" height="15.0" fill="rgb(214,170,44)" rx="2" ry="2" />
+<text  x="1183.71" y="719.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (229,506,618 samples, 0.19%)</title><rect x="400.2" y="629" width="2.2" height="15.0" fill="rgb(225,131,54)" rx="2" ry="2" />
+<text  x="403.16" y="639.5" ></text>
+</g>
+<g >
+<title>wb_workfn (46,004,864 samples, 0.04%)</title><rect x="106.7" y="725" width="0.5" height="15.0" fill="rgb(246,7,8)" rx="2" ry="2" />
+<text  x="109.70" y="735.5" ></text>
+</g>
+<g >
+<title>error_entry (84,163,852 samples, 0.07%)</title><rect x="557.4" y="789" width="0.9" height="15.0" fill="rgb(247,75,33)" rx="2" ry="2" />
+<text  x="560.44" y="799.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (22,190,795 samples, 0.02%)</title><rect x="1178.8" y="693" width="0.3" height="15.0" fill="rgb(216,201,1)" rx="2" ry="2" />
+<text  x="1181.84" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (318,630,462 samples, 0.26%)</title><rect x="206.4" y="677" width="3.1" height="15.0" fill="rgb(242,144,12)" rx="2" ry="2" />
+<text  x="209.43" y="687.5" ></text>
+</g>
+<g >
+<title>kthread (925,316,212 samples, 0.76%)</title><rect x="237.0" y="773" width="9.0" height="15.0" fill="rgb(220,207,33)" rx="2" ry="2" />
+<text  x="239.95" y="783.5" ></text>
+</g>
+<g >
+<title>send_call_function_single_ipi (12,131,324 samples, 0.01%)</title><rect x="885.8" y="261" width="0.1" height="15.0" fill="rgb(222,140,0)" rx="2" ry="2" />
+<text  x="888.76" y="271.5" ></text>
+</g>
+<g >
+<title>tcp_v6_rcv (149,187,691 samples, 0.12%)</title><rect x="388.9" y="309" width="1.4" height="15.0" fill="rgb(230,89,16)" rx="2" ry="2" />
+<text  x="391.86" y="319.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (21,907,390 samples, 0.02%)</title><rect x="408.9" y="101" width="0.2" height="15.0" fill="rgb(245,120,41)" rx="2" ry="2" />
+<text  x="411.93" y="111.5" ></text>
+</g>
+<g >
+<title>napi_complete_done (425,742,198 samples, 0.35%)</title><rect x="805.7" y="581" width="4.2" height="15.0" fill="rgb(226,203,38)" rx="2" ry="2" />
+<text  x="808.74" y="591.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (17,356,619 samples, 0.01%)</title><rect x="334.1" y="501" width="0.1" height="15.0" fill="rgb(228,92,11)" rx="2" ry="2" />
+<text  x="337.07" y="511.5" ></text>
+</g>
+<g >
+<title>load_balance (14,346,370 samples, 0.01%)</title><rect x="553.6" y="613" width="0.1" height="15.0" fill="rgb(222,205,20)" rx="2" ry="2" />
+<text  x="556.55" y="623.5" ></text>
+</g>
+<g >
+<title>enqueue_hrtimer (25,849,307 samples, 0.02%)</title><rect x="364.7" y="453" width="0.2" height="15.0" fill="rgb(206,17,43)" rx="2" ry="2" />
+<text  x="367.66" y="463.5" ></text>
+</g>
+<g >
+<title>siphash_4u64 (49,271,264 samples, 0.04%)</title><rect x="893.2" y="389" width="0.4" height="15.0" fill="rgb(231,83,23)" rx="2" ry="2" />
+<text  x="896.16" y="399.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (766,494,496 samples, 0.63%)</title><rect x="415.7" y="741" width="7.5" height="15.0" fill="rgb(237,216,15)" rx="2" ry="2" />
+<text  x="418.70" y="751.5" ></text>
+</g>
+<g >
+<title>__ip_finish_output (14,646,524 samples, 0.01%)</title><rect x="305.1" y="373" width="0.1" height="15.0" fill="rgb(226,2,53)" rx="2" ry="2" />
+<text  x="308.09" y="383.5" ></text>
+</g>
+<g >
+<title>pthread_cond_signal@@GLIBC_2.3.2 (22,449,012 samples, 0.02%)</title><rect x="402.2" y="533" width="0.2" height="15.0" fill="rgb(251,135,43)" rx="2" ry="2" />
+<text  x="405.18" y="543.5" ></text>
+</g>
+<g >
+<title>start_thread (11,744,905,854 samples, 9.69%)</title><rect x="282.5" y="757" width="114.4" height="15.0" fill="rgb(222,229,5)" rx="2" ry="2" />
+<text  x="285.53" y="767.5" >start_thread</text>
+</g>
+<g >
+<title>ip6_input_finish (159,670,099 samples, 0.13%)</title><rect x="388.8" y="341" width="1.5" height="15.0" fill="rgb(205,63,51)" rx="2" ry="2" />
+<text  x="391.76" y="351.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (57,498,745 samples, 0.05%)</title><rect x="859.5" y="597" width="0.6" height="15.0" fill="rgb(209,83,25)" rx="2" ry="2" />
+<text  x="862.52" y="607.5" ></text>
+</g>
+<g >
+<title>native_write_msr (21,276,547 samples, 0.02%)</title><rect x="914.8" y="485" width="0.3" height="15.0" fill="rgb(249,5,4)" rx="2" ry="2" />
+<text  x="917.85" y="495.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (699,576,455 samples, 0.58%)</title><rect x="326.4" y="485" width="6.8" height="15.0" fill="rgb(229,173,43)" rx="2" ry="2" />
+<text  x="329.43" y="495.5" ></text>
+</g>
+<g >
+<title>eth_type_trans (25,543,422 samples, 0.02%)</title><rect x="802.9" y="581" width="0.2" height="15.0" fill="rgb(227,26,37)" rx="2" ry="2" />
+<text  x="805.88" y="591.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (36,572,160 samples, 0.03%)</title><rect x="257.8" y="629" width="0.4" height="15.0" fill="rgb(210,61,28)" rx="2" ry="2" />
+<text  x="260.83" y="639.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (16,446,256 samples, 0.01%)</title><rect x="110.2" y="629" width="0.1" height="15.0" fill="rgb(206,17,45)" rx="2" ry="2" />
+<text  x="113.17" y="639.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (27,152,643 samples, 0.02%)</title><rect x="345.6" y="485" width="0.3" height="15.0" fill="rgb(248,191,42)" rx="2" ry="2" />
+<text  x="348.61" y="495.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (127,635,984 samples, 0.11%)</title><rect x="207.5" y="661" width="1.3" height="15.0" fill="rgb(231,51,25)" rx="2" ry="2" />
+<text  x="210.55" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (111,970,919 samples, 0.09%)</title><rect x="265.8" y="661" width="1.1" height="15.0" fill="rgb(246,81,2)" rx="2" ry="2" />
+<text  x="268.84" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (160,482,086 samples, 0.13%)</title><rect x="869.9" y="405" width="1.6" height="15.0" fill="rgb(206,63,48)" rx="2" ry="2" />
+<text  x="872.94" y="415.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (113,013,807 samples, 0.09%)</title><rect x="564.2" y="629" width="1.1" height="15.0" fill="rgb(228,1,20)" rx="2" ry="2" />
+<text  x="567.20" y="639.5" ></text>
+</g>
+<g >
+<title>ktime_get (29,754,922 samples, 0.02%)</title><rect x="1184.1" y="645" width="0.2" height="15.0" fill="rgb(218,144,40)" rx="2" ry="2" />
+<text  x="1187.05" y="655.5" ></text>
+</g>
+<g >
+<title>bdrv_co_preadv_part (103,209,858 samples, 0.09%)</title><rect x="402.4" y="629" width="1.0" height="15.0" fill="rgb(240,132,18)" rx="2" ry="2" />
+<text  x="405.40" y="639.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,035,371,795 samples, 0.85%)</title><rect x="116.6" y="789" width="10.1" height="15.0" fill="rgb(247,160,52)" rx="2" ry="2" />
+<text  x="119.64" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (456,442,457 samples, 0.38%)</title><rect x="185.1" y="677" width="4.4" height="15.0" fill="rgb(244,38,50)" rx="2" ry="2" />
+<text  x="188.06" y="687.5" ></text>
+</g>
+<g >
+<title>mpage_submit_page (215,510,826 samples, 0.18%)</title><rect x="202.9" y="581" width="2.1" height="15.0" fill="rgb(245,67,31)" rx="2" ry="2" />
+<text  x="205.92" y="591.5" ></text>
+</g>
+<g >
+<title>kworker/u64:21 (1,100,962,040 samples, 0.91%)</title><rect x="158.8" y="805" width="10.8" height="15.0" fill="rgb(223,95,51)" rx="2" ry="2" />
+<text  x="161.84" y="815.5" ></text>
+</g>
+<g >
+<title>__default_morecore@GLIBC_2.2.5 (26,013,035 samples, 0.02%)</title><rect x="413.0" y="581" width="0.2" height="15.0" fill="rgb(233,64,22)" rx="2" ry="2" />
+<text  x="415.95" y="591.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (56,600,762 samples, 0.05%)</title><rect x="361.3" y="469" width="0.6" height="15.0" fill="rgb(229,11,48)" rx="2" ry="2" />
+<text  x="364.33" y="479.5" ></text>
+</g>
+<g >
+<title>br_pass_frame_up (102,507,366 samples, 0.08%)</title><rect x="864.1" y="485" width="1.0" height="15.0" fill="rgb(224,219,7)" rx="2" ry="2" />
+<text  x="867.11" y="495.5" ></text>
+</g>
+<g >
+<title>g_source_remove_poll (13,951,083 samples, 0.01%)</title><rect x="400.7" y="485" width="0.2" height="15.0" fill="rgb(241,92,21)" rx="2" ry="2" />
+<text  x="403.72" y="495.5" ></text>
+</g>
+<g >
+<title>__ext4_mark_inode_dirty (24,980,843 samples, 0.02%)</title><rect x="424.0" y="533" width="0.2" height="15.0" fill="rgb(228,199,47)" rx="2" ry="2" />
+<text  x="426.98" y="543.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (38,613,254 samples, 0.03%)</title><rect x="15.4" y="629" width="0.4" height="15.0" fill="rgb(244,70,38)" rx="2" ry="2" />
+<text  x="18.44" y="639.5" ></text>
+</g>
+<g >
+<title>inet6_csk_xmit (53,978,523 samples, 0.04%)</title><rect x="396.0" y="533" width="0.6" height="15.0" fill="rgb(223,164,3)" rx="2" ry="2" />
+<text  x="399.03" y="543.5" ></text>
+</g>
+<g >
+<title>ktime_get (35,089,520 samples, 0.03%)</title><rect x="916.5" y="613" width="0.3" height="15.0" fill="rgb(249,6,39)" rx="2" ry="2" />
+<text  x="919.45" y="623.5" ></text>
+</g>
+<g >
+<title>__br_forward (93,239,832 samples, 0.08%)</title><rect x="306.3" y="309" width="0.9" height="15.0" fill="rgb(227,12,27)" rx="2" ry="2" />
+<text  x="309.34" y="319.5" ></text>
+</g>
+<g >
+<title>vfs_read (24,835,134 samples, 0.02%)</title><rect x="417.5" y="565" width="0.2" height="15.0" fill="rgb(238,179,54)" rx="2" ry="2" />
+<text  x="420.50" y="575.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (87,204,304 samples, 0.07%)</title><rect x="303.6" y="389" width="0.8" height="15.0" fill="rgb(222,218,38)" rx="2" ry="2" />
+<text  x="306.56" y="399.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (13,674,486 samples, 0.01%)</title><rect x="1104.4" y="693" width="0.1" height="15.0" fill="rgb(242,219,33)" rx="2" ry="2" />
+<text  x="1107.38" y="703.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (97,088,241 samples, 0.08%)</title><rect x="235.7" y="693" width="0.9" height="15.0" fill="rgb(221,45,14)" rx="2" ry="2" />
+<text  x="238.67" y="703.5" ></text>
+</g>
+<g >
+<title>path_openat (14,344,125 samples, 0.01%)</title><rect x="399.8" y="677" width="0.2" height="15.0" fill="rgb(235,45,43)" rx="2" ry="2" />
+<text  x="402.84" y="687.5" ></text>
+</g>
+<g >
+<title>kworker/u64:24 (612,778,030 samples, 0.51%)</title><rect x="178.9" y="805" width="5.9" height="15.0" fill="rgb(210,80,38)" rx="2" ry="2" />
+<text  x="181.86" y="815.5" ></text>
+</g>
+<g >
+<title>tcp_stream_memory_free (20,518,583 samples, 0.02%)</title><rect x="379.5" y="453" width="0.2" height="15.0" fill="rgb(218,146,15)" rx="2" ry="2" />
+<text  x="382.50" y="463.5" ></text>
+</g>
+<g >
+<title>__br_forward (10,633,802 samples, 0.01%)</title><rect x="875.5" y="293" width="0.1" height="15.0" fill="rgb(212,16,19)" rx="2" ry="2" />
+<text  x="878.49" y="303.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (76,193,395 samples, 0.06%)</title><rect x="109.3" y="661" width="0.7" height="15.0" fill="rgb(251,161,11)" rx="2" ry="2" />
+<text  x="112.26" y="671.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (17,559,127 samples, 0.01%)</title><rect x="391.5" y="389" width="0.1" height="15.0" fill="rgb(213,47,35)" rx="2" ry="2" />
+<text  x="394.45" y="399.5" ></text>
+</g>
+<g >
+<title>tcp_queue_rcv (14,619,324 samples, 0.01%)</title><rect x="886.6" y="357" width="0.1" height="15.0" fill="rgb(230,76,32)" rx="2" ry="2" />
+<text  x="889.60" y="367.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (237,183,751 samples, 0.20%)</title><rect x="875.2" y="373" width="2.3" height="15.0" fill="rgb(219,107,44)" rx="2" ry="2" />
+<text  x="878.20" y="383.5" ></text>
+</g>
+<g >
+<title>xts_crypt (122,908,532 samples, 0.10%)</title><rect x="228.8" y="661" width="1.2" height="15.0" fill="rgb(250,227,47)" rx="2" ry="2" />
+<text  x="231.77" y="671.5" ></text>
+</g>
+<g >
+<title>[perf] (181,735,652 samples, 0.15%)</title><rect x="397.2" y="677" width="1.8" height="15.0" fill="rgb(241,112,1)" rx="2" ry="2" />
+<text  x="400.23" y="687.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (2,359,657,012 samples, 1.95%)</title><rect x="357.8" y="501" width="23.0" height="15.0" fill="rgb(252,32,26)" rx="2" ry="2" />
+<text  x="360.79" y="511.5" >d..</text>
+</g>
+<g >
+<title>__irq_exit_rcu (16,526,126 samples, 0.01%)</title><rect x="1170.1" y="645" width="0.2" height="15.0" fill="rgb(231,148,9)" rx="2" ry="2" />
+<text  x="1173.09" y="655.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (20,298,255 samples, 0.02%)</title><rect x="543.2" y="629" width="0.2" height="15.0" fill="rgb(218,190,38)" rx="2" ry="2" />
+<text  x="546.21" y="639.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (61,913,472 samples, 0.05%)</title><rect x="402.7" y="309" width="0.6" height="15.0" fill="rgb(253,12,48)" rx="2" ry="2" />
+<text  x="405.73" y="319.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (20,346,186 samples, 0.02%)</title><rect x="108.3" y="645" width="0.2" height="15.0" fill="rgb(236,146,18)" rx="2" ry="2" />
+<text  x="111.35" y="655.5" ></text>
+</g>
+<g >
+<title>ebt_do_table (18,981,736 samples, 0.02%)</title><rect x="311.8" y="277" width="0.2" height="15.0" fill="rgb(213,96,10)" rx="2" ry="2" />
+<text  x="314.85" y="287.5" ></text>
+</g>
+<g >
+<title>kthread (1,141,645,781 samples, 0.94%)</title><rect x="43.3" y="773" width="11.1" height="15.0" fill="rgb(217,56,9)" rx="2" ry="2" />
+<text  x="46.26" y="783.5" ></text>
+</g>
+<g >
+<title>tick_nohz_get_next_hrtimer (11,990,033 samples, 0.01%)</title><rect x="1097.3" y="709" width="0.1" height="15.0" fill="rgb(229,157,19)" rx="2" ry="2" />
+<text  x="1100.26" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (2,786,308,682 samples, 2.30%)</title><rect x="423.5" y="677" width="27.1" height="15.0" fill="rgb(218,219,25)" rx="2" ry="2" />
+<text  x="426.50" y="687.5" >e..</text>
+</g>
+<g >
+<title>netif_receive_skb (188,443,174 samples, 0.16%)</title><rect x="808.0" y="485" width="1.8" height="15.0" fill="rgb(225,217,29)" rx="2" ry="2" />
+<text  x="810.98" y="495.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (20,076,389 samples, 0.02%)</title><rect x="1028.3" y="677" width="0.2" height="15.0" fill="rgb(244,82,29)" rx="2" ry="2" />
+<text  x="1031.34" y="687.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (19,577,350 samples, 0.02%)</title><rect x="401.6" y="341" width="0.2" height="15.0" fill="rgb(224,24,37)" rx="2" ry="2" />
+<text  x="404.57" y="351.5" ></text>
+</g>
+<g >
+<title>__common_interrupt (25,049,460 samples, 0.02%)</title><rect x="563.4" y="629" width="0.2" height="15.0" fill="rgb(244,223,48)" rx="2" ry="2" />
+<text  x="566.40" y="639.5" ></text>
+</g>
+<g >
+<title>selinux_ip_output (12,671,097 samples, 0.01%)</title><rect x="318.2" y="325" width="0.1" height="15.0" fill="rgb(223,60,40)" rx="2" ry="2" />
+<text  x="321.20" y="335.5" ></text>
+</g>
+<g >
+<title>native_apic_mem_write (31,036,832 samples, 0.03%)</title><rect x="772.9" y="629" width="0.3" height="15.0" fill="rgb(230,159,11)" rx="2" ry="2" />
+<text  x="775.87" y="639.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (120,738,582 samples, 0.10%)</title><rect x="546.5" y="693" width="1.2" height="15.0" fill="rgb(222,173,2)" rx="2" ry="2" />
+<text  x="549.50" y="703.5" ></text>
+</g>
+<g >
+<title>pm_qos_read_value (60,923,446 samples, 0.05%)</title><rect x="1155.8" y="693" width="0.6" height="15.0" fill="rgb(239,139,49)" rx="2" ry="2" />
+<text  x="1158.82" y="703.5" ></text>
+</g>
+<g >
+<title>error_entry (12,494,489 samples, 0.01%)</title><rect x="1028.2" y="677" width="0.1" height="15.0" fill="rgb(212,0,33)" rx="2" ry="2" />
+<text  x="1031.22" y="687.5" ></text>
+</g>
+<g >
+<title>arch_call_rest_init (812,027,677 samples, 0.67%)</title><rect x="558.7" y="757" width="7.9" height="15.0" fill="rgb(232,152,10)" rx="2" ry="2" />
+<text  x="561.71" y="767.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (31,841,107 samples, 0.03%)</title><rect x="340.2" y="533" width="0.3" height="15.0" fill="rgb(241,91,8)" rx="2" ry="2" />
+<text  x="343.23" y="543.5" ></text>
+</g>
+<g >
+<title>newidle_balance (15,702,175 samples, 0.01%)</title><rect x="551.6" y="517" width="0.1" height="15.0" fill="rgb(228,182,10)" rx="2" ry="2" />
+<text  x="554.55" y="527.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (27,673,907 samples, 0.02%)</title><rect x="401.8" y="309" width="0.2" height="15.0" fill="rgb(220,163,27)" rx="2" ry="2" />
+<text  x="404.78" y="319.5" ></text>
+</g>
+<g >
+<title>qemu_mutex_unlock_impl (13,386,636 samples, 0.01%)</title><rect x="552.9" y="725" width="0.1" height="15.0" fill="rgb(227,184,49)" rx="2" ry="2" />
+<text  x="555.91" y="735.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (28,708,414 samples, 0.02%)</title><rect x="281.8" y="725" width="0.3" height="15.0" fill="rgb(250,222,39)" rx="2" ry="2" />
+<text  x="284.80" y="735.5" ></text>
+</g>
+<g >
+<title>process_one_work (902,526,129 samples, 0.74%)</title><rect x="272.0" y="741" width="8.8" height="15.0" fill="rgb(226,92,20)" rx="2" ry="2" />
+<text  x="275.05" y="751.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (199,735,679 samples, 0.16%)</title><rect x="907.6" y="645" width="1.9" height="15.0" fill="rgb(216,141,15)" rx="2" ry="2" />
+<text  x="910.59" y="655.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (66,444,908 samples, 0.05%)</title><rect x="346.6" y="533" width="0.6" height="15.0" fill="rgb(211,188,3)" rx="2" ry="2" />
+<text  x="349.57" y="543.5" ></text>
+</g>
+<g >
+<title>security_socket_recvmsg (115,742,820 samples, 0.10%)</title><rect x="323.4" y="437" width="1.2" height="15.0" fill="rgb(221,192,42)" rx="2" ry="2" />
+<text  x="326.44" y="447.5" ></text>
+</g>
+<g >
+<title>inet6_csk_xmit (18,444,312 samples, 0.02%)</title><rect x="401.6" y="325" width="0.2" height="15.0" fill="rgb(210,159,54)" rx="2" ry="2" />
+<text  x="404.58" y="335.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (155,564,409 samples, 0.13%)</title><rect x="159.1" y="661" width="1.5" height="15.0" fill="rgb(246,222,39)" rx="2" ry="2" />
+<text  x="162.13" y="671.5" ></text>
+</g>
+<g >
+<title>xts_crypt (100,986,607 samples, 0.08%)</title><rect x="257.6" y="661" width="1.0" height="15.0" fill="rgb(231,212,50)" rx="2" ry="2" />
+<text  x="260.63" y="671.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,130,081,586 samples, 0.93%)</title><rect x="137.5" y="789" width="11.0" height="15.0" fill="rgb(207,77,6)" rx="2" ry="2" />
+<text  x="140.52" y="799.5" ></text>
+</g>
+<g >
+<title>bdrv_co_preadv_part (1,014,484,909 samples, 0.84%)</title><rect x="404.3" y="693" width="9.8" height="15.0" fill="rgb(227,127,29)" rx="2" ry="2" />
+<text  x="407.27" y="703.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (15,125,776 samples, 0.01%)</title><rect x="224.9" y="629" width="0.1" height="15.0" fill="rgb(229,23,30)" rx="2" ry="2" />
+<text  x="227.89" y="639.5" ></text>
+</g>
+<g >
+<title>fault_in_readable (12,552,026 samples, 0.01%)</title><rect x="398.4" y="485" width="0.1" height="15.0" fill="rgb(254,135,2)" rx="2" ry="2" />
+<text  x="401.39" y="495.5" ></text>
+</g>
+<g >
+<title>tick_nohz_stop_tick (165,555,576 samples, 0.14%)</title><rect x="1187.4" y="709" width="1.6" height="15.0" fill="rgb(250,34,35)" rx="2" ry="2" />
+<text  x="1190.39" y="719.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (15,860,173 samples, 0.01%)</title><rect x="847.9" y="629" width="0.1" height="15.0" fill="rgb(244,94,6)" rx="2" ry="2" />
+<text  x="850.87" y="639.5" ></text>
+</g>
+<g >
+<title>read_tsc (37,616,674 samples, 0.03%)</title><rect x="381.1" y="469" width="0.4" height="15.0" fill="rgb(218,196,54)" rx="2" ry="2" />
+<text  x="384.14" y="479.5" ></text>
+</g>
+<g >
+<title>local_touch_nmi (50,150,893 samples, 0.04%)</title><rect x="1143.0" y="725" width="0.5" height="15.0" fill="rgb(211,162,37)" rx="2" ry="2" />
+<text  x="1146.00" y="735.5" ></text>
+</g>
+<g >
+<title>memcg_slab_post_alloc_hook (46,682,376 samples, 0.04%)</title><rect x="429.8" y="485" width="0.4" height="15.0" fill="rgb(215,56,8)" rx="2" ry="2" />
+<text  x="432.77" y="495.5" ></text>
+</g>
+<g >
+<title>process_backlog (30,079,332 samples, 0.02%)</title><rect x="396.1" y="389" width="0.3" height="15.0" fill="rgb(251,11,14)" rx="2" ry="2" />
+<text  x="399.11" y="399.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (260,734,743 samples, 0.22%)</title><rect x="152.9" y="677" width="2.6" height="15.0" fill="rgb(209,121,40)" rx="2" ry="2" />
+<text  x="155.92" y="687.5" ></text>
+</g>
+<g >
+<title>inet6_csk_xmit (377,932,918 samples, 0.31%)</title><rect x="408.2" y="293" width="3.6" height="15.0" fill="rgb(213,29,46)" rx="2" ry="2" />
+<text  x="411.17" y="303.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (359,312,888 samples, 0.30%)</title><rect x="419.4" y="693" width="3.5" height="15.0" fill="rgb(228,189,13)" rx="2" ry="2" />
+<text  x="422.43" y="703.5" ></text>
+</g>
+<g >
+<title>ct_nmi_enter (23,690,385 samples, 0.02%)</title><rect x="1037.3" y="645" width="0.2" height="15.0" fill="rgb(207,185,18)" rx="2" ry="2" />
+<text  x="1040.29" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (26,953,407 samples, 0.02%)</title><rect x="206.1" y="709" width="0.2" height="15.0" fill="rgb(254,187,12)" rx="2" ry="2" />
+<text  x="209.07" y="719.5" ></text>
+</g>
+<g >
+<title>curl_msnprintf (34,460,919 samples, 0.03%)</title><rect x="340.2" y="565" width="0.4" height="15.0" fill="rgb(221,158,53)" rx="2" ry="2" />
+<text  x="343.23" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (241,193,564 samples, 0.20%)</title><rect x="121.0" y="677" width="2.4" height="15.0" fill="rgb(254,203,30)" rx="2" ry="2" />
+<text  x="124.00" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (474,594,637 samples, 0.39%)</title><rect x="126.9" y="677" width="4.6" height="15.0" fill="rgb(211,129,40)" rx="2" ry="2" />
+<text  x="129.91" y="687.5" ></text>
+</g>
+<g >
+<title>psi_task_change (106,805,969 samples, 0.09%)</title><rect x="1033.4" y="597" width="1.1" height="15.0" fill="rgb(223,200,38)" rx="2" ry="2" />
+<text  x="1036.42" y="607.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,133,859,649 samples, 0.94%)</title><rect x="54.5" y="725" width="11.0" height="15.0" fill="rgb(218,24,0)" rx="2" ry="2" />
+<text  x="57.48" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,289,246 samples, 0.01%)</title><rect x="553.8" y="661" width="0.1" height="15.0" fill="rgb(224,70,16)" rx="2" ry="2" />
+<text  x="556.80" y="671.5" ></text>
+</g>
+<g >
+<title>_copy_to_user (51,481,209 samples, 0.04%)</title><rect x="344.5" y="517" width="0.5" height="15.0" fill="rgb(250,54,6)" rx="2" ry="2" />
+<text  x="347.46" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (156,668,571 samples, 0.13%)</title><rect x="54.8" y="661" width="1.5" height="15.0" fill="rgb(245,65,30)" rx="2" ry="2" />
+<text  x="57.79" y="671.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (103,209,858 samples, 0.09%)</title><rect x="402.4" y="613" width="1.0" height="15.0" fill="rgb(251,142,44)" rx="2" ry="2" />
+<text  x="405.40" y="623.5" ></text>
+</g>
+<g >
+<title>refill_stock (49,859,761 samples, 0.04%)</title><rect x="302.6" y="389" width="0.5" height="15.0" fill="rgb(239,198,41)" rx="2" ry="2" />
+<text  x="305.63" y="399.5" ></text>
+</g>
+<g >
+<title>blk_add_rq_to_plug (39,227,465 samples, 0.03%)</title><rect x="10.3" y="693" width="0.4" height="15.0" fill="rgb(232,161,15)" rx="2" ry="2" />
+<text  x="13.31" y="703.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (22,031,879 samples, 0.02%)</title><rect x="114.3" y="533" width="0.2" height="15.0" fill="rgb(223,50,8)" rx="2" ry="2" />
+<text  x="117.29" y="543.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (33,434,366 samples, 0.03%)</title><rect x="36.9" y="645" width="0.3" height="15.0" fill="rgb(231,224,10)" rx="2" ry="2" />
+<text  x="39.92" y="655.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (207,320,481 samples, 0.17%)</title><rect x="381.6" y="517" width="2.0" height="15.0" fill="rgb(247,87,4)" rx="2" ry="2" />
+<text  x="384.61" y="527.5" ></text>
+</g>
+<g >
+<title>inet_gro_receive (241,741,655 samples, 0.20%)</title><rect x="811.9" y="549" width="2.3" height="15.0" fill="rgb(210,0,53)" rx="2" ry="2" />
+<text  x="814.89" y="559.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (10,464,161 samples, 0.01%)</title><rect x="435.4" y="453" width="0.1" height="15.0" fill="rgb(231,86,14)" rx="2" ry="2" />
+<text  x="438.44" y="463.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (45,476,704 samples, 0.04%)</title><rect x="106.7" y="613" width="0.5" height="15.0" fill="rgb(222,219,47)" rx="2" ry="2" />
+<text  x="109.71" y="623.5" ></text>
+</g>
+<g >
+<title>__sys_sendto (1,059,075,135 samples, 0.87%)</title><rect x="386.3" y="629" width="10.3" height="15.0" fill="rgb(240,228,11)" rx="2" ry="2" />
+<text  x="389.33" y="639.5" ></text>
+</g>
+<g >
+<title>hrtimer_try_to_cancel (119,402,110 samples, 0.10%)</title><rect x="365.0" y="469" width="1.2" height="15.0" fill="rgb(233,61,8)" rx="2" ry="2" />
+<text  x="368.03" y="479.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (288,476,281 samples, 0.24%)</title><rect x="59.1" y="677" width="2.8" height="15.0" fill="rgb(242,221,32)" rx="2" ry="2" />
+<text  x="62.14" y="687.5" ></text>
+</g>
+<g >
+<title>tick_irq_enter (2,229,045,980 samples, 1.84%)</title><rect x="822.5" y="645" width="21.7" height="15.0" fill="rgb(218,27,40)" rx="2" ry="2" />
+<text  x="825.46" y="655.5" >t..</text>
+</g>
+<g >
+<title>xa_get_order (18,752,153 samples, 0.02%)</title><rect x="436.7" y="501" width="0.2" height="15.0" fill="rgb(221,33,50)" rx="2" ry="2" />
+<text  x="439.70" y="511.5" ></text>
+</g>
+<g >
+<title>kworker/u64:8-k (755,451,458 samples, 0.62%)</title><rect x="264.7" y="805" width="7.3" height="15.0" fill="rgb(216,105,23)" rx="2" ry="2" />
+<text  x="267.69" y="815.5" ></text>
+</g>
+<g >
+<title>__poll (2,999,434,792 samples, 2.47%)</title><rect x="355.4" y="565" width="29.2" height="15.0" fill="rgb(253,121,51)" rx="2" ry="2" />
+<text  x="358.36" y="575.5" >__..</text>
+</g>
+<g >
+<title>get_cpu_device (117,404,097 samples, 0.10%)</title><rect x="1154.7" y="693" width="1.1" height="15.0" fill="rgb(222,73,43)" rx="2" ry="2" />
+<text  x="1157.68" y="703.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (31,872,891 samples, 0.03%)</title><rect x="1077.1" y="661" width="0.3" height="15.0" fill="rgb(214,118,35)" rx="2" ry="2" />
+<text  x="1080.09" y="671.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (40,463,840 samples, 0.03%)</title><rect x="411.2" y="245" width="0.4" height="15.0" fill="rgb(253,38,38)" rx="2" ry="2" />
+<text  x="414.23" y="255.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (41,553,223 samples, 0.03%)</title><rect x="58.4" y="629" width="0.4" height="15.0" fill="rgb(230,82,3)" rx="2" ry="2" />
+<text  x="61.35" y="639.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (86,061,372 samples, 0.07%)</title><rect x="402.5" y="421" width="0.9" height="15.0" fill="rgb(252,121,35)" rx="2" ry="2" />
+<text  x="405.52" y="431.5" ></text>
+</g>
+<g >
+<title>__isoc99_sscanf (13,495,616 samples, 0.01%)</title><rect x="350.2" y="549" width="0.1" height="15.0" fill="rgb(247,187,46)" rx="2" ry="2" />
+<text  x="353.21" y="559.5" ></text>
+</g>
+<g >
+<title>iommu_map_atomic (72,147,860 samples, 0.06%)</title><rect x="310.1" y="181" width="0.7" height="15.0" fill="rgb(246,167,6)" rx="2" ry="2" />
+<text  x="313.11" y="191.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (18,510,183 samples, 0.02%)</title><rect x="422.7" y="661" width="0.2" height="15.0" fill="rgb(240,26,42)" rx="2" ry="2" />
+<text  x="425.75" y="671.5" ></text>
+</g>
+<g >
+<title>__napi_poll (4,616,549,439 samples, 3.81%)</title><rect x="860.5" y="613" width="45.0" height="15.0" fill="rgb(249,54,3)" rx="2" ry="2" />
+<text  x="863.52" y="623.5" >__na..</text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (140,738,992 samples, 0.12%)</title><rect x="98.7" y="661" width="1.4" height="15.0" fill="rgb(207,36,35)" rx="2" ry="2" />
+<text  x="101.73" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock_bh (19,949,128 samples, 0.02%)</title><rect x="864.8" y="437" width="0.2" height="15.0" fill="rgb(245,81,1)" rx="2" ry="2" />
+<text  x="867.84" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (359,447,373 samples, 0.30%)</title><rect x="66.0" y="677" width="3.5" height="15.0" fill="rgb(220,189,37)" rx="2" ry="2" />
+<text  x="69.01" y="687.5" ></text>
+</g>
+<g >
+<title>ct_idle_exit (3,418,198,932 samples, 2.82%)</title><rect x="1037.9" y="693" width="33.3" height="15.0" fill="rgb(240,39,40)" rx="2" ry="2" />
+<text  x="1040.89" y="703.5" >ct..</text>
+</g>
+<g >
+<title>tcp_event_new_data_sent (13,164,120 samples, 0.01%)</title><rect x="296.1" y="357" width="0.1" height="15.0" fill="rgb(206,144,9)" rx="2" ry="2" />
+<text  x="299.07" y="367.5" ></text>
+</g>
+<g >
+<title>process_one_work (846,570,294 samples, 0.70%)</title><rect x="246.0" y="741" width="8.2" height="15.0" fill="rgb(230,20,41)" rx="2" ry="2" />
+<text  x="248.97" y="751.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (496,304,608 samples, 0.41%)</title><rect x="407.7" y="389" width="4.8" height="15.0" fill="rgb(231,169,15)" rx="2" ry="2" />
+<text  x="410.68" y="399.5" ></text>
+</g>
+<g >
+<title>eventfd_write (70,637,053 samples, 0.06%)</title><rect x="548.2" y="613" width="0.7" height="15.0" fill="rgb(206,130,21)" rx="2" ry="2" />
+<text  x="551.18" y="623.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (44,399,468 samples, 0.04%)</title><rect x="370.5" y="437" width="0.4" height="15.0" fill="rgb(215,31,24)" rx="2" ry="2" />
+<text  x="373.50" y="447.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (10,778,706 samples, 0.01%)</title><rect x="137.7" y="693" width="0.1" height="15.0" fill="rgb(245,61,14)" rx="2" ry="2" />
+<text  x="140.66" y="703.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (18,697,120 samples, 0.02%)</title><rect x="403.2" y="245" width="0.1" height="15.0" fill="rgb(238,121,49)" rx="2" ry="2" />
+<text  x="406.15" y="255.5" ></text>
+</g>
+<g >
+<title>__do_softirq (209,373,498 samples, 0.17%)</title><rect x="408.8" y="197" width="2.0" height="15.0" fill="rgb(253,208,41)" rx="2" ry="2" />
+<text  x="411.75" y="207.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,118,012,769 samples, 0.92%)</title><rect x="75.2" y="725" width="10.9" height="15.0" fill="rgb(240,98,20)" rx="2" ry="2" />
+<text  x="78.25" y="735.5" ></text>
+</g>
+<g >
+<title>kworker/u64:7-k (1,076,744,919 samples, 0.89%)</title><rect x="254.2" y="805" width="10.5" height="15.0" fill="rgb(254,152,25)" rx="2" ry="2" />
+<text  x="257.21" y="815.5" ></text>
+</g>
+<g >
+<title>kworker/u64:11 (1,141,645,781 samples, 0.94%)</title><rect x="43.3" y="805" width="11.1" height="15.0" fill="rgb(217,27,28)" rx="2" ry="2" />
+<text  x="46.26" y="815.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (80,371,241 samples, 0.07%)</title><rect x="414.5" y="613" width="0.8" height="15.0" fill="rgb(232,50,11)" rx="2" ry="2" />
+<text  x="417.48" y="623.5" ></text>
+</g>
+<g >
+<title>thread_pool_submit_aio (24,120,456 samples, 0.02%)</title><rect x="402.2" y="565" width="0.2" height="15.0" fill="rgb(221,169,5)" rx="2" ry="2" />
+<text  x="405.16" y="575.5" ></text>
+</g>
+<g >
+<title>irq_enter_rcu (137,856,182 samples, 0.11%)</title><rect x="1035.5" y="661" width="1.3" height="15.0" fill="rgb(219,34,15)" rx="2" ry="2" />
+<text  x="1038.47" y="671.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (339,639,475 samples, 0.28%)</title><rect x="400.1" y="725" width="3.3" height="15.0" fill="rgb(248,182,49)" rx="2" ry="2" />
+<text  x="403.12" y="735.5" ></text>
+</g>
+<g >
+<title>__vdso_clock_gettime (11,736,017 samples, 0.01%)</title><rect x="339.4" y="549" width="0.1" height="15.0" fill="rgb(231,5,50)" rx="2" ry="2" />
+<text  x="342.43" y="559.5" ></text>
+</g>
+<g >
+<title>__schedule (37,256,350 samples, 0.03%)</title><rect x="553.4" y="661" width="0.4" height="15.0" fill="rgb(226,196,53)" rx="2" ry="2" />
+<text  x="556.42" y="671.5" ></text>
+</g>
+<g >
+<title>nft_immediate_eval (144,933,124 samples, 0.12%)</title><rect x="901.1" y="389" width="1.5" height="15.0" fill="rgb(215,81,15)" rx="2" ry="2" />
+<text  x="904.15" y="399.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (163,834,149 samples, 0.14%)</title><rect x="128.6" y="661" width="1.6" height="15.0" fill="rgb(213,61,49)" rx="2" ry="2" />
+<text  x="131.56" y="671.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,200,679,192 samples, 0.99%)</title><rect x="225.2" y="725" width="11.7" height="15.0" fill="rgb(242,115,18)" rx="2" ry="2" />
+<text  x="228.25" y="735.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (15,561,836 samples, 0.01%)</title><rect x="1037.7" y="645" width="0.1" height="15.0" fill="rgb(211,69,23)" rx="2" ry="2" />
+<text  x="1040.67" y="655.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (72,921,046 samples, 0.06%)</title><rect x="543.4" y="629" width="0.7" height="15.0" fill="rgb(243,208,20)" rx="2" ry="2" />
+<text  x="546.41" y="639.5" ></text>
+</g>
+<g >
+<title>[unknown] (344,061,820 samples, 0.28%)</title><rect x="400.1" y="773" width="3.3" height="15.0" fill="rgb(216,23,23)" rx="2" ry="2" />
+<text  x="403.09" y="783.5" ></text>
+</g>
+<g >
+<title>blk_mq_end_request_batch (77,872,030 samples, 0.06%)</title><rect x="760.8" y="581" width="0.7" height="15.0" fill="rgb(219,180,53)" rx="2" ry="2" />
+<text  x="763.78" y="591.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (27,434,190 samples, 0.02%)</title><rect x="26.5" y="645" width="0.3" height="15.0" fill="rgb(239,219,29)" rx="2" ry="2" />
+<text  x="29.55" y="655.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,040,980,637 samples, 0.86%)</title><rect x="33.0" y="709" width="10.1" height="15.0" fill="rgb(240,155,42)" rx="2" ry="2" />
+<text  x="36.00" y="719.5" ></text>
+</g>
+<g >
+<title>do_softirq.part.0 (211,945,837 samples, 0.17%)</title><rect x="408.7" y="213" width="2.1" height="15.0" fill="rgb(247,144,8)" rx="2" ry="2" />
+<text  x="411.73" y="223.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit_state (608,242,150 samples, 0.50%)</title><rect x="1063.3" y="661" width="5.9" height="15.0" fill="rgb(212,101,44)" rx="2" ry="2" />
+<text  x="1066.30" y="671.5" ></text>
+</g>
+<g >
+<title>perf (193,471,569 samples, 0.16%)</title><rect x="397.2" y="805" width="1.9" height="15.0" fill="rgb(253,84,39)" rx="2" ry="2" />
+<text  x="400.23" y="815.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (18,710,724 samples, 0.02%)</title><rect x="1028.8" y="645" width="0.2" height="15.0" fill="rgb(230,73,38)" rx="2" ry="2" />
+<text  x="1031.84" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (230,691,266 samples, 0.19%)</title><rect x="277.9" y="677" width="2.3" height="15.0" fill="rgb(229,35,28)" rx="2" ry="2" />
+<text  x="280.93" y="687.5" ></text>
+</g>
+<g >
+<title>eventfd_poll (29,624,737 samples, 0.02%)</title><rect x="420.3" y="629" width="0.3" height="15.0" fill="rgb(226,64,50)" rx="2" ry="2" />
+<text  x="423.26" y="639.5" ></text>
+</g>
+<g >
+<title>__libc_start_main@@GLIBC_2.34 (16,967,925 samples, 0.01%)</title><rect x="282.3" y="773" width="0.2" height="15.0" fill="rgb(218,165,10)" rx="2" ry="2" />
+<text  x="285.31" y="783.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (45,958,334 samples, 0.04%)</title><rect x="36.4" y="645" width="0.4" height="15.0" fill="rgb(227,153,48)" rx="2" ry="2" />
+<text  x="39.38" y="655.5" ></text>
+</g>
+<g >
+<title>schedule (134,871,058 samples, 0.11%)</title><rect x="420.9" y="613" width="1.3" height="15.0" fill="rgb(252,148,0)" rx="2" ry="2" />
+<text  x="423.93" y="623.5" ></text>
+</g>
+<g >
+<title>kthread (1,070,740,816 samples, 0.88%)</title><rect x="22.6" y="773" width="10.4" height="15.0" fill="rgb(219,160,33)" rx="2" ry="2" />
+<text  x="25.57" y="783.5" ></text>
+</g>
+<g >
+<title>__flush_smp_call_function_queue (167,532,595 samples, 0.14%)</title><rect x="1029.1" y="645" width="1.6" height="15.0" fill="rgb(226,76,15)" rx="2" ry="2" />
+<text  x="1032.08" y="655.5" ></text>
+</g>
+<g >
+<title>nvme_queue_rqs (39,227,465 samples, 0.03%)</title><rect x="10.3" y="661" width="0.4" height="15.0" fill="rgb(231,185,54)" rx="2" ry="2" />
+<text  x="13.31" y="671.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (28,229,380 samples, 0.02%)</title><rect x="408.4" y="229" width="0.3" height="15.0" fill="rgb(234,190,43)" rx="2" ry="2" />
+<text  x="411.45" y="239.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (55,775,948 samples, 0.05%)</title><rect x="389.7" y="261" width="0.6" height="15.0" fill="rgb(245,224,43)" rx="2" ry="2" />
+<text  x="392.73" y="271.5" ></text>
+</g>
+<g >
+<title>__remove_hrtimer (33,125,422 samples, 0.03%)</title><rect x="365.2" y="453" width="0.4" height="15.0" fill="rgb(222,83,31)" rx="2" ry="2" />
+<text  x="368.23" y="463.5" ></text>
+</g>
+<g >
+<title>pmdalinux (26,869,874 samples, 0.02%)</title><rect x="399.4" y="805" width="0.3" height="15.0" fill="rgb(226,226,40)" rx="2" ry="2" />
+<text  x="402.44" y="815.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (17,776,110 samples, 0.01%)</title><rect x="411.6" y="245" width="0.2" height="15.0" fill="rgb(234,62,54)" rx="2" ry="2" />
+<text  x="414.65" y="255.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (15,871,409 samples, 0.01%)</title><rect x="394.9" y="533" width="0.2" height="15.0" fill="rgb(214,93,12)" rx="2" ry="2" />
+<text  x="397.92" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_v6_do_rcv (60,271,326 samples, 0.05%)</title><rect x="409.4" y="69" width="0.6" height="15.0" fill="rgb(248,116,20)" rx="2" ry="2" />
+<text  x="412.40" y="79.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (972,199,095 samples, 0.80%)</title><rect x="107.2" y="789" width="9.4" height="15.0" fill="rgb(229,81,2)" rx="2" ry="2" />
+<text  x="110.15" y="799.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (39,518,999 samples, 0.03%)</title><rect x="879.9" y="341" width="0.3" height="15.0" fill="rgb(217,96,5)" rx="2" ry="2" />
+<text  x="882.86" y="351.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,024,076,844 samples, 0.84%)</title><rect x="196.1" y="789" width="10.0" height="15.0" fill="rgb(215,197,50)" rx="2" ry="2" />
+<text  x="199.08" y="799.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (23,433,304 samples, 0.02%)</title><rect x="909.8" y="629" width="0.2" height="15.0" fill="rgb(252,88,34)" rx="2" ry="2" />
+<text  x="912.77" y="639.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (56,935,788 samples, 0.05%)</title><rect x="172.6" y="645" width="0.6" height="15.0" fill="rgb(234,216,40)" rx="2" ry="2" />
+<text  x="175.65" y="655.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (117,302,424 samples, 0.10%)</title><rect x="320.6" y="357" width="1.1" height="15.0" fill="rgb(221,85,31)" rx="2" ry="2" />
+<text  x="323.56" y="367.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,070,740,816 samples, 0.88%)</title><rect x="22.6" y="789" width="10.4" height="15.0" fill="rgb(205,98,3)" rx="2" ry="2" />
+<text  x="25.57" y="799.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (28,356,216 samples, 0.02%)</title><rect x="68.9" y="629" width="0.2" height="15.0" fill="rgb(239,61,44)" rx="2" ry="2" />
+<text  x="71.86" y="639.5" ></text>
+</g>
+<g >
+<title>rcu_note_context_switch (29,160,410 samples, 0.02%)</title><rect x="1176.1" y="693" width="0.2" height="15.0" fill="rgb(216,176,43)" rx="2" ry="2" />
+<text  x="1179.06" y="703.5" ></text>
+</g>
+<g >
+<title>do_futex (17,860,379 samples, 0.01%)</title><rect x="402.2" y="469" width="0.2" height="15.0" fill="rgb(246,203,17)" rx="2" ry="2" />
+<text  x="405.21" y="479.5" ></text>
+</g>
+<g >
+<title>crypt_convert (471,760,076 samples, 0.39%)</title><rect x="108.5" y="709" width="4.6" height="15.0" fill="rgb(226,200,27)" rx="2" ry="2" />
+<text  x="111.55" y="719.5" ></text>
+</g>
+<g >
+<title>start_kernel (812,027,677 samples, 0.67%)</title><rect x="558.7" y="773" width="7.9" height="15.0" fill="rgb(253,27,42)" rx="2" ry="2" />
+<text  x="561.71" y="783.5" ></text>
+</g>
+<g >
+<title>pagevec_lookup_range_tag (52,078,120 samples, 0.04%)</title><rect x="205.5" y="581" width="0.5" height="15.0" fill="rgb(227,91,49)" rx="2" ry="2" />
+<text  x="208.48" y="591.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (10,289,246 samples, 0.01%)</title><rect x="553.8" y="645" width="0.1" height="15.0" fill="rgb(252,46,12)" rx="2" ry="2" />
+<text  x="556.80" y="655.5" ></text>
+</g>
+<g >
+<title>hrtimer_next_event_without (175,668,035 samples, 0.14%)</title><rect x="1158.7" y="693" width="1.7" height="15.0" fill="rgb(252,142,7)" rx="2" ry="2" />
+<text  x="1161.69" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (34,665,738 samples, 0.03%)</title><rect x="1162.8" y="661" width="0.3" height="15.0" fill="rgb(207,14,52)" rx="2" ry="2" />
+<text  x="1165.79" y="671.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb_list (54,464,779 samples, 0.04%)</title><rect x="311.0" y="261" width="0.5" height="15.0" fill="rgb(239,208,40)" rx="2" ry="2" />
+<text  x="313.96" y="271.5" ></text>
+</g>
+<g >
+<title>qemu_bh_schedule (125,994,144 samples, 0.10%)</title><rect x="547.8" y="725" width="1.2" height="15.0" fill="rgb(244,56,46)" rx="2" ry="2" />
+<text  x="550.81" y="735.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (10,476,704 samples, 0.01%)</title><rect x="399.6" y="757" width="0.1" height="15.0" fill="rgb(233,123,50)" rx="2" ry="2" />
+<text  x="402.60" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (12,022,289 samples, 0.01%)</title><rect x="272.0" y="693" width="0.2" height="15.0" fill="rgb(213,41,41)" rx="2" ry="2" />
+<text  x="275.05" y="703.5" ></text>
+</g>
+<g >
+<title>wb_writeback (45,476,704 samples, 0.04%)</title><rect x="106.7" y="709" width="0.5" height="15.0" fill="rgb(207,66,14)" rx="2" ry="2" />
+<text  x="109.71" y="719.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_fn (21,361,087 samples, 0.02%)</title><rect x="317.0" y="325" width="0.2" height="15.0" fill="rgb(215,103,7)" rx="2" ry="2" />
+<text  x="320.04" y="335.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (67,936,567 samples, 0.06%)</title><rect x="385.5" y="677" width="0.6" height="15.0" fill="rgb(245,171,39)" rx="2" ry="2" />
+<text  x="388.47" y="687.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (10,930,072 samples, 0.01%)</title><rect x="416.7" y="693" width="0.1" height="15.0" fill="rgb(236,91,31)" rx="2" ry="2" />
+<text  x="419.72" y="703.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (512,769,342 samples, 0.42%)</title><rect x="866.5" y="437" width="5.0" height="15.0" fill="rgb(226,132,42)" rx="2" ry="2" />
+<text  x="869.51" y="447.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_all (65,589,624 samples, 0.05%)</title><rect x="401.5" y="533" width="0.6" height="15.0" fill="rgb(211,140,20)" rx="2" ry="2" />
+<text  x="404.47" y="543.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,104,533,377 samples, 0.91%)</title><rect x="126.8" y="725" width="10.7" height="15.0" fill="rgb(227,35,1)" rx="2" ry="2" />
+<text  x="129.77" y="735.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (12,448,165 samples, 0.01%)</title><rect x="1077.3" y="629" width="0.1" height="15.0" fill="rgb(235,63,49)" rx="2" ry="2" />
+<text  x="1080.26" y="639.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output (38,157,347 samples, 0.03%)</title><rect x="396.1" y="501" width="0.3" height="15.0" fill="rgb(226,185,13)" rx="2" ry="2" />
+<text  x="399.06" y="511.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (38,201,198 samples, 0.03%)</title><rect x="339.8" y="517" width="0.4" height="15.0" fill="rgb(234,104,9)" rx="2" ry="2" />
+<text  x="342.85" y="527.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (51,735,955 samples, 0.04%)</title><rect x="417.3" y="661" width="0.5" height="15.0" fill="rgb(210,107,25)" rx="2" ry="2" />
+<text  x="420.30" y="671.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (11,431,112 samples, 0.01%)</title><rect x="54.3" y="693" width="0.1" height="15.0" fill="rgb(210,54,8)" rx="2" ry="2" />
+<text  x="57.26" y="703.5" ></text>
+</g>
+<g >
+<title>__skb_gro_checksum_complete (185,204,887 samples, 0.15%)</title><rect x="812.3" y="517" width="1.8" height="15.0" fill="rgb(246,18,22)" rx="2" ry="2" />
+<text  x="815.32" y="527.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (22,703,929 samples, 0.02%)</title><rect x="115.3" y="533" width="0.3" height="15.0" fill="rgb(243,170,27)" rx="2" ry="2" />
+<text  x="118.34" y="543.5" ></text>
+</g>
+<g >
+<title>do_mas_align_munmap (24,405,232 samples, 0.02%)</title><rect x="413.0" y="501" width="0.2" height="15.0" fill="rgb(244,204,34)" rx="2" ry="2" />
+<text  x="415.96" y="511.5" ></text>
+</g>
+<g >
+<title>fetch_pte (38,326,251 samples, 0.03%)</title><rect x="815.7" y="533" width="0.4" height="15.0" fill="rgb(229,9,32)" rx="2" ry="2" />
+<text  x="818.73" y="543.5" ></text>
+</g>
+<g >
+<title>bdrv_common_block_status_above (18,530,467 samples, 0.02%)</title><rect x="415.8" y="693" width="0.2" height="15.0" fill="rgb(251,98,10)" rx="2" ry="2" />
+<text  x="418.78" y="703.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (112,905,775 samples, 0.09%)</title><rect x="875.4" y="341" width="1.1" height="15.0" fill="rgb(253,120,37)" rx="2" ry="2" />
+<text  x="878.37" y="351.5" ></text>
+</g>
+<g >
+<title>ct_nmi_exit (44,518,265 samples, 0.04%)</title><rect x="856.8" y="661" width="0.5" height="15.0" fill="rgb(252,92,10)" rx="2" ry="2" />
+<text  x="859.84" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (18,677,261 samples, 0.02%)</title><rect x="295.5" y="277" width="0.2" height="15.0" fill="rgb(223,22,30)" rx="2" ry="2" />
+<text  x="298.54" y="287.5" ></text>
+</g>
+<g >
+<title>xts_crypt (108,882,033 samples, 0.09%)</title><rect x="151.9" y="661" width="1.0" height="15.0" fill="rgb(213,204,15)" rx="2" ry="2" />
+<text  x="154.86" y="671.5" ></text>
+</g>
+<g >
+<title>crypt_endio (10,831,566 samples, 0.01%)</title><rect x="563.5" y="533" width="0.1" height="15.0" fill="rgb(229,30,28)" rx="2" ry="2" />
+<text  x="566.47" y="543.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (41,227,173 samples, 0.03%)</title><rect x="400.3" y="469" width="0.4" height="15.0" fill="rgb(247,34,36)" rx="2" ry="2" />
+<text  x="403.31" y="479.5" ></text>
+</g>
+<g >
+<title>dev_gro_receive (313,483,296 samples, 0.26%)</title><rect x="811.2" y="565" width="3.1" height="15.0" fill="rgb(229,8,35)" rx="2" ry="2" />
+<text  x="814.21" y="575.5" ></text>
+</g>
+<g >
+<title>bdrv_block_status_above (18,530,467 samples, 0.02%)</title><rect x="415.8" y="709" width="0.2" height="15.0" fill="rgb(247,83,43)" rx="2" ry="2" />
+<text  x="418.78" y="719.5" ></text>
+</g>
+<g >
+<title>prepare_alloc_pages.constprop.0 (17,751,836 samples, 0.01%)</title><rect x="441.4" y="501" width="0.2" height="15.0" fill="rgb(244,59,45)" rx="2" ry="2" />
+<text  x="444.44" y="511.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (139,694,955 samples, 0.12%)</title><rect x="374.7" y="437" width="1.4" height="15.0" fill="rgb(228,220,54)" rx="2" ry="2" />
+<text  x="377.72" y="447.5" ></text>
+</g>
+<g >
+<title>security_file_permission (10,669,127 samples, 0.01%)</title><rect x="417.6" y="549" width="0.1" height="15.0" fill="rgb(207,18,48)" rx="2" ry="2" />
+<text  x="420.64" y="559.5" ></text>
+</g>
+<g >
+<title>_copy_from_iter (207,489,800 samples, 0.17%)</title><rect x="393.1" y="565" width="2.0" height="15.0" fill="rgb(233,71,28)" rx="2" ry="2" />
+<text  x="396.05" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (453,529,687 samples, 0.37%)</title><rect x="11.9" y="677" width="4.4" height="15.0" fill="rgb(222,28,53)" rx="2" ry="2" />
+<text  x="14.90" y="687.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (17,429,667 samples, 0.01%)</title><rect x="874.9" y="373" width="0.2" height="15.0" fill="rgb(219,72,11)" rx="2" ry="2" />
+<text  x="877.94" y="383.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (427,221,663 samples, 0.35%)</title><rect x="881.9" y="293" width="4.1" height="15.0" fill="rgb(253,152,39)" rx="2" ry="2" />
+<text  x="884.89" y="303.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (38,262,810 samples, 0.03%)</title><rect x="131.1" y="645" width="0.4" height="15.0" fill="rgb(244,71,49)" rx="2" ry="2" />
+<text  x="134.15" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_bh (40,807,128 samples, 0.03%)</title><rect x="299.8" y="405" width="0.4" height="15.0" fill="rgb(242,16,27)" rx="2" ry="2" />
+<text  x="302.84" y="415.5" ></text>
+</g>
+<g >
+<title>alloc_page_buffers (13,512,881 samples, 0.01%)</title><rect x="397.6" y="453" width="0.1" height="15.0" fill="rgb(247,168,54)" rx="2" ry="2" />
+<text  x="400.59" y="463.5" ></text>
+</g>
+<g >
+<title>acpi_idle_enter (11,165,907,898 samples, 9.21%)</title><rect x="634.2" y="693" width="108.7" height="15.0" fill="rgb(249,228,13)" rx="2" ry="2" />
+<text  x="637.22" y="703.5" >acpi_idle_enter</text>
+</g>
+<g >
+<title>__x64_sys_sendto (1,061,688,141 samples, 0.88%)</title><rect x="386.3" y="645" width="10.3" height="15.0" fill="rgb(221,163,11)" rx="2" ry="2" />
+<text  x="389.31" y="655.5" ></text>
+</g>
+<g >
+<title>generic_write_end (45,740,579 samples, 0.04%)</title><rect x="398.5" y="501" width="0.5" height="15.0" fill="rgb(236,130,16)" rx="2" ry="2" />
+<text  x="401.51" y="511.5" ></text>
+</g>
+<g >
+<title>__update_idle_core (15,372,455 samples, 0.01%)</title><rect x="371.7" y="421" width="0.1" height="15.0" fill="rgb(245,161,31)" rx="2" ry="2" />
+<text  x="374.70" y="431.5" ></text>
+</g>
+<g >
+<title>net_rx_action (4,676,532,757 samples, 3.86%)</title><rect x="860.1" y="629" width="45.5" height="15.0" fill="rgb(246,149,10)" rx="2" ry="2" />
+<text  x="863.08" y="639.5" >net_..</text>
+</g>
+<g >
+<title>ext4_finish_bio (13,013,876 samples, 0.01%)</title><rect x="254.2" y="693" width="0.1" height="15.0" fill="rgb(230,7,4)" rx="2" ry="2" />
+<text  x="257.22" y="703.5" ></text>
+</g>
+<g >
+<title>crypt_convert (648,576,521 samples, 0.54%)</title><rect x="196.1" y="709" width="6.3" height="15.0" fill="rgb(244,33,7)" rx="2" ry="2" />
+<text  x="199.12" y="719.5" ></text>
+</g>
+<g >
+<title>psi_group_change (223,861,054 samples, 0.18%)</title><rect x="1173.4" y="677" width="2.2" height="15.0" fill="rgb(241,151,41)" rx="2" ry="2" />
+<text  x="1176.42" y="687.5" ></text>
+</g>
+<g >
+<title>netif_receive_skb_list_internal (4,492,154,380 samples, 3.71%)</title><rect x="861.6" y="565" width="43.7" height="15.0" fill="rgb(207,96,52)" rx="2" ry="2" />
+<text  x="864.62" y="575.5" >neti..</text>
+</g>
+<g >
+<title>crypt_convert (1,119,248,739 samples, 0.92%)</title><rect x="86.2" y="709" width="10.9" height="15.0" fill="rgb(231,96,49)" rx="2" ry="2" />
+<text  x="89.18" y="719.5" ></text>
+</g>
+<g >
+<title>__vsnprintf_internal (23,645,981 samples, 0.02%)</title><rect x="283.1" y="613" width="0.3" height="15.0" fill="rgb(217,207,48)" rx="2" ry="2" />
+<text  x="286.12" y="623.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (557,935,438 samples, 0.46%)</title><rect x="407.4" y="581" width="5.4" height="15.0" fill="rgb(205,220,37)" rx="2" ry="2" />
+<text  x="410.40" y="591.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (21,901,624 samples, 0.02%)</title><rect x="557.1" y="789" width="0.2" height="15.0" fill="rgb(235,204,21)" rx="2" ry="2" />
+<text  x="560.09" y="799.5" ></text>
+</g>
+<g >
+<title>update_cfs_group (10,542,337 samples, 0.01%)</title><rect x="1032.5" y="565" width="0.1" height="15.0" fill="rgb(235,178,31)" rx="2" ry="2" />
+<text  x="1035.52" y="575.5" ></text>
+</g>
+<g >
+<title>ksys_write (102,615,579 samples, 0.08%)</title><rect x="548.0" y="645" width="1.0" height="15.0" fill="rgb(211,229,45)" rx="2" ry="2" />
+<text  x="551.00" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_process_page_bufs (27,715,527 samples, 0.02%)</title><rect x="115.8" y="581" width="0.3" height="15.0" fill="rgb(250,7,27)" rx="2" ry="2" />
+<text  x="118.79" y="591.5" ></text>
+</g>
+<g >
+<title>tick_program_event (11,427,951 samples, 0.01%)</title><rect x="807.6" y="549" width="0.1" height="15.0" fill="rgb(217,195,48)" rx="2" ry="2" />
+<text  x="810.58" y="559.5" ></text>
+</g>
+<g >
+<title>qcow2_co_decompress (26,124,948 samples, 0.02%)</title><rect x="402.1" y="613" width="0.3" height="15.0" fill="rgb(231,74,52)" rx="2" ry="2" />
+<text  x="405.14" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (120,738,582 samples, 0.10%)</title><rect x="546.5" y="709" width="1.2" height="15.0" fill="rgb(221,137,12)" rx="2" ry="2" />
+<text  x="549.50" y="719.5" ></text>
+</g>
+<g >
+<title>irq_enter_rcu (912,037,288 samples, 0.75%)</title><rect x="919.5" y="661" width="8.9" height="15.0" fill="rgb(221,113,32)" rx="2" ry="2" />
+<text  x="922.48" y="671.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (821,201,668 samples, 0.68%)</title><rect x="910.4" y="645" width="8.0" height="15.0" fill="rgb(251,163,50)" rx="2" ry="2" />
+<text  x="913.40" y="655.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (62,112,364 samples, 0.05%)</title><rect x="400.3" y="517" width="0.6" height="15.0" fill="rgb(226,77,33)" rx="2" ry="2" />
+<text  x="403.27" y="527.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (127,439,062 samples, 0.11%)</title><rect x="1095.7" y="677" width="1.2" height="15.0" fill="rgb(228,16,21)" rx="2" ry="2" />
+<text  x="1098.69" y="687.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (12,478,878 samples, 0.01%)</title><rect x="418.7" y="677" width="0.2" height="15.0" fill="rgb(250,91,3)" rx="2" ry="2" />
+<text  x="421.74" y="687.5" ></text>
+</g>
+<g >
+<title>crypt_convert (972,533,767 samples, 0.80%)</title><rect x="97.2" y="709" width="9.5" height="15.0" fill="rgb(226,10,41)" rx="2" ry="2" />
+<text  x="100.19" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_end_io_rsv_work (27,994,472 samples, 0.02%)</title><rect x="206.1" y="725" width="0.2" height="15.0" fill="rgb(234,217,45)" rx="2" ry="2" />
+<text  x="209.06" y="735.5" ></text>
+</g>
+<g >
+<title>__handle_irq_event_percpu (1,189,396,455 samples, 0.98%)</title><rect x="760.5" y="613" width="11.6" height="15.0" fill="rgb(226,25,54)" rx="2" ry="2" />
+<text  x="763.54" y="623.5" ></text>
+</g>
+<g >
+<title>curl_multi_poll (3,158,513,968 samples, 2.61%)</title><rect x="353.9" y="613" width="30.7" height="15.0" fill="rgb(213,174,0)" rx="2" ry="2" />
+<text  x="356.90" y="623.5" >cu..</text>
+</g>
+<g >
+<title>__iommu_map (14,046,247 samples, 0.01%)</title><rect x="876.0" y="149" width="0.2" height="15.0" fill="rgb(229,21,8)" rx="2" ry="2" />
+<text  x="879.02" y="159.5" ></text>
+</g>
+<g >
+<title>perf_event_task_tick (142,410,240 samples, 0.12%)</title><rect x="914.1" y="549" width="1.3" height="15.0" fill="rgb(219,60,39)" rx="2" ry="2" />
+<text  x="917.06" y="559.5" ></text>
+</g>
+<g >
+<title>ktime_get_update_offsets_now (116,195,719 samples, 0.10%)</title><rect x="917.2" y="629" width="1.1" height="15.0" fill="rgb(248,132,45)" rx="2" ry="2" />
+<text  x="920.20" y="639.5" ></text>
+</g>
+<g >
+<title>ext4_end_io_rsv_work (17,415,441 samples, 0.01%)</title><rect x="116.6" y="725" width="0.2" height="15.0" fill="rgb(238,14,3)" rx="2" ry="2" />
+<text  x="119.65" y="735.5" ></text>
+</g>
+<g >
+<title>avc_lookup (15,856,949 samples, 0.01%)</title><rect x="324.4" y="389" width="0.2" height="15.0" fill="rgb(207,152,29)" rx="2" ry="2" />
+<text  x="327.42" y="399.5" ></text>
+</g>
+<g >
+<title>sysmalloc (10,957,174 samples, 0.01%)</title><rect x="413.8" y="533" width="0.1" height="15.0" fill="rgb(218,181,15)" rx="2" ry="2" />
+<text  x="416.78" y="543.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (125,630,219 samples, 0.10%)</title><rect x="819.3" y="645" width="1.2" height="15.0" fill="rgb(229,121,22)" rx="2" ry="2" />
+<text  x="822.29" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (122,679,546 samples, 0.10%)</title><rect x="247.6" y="661" width="1.2" height="15.0" fill="rgb(205,25,36)" rx="2" ry="2" />
+<text  x="250.61" y="671.5" ></text>
+</g>
+<g >
+<title>g_try_malloc (16,244,853 samples, 0.01%)</title><rect x="413.3" y="629" width="0.2" height="15.0" fill="rgb(234,83,6)" rx="2" ry="2" />
+<text  x="416.30" y="639.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,108,693,995 samples, 0.91%)</title><rect x="126.7" y="757" width="10.8" height="15.0" fill="rgb(206,146,28)" rx="2" ry="2" />
+<text  x="129.72" y="767.5" ></text>
+</g>
+<g >
+<title>ext4_da_reserve_space (95,464,025 samples, 0.08%)</title><rect x="431.1" y="533" width="0.9" height="15.0" fill="rgb(218,200,39)" rx="2" ry="2" />
+<text  x="434.11" y="543.5" ></text>
+</g>
+<g >
+<title>hrtimer_cancel (116,122,116 samples, 0.10%)</title><rect x="1183.4" y="693" width="1.1" height="15.0" fill="rgb(235,129,37)" rx="2" ry="2" />
+<text  x="1186.39" y="703.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (15,241,650 samples, 0.01%)</title><rect x="552.1" y="533" width="0.1" height="15.0" fill="rgb(251,101,49)" rx="2" ry="2" />
+<text  x="555.09" y="543.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (36,545,565 samples, 0.03%)</title><rect x="162.9" y="645" width="0.4" height="15.0" fill="rgb(248,199,49)" rx="2" ry="2" />
+<text  x="165.94" y="655.5" ></text>
+</g>
+<g >
+<title>__condvar_dec_grefs (11,588,342 samples, 0.01%)</title><rect x="549.1" y="693" width="0.1" height="15.0" fill="rgb(212,61,9)" rx="2" ry="2" />
+<text  x="552.10" y="703.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (33,627,205 samples, 0.03%)</title><rect x="931.3" y="629" width="0.4" height="15.0" fill="rgb(246,215,33)" rx="2" ry="2" />
+<text  x="934.34" y="639.5" ></text>
+</g>
+<g >
+<title>tcp_v4_early_demux (137,073,222 samples, 0.11%)</title><rect x="888.4" y="421" width="1.3" height="15.0" fill="rgb(226,117,25)" rx="2" ry="2" />
+<text  x="891.39" y="431.5" ></text>
+</g>
+<g >
+<title>__brk (26,013,035 samples, 0.02%)</title><rect x="413.0" y="565" width="0.2" height="15.0" fill="rgb(253,207,12)" rx="2" ry="2" />
+<text  x="415.95" y="575.5" ></text>
+</g>
+<g >
+<title>sock_put (13,296,565 samples, 0.01%)</title><rect x="874.3" y="405" width="0.1" height="15.0" fill="rgb(247,143,52)" rx="2" ry="2" />
+<text  x="877.29" y="415.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (54,375,708 samples, 0.04%)</title><rect x="108.7" y="661" width="0.6" height="15.0" fill="rgb(220,155,27)" rx="2" ry="2" />
+<text  x="111.73" y="671.5" ></text>
+</g>
+<g >
+<title>qio_channel_writev_full_all (536,495,526 samples, 0.44%)</title><rect x="407.5" y="517" width="5.3" height="15.0" fill="rgb(214,189,18)" rx="2" ry="2" />
+<text  x="410.54" y="527.5" ></text>
+</g>
+<g >
+<title>tick_check_oneshot_broadcast_this_cpu (46,169,108 samples, 0.04%)</title><rect x="927.6" y="629" width="0.5" height="15.0" fill="rgb(252,70,2)" rx="2" ry="2" />
+<text  x="930.63" y="639.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,144,485,153 samples, 0.94%)</title><rect x="54.4" y="757" width="11.1" height="15.0" fill="rgb(251,28,28)" rx="2" ry="2" />
+<text  x="57.39" y="767.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (11,495,952 samples, 0.01%)</title><rect x="414.2" y="693" width="0.1" height="15.0" fill="rgb(248,87,44)" rx="2" ry="2" />
+<text  x="417.19" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (162,410,812 samples, 0.13%)</title><rect x="24.3" y="661" width="1.6" height="15.0" fill="rgb(253,197,38)" rx="2" ry="2" />
+<text  x="27.31" y="671.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (15,167,207 samples, 0.01%)</title><rect x="236.8" y="709" width="0.1" height="15.0" fill="rgb(205,34,7)" rx="2" ry="2" />
+<text  x="239.79" y="719.5" ></text>
+</g>
+<g >
+<title>remove_wait_queue (70,887,059 samples, 0.06%)</title><rect x="362.7" y="469" width="0.7" height="15.0" fill="rgb(214,175,48)" rx="2" ry="2" />
+<text  x="365.75" y="479.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (125,105,178 samples, 0.10%)</title><rect x="809.9" y="581" width="1.2" height="15.0" fill="rgb(216,23,33)" rx="2" ry="2" />
+<text  x="812.89" y="591.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (90,705,057 samples, 0.07%)</title><rect x="107.7" y="661" width="0.8" height="15.0" fill="rgb(251,85,7)" rx="2" ry="2" />
+<text  x="110.66" y="671.5" ></text>
+</g>
+<g >
+<title>process_one_work (997,169,697 samples, 0.82%)</title><rect x="65.5" y="741" width="9.7" height="15.0" fill="rgb(232,75,11)" rx="2" ry="2" />
+<text  x="68.53" y="751.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (44,001,281 samples, 0.04%)</title><rect x="556.7" y="789" width="0.4" height="15.0" fill="rgb(206,7,11)" rx="2" ry="2" />
+<text  x="559.66" y="799.5" ></text>
+</g>
+<g >
+<title>simple_copy_to_iter (81,064,485 samples, 0.07%)</title><rect x="321.7" y="373" width="0.8" height="15.0" fill="rgb(214,136,4)" rx="2" ry="2" />
+<text  x="324.70" y="383.5" ></text>
+</g>
+<g >
+<title>__x64_sys_recvfrom (2,738,344,595 samples, 2.26%)</title><rect x="298.1" y="485" width="26.7" height="15.0" fill="rgb(248,188,11)" rx="2" ry="2" />
+<text  x="301.14" y="495.5" >_..</text>
+</g>
+<g >
+<title>worker_thread (846,801,969 samples, 0.70%)</title><rect x="246.0" y="757" width="8.2" height="15.0" fill="rgb(236,116,42)" rx="2" ry="2" />
+<text  x="248.97" y="767.5" ></text>
+</g>
+<g >
+<title>netif_skb_features (41,532,791 samples, 0.03%)</title><rect x="311.0" y="229" width="0.4" height="15.0" fill="rgb(247,70,44)" rx="2" ry="2" />
+<text  x="314.04" y="239.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (28,345,880 samples, 0.02%)</title><rect x="564.7" y="533" width="0.2" height="15.0" fill="rgb(254,164,48)" rx="2" ry="2" />
+<text  x="567.66" y="543.5" ></text>
+</g>
+<g >
+<title>__fget_light (35,534,212 samples, 0.03%)</title><rect x="330.4" y="453" width="0.3" height="15.0" fill="rgb(250,85,16)" rx="2" ry="2" />
+<text  x="333.40" y="463.5" ></text>
+</g>
+<g >
+<title>ksys_read (61,821,334 samples, 0.05%)</title><rect x="385.5" y="645" width="0.6" height="15.0" fill="rgb(205,37,40)" rx="2" ry="2" />
+<text  x="388.50" y="655.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_flush_stats (28,833,224 samples, 0.02%)</title><rect x="424.6" y="533" width="0.3" height="15.0" fill="rgb(228,205,36)" rx="2" ry="2" />
+<text  x="427.63" y="543.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (21,557,545 samples, 0.02%)</title><rect x="198.6" y="645" width="0.2" height="15.0" fill="rgb(210,165,25)" rx="2" ry="2" />
+<text  x="201.55" y="655.5" ></text>
+</g>
+<g >
+<title>xas_load (37,431,685 samples, 0.03%)</title><rect x="441.8" y="533" width="0.4" height="15.0" fill="rgb(222,114,40)" rx="2" ry="2" />
+<text  x="444.84" y="543.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (226,137,692 samples, 0.19%)</title><rect x="428.5" y="549" width="2.2" height="15.0" fill="rgb(233,136,6)" rx="2" ry="2" />
+<text  x="431.48" y="559.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (11,431,112 samples, 0.01%)</title><rect x="54.3" y="709" width="0.1" height="15.0" fill="rgb(212,182,26)" rx="2" ry="2" />
+<text  x="57.26" y="719.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (2,828,662,032 samples, 2.33%)</title><rect x="297.7" y="517" width="27.6" height="15.0" fill="rgb(251,108,29)" rx="2" ry="2" />
+<text  x="300.72" y="527.5" >e..</text>
+</g>
+<g >
+<title>__folio_start_writeback (119,259,611 samples, 0.10%)</title><rect x="203.1" y="549" width="1.1" height="15.0" fill="rgb(219,28,1)" rx="2" ry="2" />
+<text  x="206.09" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (92,925,124 samples, 0.08%)</title><rect x="197.2" y="661" width="0.9" height="15.0" fill="rgb(227,217,53)" rx="2" ry="2" />
+<text  x="200.23" y="671.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (10,917,270 samples, 0.01%)</title><rect x="178.6" y="709" width="0.1" height="15.0" fill="rgb(220,177,0)" rx="2" ry="2" />
+<text  x="181.60" y="719.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (42,143,201 samples, 0.03%)</title><rect x="275.1" y="629" width="0.4" height="15.0" fill="rgb(242,67,41)" rx="2" ry="2" />
+<text  x="278.10" y="639.5" ></text>
+</g>
+<g >
+<title>rwsem_down_write_slowpath (550,306,718 samples, 0.45%)</title><rect x="445.1" y="597" width="5.4" height="15.0" fill="rgb(215,95,2)" rx="2" ry="2" />
+<text  x="448.12" y="607.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (18,242,270 samples, 0.02%)</title><rect x="885.6" y="245" width="0.2" height="15.0" fill="rgb(230,53,24)" rx="2" ry="2" />
+<text  x="888.59" y="255.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (13,157,383 samples, 0.01%)</title><rect x="224.4" y="677" width="0.1" height="15.0" fill="rgb(254,2,17)" rx="2" ry="2" />
+<text  x="227.39" y="687.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (255,348,414 samples, 0.21%)</title><rect x="866.7" y="421" width="2.5" height="15.0" fill="rgb(231,159,16)" rx="2" ry="2" />
+<text  x="869.70" y="431.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,129,047,544 samples, 0.93%)</title><rect x="137.5" y="741" width="11.0" height="15.0" fill="rgb(245,148,1)" rx="2" ry="2" />
+<text  x="140.52" y="751.5" ></text>
+</g>
+<g >
+<title>sock_recvmsg (128,381,553 samples, 0.11%)</title><rect x="323.3" y="453" width="1.3" height="15.0" fill="rgb(223,228,4)" rx="2" ry="2" />
+<text  x="326.32" y="463.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (943,582,789 samples, 0.78%)</title><rect x="878.1" y="389" width="9.2" height="15.0" fill="rgb(240,133,12)" rx="2" ry="2" />
+<text  x="881.09" y="399.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (14,366,154 samples, 0.01%)</title><rect x="552.6" y="629" width="0.1" height="15.0" fill="rgb(223,109,39)" rx="2" ry="2" />
+<text  x="555.56" y="639.5" ></text>
+</g>
+<g >
+<title>timerqueue_del (17,361,537 samples, 0.01%)</title><rect x="915.7" y="613" width="0.2" height="15.0" fill="rgb(231,218,5)" rx="2" ry="2" />
+<text  x="918.70" y="623.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (94,133,608 samples, 0.08%)</title><rect x="410.9" y="261" width="0.9" height="15.0" fill="rgb(253,39,10)" rx="2" ry="2" />
+<text  x="413.92" y="271.5" ></text>
+</g>
+<g >
+<title>ttwu_do_activate (323,851,134 samples, 0.27%)</title><rect x="1031.3" y="629" width="3.2" height="15.0" fill="rgb(219,82,23)" rx="2" ry="2" />
+<text  x="1034.31" y="639.5" ></text>
+</g>
+<g >
+<title>ktime_get (41,829,134 samples, 0.03%)</title><rect x="1035.8" y="629" width="0.4" height="15.0" fill="rgb(244,39,35)" rx="2" ry="2" />
+<text  x="1038.80" y="639.5" ></text>
+</g>
+<g >
+<title>__libc_sigaction (257,127,627 samples, 0.21%)</title><rect x="351.0" y="597" width="2.5" height="15.0" fill="rgb(250,55,7)" rx="2" ry="2" />
+<text  x="353.97" y="607.5" ></text>
+</g>
+<g >
+<title>perf_ibs_stop (18,944,262 samples, 0.02%)</title><rect x="915.1" y="517" width="0.2" height="15.0" fill="rgb(215,190,10)" rx="2" ry="2" />
+<text  x="918.10" y="527.5" ></text>
+</g>
+<g >
+<title>crypt_page_free (63,640,593 samples, 0.05%)</title><rect x="760.9" y="533" width="0.6" height="15.0" fill="rgb(227,120,26)" rx="2" ry="2" />
+<text  x="763.86" y="543.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (40,770,640 samples, 0.03%)</title><rect x="281.4" y="741" width="0.4" height="15.0" fill="rgb(235,183,34)" rx="2" ry="2" />
+<text  x="284.39" y="751.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (17,034,610 samples, 0.01%)</title><rect x="408.5" y="213" width="0.2" height="15.0" fill="rgb(246,38,11)" rx="2" ry="2" />
+<text  x="411.49" y="223.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (61,013,198 samples, 0.05%)</title><rect x="362.8" y="453" width="0.6" height="15.0" fill="rgb(248,2,46)" rx="2" ry="2" />
+<text  x="365.84" y="463.5" ></text>
+</g>
+<g >
+<title>__nf_conntrack_find_get (55,415,044 samples, 0.05%)</title><rect x="892.5" y="405" width="0.6" height="15.0" fill="rgb(214,22,17)" rx="2" ry="2" />
+<text  x="895.52" y="415.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (247,215,518 samples, 0.20%)</title><rect x="103.5" y="677" width="2.5" height="15.0" fill="rgb(239,208,9)" rx="2" ry="2" />
+<text  x="106.54" y="687.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (103,209,858 samples, 0.09%)</title><rect x="402.4" y="565" width="1.0" height="15.0" fill="rgb(207,214,32)" rx="2" ry="2" />
+<text  x="405.40" y="575.5" ></text>
+</g>
+<g >
+<title>napi_skb_cache_get (19,856,345 samples, 0.02%)</title><rect x="802.2" y="549" width="0.2" height="15.0" fill="rgb(254,125,6)" rx="2" ry="2" />
+<text  x="805.16" y="559.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (51,267,493 samples, 0.04%)</title><rect x="120.1" y="645" width="0.4" height="15.0" fill="rgb(246,0,18)" rx="2" ry="2" />
+<text  x="123.05" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (10,457,096 samples, 0.01%)</title><rect x="886.1" y="325" width="0.1" height="15.0" fill="rgb(213,141,46)" rx="2" ry="2" />
+<text  x="889.11" y="335.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (65,135,267 samples, 0.05%)</title><rect x="370.9" y="437" width="0.7" height="15.0" fill="rgb(249,97,34)" rx="2" ry="2" />
+<text  x="373.93" y="447.5" ></text>
+</g>
+<g >
+<title>__flush_smp_call_function_queue (411,012,348 samples, 0.34%)</title><rect x="1102.4" y="709" width="4.0" height="15.0" fill="rgb(224,56,4)" rx="2" ry="2" />
+<text  x="1105.36" y="719.5" ></text>
+</g>
+<g >
+<title>nft_lookup_eval (35,441,502 samples, 0.03%)</title><rect x="871.2" y="389" width="0.3" height="15.0" fill="rgb(250,47,22)" rx="2" ry="2" />
+<text  x="874.16" y="399.5" ></text>
+</g>
+<g >
+<title>signalfd_poll (27,182,434 samples, 0.02%)</title><rect x="422.2" y="629" width="0.3" height="15.0" fill="rgb(236,161,35)" rx="2" ry="2" />
+<text  x="425.24" y="639.5" ></text>
+</g>
+<g >
+<title>skb_page_frag_refill (28,011,292 samples, 0.02%)</title><rect x="395.1" y="549" width="0.3" height="15.0" fill="rgb(222,1,49)" rx="2" ry="2" />
+<text  x="398.09" y="559.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (558,056,047 samples, 0.46%)</title><rect x="312.9" y="357" width="5.4" height="15.0" fill="rgb(222,101,39)" rx="2" ry="2" />
+<text  x="315.89" y="367.5" ></text>
+</g>
+<g >
+<title>generic_perform_write (170,862,937 samples, 0.14%)</title><rect x="397.3" y="517" width="1.7" height="15.0" fill="rgb(251,9,19)" rx="2" ry="2" />
+<text  x="400.29" y="527.5" ></text>
+</g>
+<g >
+<title>__fprop_add_percpu (12,057,379 samples, 0.01%)</title><rect x="107.7" y="645" width="0.1" height="15.0" fill="rgb(239,58,19)" rx="2" ry="2" />
+<text  x="110.70" y="655.5" ></text>
+</g>
+<g >
+<title>inet6_csk_xmit (11,174,314 samples, 0.01%)</title><rect x="400.4" y="341" width="0.1" height="15.0" fill="rgb(223,145,52)" rx="2" ry="2" />
+<text  x="403.44" y="351.5" ></text>
+</g>
+<g >
+<title>lapic_next_event (15,426,359 samples, 0.01%)</title><rect x="806.8" y="533" width="0.2" height="15.0" fill="rgb(242,2,52)" rx="2" ry="2" />
+<text  x="809.82" y="543.5" ></text>
+</g>
+<g >
+<title>ttwu_queue_wakelist (18,497,802 samples, 0.02%)</title><rect x="548.5" y="549" width="0.2" height="15.0" fill="rgb(237,132,21)" rx="2" ry="2" />
+<text  x="551.53" y="559.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (282,972,920 samples, 0.23%)</title><rect x="1140.2" y="693" width="2.8" height="15.0" fill="rgb(241,218,17)" rx="2" ry="2" />
+<text  x="1143.25" y="703.5" ></text>
+</g>
+<g >
+<title>remove_wait_queue (17,431,884 samples, 0.01%)</title><rect x="420.7" y="613" width="0.2" height="15.0" fill="rgb(209,200,33)" rx="2" ry="2" />
+<text  x="423.72" y="623.5" ></text>
+</g>
+<g >
+<title>kthread (813,855,899 samples, 0.67%)</title><rect x="206.1" y="773" width="7.9" height="15.0" fill="rgb(252,61,37)" rx="2" ry="2" />
+<text  x="209.06" y="783.5" ></text>
+</g>
+<g >
+<title>g_main_context_prepare (42,316,272 samples, 0.03%)</title><rect x="418.6" y="709" width="0.4" height="15.0" fill="rgb(221,125,45)" rx="2" ry="2" />
+<text  x="421.58" y="719.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (28,138,223 samples, 0.02%)</title><rect x="392.3" y="469" width="0.3" height="15.0" fill="rgb(229,34,45)" rx="2" ry="2" />
+<text  x="395.29" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (171,696,463 samples, 0.14%)</title><rect x="397.3" y="533" width="1.7" height="15.0" fill="rgb(211,56,25)" rx="2" ry="2" />
+<text  x="400.28" y="543.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,070,740,816 samples, 0.88%)</title><rect x="22.6" y="741" width="10.4" height="15.0" fill="rgb(237,222,40)" rx="2" ry="2" />
+<text  x="25.57" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (281,906,009 samples, 0.23%)</title><rect x="29.3" y="677" width="2.7" height="15.0" fill="rgb(249,133,17)" rx="2" ry="2" />
+<text  x="32.30" y="687.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (55,399,533 samples, 0.05%)</title><rect x="245.2" y="693" width="0.5" height="15.0" fill="rgb(221,215,5)" rx="2" ry="2" />
+<text  x="248.15" y="703.5" ></text>
+</g>
+<g >
+<title>kthread (846,801,969 samples, 0.70%)</title><rect x="246.0" y="773" width="8.2" height="15.0" fill="rgb(247,15,0)" rx="2" ry="2" />
+<text  x="248.97" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_end_io_rsv_work (103,174,207 samples, 0.09%)</title><rect x="224.2" y="725" width="1.0" height="15.0" fill="rgb(231,186,38)" rx="2" ry="2" />
+<text  x="227.25" y="735.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (925,316,212 samples, 0.76%)</title><rect x="237.0" y="789" width="9.0" height="15.0" fill="rgb(238,209,4)" rx="2" ry="2" />
+<text  x="239.95" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (213,916,686 samples, 0.18%)</title><rect x="240.7" y="677" width="2.1" height="15.0" fill="rgb(227,143,12)" rx="2" ry="2" />
+<text  x="243.72" y="687.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (31,240,269 samples, 0.03%)</title><rect x="26.2" y="629" width="0.3" height="15.0" fill="rgb(218,220,44)" rx="2" ry="2" />
+<text  x="29.17" y="639.5" ></text>
+</g>
+<g >
+<title>sock_read_iter (29,890,373 samples, 0.02%)</title><rect x="385.8" y="613" width="0.3" height="15.0" fill="rgb(245,149,38)" rx="2" ry="2" />
+<text  x="388.81" y="623.5" ></text>
+</g>
+<g >
+<title>ebt_do_table (69,416,877 samples, 0.06%)</title><rect x="306.6" y="277" width="0.6" height="15.0" fill="rgb(221,220,13)" rx="2" ry="2" />
+<text  x="309.57" y="287.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (112,095,301 samples, 0.09%)</title><rect x="66.0" y="661" width="1.1" height="15.0" fill="rgb(217,192,30)" rx="2" ry="2" />
+<text  x="69.04" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (173,341,272 samples, 0.14%)</title><rect x="869.8" y="421" width="1.7" height="15.0" fill="rgb(243,168,34)" rx="2" ry="2" />
+<text  x="872.82" y="431.5" ></text>
+</g>
+<g >
+<title>nft_hash_lookup_fast (20,868,273 samples, 0.02%)</title><rect x="871.2" y="373" width="0.2" height="15.0" fill="rgb(237,77,2)" rx="2" ry="2" />
+<text  x="874.24" y="383.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (390,063,608 samples, 0.32%)</title><rect x="169.8" y="677" width="3.8" height="15.0" fill="rgb(213,217,9)" rx="2" ry="2" />
+<text  x="172.80" y="687.5" ></text>
+</g>
+<g >
+<title>handle_irq_event (1,225,543,283 samples, 1.01%)</title><rect x="760.4" y="629" width="11.9" height="15.0" fill="rgb(209,42,8)" rx="2" ry="2" />
+<text  x="763.40" y="639.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,143,931,171 samples, 0.94%)</title><rect x="54.4" y="741" width="11.1" height="15.0" fill="rgb(234,164,30)" rx="2" ry="2" />
+<text  x="57.39" y="751.5" ></text>
+</g>
+<g >
+<title>update_sd_lb_stats.constprop.0 (28,149,133 samples, 0.02%)</title><rect x="906.0" y="581" width="0.3" height="15.0" fill="rgb(210,146,6)" rx="2" ry="2" />
+<text  x="908.98" y="591.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (126,298,312 samples, 0.10%)</title><rect x="417.2" y="693" width="1.3" height="15.0" fill="rgb(216,93,26)" rx="2" ry="2" />
+<text  x="420.24" y="703.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (83,816,598 samples, 0.07%)</title><rect x="402.5" y="389" width="0.8" height="15.0" fill="rgb(234,75,17)" rx="2" ry="2" />
+<text  x="405.53" y="399.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (13,817,136 samples, 0.01%)</title><rect x="873.0" y="405" width="0.1" height="15.0" fill="rgb(239,203,24)" rx="2" ry="2" />
+<text  x="875.99" y="415.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (19,578,563 samples, 0.02%)</title><rect x="553.5" y="645" width="0.2" height="15.0" fill="rgb(248,189,39)" rx="2" ry="2" />
+<text  x="556.53" y="655.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (28,264,791 samples, 0.02%)</title><rect x="294.8" y="277" width="0.3" height="15.0" fill="rgb(229,211,53)" rx="2" ry="2" />
+<text  x="297.84" y="287.5" ></text>
+</g>
+<g >
+<title>futex_wait_queue (226,889,641 samples, 0.19%)</title><rect x="550.1" y="581" width="2.2" height="15.0" fill="rgb(226,10,7)" rx="2" ry="2" />
+<text  x="553.06" y="591.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,128,659,718 samples, 0.93%)</title><rect x="86.2" y="725" width="11.0" height="15.0" fill="rgb(227,1,20)" rx="2" ry="2" />
+<text  x="89.17" y="735.5" ></text>
+</g>
+<g >
+<title>[libsystemd-shared-251.10-588.fc37.so] (15,403,517 samples, 0.01%)</title><rect x="1189.6" y="757" width="0.1" height="15.0" fill="rgb(227,229,45)" rx="2" ry="2" />
+<text  x="1192.59" y="767.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (11,747,277 samples, 0.01%)</title><rect x="388.6" y="309" width="0.2" height="15.0" fill="rgb(207,186,1)" rx="2" ry="2" />
+<text  x="391.65" y="319.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irq (56,341,781 samples, 0.05%)</title><rect x="345.3" y="501" width="0.6" height="15.0" fill="rgb(218,34,47)" rx="2" ry="2" />
+<text  x="348.33" y="511.5" ></text>
+</g>
+<g >
+<title>g_main_context_dispatch (142,154,578 samples, 0.12%)</title><rect x="417.2" y="709" width="1.4" height="15.0" fill="rgb(230,178,47)" rx="2" ry="2" />
+<text  x="420.20" y="719.5" ></text>
+</g>
+<g >
+<title>kworker/u64:4-k (1,307,531,293 samples, 1.08%)</title><rect x="224.2" y="805" width="12.8" height="15.0" fill="rgb(251,225,8)" rx="2" ry="2" />
+<text  x="227.23" y="815.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_lru (12,950,440 samples, 0.01%)</title><rect x="437.5" y="453" width="0.2" height="15.0" fill="rgb(209,33,0)" rx="2" ry="2" />
+<text  x="440.55" y="463.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (10,297,965 samples, 0.01%)</title><rect x="277.8" y="629" width="0.1" height="15.0" fill="rgb(208,113,40)" rx="2" ry="2" />
+<text  x="280.83" y="639.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (15,830,602 samples, 0.01%)</title><rect x="65.4" y="693" width="0.1" height="15.0" fill="rgb(213,98,33)" rx="2" ry="2" />
+<text  x="68.36" y="703.5" ></text>
+</g>
+<g >
+<title>netif_receive_skb (3,891,978,089 samples, 3.21%)</title><rect x="865.6" y="485" width="37.9" height="15.0" fill="rgb(217,149,18)" rx="2" ry="2" />
+<text  x="868.58" y="495.5" >net..</text>
+</g>
+<g >
+<title>sched_clock_cpu (16,752,555 samples, 0.01%)</title><rect x="820.7" y="629" width="0.1" height="15.0" fill="rgb(238,158,32)" rx="2" ry="2" />
+<text  x="823.68" y="639.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (28,732,638 samples, 0.02%)</title><rect x="1175.6" y="677" width="0.3" height="15.0" fill="rgb(238,106,27)" rx="2" ry="2" />
+<text  x="1178.60" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (416,513,219 samples, 0.34%)</title><rect x="343.2" y="549" width="4.0" height="15.0" fill="rgb(247,224,16)" rx="2" ry="2" />
+<text  x="346.16" y="559.5" ></text>
+</g>
+<g >
+<title>sch_direct_xmit (48,711,988 samples, 0.04%)</title><rect x="293.7" y="229" width="0.5" height="15.0" fill="rgb(214,142,21)" rx="2" ry="2" />
+<text  x="296.75" y="239.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (13,521,364 samples, 0.01%)</title><rect x="931.7" y="661" width="0.1" height="15.0" fill="rgb(235,43,29)" rx="2" ry="2" />
+<text  x="934.67" y="671.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (20,114,503 samples, 0.02%)</title><rect x="65.6" y="661" width="0.2" height="15.0" fill="rgb(251,105,9)" rx="2" ry="2" />
+<text  x="68.62" y="671.5" ></text>
+</g>
+<g >
+<title>____sys_sendmsg (498,853,574 samples, 0.41%)</title><rect x="407.7" y="405" width="4.8" height="15.0" fill="rgb(233,96,23)" rx="2" ry="2" />
+<text  x="410.66" y="415.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (11,731,245 samples, 0.01%)</title><rect x="1172.5" y="645" width="0.1" height="15.0" fill="rgb(246,134,35)" rx="2" ry="2" />
+<text  x="1175.48" y="655.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (12,200,014 samples, 0.01%)</title><rect x="399.2" y="709" width="0.1" height="15.0" fill="rgb(228,186,26)" rx="2" ry="2" />
+<text  x="402.15" y="719.5" ></text>
+</g>
+<g >
+<title>iptable_mangle_hook (16,898,277 samples, 0.01%)</title><rect x="891.5" y="421" width="0.2" height="15.0" fill="rgb(219,219,9)" rx="2" ry="2" />
+<text  x="894.51" y="431.5" ></text>
+</g>
+<g >
+<title>pagevec_lookup_range_tag (47,494,127 samples, 0.04%)</title><rect x="116.1" y="581" width="0.4" height="15.0" fill="rgb(240,90,52)" rx="2" ry="2" />
+<text  x="119.06" y="591.5" ></text>
+</g>
+<g >
+<title>update_process_times (261,381,326 samples, 0.22%)</title><rect x="913.2" y="581" width="2.5" height="15.0" fill="rgb(214,48,54)" rx="2" ry="2" />
+<text  x="916.15" y="591.5" ></text>
+</g>
+<g >
+<title>__free_one_page (16,847,505 samples, 0.01%)</title><rect x="546.6" y="517" width="0.2" height="15.0" fill="rgb(254,82,36)" rx="2" ry="2" />
+<text  x="549.59" y="527.5" ></text>
+</g>
+<g >
+<title>__hrtimer_next_event_base (10,733,181 samples, 0.01%)</title><rect x="917.1" y="613" width="0.1" height="15.0" fill="rgb(205,220,6)" rx="2" ry="2" />
+<text  x="920.09" y="623.5" ></text>
+</g>
+<g >
+<title>mark_buffer_dirty (187,877,078 samples, 0.15%)</title><rect x="443.3" y="549" width="1.8" height="15.0" fill="rgb(233,78,40)" rx="2" ry="2" />
+<text  x="446.26" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (987,254,994 samples, 0.81%)</title><rect x="11.9" y="693" width="9.6" height="15.0" fill="rgb(219,56,23)" rx="2" ry="2" />
+<text  x="14.87" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,007,666,680 samples, 0.83%)</title><rect x="137.8" y="693" width="9.8" height="15.0" fill="rgb(239,107,45)" rx="2" ry="2" />
+<text  x="140.76" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (160,897,525 samples, 0.13%)</title><rect x="137.8" y="661" width="1.6" height="15.0" fill="rgb(219,184,53)" rx="2" ry="2" />
+<text  x="140.80" y="671.5" ></text>
+</g>
+<g >
+<title>__this_cpu_preempt_check (16,626,784 samples, 0.01%)</title><rect x="845.4" y="629" width="0.2" height="15.0" fill="rgb(218,18,52)" rx="2" ry="2" />
+<text  x="848.43" y="639.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (26,198,019 samples, 0.02%)</title><rect x="152.7" y="645" width="0.2" height="15.0" fill="rgb(220,51,1)" rx="2" ry="2" />
+<text  x="155.67" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_end_io_rsv_work (48,683,852 samples, 0.04%)</title><rect x="246.0" y="725" width="0.4" height="15.0" fill="rgb(205,173,43)" rx="2" ry="2" />
+<text  x="248.97" y="735.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (37,230,970 samples, 0.03%)</title><rect x="106.7" y="597" width="0.4" height="15.0" fill="rgb(225,169,10)" rx="2" ry="2" />
+<text  x="109.72" y="607.5" ></text>
+</g>
+<g >
+<title>backend_pread (10,518,585,859 samples, 8.68%)</title><rect x="282.9" y="677" width="102.4" height="15.0" fill="rgb(233,143,25)" rx="2" ry="2" />
+<text  x="285.86" y="687.5" >backend_pread</text>
+</g>
+<g >
+<title>aesni_xts_encrypt (36,181,342 samples, 0.03%)</title><rect x="267.1" y="645" width="0.3" height="15.0" fill="rgb(228,210,29)" rx="2" ry="2" />
+<text  x="270.07" y="655.5" ></text>
+</g>
+<g >
+<title>worker_thread (997,406,341 samples, 0.82%)</title><rect x="65.5" y="757" width="9.7" height="15.0" fill="rgb(213,71,31)" rx="2" ry="2" />
+<text  x="68.53" y="767.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (68,513,733 samples, 0.06%)</title><rect x="414.6" y="581" width="0.6" height="15.0" fill="rgb(243,93,30)" rx="2" ry="2" />
+<text  x="417.57" y="591.5" ></text>
+</g>
+<g >
+<title>curl_easy_perform (10,417,150,985 samples, 8.59%)</title><rect x="283.4" y="629" width="101.4" height="15.0" fill="rgb(253,162,44)" rx="2" ry="2" />
+<text  x="286.36" y="639.5" >curl_easy_pe..</text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (313,891,509 samples, 0.26%)</title><rect x="549.6" y="661" width="3.1" height="15.0" fill="rgb(248,60,26)" rx="2" ry="2" />
+<text  x="552.65" y="671.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_charge_statistics (29,658,964 samples, 0.02%)</title><rect x="435.1" y="469" width="0.3" height="15.0" fill="rgb(225,149,15)" rx="2" ry="2" />
+<text  x="438.09" y="479.5" ></text>
+</g>
+<g >
+<title>process_one_work (925,038,489 samples, 0.76%)</title><rect x="237.0" y="741" width="9.0" height="15.0" fill="rgb(233,75,53)" rx="2" ry="2" />
+<text  x="239.95" y="751.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_exit (649,621,150 samples, 0.54%)</title><rect x="1179.1" y="725" width="6.3" height="15.0" fill="rgb(229,62,36)" rx="2" ry="2" />
+<text  x="1182.08" y="735.5" ></text>
+</g>
+<g >
+<title>kthread (1,054,676,528 samples, 0.87%)</title><rect x="33.0" y="773" width="10.3" height="15.0" fill="rgb(252,96,32)" rx="2" ry="2" />
+<text  x="36.00" y="783.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (1,573,489,971 samples, 1.30%)</title><rect x="304.4" y="405" width="15.3" height="15.0" fill="rgb(226,12,52)" rx="2" ry="2" />
+<text  x="307.41" y="415.5" ></text>
+</g>
+<g >
+<title>process_one_work (939,254,077 samples, 0.77%)</title><rect x="169.6" y="741" width="9.1" height="15.0" fill="rgb(248,160,26)" rx="2" ry="2" />
+<text  x="172.57" y="751.5" ></text>
+</g>
+<g >
+<title>dmcrypt_write/2 (59,542,910 samples, 0.05%)</title><rect x="10.1" y="805" width="0.6" height="15.0" fill="rgb(214,170,20)" rx="2" ry="2" />
+<text  x="13.14" y="815.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (12,631,937,696 samples, 10.42%)</title><rect x="423.4" y="709" width="123.0" height="15.0" fill="rgb(206,229,6)" rx="2" ry="2" />
+<text  x="426.41" y="719.5" >[qemu-img]</text>
+</g>
+<g >
+<title>check_preemption_disabled (14,146,357 samples, 0.01%)</title><rect x="1160.2" y="677" width="0.2" height="15.0" fill="rgb(217,127,41)" rx="2" ry="2" />
+<text  x="1163.23" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (11,264,312 samples, 0.01%)</title><rect x="563.7" y="645" width="0.1" height="15.0" fill="rgb(223,8,35)" rx="2" ry="2" />
+<text  x="566.72" y="655.5" ></text>
+</g>
+<g >
+<title>kthread (1,025,597,374 samples, 0.85%)</title><rect x="97.2" y="773" width="10.0" height="15.0" fill="rgb(207,9,39)" rx="2" ry="2" />
+<text  x="100.17" y="783.5" ></text>
+</g>
+<g >
+<title>bdrv_block_status_above (23,740,663 samples, 0.02%)</title><rect x="403.8" y="709" width="0.2" height="15.0" fill="rgb(221,51,39)" rx="2" ry="2" />
+<text  x="406.79" y="719.5" ></text>
+</g>
+<g >
+<title>finish_task_switch.isra.0 (72,359,594 samples, 0.06%)</title><rect x="1169.7" y="693" width="0.8" height="15.0" fill="rgb(247,163,25)" rx="2" ry="2" />
+<text  x="1172.75" y="703.5" ></text>
+</g>
+<g >
+<title>nft_fib6_eval (14,771,392 samples, 0.01%)</title><rect x="391.1" y="277" width="0.1" height="15.0" fill="rgb(248,55,1)" rx="2" ry="2" />
+<text  x="394.05" y="287.5" ></text>
+</g>
+<g >
+<title>tcp_ack (23,702,373 samples, 0.02%)</title><rect x="409.6" y="37" width="0.2" height="15.0" fill="rgb(234,174,10)" rx="2" ry="2" />
+<text  x="412.57" y="47.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (89,961,641 samples, 0.07%)</title><rect x="402.5" y="517" width="0.9" height="15.0" fill="rgb(241,108,24)" rx="2" ry="2" />
+<text  x="405.51" y="527.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (48,007,665 samples, 0.04%)</title><rect x="188.6" y="645" width="0.5" height="15.0" fill="rgb(205,152,15)" rx="2" ry="2" />
+<text  x="191.60" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_nocb_flush_deferred_wakeup (121,542,504 samples, 0.10%)</title><rect x="1167.0" y="725" width="1.2" height="15.0" fill="rgb(224,27,35)" rx="2" ry="2" />
+<text  x="1169.97" y="735.5" ></text>
+</g>
+<g >
+<title>curl_mvsnprintf (33,721,368 samples, 0.03%)</title><rect x="340.2" y="549" width="0.4" height="15.0" fill="rgb(236,155,25)" rx="2" ry="2" />
+<text  x="343.23" y="559.5" ></text>
+</g>
+<g >
+<title>clockevents_program_event (44,094,723 samples, 0.04%)</title><rect x="1184.0" y="661" width="0.4" height="15.0" fill="rgb(220,164,17)" rx="2" ry="2" />
+<text  x="1187.01" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (2,484,984,894 samples, 2.05%)</title><rect x="357.3" y="517" width="24.2" height="15.0" fill="rgb(205,95,42)" rx="2" ry="2" />
+<text  x="360.34" y="527.5" >_..</text>
+</g>
+<g >
+<title>irq_exit_rcu (15,346,165 samples, 0.01%)</title><rect x="844.2" y="661" width="0.2" height="15.0" fill="rgb(241,228,4)" rx="2" ry="2" />
+<text  x="847.24" y="671.5" ></text>
+</g>
+<g >
+<title>worker_thread (972,199,095 samples, 0.80%)</title><rect x="107.2" y="757" width="9.4" height="15.0" fill="rgb(228,214,20)" rx="2" ry="2" />
+<text  x="110.15" y="767.5" ></text>
+</g>
+<g >
+<title>kthread (1,305,459,047 samples, 1.08%)</title><rect x="224.2" y="773" width="12.8" height="15.0" fill="rgb(220,135,38)" rx="2" ry="2" />
+<text  x="227.25" y="783.5" ></text>
+</g>
+<g >
+<title>ext4_block_write_begin (593,909,564 samples, 0.49%)</title><rect x="428.3" y="565" width="5.8" height="15.0" fill="rgb(208,15,23)" rx="2" ry="2" />
+<text  x="431.27" y="575.5" ></text>
+</g>
+<g >
+<title>__start_context (339,639,475 samples, 0.28%)</title><rect x="400.1" y="757" width="3.3" height="15.0" fill="rgb(210,49,22)" rx="2" ry="2" />
+<text  x="403.12" y="767.5" ></text>
+</g>
+<g >
+<title>skb_release_data (24,461,873 samples, 0.02%)</title><rect x="818.9" y="597" width="0.3" height="15.0" fill="rgb(247,219,46)" rx="2" ry="2" />
+<text  x="821.92" y="607.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (37,450,726 samples, 0.03%)</title><rect x="400.3" y="437" width="0.4" height="15.0" fill="rgb(252,62,13)" rx="2" ry="2" />
+<text  x="403.32" y="447.5" ></text>
+</g>
+<g >
+<title>sd_event_dispatch (15,882,765 samples, 0.01%)</title><rect x="1189.6" y="773" width="0.1" height="15.0" fill="rgb(240,27,19)" rx="2" ry="2" />
+<text  x="1192.59" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (137,185,375 samples, 0.11%)</title><rect x="214.2" y="661" width="1.4" height="15.0" fill="rgb(251,146,27)" rx="2" ry="2" />
+<text  x="217.24" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_read (31,179,984 samples, 0.03%)</title><rect x="417.4" y="581" width="0.3" height="15.0" fill="rgb(220,134,20)" rx="2" ry="2" />
+<text  x="420.44" y="591.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (23,041,309 samples, 0.02%)</title><rect x="550.3" y="565" width="0.2" height="15.0" fill="rgb(251,65,18)" rx="2" ry="2" />
+<text  x="553.31" y="575.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (25,347,092 samples, 0.02%)</title><rect x="292.4" y="501" width="0.3" height="15.0" fill="rgb(206,59,6)" rx="2" ry="2" />
+<text  x="295.42" y="511.5" ></text>
+</g>
+<g >
+<title>kthread (1,144,485,153 samples, 0.94%)</title><rect x="54.4" y="773" width="11.1" height="15.0" fill="rgb(227,143,24)" rx="2" ry="2" />
+<text  x="57.39" y="783.5" ></text>
+</g>
+<g >
+<title>xas_load (13,036,527 samples, 0.01%)</title><rect x="436.8" y="485" width="0.1" height="15.0" fill="rgb(249,191,45)" rx="2" ry="2" />
+<text  x="439.75" y="495.5" ></text>
+</g>
+<g >
+<title>read_tsc (83,146,504 samples, 0.07%)</title><rect x="917.5" y="613" width="0.8" height="15.0" fill="rgb(228,182,45)" rx="2" ry="2" />
+<text  x="920.52" y="623.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (13,494,448 samples, 0.01%)</title><rect x="159.0" y="693" width="0.1" height="15.0" fill="rgb(242,189,31)" rx="2" ry="2" />
+<text  x="161.97" y="703.5" ></text>
+</g>
+<g >
+<title>br_dev_queue_push_xmit (63,004,882 samples, 0.05%)</title><rect x="293.6" y="261" width="0.6" height="15.0" fill="rgb(208,180,50)" rx="2" ry="2" />
+<text  x="296.62" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_buffered_write_iter (2,748,077,046 samples, 2.27%)</title><rect x="423.7" y="613" width="26.8" height="15.0" fill="rgb(241,164,30)" rx="2" ry="2" />
+<text  x="426.74" y="623.5" >e..</text>
+</g>
+<g >
+<title>[qemu-img] (106,629,649 samples, 0.09%)</title><rect x="414.3" y="677" width="1.1" height="15.0" fill="rgb(239,78,20)" rx="2" ry="2" />
+<text  x="417.34" y="687.5" ></text>
+</g>
+<g >
+<title>backend_pread (10,527,963,141 samples, 8.68%)</title><rect x="282.8" y="709" width="102.5" height="15.0" fill="rgb(234,10,11)" rx="2" ry="2" />
+<text  x="285.83" y="719.5" >backend_pread</text>
+</g>
+<g >
+<title>nf_hook_slow (532,347,927 samples, 0.44%)</title><rect x="313.1" y="341" width="5.2" height="15.0" fill="rgb(216,115,20)" rx="2" ry="2" />
+<text  x="316.14" y="351.5" ></text>
+</g>
+<g >
+<title>read_tsc (30,761,352 samples, 0.03%)</title><rect x="886.9" y="341" width="0.3" height="15.0" fill="rgb(210,194,17)" rx="2" ry="2" />
+<text  x="889.88" y="351.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (28,202,370 samples, 0.02%)</title><rect x="565.0" y="581" width="0.2" height="15.0" fill="rgb(245,53,15)" rx="2" ry="2" />
+<text  x="567.96" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (233,665,936 samples, 0.19%)</title><rect x="175.7" y="677" width="2.2" height="15.0" fill="rgb(217,31,0)" rx="2" ry="2" />
+<text  x="178.67" y="687.5" ></text>
+</g>
+<g >
+<title>raw_send_socket (1,087,204,931 samples, 0.90%)</title><rect x="386.1" y="709" width="10.6" height="15.0" fill="rgb(249,16,36)" rx="2" ry="2" />
+<text  x="389.14" y="719.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (19,032,302 samples, 0.02%)</title><rect x="180.8" y="629" width="0.2" height="15.0" fill="rgb(234,168,51)" rx="2" ry="2" />
+<text  x="183.77" y="639.5" ></text>
+</g>
+<g >
+<title>enqueue_hrtimer (15,287,575 samples, 0.01%)</title><rect x="1187.0" y="693" width="0.2" height="15.0" fill="rgb(249,149,34)" rx="2" ry="2" />
+<text  x="1190.04" y="703.5" ></text>
+</g>
+<g >
+<title>free_unref_page_list (24,354,118 samples, 0.02%)</title><rect x="546.5" y="549" width="0.3" height="15.0" fill="rgb(219,60,52)" rx="2" ry="2" />
+<text  x="549.52" y="559.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (50,040,573 samples, 0.04%)</title><rect x="920.5" y="629" width="0.5" height="15.0" fill="rgb(238,64,39)" rx="2" ry="2" />
+<text  x="923.48" y="639.5" ></text>
+</g>
+<g >
+<title>__skb_checksum (173,821,804 samples, 0.14%)</title><rect x="812.4" y="485" width="1.7" height="15.0" fill="rgb(206,183,29)" rx="2" ry="2" />
+<text  x="815.42" y="495.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (18,715,410 samples, 0.02%)</title><rect x="296.7" y="533" width="0.2" height="15.0" fill="rgb(215,220,50)" rx="2" ry="2" />
+<text  x="299.69" y="543.5" ></text>
+</g>
+<g >
+<title>schedule (37,742,570 samples, 0.03%)</title><rect x="553.4" y="677" width="0.4" height="15.0" fill="rgb(205,64,26)" rx="2" ry="2" />
+<text  x="556.42" y="687.5" ></text>
+</g>
+<g >
+<title>rtl8169_interrupt (1,059,907,445 samples, 0.87%)</title><rect x="761.8" y="597" width="10.3" height="15.0" fill="rgb(239,37,11)" rx="2" ry="2" />
+<text  x="764.80" y="607.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (13,572,639 samples, 0.01%)</title><rect x="394.9" y="517" width="0.2" height="15.0" fill="rgb(242,12,42)" rx="2" ry="2" />
+<text  x="397.94" y="527.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (51,751,187 samples, 0.04%)</title><rect x="253.4" y="693" width="0.5" height="15.0" fill="rgb(214,105,49)" rx="2" ry="2" />
+<text  x="256.45" y="703.5" ></text>
+</g>
+<g >
+<title>[unknown]  (17,905,651 samples, 0.01%)</title><rect x="399.5" y="773" width="0.2" height="15.0" fill="rgb(224,8,18)" rx="2" ry="2" />
+<text  x="402.53" y="783.5" ></text>
+</g>
+<g >
+<title>free_unref_page (54,753,498 samples, 0.05%)</title><rect x="760.9" y="517" width="0.6" height="15.0" fill="rgb(208,165,7)" rx="2" ry="2" />
+<text  x="763.95" y="527.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,132,010,408 samples, 0.93%)</title><rect x="86.1" y="789" width="11.1" height="15.0" fill="rgb(214,30,13)" rx="2" ry="2" />
+<text  x="89.14" y="799.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (17,647,196 samples, 0.01%)</title><rect x="774.2" y="613" width="0.2" height="15.0" fill="rgb(205,217,21)" rx="2" ry="2" />
+<text  x="777.19" y="623.5" ></text>
+</g>
+<g >
+<title>fdb_find_rcu (47,215,565 samples, 0.04%)</title><rect x="865.1" y="485" width="0.5" height="15.0" fill="rgb(242,178,54)" rx="2" ry="2" />
+<text  x="868.10" y="495.5" ></text>
+</g>
+<g >
+<title>worker_thread (15,865,262 samples, 0.01%)</title><rect x="178.7" y="757" width="0.2" height="15.0" fill="rgb(212,51,23)" rx="2" ry="2" />
+<text  x="181.71" y="767.5" ></text>
+</g>
+<g >
+<title>amd_pmu_check_overflow (13,506,972 samples, 0.01%)</title><rect x="914.5" y="517" width="0.1" height="15.0" fill="rgb(226,0,47)" rx="2" ry="2" />
+<text  x="917.47" y="527.5" ></text>
+</g>
+<g >
+<title>__napi_poll (2,175,188,101 samples, 1.79%)</title><rect x="794.9" y="613" width="21.2" height="15.0" fill="rgb(219,12,23)" rx="2" ry="2" />
+<text  x="797.93" y="623.5" ></text>
+</g>
+<g >
+<title>submit_bio_noacct_nocheck (53,417,379 samples, 0.04%)</title><rect x="10.2" y="741" width="0.5" height="15.0" fill="rgb(232,129,10)" rx="2" ry="2" />
+<text  x="13.20" y="751.5" ></text>
+</g>
+<g >
+<title>pick_next_entity (33,663,962 samples, 0.03%)</title><rect x="1171.0" y="677" width="0.3" height="15.0" fill="rgb(218,223,49)" rx="2" ry="2" />
+<text  x="1174.01" y="687.5" ></text>
+</g>
+<g >
+<title>__GI___libc_open (12,923,818 samples, 0.01%)</title><rect x="1189.6" y="677" width="0.1" height="15.0" fill="rgb(245,170,40)" rx="2" ry="2" />
+<text  x="1192.60" y="687.5" ></text>
+</g>
+<g >
+<title>__iommu_dma_map (106,116,351 samples, 0.09%)</title><rect x="309.8" y="197" width="1.0" height="15.0" fill="rgb(250,7,42)" rx="2" ry="2" />
+<text  x="312.78" y="207.5" ></text>
+</g>
+<g >
+<title>qemu_try_memalign (30,787,048 samples, 0.03%)</title><rect x="413.6" y="613" width="0.3" height="15.0" fill="rgb(224,53,46)" rx="2" ry="2" />
+<text  x="416.59" y="623.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (12,115,820 samples, 0.01%)</title><rect x="126.6" y="709" width="0.1" height="15.0" fill="rgb(243,6,48)" rx="2" ry="2" />
+<text  x="129.59" y="719.5" ></text>
+</g>
+<g >
+<title>rmqueue_bulk (61,377,126 samples, 0.05%)</title><rect x="440.8" y="485" width="0.6" height="15.0" fill="rgb(234,62,31)" rx="2" ry="2" />
+<text  x="443.84" y="495.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (16,839,124 samples, 0.01%)</title><rect x="1077.1" y="645" width="0.2" height="15.0" fill="rgb(253,77,54)" rx="2" ry="2" />
+<text  x="1080.10" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (87,734,648 samples, 0.07%)</title><rect x="402.5" y="469" width="0.9" height="15.0" fill="rgb(232,171,34)" rx="2" ry="2" />
+<text  x="405.52" y="479.5" ></text>
+</g>
+<g >
+<title>need_update (64,678,210 samples, 0.05%)</title><rect x="1188.1" y="677" width="0.6" height="15.0" fill="rgb(227,188,2)" rx="2" ry="2" />
+<text  x="1191.11" y="687.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (27,816,488 samples, 0.02%)</title><rect x="115.3" y="549" width="0.3" height="15.0" fill="rgb(238,136,32)" rx="2" ry="2" />
+<text  x="118.30" y="559.5" ></text>
+</g>
+<g >
+<title>__mod_zone_page_state (11,552,255 samples, 0.01%)</title><rect x="438.8" y="453" width="0.1" height="15.0" fill="rgb(245,22,9)" rx="2" ry="2" />
+<text  x="441.77" y="463.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (18,940,930 samples, 0.02%)</title><rect x="891.3" y="405" width="0.2" height="15.0" fill="rgb(250,171,31)" rx="2" ry="2" />
+<text  x="894.30" y="415.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_flush_locked (27,736,642 samples, 0.02%)</title><rect x="424.6" y="501" width="0.3" height="15.0" fill="rgb(221,10,40)" rx="2" ry="2" />
+<text  x="427.64" y="511.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,108,693,995 samples, 0.91%)</title><rect x="126.7" y="789" width="10.8" height="15.0" fill="rgb(253,119,7)" rx="2" ry="2" />
+<text  x="129.72" y="799.5" ></text>
+</g>
+<g >
+<title>native_load_tls (11,941,671 samples, 0.01%)</title><rect x="558.4" y="789" width="0.1" height="15.0" fill="rgb(240,193,19)" rx="2" ry="2" />
+<text  x="561.41" y="799.5" ></text>
+</g>
+<g >
+<title>process_one_work (971,444,765 samples, 0.80%)</title><rect x="107.2" y="741" width="9.4" height="15.0" fill="rgb(252,44,23)" rx="2" ry="2" />
+<text  x="110.16" y="751.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (14,195,984 samples, 0.01%)</title><rect x="397.4" y="485" width="0.1" height="15.0" fill="rgb(239,217,11)" rx="2" ry="2" />
+<text  x="400.40" y="495.5" ></text>
+</g>
+<g >
+<title>kthread (1,035,371,795 samples, 0.85%)</title><rect x="116.6" y="773" width="10.1" height="15.0" fill="rgb(211,135,49)" rx="2" ry="2" />
+<text  x="119.64" y="783.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (51,899,403 samples, 0.04%)</title><rect x="403.5" y="725" width="0.5" height="15.0" fill="rgb(237,63,33)" rx="2" ry="2" />
+<text  x="406.52" y="735.5" ></text>
+</g>
+<g >
+<title>obj_cgroup_charge (30,424,182 samples, 0.03%)</title><rect x="430.3" y="485" width="0.3" height="15.0" fill="rgb(215,132,35)" rx="2" ry="2" />
+<text  x="433.30" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irq (12,793,151 samples, 0.01%)</title><rect x="352.8" y="517" width="0.1" height="15.0" fill="rgb(218,67,46)" rx="2" ry="2" />
+<text  x="355.81" y="527.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (36,064,913 samples, 0.03%)</title><rect x="90.0" y="629" width="0.4" height="15.0" fill="rgb(216,185,54)" rx="2" ry="2" />
+<text  x="93.01" y="639.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (83,024,838 samples, 0.07%)</title><rect x="918.7" y="661" width="0.8" height="15.0" fill="rgb(241,194,51)" rx="2" ry="2" />
+<text  x="921.67" y="671.5" ></text>
+</g>
+<g >
+<title>__vsprintf_internal (20,917,739 samples, 0.02%)</title><rect x="334.3" y="501" width="0.2" height="15.0" fill="rgb(214,70,11)" rx="2" ry="2" />
+<text  x="337.31" y="511.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,144,485,153 samples, 0.94%)</title><rect x="54.4" y="789" width="11.1" height="15.0" fill="rgb(210,109,18)" rx="2" ry="2" />
+<text  x="57.39" y="799.5" ></text>
+</g>
+<g >
+<title>__dquot_alloc_space (45,906,932 samples, 0.04%)</title><rect x="431.2" y="517" width="0.4" height="15.0" fill="rgb(210,219,32)" rx="2" ry="2" />
+<text  x="434.17" y="527.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (57,012,991 samples, 0.05%)</title><rect x="401.5" y="373" width="0.6" height="15.0" fill="rgb(252,27,27)" rx="2" ry="2" />
+<text  x="404.51" y="383.5" ></text>
+</g>
+<g >
+<title>tcp_grow_window (15,807,343 samples, 0.01%)</title><rect x="886.4" y="357" width="0.2" height="15.0" fill="rgb(249,162,9)" rx="2" ry="2" />
+<text  x="889.44" y="367.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (28,262,445 samples, 0.02%)</title><rect x="400.3" y="389" width="0.3" height="15.0" fill="rgb(227,106,25)" rx="2" ry="2" />
+<text  x="403.34" y="399.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (10,653,479 samples, 0.01%)</title><rect x="380.6" y="437" width="0.1" height="15.0" fill="rgb(210,96,41)" rx="2" ry="2" />
+<text  x="383.64" y="447.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (108,419,030 samples, 0.09%)</title><rect x="110.5" y="677" width="1.1" height="15.0" fill="rgb(247,159,49)" rx="2" ry="2" />
+<text  x="113.52" y="687.5" ></text>
+</g>
+<g >
+<title>ip_protocol_deliver_rcu (92,841,266 samples, 0.08%)</title><rect x="808.2" y="437" width="0.9" height="15.0" fill="rgb(238,61,7)" rx="2" ry="2" />
+<text  x="811.22" y="447.5" ></text>
+</g>
+<g >
+<title>asm_exc_page_fault (22,304,067 samples, 0.02%)</title><rect x="543.0" y="661" width="0.2" height="15.0" fill="rgb(245,103,43)" rx="2" ry="2" />
+<text  x="545.98" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (48,683,852 samples, 0.04%)</title><rect x="246.0" y="709" width="0.4" height="15.0" fill="rgb(251,0,48)" rx="2" ry="2" />
+<text  x="248.97" y="719.5" ></text>
+</g>
+<g >
+<title>__hrtimer_init (33,300,505 samples, 0.03%)</title><rect x="364.0" y="453" width="0.3" height="15.0" fill="rgb(205,59,20)" rx="2" ry="2" />
+<text  x="366.98" y="463.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (10,845,198 samples, 0.01%)</title><rect x="401.6" y="165" width="0.1" height="15.0" fill="rgb(244,19,12)" rx="2" ry="2" />
+<text  x="404.60" y="175.5" ></text>
+</g>
+<g >
+<title>__send (1,082,252,722 samples, 0.89%)</title><rect x="386.2" y="693" width="10.5" height="15.0" fill="rgb(243,6,3)" rx="2" ry="2" />
+<text  x="389.18" y="703.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (13,180,222 samples, 0.01%)</title><rect x="116.7" y="677" width="0.1" height="15.0" fill="rgb(238,46,34)" rx="2" ry="2" />
+<text  x="119.69" y="687.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (58,800,823 samples, 0.05%)</title><rect x="401.5" y="405" width="0.6" height="15.0" fill="rgb(231,116,29)" rx="2" ry="2" />
+<text  x="404.50" y="415.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (218,020,246 samples, 0.18%)</title><rect x="320.4" y="389" width="2.1" height="15.0" fill="rgb(234,21,21)" rx="2" ry="2" />
+<text  x="323.37" y="399.5" ></text>
+</g>
+<g >
+<title>__fget_light (97,838,122 samples, 0.08%)</title><rect x="360.3" y="485" width="1.0" height="15.0" fill="rgb(206,4,12)" rx="2" ry="2" />
+<text  x="363.35" y="495.5" ></text>
+</g>
+<g >
+<title>filter_pread (10,524,398,995 samples, 8.68%)</title><rect x="282.9" y="693" width="102.4" height="15.0" fill="rgb(218,94,44)" rx="2" ry="2" />
+<text  x="285.85" y="703.5" >filter_pread</text>
+</g>
+<g >
+<title>ext4_block_write_begin (37,091,007 samples, 0.03%)</title><rect x="397.6" y="485" width="0.3" height="15.0" fill="rgb(231,186,12)" rx="2" ry="2" />
+<text  x="400.56" y="495.5" ></text>
+</g>
+<g >
+<title>wb_workfn (364,791,472 samples, 0.30%)</title><rect x="202.5" y="725" width="3.6" height="15.0" fill="rgb(227,44,40)" rx="2" ry="2" />
+<text  x="205.50" y="735.5" ></text>
+</g>
+<g >
+<title>write_cb (13,410,853 samples, 0.01%)</title><rect x="336.8" y="549" width="0.1" height="15.0" fill="rgb(230,100,48)" rx="2" ry="2" />
+<text  x="339.78" y="559.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (11,227,910 samples, 0.01%)</title><rect x="401.3" y="485" width="0.2" height="15.0" fill="rgb(209,158,37)" rx="2" ry="2" />
+<text  x="404.35" y="495.5" ></text>
+</g>
+<g >
+<title>tcp_poll (167,800,079 samples, 0.14%)</title><rect x="378.1" y="469" width="1.6" height="15.0" fill="rgb(215,72,40)" rx="2" ry="2" />
+<text  x="381.07" y="479.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (37,504,189 samples, 0.03%)</title><rect x="217.7" y="645" width="0.4" height="15.0" fill="rgb(239,172,49)" rx="2" ry="2" />
+<text  x="220.74" y="655.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (67,971,606 samples, 0.06%)</title><rect x="141.3" y="645" width="0.6" height="15.0" fill="rgb(226,52,52)" rx="2" ry="2" />
+<text  x="144.26" y="655.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (32,591,595 samples, 0.03%)</title><rect x="563.4" y="661" width="0.3" height="15.0" fill="rgb(242,36,10)" rx="2" ry="2" />
+<text  x="566.39" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (15,354,896 samples, 0.01%)</title><rect x="411.7" y="229" width="0.1" height="15.0" fill="rgb(208,195,19)" rx="2" ry="2" />
+<text  x="414.67" y="239.5" ></text>
+</g>
+<g >
+<title>__libc_sigaction (33,450,858 samples, 0.03%)</title><rect x="396.9" y="773" width="0.3" height="15.0" fill="rgb(218,144,26)" rx="2" ry="2" />
+<text  x="399.85" y="783.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,054,676,528 samples, 0.87%)</title><rect x="33.0" y="741" width="10.3" height="15.0" fill="rgb(244,90,20)" rx="2" ry="2" />
+<text  x="36.00" y="751.5" ></text>
+</g>
+<g >
+<title>_int_malloc (25,155,654 samples, 0.02%)</title><rect x="413.6" y="549" width="0.3" height="15.0" fill="rgb(249,119,39)" rx="2" ry="2" />
+<text  x="416.65" y="559.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (751,482,837 samples, 0.62%)</title><rect x="264.7" y="725" width="7.3" height="15.0" fill="rgb(219,182,3)" rx="2" ry="2" />
+<text  x="267.73" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (274,895,027 samples, 0.23%)</title><rect x="163.3" y="677" width="2.7" height="15.0" fill="rgb(241,146,4)" rx="2" ry="2" />
+<text  x="166.29" y="687.5" ></text>
+</g>
+<g >
+<title>qio_channel_read_all (15,653,921 samples, 0.01%)</title><rect x="400.9" y="517" width="0.2" height="15.0" fill="rgb(224,219,4)" rx="2" ry="2" />
+<text  x="403.90" y="527.5" ></text>
+</g>
+<g >
+<title>realloc (15,030,847 samples, 0.01%)</title><rect x="336.6" y="549" width="0.2" height="15.0" fill="rgb(207,4,30)" rx="2" ry="2" />
+<text  x="339.63" y="559.5" ></text>
+</g>
+<g >
+<title>do_softirq.part.0 (11,280,079 samples, 0.01%)</title><rect x="401.6" y="245" width="0.1" height="15.0" fill="rgb(249,10,7)" rx="2" ry="2" />
+<text  x="404.60" y="255.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (18,198,999 samples, 0.02%)</title><rect x="1072.2" y="661" width="0.1" height="15.0" fill="rgb(253,72,12)" rx="2" ry="2" />
+<text  x="1075.15" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_v4_fill_cb (27,296,470 samples, 0.02%)</title><rect x="887.3" y="405" width="0.3" height="15.0" fill="rgb(238,68,54)" rx="2" ry="2" />
+<text  x="890.30" y="415.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (10,447,656 samples, 0.01%)</title><rect x="416.9" y="677" width="0.1" height="15.0" fill="rgb(226,3,18)" rx="2" ry="2" />
+<text  x="419.85" y="687.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (12,323,744 samples, 0.01%)</title><rect x="264.5" y="693" width="0.1" height="15.0" fill="rgb(252,173,52)" rx="2" ry="2" />
+<text  x="267.50" y="703.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (11,173,224 samples, 0.01%)</title><rect x="383.3" y="469" width="0.1" height="15.0" fill="rgb(235,133,23)" rx="2" ry="2" />
+<text  x="386.28" y="479.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,060,238,503 samples, 0.87%)</title><rect x="148.5" y="789" width="10.3" height="15.0" fill="rgb(207,120,23)" rx="2" ry="2" />
+<text  x="151.52" y="799.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (8,187,921,322 samples, 6.75%)</title><rect x="852.5" y="693" width="79.7" height="15.0" fill="rgb(212,201,31)" rx="2" ry="2" />
+<text  x="855.48" y="703.5" >asm_sysve..</text>
+</g>
+<g >
+<title>native_sched_clock (15,913,680 samples, 0.01%)</title><rect x="820.7" y="613" width="0.1" height="15.0" fill="rgb(236,173,43)" rx="2" ry="2" />
+<text  x="823.69" y="623.5" ></text>
+</g>
+<g >
+<title>futex_wake (16,002,250 samples, 0.01%)</title><rect x="402.2" y="453" width="0.2" height="15.0" fill="rgb(216,199,5)" rx="2" ry="2" />
+<text  x="405.23" y="463.5" ></text>
+</g>
+<g >
+<title>mdadm (11,651,550 samples, 0.01%)</title><rect x="280.8" y="805" width="0.2" height="15.0" fill="rgb(237,105,15)" rx="2" ry="2" />
+<text  x="283.84" y="815.5" ></text>
+</g>
+<g >
+<title>__poll (38,797,900 samples, 0.03%)</title><rect x="281.4" y="725" width="0.4" height="15.0" fill="rgb(214,143,45)" rx="2" ry="2" />
+<text  x="284.41" y="735.5" ></text>
+</g>
+<g >
+<title>do_filp_open (12,200,014 samples, 0.01%)</title><rect x="399.2" y="677" width="0.1" height="15.0" fill="rgb(231,22,6)" rx="2" ry="2" />
+<text  x="402.15" y="687.5" ></text>
+</g>
+<g >
+<title>load_balance (48,398,495 samples, 0.04%)</title><rect x="905.8" y="613" width="0.5" height="15.0" fill="rgb(226,170,34)" rx="2" ry="2" />
+<text  x="908.79" y="623.5" ></text>
+</g>
+<g >
+<title>cpuacct_charge (13,811,460 samples, 0.01%)</title><rect x="369.7" y="389" width="0.1" height="15.0" fill="rgb(248,188,8)" rx="2" ry="2" />
+<text  x="372.66" y="399.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (10,679,162 samples, 0.01%)</title><rect x="930.9" y="629" width="0.1" height="15.0" fill="rgb(221,75,8)" rx="2" ry="2" />
+<text  x="933.93" y="639.5" ></text>
+</g>
+<g >
+<title>[unknown] (20,554,621 samples, 0.02%)</title><rect x="554.2" y="789" width="0.2" height="15.0" fill="rgb(205,10,25)" rx="2" ry="2" />
+<text  x="557.16" y="799.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (406,283,542 samples, 0.34%)</title><rect x="292.7" y="501" width="4.0" height="15.0" fill="rgb(230,99,21)" rx="2" ry="2" />
+<text  x="295.71" y="511.5" ></text>
+</g>
+<g >
+<title>do_writepages (364,791,472 samples, 0.30%)</title><rect x="202.5" y="645" width="3.6" height="15.0" fill="rgb(217,136,23)" rx="2" ry="2" />
+<text  x="205.50" y="655.5" ></text>
+</g>
+<g >
+<title>ktime_get_ts64 (67,542,507 samples, 0.06%)</title><rect x="380.9" y="485" width="0.6" height="15.0" fill="rgb(251,148,27)" rx="2" ry="2" />
+<text  x="383.85" y="495.5" ></text>
+</g>
+<g >
+<title>cgroup_rstat_flush_irqsafe (27,736,642 samples, 0.02%)</title><rect x="424.6" y="517" width="0.3" height="15.0" fill="rgb(252,204,45)" rx="2" ry="2" />
+<text  x="427.64" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (460,596,870 samples, 0.38%)</title><rect x="43.5" y="677" width="4.5" height="15.0" fill="rgb(214,122,22)" rx="2" ry="2" />
+<text  x="46.48" y="687.5" ></text>
+</g>
+<g >
+<title>sugov_update_single_freq (12,866,134 samples, 0.01%)</title><rect x="1117.0" y="613" width="0.2" height="15.0" fill="rgb(245,58,26)" rx="2" ry="2" />
+<text  x="1120.04" y="623.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (16,200,144 samples, 0.01%)</title><rect x="365.7" y="437" width="0.2" height="15.0" fill="rgb(235,5,23)" rx="2" ry="2" />
+<text  x="368.71" y="447.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (63,656,125 samples, 0.05%)</title><rect x="1071.4" y="677" width="0.6" height="15.0" fill="rgb(242,53,46)" rx="2" ry="2" />
+<text  x="1074.38" y="687.5" ></text>
+</g>
+<g >
+<title>get_page_from_freelist (210,422,325 samples, 0.17%)</title><rect x="439.4" y="501" width="2.0" height="15.0" fill="rgb(244,75,53)" rx="2" ry="2" />
+<text  x="442.39" y="511.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,742,297 samples, 0.01%)</title><rect x="398.2" y="437" width="0.1" height="15.0" fill="rgb(251,37,43)" rx="2" ry="2" />
+<text  x="401.24" y="447.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (203,417,024 samples, 0.17%)</title><rect x="309.0" y="261" width="2.0" height="15.0" fill="rgb(235,220,23)" rx="2" ry="2" />
+<text  x="311.98" y="271.5" ></text>
+</g>
+<g >
+<title>lock_sock_nested (51,744,424 samples, 0.04%)</title><rect x="299.7" y="421" width="0.5" height="15.0" fill="rgb(206,229,10)" rx="2" ry="2" />
+<text  x="302.73" y="431.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (23,837,753 samples, 0.02%)</title><rect x="206.1" y="677" width="0.2" height="15.0" fill="rgb(208,204,31)" rx="2" ry="2" />
+<text  x="209.10" y="687.5" ></text>
+</g>
+<g >
+<title>cpuidle_select (23,628,616 samples, 0.02%)</title><rect x="1098.7" y="725" width="0.2" height="15.0" fill="rgb(236,45,28)" rx="2" ry="2" />
+<text  x="1101.66" y="735.5" ></text>
+</g>
+<g >
+<title>rb_erase (13,749,372 samples, 0.01%)</title><rect x="365.4" y="421" width="0.2" height="15.0" fill="rgb(230,128,30)" rx="2" ry="2" />
+<text  x="368.42" y="431.5" ></text>
+</g>
+<g >
+<title>nr_iowait_cpu (20,952,943 samples, 0.02%)</title><rect x="1036.2" y="629" width="0.2" height="15.0" fill="rgb(249,14,14)" rx="2" ry="2" />
+<text  x="1039.21" y="639.5" ></text>
+</g>
+<g >
+<title>kworker/u64:3-k (1,154,277,250 samples, 0.95%)</title><rect x="184.8" y="805" width="11.3" height="15.0" fill="rgb(221,91,11)" rx="2" ry="2" />
+<text  x="187.83" y="815.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (13,558,495 samples, 0.01%)</title><rect x="396.3" y="341" width="0.1" height="15.0" fill="rgb(241,192,4)" rx="2" ry="2" />
+<text  x="399.27" y="351.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (12,200,014 samples, 0.01%)</title><rect x="399.2" y="741" width="0.1" height="15.0" fill="rgb(247,141,40)" rx="2" ry="2" />
+<text  x="402.15" y="751.5" ></text>
+</g>
+<g >
+<title>xts_crypt (107,851,003 samples, 0.09%)</title><rect x="58.1" y="661" width="1.0" height="15.0" fill="rgb(222,0,37)" rx="2" ry="2" />
+<text  x="61.08" y="671.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (330,961,478 samples, 0.27%)</title><rect x="892.0" y="421" width="3.2" height="15.0" fill="rgb(220,191,46)" rx="2" ry="2" />
+<text  x="894.95" y="431.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (20,646,990 samples, 0.02%)</title><rect x="181.0" y="645" width="0.2" height="15.0" fill="rgb(248,90,16)" rx="2" ry="2" />
+<text  x="184.01" y="655.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (74,537,773 samples, 0.06%)</title><rect x="32.1" y="693" width="0.7" height="15.0" fill="rgb(220,64,42)" rx="2" ry="2" />
+<text  x="35.06" y="703.5" ></text>
+</g>
+<g >
+<title>kthread (1,154,277,250 samples, 0.95%)</title><rect x="184.8" y="773" width="11.3" height="15.0" fill="rgb(246,223,23)" rx="2" ry="2" />
+<text  x="187.83" y="783.5" ></text>
+</g>
+<g >
+<title>napi_consume_skb (25,308,363 samples, 0.02%)</title><rect x="818.9" y="613" width="0.3" height="15.0" fill="rgb(222,228,27)" rx="2" ry="2" />
+<text  x="821.91" y="623.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (18,707,266 samples, 0.02%)</title><rect x="874.9" y="389" width="0.2" height="15.0" fill="rgb(242,10,14)" rx="2" ry="2" />
+<text  x="877.93" y="399.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (10,338,541 samples, 0.01%)</title><rect x="264.8" y="693" width="0.1" height="15.0" fill="rgb(224,200,9)" rx="2" ry="2" />
+<text  x="267.81" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum (11,883,788 samples, 0.01%)</title><rect x="398.7" y="389" width="0.2" height="15.0" fill="rgb(216,201,52)" rx="2" ry="2" />
+<text  x="401.75" y="399.5" ></text>
+</g>
+<g >
+<title>syscall_return_via_sysret (16,231,641 samples, 0.01%)</title><rect x="384.4" y="549" width="0.2" height="15.0" fill="rgb(219,121,5)" rx="2" ry="2" />
+<text  x="387.39" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,044,169,466 samples, 0.86%)</title><rect x="185.1" y="693" width="10.1" height="15.0" fill="rgb(248,12,50)" rx="2" ry="2" />
+<text  x="188.06" y="703.5" ></text>
+</g>
+<g >
+<title>inet6_csk_xmit (543,058,066 samples, 0.45%)</title><rect x="387.5" y="517" width="5.3" height="15.0" fill="rgb(216,64,10)" rx="2" ry="2" />
+<text  x="390.48" y="527.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (60,824,981 samples, 0.05%)</title><rect x="130.4" y="645" width="0.6" height="15.0" fill="rgb(227,105,29)" rx="2" ry="2" />
+<text  x="133.42" y="655.5" ></text>
+</g>
+<g >
+<title>__iommu_dma_map (17,310,038 samples, 0.01%)</title><rect x="876.0" y="181" width="0.2" height="15.0" fill="rgb(223,19,52)" rx="2" ry="2" />
+<text  x="878.99" y="191.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (35,437,515 samples, 0.03%)</title><rect x="1164.7" y="661" width="0.4" height="15.0" fill="rgb(251,214,21)" rx="2" ry="2" />
+<text  x="1167.71" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (31,823,086 samples, 0.03%)</title><rect x="809.5" y="405" width="0.3" height="15.0" fill="rgb(250,207,47)" rx="2" ry="2" />
+<text  x="812.50" y="415.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (157,101,701 samples, 0.13%)</title><rect x="1031.9" y="581" width="1.5" height="15.0" fill="rgb(228,118,10)" rx="2" ry="2" />
+<text  x="1034.89" y="591.5" ></text>
+</g>
+<g >
+<title>__xa_clear_mark (11,439,725 samples, 0.01%)</title><rect x="107.8" y="645" width="0.1" height="15.0" fill="rgb(252,113,38)" rx="2" ry="2" />
+<text  x="110.84" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (23,801,209 samples, 0.02%)</title><rect x="1160.0" y="677" width="0.2" height="15.0" fill="rgb(239,193,5)" rx="2" ry="2" />
+<text  x="1163.00" y="687.5" ></text>
+</g>
+<g >
+<title>_int_free (35,830,312 samples, 0.03%)</title><rect x="412.9" y="613" width="0.3" height="15.0" fill="rgb(216,146,32)" rx="2" ry="2" />
+<text  x="415.87" y="623.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (381,582,478 samples, 0.31%)</title><rect x="549.1" y="709" width="3.7" height="15.0" fill="rgb(215,53,37)" rx="2" ry="2" />
+<text  x="552.07" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_da_write_begin (1,460,906,273 samples, 1.21%)</title><rect x="428.0" y="581" width="14.3" height="15.0" fill="rgb(211,182,26)" rx="2" ry="2" />
+<text  x="431.04" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (16,617,099 samples, 0.01%)</title><rect x="399.8" y="741" width="0.2" height="15.0" fill="rgb(222,133,34)" rx="2" ry="2" />
+<text  x="402.82" y="751.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (10,994,395 samples, 0.01%)</title><rect x="436.5" y="485" width="0.1" height="15.0" fill="rgb(254,116,52)" rx="2" ry="2" />
+<text  x="439.51" y="495.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (11,302,711 samples, 0.01%)</title><rect x="224.1" y="677" width="0.1" height="15.0" fill="rgb(234,26,4)" rx="2" ry="2" />
+<text  x="227.06" y="687.5" ></text>
+</g>
+<g >
+<title>poll_freewait (31,178,667 samples, 0.03%)</title><rect x="420.6" y="629" width="0.3" height="15.0" fill="rgb(250,191,45)" rx="2" ry="2" />
+<text  x="423.58" y="639.5" ></text>
+</g>
+<g >
+<title>xts_crypt (123,526,404 samples, 0.10%)</title><rect x="274.7" y="661" width="1.2" height="15.0" fill="rgb(216,175,6)" rx="2" ry="2" />
+<text  x="277.74" y="671.5" ></text>
+</g>
+<g >
+<title>__common_interrupt (1,468,289,073 samples, 1.21%)</title><rect x="758.9" y="661" width="14.3" height="15.0" fill="rgb(246,98,54)" rx="2" ry="2" />
+<text  x="761.88" y="671.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (17,016,348 samples, 0.01%)</title><rect x="885.9" y="277" width="0.1" height="15.0" fill="rgb(234,119,37)" rx="2" ry="2" />
+<text  x="888.88" y="287.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (15,143,169 samples, 0.01%)</title><rect x="554.2" y="741" width="0.1" height="15.0" fill="rgb(239,67,34)" rx="2" ry="2" />
+<text  x="557.19" y="751.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (45,906,438 samples, 0.04%)</title><rect x="229.5" y="645" width="0.5" height="15.0" fill="rgb(214,37,0)" rx="2" ry="2" />
+<text  x="232.52" y="655.5" ></text>
+</g>
+<g >
+<title>strncpy (75,656,309 samples, 0.06%)</title><rect x="902.6" y="389" width="0.8" height="15.0" fill="rgb(205,55,42)" rx="2" ry="2" />
+<text  x="905.64" y="399.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (31,932,089 samples, 0.03%)</title><rect x="857.0" y="645" width="0.3" height="15.0" fill="rgb(221,50,53)" rx="2" ry="2" />
+<text  x="859.96" y="655.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (31,565,297 samples, 0.03%)</title><rect x="36.5" y="629" width="0.3" height="15.0" fill="rgb(252,180,47)" rx="2" ry="2" />
+<text  x="39.52" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (986,634,114 samples, 0.81%)</title><rect x="159.1" y="693" width="9.6" height="15.0" fill="rgb(250,67,38)" rx="2" ry="2" />
+<text  x="162.10" y="703.5" ></text>
+</g>
+<g >
+<title>__switch_to (28,132,775 samples, 0.02%)</title><rect x="355.7" y="549" width="0.3" height="15.0" fill="rgb(217,63,42)" rx="2" ry="2" />
+<text  x="358.73" y="559.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,054,676,528 samples, 0.87%)</title><rect x="33.0" y="757" width="10.3" height="15.0" fill="rgb(249,163,7)" rx="2" ry="2" />
+<text  x="36.00" y="767.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (26,313,609 samples, 0.02%)</title><rect x="198.3" y="645" width="0.2" height="15.0" fill="rgb(207,165,1)" rx="2" ry="2" />
+<text  x="201.27" y="655.5" ></text>
+</g>
+<g >
+<title>read (37,537,196 samples, 0.03%)</title><rect x="417.4" y="629" width="0.4" height="15.0" fill="rgb(248,31,30)" rx="2" ry="2" />
+<text  x="420.40" y="639.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (11,518,866 samples, 0.01%)</title><rect x="236.8" y="677" width="0.1" height="15.0" fill="rgb(208,201,50)" rx="2" ry="2" />
+<text  x="239.81" y="687.5" ></text>
+</g>
+<g >
+<title>blk_mq_end_request_batch (12,285,703 samples, 0.01%)</title><rect x="563.5" y="549" width="0.1" height="15.0" fill="rgb(238,66,14)" rx="2" ry="2" />
+<text  x="566.45" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (11,227,910 samples, 0.01%)</title><rect x="401.3" y="469" width="0.2" height="15.0" fill="rgb(223,1,29)" rx="2" ry="2" />
+<text  x="404.35" y="479.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (81,202,581 samples, 0.07%)</title><rect x="74.2" y="693" width="0.8" height="15.0" fill="rgb(217,111,29)" rx="2" ry="2" />
+<text  x="77.23" y="703.5" ></text>
+</g>
+<g >
+<title>__iommu_map (11,838,449 samples, 0.01%)</title><rect x="294.0" y="117" width="0.1" height="15.0" fill="rgb(227,228,11)" rx="2" ry="2" />
+<text  x="296.99" y="127.5" ></text>
+</g>
+<g >
+<title>systrim.constprop.0 (26,701,096 samples, 0.02%)</title><rect x="412.9" y="597" width="0.3" height="15.0" fill="rgb(238,122,52)" rx="2" ry="2" />
+<text  x="415.95" y="607.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (49,408,272 samples, 0.04%)</title><rect x="78.8" y="645" width="0.5" height="15.0" fill="rgb(254,60,8)" rx="2" ry="2" />
+<text  x="81.83" y="655.5" ></text>
+</g>
+<g >
+<title>preempt_count_sub (15,095,291 samples, 0.01%)</title><rect x="1163.0" y="645" width="0.1" height="15.0" fill="rgb(232,220,20)" rx="2" ry="2" />
+<text  x="1165.98" y="655.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (103,209,858 samples, 0.09%)</title><rect x="402.4" y="597" width="1.0" height="15.0" fill="rgb(208,179,6)" rx="2" ry="2" />
+<text  x="405.40" y="607.5" ></text>
+</g>
+<g >
+<title>syscall_exit_to_user_mode (38,655,213 samples, 0.03%)</title><rect x="324.9" y="485" width="0.4" height="15.0" fill="rgb(240,154,21)" rx="2" ry="2" />
+<text  x="327.88" y="495.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (13,394,925 samples, 0.01%)</title><rect x="403.9" y="661" width="0.1" height="15.0" fill="rgb(216,92,40)" rx="2" ry="2" />
+<text  x="406.85" y="671.5" ></text>
+</g>
+<g >
+<title>schedule_idle (894,463,287 samples, 0.74%)</title><rect x="1168.2" y="725" width="8.7" height="15.0" fill="rgb(249,192,42)" rx="2" ry="2" />
+<text  x="1171.15" y="735.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (65,356,000 samples, 0.05%)</title><rect x="931.0" y="661" width="0.7" height="15.0" fill="rgb(209,155,22)" rx="2" ry="2" />
+<text  x="934.03" y="671.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (333,194,800 samples, 0.27%)</title><rect x="400.2" y="693" width="3.2" height="15.0" fill="rgb(230,179,6)" rx="2" ry="2" />
+<text  x="403.16" y="703.5" ></text>
+</g>
+<g >
+<title>ct_nmi_enter (325,858,656 samples, 0.27%)</title><rect x="844.9" y="645" width="3.1" height="15.0" fill="rgb(235,85,18)" rx="2" ry="2" />
+<text  x="847.86" y="655.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (18,038,938 samples, 0.01%)</title><rect x="572.0" y="693" width="0.2" height="15.0" fill="rgb(224,213,30)" rx="2" ry="2" />
+<text  x="574.98" y="703.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,182,560,363 samples, 0.98%)</title><rect x="225.3" y="709" width="11.5" height="15.0" fill="rgb(254,141,52)" rx="2" ry="2" />
+<text  x="228.28" y="719.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (14,860,802 samples, 0.01%)</title><rect x="431.9" y="501" width="0.1" height="15.0" fill="rgb(205,41,44)" rx="2" ry="2" />
+<text  x="434.89" y="511.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (25,587,489 samples, 0.02%)</title><rect x="910.1" y="645" width="0.3" height="15.0" fill="rgb(220,65,39)" rx="2" ry="2" />
+<text  x="913.13" y="655.5" ></text>
+</g>
+<g >
+<title>mpage_submit_page (12,393,625 samples, 0.01%)</title><rect x="22.4" y="581" width="0.1" height="15.0" fill="rgb(228,175,26)" rx="2" ry="2" />
+<text  x="25.39" y="591.5" ></text>
+</g>
+<g >
+<title>kworker/u64:38- (1,052,042,496 samples, 0.87%)</title><rect x="214.0" y="805" width="10.2" height="15.0" fill="rgb(241,187,6)" rx="2" ry="2" />
+<text  x="216.98" y="815.5" ></text>
+</g>
+<g >
+<title>scheduler_tick (199,152,443 samples, 0.16%)</title><rect x="913.7" y="565" width="1.9" height="15.0" fill="rgb(214,213,46)" rx="2" ry="2" />
+<text  x="916.68" y="575.5" ></text>
+</g>
+<g >
+<title>ttwu_do_wakeup (43,655,193 samples, 0.04%)</title><rect x="1034.5" y="629" width="0.4" height="15.0" fill="rgb(223,74,42)" rx="2" ry="2" />
+<text  x="1037.46" y="639.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_list_core (212,790,068 samples, 0.18%)</title><rect x="807.8" y="549" width="2.1" height="15.0" fill="rgb(250,213,18)" rx="2" ry="2" />
+<text  x="810.81" y="559.5" ></text>
+</g>
+<g >
+<title>qemu_memalign (33,804,795 samples, 0.03%)</title><rect x="413.6" y="629" width="0.3" height="15.0" fill="rgb(205,179,6)" rx="2" ry="2" />
+<text  x="416.56" y="639.5" ></text>
+</g>
+<g >
+<title>bdrv_co_pwritev_part (113,151,445 samples, 0.09%)</title><rect x="414.3" y="693" width="1.1" height="15.0" fill="rgb(251,120,39)" rx="2" ry="2" />
+<text  x="417.31" y="703.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (74,268,498 samples, 0.06%)</title><rect x="414.5" y="597" width="0.8" height="15.0" fill="rgb(206,35,46)" rx="2" ry="2" />
+<text  x="417.54" y="607.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (11,580,123 samples, 0.01%)</title><rect x="293.5" y="245" width="0.1" height="15.0" fill="rgb(205,72,41)" rx="2" ry="2" />
+<text  x="296.46" y="255.5" ></text>
+</g>
+<g >
+<title>select_estimate_accuracy (88,768,046 samples, 0.07%)</title><rect x="376.2" y="485" width="0.9" height="15.0" fill="rgb(243,18,30)" rx="2" ry="2" />
+<text  x="379.21" y="495.5" ></text>
+</g>
+<g >
+<title>fput (24,054,040 samples, 0.02%)</title><rect x="362.5" y="469" width="0.2" height="15.0" fill="rgb(214,2,26)" rx="2" ry="2" />
+<text  x="365.51" y="479.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (35,841,451 samples, 0.03%)</title><rect x="152.2" y="629" width="0.4" height="15.0" fill="rgb(249,41,31)" rx="2" ry="2" />
+<text  x="155.22" y="639.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (15,255,084 samples, 0.01%)</title><rect x="391.7" y="469" width="0.2" height="15.0" fill="rgb(224,118,41)" rx="2" ry="2" />
+<text  x="394.70" y="479.5" ></text>
+</g>
+<g >
+<title>nvme_irq (104,732,813 samples, 0.09%)</title><rect x="760.8" y="597" width="1.0" height="15.0" fill="rgb(219,120,29)" rx="2" ry="2" />
+<text  x="763.78" y="607.5" ></text>
+</g>
+<g >
+<title>sockfd_lookup_light (22,866,699 samples, 0.02%)</title><rect x="324.6" y="453" width="0.2" height="15.0" fill="rgb(229,114,51)" rx="2" ry="2" />
+<text  x="327.57" y="463.5" ></text>
+</g>
+<g >
+<title>balance_dirty_pages (29,679,237 samples, 0.02%)</title><rect x="424.6" y="565" width="0.3" height="15.0" fill="rgb(248,19,3)" rx="2" ry="2" />
+<text  x="427.63" y="575.5" ></text>
+</g>
+<g >
+<title>__sk_mem_raise_allocated (15,584,023 samples, 0.01%)</title><rect x="395.9" y="533" width="0.1" height="15.0" fill="rgb(213,105,19)" rx="2" ry="2" />
+<text  x="398.87" y="543.5" ></text>
+</g>
+<g >
+<title>tick_nohz_irq_exit (52,087,922 samples, 0.04%)</title><rect x="849.7" y="661" width="0.5" height="15.0" fill="rgb(232,73,1)" rx="2" ry="2" />
+<text  x="852.70" y="671.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (105,957,321 samples, 0.09%)</title><rect x="1139.0" y="629" width="1.1" height="15.0" fill="rgb(246,112,26)" rx="2" ry="2" />
+<text  x="1142.03" y="639.5" ></text>
+</g>
+<g >
+<title>napi_watchdog (68,243,853 samples, 0.06%)</title><rect x="911.5" y="613" width="0.7" height="15.0" fill="rgb(220,111,11)" rx="2" ry="2" />
+<text  x="914.50" y="623.5" ></text>
+</g>
+<g >
+<title>__ftruncate64 (120,738,582 samples, 0.10%)</title><rect x="546.5" y="725" width="1.2" height="15.0" fill="rgb(243,181,43)" rx="2" ry="2" />
+<text  x="549.50" y="735.5" ></text>
+</g>
+<g >
+<title>br_dev_queue_push_xmit (57,359,904 samples, 0.05%)</title><rect x="875.7" y="293" width="0.6" height="15.0" fill="rgb(246,217,41)" rx="2" ry="2" />
+<text  x="878.71" y="303.5" ></text>
+</g>
+<g >
+<title>xts_crypt (107,376,943 samples, 0.09%)</title><rect x="172.6" y="661" width="1.0" height="15.0" fill="rgb(217,223,22)" rx="2" ry="2" />
+<text  x="175.55" y="671.5" ></text>
+</g>
+<g >
+<title>ksys_write (10,524,838 samples, 0.01%)</title><rect x="554.2" y="725" width="0.1" height="15.0" fill="rgb(219,68,35)" rx="2" ry="2" />
+<text  x="557.23" y="735.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,141,645,781 samples, 0.94%)</title><rect x="43.3" y="789" width="11.1" height="15.0" fill="rgb(226,167,12)" rx="2" ry="2" />
+<text  x="46.26" y="799.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (177,700,171 samples, 0.15%)</title><rect x="806.0" y="565" width="1.7" height="15.0" fill="rgb(217,155,2)" rx="2" ry="2" />
+<text  x="808.96" y="575.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,029,566,131 samples, 0.85%)</title><rect x="214.0" y="709" width="10.0" height="15.0" fill="rgb(240,45,1)" rx="2" ry="2" />
+<text  x="217.02" y="719.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (34,587,464 samples, 0.03%)</title><rect x="1167.8" y="709" width="0.3" height="15.0" fill="rgb(240,138,2)" rx="2" ry="2" />
+<text  x="1170.79" y="719.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (5,312,671,504 samples, 4.38%)</title><rect x="858.3" y="661" width="51.7" height="15.0" fill="rgb(220,158,11)" rx="2" ry="2" />
+<text  x="861.29" y="671.5" >__irq..</text>
+</g>
+<g >
+<title>iv_of_dmreq (58,868,616 samples, 0.05%)</title><rect x="136.7" y="693" width="0.6" height="15.0" fill="rgb(208,219,43)" rx="2" ry="2" />
+<text  x="139.69" y="703.5" ></text>
+</g>
+<g >
+<title>nf_ct_get_tuple (12,183,126 samples, 0.01%)</title><rect x="895.1" y="405" width="0.1" height="15.0" fill="rgb(242,143,31)" rx="2" ry="2" />
+<text  x="898.06" y="415.5" ></text>
+</g>
+<g >
+<title>filemap_unaccount_folio (16,377,107 samples, 0.01%)</title><rect x="546.9" y="565" width="0.1" height="15.0" fill="rgb(206,23,33)" rx="2" ry="2" />
+<text  x="549.86" y="575.5" ></text>
+</g>
+<g >
+<title>br_dev_xmit (105,238,206 samples, 0.09%)</title><rect x="293.4" y="277" width="1.0" height="15.0" fill="rgb(236,111,16)" rx="2" ry="2" />
+<text  x="296.38" y="287.5" ></text>
+</g>
+<g >
+<title>__filemap_get_folio (44,455,055 samples, 0.04%)</title><rect x="397.9" y="469" width="0.5" height="15.0" fill="rgb(227,16,4)" rx="2" ry="2" />
+<text  x="400.93" y="479.5" ></text>
+</g>
+<g >
+<title>skb_defer_rx_timestamp (14,150,528 samples, 0.01%)</title><rect x="905.2" y="549" width="0.1" height="15.0" fill="rgb(207,228,39)" rx="2" ry="2" />
+<text  x="908.21" y="559.5" ></text>
+</g>
+<g >
+<title>__do_softirq (11,280,079 samples, 0.01%)</title><rect x="401.6" y="229" width="0.1" height="15.0" fill="rgb(223,225,48)" rx="2" ry="2" />
+<text  x="404.60" y="239.5" ></text>
+</g>
+<g >
+<title>__do_softirq (4,720,972,024 samples, 3.89%)</title><rect x="773.3" y="645" width="46.0" height="15.0" fill="rgb(254,49,5)" rx="2" ry="2" />
+<text  x="776.32" y="655.5" >__do..</text>
+</g>
+<g >
+<title>napi_gro_complete.constprop.0 (11,328,139 samples, 0.01%)</title><rect x="861.5" y="549" width="0.1" height="15.0" fill="rgb(229,60,19)" rx="2" ry="2" />
+<text  x="864.51" y="559.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_local_in (32,812,777 samples, 0.03%)</title><rect x="869.5" y="421" width="0.3" height="15.0" fill="rgb(226,150,4)" rx="2" ry="2" />
+<text  x="872.50" y="431.5" ></text>
+</g>
+<g >
+<title>nbd_send_request (542,239,980 samples, 0.45%)</title><rect x="407.5" y="549" width="5.3" height="15.0" fill="rgb(249,194,2)" rx="2" ry="2" />
+<text  x="410.48" y="559.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (33,971,265 samples, 0.03%)</title><rect x="281.0" y="741" width="0.3" height="15.0" fill="rgb(244,34,23)" rx="2" ry="2" />
+<text  x="283.99" y="751.5" ></text>
+</g>
+<g >
+<title>_int_malloc (17,401,861 samples, 0.01%)</title><rect x="350.8" y="565" width="0.1" height="15.0" fill="rgb(250,33,54)" rx="2" ry="2" />
+<text  x="353.76" y="575.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,054,616,128 samples, 0.87%)</title><rect x="254.4" y="725" width="10.2" height="15.0" fill="rgb(250,48,6)" rx="2" ry="2" />
+<text  x="257.35" y="735.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (11,636,343 samples, 0.01%)</title><rect x="401.6" y="261" width="0.1" height="15.0" fill="rgb(247,18,17)" rx="2" ry="2" />
+<text  x="404.60" y="271.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (140,330,297 samples, 0.12%)</title><rect x="107.2" y="709" width="1.3" height="15.0" fill="rgb(252,184,41)" rx="2" ry="2" />
+<text  x="110.18" y="719.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (29,719,762 samples, 0.02%)</title><rect x="401.8" y="325" width="0.3" height="15.0" fill="rgb(205,120,2)" rx="2" ry="2" />
+<text  x="404.77" y="335.5" ></text>
+</g>
+<g >
+<title>[unknown] (17,230,459 samples, 0.01%)</title><rect x="399.1" y="789" width="0.2" height="15.0" fill="rgb(232,183,24)" rx="2" ry="2" />
+<text  x="402.13" y="799.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (10,850,487,559 samples, 8.95%)</title><rect x="932.2" y="693" width="105.6" height="15.0" fill="rgb(212,47,41)" rx="2" ry="2" />
+<text  x="935.20" y="703.5" >asm_sysvec_c..</text>
+</g>
+<g >
+<title>_IO_file_fopen@@GLIBC_2.2.5 (12,923,818 samples, 0.01%)</title><rect x="1189.6" y="709" width="0.1" height="15.0" fill="rgb(235,200,27)" rx="2" ry="2" />
+<text  x="1192.60" y="719.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (15,787,998 samples, 0.01%)</title><rect x="314.5" y="309" width="0.2" height="15.0" fill="rgb(221,115,38)" rx="2" ry="2" />
+<text  x="317.51" y="319.5" ></text>
+</g>
+<g >
+<title>curl_pread (10,505,682,186 samples, 8.67%)</title><rect x="283.0" y="645" width="102.2" height="15.0" fill="rgb(232,174,15)" rx="2" ry="2" />
+<text  x="285.98" y="655.5" >curl_pread</text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (186,122,993 samples, 0.15%)</title><rect x="108.7" y="677" width="1.8" height="15.0" fill="rgb(205,10,13)" rx="2" ry="2" />
+<text  x="111.70" y="687.5" ></text>
+</g>
+<g >
+<title>tcp_poll (13,595,325 samples, 0.01%)</title><rect x="422.6" y="613" width="0.1" height="15.0" fill="rgb(243,169,43)" rx="2" ry="2" />
+<text  x="425.59" y="623.5" ></text>
+</g>
+<g >
+<title>__sk_dst_check (12,701,637 samples, 0.01%)</title><rect x="305.3" y="373" width="0.1" height="15.0" fill="rgb(250,65,45)" rx="2" ry="2" />
+<text  x="308.26" y="383.5" ></text>
+</g>
+<g >
+<title>inet6_recvmsg (84,367,489 samples, 0.07%)</title><rect x="402.5" y="405" width="0.8" height="15.0" fill="rgb(233,124,3)" rx="2" ry="2" />
+<text  x="405.53" y="415.5" ></text>
+</g>
+<g >
+<title>gnome-shell (18,858,003 samples, 0.02%)</title><rect x="10.9" y="805" width="0.2" height="15.0" fill="rgb(250,89,22)" rx="2" ry="2" />
+<text  x="13.87" y="815.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (15,976,064 samples, 0.01%)</title><rect x="374.3" y="421" width="0.2" height="15.0" fill="rgb(250,219,44)" rx="2" ry="2" />
+<text  x="377.34" y="431.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (291,450,607 samples, 0.24%)</title><rect x="425.1" y="565" width="2.9" height="15.0" fill="rgb(206,94,51)" rx="2" ry="2" />
+<text  x="428.13" y="575.5" ></text>
+</g>
+<g >
+<title>update_process_times (56,886,017 samples, 0.05%)</title><rect x="543.5" y="549" width="0.6" height="15.0" fill="rgb(229,102,21)" rx="2" ry="2" />
+<text  x="546.50" y="559.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (86,650,566 samples, 0.07%)</title><rect x="883.5" y="245" width="0.8" height="15.0" fill="rgb(231,119,19)" rx="2" ry="2" />
+<text  x="886.50" y="255.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (758,020,987 samples, 0.63%)</title><rect x="896.0" y="405" width="7.4" height="15.0" fill="rgb(239,200,42)" rx="2" ry="2" />
+<text  x="899.00" y="415.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (12,692,096 samples, 0.01%)</title><rect x="397.6" y="421" width="0.1" height="15.0" fill="rgb(235,197,29)" rx="2" ry="2" />
+<text  x="400.59" y="431.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (25,571,137 samples, 0.02%)</title><rect x="415.7" y="725" width="0.3" height="15.0" fill="rgb(226,111,35)" rx="2" ry="2" />
+<text  x="418.72" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (178,722,217 samples, 0.15%)</title><rect x="76.9" y="661" width="1.8" height="15.0" fill="rgb(223,107,26)" rx="2" ry="2" />
+<text  x="79.94" y="671.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (73,676,743 samples, 0.06%)</title><rect x="157.9" y="693" width="0.7" height="15.0" fill="rgb(214,30,54)" rx="2" ry="2" />
+<text  x="160.93" y="703.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (14,311,313 samples, 0.01%)</title><rect x="392.6" y="469" width="0.1" height="15.0" fill="rgb(246,56,37)" rx="2" ry="2" />
+<text  x="395.60" y="479.5" ></text>
+</g>
+<g >
+<title>__GI___getsockname (36,074,252 samples, 0.03%)</title><rect x="337.3" y="565" width="0.3" height="15.0" fill="rgb(241,215,10)" rx="2" ry="2" />
+<text  x="340.26" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (170,052,985 samples, 0.14%)</title><rect x="200.2" y="677" width="1.6" height="15.0" fill="rgb(240,96,31)" rx="2" ry="2" />
+<text  x="203.18" y="687.5" ></text>
+</g>
+<g >
+<title>__napi_build_skb (47,272,793 samples, 0.04%)</title><rect x="801.9" y="565" width="0.5" height="15.0" fill="rgb(245,46,31)" rx="2" ry="2" />
+<text  x="804.89" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (279,731,999 samples, 0.23%)</title><rect x="166.0" y="677" width="2.7" height="15.0" fill="rgb(220,61,21)" rx="2" ry="2" />
+<text  x="168.97" y="687.5" ></text>
+</g>
+<g >
+<title>kworker/u64:22 (940,267,579 samples, 0.78%)</title><rect x="169.6" y="805" width="9.1" height="15.0" fill="rgb(246,185,2)" rx="2" ry="2" />
+<text  x="172.56" y="815.5" ></text>
+</g>
+<g >
+<title>kthread (972,199,095 samples, 0.80%)</title><rect x="107.2" y="773" width="9.4" height="15.0" fill="rgb(244,90,18)" rx="2" ry="2" />
+<text  x="110.15" y="783.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (35,078,766 samples, 0.03%)</title><rect x="843.7" y="613" width="0.3" height="15.0" fill="rgb(249,78,9)" rx="2" ry="2" />
+<text  x="846.68" y="623.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (62,555,962 samples, 0.05%)</title><rect x="223.3" y="693" width="0.6" height="15.0" fill="rgb(254,174,47)" rx="2" ry="2" />
+<text  x="226.33" y="703.5" ></text>
+</g>
+<g >
+<title>ttwu_do_wakeup (18,678,307 samples, 0.02%)</title><rect x="1140.1" y="693" width="0.1" height="15.0" fill="rgb(233,166,23)" rx="2" ry="2" />
+<text  x="1143.07" y="703.5" ></text>
+</g>
+<g >
+<title>___slab_alloc (21,912,956 samples, 0.02%)</title><rect x="429.2" y="469" width="0.2" height="15.0" fill="rgb(233,124,18)" rx="2" ry="2" />
+<text  x="432.22" y="479.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (79,882,068 samples, 0.07%)</title><rect x="338.6" y="549" width="0.8" height="15.0" fill="rgb(251,12,27)" rx="2" ry="2" />
+<text  x="341.65" y="559.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (48,911,052 samples, 0.04%)</title><rect x="414.8" y="501" width="0.4" height="15.0" fill="rgb(245,55,46)" rx="2" ry="2" />
+<text  x="417.75" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (254,041,222 samples, 0.21%)</title><rect x="196.3" y="677" width="2.5" height="15.0" fill="rgb(251,216,42)" rx="2" ry="2" />
+<text  x="199.30" y="687.5" ></text>
+</g>
+<g >
+<title>security_file_permission (14,999,648 samples, 0.01%)</title><rect x="385.7" y="613" width="0.1" height="15.0" fill="rgb(229,151,30)" rx="2" ry="2" />
+<text  x="388.66" y="623.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (17,000,881 samples, 0.01%)</title><rect x="224.0" y="709" width="0.2" height="15.0" fill="rgb(224,7,33)" rx="2" ry="2" />
+<text  x="227.04" y="719.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (16,884,301 samples, 0.01%)</title><rect x="401.1" y="501" width="0.2" height="15.0" fill="rgb(233,193,29)" rx="2" ry="2" />
+<text  x="404.09" y="511.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (16,395,373 samples, 0.01%)</title><rect x="333.2" y="485" width="0.2" height="15.0" fill="rgb(248,126,21)" rx="2" ry="2" />
+<text  x="336.24" y="495.5" ></text>
+</g>
+<g >
+<title>__mark_inode_dirty (46,622,478 samples, 0.04%)</title><rect x="423.9" y="565" width="0.4" height="15.0" fill="rgb(215,101,13)" rx="2" ry="2" />
+<text  x="426.86" y="575.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (13,165,110 samples, 0.01%)</title><rect x="108.1" y="629" width="0.2" height="15.0" fill="rgb(212,102,43)" rx="2" ry="2" />
+<text  x="111.14" y="639.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (105,641,525 samples, 0.09%)</title><rect x="113.8" y="549" width="1.0" height="15.0" fill="rgb(245,156,33)" rx="2" ry="2" />
+<text  x="116.81" y="559.5" ></text>
+</g>
+<g >
+<title>__virt_addr_valid (41,143,493 samples, 0.03%)</title><rect x="322.0" y="341" width="0.4" height="15.0" fill="rgb(207,147,6)" rx="2" ry="2" />
+<text  x="325.04" y="351.5" ></text>
+</g>
+<g >
+<title>__x64_sys_rt_sigaction (12,158,908 samples, 0.01%)</title><rect x="283.8" y="549" width="0.1" height="15.0" fill="rgb(208,205,51)" rx="2" ry="2" />
+<text  x="286.77" y="559.5" ></text>
+</g>
+<g >
+<title>inet6_recvmsg (21,681,796 samples, 0.02%)</title><rect x="385.8" y="597" width="0.2" height="15.0" fill="rgb(249,101,35)" rx="2" ry="2" />
+<text  x="388.83" y="607.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,132,010,408 samples, 0.93%)</title><rect x="86.1" y="757" width="11.1" height="15.0" fill="rgb(224,142,26)" rx="2" ry="2" />
+<text  x="89.14" y="767.5" ></text>
+</g>
+<g >
+<title>vfs_write (88,538,790 samples, 0.07%)</title><rect x="548.1" y="629" width="0.9" height="15.0" fill="rgb(243,183,52)" rx="2" ry="2" />
+<text  x="551.14" y="639.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (26,413,415 samples, 0.02%)</title><rect x="110.1" y="645" width="0.2" height="15.0" fill="rgb(221,202,0)" rx="2" ry="2" />
+<text  x="113.07" y="655.5" ></text>
+</g>
+<g >
+<title>find_get_pages_range_tag (47,494,127 samples, 0.04%)</title><rect x="116.1" y="565" width="0.4" height="15.0" fill="rgb(218,57,36)" rx="2" ry="2" />
+<text  x="119.06" y="575.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter_state (53,853,657,466 samples, 44.43%)</title><rect x="573.0" y="709" width="524.3" height="15.0" fill="rgb(227,100,13)" rx="2" ry="2" />
+<text  x="576.03" y="719.5" >cpuidle_enter_state</text>
+</g>
+<g >
+<title>iommu_v1_unmap_pages (13,479,641 samples, 0.01%)</title><rect x="814.9" y="501" width="0.1" height="15.0" fill="rgb(221,39,47)" rx="2" ry="2" />
+<text  x="817.87" y="511.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (11,782,893 samples, 0.01%)</title><rect x="299.5" y="405" width="0.1" height="15.0" fill="rgb(237,12,33)" rx="2" ry="2" />
+<text  x="302.53" y="415.5" ></text>
+</g>
+<g >
+<title>iommu_v1_iova_to_phys (48,806,417 samples, 0.04%)</title><rect x="815.6" y="549" width="0.5" height="15.0" fill="rgb(253,34,26)" rx="2" ry="2" />
+<text  x="818.63" y="559.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (38,262,205 samples, 0.03%)</title><rect x="909.6" y="645" width="0.4" height="15.0" fill="rgb(241,183,9)" rx="2" ry="2" />
+<text  x="912.63" y="655.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (12,987,461 samples, 0.01%)</title><rect x="398.4" y="501" width="0.1" height="15.0" fill="rgb(227,145,18)" rx="2" ry="2" />
+<text  x="401.38" y="511.5" ></text>
+</g>
+<g >
+<title>ip6_xmit (365,354,707 samples, 0.30%)</title><rect x="408.3" y="277" width="3.5" height="15.0" fill="rgb(231,153,13)" rx="2" ry="2" />
+<text  x="411.29" y="287.5" ></text>
+</g>
+<g >
+<title>llist_reverse_order (189,594,146 samples, 0.16%)</title><rect x="1104.5" y="693" width="1.9" height="15.0" fill="rgb(220,30,3)" rx="2" ry="2" />
+<text  x="1107.51" y="703.5" ></text>
+</g>
+<g >
+<title>_IO_file_open (12,923,818 samples, 0.01%)</title><rect x="1189.6" y="693" width="0.1" height="15.0" fill="rgb(244,208,38)" rx="2" ry="2" />
+<text  x="1192.60" y="703.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (977,509,330 samples, 0.81%)</title><rect x="97.2" y="725" width="9.5" height="15.0" fill="rgb(242,103,3)" rx="2" ry="2" />
+<text  x="100.19" y="735.5" ></text>
+</g>
+<g >
+<title>page_frag_free (15,713,562 samples, 0.01%)</title><rect x="819.0" y="581" width="0.2" height="15.0" fill="rgb(219,23,0)" rx="2" ry="2" />
+<text  x="822.00" y="591.5" ></text>
+</g>
+<g >
+<title>sk_forced_mem_schedule (26,401,996 samples, 0.02%)</title><rect x="880.5" y="357" width="0.3" height="15.0" fill="rgb(220,113,25)" rx="2" ry="2" />
+<text  x="883.53" y="367.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (159,223,262 samples, 0.13%)</title><rect x="890.0" y="421" width="1.5" height="15.0" fill="rgb(205,170,30)" rx="2" ry="2" />
+<text  x="892.96" y="431.5" ></text>
+</g>
+<g >
+<title>pick_next_task_fair (11,180,867 samples, 0.01%)</title><rect x="421.7" y="581" width="0.1" height="15.0" fill="rgb(228,226,51)" rx="2" ry="2" />
+<text  x="424.67" y="591.5" ></text>
+</g>
+<g >
+<title>update_irq_load_avg (10,646,475 samples, 0.01%)</title><rect x="376.0" y="421" width="0.1" height="15.0" fill="rgb(253,129,37)" rx="2" ry="2" />
+<text  x="378.97" y="431.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (72,051,246 samples, 0.06%)</title><rect x="224.5" y="661" width="0.7" height="15.0" fill="rgb(210,3,31)" rx="2" ry="2" />
+<text  x="227.55" y="671.5" ></text>
+</g>
+<g >
+<title>[perf] (192,192,189 samples, 0.16%)</title><rect x="397.2" y="725" width="1.9" height="15.0" fill="rgb(233,4,0)" rx="2" ry="2" />
+<text  x="400.23" y="735.5" ></text>
+</g>
+<g >
+<title>ktime_get (22,728,164 samples, 0.02%)</title><rect x="1186.7" y="677" width="0.2" height="15.0" fill="rgb(229,178,15)" rx="2" ry="2" />
+<text  x="1189.69" y="687.5" ></text>
+</g>
+<g >
+<title>update_irq_load_avg (110,376,459 samples, 0.09%)</title><rect x="1141.9" y="677" width="1.1" height="15.0" fill="rgb(251,98,11)" rx="2" ry="2" />
+<text  x="1144.93" y="687.5" ></text>
+</g>
+<g >
+<title>_copy_from_user (57,065,014 samples, 0.05%)</title><rect x="343.9" y="517" width="0.6" height="15.0" fill="rgb(236,197,21)" rx="2" ry="2" />
+<text  x="346.90" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (157,210,779 samples, 0.13%)</title><rect x="181.2" y="677" width="1.5" height="15.0" fill="rgb(213,69,11)" rx="2" ry="2" />
+<text  x="184.21" y="687.5" ></text>
+</g>
+<g >
+<title>amd_iommu_iova_to_phys (18,783,607 samples, 0.02%)</title><rect x="815.3" y="549" width="0.2" height="15.0" fill="rgb(249,214,43)" rx="2" ry="2" />
+<text  x="818.32" y="559.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (15,742,838 samples, 0.01%)</title><rect x="267.5" y="645" width="0.1" height="15.0" fill="rgb(254,74,15)" rx="2" ry="2" />
+<text  x="270.48" y="655.5" ></text>
+</g>
+<g >
+<title>ttwu_queue_wakelist (14,172,100 samples, 0.01%)</title><rect x="415.1" y="389" width="0.1" height="15.0" fill="rgb(241,3,26)" rx="2" ry="2" />
+<text  x="418.07" y="399.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (64,348,692 samples, 0.05%)</title><rect x="401.5" y="501" width="0.6" height="15.0" fill="rgb(235,34,47)" rx="2" ry="2" />
+<text  x="404.47" y="511.5" ></text>
+</g>
+<g >
+<title>thread_pool_submit_aio (61,615,763 samples, 0.05%)</title><rect x="414.6" y="549" width="0.6" height="15.0" fill="rgb(208,12,38)" rx="2" ry="2" />
+<text  x="417.64" y="559.5" ></text>
+</g>
+<g >
+<title>get_obj_cgroup_from_current (33,799,781 samples, 0.03%)</title><rect x="429.4" y="485" width="0.4" height="15.0" fill="rgb(249,82,48)" rx="2" ry="2" />
+<text  x="432.44" y="495.5" ></text>
+</g>
+<g >
+<title>crypt_convert (741,780,065 samples, 0.61%)</title><rect x="264.7" y="709" width="7.3" height="15.0" fill="rgb(231,199,29)" rx="2" ry="2" />
+<text  x="267.73" y="719.5" ></text>
+</g>
+<g >
+<title>release_sock (50,682,386 samples, 0.04%)</title><rect x="300.2" y="421" width="0.5" height="15.0" fill="rgb(219,117,3)" rx="2" ry="2" />
+<text  x="303.24" y="431.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,134,250,896 samples, 0.94%)</title><rect x="43.3" y="725" width="11.1" height="15.0" fill="rgb(230,100,24)" rx="2" ry="2" />
+<text  x="46.34" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irq (18,665,420 samples, 0.02%)</title><rect x="436.4" y="501" width="0.2" height="15.0" fill="rgb(230,180,16)" rx="2" ry="2" />
+<text  x="439.43" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (144,202,091 samples, 0.12%)</title><rect x="198.8" y="677" width="1.4" height="15.0" fill="rgb(251,229,54)" rx="2" ry="2" />
+<text  x="201.77" y="687.5" ></text>
+</g>
+<g >
+<title>bdrv_co_preadv_part (333,194,800 samples, 0.27%)</title><rect x="400.2" y="677" width="3.2" height="15.0" fill="rgb(248,227,24)" rx="2" ry="2" />
+<text  x="403.16" y="687.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,141,551,481 samples, 0.94%)</title><rect x="43.3" y="741" width="11.1" height="15.0" fill="rgb(232,95,11)" rx="2" ry="2" />
+<text  x="46.26" y="751.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (20,114,503 samples, 0.02%)</title><rect x="65.6" y="677" width="0.2" height="15.0" fill="rgb(227,108,24)" rx="2" ry="2" />
+<text  x="68.62" y="687.5" ></text>
+</g>
+<g >
+<title>enqueue_hrtimer (18,065,174 samples, 0.01%)</title><rect x="807.0" y="549" width="0.1" height="15.0" fill="rgb(221,149,30)" rx="2" ry="2" />
+<text  x="809.97" y="559.5" ></text>
+</g>
+<g >
+<title>delay_halt (30,149,858 samples, 0.02%)</title><rect x="907.1" y="517" width="0.3" height="15.0" fill="rgb(234,226,43)" rx="2" ry="2" />
+<text  x="910.10" y="527.5" ></text>
+</g>
+<g >
+<title>bpf_lsm_socket_sock_rcv_skb (20,545,108 samples, 0.02%)</title><rect x="873.7" y="373" width="0.2" height="15.0" fill="rgb(253,15,14)" rx="2" ry="2" />
+<text  x="876.74" y="383.5" ></text>
+</g>
+<g >
+<title>__schedule (984,828,262 samples, 0.81%)</title><rect x="366.5" y="453" width="9.6" height="15.0" fill="rgb(235,37,47)" rx="2" ry="2" />
+<text  x="369.49" y="463.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc_node (30,557,219 samples, 0.03%)</title><rect x="304.1" y="373" width="0.3" height="15.0" fill="rgb(232,229,24)" rx="2" ry="2" />
+<text  x="307.11" y="383.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,006,016,843 samples, 0.83%)</title><rect x="126.9" y="693" width="9.8" height="15.0" fill="rgb(242,221,47)" rx="2" ry="2" />
+<text  x="129.90" y="703.5" ></text>
+</g>
+<g >
+<title>truncate_pagecache (120,738,582 samples, 0.10%)</title><rect x="546.5" y="613" width="1.2" height="15.0" fill="rgb(214,147,47)" rx="2" ry="2" />
+<text  x="549.50" y="623.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (13,342,752,643 samples, 11.01%)</title><rect x="423.2" y="741" width="129.9" height="15.0" fill="rgb(229,91,3)" rx="2" ry="2" />
+<text  x="426.17" y="751.5" >[qemu-img]</text>
+</g>
+<g >
+<title>tick_nohz_irq_exit (38,442,492 samples, 0.03%)</title><rect x="931.8" y="661" width="0.4" height="15.0" fill="rgb(221,219,52)" rx="2" ry="2" />
+<text  x="934.81" y="671.5" ></text>
+</g>
+<g >
+<title>xas_store (52,189,615 samples, 0.04%)</title><rect x="437.2" y="501" width="0.5" height="15.0" fill="rgb(251,150,37)" rx="2" ry="2" />
+<text  x="440.17" y="511.5" ></text>
+</g>
+<g >
+<title>dequeue_entity (36,128,767 samples, 0.03%)</title><rect x="421.3" y="565" width="0.3" height="15.0" fill="rgb(247,24,17)" rx="2" ry="2" />
+<text  x="424.27" y="575.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (39,328,663 samples, 0.03%)</title><rect x="258.2" y="645" width="0.4" height="15.0" fill="rgb(219,150,0)" rx="2" ry="2" />
+<text  x="261.23" y="655.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (1,504,935,927 samples, 1.24%)</title><rect x="304.9" y="389" width="14.7" height="15.0" fill="rgb(218,124,19)" rx="2" ry="2" />
+<text  x="307.94" y="399.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (11,874,641 samples, 0.01%)</title><rect x="1187.8" y="693" width="0.1" height="15.0" fill="rgb(211,121,9)" rx="2" ry="2" />
+<text  x="1190.80" y="703.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (20,246,876 samples, 0.02%)</title><rect x="395.1" y="533" width="0.2" height="15.0" fill="rgb(206,194,43)" rx="2" ry="2" />
+<text  x="398.12" y="543.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (86,957,919 samples, 0.07%)</title><rect x="317.4" y="309" width="0.8" height="15.0" fill="rgb(247,34,26)" rx="2" ry="2" />
+<text  x="320.36" y="319.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (59,293,983 samples, 0.05%)</title><rect x="152.0" y="645" width="0.6" height="15.0" fill="rgb(219,204,45)" rx="2" ry="2" />
+<text  x="155.02" y="655.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (54,434,992 samples, 0.04%)</title><rect x="204.5" y="565" width="0.5" height="15.0" fill="rgb(247,131,5)" rx="2" ry="2" />
+<text  x="207.49" y="575.5" ></text>
+</g>
+<g >
+<title>read_tsc (21,854,161 samples, 0.02%)</title><rect x="1184.1" y="629" width="0.2" height="15.0" fill="rgb(215,10,44)" rx="2" ry="2" />
+<text  x="1187.13" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (160,110,783 samples, 0.13%)</title><rect x="225.5" y="661" width="1.5" height="15.0" fill="rgb(235,99,9)" rx="2" ry="2" />
+<text  x="228.46" y="671.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (23,422,226 samples, 0.02%)</title><rect x="849.5" y="645" width="0.2" height="15.0" fill="rgb(221,163,27)" rx="2" ry="2" />
+<text  x="852.47" y="655.5" ></text>
+</g>
+<g >
+<title>raw_recv (72,763,592 samples, 0.06%)</title><rect x="385.4" y="709" width="0.7" height="15.0" fill="rgb(216,186,5)" rx="2" ry="2" />
+<text  x="388.43" y="719.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (13,007,280 samples, 0.01%)</title><rect x="1028.9" y="613" width="0.1" height="15.0" fill="rgb(248,166,10)" rx="2" ry="2" />
+<text  x="1031.90" y="623.5" ></text>
+</g>
+<g >
+<title>tcp_v6_do_rcv (119,838,586 samples, 0.10%)</title><rect x="389.1" y="293" width="1.2" height="15.0" fill="rgb(249,213,46)" rx="2" ry="2" />
+<text  x="392.14" y="303.5" ></text>
+</g>
+<g >
+<title>___sys_recvmsg (86,061,372 samples, 0.07%)</title><rect x="402.5" y="437" width="0.9" height="15.0" fill="rgb(223,33,11)" rx="2" ry="2" />
+<text  x="405.52" y="447.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (41,773,448 samples, 0.03%)</title><rect x="79.4" y="645" width="0.4" height="15.0" fill="rgb(238,132,39)" rx="2" ry="2" />
+<text  x="82.38" y="655.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (33,688,721 samples, 0.03%)</title><rect x="337.3" y="549" width="0.3" height="15.0" fill="rgb(232,118,53)" rx="2" ry="2" />
+<text  x="340.29" y="559.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_cfs_rq (21,345,412 samples, 0.02%)</title><rect x="370.1" y="389" width="0.2" height="15.0" fill="rgb(221,38,15)" rx="2" ry="2" />
+<text  x="373.09" y="399.5" ></text>
+</g>
+<g >
+<title>__kmem_cache_free (22,205,613 samples, 0.02%)</title><rect x="810.0" y="549" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
+<text  x="812.95" y="559.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (76,274,313 samples, 0.06%)</title><rect x="349.8" y="565" width="0.7" height="15.0" fill="rgb(242,30,48)" rx="2" ry="2" />
+<text  x="352.78" y="575.5" ></text>
+</g>
+<g >
+<title>rwsem_spin_on_owner (384,642,288 samples, 0.32%)</title><rect x="446.7" y="581" width="3.8" height="15.0" fill="rgb(219,190,45)" rx="2" ry="2" />
+<text  x="449.72" y="591.5" ></text>
+</g>
+<g >
+<title>poll_freewait (129,478,856 samples, 0.11%)</title><rect x="362.2" y="485" width="1.2" height="15.0" fill="rgb(214,136,16)" rx="2" ry="2" />
+<text  x="365.17" y="495.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_css_rstat_flush (15,973,523 samples, 0.01%)</title><rect x="424.8" y="485" width="0.1" height="15.0" fill="rgb(221,98,26)" rx="2" ry="2" />
+<text  x="427.75" y="495.5" ></text>
+</g>
+<g >
+<title>poll_idle (238,464,040 samples, 0.20%)</title><rect x="1075.1" y="693" width="2.3" height="15.0" fill="rgb(218,91,25)" rx="2" ry="2" />
+<text  x="1078.10" y="703.5" ></text>
+</g>
+<g >
+<title>ip6_output (17,743,036 samples, 0.01%)</title><rect x="391.7" y="485" width="0.2" height="15.0" fill="rgb(215,141,52)" rx="2" ry="2" />
+<text  x="394.68" y="495.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (179,822,321 samples, 0.15%)</title><rect x="1066.7" y="645" width="1.8" height="15.0" fill="rgb(233,5,34)" rx="2" ry="2" />
+<text  x="1069.74" y="655.5" ></text>
+</g>
+<g >
+<title>workingset_update_node (11,180,305 samples, 0.01%)</title><rect x="437.4" y="485" width="0.1" height="15.0" fill="rgb(214,137,28)" rx="2" ry="2" />
+<text  x="440.36" y="495.5" ></text>
+</g>
+<g >
+<title>_int_memalign (28,363,445 samples, 0.02%)</title><rect x="413.6" y="565" width="0.3" height="15.0" fill="rgb(205,140,2)" rx="2" ry="2" />
+<text  x="416.62" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (948,043,965 samples, 0.78%)</title><rect x="33.2" y="693" width="9.2" height="15.0" fill="rgb(240,78,33)" rx="2" ry="2" />
+<text  x="36.21" y="703.5" ></text>
+</g>
+<g >
+<title>__libc_start_main@@GLIBC_2.34 (767,046,703 samples, 0.63%)</title><rect x="415.7" y="773" width="7.5" height="15.0" fill="rgb(221,205,31)" rx="2" ry="2" />
+<text  x="418.70" y="783.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (4,907,542,031 samples, 4.05%)</title><rect x="289.1" y="565" width="47.8" height="15.0" fill="rgb(240,109,33)" rx="2" ry="2" />
+<text  x="292.14" y="575.5" >[lib..</text>
+</g>
+<g >
+<title>nf_hook_slow (1,402,670,453 samples, 1.16%)</title><rect x="889.7" y="437" width="13.7" height="15.0" fill="rgb(220,18,19)" rx="2" ry="2" />
+<text  x="892.73" y="447.5" ></text>
+</g>
+<g >
+<title>ext4_claim_free_clusters (25,145,819 samples, 0.02%)</title><rect x="431.8" y="517" width="0.2" height="15.0" fill="rgb(211,163,53)" rx="2" ry="2" />
+<text  x="434.79" y="527.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb (32,302,669 samples, 0.03%)</title><rect x="294.4" y="293" width="0.3" height="15.0" fill="rgb(240,24,32)" rx="2" ry="2" />
+<text  x="297.42" y="303.5" ></text>
+</g>
+<g >
+<title>ext4_end_io_rsv_work (14,066,306 samples, 0.01%)</title><rect x="254.2" y="725" width="0.1" height="15.0" fill="rgb(210,149,6)" rx="2" ry="2" />
+<text  x="257.21" y="735.5" ></text>
+</g>
+<g >
+<title>ct_nmi_exit (58,696,033 samples, 0.05%)</title><rect x="851.9" y="661" width="0.6" height="15.0" fill="rgb(215,124,34)" rx="2" ry="2" />
+<text  x="854.91" y="671.5" ></text>
+</g>
+<g >
+<title>blk_co_pwrite (132,176,500 samples, 0.11%)</title><rect x="414.2" y="725" width="1.2" height="15.0" fill="rgb(251,66,33)" rx="2" ry="2" />
+<text  x="417.15" y="735.5" ></text>
+</g>
+<g >
+<title>all (121,222,020,611 samples, 100%)</title><rect x="10.0" y="821" width="1180.0" height="15.0" fill="rgb(229,150,30)" rx="2" ry="2" />
+<text  x="13.00" y="831.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (255,209,472 samples, 0.21%)</title><rect x="439.1" y="517" width="2.5" height="15.0" fill="rgb(211,157,53)" rx="2" ry="2" />
+<text  x="442.13" y="527.5" ></text>
+</g>
+<g >
+<title>update_wall_time (44,745,674 samples, 0.04%)</title><rect x="912.6" y="581" width="0.5" height="15.0" fill="rgb(214,225,34)" rx="2" ry="2" />
+<text  x="915.62" y="591.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (306,537,701 samples, 0.25%)</title><rect x="192.2" y="677" width="3.0" height="15.0" fill="rgb(251,187,13)" rx="2" ry="2" />
+<text  x="195.20" y="687.5" ></text>
+</g>
+<g >
+<title>run_timer_softirq (77,381,588 samples, 0.06%)</title><rect x="906.8" y="629" width="0.8" height="15.0" fill="rgb(238,20,27)" rx="2" ry="2" />
+<text  x="909.82" y="639.5" ></text>
+</g>
+<g >
+<title>rht_key_get_hash.constprop.0 (15,427,281 samples, 0.01%)</title><rect x="864.0" y="453" width="0.1" height="15.0" fill="rgb(225,152,40)" rx="2" ry="2" />
+<text  x="866.96" y="463.5" ></text>
+</g>
+<g >
+<title>netif_receive_skb_list_internal (214,504,664 samples, 0.18%)</title><rect x="807.8" y="565" width="2.1" height="15.0" fill="rgb(249,54,31)" rx="2" ry="2" />
+<text  x="810.80" y="575.5" ></text>
+</g>
+<g >
+<title>irq_enter_rcu (2,310,828,559 samples, 1.91%)</title><rect x="821.7" y="661" width="22.5" height="15.0" fill="rgb(227,34,28)" rx="2" ry="2" />
+<text  x="824.74" y="671.5" >i..</text>
+</g>
+<g >
+<title>process_one_work (755,451,458 samples, 0.62%)</title><rect x="264.7" y="741" width="7.3" height="15.0" fill="rgb(219,14,16)" rx="2" ry="2" />
+<text  x="267.69" y="751.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (24,132,028 samples, 0.02%)</title><rect x="1031.0" y="613" width="0.2" height="15.0" fill="rgb(207,143,11)" rx="2" ry="2" />
+<text  x="1034.01" y="623.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (92,790,477 samples, 0.08%)</title><rect x="107.6" y="677" width="0.9" height="15.0" fill="rgb(233,47,12)" rx="2" ry="2" />
+<text  x="110.64" y="687.5" ></text>
+</g>
+<g >
+<title>restore_regs_and_return_to_kernel (23,260,894 samples, 0.02%)</title><rect x="1077.4" y="693" width="0.2" height="15.0" fill="rgb(231,37,52)" rx="2" ry="2" />
+<text  x="1080.42" y="703.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (32,907,297 samples, 0.03%)</title><rect x="188.7" y="629" width="0.4" height="15.0" fill="rgb(218,166,52)" rx="2" ry="2" />
+<text  x="191.74" y="639.5" ></text>
+</g>
+<g >
+<title>__check_object_size (78,885,948 samples, 0.07%)</title><rect x="321.7" y="357" width="0.8" height="15.0" fill="rgb(210,21,37)" rx="2" ry="2" />
+<text  x="324.72" y="367.5" ></text>
+</g>
+<g >
+<title>curl_mvsnprintf (18,517,088 samples, 0.02%)</title><rect x="334.1" y="517" width="0.1" height="15.0" fill="rgb(252,31,18)" rx="2" ry="2" />
+<text  x="337.06" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (844,415,453 samples, 0.70%)</title><rect x="66.0" y="693" width="8.2" height="15.0" fill="rgb(232,133,13)" rx="2" ry="2" />
+<text  x="69.01" y="703.5" ></text>
+</g>
+<g >
+<title>ip_rcv_core (33,793,876 samples, 0.03%)</title><rect x="887.8" y="437" width="0.4" height="15.0" fill="rgb(234,41,4)" rx="2" ry="2" />
+<text  x="890.84" y="447.5" ></text>
+</g>
+<g >
+<title>touch_softlockup_watchdog_sched (20,821,382 samples, 0.02%)</title><rect x="928.2" y="645" width="0.2" height="15.0" fill="rgb(252,21,9)" rx="2" ry="2" />
+<text  x="931.16" y="655.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (21,999,131 samples, 0.02%)</title><rect x="1165.4" y="661" width="0.2" height="15.0" fill="rgb(252,51,10)" rx="2" ry="2" />
+<text  x="1168.43" y="671.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (206,929,492 samples, 0.17%)</title><rect x="371.8" y="437" width="2.1" height="15.0" fill="rgb(252,146,27)" rx="2" ry="2" />
+<text  x="374.85" y="447.5" ></text>
+</g>
+<g >
+<title>__run_timers (76,603,757 samples, 0.06%)</title><rect x="906.8" y="613" width="0.8" height="15.0" fill="rgb(223,137,49)" rx="2" ry="2" />
+<text  x="909.82" y="623.5" ></text>
+</g>
+<g >
+<title>xts_crypt (85,249,337 samples, 0.07%)</title><rect x="248.8" y="661" width="0.8" height="15.0" fill="rgb(233,74,10)" rx="2" ry="2" />
+<text  x="251.81" y="671.5" ></text>
+</g>
+<g >
+<title>nr_iowait_cpu (71,340,089 samples, 0.06%)</title><rect x="1182.4" y="709" width="0.7" height="15.0" fill="rgb(242,63,43)" rx="2" ry="2" />
+<text  x="1185.45" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (289,340,261 samples, 0.24%)</title><rect x="230.0" y="677" width="2.8" height="15.0" fill="rgb(231,62,50)" rx="2" ry="2" />
+<text  x="232.97" y="687.5" ></text>
+</g>
+<g >
+<title>[unknown] (34,973,194 samples, 0.03%)</title><rect x="336.9" y="565" width="0.4" height="15.0" fill="rgb(237,149,38)" rx="2" ry="2" />
+<text  x="339.91" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg (485,867,982 samples, 0.40%)</title><rect x="407.8" y="373" width="4.7" height="15.0" fill="rgb(220,77,18)" rx="2" ry="2" />
+<text  x="410.78" y="383.5" ></text>
+</g>
+<g >
+<title>br_fdb_update (63,137,069 samples, 0.05%)</title><rect x="863.5" y="485" width="0.6" height="15.0" fill="rgb(234,103,20)" rx="2" ry="2" />
+<text  x="866.49" y="495.5" ></text>
+</g>
+<g >
+<title>rtl8169_tx_map (24,900,596 samples, 0.02%)</title><rect x="875.9" y="213" width="0.3" height="15.0" fill="rgb(241,103,13)" rx="2" ry="2" />
+<text  x="878.94" y="223.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (524,150,547 samples, 0.43%)</title><rect x="910.8" y="629" width="5.1" height="15.0" fill="rgb(207,93,4)" rx="2" ry="2" />
+<text  x="913.77" y="639.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (145,387,365 samples, 0.12%)</title><rect x="293.3" y="309" width="1.4" height="15.0" fill="rgb(248,175,27)" rx="2" ry="2" />
+<text  x="296.32" y="319.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,070,740,816 samples, 0.88%)</title><rect x="22.6" y="757" width="10.4" height="15.0" fill="rgb(252,172,10)" rx="2" ry="2" />
+<text  x="25.57" y="767.5" ></text>
+</g>
+<g >
+<title>[unknown]  (16,617,099 samples, 0.01%)</title><rect x="399.8" y="773" width="0.2" height="15.0" fill="rgb(220,157,33)" rx="2" ry="2" />
+<text  x="402.82" y="783.5" ></text>
+</g>
+<g >
+<title>event_notifier_set (113,583,248 samples, 0.09%)</title><rect x="547.9" y="709" width="1.1" height="15.0" fill="rgb(212,132,33)" rx="2" ry="2" />
+<text  x="550.93" y="719.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (7,695,097,607 samples, 6.35%)</title><rect x="857.3" y="677" width="74.9" height="15.0" fill="rgb(239,13,18)" rx="2" ry="2" />
+<text  x="860.28" y="687.5" >sysvec_a..</text>
+</g>
+<g >
+<title>native_sched_clock (14,429,044 samples, 0.01%)</title><rect x="375.4" y="389" width="0.2" height="15.0" fill="rgb(214,211,1)" rx="2" ry="2" />
+<text  x="378.42" y="399.5" ></text>
+</g>
+<g >
+<title>malloc (16,244,853 samples, 0.01%)</title><rect x="413.3" y="613" width="0.2" height="15.0" fill="rgb(234,181,39)" rx="2" ry="2" />
+<text  x="416.30" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (25,845,032 samples, 0.02%)</title><rect x="413.0" y="533" width="0.2" height="15.0" fill="rgb(249,157,53)" rx="2" ry="2" />
+<text  x="415.95" y="543.5" ></text>
+</g>
+<g >
+<title>kmem_cache_alloc (169,310,073 samples, 0.14%)</title><rect x="428.9" y="501" width="1.7" height="15.0" fill="rgb(244,31,0)" rx="2" ry="2" />
+<text  x="431.95" y="511.5" ></text>
+</g>
+<g >
+<title>kworker/u64:20 (1,060,238,503 samples, 0.87%)</title><rect x="148.5" y="805" width="10.3" height="15.0" fill="rgb(222,157,13)" rx="2" ry="2" />
+<text  x="151.52" y="815.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (48,226,075 samples, 0.04%)</title><rect x="162.4" y="629" width="0.5" height="15.0" fill="rgb(218,2,49)" rx="2" ry="2" />
+<text  x="165.42" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (416,174,766 samples, 0.34%)</title><rect x="22.8" y="677" width="4.0" height="15.0" fill="rgb(247,53,53)" rx="2" ry="2" />
+<text  x="25.77" y="687.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (63,553,016 samples, 0.05%)</title><rect x="402.7" y="357" width="0.6" height="15.0" fill="rgb(228,118,10)" rx="2" ry="2" />
+<text  x="405.73" y="367.5" ></text>
+</g>
+<g >
+<title>do_idle (812,027,677 samples, 0.67%)</title><rect x="558.7" y="709" width="7.9" height="15.0" fill="rgb(238,137,54)" rx="2" ry="2" />
+<text  x="561.71" y="719.5" ></text>
+</g>
+<g >
+<title>blk_mq_flush_plug_list (39,227,465 samples, 0.03%)</title><rect x="10.3" y="677" width="0.4" height="15.0" fill="rgb(209,210,14)" rx="2" ry="2" />
+<text  x="13.31" y="687.5" ></text>
+</g>
+<g >
+<title>qemu_cond_timedwait_impl (395,479,814 samples, 0.33%)</title><rect x="549.0" y="725" width="3.9" height="15.0" fill="rgb(214,157,46)" rx="2" ry="2" />
+<text  x="552.04" y="735.5" ></text>
+</g>
+<g >
+<title>ktime_get (31,961,401 samples, 0.03%)</title><rect x="931.9" y="645" width="0.3" height="15.0" fill="rgb(245,82,40)" rx="2" ry="2" />
+<text  x="934.87" y="655.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (5,629,031,099 samples, 4.64%)</title><rect x="285.9" y="581" width="54.8" height="15.0" fill="rgb(209,14,50)" rx="2" ry="2" />
+<text  x="288.93" y="591.5" >[libc..</text>
+</g>
+<g >
+<title>check_preemption_disabled (25,423,346 samples, 0.02%)</title><rect x="859.2" y="613" width="0.2" height="15.0" fill="rgb(247,167,52)" rx="2" ry="2" />
+<text  x="862.19" y="623.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (23,526,788 samples, 0.02%)</title><rect x="292.4" y="485" width="0.3" height="15.0" fill="rgb(234,79,44)" rx="2" ry="2" />
+<text  x="295.43" y="495.5" ></text>
+</g>
+<g >
+<title>wb_workfn (18,361,165 samples, 0.02%)</title><rect x="22.4" y="725" width="0.2" height="15.0" fill="rgb(216,180,28)" rx="2" ry="2" />
+<text  x="25.38" y="735.5" ></text>
+</g>
+<g >
+<title>curl_url_set (104,593,787 samples, 0.09%)</title><rect x="349.7" y="581" width="1.0" height="15.0" fill="rgb(230,146,26)" rx="2" ry="2" />
+<text  x="352.72" y="591.5" ></text>
+</g>
+<g >
+<title>psi_account_irqtime (71,546,674 samples, 0.06%)</title><rect x="374.9" y="421" width="0.7" height="15.0" fill="rgb(222,199,25)" rx="2" ry="2" />
+<text  x="377.87" y="431.5" ></text>
+</g>
+<g >
+<title>enqueue_task (147,829,317 samples, 0.12%)</title><rect x="883.5" y="261" width="1.4" height="15.0" fill="rgb(241,175,12)" rx="2" ry="2" />
+<text  x="886.46" y="271.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (11,236,308 samples, 0.01%)</title><rect x="1183.9" y="661" width="0.1" height="15.0" fill="rgb(231,55,36)" rx="2" ry="2" />
+<text  x="1186.89" y="671.5" ></text>
+</g>
+<g >
+<title>worker_thread (611,746,188 samples, 0.50%)</title><rect x="178.9" y="757" width="5.9" height="15.0" fill="rgb(217,16,33)" rx="2" ry="2" />
+<text  x="181.87" y="767.5" ></text>
+</g>
+<g >
+<title>tcp_v6_rcv (82,275,398 samples, 0.07%)</title><rect x="409.2" y="85" width="0.8" height="15.0" fill="rgb(207,166,20)" rx="2" ry="2" />
+<text  x="412.21" y="95.5" ></text>
+</g>
+<g >
+<title>quiet_vmstat (84,575,084 samples, 0.07%)</title><rect x="1187.9" y="693" width="0.8" height="15.0" fill="rgb(238,33,36)" rx="2" ry="2" />
+<text  x="1190.91" y="703.5" ></text>
+</g>
+<g >
+<title>__libc_sigaction (20,870,126 samples, 0.02%)</title><rect x="283.7" y="597" width="0.2" height="15.0" fill="rgb(207,105,37)" rx="2" ry="2" />
+<text  x="286.71" y="607.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (147,095,218 samples, 0.12%)</title><rect x="848.0" y="661" width="1.5" height="15.0" fill="rgb(252,209,0)" rx="2" ry="2" />
+<text  x="851.03" y="671.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (43,187,537 samples, 0.04%)</title><rect x="443.6" y="517" width="0.4" height="15.0" fill="rgb(251,171,19)" rx="2" ry="2" />
+<text  x="446.57" y="527.5" ></text>
+</g>
+<g >
+<title>rcu_note_context_switch (17,470,751 samples, 0.01%)</title><rect x="374.5" y="437" width="0.2" height="15.0" fill="rgb(221,64,20)" rx="2" ry="2" />
+<text  x="377.55" y="447.5" ></text>
+</g>
+<g >
+<title>rtl8169_poll (2,119,301,646 samples, 1.75%)</title><rect x="795.5" y="597" width="20.6" height="15.0" fill="rgb(224,138,54)" rx="2" ry="2" />
+<text  x="798.48" y="607.5" ></text>
+</g>
+<g >
+<title>____sys_recvmsg (32,724,371 samples, 0.03%)</title><rect x="400.3" y="421" width="0.3" height="15.0" fill="rgb(249,10,16)" rx="2" ry="2" />
+<text  x="403.32" y="431.5" ></text>
+</g>
+<g >
+<title>__wake_up_common (32,911,190 samples, 0.03%)</title><rect x="389.9" y="213" width="0.3" height="15.0" fill="rgb(245,48,24)" rx="2" ry="2" />
+<text  x="392.89" y="223.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,100,962,040 samples, 0.91%)</title><rect x="158.8" y="757" width="10.8" height="15.0" fill="rgb(238,123,32)" rx="2" ry="2" />
+<text  x="161.84" y="767.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (21,161,966 samples, 0.02%)</title><rect x="1156.4" y="709" width="0.2" height="15.0" fill="rgb(245,150,9)" rx="2" ry="2" />
+<text  x="1159.42" y="719.5" ></text>
+</g>
+<g >
+<title>[unknown] (18,495,866 samples, 0.02%)</title><rect x="399.5" y="789" width="0.2" height="15.0" fill="rgb(214,30,53)" rx="2" ry="2" />
+<text  x="402.52" y="799.5" ></text>
+</g>
+<g >
+<title>futex_wait_setup (12,765,192 samples, 0.01%)</title><rect x="553.8" y="693" width="0.1" height="15.0" fill="rgb(239,113,44)" rx="2" ry="2" />
+<text  x="556.78" y="703.5" ></text>
+</g>
+<g >
+<title>raw_local_deliver (17,813,854 samples, 0.01%)</title><rect x="871.9" y="421" width="0.2" height="15.0" fill="rgb(250,160,16)" rx="2" ry="2" />
+<text  x="874.91" y="431.5" ></text>
+</g>
+<g >
+<title>lru_gen_add_folio (67,495,553 samples, 0.06%)</title><rect x="438.2" y="469" width="0.7" height="15.0" fill="rgb(209,189,32)" rx="2" ry="2" />
+<text  x="441.23" y="479.5" ></text>
+</g>
+<g >
+<title>worker_thread (755,451,458 samples, 0.62%)</title><rect x="264.7" y="757" width="7.3" height="15.0" fill="rgb(208,155,21)" rx="2" ry="2" />
+<text  x="267.69" y="767.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (276,532,881 samples, 0.23%)</title><rect x="90.7" y="677" width="2.7" height="15.0" fill="rgb(249,133,50)" rx="2" ry="2" />
+<text  x="93.68" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock_bh (35,201,869 samples, 0.03%)</title><rect x="306.8" y="261" width="0.4" height="15.0" fill="rgb(234,11,49)" rx="2" ry="2" />
+<text  x="309.82" y="271.5" ></text>
+</g>
+<g >
+<title>dequeue_task_fair (43,980,833 samples, 0.04%)</title><rect x="421.2" y="581" width="0.4" height="15.0" fill="rgb(240,14,47)" rx="2" ry="2" />
+<text  x="424.19" y="591.5" ></text>
+</g>
+<g >
+<title>__memmove_avx_unaligned_erms (45,051,805 samples, 0.04%)</title><rect x="335.3" y="549" width="0.5" height="15.0" fill="rgb(208,106,0)" rx="2" ry="2" />
+<text  x="338.31" y="559.5" ></text>
+</g>
+<g >
+<title>__futex_abstimed_wait_common (344,872,887 samples, 0.28%)</title><rect x="549.4" y="677" width="3.4" height="15.0" fill="rgb(244,21,48)" rx="2" ry="2" />
+<text  x="552.43" y="687.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (206,706,024 samples, 0.17%)</title><rect x="1031.4" y="597" width="2.0" height="15.0" fill="rgb(250,7,42)" rx="2" ry="2" />
+<text  x="1034.41" y="607.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (19,580,068 samples, 0.02%)</title><rect x="543.0" y="645" width="0.2" height="15.0" fill="rgb(222,229,30)" rx="2" ry="2" />
+<text  x="546.00" y="655.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (34,995,715 samples, 0.03%)</title><rect x="275.6" y="645" width="0.3" height="15.0" fill="rgb(228,19,17)" rx="2" ry="2" />
+<text  x="278.61" y="655.5" ></text>
+</g>
+<g >
+<title>tick_sched_timer (61,915,204 samples, 0.05%)</title><rect x="543.5" y="581" width="0.6" height="15.0" fill="rgb(235,151,17)" rx="2" ry="2" />
+<text  x="546.45" y="591.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (60,826,407 samples, 0.05%)</title><rect x="162.3" y="645" width="0.6" height="15.0" fill="rgb(252,83,16)" rx="2" ry="2" />
+<text  x="165.30" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (311,589,554 samples, 0.26%)</title><rect x="549.7" y="645" width="3.0" height="15.0" fill="rgb(230,227,22)" rx="2" ry="2" />
+<text  x="552.67" y="655.5" ></text>
+</g>
+<g >
+<title>psi_group_change (153,470,510 samples, 0.13%)</title><rect x="372.1" y="421" width="1.5" height="15.0" fill="rgb(244,205,27)" rx="2" ry="2" />
+<text  x="375.10" y="431.5" ></text>
+</g>
+<g >
+<title>fput (20,795,902 samples, 0.02%)</title><rect x="362.0" y="485" width="0.2" height="15.0" fill="rgb(240,36,33)" rx="2" ry="2" />
+<text  x="364.97" y="495.5" ></text>
+</g>
+<g >
+<title>kthread (1,132,010,408 samples, 0.93%)</title><rect x="86.1" y="773" width="11.1" height="15.0" fill="rgb(244,126,28)" rx="2" ry="2" />
+<text  x="89.14" y="783.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (12,564,483 samples, 0.01%)</title><rect x="1077.3" y="645" width="0.1" height="15.0" fill="rgb(245,223,6)" rx="2" ry="2" />
+<text  x="1080.26" y="655.5" ></text>
+</g>
+<g >
+<title>sk_page_frag_refill (29,765,956 samples, 0.02%)</title><rect x="395.1" y="565" width="0.3" height="15.0" fill="rgb(235,91,54)" rx="2" ry="2" />
+<text  x="398.08" y="575.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (74,320,352 samples, 0.06%)</title><rect x="316.2" y="309" width="0.8" height="15.0" fill="rgb(220,209,1)" rx="2" ry="2" />
+<text  x="319.24" y="319.5" ></text>
+</g>
+<g >
+<title>systemd-oomd (47,444,611 samples, 0.04%)</title><rect x="1189.4" y="805" width="0.5" height="15.0" fill="rgb(252,106,19)" rx="2" ry="2" />
+<text  x="1192.43" y="815.5" ></text>
+</g>
+<g >
+<title>br_handle_frame_finish (4,128,191,569 samples, 3.41%)</title><rect x="863.3" y="501" width="40.2" height="15.0" fill="rgb(222,221,1)" rx="2" ry="2" />
+<text  x="866.28" y="511.5" >br_..</text>
+</g>
+<g >
+<title>ip6_xmit (18,444,312 samples, 0.02%)</title><rect x="401.6" y="309" width="0.2" height="15.0" fill="rgb(246,174,48)" rx="2" ry="2" />
+<text  x="404.58" y="319.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (48,056,780 samples, 0.04%)</title><rect x="417.9" y="645" width="0.4" height="15.0" fill="rgb(227,43,34)" rx="2" ry="2" />
+<text  x="420.87" y="655.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (15,865,262 samples, 0.01%)</title><rect x="178.7" y="709" width="0.2" height="15.0" fill="rgb(224,212,27)" rx="2" ry="2" />
+<text  x="181.71" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (101,330,801 samples, 0.08%)</title><rect x="224.3" y="693" width="0.9" height="15.0" fill="rgb(252,54,52)" rx="2" ry="2" />
+<text  x="227.26" y="703.5" ></text>
+</g>
+<g >
+<title>truncate_cleanup_folio (42,716,580 samples, 0.04%)</title><rect x="547.3" y="581" width="0.4" height="15.0" fill="rgb(236,180,44)" rx="2" ry="2" />
+<text  x="550.26" y="591.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (21,350,811 samples, 0.02%)</title><rect x="1157.9" y="677" width="0.2" height="15.0" fill="rgb(242,175,35)" rx="2" ry="2" />
+<text  x="1160.88" y="687.5" ></text>
+</g>
+<g >
+<title>bdrv_co_common_block_status_above (21,997,673 samples, 0.02%)</title><rect x="403.8" y="693" width="0.2" height="15.0" fill="rgb(212,100,10)" rx="2" ry="2" />
+<text  x="406.80" y="703.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (20,943,069 samples, 0.02%)</title><rect x="808.8" y="357" width="0.2" height="15.0" fill="rgb(213,86,53)" rx="2" ry="2" />
+<text  x="811.78" y="367.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (966,211,177 samples, 0.80%)</title><rect x="65.8" y="725" width="9.4" height="15.0" fill="rgb(229,105,35)" rx="2" ry="2" />
+<text  x="68.81" y="735.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (10,929,270 samples, 0.01%)</title><rect x="436.1" y="485" width="0.1" height="15.0" fill="rgb(250,206,16)" rx="2" ry="2" />
+<text  x="439.13" y="495.5" ></text>
+</g>
+<g >
+<title>read_tsc (100,034,225 samples, 0.08%)</title><rect x="1181.5" y="693" width="0.9" height="15.0" fill="rgb(240,167,9)" rx="2" ry="2" />
+<text  x="1184.48" y="703.5" ></text>
+</g>
+<g >
+<title>curl_multi_poll (15,254,013 samples, 0.01%)</title><rect x="385.1" y="629" width="0.1" height="15.0" fill="rgb(225,152,5)" rx="2" ry="2" />
+<text  x="388.06" y="639.5" ></text>
+</g>
+<g >
+<title>mod_memcg_state (59,066,749 samples, 0.05%)</title><rect x="302.0" y="373" width="0.6" height="15.0" fill="rgb(216,93,19)" rx="2" ry="2" />
+<text  x="305.02" y="383.5" ></text>
+</g>
+<g >
+<title>ct_idle_exit (22,125,390 samples, 0.02%)</title><rect x="565.6" y="661" width="0.2" height="15.0" fill="rgb(233,88,14)" rx="2" ry="2" />
+<text  x="568.57" y="671.5" ></text>
+</g>
+<g >
+<title>poll_select_set_timeout (78,511,510 samples, 0.06%)</title><rect x="380.8" y="501" width="0.7" height="15.0" fill="rgb(211,82,50)" rx="2" ry="2" />
+<text  x="383.76" y="511.5" ></text>
+</g>
+<g >
+<title>wb_writeback (18,361,165 samples, 0.02%)</title><rect x="22.4" y="709" width="0.2" height="15.0" fill="rgb(226,204,15)" rx="2" ry="2" />
+<text  x="25.38" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (937,193,715 samples, 0.77%)</title><rect x="214.2" y="693" width="9.1" height="15.0" fill="rgb(235,12,47)" rx="2" ry="2" />
+<text  x="217.20" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_end_io_rsv_work (12,022,289 samples, 0.01%)</title><rect x="272.0" y="725" width="0.2" height="15.0" fill="rgb(236,142,40)" rx="2" ry="2" />
+<text  x="275.05" y="735.5" ></text>
+</g>
+<g >
+<title>do_filp_open (14,344,125 samples, 0.01%)</title><rect x="399.8" y="693" width="0.2" height="15.0" fill="rgb(247,129,51)" rx="2" ry="2" />
+<text  x="402.84" y="703.5" ></text>
+</g>
+<g >
+<title>__count_memcg_events (22,438,167 samples, 0.02%)</title><rect x="435.1" y="453" width="0.2" height="15.0" fill="rgb(215,54,13)" rx="2" ry="2" />
+<text  x="438.12" y="463.5" ></text>
+</g>
+<g >
+<title>xts_crypt (113,814,239 samples, 0.09%)</title><rect x="78.7" y="661" width="1.1" height="15.0" fill="rgb(227,129,29)" rx="2" ry="2" />
+<text  x="81.68" y="671.5" ></text>
+</g>
+<g >
+<title>__switch_to (40,612,255 samples, 0.03%)</title><rect x="1169.2" y="693" width="0.4" height="15.0" fill="rgb(225,35,37)" rx="2" ry="2" />
+<text  x="1172.25" y="703.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (93,959,570 samples, 0.08%)</title><rect x="391.9" y="485" width="0.9" height="15.0" fill="rgb(222,71,29)" rx="2" ry="2" />
+<text  x="394.85" y="495.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (61,090,256 samples, 0.05%)</title><rect x="401.5" y="437" width="0.6" height="15.0" fill="rgb(232,216,45)" rx="2" ry="2" />
+<text  x="404.50" y="447.5" ></text>
+</g>
+<g >
+<title>try_charge_memcg (28,809,030 samples, 0.02%)</title><rect x="435.5" y="469" width="0.3" height="15.0" fill="rgb(219,135,28)" rx="2" ry="2" />
+<text  x="438.54" y="479.5" ></text>
+</g>
+<g >
+<title>iommu_dma_map_page (21,056,328 samples, 0.02%)</title><rect x="876.0" y="197" width="0.2" height="15.0" fill="rgb(250,2,36)" rx="2" ry="2" />
+<text  x="878.96" y="207.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (11,727,554 samples, 0.01%)</title><rect x="401.3" y="501" width="0.2" height="15.0" fill="rgb(228,108,14)" rx="2" ry="2" />
+<text  x="404.34" y="511.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_list_core (4,452,605,299 samples, 3.67%)</title><rect x="861.8" y="549" width="43.4" height="15.0" fill="rgb(222,191,31)" rx="2" ry="2" />
+<text  x="864.81" y="559.5" >__ne..</text>
+</g>
+<g >
+<title>__es_insert_extent (77,049,237 samples, 0.06%)</title><rect x="432.1" y="517" width="0.7" height="15.0" fill="rgb(241,24,9)" rx="2" ry="2" />
+<text  x="435.09" y="527.5" ></text>
+</g>
+<g >
+<title>__hrtimer_run_queues (65,776,442 samples, 0.05%)</title><rect x="543.4" y="597" width="0.7" height="15.0" fill="rgb(241,68,7)" rx="2" ry="2" />
+<text  x="546.43" y="607.5" ></text>
+</g>
+<g >
+<title>cpuidle_enter (53,897,918,890 samples, 44.46%)</title><rect x="572.7" y="725" width="524.7" height="15.0" fill="rgb(244,39,54)" rx="2" ry="2" />
+<text  x="575.72" y="735.5" >cpuidle_enter</text>
+</g>
+<g >
+<title>__filemap_get_folio (819,977,805 samples, 0.68%)</title><rect x="434.2" y="549" width="8.0" height="15.0" fill="rgb(242,168,45)" rx="2" ry="2" />
+<text  x="437.22" y="559.5" ></text>
+</g>
+<g >
+<title>irqentry_enter (272,333,673 samples, 0.22%)</title><rect x="928.4" y="661" width="2.6" height="15.0" fill="rgb(248,209,12)" rx="2" ry="2" />
+<text  x="931.38" y="671.5" ></text>
+</g>
+<g >
+<title>get_mem_cgroup_from_mm (23,988,789 samples, 0.02%)</title><rect x="435.8" y="485" width="0.3" height="15.0" fill="rgb(206,33,45)" rx="2" ry="2" />
+<text  x="438.82" y="495.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (75,000,555 samples, 0.06%)</title><rect x="306.5" y="293" width="0.7" height="15.0" fill="rgb(214,186,25)" rx="2" ry="2" />
+<text  x="309.52" y="303.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (141,277,998 samples, 0.12%)</title><rect x="929.6" y="629" width="1.3" height="15.0" fill="rgb(224,182,24)" rx="2" ry="2" />
+<text  x="932.55" y="639.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (18,361,165 samples, 0.02%)</title><rect x="22.4" y="693" width="0.2" height="15.0" fill="rgb(244,127,0)" rx="2" ry="2" />
+<text  x="25.38" y="703.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb (31,950,360 samples, 0.03%)</title><rect x="312.3" y="341" width="0.3" height="15.0" fill="rgb(209,83,3)" rx="2" ry="2" />
+<text  x="315.28" y="351.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (24,412,047 samples, 0.02%)</title><rect x="209.3" y="645" width="0.2" height="15.0" fill="rgb(216,75,0)" rx="2" ry="2" />
+<text  x="212.29" y="655.5" ></text>
+</g>
+<g >
+<title>notify_change (120,738,582 samples, 0.10%)</title><rect x="546.5" y="645" width="1.2" height="15.0" fill="rgb(216,37,4)" rx="2" ry="2" />
+<text  x="549.50" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (263,491,127 samples, 0.22%)</title><rect x="61.9" y="677" width="2.6" height="15.0" fill="rgb(211,111,37)" rx="2" ry="2" />
+<text  x="64.94" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (163,100,116 samples, 0.13%)</title><rect x="127.0" y="661" width="1.6" height="15.0" fill="rgb(214,96,17)" rx="2" ry="2" />
+<text  x="129.97" y="671.5" ></text>
+</g>
+<g >
+<title>timekeeping_update (23,243,484 samples, 0.02%)</title><rect x="912.8" y="549" width="0.3" height="15.0" fill="rgb(247,13,3)" rx="2" ry="2" />
+<text  x="915.83" y="559.5" ></text>
+</g>
+<g >
+<title>handle_edge_irq (23,820,292 samples, 0.02%)</title><rect x="563.4" y="613" width="0.2" height="15.0" fill="rgb(238,160,8)" rx="2" ry="2" />
+<text  x="566.41" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (11,069,405 samples, 0.01%)</title><rect x="1189.6" y="661" width="0.1" height="15.0" fill="rgb(237,136,49)" rx="2" ry="2" />
+<text  x="1192.62" y="671.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (798,524,562 samples, 0.66%)</title><rect x="895.6" y="421" width="7.8" height="15.0" fill="rgb(242,135,28)" rx="2" ry="2" />
+<text  x="898.61" y="431.5" ></text>
+</g>
+<g >
+<title>_int_free (20,643,230 samples, 0.02%)</title><rect x="338.4" y="549" width="0.2" height="15.0" fill="rgb(247,183,45)" rx="2" ry="2" />
+<text  x="341.41" y="559.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (53,288,376 samples, 0.04%)</title><rect x="410.2" y="85" width="0.5" height="15.0" fill="rgb(212,25,47)" rx="2" ry="2" />
+<text  x="413.22" y="95.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (15,034,377 samples, 0.01%)</title><rect x="422.1" y="581" width="0.1" height="15.0" fill="rgb(215,223,51)" rx="2" ry="2" />
+<text  x="425.09" y="591.5" ></text>
+</g>
+<g >
+<title>hrtimer_reprogram (13,566,807 samples, 0.01%)</title><rect x="807.1" y="549" width="0.2" height="15.0" fill="rgb(211,181,7)" rx="2" ry="2" />
+<text  x="810.15" y="559.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (30,808,628 samples, 0.03%)</title><rect x="204.6" y="549" width="0.3" height="15.0" fill="rgb(250,89,9)" rx="2" ry="2" />
+<text  x="207.64" y="559.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_retain_tick (22,030,573 samples, 0.02%)</title><rect x="1185.4" y="725" width="0.2" height="15.0" fill="rgb(217,41,12)" rx="2" ry="2" />
+<text  x="1188.40" y="735.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_bh (18,795,134 samples, 0.02%)</title><rect x="300.4" y="405" width="0.2" height="15.0" fill="rgb(242,89,30)" rx="2" ry="2" />
+<text  x="303.38" y="415.5" ></text>
+</g>
+<g >
+<title>__futex_queue (20,464,774 samples, 0.02%)</title><rect x="550.1" y="565" width="0.2" height="15.0" fill="rgb(251,140,46)" rx="2" ry="2" />
+<text  x="553.09" y="575.5" ></text>
+</g>
+<g >
+<title>xas_load (20,982,319 samples, 0.02%)</title><rect x="444.3" y="501" width="0.2" height="15.0" fill="rgb(221,229,12)" rx="2" ry="2" />
+<text  x="447.27" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (175,968,928 samples, 0.15%)</title><rect x="139.4" y="661" width="1.7" height="15.0" fill="rgb(246,37,35)" rx="2" ry="2" />
+<text  x="142.36" y="671.5" ></text>
+</g>
+<g >
+<title>xts_crypt (101,885,605 samples, 0.08%)</title><rect x="89.7" y="661" width="1.0" height="15.0" fill="rgb(253,135,43)" rx="2" ry="2" />
+<text  x="92.69" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (279,169,434 samples, 0.23%)</title><rect x="264.9" y="677" width="2.7" height="15.0" fill="rgb(206,99,35)" rx="2" ry="2" />
+<text  x="267.92" y="687.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (939,254,077 samples, 0.77%)</title><rect x="169.6" y="789" width="9.1" height="15.0" fill="rgb(219,37,2)" rx="2" ry="2" />
+<text  x="172.57" y="799.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (184,183,216 samples, 0.15%)</title><rect x="267.6" y="677" width="1.8" height="15.0" fill="rgb(208,184,15)" rx="2" ry="2" />
+<text  x="270.64" y="687.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (10,476,704 samples, 0.01%)</title><rect x="399.6" y="741" width="0.1" height="15.0" fill="rgb(220,187,24)" rx="2" ry="2" />
+<text  x="402.60" y="751.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (331,015,761 samples, 0.27%)</title><rect x="293.0" y="373" width="3.2" height="15.0" fill="rgb(252,105,2)" rx="2" ry="2" />
+<text  x="296.01" y="383.5" ></text>
+</g>
+<g >
+<title>napi_gro_receive (324,857,984 samples, 0.27%)</title><rect x="811.1" y="581" width="3.2" height="15.0" fill="rgb(219,98,18)" rx="2" ry="2" />
+<text  x="814.10" y="591.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (64,449,494 samples, 0.05%)</title><rect x="1106.5" y="709" width="0.6" height="15.0" fill="rgb(210,97,14)" rx="2" ry="2" />
+<text  x="1109.49" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (83,465,084 samples, 0.07%)</title><rect x="179.1" y="661" width="0.8" height="15.0" fill="rgb(236,217,18)" rx="2" ry="2" />
+<text  x="182.10" y="671.5" ></text>
+</g>
+<g >
+<title>__GI___libc_open (13,143,872 samples, 0.01%)</title><rect x="399.1" y="757" width="0.2" height="15.0" fill="rgb(238,12,31)" rx="2" ry="2" />
+<text  x="402.14" y="767.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (11,117,876 samples, 0.01%)</title><rect x="196.0" y="709" width="0.1" height="15.0" fill="rgb(220,165,4)" rx="2" ry="2" />
+<text  x="198.95" y="719.5" ></text>
+</g>
+<g >
+<title>clockevents_program_event (42,147,729 samples, 0.03%)</title><rect x="1186.6" y="693" width="0.4" height="15.0" fill="rgb(208,75,34)" rx="2" ry="2" />
+<text  x="1189.63" y="703.5" ></text>
+</g>
+<g >
+<title>__do_softirq (112,029,304 samples, 0.09%)</title><rect x="564.2" y="613" width="1.1" height="15.0" fill="rgb(238,212,18)" rx="2" ry="2" />
+<text  x="567.21" y="623.5" ></text>
+</g>
+<g >
+<title>lru_add_fn (78,070,790 samples, 0.06%)</title><rect x="438.1" y="485" width="0.8" height="15.0" fill="rgb(233,118,50)" rx="2" ry="2" />
+<text  x="441.12" y="495.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (11,783,732 samples, 0.01%)</title><rect x="1028.4" y="645" width="0.1" height="15.0" fill="rgb(234,73,45)" rx="2" ry="2" />
+<text  x="1031.41" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (33,398,350 samples, 0.03%)</title><rect x="203.2" y="533" width="0.3" height="15.0" fill="rgb(220,138,33)" rx="2" ry="2" />
+<text  x="206.21" y="543.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (12,115,820 samples, 0.01%)</title><rect x="126.6" y="693" width="0.1" height="15.0" fill="rgb(219,150,31)" rx="2" ry="2" />
+<text  x="129.59" y="703.5" ></text>
+</g>
+<g >
+<title>qemu_cond_signal (54,328,954 samples, 0.04%)</title><rect x="414.7" y="533" width="0.5" height="15.0" fill="rgb(222,226,35)" rx="2" ry="2" />
+<text  x="417.70" y="543.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (16,783,384 samples, 0.01%)</title><rect x="225.1" y="645" width="0.1" height="15.0" fill="rgb(238,50,45)" rx="2" ry="2" />
+<text  x="228.09" y="655.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (11,510,500 samples, 0.01%)</title><rect x="882.5" y="277" width="0.1" height="15.0" fill="rgb(208,111,20)" rx="2" ry="2" />
+<text  x="885.46" y="287.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (51,541,331 samples, 0.04%)</title><rect x="1162.3" y="661" width="0.5" height="15.0" fill="rgb(236,25,25)" rx="2" ry="2" />
+<text  x="1165.29" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_write_xmit (423,676,589 samples, 0.35%)</title><rect x="408.0" y="325" width="4.1" height="15.0" fill="rgb(223,154,44)" rx="2" ry="2" />
+<text  x="410.96" y="335.5" ></text>
+</g>
+<g >
+<title>ksys_write (174,329,814 samples, 0.14%)</title><rect x="397.3" y="565" width="1.7" height="15.0" fill="rgb(240,71,5)" rx="2" ry="2" />
+<text  x="400.27" y="575.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (85,566,386 samples, 0.07%)</title><rect x="774.1" y="629" width="0.8" height="15.0" fill="rgb(244,151,40)" rx="2" ry="2" />
+<text  x="777.09" y="639.5" ></text>
+</g>
+<g >
+<title>enqueue_task_fair (276,601,061 samples, 0.23%)</title><rect x="1114.5" y="661" width="2.7" height="15.0" fill="rgb(251,66,14)" rx="2" ry="2" />
+<text  x="1117.47" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (118,620,011 samples, 0.10%)</title><rect x="237.2" y="661" width="1.2" height="15.0" fill="rgb(207,108,14)" rx="2" ry="2" />
+<text  x="240.20" y="671.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (33,594,148 samples, 0.03%)</title><rect x="173.3" y="645" width="0.3" height="15.0" fill="rgb(226,69,30)" rx="2" ry="2" />
+<text  x="176.27" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (248,331,777 samples, 0.20%)</title><rect x="875.1" y="389" width="2.4" height="15.0" fill="rgb(209,74,28)" rx="2" ry="2" />
+<text  x="878.11" y="399.5" ></text>
+</g>
+<g >
+<title>ktime_get_ts64 (48,680,114 samples, 0.04%)</title><rect x="376.6" y="469" width="0.5" height="15.0" fill="rgb(227,0,28)" rx="2" ry="2" />
+<text  x="379.58" y="479.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (187,366,365 samples, 0.15%)</title><rect x="808.0" y="469" width="1.8" height="15.0" fill="rgb(246,195,52)" rx="2" ry="2" />
+<text  x="810.99" y="479.5" ></text>
+</g>
+<g >
+<title>__sock_wfree (53,880,252 samples, 0.04%)</title><rect x="810.5" y="549" width="0.6" height="15.0" fill="rgb(234,185,3)" rx="2" ry="2" />
+<text  x="813.54" y="559.5" ></text>
+</g>
+<g >
+<title>hrtimer_update_next_event (22,736,903 samples, 0.02%)</title><rect x="917.0" y="629" width="0.2" height="15.0" fill="rgb(237,124,31)" rx="2" ry="2" />
+<text  x="919.98" y="639.5" ></text>
+</g>
+<g >
+<title>__ip_queue_xmit (26,479,338 samples, 0.02%)</title><rect x="808.4" y="373" width="0.2" height="15.0" fill="rgb(221,37,37)" rx="2" ry="2" />
+<text  x="811.39" y="383.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (66,261,650 samples, 0.05%)</title><rect x="85.2" y="693" width="0.7" height="15.0" fill="rgb(245,139,52)" rx="2" ry="2" />
+<text  x="88.24" y="703.5" ></text>
+</g>
+<g >
+<title>security_file_permission (13,201,721 samples, 0.01%)</title><rect x="548.9" y="613" width="0.1" height="15.0" fill="rgb(248,176,53)" rx="2" ry="2" />
+<text  x="551.87" y="623.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (36,824,141 samples, 0.03%)</title><rect x="436.1" y="501" width="0.3" height="15.0" fill="rgb(227,166,18)" rx="2" ry="2" />
+<text  x="439.05" y="511.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (1,080,760,533 samples, 0.89%)</title><rect x="1080.1" y="677" width="10.5" height="15.0" fill="rgb(212,185,0)" rx="2" ry="2" />
+<text  x="1083.10" y="687.5" ></text>
+</g>
+<g >
+<title>do_writepages (18,361,165 samples, 0.02%)</title><rect x="22.4" y="645" width="0.2" height="15.0" fill="rgb(250,210,17)" rx="2" ry="2" />
+<text  x="25.38" y="655.5" ></text>
+</g>
+<g >
+<title>ebt_do_table (38,365,909 samples, 0.03%)</title><rect x="903.8" y="485" width="0.4" height="15.0" fill="rgb(236,177,52)" rx="2" ry="2" />
+<text  x="906.78" y="495.5" ></text>
+</g>
+<g >
+<title>clockevents_program_event (62,570,508 samples, 0.05%)</title><rect x="916.3" y="629" width="0.6" height="15.0" fill="rgb(211,107,4)" rx="2" ry="2" />
+<text  x="919.33" y="639.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_tcp_packet (12,513,604 samples, 0.01%)</title><rect x="295.4" y="261" width="0.1" height="15.0" fill="rgb(238,36,23)" rx="2" ry="2" />
+<text  x="298.37" y="271.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (1,022,870,361 samples, 0.84%)</title><rect x="404.2" y="709" width="9.9" height="15.0" fill="rgb(250,208,44)" rx="2" ry="2" />
+<text  x="407.18" y="719.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (22,797,454 samples, 0.02%)</title><rect x="206.1" y="661" width="0.2" height="15.0" fill="rgb(213,80,53)" rx="2" ry="2" />
+<text  x="209.10" y="671.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (21,760,448 samples, 0.02%)</title><rect x="311.8" y="293" width="0.2" height="15.0" fill="rgb(213,84,0)" rx="2" ry="2" />
+<text  x="314.82" y="303.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,058,344,465 samples, 0.87%)</title><rect x="22.6" y="709" width="10.3" height="15.0" fill="rgb(220,158,23)" rx="2" ry="2" />
+<text  x="25.61" y="719.5" ></text>
+</g>
+<g >
+<title>xts_crypt (98,375,191 samples, 0.08%)</title><rect x="47.0" y="661" width="1.0" height="15.0" fill="rgb(239,208,24)" rx="2" ry="2" />
+<text  x="50.01" y="671.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (90,358,606 samples, 0.07%)</title><rect x="414.4" y="645" width="0.9" height="15.0" fill="rgb(245,34,14)" rx="2" ry="2" />
+<text  x="417.43" y="655.5" ></text>
+</g>
+<g >
+<title>rcu_preempt_deferred_qs (47,648,248 samples, 0.04%)</title><rect x="1072.4" y="677" width="0.5" height="15.0" fill="rgb(207,212,9)" rx="2" ry="2" />
+<text  x="1075.40" y="687.5" ></text>
+</g>
+<g >
+<title>crypt_convert (879,214,319 samples, 0.73%)</title><rect x="272.2" y="709" width="8.5" height="15.0" fill="rgb(212,59,52)" rx="2" ry="2" />
+<text  x="275.18" y="719.5" ></text>
+</g>
+<g >
+<title>aesni_enc (10,704,428 samples, 0.01%)</title><rect x="68.7" y="645" width="0.1" height="15.0" fill="rgb(237,160,39)" rx="2" ry="2" />
+<text  x="71.67" y="655.5" ></text>
+</g>
+<g >
+<title>curl_multi_perform (35,629,944 samples, 0.03%)</title><rect x="396.9" y="789" width="0.3" height="15.0" fill="rgb(210,18,14)" rx="2" ry="2" />
+<text  x="399.85" y="799.5" ></text>
+</g>
+<g >
+<title>kworker/u64:35- (814,889,801 samples, 0.67%)</title><rect x="206.1" y="805" width="7.9" height="15.0" fill="rgb(224,120,17)" rx="2" ry="2" />
+<text  x="209.05" y="815.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (42,741,989 samples, 0.04%)</title><rect x="15.9" y="645" width="0.4" height="15.0" fill="rgb(243,9,20)" rx="2" ry="2" />
+<text  x="18.89" y="655.5" ></text>
+</g>
+<g >
+<title>syscall_enter_from_user_mode (23,911,688 samples, 0.02%)</title><rect x="346.3" y="533" width="0.3" height="15.0" fill="rgb(217,189,25)" rx="2" ry="2" />
+<text  x="349.33" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (13,275,895 samples, 0.01%)</title><rect x="759.7" y="629" width="0.1" height="15.0" fill="rgb(205,24,4)" rx="2" ry="2" />
+<text  x="762.71" y="639.5" ></text>
+</g>
+<g >
+<title>amd_pmu_enable_all (38,705,120 samples, 0.03%)</title><rect x="914.7" y="517" width="0.4" height="15.0" fill="rgb(217,69,42)" rx="2" ry="2" />
+<text  x="917.68" y="527.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (20,034,778 samples, 0.02%)</title><rect x="402.2" y="517" width="0.2" height="15.0" fill="rgb(250,106,47)" rx="2" ry="2" />
+<text  x="405.20" y="527.5" ></text>
+</g>
+<g >
+<title>crypt_convert (956,408,855 samples, 0.79%)</title><rect x="65.8" y="709" width="9.3" height="15.0" fill="rgb(237,56,22)" rx="2" ry="2" />
+<text  x="68.83" y="719.5" ></text>
+</g>
+<g >
+<title>ip_finish_output (10,532,611 samples, 0.01%)</title><rect x="312.7" y="373" width="0.1" height="15.0" fill="rgb(227,126,10)" rx="2" ry="2" />
+<text  x="315.73" y="383.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (382,990,751 samples, 0.32%)</title><rect x="292.9" y="405" width="3.7" height="15.0" fill="rgb(237,113,51)" rx="2" ry="2" />
+<text  x="295.91" y="415.5" ></text>
+</g>
+<g >
+<title>inet6_csk_route_socket (18,245,082 samples, 0.02%)</title><rect x="387.5" y="501" width="0.2" height="15.0" fill="rgb(251,166,48)" rx="2" ry="2" />
+<text  x="390.52" y="511.5" ></text>
+</g>
+<g >
+<title>__snprintf_chk (25,567,569 samples, 0.02%)</title><rect x="283.1" y="629" width="0.3" height="15.0" fill="rgb(213,26,18)" rx="2" ry="2" />
+<text  x="286.11" y="639.5" ></text>
+</g>
+<g >
+<title>hash_conntrack_raw (25,348,036 samples, 0.02%)</title><rect x="316.0" y="309" width="0.2" height="15.0" fill="rgb(210,180,10)" rx="2" ry="2" />
+<text  x="318.99" y="319.5" ></text>
+</g>
+<g >
+<title>__tcp_push_pending_frames (609,942,339 samples, 0.50%)</title><rect x="387.1" y="565" width="6.0" height="15.0" fill="rgb(226,128,35)" rx="2" ry="2" />
+<text  x="390.12" y="575.5" ></text>
+</g>
+<g >
+<title>tick_sched_handle (270,767,912 samples, 0.22%)</title><rect x="913.1" y="597" width="2.6" height="15.0" fill="rgb(233,171,33)" rx="2" ry="2" />
+<text  x="916.06" y="607.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (53,182,937 samples, 0.04%)</title><rect x="848.9" y="629" width="0.6" height="15.0" fill="rgb(216,204,14)" rx="2" ry="2" />
+<text  x="851.94" y="639.5" ></text>
+</g>
+<g >
+<title>__this_cpu_preempt_check (166,992,268 samples, 0.14%)</title><rect x="1050.7" y="661" width="1.6" height="15.0" fill="rgb(247,140,25)" rx="2" ry="2" />
+<text  x="1053.69" y="671.5" ></text>
+</g>
+<g >
+<title>nvme_prep_rq.part.0 (39,227,465 samples, 0.03%)</title><rect x="10.3" y="645" width="0.4" height="15.0" fill="rgb(244,78,30)" rx="2" ry="2" />
+<text  x="13.31" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (152,141,186 samples, 0.13%)</title><rect x="150.4" y="661" width="1.5" height="15.0" fill="rgb(225,13,25)" rx="2" ry="2" />
+<text  x="153.38" y="671.5" ></text>
+</g>
+<g >
+<title>xas_clear_mark (11,374,167 samples, 0.01%)</title><rect x="204.0" y="533" width="0.1" height="15.0" fill="rgb(252,114,51)" rx="2" ry="2" />
+<text  x="207.04" y="543.5" ></text>
+</g>
+<g >
+<title>kthread (1,100,962,040 samples, 0.91%)</title><rect x="158.8" y="773" width="10.8" height="15.0" fill="rgb(207,31,9)" rx="2" ry="2" />
+<text  x="161.84" y="783.5" ></text>
+</g>
+<g >
+<title>__x64_sys_openat (14,759,153 samples, 0.01%)</title><rect x="399.8" y="725" width="0.2" height="15.0" fill="rgb(213,122,46)" rx="2" ry="2" />
+<text  x="402.84" y="735.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (22,294,273 samples, 0.02%)</title><rect x="909.8" y="613" width="0.2" height="15.0" fill="rgb(229,50,38)" rx="2" ry="2" />
+<text  x="912.78" y="623.5" ></text>
+</g>
+<g >
+<title>__sysvec_apic_timer_interrupt (870,608,719 samples, 0.72%)</title><rect x="910.0" y="661" width="8.5" height="15.0" fill="rgb(241,99,32)" rx="2" ry="2" />
+<text  x="913.01" y="671.5" ></text>
+</g>
+<g >
+<title>kthread (939,254,077 samples, 0.77%)</title><rect x="169.6" y="773" width="9.1" height="15.0" fill="rgb(218,23,13)" rx="2" ry="2" />
+<text  x="172.57" y="783.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (10,889,315 samples, 0.01%)</title><rect x="107.9" y="645" width="0.2" height="15.0" fill="rgb(242,138,17)" rx="2" ry="2" />
+<text  x="110.95" y="655.5" ></text>
+</g>
+<g >
+<title>main_loop_wait (716,179,179 samples, 0.59%)</title><rect x="416.1" y="725" width="7.0" height="15.0" fill="rgb(214,16,38)" rx="2" ry="2" />
+<text  x="419.14" y="735.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (64,648,998 samples, 0.05%)</title><rect x="1153.2" y="709" width="0.7" height="15.0" fill="rgb(209,229,2)" rx="2" ry="2" />
+<text  x="1156.24" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (101,330,801 samples, 0.08%)</title><rect x="224.3" y="709" width="0.9" height="15.0" fill="rgb(243,173,22)" rx="2" ry="2" />
+<text  x="227.26" y="719.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,138,618,397 samples, 0.94%)</title><rect x="184.9" y="709" width="11.1" height="15.0" fill="rgb(254,180,7)" rx="2" ry="2" />
+<text  x="187.87" y="719.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (58,315,620 samples, 0.05%)</title><rect x="58.2" y="645" width="0.6" height="15.0" fill="rgb(213,202,15)" rx="2" ry="2" />
+<text  x="61.19" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (16,238,085 samples, 0.01%)</title><rect x="385.9" y="565" width="0.1" height="15.0" fill="rgb(249,122,52)" rx="2" ry="2" />
+<text  x="388.88" y="575.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (364,791,472 samples, 0.30%)</title><rect x="202.5" y="693" width="3.6" height="15.0" fill="rgb(225,226,35)" rx="2" ry="2" />
+<text  x="205.50" y="703.5" ></text>
+</g>
+<g >
+<title>tick_nohz_get_sleep_length (14,645,408 samples, 0.01%)</title><rect x="566.2" y="677" width="0.1" height="15.0" fill="rgb(219,49,29)" rx="2" ry="2" />
+<text  x="569.20" y="687.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (16,016,157 samples, 0.01%)</title><rect x="1172.6" y="645" width="0.1" height="15.0" fill="rgb(224,128,42)" rx="2" ry="2" />
+<text  x="1175.59" y="655.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (17,214,731 samples, 0.01%)</title><rect x="388.0" y="437" width="0.2" height="15.0" fill="rgb(215,147,25)" rx="2" ry="2" />
+<text  x="391.01" y="447.5" ></text>
+</g>
+<g >
+<title>__iommu_map (62,861,428 samples, 0.05%)</title><rect x="310.1" y="165" width="0.6" height="15.0" fill="rgb(229,135,46)" rx="2" ry="2" />
+<text  x="313.13" y="175.5" ></text>
+</g>
+<g >
+<title>xas_descend (14,433,786 samples, 0.01%)</title><rect x="437.0" y="485" width="0.1" height="15.0" fill="rgb(218,214,53)" rx="2" ry="2" />
+<text  x="439.97" y="495.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (171,286,965 samples, 0.14%)</title><rect x="88.0" y="661" width="1.7" height="15.0" fill="rgb(207,123,42)" rx="2" ry="2" />
+<text  x="91.02" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock (11,893,404 samples, 0.01%)</title><rect x="1169.9" y="677" width="0.1" height="15.0" fill="rgb(236,228,8)" rx="2" ry="2" />
+<text  x="1172.90" y="687.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (1,649,941,013 samples, 1.36%)</title><rect x="871.5" y="453" width="16.1" height="15.0" fill="rgb(205,112,14)" rx="2" ry="2" />
+<text  x="874.50" y="463.5" ></text>
+</g>
+<g >
+<title>lapic_next_event (13,449,661 samples, 0.01%)</title><rect x="1186.9" y="677" width="0.1" height="15.0" fill="rgb(212,155,18)" rx="2" ry="2" />
+<text  x="1189.91" y="687.5" ></text>
+</g>
+<g >
+<title>sysvec_apic_timer_interrupt (93,961,742 samples, 0.08%)</title><rect x="543.2" y="645" width="0.9" height="15.0" fill="rgb(218,174,1)" rx="2" ry="2" />
+<text  x="546.21" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (307,030,411 samples, 0.25%)</title><rect x="246.6" y="677" width="3.0" height="15.0" fill="rgb(252,142,7)" rx="2" ry="2" />
+<text  x="249.65" y="687.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (52,906,734 samples, 0.04%)</title><rect x="248.9" y="645" width="0.5" height="15.0" fill="rgb(238,145,14)" rx="2" ry="2" />
+<text  x="251.92" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (480,396,634 samples, 0.40%)</title><rect x="407.8" y="357" width="4.7" height="15.0" fill="rgb(247,20,1)" rx="2" ry="2" />
+<text  x="410.84" y="367.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (62,243,097 samples, 0.05%)</title><rect x="809.2" y="437" width="0.6" height="15.0" fill="rgb(213,213,45)" rx="2" ry="2" />
+<text  x="812.20" y="447.5" ></text>
+</g>
+<g >
+<title>bdrv_co_pwritev_part (87,792,837 samples, 0.07%)</title><rect x="414.5" y="629" width="0.8" height="15.0" fill="rgb(246,140,8)" rx="2" ry="2" />
+<text  x="417.46" y="639.5" ></text>
+</g>
+<g >
+<title>__rcu_read_unlock (10,725,799 samples, 0.01%)</title><rect x="875.6" y="293" width="0.1" height="15.0" fill="rgb(228,148,50)" rx="2" ry="2" />
+<text  x="878.60" y="303.5" ></text>
+</g>
+<g >
+<title>__sys_sendmsg (516,809,478 samples, 0.43%)</title><rect x="407.6" y="437" width="5.0" height="15.0" fill="rgb(213,130,46)" rx="2" ry="2" />
+<text  x="410.60" y="447.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (27,506,291 samples, 0.02%)</title><rect x="113.9" y="533" width="0.3" height="15.0" fill="rgb(217,205,52)" rx="2" ry="2" />
+<text  x="116.88" y="543.5" ></text>
+</g>
+<g >
+<title>ct_kernel_enter.constprop.0 (3,152,412,542 samples, 2.60%)</title><rect x="1040.5" y="677" width="30.7" height="15.0" fill="rgb(218,159,42)" rx="2" ry="2" />
+<text  x="1043.48" y="687.5" >ct..</text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (15,097,066 samples, 0.01%)</title><rect x="420.7" y="597" width="0.2" height="15.0" fill="rgb(220,128,46)" rx="2" ry="2" />
+<text  x="423.74" y="607.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (15,797,969 samples, 0.01%)</title><rect x="809.3" y="421" width="0.2" height="15.0" fill="rgb(230,217,11)" rx="2" ry="2" />
+<text  x="812.31" y="431.5" ></text>
+</g>
+<g >
+<title>read_tsc (37,652,893 samples, 0.03%)</title><rect x="806.5" y="517" width="0.3" height="15.0" fill="rgb(237,190,37)" rx="2" ry="2" />
+<text  x="809.45" y="527.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (19,310,052 samples, 0.02%)</title><rect x="402.2" y="501" width="0.2" height="15.0" fill="rgb(233,107,36)" rx="2" ry="2" />
+<text  x="405.20" y="511.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (19,558,393 samples, 0.02%)</title><rect x="249.4" y="645" width="0.2" height="15.0" fill="rgb(222,118,29)" rx="2" ry="2" />
+<text  x="252.45" y="655.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (16,920,656 samples, 0.01%)</title><rect x="436.2" y="485" width="0.2" height="15.0" fill="rgb(215,49,8)" rx="2" ry="2" />
+<text  x="439.23" y="495.5" ></text>
+</g>
+<g >
+<title>__libc_recvmsg (88,590,967 samples, 0.07%)</title><rect x="402.5" y="501" width="0.9" height="15.0" fill="rgb(218,106,18)" rx="2" ry="2" />
+<text  x="405.51" y="511.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (1,240,048,259 samples, 1.02%)</title><rect x="403.4" y="757" width="12.1" height="15.0" fill="rgb(227,228,51)" rx="2" ry="2" />
+<text  x="406.45" y="767.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (31,237,969 samples, 0.03%)</title><rect x="1037.5" y="661" width="0.3" height="15.0" fill="rgb(212,108,44)" rx="2" ry="2" />
+<text  x="1040.52" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (238,610,956 samples, 0.20%)</title><rect x="242.8" y="677" width="2.3" height="15.0" fill="rgb(231,107,38)" rx="2" ry="2" />
+<text  x="245.80" y="687.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (59,542,910 samples, 0.05%)</title><rect x="10.1" y="789" width="0.6" height="15.0" fill="rgb(244,178,24)" rx="2" ry="2" />
+<text  x="13.14" y="799.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_stop_tick (348,107,620 samples, 0.29%)</title><rect x="1185.6" y="725" width="3.4" height="15.0" fill="rgb(216,142,41)" rx="2" ry="2" />
+<text  x="1188.61" y="735.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (168,274,607 samples, 0.14%)</title><rect x="185.1" y="661" width="1.6" height="15.0" fill="rgb(232,81,45)" rx="2" ry="2" />
+<text  x="188.09" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (204,126,168 samples, 0.17%)</title><rect x="251.4" y="677" width="2.0" height="15.0" fill="rgb(234,199,38)" rx="2" ry="2" />
+<text  x="254.44" y="687.5" ></text>
+</g>
+<g >
+<title>tick_irq_enter (123,235,523 samples, 0.10%)</title><rect x="1035.6" y="645" width="1.2" height="15.0" fill="rgb(219,44,23)" rx="2" ry="2" />
+<text  x="1038.55" y="655.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output (250,661,993 samples, 0.21%)</title><rect x="408.4" y="261" width="2.4" height="15.0" fill="rgb(219,118,0)" rx="2" ry="2" />
+<text  x="411.36" y="271.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (148,831,544 samples, 0.12%)</title><rect x="67.1" y="661" width="1.5" height="15.0" fill="rgb(239,168,35)" rx="2" ry="2" />
+<text  x="70.13" y="671.5" ></text>
+</g>
+<g >
+<title>cfree@GLIBC_2.2.5 (13,072,553 samples, 0.01%)</title><rect x="347.6" y="581" width="0.1" height="15.0" fill="rgb(211,124,30)" rx="2" ry="2" />
+<text  x="350.58" y="591.5" ></text>
+</g>
+<g >
+<title>xts_crypt (51,963,113 samples, 0.04%)</title><rect x="110.0" y="661" width="0.5" height="15.0" fill="rgb(242,42,16)" rx="2" ry="2" />
+<text  x="113.00" y="671.5" ></text>
+</g>
+<g >
+<title>enqueue_entity (230,066,777 samples, 0.19%)</title><rect x="1114.9" y="645" width="2.3" height="15.0" fill="rgb(234,99,18)" rx="2" ry="2" />
+<text  x="1117.92" y="655.5" ></text>
+</g>
+<g >
+<title>__do_softirq (34,919,304 samples, 0.03%)</title><rect x="396.1" y="437" width="0.3" height="15.0" fill="rgb(245,154,18)" rx="2" ry="2" />
+<text  x="399.09" y="447.5" ></text>
+</g>
+<g >
+<title>ttwu_queue_wakelist (14,602,153 samples, 0.01%)</title><rect x="390.1" y="165" width="0.1" height="15.0" fill="rgb(222,56,37)" rx="2" ry="2" />
+<text  x="393.07" y="175.5" ></text>
+</g>
+<g >
+<title>unmap_region (14,074,181 samples, 0.01%)</title><rect x="413.1" y="485" width="0.1" height="15.0" fill="rgb(240,112,45)" rx="2" ry="2" />
+<text  x="416.06" y="495.5" ></text>
+</g>
+<g >
+<title>_copy_from_user (112,293,634 samples, 0.09%)</title><rect x="330.7" y="453" width="1.1" height="15.0" fill="rgb(207,67,41)" rx="2" ry="2" />
+<text  x="333.75" y="463.5" ></text>
+</g>
+<g >
+<title>tick_check_oneshot_broadcast_this_cpu (205,940,794 samples, 0.17%)</title><rect x="842.0" y="629" width="2.0" height="15.0" fill="rgb(216,223,50)" rx="2" ry="2" />
+<text  x="845.03" y="639.5" ></text>
+</g>
+<g >
+<title>protocol_recv_request_send_reply (11,726,484,834 samples, 9.67%)</title><rect x="282.6" y="725" width="114.2" height="15.0" fill="rgb(211,66,16)" rx="2" ry="2" />
+<text  x="285.64" y="735.5" >protocol_recv_..</text>
+</g>
+<g >
+<title>__mod_memcg_state (30,892,017 samples, 0.03%)</title><rect x="879.9" y="325" width="0.3" height="15.0" fill="rgb(225,16,13)" rx="2" ry="2" />
+<text  x="882.94" y="335.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,154,277,250 samples, 0.95%)</title><rect x="184.8" y="741" width="11.3" height="15.0" fill="rgb(222,45,17)" rx="2" ry="2" />
+<text  x="187.83" y="751.5" ></text>
+</g>
+<g >
+<title>ip6_xmit (52,885,765 samples, 0.04%)</title><rect x="396.0" y="517" width="0.6" height="15.0" fill="rgb(233,29,43)" rx="2" ry="2" />
+<text  x="399.04" y="527.5" ></text>
+</g>
+<g >
+<title>inet_ehashfn (17,762,793 samples, 0.01%)</title><rect x="889.5" y="389" width="0.2" height="15.0" fill="rgb(205,137,43)" rx="2" ry="2" />
+<text  x="892.48" y="399.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,130,980,146 samples, 0.93%)</title><rect x="86.1" y="741" width="11.1" height="15.0" fill="rgb(219,163,42)" rx="2" ry="2" />
+<text  x="89.14" y="751.5" ></text>
+</g>
+<g >
+<title>__pagevec_release (35,351,371 samples, 0.03%)</title><rect x="546.5" y="581" width="0.3" height="15.0" fill="rgb(219,119,8)" rx="2" ry="2" />
+<text  x="549.50" y="591.5" ></text>
+</g>
+<g >
+<title>ktime_get (1,817,222,556 samples, 1.50%)</title><rect x="824.2" y="629" width="17.7" height="15.0" fill="rgb(229,25,52)" rx="2" ry="2" />
+<text  x="827.22" y="639.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (305,784,339 samples, 0.25%)</title><rect x="293.1" y="357" width="2.9" height="15.0" fill="rgb(209,147,39)" rx="2" ry="2" />
+<text  x="296.06" y="367.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (152,111,096 samples, 0.13%)</title><rect x="34.8" y="661" width="1.5" height="15.0" fill="rgb(206,222,47)" rx="2" ry="2" />
+<text  x="37.79" y="671.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (3,075,280,652 samples, 2.54%)</title><rect x="354.6" y="581" width="30.0" height="15.0" fill="rgb(252,2,29)" rx="2" ry="2" />
+<text  x="357.65" y="591.5" >[l..</text>
+</g>
+<g >
+<title>dequeue_entity (229,538,161 samples, 0.19%)</title><rect x="368.2" y="421" width="2.3" height="15.0" fill="rgb(229,189,44)" rx="2" ry="2" />
+<text  x="371.22" y="431.5" ></text>
+</g>
+<g >
+<title>arch_cpu_idle_exit (30,985,273 samples, 0.03%)</title><rect x="572.2" y="725" width="0.3" height="15.0" fill="rgb(228,99,11)" rx="2" ry="2" />
+<text  x="575.20" y="735.5" ></text>
+</g>
+<g >
+<title>kmem_cache_free (19,129,287 samples, 0.02%)</title><rect x="319.8" y="405" width="0.2" height="15.0" fill="rgb(247,25,50)" rx="2" ry="2" />
+<text  x="322.79" y="415.5" ></text>
+</g>
+<g >
+<title>[perf] (179,422,134 samples, 0.15%)</title><rect x="397.2" y="645" width="1.8" height="15.0" fill="rgb(253,157,28)" rx="2" ry="2" />
+<text  x="400.25" y="655.5" ></text>
+</g>
+<g >
+<title>clockevents_program_event (27,090,879 samples, 0.02%)</title><rect x="1184.9" y="677" width="0.3" height="15.0" fill="rgb(231,73,29)" rx="2" ry="2" />
+<text  x="1187.91" y="687.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (15,597,988 samples, 0.01%)</title><rect x="350.0" y="549" width="0.2" height="15.0" fill="rgb(205,200,22)" rx="2" ry="2" />
+<text  x="353.04" y="559.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (46,301,286 samples, 0.04%)</title><rect x="852.0" y="645" width="0.5" height="15.0" fill="rgb(239,147,44)" rx="2" ry="2" />
+<text  x="855.01" y="655.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (261,572,937 samples, 0.22%)</title><rect x="48.0" y="677" width="2.5" height="15.0" fill="rgb(252,132,44)" rx="2" ry="2" />
+<text  x="50.96" y="687.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (364,791,472 samples, 0.30%)</title><rect x="202.5" y="677" width="3.6" height="15.0" fill="rgb(237,81,32)" rx="2" ry="2" />
+<text  x="205.50" y="687.5" ></text>
+</g>
+<g >
+<title>__x64_sys_ppoll (332,046,900 samples, 0.27%)</title><rect x="419.5" y="661" width="3.2" height="15.0" fill="rgb(221,56,48)" rx="2" ry="2" />
+<text  x="422.51" y="671.5" ></text>
+</g>
+<g >
+<title>xts_crypt (107,569,570 samples, 0.09%)</title><rect x="188.5" y="661" width="1.0" height="15.0" fill="rgb(250,218,27)" rx="2" ry="2" />
+<text  x="191.46" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_da_get_block_prep (346,697,812 samples, 0.29%)</title><rect x="430.7" y="549" width="3.4" height="15.0" fill="rgb(236,77,41)" rx="2" ry="2" />
+<text  x="433.68" y="559.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (20,817,437 samples, 0.02%)</title><rect x="572.5" y="725" width="0.2" height="15.0" fill="rgb(230,99,41)" rx="2" ry="2" />
+<text  x="575.52" y="735.5" ></text>
+</g>
+<g >
+<title>update_load_avg (77,768,076 samples, 0.06%)</title><rect x="1032.7" y="565" width="0.7" height="15.0" fill="rgb(250,99,17)" rx="2" ry="2" />
+<text  x="1035.66" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (277,187,824 samples, 0.23%)</title><rect x="189.5" y="677" width="2.7" height="15.0" fill="rgb(215,5,12)" rx="2" ry="2" />
+<text  x="192.50" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (16,392,460 samples, 0.01%)</title><rect x="283.7" y="581" width="0.2" height="15.0" fill="rgb(209,16,52)" rx="2" ry="2" />
+<text  x="286.74" y="591.5" ></text>
+</g>
+<g >
+<title>pollwake (30,513,509 samples, 0.03%)</title><rect x="389.9" y="197" width="0.3" height="15.0" fill="rgb(243,176,2)" rx="2" ry="2" />
+<text  x="392.92" y="207.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,304,037,814 samples, 1.08%)</title><rect x="224.2" y="741" width="12.7" height="15.0" fill="rgb(213,36,14)" rx="2" ry="2" />
+<text  x="227.25" y="751.5" ></text>
+</g>
+<g >
+<title>irqtime_account_irq (26,047,470 samples, 0.02%)</title><rect x="820.6" y="645" width="0.2" height="15.0" fill="rgb(241,105,41)" rx="2" ry="2" />
+<text  x="823.59" y="655.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (26,063,370 samples, 0.02%)</title><rect x="444.7" y="517" width="0.2" height="15.0" fill="rgb(223,31,1)" rx="2" ry="2" />
+<text  x="447.67" y="527.5" ></text>
+</g>
+<g >
+<title>kworker/u64:23 (15,865,262 samples, 0.01%)</title><rect x="178.7" y="805" width="0.2" height="15.0" fill="rgb(239,111,36)" rx="2" ry="2" />
+<text  x="181.71" y="815.5" ></text>
+</g>
+<g >
+<title>xas_find_conflict (27,086,003 samples, 0.02%)</title><rect x="436.9" y="501" width="0.2" height="15.0" fill="rgb(211,28,53)" rx="2" ry="2" />
+<text  x="439.88" y="511.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (34,174,479 samples, 0.03%)</title><rect x="336.2" y="533" width="0.3" height="15.0" fill="rgb(222,34,1)" rx="2" ry="2" />
+<text  x="339.20" y="543.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (62,876,679 samples, 0.05%)</title><rect x="553.4" y="741" width="0.6" height="15.0" fill="rgb(250,24,42)" rx="2" ry="2" />
+<text  x="556.38" y="751.5" ></text>
+</g>
+<g >
+<title>rest_init (812,027,677 samples, 0.67%)</title><rect x="558.7" y="741" width="7.9" height="15.0" fill="rgb(220,29,27)" rx="2" ry="2" />
+<text  x="561.71" y="751.5" ></text>
+</g>
+<g >
+<title>__irq_exit_rcu (29,518,296 samples, 0.02%)</title><rect x="1028.7" y="661" width="0.3" height="15.0" fill="rgb(228,57,30)" rx="2" ry="2" />
+<text  x="1031.74" y="671.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (343,584,930 samples, 0.28%)</title><rect x="308.1" y="293" width="3.4" height="15.0" fill="rgb(237,86,42)" rx="2" ry="2" />
+<text  x="311.14" y="303.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irq (11,086,249 samples, 0.01%)</title><rect x="422.3" y="613" width="0.1" height="15.0" fill="rgb(231,88,39)" rx="2" ry="2" />
+<text  x="425.32" y="623.5" ></text>
+</g>
+<g >
+<title>__printf_buffer (16,301,570 samples, 0.01%)</title><rect x="283.1" y="597" width="0.2" height="15.0" fill="rgb(225,120,8)" rx="2" ry="2" />
+<text  x="286.13" y="607.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_page (142,561,078 samples, 0.12%)</title><rect x="113.7" y="565" width="1.4" height="15.0" fill="rgb(223,2,37)" rx="2" ry="2" />
+<text  x="116.70" y="575.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (525,005,001 samples, 0.43%)</title><rect x="407.6" y="501" width="5.1" height="15.0" fill="rgb(207,38,41)" rx="2" ry="2" />
+<text  x="410.55" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (48,683,852 samples, 0.04%)</title><rect x="246.0" y="693" width="0.4" height="15.0" fill="rgb(212,110,15)" rx="2" ry="2" />
+<text  x="248.97" y="703.5" ></text>
+</g>
+<g >
+<title>poll_select_set_timeout (14,088,951 samples, 0.01%)</title><rect x="333.1" y="469" width="0.1" height="15.0" fill="rgb(254,39,16)" rx="2" ry="2" />
+<text  x="336.10" y="479.5" ></text>
+</g>
+<g >
+<title>tick_nohz_restart_sched_tick (226,201,714 samples, 0.19%)</title><rect x="1183.2" y="709" width="2.2" height="15.0" fill="rgb(232,151,21)" rx="2" ry="2" />
+<text  x="1186.20" y="719.5" ></text>
+</g>
+<g >
+<title>error_entry (22,964,915 samples, 0.02%)</title><rect x="856.6" y="677" width="0.2" height="15.0" fill="rgb(231,73,13)" rx="2" ry="2" />
+<text  x="859.56" y="687.5" ></text>
+</g>
+<g >
+<title>folio_alloc (280,515,495 samples, 0.23%)</title><rect x="439.1" y="533" width="2.7" height="15.0" fill="rgb(228,152,4)" rx="2" ry="2" />
+<text  x="442.09" y="543.5" ></text>
+</g>
+<g >
+<title>ip_local_deliver_finish (93,780,297 samples, 0.08%)</title><rect x="808.2" y="453" width="0.9" height="15.0" fill="rgb(238,192,29)" rx="2" ry="2" />
+<text  x="811.21" y="463.5" ></text>
+</g>
+<g >
+<title>worker_thread (939,254,077 samples, 0.77%)</title><rect x="169.6" y="757" width="9.1" height="15.0" fill="rgb(215,204,27)" rx="2" ry="2" />
+<text  x="172.57" y="767.5" ></text>
+</g>
+<g >
+<title>qio_channel_write_all (541,173,591 samples, 0.45%)</title><rect x="407.5" y="533" width="5.3" height="15.0" fill="rgb(224,78,7)" rx="2" ry="2" />
+<text  x="410.49" y="543.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (75,899,968 samples, 0.06%)</title><rect x="96.2" y="693" width="0.7" height="15.0" fill="rgb(239,100,1)" rx="2" ry="2" />
+<text  x="99.21" y="703.5" ></text>
+</g>
+<g >
+<title>nbd_receive_reply (102,891,044 samples, 0.08%)</title><rect x="400.3" y="533" width="1.0" height="15.0" fill="rgb(252,17,33)" rx="2" ry="2" />
+<text  x="403.26" y="543.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (44,062,662 samples, 0.04%)</title><rect x="548.3" y="565" width="0.4" height="15.0" fill="rgb(253,27,42)" rx="2" ry="2" />
+<text  x="551.28" y="575.5" ></text>
+</g>
+<g >
+<title>cfree@GLIBC_2.2.5 (43,154,371 samples, 0.04%)</title><rect x="338.2" y="565" width="0.4" height="15.0" fill="rgb(247,182,51)" rx="2" ry="2" />
+<text  x="341.20" y="575.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (256,955,698 samples, 0.21%)</title><rect x="131.5" y="677" width="2.5" height="15.0" fill="rgb(232,209,14)" rx="2" ry="2" />
+<text  x="134.53" y="687.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (76,075,585 samples, 0.06%)</title><rect x="390.6" y="309" width="0.8" height="15.0" fill="rgb(205,65,6)" rx="2" ry="2" />
+<text  x="393.61" y="319.5" ></text>
+</g>
+<g >
+<title>clone3 (13,351,466,429 samples, 11.01%)</title><rect x="423.2" y="789" width="129.9" height="15.0" fill="rgb(224,35,47)" rx="2" ry="2" />
+<text  x="426.17" y="799.5" >clone3</text>
+</g>
+<g >
+<title>check_preemption_disabled (21,365,037 samples, 0.02%)</title><rect x="1072.7" y="661" width="0.2" height="15.0" fill="rgb(244,165,7)" rx="2" ry="2" />
+<text  x="1075.66" y="671.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (24,936,292 samples, 0.02%)</title><rect x="388.0" y="453" width="0.2" height="15.0" fill="rgb(224,30,48)" rx="2" ry="2" />
+<text  x="390.97" y="463.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (353,538,890 samples, 0.29%)</title><rect x="388.2" y="453" width="3.5" height="15.0" fill="rgb(212,214,40)" rx="2" ry="2" />
+<text  x="391.21" y="463.5" ></text>
+</g>
+<g >
+<title>kthread (1,108,693,995 samples, 0.91%)</title><rect x="126.7" y="773" width="10.8" height="15.0" fill="rgb(229,109,31)" rx="2" ry="2" />
+<text  x="129.72" y="783.5" ></text>
+</g>
+<g >
+<title>tcp_mstamp_refresh (58,488,028 samples, 0.05%)</title><rect x="322.7" y="389" width="0.6" height="15.0" fill="rgb(254,148,45)" rx="2" ry="2" />
+<text  x="325.73" y="399.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (139,314,352 samples, 0.11%)</title><rect x="420.9" y="629" width="1.3" height="15.0" fill="rgb(218,153,16)" rx="2" ry="2" />
+<text  x="423.89" y="639.5" ></text>
+</g>
+<g >
+<title>update_load_avg (55,115,415 samples, 0.05%)</title><rect x="369.9" y="405" width="0.5" height="15.0" fill="rgb(229,85,8)" rx="2" ry="2" />
+<text  x="372.87" y="415.5" ></text>
+</g>
+<g >
+<title>aio_set_fd_handler (15,262,534 samples, 0.01%)</title><rect x="400.7" y="501" width="0.2" height="15.0" fill="rgb(241,215,36)" rx="2" ry="2" />
+<text  x="403.71" y="511.5" ></text>
+</g>
+<g >
+<title>calc_load_nohz_start (15,187,658 samples, 0.01%)</title><rect x="1187.6" y="693" width="0.2" height="15.0" fill="rgb(246,51,9)" rx="2" ry="2" />
+<text  x="1190.65" y="703.5" ></text>
+</g>
+<g >
+<title>folio_end_writeback (11,635,678 samples, 0.01%)</title><rect x="178.7" y="677" width="0.2" height="15.0" fill="rgb(234,22,29)" rx="2" ry="2" />
+<text  x="181.75" y="687.5" ></text>
+</g>
+<g >
+<title>rebalance_domains (56,983,913 samples, 0.05%)</title><rect x="905.7" y="629" width="0.6" height="15.0" fill="rgb(217,54,39)" rx="2" ry="2" />
+<text  x="908.71" y="639.5" ></text>
+</g>
+<g >
+<title>hrtimer_interrupt (72,585,484 samples, 0.06%)</title><rect x="543.4" y="613" width="0.7" height="15.0" fill="rgb(225,31,16)" rx="2" ry="2" />
+<text  x="546.41" y="623.5" ></text>
+</g>
+<g >
+<title>iommu_v1_map_pages (20,064,937 samples, 0.02%)</title><rect x="10.5" y="549" width="0.1" height="15.0" fill="rgb(236,154,5)" rx="2" ry="2" />
+<text  x="13.45" y="559.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (352,110,113 samples, 0.29%)</title><rect x="113.2" y="693" width="3.4" height="15.0" fill="rgb(213,100,13)" rx="2" ry="2" />
+<text  x="116.19" y="703.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (12,650,781,192 samples, 10.44%)</title><rect x="423.3" y="725" width="123.2" height="15.0" fill="rgb(230,5,45)" rx="2" ry="2" />
+<text  x="426.31" y="735.5" >[qemu-img]</text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (10,297,965 samples, 0.01%)</title><rect x="277.8" y="661" width="0.1" height="15.0" fill="rgb(248,60,28)" rx="2" ry="2" />
+<text  x="280.83" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (13,270,186 samples, 0.01%)</title><rect x="362.4" y="469" width="0.1" height="15.0" fill="rgb(206,78,50)" rx="2" ry="2" />
+<text  x="365.38" y="479.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (11,776,242 samples, 0.01%)</title><rect x="400.4" y="357" width="0.2" height="15.0" fill="rgb(229,148,45)" rx="2" ry="2" />
+<text  x="403.44" y="367.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (32,803,824 samples, 0.03%)</title><rect x="365.6" y="453" width="0.3" height="15.0" fill="rgb(230,226,16)" rx="2" ry="2" />
+<text  x="368.55" y="463.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (68,045,464 samples, 0.06%)</title><rect x="1141.2" y="661" width="0.7" height="15.0" fill="rgb(250,195,23)" rx="2" ry="2" />
+<text  x="1144.24" y="671.5" ></text>
+</g>
+<g >
+<title>select_task_rq_fair (12,707,311 samples, 0.01%)</title><rect x="548.4" y="549" width="0.1" height="15.0" fill="rgb(209,139,52)" rx="2" ry="2" />
+<text  x="551.40" y="559.5" ></text>
+</g>
+<g >
+<title>tick_irq_enter (850,455,176 samples, 0.70%)</title><rect x="919.9" y="645" width="8.3" height="15.0" fill="rgb(240,104,13)" rx="2" ry="2" />
+<text  x="922.88" y="655.5" ></text>
+</g>
+<g >
+<title>__alloc_pages (10,915,506 samples, 0.01%)</title><rect x="43.1" y="677" width="0.1" height="15.0" fill="rgb(220,3,3)" rx="2" ry="2" />
+<text  x="46.14" y="687.5" ></text>
+</g>
+<g >
+<title>__free_one_page (22,471,517 samples, 0.02%)</title><rect x="761.2" y="485" width="0.2" height="15.0" fill="rgb(252,139,38)" rx="2" ry="2" />
+<text  x="764.15" y="495.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (26,225,594 samples, 0.02%)</title><rect x="911.2" y="613" width="0.3" height="15.0" fill="rgb(225,14,50)" rx="2" ry="2" />
+<text  x="914.20" y="623.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (24,600,348 samples, 0.02%)</title><rect x="882.2" y="277" width="0.2" height="15.0" fill="rgb(230,138,46)" rx="2" ry="2" />
+<text  x="885.20" y="287.5" ></text>
+</g>
+<g >
+<title>fpregs_restore_userregs (21,826,279 samples, 0.02%)</title><rect x="383.2" y="485" width="0.2" height="15.0" fill="rgb(244,162,24)" rx="2" ry="2" />
+<text  x="386.19" y="495.5" ></text>
+</g>
+<g >
+<title>net_rx_action (33,521,163 samples, 0.03%)</title><rect x="396.1" y="421" width="0.3" height="15.0" fill="rgb(224,90,9)" rx="2" ry="2" />
+<text  x="399.10" y="431.5" ></text>
+</g>
+<g >
+<title>kthread (1,076,744,919 samples, 0.89%)</title><rect x="254.2" y="773" width="10.5" height="15.0" fill="rgb(249,228,54)" rx="2" ry="2" />
+<text  x="257.21" y="783.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (12,115,893 samples, 0.01%)</title><rect x="300.4" y="389" width="0.2" height="15.0" fill="rgb(219,144,8)" rx="2" ry="2" />
+<text  x="303.44" y="399.5" ></text>
+</g>
+<g >
+<title>__tcp_transmit_skb (569,584,367 samples, 0.47%)</title><rect x="387.3" y="533" width="5.5" height="15.0" fill="rgb(230,80,16)" rx="2" ry="2" />
+<text  x="390.30" y="543.5" ></text>
+</g>
+<g >
+<title>node_page_state (12,256,074 samples, 0.01%)</title><rect x="440.6" y="469" width="0.2" height="15.0" fill="rgb(230,150,51)" rx="2" ry="2" />
+<text  x="443.63" y="479.5" ></text>
+</g>
+<g >
+<title>ext4_fill_raw_inode (18,248,657 samples, 0.02%)</title><rect x="398.7" y="421" width="0.2" height="15.0" fill="rgb(250,96,31)" rx="2" ry="2" />
+<text  x="401.70" y="431.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (288,064,097 samples, 0.24%)</title><rect x="144.8" y="677" width="2.8" height="15.0" fill="rgb(240,205,25)" rx="2" ry="2" />
+<text  x="147.77" y="687.5" ></text>
+</g>
+<g >
+<title>__slab_free (19,412,502 samples, 0.02%)</title><rect x="810.2" y="549" width="0.2" height="15.0" fill="rgb(224,12,38)" rx="2" ry="2" />
+<text  x="813.17" y="559.5" ></text>
+</g>
+<g >
+<title>menu_reflect (255,322,267 samples, 0.21%)</title><rect x="1143.5" y="725" width="2.5" height="15.0" fill="rgb(225,200,30)" rx="2" ry="2" />
+<text  x="1146.49" y="735.5" ></text>
+</g>
+<g >
+<title>raw_spin_rq_lock_nested (18,812,091 samples, 0.02%)</title><rect x="1175.9" y="693" width="0.2" height="15.0" fill="rgb(248,98,11)" rx="2" ry="2" />
+<text  x="1178.88" y="703.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (41,562,077 samples, 0.03%)</title><rect x="375.6" y="421" width="0.4" height="15.0" fill="rgb(224,13,11)" rx="2" ry="2" />
+<text  x="378.57" y="431.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (38,273,658 samples, 0.03%)</title><rect x="293.8" y="213" width="0.3" height="15.0" fill="rgb(234,145,5)" rx="2" ry="2" />
+<text  x="296.77" y="223.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,114,934,093 samples, 0.92%)</title><rect x="137.6" y="709" width="10.8" height="15.0" fill="rgb(251,152,17)" rx="2" ry="2" />
+<text  x="140.56" y="719.5" ></text>
+</g>
+<g >
+<title>__remove_hrtimer (17,035,360 samples, 0.01%)</title><rect x="1186.4" y="693" width="0.1" height="15.0" fill="rgb(243,25,4)" rx="2" ry="2" />
+<text  x="1189.38" y="703.5" ></text>
+</g>
+<g >
+<title>rcu_sched_clock_irq (20,231,803 samples, 0.02%)</title><rect x="913.5" y="565" width="0.2" height="15.0" fill="rgb(237,63,17)" rx="2" ry="2" />
+<text  x="916.49" y="575.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (558,752,146 samples, 0.46%)</title><rect x="880.8" y="357" width="5.4" height="15.0" fill="rgb(212,27,35)" rx="2" ry="2" />
+<text  x="883.79" y="367.5" ></text>
+</g>
+<g >
+<title>iommu_dma_alloc_iova (26,626,792 samples, 0.02%)</title><rect x="309.9" y="181" width="0.2" height="15.0" fill="rgb(214,20,34)" rx="2" ry="2" />
+<text  x="312.85" y="191.5" ></text>
+</g>
+<g >
+<title>do_sys_poll (18,258,575 samples, 0.02%)</title><rect x="292.5" y="453" width="0.1" height="15.0" fill="rgb(254,96,45)" rx="2" ry="2" />
+<text  x="295.46" y="463.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (37,672,342 samples, 0.03%)</title><rect x="68.8" y="645" width="0.3" height="15.0" fill="rgb(219,224,52)" rx="2" ry="2" />
+<text  x="71.77" y="655.5" ></text>
+</g>
+<g >
+<title>ip_rcv (1,624,517,546 samples, 1.34%)</title><rect x="887.6" y="453" width="15.8" height="15.0" fill="rgb(213,200,19)" rx="2" ry="2" />
+<text  x="890.57" y="463.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (84,459,361 samples, 0.07%)</title><rect x="348.8" y="533" width="0.8" height="15.0" fill="rgb(245,179,5)" rx="2" ry="2" />
+<text  x="351.75" y="543.5" ></text>
+</g>
+<g >
+<title>__list_del_entry_valid (35,701,475 samples, 0.03%)</title><rect x="794.6" y="613" width="0.3" height="15.0" fill="rgb(238,158,33)" rx="2" ry="2" />
+<text  x="797.58" y="623.5" ></text>
+</g>
+<g >
+<title>do_softirq.part.0 (35,357,565 samples, 0.03%)</title><rect x="396.1" y="453" width="0.3" height="15.0" fill="rgb(241,180,53)" rx="2" ry="2" />
+<text  x="399.09" y="463.5" ></text>
+</g>
+<g >
+<title>tick_nohz_next_event (571,839,887 samples, 0.47%)</title><rect x="1160.4" y="693" width="5.6" height="15.0" fill="rgb(237,219,12)" rx="2" ry="2" />
+<text  x="1163.40" y="703.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (46,610,214 samples, 0.04%)</title><rect x="848.4" y="645" width="0.5" height="15.0" fill="rgb(211,106,25)" rx="2" ry="2" />
+<text  x="851.42" y="655.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (12,522,971 samples, 0.01%)</title><rect x="824.1" y="629" width="0.1" height="15.0" fill="rgb(234,93,17)" rx="2" ry="2" />
+<text  x="827.10" y="639.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (45,476,704 samples, 0.04%)</title><rect x="106.7" y="677" width="0.5" height="15.0" fill="rgb(240,222,45)" rx="2" ry="2" />
+<text  x="109.71" y="687.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (105,264,028 samples, 0.09%)</title><rect x="330.8" y="437" width="1.0" height="15.0" fill="rgb(213,192,24)" rx="2" ry="2" />
+<text  x="333.81" y="447.5" ></text>
+</g>
+<g >
+<title>__skb_datagram_iter (63,553,016 samples, 0.05%)</title><rect x="402.7" y="341" width="0.6" height="15.0" fill="rgb(206,195,49)" rx="2" ry="2" />
+<text  x="405.73" y="351.5" ></text>
+</g>
+<g >
+<title>fault_in_readable (62,309,370 samples, 0.05%)</title><rect x="442.4" y="565" width="0.6" height="15.0" fill="rgb(246,81,32)" rx="2" ry="2" />
+<text  x="445.43" y="575.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (13,618,003 samples, 0.01%)</title><rect x="1136.6" y="629" width="0.2" height="15.0" fill="rgb(237,93,8)" rx="2" ry="2" />
+<text  x="1139.65" y="639.5" ></text>
+</g>
+<g >
+<title>__refill_stock (20,295,640 samples, 0.02%)</title><rect x="302.8" y="373" width="0.2" height="15.0" fill="rgb(214,58,17)" rx="2" ry="2" />
+<text  x="305.76" y="383.5" ></text>
+</g>
+<g >
+<title>charge_memcg (92,504,842 samples, 0.08%)</title><rect x="434.9" y="485" width="0.9" height="15.0" fill="rgb(248,56,17)" rx="2" ry="2" />
+<text  x="437.92" y="495.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (14,831,772 samples, 0.01%)</title><rect x="1037.7" y="629" width="0.1" height="15.0" fill="rgb(218,194,13)" rx="2" ry="2" />
+<text  x="1040.68" y="639.5" ></text>
+</g>
+<g >
+<title>acpi_idle_do_entry (11,034,618,554 samples, 9.10%)</title><rect x="635.4" y="677" width="107.5" height="15.0" fill="rgb(247,213,17)" rx="2" ry="2" />
+<text  x="638.44" y="687.5" >acpi_idle_do_..</text>
+</g>
+<g >
+<title>filemap_get_folios (15,084,871 samples, 0.01%)</title><rect x="202.8" y="581" width="0.1" height="15.0" fill="rgb(244,82,16)" rx="2" ry="2" />
+<text  x="205.77" y="591.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (34,841,236 samples, 0.03%)</title><rect x="417.4" y="597" width="0.4" height="15.0" fill="rgb(236,34,38)" rx="2" ry="2" />
+<text  x="420.42" y="607.5" ></text>
+</g>
+<g >
+<title>folio_batch_move_lru (106,799,268 samples, 0.09%)</title><rect x="438.0" y="501" width="1.0" height="15.0" fill="rgb(216,222,32)" rx="2" ry="2" />
+<text  x="440.95" y="511.5" ></text>
+</g>
+<g >
+<title>pollwake (455,562,204 samples, 0.38%)</title><rect x="881.6" y="309" width="4.4" height="15.0" fill="rgb(211,227,53)" rx="2" ry="2" />
+<text  x="884.61" y="319.5" ></text>
+</g>
+<g >
+<title>__mem_cgroup_charge (126,534,211 samples, 0.10%)</title><rect x="434.8" y="501" width="1.3" height="15.0" fill="rgb(232,84,21)" rx="2" ry="2" />
+<text  x="437.82" y="511.5" ></text>
+</g>
+<g >
+<title>start_thread (11,748,366,021 samples, 9.69%)</title><rect x="282.5" y="773" width="114.4" height="15.0" fill="rgb(243,114,18)" rx="2" ry="2" />
+<text  x="285.49" y="783.5" >start_thread</text>
+</g>
+<g >
+<title>_aesni_enc4 (20,256,707 samples, 0.02%)</title><rect x="209.0" y="629" width="0.2" height="15.0" fill="rgb(207,190,34)" rx="2" ry="2" />
+<text  x="212.04" y="639.5" ></text>
+</g>
+<g >
+<title>fdb_find_rcu (18,253,349 samples, 0.02%)</title><rect x="312.0" y="309" width="0.2" height="15.0" fill="rgb(236,80,19)" rx="2" ry="2" />
+<text  x="315.05" y="319.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (21,164,903 samples, 0.02%)</title><rect x="1180.4" y="709" width="0.2" height="15.0" fill="rgb(216,158,16)" rx="2" ry="2" />
+<text  x="1183.38" y="719.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (784,819,836 samples, 0.65%)</title><rect x="206.3" y="725" width="7.7" height="15.0" fill="rgb(213,27,12)" rx="2" ry="2" />
+<text  x="209.33" y="735.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (50,510,446 samples, 0.04%)</title><rect x="856.8" y="677" width="0.5" height="15.0" fill="rgb(238,169,44)" rx="2" ry="2" />
+<text  x="859.79" y="687.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (109,224,341 samples, 0.09%)</title><rect x="548.0" y="677" width="1.0" height="15.0" fill="rgb(251,116,35)" rx="2" ry="2" />
+<text  x="550.96" y="687.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,305,459,047 samples, 1.08%)</title><rect x="224.2" y="757" width="12.8" height="15.0" fill="rgb(216,59,27)" rx="2" ry="2" />
+<text  x="227.25" y="767.5" ></text>
+</g>
+<g >
+<title>native_read_msr (10,547,603 samples, 0.01%)</title><rect x="915.2" y="501" width="0.1" height="15.0" fill="rgb(251,89,36)" rx="2" ry="2" />
+<text  x="918.18" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (239,504,212 samples, 0.20%)</title><rect x="16.3" y="677" width="2.3" height="15.0" fill="rgb(207,151,49)" rx="2" ry="2" />
+<text  x="19.32" y="687.5" ></text>
+</g>
+<g >
+<title>mpage_submit_page (30,203,097 samples, 0.02%)</title><rect x="106.8" y="581" width="0.3" height="15.0" fill="rgb(246,66,38)" rx="2" ry="2" />
+<text  x="109.79" y="591.5" ></text>
+</g>
+<g >
+<title>__mod_memcg_lruvec_state (18,676,134 samples, 0.02%)</title><rect x="443.8" y="501" width="0.2" height="15.0" fill="rgb(235,29,43)" rx="2" ry="2" />
+<text  x="446.80" y="511.5" ></text>
+</g>
+<g >
+<title>__folio_start_writeback (16,196,973 samples, 0.01%)</title><rect x="106.8" y="549" width="0.2" height="15.0" fill="rgb(224,202,35)" rx="2" ry="2" />
+<text  x="109.81" y="559.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (12,699,796 samples, 0.01%)</title><rect x="931.7" y="645" width="0.1" height="15.0" fill="rgb(230,21,29)" rx="2" ry="2" />
+<text  x="934.68" y="655.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg (2,479,817,820 samples, 2.05%)</title><rect x="299.2" y="437" width="24.1" height="15.0" fill="rgb(211,112,49)" rx="2" ry="2" />
+<text  x="302.18" y="447.5" >t..</text>
+</g>
+<g >
+<title>pick_next_task_idle (28,379,273 samples, 0.02%)</title><rect x="371.6" y="437" width="0.2" height="15.0" fill="rgb(205,46,16)" rx="2" ry="2" />
+<text  x="374.57" y="447.5" ></text>
+</g>
+<g >
+<title>net_rx_action (335,252,012 samples, 0.28%)</title><rect x="388.4" y="405" width="3.2" height="15.0" fill="rgb(224,149,0)" rx="2" ry="2" />
+<text  x="391.36" y="415.5" ></text>
+</g>
+<g >
+<title>ct_nmi_exit (17,988,990 samples, 0.01%)</title><rect x="1028.4" y="661" width="0.1" height="15.0" fill="rgb(218,159,40)" rx="2" ry="2" />
+<text  x="1031.36" y="671.5" ></text>
+</g>
+<g >
+<title>__x86_indirect_thunk_rax (68,294,321 samples, 0.06%)</title><rect x="555.9" y="789" width="0.7" height="15.0" fill="rgb(215,202,17)" rx="2" ry="2" />
+<text  x="558.91" y="799.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (18,766,971 samples, 0.02%)</title><rect x="224.9" y="645" width="0.2" height="15.0" fill="rgb(231,195,47)" rx="2" ry="2" />
+<text  x="227.87" y="655.5" ></text>
+</g>
+<g >
+<title>xts_crypt (107,607,980 samples, 0.09%)</title><rect x="217.1" y="661" width="1.0" height="15.0" fill="rgb(221,142,12)" rx="2" ry="2" />
+<text  x="220.06" y="671.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (52,256,984 samples, 0.04%)</title><rect x="774.4" y="597" width="0.5" height="15.0" fill="rgb(218,149,15)" rx="2" ry="2" />
+<text  x="777.42" y="607.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (73,376,723 samples, 0.06%)</title><rect x="390.6" y="293" width="0.8" height="15.0" fill="rgb(211,163,29)" rx="2" ry="2" />
+<text  x="393.64" y="303.5" ></text>
+</g>
+<g >
+<title>tick_nohz_idle_got_tick (96,485,312 samples, 0.08%)</title><rect x="1145.0" y="709" width="1.0" height="15.0" fill="rgb(230,64,47)" rx="2" ry="2" />
+<text  x="1148.04" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (351,604,094 samples, 0.29%)</title><rect x="113.2" y="629" width="3.4" height="15.0" fill="rgb(209,182,33)" rx="2" ry="2" />
+<text  x="116.19" y="639.5" ></text>
+</g>
+<g >
+<title>preempt_count_add (36,101,527 samples, 0.03%)</title><rect x="822.1" y="645" width="0.4" height="15.0" fill="rgb(228,52,49)" rx="2" ry="2" />
+<text  x="825.11" y="655.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (76,527,867 samples, 0.06%)</title><rect x="281.4" y="757" width="0.7" height="15.0" fill="rgb(234,225,49)" rx="2" ry="2" />
+<text  x="284.39" y="767.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter_atomic (16,379,362 samples, 0.01%)</title><rect x="397.4" y="501" width="0.1" height="15.0" fill="rgb(241,200,34)" rx="2" ry="2" />
+<text  x="400.39" y="511.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (412,680,493 samples, 0.34%)</title><rect x="117.0" y="677" width="4.0" height="15.0" fill="rgb(215,56,7)" rx="2" ry="2" />
+<text  x="119.99" y="687.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (58,410,115 samples, 0.05%)</title><rect x="339.7" y="533" width="0.5" height="15.0" fill="rgb(214,100,49)" rx="2" ry="2" />
+<text  x="342.66" y="543.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,118,012,769 samples, 0.92%)</title><rect x="75.2" y="789" width="10.9" height="15.0" fill="rgb(205,32,51)" rx="2" ry="2" />
+<text  x="78.25" y="799.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (27,236,396 samples, 0.02%)</title><rect x="203.6" y="517" width="0.3" height="15.0" fill="rgb(234,2,9)" rx="2" ry="2" />
+<text  x="206.64" y="527.5" ></text>
+</g>
+<g >
+<title>qio_channel_read_all (14,150,923 samples, 0.01%)</title><rect x="401.3" y="533" width="0.2" height="15.0" fill="rgb(206,183,20)" rx="2" ry="2" />
+<text  x="404.33" y="543.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (323,443,684 samples, 0.27%)</title><rect x="434.5" y="517" width="3.2" height="15.0" fill="rgb(232,103,18)" rx="2" ry="2" />
+<text  x="437.53" y="527.5" ></text>
+</g>
+<g >
+<title>sock_def_readable (38,129,874 samples, 0.03%)</title><rect x="389.9" y="245" width="0.3" height="15.0" fill="rgb(224,74,36)" rx="2" ry="2" />
+<text  x="392.86" y="255.5" ></text>
+</g>
+<g >
+<title>sg_init_table (12,736,607 samples, 0.01%)</title><rect x="85.9" y="693" width="0.1" height="15.0" fill="rgb(217,192,29)" rx="2" ry="2" />
+<text  x="88.92" y="703.5" ></text>
+</g>
+<g >
+<title>ip6_protocol_deliver_rcu (88,767,347 samples, 0.07%)</title><rect x="409.1" y="101" width="0.9" height="15.0" fill="rgb(229,203,2)" rx="2" ry="2" />
+<text  x="412.15" y="111.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (18,090,585 samples, 0.01%)</title><rect x="817.3" y="613" width="0.1" height="15.0" fill="rgb(220,148,26)" rx="2" ry="2" />
+<text  x="820.25" y="623.5" ></text>
+</g>
+<g >
+<title>__poll (32,832,113 samples, 0.03%)</title><rect x="281.8" y="741" width="0.3" height="15.0" fill="rgb(210,139,3)" rx="2" ry="2" />
+<text  x="284.80" y="751.5" ></text>
+</g>
+<g >
+<title>__libc_sigaction (663,448,587 samples, 0.55%)</title><rect x="340.8" y="581" width="6.5" height="15.0" fill="rgb(206,124,54)" rx="2" ry="2" />
+<text  x="343.82" y="591.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,154,277,250 samples, 0.95%)</title><rect x="184.8" y="789" width="11.3" height="15.0" fill="rgb(241,65,14)" rx="2" ry="2" />
+<text  x="187.83" y="799.5" ></text>
+</g>
+<g >
+<title>__iommu_dma_map (20,693,215 samples, 0.02%)</title><rect x="293.9" y="149" width="0.2" height="15.0" fill="rgb(215,109,50)" rx="2" ry="2" />
+<text  x="296.91" y="159.5" ></text>
+</g>
+<g >
+<title>iommu_get_dma_domain (10,758,152 samples, 0.01%)</title><rect x="310.8" y="197" width="0.1" height="15.0" fill="rgb(206,130,26)" rx="2" ry="2" />
+<text  x="313.82" y="207.5" ></text>
+</g>
+<g >
+<title>tcp_data_queue (29,183,715 samples, 0.02%)</title><rect x="808.7" y="373" width="0.3" height="15.0" fill="rgb(213,22,40)" rx="2" ry="2" />
+<text  x="811.73" y="383.5" ></text>
+</g>
+<g >
+<title>ktime_get (46,219,975 samples, 0.04%)</title><rect x="1178.4" y="709" width="0.4" height="15.0" fill="rgb(215,144,35)" rx="2" ry="2" />
+<text  x="1181.37" y="719.5" ></text>
+</g>
+<g >
+<title>do_sigaction (140,698,630 samples, 0.12%)</title><rect x="345.0" y="517" width="1.3" height="15.0" fill="rgb(235,148,52)" rx="2" ry="2" />
+<text  x="347.96" y="527.5" ></text>
+</g>
+<g >
+<title>__sys_recvmsg (40,236,407 samples, 0.03%)</title><rect x="400.3" y="453" width="0.4" height="15.0" fill="rgb(224,158,25)" rx="2" ry="2" />
+<text  x="403.31" y="463.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,015,198,010 samples, 0.84%)</title><rect x="43.5" y="693" width="9.9" height="15.0" fill="rgb(235,12,37)" rx="2" ry="2" />
+<text  x="46.48" y="703.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (56,223,185 samples, 0.05%)</title><rect x="201.8" y="693" width="0.6" height="15.0" fill="rgb(222,10,51)" rx="2" ry="2" />
+<text  x="204.84" y="703.5" ></text>
+</g>
+<g >
+<title>curl_msnprintf (18,667,212 samples, 0.02%)</title><rect x="334.1" y="533" width="0.1" height="15.0" fill="rgb(238,32,28)" rx="2" ry="2" />
+<text  x="337.06" y="543.5" ></text>
+</g>
+<g >
+<title>kworker/u64:17- (972,199,095 samples, 0.80%)</title><rect x="107.2" y="805" width="9.4" height="15.0" fill="rgb(248,86,48)" rx="2" ry="2" />
+<text  x="110.15" y="815.5" ></text>
+</g>
+<g >
+<title>dev_hard_start_xmit (11,072,820 samples, 0.01%)</title><rect x="808.4" y="325" width="0.1" height="15.0" fill="rgb(247,84,31)" rx="2" ry="2" />
+<text  x="811.41" y="335.5" ></text>
+</g>
+<g >
+<title>tcp_sendmsg_locked (1,002,600,971 samples, 0.83%)</title><rect x="386.8" y="581" width="9.8" height="15.0" fill="rgb(224,185,53)" rx="2" ry="2" />
+<text  x="389.84" y="591.5" ></text>
+</g>
+<g >
+<title>curl_strnequal (17,124,979 samples, 0.01%)</title><rect x="348.0" y="581" width="0.2" height="15.0" fill="rgb(227,152,15)" rx="2" ry="2" />
+<text  x="351.04" y="591.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,094,550,279 samples, 0.90%)</title><rect x="126.8" y="709" width="10.6" height="15.0" fill="rgb(246,17,14)" rx="2" ry="2" />
+<text  x="129.77" y="719.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (59,830,936 samples, 0.05%)</title><rect x="274.9" y="645" width="0.6" height="15.0" fill="rgb(232,30,32)" rx="2" ry="2" />
+<text  x="277.94" y="655.5" ></text>
+</g>
+<g >
+<title>__folio_mark_dirty (158,123,217 samples, 0.13%)</title><rect x="443.4" y="533" width="1.5" height="15.0" fill="rgb(250,188,4)" rx="2" ry="2" />
+<text  x="446.38" y="543.5" ></text>
+</g>
+<g >
+<title>create_empty_buffers (15,692,199 samples, 0.01%)</title><rect x="397.6" y="469" width="0.1" height="15.0" fill="rgb(219,128,29)" rx="2" ry="2" />
+<text  x="400.57" y="479.5" ></text>
+</g>
+<g >
+<title>sched_ttwu_pending (3,678,741,415 samples, 3.03%)</title><rect x="1107.2" y="709" width="35.8" height="15.0" fill="rgb(245,26,25)" rx="2" ry="2" />
+<text  x="1110.19" y="719.5" >sch..</text>
+</g>
+<g >
+<title>worker_thread (1,060,238,503 samples, 0.87%)</title><rect x="148.5" y="757" width="10.3" height="15.0" fill="rgb(252,212,13)" rx="2" ry="2" />
+<text  x="151.52" y="767.5" ></text>
+</g>
+<g >
+<title>alloc_page_buffers (199,514,537 samples, 0.16%)</title><rect x="428.7" y="533" width="2.0" height="15.0" fill="rgb(219,170,16)" rx="2" ry="2" />
+<text  x="431.73" y="543.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (18,659,550 samples, 0.02%)</title><rect x="1052.3" y="661" width="0.2" height="15.0" fill="rgb(240,102,24)" rx="2" ry="2" />
+<text  x="1055.32" y="671.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (221,382,695 samples, 0.18%)</title><rect x="320.3" y="405" width="2.2" height="15.0" fill="rgb(211,192,18)" rx="2" ry="2" />
+<text  x="323.34" y="415.5" ></text>
+</g>
+<g >
+<title>tcp_v4_rcv (91,422,590 samples, 0.08%)</title><rect x="808.2" y="421" width="0.9" height="15.0" fill="rgb(211,215,50)" rx="2" ry="2" />
+<text  x="811.23" y="431.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (144,535,785 samples, 0.12%)</title><rect x="313.3" y="325" width="1.4" height="15.0" fill="rgb(218,160,9)" rx="2" ry="2" />
+<text  x="316.29" y="335.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_all (92,301,377 samples, 0.08%)</title><rect x="402.5" y="549" width="0.9" height="15.0" fill="rgb(247,160,2)" rx="2" ry="2" />
+<text  x="405.51" y="559.5" ></text>
+</g>
+<g >
+<title>rtl_quirk_packet_padto (16,172,151 samples, 0.01%)</title><rect x="311.3" y="197" width="0.1" height="15.0" fill="rgb(223,115,37)" rx="2" ry="2" />
+<text  x="314.28" y="207.5" ></text>
+</g>
+<g >
+<title>xts_crypt (72,451,656 samples, 0.06%)</title><rect x="266.9" y="661" width="0.7" height="15.0" fill="rgb(207,7,26)" rx="2" ry="2" />
+<text  x="269.93" y="671.5" ></text>
+</g>
+<g >
+<title>hrtimer_get_next_event (86,144,553 samples, 0.07%)</title><rect x="1163.5" y="661" width="0.8" height="15.0" fill="rgb(245,69,29)" rx="2" ry="2" />
+<text  x="1166.45" y="671.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (903,220,189 samples, 0.75%)</title><rect x="272.0" y="789" width="8.8" height="15.0" fill="rgb(235,46,23)" rx="2" ry="2" />
+<text  x="275.05" y="799.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,024,076,844 samples, 0.84%)</title><rect x="196.1" y="741" width="10.0" height="15.0" fill="rgb(206,199,37)" rx="2" ry="2" />
+<text  x="199.08" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (163,530,058 samples, 0.13%)</title><rect x="182.7" y="677" width="1.6" height="15.0" fill="rgb(238,12,6)" rx="2" ry="2" />
+<text  x="185.74" y="687.5" ></text>
+</g>
+<g >
+<title>kthread (611,746,188 samples, 0.50%)</title><rect x="178.9" y="773" width="5.9" height="15.0" fill="rgb(221,58,36)" rx="2" ry="2" />
+<text  x="181.87" y="783.5" ></text>
+</g>
+<g >
+<title>do_user_addr_fault (19,580,068 samples, 0.02%)</title><rect x="543.0" y="629" width="0.2" height="15.0" fill="rgb(217,218,18)" rx="2" ry="2" />
+<text  x="546.00" y="639.5" ></text>
+</g>
+<g >
+<title>writeback_sb_inodes (18,361,165 samples, 0.02%)</title><rect x="22.4" y="677" width="0.2" height="15.0" fill="rgb(243,58,6)" rx="2" ry="2" />
+<text  x="25.38" y="687.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (16,953,207 samples, 0.01%)</title><rect x="1143.3" y="709" width="0.2" height="15.0" fill="rgb(214,228,37)" rx="2" ry="2" />
+<text  x="1146.32" y="719.5" ></text>
+</g>
+<g >
+<title>skb_release_head_state (66,943,217 samples, 0.06%)</title><rect x="810.5" y="565" width="0.6" height="15.0" fill="rgb(219,11,18)" rx="2" ry="2" />
+<text  x="813.45" y="575.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (15,757,365 samples, 0.01%)</title><rect x="108.1" y="645" width="0.2" height="15.0" fill="rgb(213,150,50)" rx="2" ry="2" />
+<text  x="111.13" y="655.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (475,340,567 samples, 0.39%)</title><rect x="108.5" y="725" width="4.7" height="15.0" fill="rgb(230,84,46)" rx="2" ry="2" />
+<text  x="111.55" y="735.5" ></text>
+</g>
+<g >
+<title>__GI___pthread_disable_asynccancel (18,411,126 samples, 0.02%)</title><rect x="355.1" y="565" width="0.2" height="15.0" fill="rgb(246,228,8)" rx="2" ry="2" />
+<text  x="358.11" y="575.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (4,465,679,193 samples, 3.68%)</title><rect x="291.1" y="549" width="43.4" height="15.0" fill="rgb(238,172,52)" rx="2" ry="2" />
+<text  x="294.05" y="559.5" >[lib..</text>
+</g>
+<g >
+<title>__poll (26,107,546 samples, 0.02%)</title><rect x="292.4" y="517" width="0.3" height="15.0" fill="rgb(232,58,20)" rx="2" ry="2" />
+<text  x="295.41" y="527.5" ></text>
+</g>
+<g >
+<title>__x64_sys_sendto (401,331,216 samples, 0.33%)</title><rect x="292.7" y="469" width="3.9" height="15.0" fill="rgb(248,173,54)" rx="2" ry="2" />
+<text  x="295.74" y="479.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (190,145,248 samples, 0.16%)</title><rect x="269.4" y="677" width="1.9" height="15.0" fill="rgb(215,165,53)" rx="2" ry="2" />
+<text  x="272.43" y="687.5" ></text>
+</g>
+<g >
+<title>validate_xmit_skb (50,088,167 samples, 0.04%)</title><rect x="311.0" y="245" width="0.5" height="15.0" fill="rgb(249,188,0)" rx="2" ry="2" />
+<text  x="313.99" y="255.5" ></text>
+</g>
+<g >
+<title>__alloc_skb (12,420,722 samples, 0.01%)</title><rect x="296.4" y="373" width="0.1" height="15.0" fill="rgb(209,59,5)" rx="2" ry="2" />
+<text  x="299.42" y="383.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (411,436,041 samples, 0.34%)</title><rect x="108.7" y="693" width="4.0" height="15.0" fill="rgb(232,4,20)" rx="2" ry="2" />
+<text  x="111.69" y="703.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (51,233,652 samples, 0.04%)</title><rect x="410.2" y="69" width="0.5" height="15.0" fill="rgb(246,56,27)" rx="2" ry="2" />
+<text  x="413.24" y="79.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (29,648,824 samples, 0.02%)</title><rect x="180.7" y="645" width="0.3" height="15.0" fill="rgb(220,4,11)" rx="2" ry="2" />
+<text  x="183.67" y="655.5" ></text>
+</g>
+<g >
+<title>read_tsc (16,767,493 samples, 0.01%)</title><rect x="1185.0" y="645" width="0.2" height="15.0" fill="rgb(225,133,50)" rx="2" ry="2" />
+<text  x="1187.99" y="655.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,100,962,040 samples, 0.91%)</title><rect x="158.8" y="789" width="10.8" height="15.0" fill="rgb(218,124,43)" rx="2" ry="2" />
+<text  x="161.84" y="799.5" ></text>
+</g>
+<g >
+<title>hrtimer_update_next_event (14,312,456 samples, 0.01%)</title><rect x="1187.2" y="693" width="0.1" height="15.0" fill="rgb(251,133,39)" rx="2" ry="2" />
+<text  x="1190.19" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (435,517,028 samples, 0.36%)</title><rect x="86.4" y="677" width="4.3" height="15.0" fill="rgb(227,157,46)" rx="2" ry="2" />
+<text  x="89.44" y="687.5" ></text>
+</g>
+<g >
+<title>inflate_table (204,375,076 samples, 0.17%)</title><rect x="544.1" y="677" width="2.0" height="15.0" fill="rgb(229,177,41)" rx="2" ry="2" />
+<text  x="547.15" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (163,563,088 samples, 0.13%)</title><rect x="43.5" y="661" width="1.6" height="15.0" fill="rgb(220,100,35)" rx="2" ry="2" />
+<text  x="46.49" y="671.5" ></text>
+</g>
+<g >
+<title>memcg_check_events (16,011,623 samples, 0.01%)</title><rect x="435.4" y="469" width="0.1" height="15.0" fill="rgb(208,173,22)" rx="2" ry="2" />
+<text  x="438.38" y="479.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,035,371,795 samples, 0.85%)</title><rect x="116.6" y="741" width="10.1" height="15.0" fill="rgb(250,168,14)" rx="2" ry="2" />
+<text  x="119.64" y="751.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (196,215,034 samples, 0.16%)</title><rect x="400.2" y="549" width="1.9" height="15.0" fill="rgb(227,163,18)" rx="2" ry="2" />
+<text  x="403.20" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (122,572,853 samples, 0.10%)</title><rect x="272.3" y="661" width="1.2" height="15.0" fill="rgb(215,174,30)" rx="2" ry="2" />
+<text  x="275.33" y="671.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock (10,800,655 samples, 0.01%)</title><rect x="428.6" y="533" width="0.1" height="15.0" fill="rgb(206,119,18)" rx="2" ry="2" />
+<text  x="431.63" y="543.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (16,001,659 samples, 0.01%)</title><rect x="107.5" y="677" width="0.1" height="15.0" fill="rgb(211,12,20)" rx="2" ry="2" />
+<text  x="110.48" y="687.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (15,995,110 samples, 0.01%)</title><rect x="773.9" y="629" width="0.2" height="15.0" fill="rgb(243,220,22)" rx="2" ry="2" />
+<text  x="776.94" y="639.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (954,260,688 samples, 0.79%)</title><rect x="22.8" y="693" width="9.3" height="15.0" fill="rgb(246,89,49)" rx="2" ry="2" />
+<text  x="25.77" y="703.5" ></text>
+</g>
+<g >
+<title>ip_local_out (84,375,066 samples, 0.07%)</title><rect x="876.5" y="357" width="0.8" height="15.0" fill="rgb(254,160,53)" rx="2" ry="2" />
+<text  x="879.48" y="367.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (26,008,991 samples, 0.02%)</title><rect x="402.1" y="597" width="0.3" height="15.0" fill="rgb(242,143,18)" rx="2" ry="2" />
+<text  x="405.14" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (203,800,280 samples, 0.17%)</title><rect x="275.9" y="677" width="2.0" height="15.0" fill="rgb(214,155,22)" rx="2" ry="2" />
+<text  x="278.95" y="687.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,060,091,263 samples, 0.87%)</title><rect x="148.5" y="741" width="10.3" height="15.0" fill="rgb(222,108,5)" rx="2" ry="2" />
+<text  x="151.52" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (152,113,084 samples, 0.13%)</title><rect x="254.6" y="661" width="1.5" height="15.0" fill="rgb(214,71,30)" rx="2" ry="2" />
+<text  x="257.58" y="671.5" ></text>
+</g>
+<g >
+<title>rtl8169_unmap_tx_skb (167,795,758 samples, 0.14%)</title><rect x="814.5" y="581" width="1.6" height="15.0" fill="rgb(218,86,0)" rx="2" ry="2" />
+<text  x="817.47" y="591.5" ></text>
+</g>
+<g >
+<title>read_tsc (503,148,597 samples, 0.42%)</title><rect x="922.7" y="613" width="4.9" height="15.0" fill="rgb(222,170,7)" rx="2" ry="2" />
+<text  x="925.66" y="623.5" ></text>
+</g>
+<g >
+<title>node_dirty_ok (33,029,649 samples, 0.03%)</title><rect x="440.4" y="485" width="0.4" height="15.0" fill="rgb(228,103,10)" rx="2" ry="2" />
+<text  x="443.43" y="495.5" ></text>
+</g>
+<g >
+<title>bdrv_co_preadv_part (202,234,826 samples, 0.17%)</title><rect x="400.2" y="613" width="1.9" height="15.0" fill="rgb(236,54,11)" rx="2" ry="2" />
+<text  x="403.18" y="623.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (754,447,704 samples, 0.62%)</title><rect x="305.4" y="373" width="7.3" height="15.0" fill="rgb(254,221,49)" rx="2" ry="2" />
+<text  x="308.39" y="383.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (38,606,199 samples, 0.03%)</title><rect x="808.7" y="389" width="0.3" height="15.0" fill="rgb(205,224,1)" rx="2" ry="2" />
+<text  x="811.67" y="399.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (16,216,499 samples, 0.01%)</title><rect x="375.4" y="405" width="0.2" height="15.0" fill="rgb(219,99,22)" rx="2" ry="2" />
+<text  x="378.41" y="415.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (611,746,188 samples, 0.50%)</title><rect x="178.9" y="725" width="5.9" height="15.0" fill="rgb(234,23,13)" rx="2" ry="2" />
+<text  x="181.87" y="735.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (18,460,225 samples, 0.02%)</title><rect x="198.3" y="629" width="0.2" height="15.0" fill="rgb(243,118,53)" rx="2" ry="2" />
+<text  x="201.34" y="639.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,025,597,374 samples, 0.85%)</title><rect x="97.2" y="757" width="10.0" height="15.0" fill="rgb(219,45,17)" rx="2" ry="2" />
+<text  x="100.17" y="767.5" ></text>
+</g>
+<g >
+<title>tick_sched_handle (56,886,017 samples, 0.05%)</title><rect x="543.5" y="565" width="0.6" height="15.0" fill="rgb(236,185,40)" rx="2" ry="2" />
+<text  x="546.50" y="575.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_one_core (28,923,033 samples, 0.02%)</title><rect x="396.1" y="373" width="0.3" height="15.0" fill="rgb(220,204,14)" rx="2" ry="2" />
+<text  x="399.12" y="383.5" ></text>
+</g>
+<g >
+<title>_copy_to_iter (62,415,213 samples, 0.05%)</title><rect x="402.7" y="325" width="0.6" height="15.0" fill="rgb(252,62,37)" rx="2" ry="2" />
+<text  x="405.73" y="335.5" ></text>
+</g>
+<g >
+<title>xas_descend (20,024,005 samples, 0.02%)</title><rect x="442.0" y="517" width="0.1" height="15.0" fill="rgb(222,123,32)" rx="2" ry="2" />
+<text  x="444.95" y="527.5" ></text>
+</g>
+<g >
+<title>tick_nohz_tick_stopped (77,718,744 samples, 0.06%)</title><rect x="1166.0" y="709" width="0.7" height="15.0" fill="rgb(235,181,45)" rx="2" ry="2" />
+<text  x="1168.96" y="719.5" ></text>
+</g>
+<g >
+<title>loopback_xmit (15,064,223 samples, 0.01%)</title><rect x="408.5" y="197" width="0.2" height="15.0" fill="rgb(213,226,22)" rx="2" ry="2" />
+<text  x="411.51" y="207.5" ></text>
+</g>
+<g >
+<title>tcp_v4_do_rcv (78,308,774 samples, 0.06%)</title><rect x="808.3" y="405" width="0.8" height="15.0" fill="rgb(233,31,13)" rx="2" ry="2" />
+<text  x="811.34" y="415.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (25,370,792 samples, 0.02%)</title><rect x="1145.7" y="693" width="0.2" height="15.0" fill="rgb(228,182,25)" rx="2" ry="2" />
+<text  x="1148.69" y="703.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output2 (38,157,347 samples, 0.03%)</title><rect x="396.1" y="485" width="0.3" height="15.0" fill="rgb(243,56,38)" rx="2" ry="2" />
+<text  x="399.06" y="495.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (318,820,992 samples, 0.26%)</title><rect x="1172.8" y="693" width="3.1" height="15.0" fill="rgb(239,209,19)" rx="2" ry="2" />
+<text  x="1175.77" y="703.5" ></text>
+</g>
+<g >
+<title>__x64_sys_pwrite64 (2,778,963,109 samples, 2.29%)</title><rect x="423.5" y="645" width="27.1" height="15.0" fill="rgb(216,130,47)" rx="2" ry="2" />
+<text  x="426.53" y="655.5" >_..</text>
+</g>
+<g >
+<title>vfs_write (10,524,838 samples, 0.01%)</title><rect x="554.2" y="709" width="0.1" height="15.0" fill="rgb(231,122,53)" rx="2" ry="2" />
+<text  x="557.23" y="719.5" ></text>
+</g>
+<g >
+<title>xts_crypt (99,925,012 samples, 0.08%)</title><rect x="36.3" y="661" width="0.9" height="15.0" fill="rgb(249,14,49)" rx="2" ry="2" />
+<text  x="39.28" y="671.5" ></text>
+</g>
+<g >
+<title>br_handle_frame (209,788,355 samples, 0.17%)</title><rect x="807.8" y="517" width="2.1" height="15.0" fill="rgb(249,171,42)" rx="2" ry="2" />
+<text  x="810.84" y="527.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (241,020,829 samples, 0.20%)</title><rect x="71.9" y="677" width="2.3" height="15.0" fill="rgb(249,194,43)" rx="2" ry="2" />
+<text  x="74.88" y="687.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (55,010,178 samples, 0.05%)</title><rect x="271.3" y="693" width="0.6" height="15.0" fill="rgb(233,161,26)" rx="2" ry="2" />
+<text  x="274.33" y="703.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,016,253,071 samples, 0.84%)</title><rect x="116.8" y="725" width="9.9" height="15.0" fill="rgb(222,168,24)" rx="2" ry="2" />
+<text  x="119.82" y="735.5" ></text>
+</g>
+<g >
+<title>blk_co_pread (333,194,800 samples, 0.27%)</title><rect x="400.2" y="709" width="3.2" height="15.0" fill="rgb(246,7,36)" rx="2" ry="2" />
+<text  x="403.16" y="719.5" ></text>
+</g>
+<g >
+<title>fault_in_iov_iter_readable (63,673,861 samples, 0.05%)</title><rect x="442.4" y="581" width="0.6" height="15.0" fill="rgb(217,206,25)" rx="2" ry="2" />
+<text  x="445.42" y="591.5" ></text>
+</g>
+<g >
+<title>__writeback_inodes_wb (45,476,704 samples, 0.04%)</title><rect x="106.7" y="693" width="0.5" height="15.0" fill="rgb(254,98,31)" rx="2" ry="2" />
+<text  x="109.71" y="703.5" ></text>
+</g>
+<g >
+<title>curl_multi_remove_handle (10,740,397 samples, 0.01%)</title><rect x="384.6" y="613" width="0.2" height="15.0" fill="rgb(212,201,28)" rx="2" ry="2" />
+<text  x="387.65" y="623.5" ></text>
+</g>
+<g >
+<title>br_handle_frame_finish (199,007,246 samples, 0.16%)</title><rect x="807.9" y="501" width="1.9" height="15.0" fill="rgb(249,95,31)" rx="2" ry="2" />
+<text  x="810.88" y="511.5" ></text>
+</g>
+<g >
+<title>__slab_alloc.constprop.0 (23,062,694 samples, 0.02%)</title><rect x="429.2" y="485" width="0.2" height="15.0" fill="rgb(210,167,9)" rx="2" ry="2" />
+<text  x="432.22" y="495.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (14,262,033 samples, 0.01%)</title><rect x="416.8" y="693" width="0.2" height="15.0" fill="rgb(208,109,36)" rx="2" ry="2" />
+<text  x="419.85" y="703.5" ></text>
+</g>
+<g >
+<title>ip6_finish_output2 (247,969,258 samples, 0.20%)</title><rect x="408.4" y="245" width="2.4" height="15.0" fill="rgb(236,94,21)" rx="2" ry="2" />
+<text  x="411.39" y="255.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (25,760,255 samples, 0.02%)</title><rect x="349.2" y="501" width="0.3" height="15.0" fill="rgb(221,105,45)" rx="2" ry="2" />
+<text  x="352.25" y="511.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,050,315,656 samples, 0.87%)</title><rect x="214.0" y="789" width="10.2" height="15.0" fill="rgb(243,180,37)" rx="2" ry="2" />
+<text  x="217.00" y="799.5" ></text>
+</g>
+<g >
+<title>bdrv_co_preadv_part (561,231,282 samples, 0.46%)</title><rect x="407.4" y="629" width="5.4" height="15.0" fill="rgb(233,72,40)" rx="2" ry="2" />
+<text  x="410.37" y="639.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (96,005,601 samples, 0.08%)</title><rect x="543.2" y="661" width="0.9" height="15.0" fill="rgb(239,190,1)" rx="2" ry="2" />
+<text  x="546.19" y="671.5" ></text>
+</g>
+<g >
+<title>sg_init_table (12,596,724 samples, 0.01%)</title><rect x="169.3" y="693" width="0.2" height="15.0" fill="rgb(253,115,45)" rx="2" ry="2" />
+<text  x="172.34" y="703.5" ></text>
+</g>
+<g >
+<title>release_pages (35,351,371 samples, 0.03%)</title><rect x="546.5" y="565" width="0.3" height="15.0" fill="rgb(218,0,54)" rx="2" ry="2" />
+<text  x="549.50" y="575.5" ></text>
+</g>
+<g >
+<title>aio_set_fd_handler (13,685,671 samples, 0.01%)</title><rect x="401.1" y="485" width="0.1" height="15.0" fill="rgb(228,80,48)" rx="2" ry="2" />
+<text  x="404.10" y="495.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (78,683,412 samples, 0.06%)</title><rect x="402.6" y="373" width="0.7" height="15.0" fill="rgb(223,77,7)" rx="2" ry="2" />
+<text  x="405.58" y="383.5" ></text>
+</g>
+<g >
+<title>sock_poll (109,737,637 samples, 0.09%)</title><rect x="332.0" y="453" width="1.1" height="15.0" fill="rgb(217,2,30)" rx="2" ry="2" />
+<text  x="335.03" y="463.5" ></text>
+</g>
+<g >
+<title>free_pcppages_bulk (25,697,375 samples, 0.02%)</title><rect x="761.1" y="501" width="0.3" height="15.0" fill="rgb(210,109,14)" rx="2" ry="2" />
+<text  x="764.13" y="511.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (559,352,568 samples, 0.46%)</title><rect x="407.4" y="597" width="5.4" height="15.0" fill="rgb(239,46,22)" rx="2" ry="2" />
+<text  x="410.38" y="607.5" ></text>
+</g>
+<g >
+<title>schedule (1,029,157,186 samples, 0.85%)</title><rect x="366.2" y="469" width="10.0" height="15.0" fill="rgb(230,95,23)" rx="2" ry="2" />
+<text  x="369.19" y="479.5" ></text>
+</g>
+<g >
+<title>kworker/u64:15- (1,133,582,708 samples, 0.94%)</title><rect x="86.1" y="805" width="11.1" height="15.0" fill="rgb(240,81,37)" rx="2" ry="2" />
+<text  x="89.13" y="815.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (230,317,119 samples, 0.19%)</title><rect x="351.2" y="581" width="2.2" height="15.0" fill="rgb(206,38,21)" rx="2" ry="2" />
+<text  x="354.20" y="591.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (16,173,574 samples, 0.01%)</title><rect x="415.8" y="677" width="0.1" height="15.0" fill="rgb(236,48,40)" rx="2" ry="2" />
+<text  x="418.78" y="687.5" ></text>
+</g>
+<g >
+<title>sprintf (24,297,050 samples, 0.02%)</title><rect x="334.3" y="517" width="0.2" height="15.0" fill="rgb(247,2,31)" rx="2" ry="2" />
+<text  x="337.28" y="527.5" ></text>
+</g>
+<g >
+<title>check_preempt_curr (11,335,745 samples, 0.01%)</title><rect x="1140.1" y="677" width="0.1" height="15.0" fill="rgb(235,191,16)" rx="2" ry="2" />
+<text  x="1143.14" y="687.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (44,051,979 samples, 0.04%)</title><rect x="239.8" y="645" width="0.5" height="15.0" fill="rgb(240,102,44)" rx="2" ry="2" />
+<text  x="242.83" y="655.5" ></text>
+</g>
+<g >
+<title>__tcp_send_ack.part.0 (95,030,259 samples, 0.08%)</title><rect x="303.5" y="405" width="0.9" height="15.0" fill="rgb(212,9,43)" rx="2" ry="2" />
+<text  x="306.48" y="415.5" ></text>
+</g>
+<g >
+<title>wake_up_q (11,051,070 samples, 0.01%)</title><rect x="402.3" y="437" width="0.1" height="15.0" fill="rgb(254,203,20)" rx="2" ry="2" />
+<text  x="405.27" y="447.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (12,656,873 samples, 0.01%)</title><rect x="43.1" y="693" width="0.2" height="15.0" fill="rgb(220,42,23)" rx="2" ry="2" />
+<text  x="46.14" y="703.5" ></text>
+</g>
+<g >
+<title>_raw_spin_rq_lock_irqsave (362,237,885 samples, 0.30%)</title><rect x="1109.7" y="693" width="3.5" height="15.0" fill="rgb(206,161,5)" rx="2" ry="2" />
+<text  x="1112.65" y="703.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (796,147,810 samples, 0.66%)</title><rect x="246.5" y="725" width="7.7" height="15.0" fill="rgb(250,155,8)" rx="2" ry="2" />
+<text  x="249.45" y="735.5" ></text>
+</g>
+<g >
+<title>tick_check_broadcast_expired (131,637,371 samples, 0.11%)</title><rect x="1176.9" y="725" width="1.2" height="15.0" fill="rgb(210,94,27)" rx="2" ry="2" />
+<text  x="1179.86" y="735.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_call_function_single (179,015,194 samples, 0.15%)</title><rect x="563.8" y="661" width="1.8" height="15.0" fill="rgb(214,209,25)" rx="2" ry="2" />
+<text  x="566.83" y="671.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (18,503,578 samples, 0.02%)</title><rect x="347.7" y="581" width="0.2" height="15.0" fill="rgb(221,97,14)" rx="2" ry="2" />
+<text  x="350.71" y="591.5" ></text>
+</g>
+<g >
+<title>ip6_input (23,613,080 samples, 0.02%)</title><rect x="408.9" y="117" width="0.2" height="15.0" fill="rgb(233,102,32)" rx="2" ry="2" />
+<text  x="411.91" y="127.5" ></text>
+</g>
+<g >
+<title>ext4_end_io_rsv_work (29,223,461 samples, 0.02%)</title><rect x="65.5" y="725" width="0.3" height="15.0" fill="rgb(238,134,24)" rx="2" ry="2" />
+<text  x="68.53" y="735.5" ></text>
+</g>
+<g >
+<title>__mod_node_page_state (12,719,504 samples, 0.01%)</title><rect x="444.0" y="517" width="0.1" height="15.0" fill="rgb(217,187,27)" rx="2" ry="2" />
+<text  x="446.99" y="527.5" ></text>
+</g>
+<g >
+<title>_raw_spin_unlock_irqrestore (11,125,988 samples, 0.01%)</title><rect x="379.0" y="453" width="0.2" height="15.0" fill="rgb(211,178,19)" rx="2" ry="2" />
+<text  x="382.04" y="463.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (22,536,207 samples, 0.02%)</title><rect x="1113.7" y="693" width="0.2" height="15.0" fill="rgb(207,15,17)" rx="2" ry="2" />
+<text  x="1116.69" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (97,497,449 samples, 0.08%)</title><rect x="246.7" y="661" width="0.9" height="15.0" fill="rgb(214,10,52)" rx="2" ry="2" />
+<text  x="249.66" y="671.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,085,177,324 samples, 0.90%)</title><rect x="11.7" y="709" width="10.6" height="15.0" fill="rgb(243,35,30)" rx="2" ry="2" />
+<text  x="14.72" y="719.5" ></text>
+</g>
+<g >
+<title>net_rx_action (4,547,317,186 samples, 3.75%)</title><rect x="774.9" y="629" width="44.3" height="15.0" fill="rgb(217,149,0)" rx="2" ry="2" />
+<text  x="777.93" y="639.5" >net_..</text>
+</g>
+<g >
+<title>cpu_startup_entry (63,972,931,141 samples, 52.77%)</title><rect x="566.6" y="757" width="622.7" height="15.0" fill="rgb(217,100,47)" rx="2" ry="2" />
+<text  x="569.62" y="767.5" >cpu_startup_entry</text>
+</g>
+<g >
+<title>read_tsc (17,051,927 samples, 0.01%)</title><rect x="1186.7" y="661" width="0.2" height="15.0" fill="rgb(229,141,48)" rx="2" ry="2" />
+<text  x="1189.74" y="671.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (18,504,902 samples, 0.02%)</title><rect x="885.6" y="261" width="0.2" height="15.0" fill="rgb(226,49,24)" rx="2" ry="2" />
+<text  x="888.58" y="271.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (289,929,159 samples, 0.24%)</title><rect x="50.5" y="677" width="2.8" height="15.0" fill="rgb(227,179,5)" rx="2" ry="2" />
+<text  x="53.51" y="687.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (39,872,665 samples, 0.03%)</title><rect x="112.7" y="693" width="0.4" height="15.0" fill="rgb(232,189,18)" rx="2" ry="2" />
+<text  x="115.70" y="703.5" ></text>
+</g>
+<g >
+<title>sg_init_table (10,568,099 samples, 0.01%)</title><rect x="148.3" y="693" width="0.1" height="15.0" fill="rgb(207,131,10)" rx="2" ry="2" />
+<text  x="151.31" y="703.5" ></text>
+</g>
+<g >
+<title>try_to_wake_up (15,434,931 samples, 0.01%)</title><rect x="808.8" y="293" width="0.2" height="15.0" fill="rgb(232,126,0)" rx="2" ry="2" />
+<text  x="811.83" y="303.5" ></text>
+</g>
+<g >
+<title>plist_add (19,040,881 samples, 0.02%)</title><rect x="550.1" y="549" width="0.2" height="15.0" fill="rgb(210,90,43)" rx="2" ry="2" />
+<text  x="553.10" y="559.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (27,426,344 samples, 0.02%)</title><rect x="1185.9" y="709" width="0.2" height="15.0" fill="rgb(247,56,38)" rx="2" ry="2" />
+<text  x="1188.86" y="719.5" ></text>
+</g>
+<g >
+<title>put_prev_entity (26,918,033 samples, 0.02%)</title><rect x="374.0" y="421" width="0.3" height="15.0" fill="rgb(211,109,7)" rx="2" ry="2" />
+<text  x="377.04" y="431.5" ></text>
+</g>
+<g >
+<title>error_entry (188,066,183 samples, 0.16%)</title><rect x="1072.9" y="693" width="1.8" height="15.0" fill="rgb(245,99,11)" rx="2" ry="2" />
+<text  x="1075.87" y="703.5" ></text>
+</g>
+<g >
+<title>copy_page_from_iter_atomic (314,295,007 samples, 0.26%)</title><rect x="425.0" y="581" width="3.0" height="15.0" fill="rgb(242,128,45)" rx="2" ry="2" />
+<text  x="427.98" y="591.5" ></text>
+</g>
+<g >
+<title>crypt_endio (74,034,111 samples, 0.06%)</title><rect x="760.8" y="565" width="0.7" height="15.0" fill="rgb(211,129,1)" rx="2" ry="2" />
+<text  x="763.81" y="575.5" ></text>
+</g>
+<g >
+<title>alloc_pages (21,068,420 samples, 0.02%)</title><rect x="441.6" y="517" width="0.2" height="15.0" fill="rgb(239,83,5)" rx="2" ry="2" />
+<text  x="444.61" y="527.5" ></text>
+</g>
+<g >
+<title>error_return (40,384,400 samples, 0.03%)</title><rect x="1074.7" y="693" width="0.4" height="15.0" fill="rgb(219,96,13)" rx="2" ry="2" />
+<text  x="1077.70" y="703.5" ></text>
+</g>
+<g >
+<title>ext4_finish_bio (15,865,262 samples, 0.01%)</title><rect x="178.7" y="693" width="0.2" height="15.0" fill="rgb(217,2,5)" rx="2" ry="2" />
+<text  x="181.71" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (912,581,077 samples, 0.75%)</title><rect x="117.0" y="693" width="8.9" height="15.0" fill="rgb(219,19,26)" rx="2" ry="2" />
+<text  x="119.98" y="703.5" ></text>
+</g>
+<g >
+<title>iommu_map_atomic (14,327,631 samples, 0.01%)</title><rect x="876.0" y="165" width="0.2" height="15.0" fill="rgb(235,155,9)" rx="2" ry="2" />
+<text  x="879.02" y="175.5" ></text>
+</g>
+<g >
+<title>clock_gettime@@GLIBC_2.17 (32,115,753 samples, 0.03%)</title><rect x="353.6" y="597" width="0.3" height="15.0" fill="rgb(224,97,39)" rx="2" ry="2" />
+<text  x="356.55" y="607.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (271,148,437 samples, 0.22%)</title><rect x="39.8" y="677" width="2.6" height="15.0" fill="rgb(227,73,3)" rx="2" ry="2" />
+<text  x="42.78" y="687.5" ></text>
+</g>
+<g >
+<title>crypt_iv_plain64_gen (11,130,988 samples, 0.01%)</title><rect x="169.7" y="693" width="0.1" height="15.0" fill="rgb(232,110,1)" rx="2" ry="2" />
+<text  x="172.68" y="703.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (999,618,894 samples, 0.82%)</title><rect x="404.3" y="661" width="9.8" height="15.0" fill="rgb(237,145,16)" rx="2" ry="2" />
+<text  x="407.34" y="671.5" ></text>
+</g>
+<g >
+<title>ext4_do_writepages (18,213,650 samples, 0.02%)</title><rect x="22.4" y="613" width="0.2" height="15.0" fill="rgb(242,90,53)" rx="2" ry="2" />
+<text  x="25.38" y="623.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (24,025,040 samples, 0.02%)</title><rect x="267.2" y="629" width="0.2" height="15.0" fill="rgb(217,191,11)" rx="2" ry="2" />
+<text  x="270.19" y="639.5" ></text>
+</g>
+<g >
+<title>ip6_input (28,173,281 samples, 0.02%)</title><rect x="388.5" y="341" width="0.3" height="15.0" fill="rgb(244,184,8)" rx="2" ry="2" />
+<text  x="391.49" y="351.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (128,162,547 samples, 0.11%)</title><rect x="414.2" y="709" width="1.2" height="15.0" fill="rgb(231,126,1)" rx="2" ry="2" />
+<text  x="417.17" y="719.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit.constprop.0 (174,590,074 samples, 0.14%)</title><rect x="1071.2" y="693" width="1.7" height="15.0" fill="rgb(226,151,9)" rx="2" ry="2" />
+<text  x="1074.17" y="703.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (34,973,194 samples, 0.03%)</title><rect x="336.9" y="549" width="0.4" height="15.0" fill="rgb(230,203,40)" rx="2" ry="2" />
+<text  x="339.91" y="559.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (20,957,517 samples, 0.02%)</title><rect x="876.9" y="309" width="0.2" height="15.0" fill="rgb(235,140,3)" rx="2" ry="2" />
+<text  x="879.88" y="319.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (11,729,980 samples, 0.01%)</title><rect x="542.9" y="661" width="0.1" height="15.0" fill="rgb(223,216,4)" rx="2" ry="2" />
+<text  x="545.86" y="671.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (10,279,363 samples, 0.01%)</title><rect x="868.7" y="405" width="0.1" height="15.0" fill="rgb(248,37,12)" rx="2" ry="2" />
+<text  x="871.69" y="415.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (88,080,901 samples, 0.07%)</title><rect x="402.5" y="485" width="0.9" height="15.0" fill="rgb(223,223,36)" rx="2" ry="2" />
+<text  x="405.52" y="495.5" ></text>
+</g>
+<g >
+<title>nft_do_chain (12,704,254 samples, 0.01%)</title><rect x="392.6" y="453" width="0.1" height="15.0" fill="rgb(238,169,13)" rx="2" ry="2" />
+<text  x="395.62" y="463.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (1,052,898,370 samples, 0.87%)</title><rect x="225.4" y="693" width="10.3" height="15.0" fill="rgb(242,197,8)" rx="2" ry="2" />
+<text  x="228.42" y="703.5" ></text>
+</g>
+<g >
+<title>__napi_poll (306,336,813 samples, 0.25%)</title><rect x="388.4" y="389" width="3.0" height="15.0" fill="rgb(253,96,49)" rx="2" ry="2" />
+<text  x="391.41" y="399.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,154,277,250 samples, 0.95%)</title><rect x="184.8" y="757" width="11.3" height="15.0" fill="rgb(246,166,17)" rx="2" ry="2" />
+<text  x="187.83" y="767.5" ></text>
+</g>
+<g >
+<title>selinux_ip_postroute (17,907,958 samples, 0.01%)</title><rect x="319.4" y="341" width="0.2" height="15.0" fill="rgb(246,111,23)" rx="2" ry="2" />
+<text  x="322.41" y="351.5" ></text>
+</g>
+<g >
+<title>__put_user_8 (27,090,365 samples, 0.02%)</title><rect x="382.9" y="469" width="0.2" height="15.0" fill="rgb(253,13,28)" rx="2" ry="2" />
+<text  x="385.85" y="479.5" ></text>
+</g>
+<g >
+<title>xas_create (21,517,702 samples, 0.02%)</title><rect x="437.5" y="485" width="0.2" height="15.0" fill="rgb(215,180,20)" rx="2" ry="2" />
+<text  x="440.47" y="495.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (38,638,410 samples, 0.03%)</title><rect x="120.2" y="629" width="0.3" height="15.0" fill="rgb(206,10,10)" rx="2" ry="2" />
+<text  x="123.17" y="639.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (294,506,263 samples, 0.24%)</title><rect x="549.7" y="629" width="2.9" height="15.0" fill="rgb(215,120,32)" rx="2" ry="2" />
+<text  x="552.69" y="639.5" ></text>
+</g>
+<g >
+<title>timekeeping_max_deferment (26,037,130 samples, 0.02%)</title><rect x="1165.7" y="677" width="0.2" height="15.0" fill="rgb(206,51,37)" rx="2" ry="2" />
+<text  x="1168.67" y="687.5" ></text>
+</g>
+<g >
+<title>ct_kernel_exit_state (11,367,317 samples, 0.01%)</title><rect x="565.7" y="629" width="0.1" height="15.0" fill="rgb(254,206,21)" rx="2" ry="2" />
+<text  x="568.66" y="639.5" ></text>
+</g>
+<g >
+<title>try_to_free_buffers (24,612,695 samples, 0.02%)</title><rect x="547.4" y="565" width="0.3" height="15.0" fill="rgb(233,174,23)" rx="2" ry="2" />
+<text  x="550.44" y="575.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (199,677,388 samples, 0.16%)</title><rect x="400.2" y="581" width="1.9" height="15.0" fill="rgb(251,13,19)" rx="2" ry="2" />
+<text  x="403.19" y="591.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (10,420,558 samples, 0.01%)</title><rect x="184.7" y="693" width="0.1" height="15.0" fill="rgb(205,157,28)" rx="2" ry="2" />
+<text  x="187.73" y="703.5" ></text>
+</g>
+<g >
+<title>memcmp (19,360,984 samples, 0.02%)</title><rect x="865.2" y="469" width="0.2" height="15.0" fill="rgb(223,101,50)" rx="2" ry="2" />
+<text  x="868.19" y="479.5" ></text>
+</g>
+<g >
+<title>__handle_irq_event_percpu (19,728,487 samples, 0.02%)</title><rect x="563.4" y="581" width="0.2" height="15.0" fill="rgb(211,22,36)" rx="2" ry="2" />
+<text  x="566.44" y="591.5" ></text>
+</g>
+<g >
+<title>__rseq_handle_notify_resume (104,157,356 samples, 0.09%)</title><rect x="382.1" y="485" width="1.0" height="15.0" fill="rgb(238,88,51)" rx="2" ry="2" />
+<text  x="385.11" y="495.5" ></text>
+</g>
+<g >
+<title>handle_single_connection (11,743,321,406 samples, 9.69%)</title><rect x="282.5" y="741" width="114.3" height="15.0" fill="rgb(214,5,11)" rx="2" ry="2" />
+<text  x="285.54" y="751.5" >handle_single_..</text>
+</g>
+<g >
+<title>add_wait_queue (32,987,884 samples, 0.03%)</title><rect x="379.2" y="453" width="0.3" height="15.0" fill="rgb(234,24,7)" rx="2" ry="2" />
+<text  x="382.15" y="463.5" ></text>
+</g>
+<g >
+<title>do_sigaction (71,581,189 samples, 0.06%)</title><rect x="352.4" y="533" width="0.7" height="15.0" fill="rgb(208,16,17)" rx="2" ry="2" />
+<text  x="355.40" y="543.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (56,809,577 samples, 0.05%)</title><rect x="848.9" y="645" width="0.6" height="15.0" fill="rgb(205,32,39)" rx="2" ry="2" />
+<text  x="851.91" y="655.5" ></text>
+</g>
+<g >
+<title>ip_send_check (13,508,955 samples, 0.01%)</title><rect x="313.0" y="341" width="0.1" height="15.0" fill="rgb(231,218,40)" rx="2" ry="2" />
+<text  x="316.01" y="351.5" ></text>
+</g>
+<g >
+<title>ext4_writepages (364,791,472 samples, 0.30%)</title><rect x="202.5" y="629" width="3.6" height="15.0" fill="rgb(209,89,27)" rx="2" ry="2" />
+<text  x="205.50" y="639.5" ></text>
+</g>
+<g >
+<title>asm_common_interrupt (17,611,330 samples, 0.01%)</title><rect x="394.7" y="533" width="0.2" height="15.0" fill="rgb(216,167,3)" rx="2" ry="2" />
+<text  x="397.75" y="543.5" ></text>
+</g>
+<g >
+<title>iommu_completion_wait.isra.0 (33,343,371 samples, 0.03%)</title><rect x="907.1" y="533" width="0.3" height="15.0" fill="rgb(247,93,15)" rx="2" ry="2" />
+<text  x="910.07" y="543.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (245,207,757 samples, 0.20%)</title><rect x="261.2" y="677" width="2.4" height="15.0" fill="rgb(247,226,15)" rx="2" ry="2" />
+<text  x="264.18" y="687.5" ></text>
+</g>
+<g >
+<title>__dev_queue_xmit (60,737,093 samples, 0.05%)</title><rect x="293.6" y="245" width="0.6" height="15.0" fill="rgb(253,215,16)" rx="2" ry="2" />
+<text  x="296.63" y="255.5" ></text>
+</g>
+<g >
+<title>truncate_inode_pages_range (120,738,582 samples, 0.10%)</title><rect x="546.5" y="597" width="1.2" height="15.0" fill="rgb(250,48,35)" rx="2" ry="2" />
+<text  x="549.50" y="607.5" ></text>
+</g>
+<g >
+<title>irqentry_exit (60,751,890 samples, 0.05%)</title><rect x="851.9" y="677" width="0.6" height="15.0" fill="rgb(206,80,47)" rx="2" ry="2" />
+<text  x="854.89" y="687.5" ></text>
+</g>
+<g >
+<title>process_one_work (15,865,262 samples, 0.01%)</title><rect x="178.7" y="741" width="0.2" height="15.0" fill="rgb(227,36,38)" rx="2" ry="2" />
+<text  x="181.71" y="751.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (28,081,594 samples, 0.02%)</title><rect x="336.9" y="517" width="0.3" height="15.0" fill="rgb(237,191,3)" rx="2" ry="2" />
+<text  x="339.94" y="527.5" ></text>
+</g>
+<g >
+<title>path_openat (12,200,014 samples, 0.01%)</title><rect x="399.2" y="661" width="0.1" height="15.0" fill="rgb(208,88,41)" rx="2" ry="2" />
+<text  x="402.15" y="671.5" ></text>
+</g>
+<g >
+<title>vfs_write (2,767,931,389 samples, 2.28%)</title><rect x="423.6" y="629" width="27.0" height="15.0" fill="rgb(216,98,44)" rx="2" ry="2" />
+<text  x="426.64" y="639.5" >v..</text>
+</g>
+<g >
+<title>__writeback_single_inode (364,791,472 samples, 0.30%)</title><rect x="202.5" y="661" width="3.6" height="15.0" fill="rgb(233,120,13)" rx="2" ry="2" />
+<text  x="205.50" y="671.5" ></text>
+</g>
+<g >
+<title>tcp_ack (91,512,105 samples, 0.08%)</title><rect x="878.4" y="373" width="0.9" height="15.0" fill="rgb(221,86,29)" rx="2" ry="2" />
+<text  x="881.43" y="383.5" ></text>
+</g>
+<g >
+<title>tcp_stream_alloc_skb (21,474,140 samples, 0.02%)</title><rect x="296.4" y="389" width="0.2" height="15.0" fill="rgb(225,101,22)" rx="2" ry="2" />
+<text  x="299.41" y="399.5" ></text>
+</g>
+<g >
+<title>tcp_current_mss (10,373,217 samples, 0.01%)</title><rect x="395.5" y="549" width="0.1" height="15.0" fill="rgb(214,106,35)" rx="2" ry="2" />
+<text  x="398.48" y="559.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (179,788,624 samples, 0.15%)</title><rect x="227.0" y="661" width="1.8" height="15.0" fill="rgb(241,225,34)" rx="2" ry="2" />
+<text  x="230.02" y="671.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (41,957,305 samples, 0.03%)</title><rect x="400.3" y="485" width="0.4" height="15.0" fill="rgb(218,46,8)" rx="2" ry="2" />
+<text  x="403.30" y="495.5" ></text>
+</g>
+<g >
+<title>clockevents_program_event (76,601,988 samples, 0.06%)</title><rect x="806.2" y="549" width="0.8" height="15.0" fill="rgb(214,27,32)" rx="2" ry="2" />
+<text  x="809.22" y="559.5" ></text>
+</g>
+<g >
+<title>skcipher_walk_virt (37,878,116 samples, 0.03%)</title><rect x="120.6" y="645" width="0.4" height="15.0" fill="rgb(230,154,45)" rx="2" ry="2" />
+<text  x="123.64" y="655.5" ></text>
+</g>
+<g >
+<title>__sk_mem_schedule (17,444,503 samples, 0.01%)</title><rect x="395.9" y="549" width="0.1" height="15.0" fill="rgb(222,136,41)" rx="2" ry="2" />
+<text  x="398.85" y="559.5" ></text>
+</g>
+<g >
+<title>[unknown]  (10,927,593 samples, 0.01%)</title><rect x="399.7" y="789" width="0.1" height="15.0" fill="rgb(209,51,38)" rx="2" ry="2" />
+<text  x="402.71" y="799.5" ></text>
+</g>
+<g >
+<title>rb_next (13,942,766 samples, 0.01%)</title><rect x="1159.5" y="661" width="0.1" height="15.0" fill="rgb(239,118,37)" rx="2" ry="2" />
+<text  x="1162.45" y="671.5" ></text>
+</g>
+<g >
+<title>__next_timer_interrupt (24,200,687 samples, 0.02%)</title><rect x="1162.0" y="661" width="0.3" height="15.0" fill="rgb(227,49,11)" rx="2" ry="2" />
+<text  x="1165.04" y="671.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (51,771,135 samples, 0.04%)</title><rect x="344.0" y="501" width="0.5" height="15.0" fill="rgb(208,219,33)" rx="2" ry="2" />
+<text  x="346.95" y="511.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_space_adjust (72,537,591 samples, 0.06%)</title><rect x="322.6" y="405" width="0.7" height="15.0" fill="rgb(225,76,1)" rx="2" ry="2" />
+<text  x="325.59" y="415.5" ></text>
+</g>
+<g >
+<title>iommu_dma_sync_single_for_device (10,611,814 samples, 0.01%)</title><rect x="803.3" y="581" width="0.1" height="15.0" fill="rgb(243,200,53)" rx="2" ry="2" />
+<text  x="806.29" y="591.5" ></text>
+</g>
+<g >
+<title>g_wakeup_signal (10,440,837 samples, 0.01%)</title><rect x="400.8" y="469" width="0.1" height="15.0" fill="rgb(223,155,22)" rx="2" ry="2" />
+<text  x="403.75" y="479.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (158,656,450 samples, 0.13%)</title><rect x="33.3" y="661" width="1.5" height="15.0" fill="rgb(207,209,10)" rx="2" ry="2" />
+<text  x="36.25" y="671.5" ></text>
+</g>
+<g >
+<title>timer_clear_idle (11,336,391 samples, 0.01%)</title><rect x="1189.2" y="725" width="0.1" height="15.0" fill="rgb(227,51,4)" rx="2" ry="2" />
+<text  x="1192.23" y="735.5" ></text>
+</g>
+<g >
+<title>xts_crypt (64,110,087 samples, 0.05%)</title><rect x="198.1" y="661" width="0.7" height="15.0" fill="rgb(220,13,25)" rx="2" ry="2" />
+<text  x="201.14" y="671.5" ></text>
+</g>
+<g >
+<title>br_dev_xmit (92,792,076 samples, 0.08%)</title><rect x="875.5" y="309" width="0.9" height="15.0" fill="rgb(238,199,23)" rx="2" ry="2" />
+<text  x="878.46" y="319.5" ></text>
+</g>
+<g >
+<title>__wrgsbase_inactive (23,049,046 samples, 0.02%)</title><rect x="356.4" y="549" width="0.2" height="15.0" fill="rgb(232,33,17)" rx="2" ry="2" />
+<text  x="359.41" y="559.5" ></text>
+</g>
+<g >
+<title>put_prev_task_fair (45,228,309 samples, 0.04%)</title><rect x="373.9" y="437" width="0.4" height="15.0" fill="rgb(215,143,29)" rx="2" ry="2" />
+<text  x="376.86" y="447.5" ></text>
+</g>
+<g >
+<title>kworker/u64:1-k (1,072,218,581 samples, 0.88%)</title><rect x="22.6" y="805" width="10.4" height="15.0" fill="rgb(224,54,36)" rx="2" ry="2" />
+<text  x="25.56" y="815.5" ></text>
+</g>
+<g >
+<title>ext4_mark_iloc_dirty (16,136,263 samples, 0.01%)</title><rect x="424.0" y="517" width="0.1" height="15.0" fill="rgb(230,27,50)" rx="2" ry="2" />
+<text  x="426.98" y="527.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_full_all_eof (91,426,096 samples, 0.08%)</title><rect x="402.5" y="533" width="0.9" height="15.0" fill="rgb(236,59,35)" rx="2" ry="2" />
+<text  x="405.51" y="543.5" ></text>
+</g>
+<g >
+<title>kthread (997,406,341 samples, 0.82%)</title><rect x="65.5" y="773" width="9.7" height="15.0" fill="rgb(233,202,38)" rx="2" ry="2" />
+<text  x="68.53" y="783.5" ></text>
+</g>
+<g >
+<title>__update_load_avg_se (14,954,689 samples, 0.01%)</title><rect x="1116.9" y="613" width="0.1" height="15.0" fill="rgb(251,70,31)" rx="2" ry="2" />
+<text  x="1119.89" y="623.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (2,756,673,928 samples, 2.27%)</title><rect x="356.8" y="549" width="26.8" height="15.0" fill="rgb(232,126,36)" rx="2" ry="2" />
+<text  x="359.79" y="559.5" >e..</text>
+</g>
+<g >
+<title>flush_sigqueue_mask (13,684,895 samples, 0.01%)</title><rect x="352.9" y="517" width="0.2" height="15.0" fill="rgb(235,132,42)" rx="2" ry="2" />
+<text  x="355.94" y="527.5" ></text>
+</g>
+<g >
+<title>tcp4_gro_receive (208,555,498 samples, 0.17%)</title><rect x="812.1" y="533" width="2.0" height="15.0" fill="rgb(238,70,26)" rx="2" ry="2" />
+<text  x="815.09" y="543.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (506,960,557 samples, 0.42%)</title><rect x="881.3" y="341" width="4.9" height="15.0" fill="rgb(212,47,15)" rx="2" ry="2" />
+<text  x="884.28" y="351.5" ></text>
+</g>
+<g >
+<title>kthread (15,865,262 samples, 0.01%)</title><rect x="178.7" y="773" width="0.2" height="15.0" fill="rgb(216,22,45)" rx="2" ry="2" />
+<text  x="181.71" y="783.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (25,993,878 samples, 0.02%)</title><rect x="373.6" y="405" width="0.3" height="15.0" fill="rgb(249,200,48)" rx="2" ry="2" />
+<text  x="376.61" y="415.5" ></text>
+</g>
+<g >
+<title>start_thread (13,351,466,429 samples, 11.01%)</title><rect x="423.2" y="773" width="129.9" height="15.0" fill="rgb(228,151,24)" rx="2" ry="2" />
+<text  x="426.17" y="783.5" >start_thread</text>
+</g>
+<g >
+<title>__dma_map_sg_attrs (32,890,753 samples, 0.03%)</title><rect x="10.3" y="613" width="0.4" height="15.0" fill="rgb(244,98,2)" rx="2" ry="2" />
+<text  x="13.33" y="623.5" ></text>
+</g>
+<g >
+<title>__get_user_8 (35,586,416 samples, 0.03%)</title><rect x="382.5" y="469" width="0.4" height="15.0" fill="rgb(242,8,10)" rx="2" ry="2" />
+<text  x="385.51" y="479.5" ></text>
+</g>
+<g >
+<title>csum_partial (168,573,492 samples, 0.14%)</title><rect x="812.5" y="469" width="1.6" height="15.0" fill="rgb(243,73,0)" rx="2" ry="2" />
+<text  x="815.48" y="479.5" ></text>
+</g>
+<g >
+<title>rht_key_get_hash.constprop.0 (18,823,203 samples, 0.02%)</title><rect x="865.4" y="469" width="0.2" height="15.0" fill="rgb(247,87,28)" rx="2" ry="2" />
+<text  x="868.38" y="479.5" ></text>
+</g>
+<g >
+<title>native_queued_spin_lock_slowpath (27,396,372 samples, 0.02%)</title><rect x="299.9" y="389" width="0.3" height="15.0" fill="rgb(233,219,31)" rx="2" ry="2" />
+<text  x="302.88" y="399.5" ></text>
+</g>
+<g >
+<title>__napi_poll (11,112,714 samples, 0.01%)</title><rect x="401.6" y="197" width="0.1" height="15.0" fill="rgb(249,136,43)" rx="2" ry="2" />
+<text  x="404.60" y="207.5" ></text>
+</g>
+<g >
+<title>kworker/u64:18- (1,037,436,771 samples, 0.86%)</title><rect x="116.6" y="805" width="10.1" height="15.0" fill="rgb(238,208,15)" rx="2" ry="2" />
+<text  x="119.62" y="815.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (35,348,403 samples, 0.03%)</title><rect x="246.1" y="661" width="0.3" height="15.0" fill="rgb(248,115,16)" rx="2" ry="2" />
+<text  x="249.10" y="671.5" ></text>
+</g>
+<g >
+<title>update_rq_clock (28,937,810 samples, 0.02%)</title><rect x="1034.9" y="629" width="0.3" height="15.0" fill="rgb(212,182,16)" rx="2" ry="2" />
+<text  x="1037.89" y="639.5" ></text>
+</g>
+<g >
+<title>ipt_do_table (43,138,817 samples, 0.04%)</title><rect x="318.7" y="341" width="0.4" height="15.0" fill="rgb(248,178,54)" rx="2" ry="2" />
+<text  x="321.66" y="351.5" ></text>
+</g>
+<g >
+<title>_int_malloc (14,566,489 samples, 0.01%)</title><rect x="413.3" y="597" width="0.2" height="15.0" fill="rgb(241,2,13)" rx="2" ry="2" />
+<text  x="416.32" y="607.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (80,928,049 samples, 0.07%)</title><rect x="821.0" y="661" width="0.7" height="15.0" fill="rgb(237,203,54)" rx="2" ry="2" />
+<text  x="823.95" y="671.5" ></text>
+</g>
+<g >
+<title>__usecs_to_jiffies (117,626,729 samples, 0.10%)</title><rect x="816.1" y="613" width="1.2" height="15.0" fill="rgb(226,211,35)" rx="2" ry="2" />
+<text  x="819.11" y="623.5" ></text>
+</g>
+<g >
+<title>mpage_map_and_submit_buffers (248,678,519 samples, 0.21%)</title><rect x="202.6" y="597" width="2.4" height="15.0" fill="rgb(211,124,17)" rx="2" ry="2" />
+<text  x="205.60" y="607.5" ></text>
+</g>
+<g >
+<title>nft_do_chain_inet (16,282,783 samples, 0.01%)</title><rect x="877.1" y="309" width="0.2" height="15.0" fill="rgb(244,140,21)" rx="2" ry="2" />
+<text  x="880.13" y="319.5" ></text>
+</g>
+<g >
+<title>__start_context (1,240,048,259 samples, 1.02%)</title><rect x="403.4" y="773" width="12.1" height="15.0" fill="rgb(236,49,51)" rx="2" ry="2" />
+<text  x="406.45" y="783.5" ></text>
+</g>
+<g >
+<title>_start (767,046,703 samples, 0.63%)</title><rect x="415.7" y="789" width="7.5" height="15.0" fill="rgb(210,182,16)" rx="2" ry="2" />
+<text  x="418.70" y="799.5" ></text>
+</g>
+<g >
+<title>thread_pool_submit_co (66,501,973 samples, 0.05%)</title><rect x="414.6" y="565" width="0.6" height="15.0" fill="rgb(219,224,34)" rx="2" ry="2" />
+<text  x="417.59" y="575.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (17,303,376 samples, 0.01%)</title><rect x="403.2" y="229" width="0.1" height="15.0" fill="rgb(241,226,20)" rx="2" ry="2" />
+<text  x="406.16" y="239.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (17,415,441 samples, 0.01%)</title><rect x="116.6" y="709" width="0.2" height="15.0" fill="rgb(254,76,17)" rx="2" ry="2" />
+<text  x="119.65" y="719.5" ></text>
+</g>
+<g >
+<title>alloc_buffer_head (191,288,027 samples, 0.16%)</title><rect x="428.8" y="517" width="1.9" height="15.0" fill="rgb(225,174,41)" rx="2" ry="2" />
+<text  x="431.81" y="527.5" ></text>
+</g>
+<g >
+<title>main (15,464,619 samples, 0.01%)</title><rect x="282.3" y="741" width="0.2" height="15.0" fill="rgb(242,111,40)" rx="2" ry="2" />
+<text  x="285.33" y="751.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (60,303,796 samples, 0.05%)</title><rect x="125.9" y="693" width="0.5" height="15.0" fill="rgb(222,187,51)" rx="2" ry="2" />
+<text  x="128.86" y="703.5" ></text>
+</g>
+<g >
+<title>ip6_protocol_deliver_rcu (158,715,661 samples, 0.13%)</title><rect x="388.8" y="325" width="1.5" height="15.0" fill="rgb(218,21,36)" rx="2" ry="2" />
+<text  x="391.77" y="335.5" ></text>
+</g>
+<g >
+<title>__irqentry_text_start (4,738,881,577 samples, 3.91%)</title><rect x="588.1" y="693" width="46.1" height="15.0" fill="rgb(223,151,14)" rx="2" ry="2" />
+<text  x="591.09" y="703.5" >__ir..</text>
+</g>
+<g >
+<title>ext4_writepages (18,213,650 samples, 0.02%)</title><rect x="22.4" y="629" width="0.2" height="15.0" fill="rgb(240,85,49)" rx="2" ry="2" />
+<text  x="25.38" y="639.5" ></text>
+</g>
+<g >
+<title>inflate_fast (9,473,501,257 samples, 7.82%)</title><rect x="451.9" y="677" width="92.2" height="15.0" fill="rgb(245,102,30)" rx="2" ry="2" />
+<text  x="454.93" y="687.5" >inflate_fast</text>
+</g>
+<g >
+<title>iommu_dma_map_page (24,985,469 samples, 0.02%)</title><rect x="293.9" y="165" width="0.2" height="15.0" fill="rgb(248,110,5)" rx="2" ry="2" />
+<text  x="296.89" y="175.5" ></text>
+</g>
+<g >
+<title>__switch_to (29,661,772 samples, 0.02%)</title><rect x="367.4" y="437" width="0.3" height="15.0" fill="rgb(245,119,51)" rx="2" ry="2" />
+<text  x="370.36" y="447.5" ></text>
+</g>
+<g >
+<title>xas_alloc (12,950,440 samples, 0.01%)</title><rect x="437.5" y="469" width="0.2" height="15.0" fill="rgb(208,173,29)" rx="2" ry="2" />
+<text  x="440.55" y="479.5" ></text>
+</g>
+<g >
+<title>[unknown]  (17,295,659 samples, 0.01%)</title><rect x="554.2" y="773" width="0.1" height="15.0" fill="rgb(210,52,17)" rx="2" ry="2" />
+<text  x="557.17" y="783.5" ></text>
+</g>
+<g >
+<title>handle_mm_fault (16,989,244 samples, 0.01%)</title><rect x="543.0" y="613" width="0.2" height="15.0" fill="rgb(214,228,12)" rx="2" ry="2" />
+<text  x="546.02" y="623.5" ></text>
+</g>
+<g >
+<title>folio_add_lru (138,792,654 samples, 0.11%)</title><rect x="437.7" y="517" width="1.3" height="15.0" fill="rgb(239,143,3)" rx="2" ry="2" />
+<text  x="440.68" y="527.5" ></text>
+</g>
+<g >
+<title>sched_clock_cpu (36,389,301 samples, 0.03%)</title><rect x="931.3" y="645" width="0.4" height="15.0" fill="rgb(205,107,39)" rx="2" ry="2" />
+<text  x="934.31" y="655.5" ></text>
+</g>
+<g >
+<title>ktime_get (39,742,995 samples, 0.03%)</title><rect x="886.8" y="357" width="0.4" height="15.0" fill="rgb(215,128,1)" rx="2" ry="2" />
+<text  x="889.79" y="367.5" ></text>
+</g>
+<g >
+<title>_aesni_enc4 (22,721,061 samples, 0.02%)</title><rect x="47.3" y="629" width="0.2" height="15.0" fill="rgb(241,94,41)" rx="2" ry="2" />
+<text  x="50.31" y="639.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (29,274,266 samples, 0.02%)</title><rect x="348.4" y="565" width="0.3" height="15.0" fill="rgb(220,117,21)" rx="2" ry="2" />
+<text  x="351.43" y="575.5" ></text>
+</g>
+<g >
+<title>perf_adjust_freq_unthr_context (134,360,395 samples, 0.11%)</title><rect x="914.1" y="533" width="1.3" height="15.0" fill="rgb(206,67,2)" rx="2" ry="2" />
+<text  x="917.14" y="543.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,042,203,558 samples, 0.86%)</title><rect x="254.4" y="709" width="10.1" height="15.0" fill="rgb(250,82,1)" rx="2" ry="2" />
+<text  x="257.35" y="719.5" ></text>
+</g>
+<g >
+<title>hrtimer_start_range_ns (74,370,858 samples, 0.06%)</title><rect x="364.3" y="469" width="0.7" height="15.0" fill="rgb(229,169,27)" rx="2" ry="2" />
+<text  x="367.31" y="479.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (297,347,513 samples, 0.25%)</title><rect x="82.3" y="677" width="2.9" height="15.0" fill="rgb(236,78,36)" rx="2" ry="2" />
+<text  x="85.34" y="687.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,124,971,302 samples, 0.93%)</title><rect x="137.6" y="725" width="10.9" height="15.0" fill="rgb(229,98,48)" rx="2" ry="2" />
+<text  x="140.56" y="735.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (519,590,257 samples, 0.43%)</title><rect x="407.6" y="453" width="5.1" height="15.0" fill="rgb(224,171,6)" rx="2" ry="2" />
+<text  x="410.59" y="463.5" ></text>
+</g>
+<g >
+<title>get_nohz_timer_target (11,750,516 samples, 0.01%)</title><rect x="364.9" y="453" width="0.1" height="15.0" fill="rgb(208,74,36)" rx="2" ry="2" />
+<text  x="367.91" y="463.5" ></text>
+</g>
+<g >
+<title>__local_bh_enable_ip (36,335,182 samples, 0.03%)</title><rect x="299.3" y="421" width="0.4" height="15.0" fill="rgb(236,167,50)" rx="2" ry="2" />
+<text  x="302.34" y="431.5" ></text>
+</g>
+<g >
+<title>__ip_local_out (83,704,554 samples, 0.07%)</title><rect x="876.5" y="341" width="0.8" height="15.0" fill="rgb(229,127,52)" rx="2" ry="2" />
+<text  x="879.49" y="351.5" ></text>
+</g>
+<g >
+<title>pmdaproc (31,613,033 samples, 0.03%)</title><rect x="399.7" y="805" width="0.3" height="15.0" fill="rgb(220,165,20)" rx="2" ry="2" />
+<text  x="402.70" y="815.5" ></text>
+</g>
+<g >
+<title>folio_clear_dirty_for_io (63,298,745 samples, 0.05%)</title><rect x="115.1" y="565" width="0.6" height="15.0" fill="rgb(205,94,45)" rx="2" ry="2" />
+<text  x="118.09" y="575.5" ></text>
+</g>
+<g >
+<title>copy_user_generic_string (46,000,220 samples, 0.04%)</title><rect x="344.5" y="501" width="0.5" height="15.0" fill="rgb(225,221,39)" rx="2" ry="2" />
+<text  x="347.51" y="511.5" ></text>
+</g>
+<g >
+<title>nf_nat_ipv4_out (21,457,717 samples, 0.02%)</title><rect x="319.2" y="341" width="0.2" height="15.0" fill="rgb(223,110,23)" rx="2" ry="2" />
+<text  x="322.20" y="351.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (212,795,728 samples, 0.18%)</title><rect x="173.6" y="677" width="2.1" height="15.0" fill="rgb(227,60,24)" rx="2" ry="2" />
+<text  x="176.60" y="687.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (10,382,994 samples, 0.01%)</title><rect x="206.2" y="645" width="0.1" height="15.0" fill="rgb(244,58,34)" rx="2" ry="2" />
+<text  x="209.15" y="655.5" ></text>
+</g>
+<g >
+<title>[unknown] (1,597,217,217 samples, 1.32%)</title><rect x="400.1" y="789" width="15.5" height="15.0" fill="rgb(246,126,14)" rx="2" ry="2" />
+<text  x="403.07" y="799.5" ></text>
+</g>
+<g >
+<title>curl_mvaprintf (59,371,739 samples, 0.05%)</title><rect x="339.6" y="549" width="0.6" height="15.0" fill="rgb(220,125,47)" rx="2" ry="2" />
+<text  x="342.65" y="559.5" ></text>
+</g>
+<g >
+<title>native_sched_clock (35,220,034 samples, 0.03%)</title><rect x="375.6" y="405" width="0.4" height="15.0" fill="rgb(238,132,23)" rx="2" ry="2" />
+<text  x="378.63" y="415.5" ></text>
+</g>
+<g >
+<title>tcp_event_data_recv (18,232,679 samples, 0.02%)</title><rect x="886.3" y="357" width="0.1" height="15.0" fill="rgb(218,195,49)" rx="2" ry="2" />
+<text  x="889.27" y="367.5" ></text>
+</g>
+<g >
+<title>__do_softirq (15,225,580 samples, 0.01%)</title><rect x="1077.1" y="629" width="0.1" height="15.0" fill="rgb(225,166,17)" rx="2" ry="2" />
+<text  x="1080.10" y="639.5" ></text>
+</g>
+<g >
+<title>ip6_input_finish (89,127,777 samples, 0.07%)</title><rect x="409.1" y="117" width="0.9" height="15.0" fill="rgb(234,71,52)" rx="2" ry="2" />
+<text  x="412.14" y="127.5" ></text>
+</g>
+<g >
+<title>skb_release_data (16,299,546 samples, 0.01%)</title><rect x="391.5" y="373" width="0.1" height="15.0" fill="rgb(217,145,12)" rx="2" ry="2" />
+<text  x="394.46" y="383.5" ></text>
+</g>
+<g >
+<title>__libc_pwrite (2,792,780,899 samples, 2.30%)</title><rect x="423.5" y="693" width="27.1" height="15.0" fill="rgb(247,25,36)" rx="2" ry="2" />
+<text  x="426.46" y="703.5" >_..</text>
+</g>
+<g >
+<title>tcp_release_cb (17,216,193 samples, 0.01%)</title><rect x="300.6" y="405" width="0.1" height="15.0" fill="rgb(234,97,54)" rx="2" ry="2" />
+<text  x="303.56" y="415.5" ></text>
+</g>
+<g >
+<title>__x64_sys_futex (18,142,831 samples, 0.01%)</title><rect x="402.2" y="485" width="0.2" height="15.0" fill="rgb(222,201,15)" rx="2" ry="2" />
+<text  x="405.21" y="495.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (12,491,513 samples, 0.01%)</title><rect x="116.7" y="661" width="0.1" height="15.0" fill="rgb(242,151,27)" rx="2" ry="2" />
+<text  x="119.69" y="671.5" ></text>
+</g>
+<g >
+<title>__x64_sys_poll (20,106,091 samples, 0.02%)</title><rect x="292.4" y="469" width="0.2" height="15.0" fill="rgb(221,45,35)" rx="2" ry="2" />
+<text  x="295.44" y="479.5" ></text>
+</g>
+<g >
+<title>delay_halt_mwaitx (29,940,728 samples, 0.02%)</title><rect x="907.1" y="501" width="0.3" height="15.0" fill="rgb(234,182,46)" rx="2" ry="2" />
+<text  x="910.10" y="511.5" ></text>
+</g>
+<g >
+<title>nvme_irq (19,728,487 samples, 0.02%)</title><rect x="563.4" y="565" width="0.2" height="15.0" fill="rgb(231,52,42)" rx="2" ry="2" />
+<text  x="566.44" y="575.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (61,330,020 samples, 0.05%)</title><rect x="42.4" y="693" width="0.6" height="15.0" fill="rgb(240,99,53)" rx="2" ry="2" />
+<text  x="45.44" y="703.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (1,046,731,244 samples, 0.86%)</title><rect x="214.0" y="725" width="10.2" height="15.0" fill="rgb(251,68,47)" rx="2" ry="2" />
+<text  x="217.02" y="735.5" ></text>
+</g>
+<g >
+<title>nft_lookup_eval (21,438,661 samples, 0.02%)</title><rect x="318.0" y="293" width="0.2" height="15.0" fill="rgb(252,211,24)" rx="2" ry="2" />
+<text  x="320.99" y="303.5" ></text>
+</g>
+<g >
+<title>__handle_mm_fault (16,463,737 samples, 0.01%)</title><rect x="543.0" y="597" width="0.2" height="15.0" fill="rgb(252,141,0)" rx="2" ry="2" />
+<text  x="546.02" y="607.5" ></text>
+</g>
+<g >
+<title>aio_dispatch (117,093,073 samples, 0.10%)</title><rect x="417.3" y="677" width="1.1" height="15.0" fill="rgb(208,174,43)" rx="2" ry="2" />
+<text  x="420.27" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (190,258,027 samples, 0.16%)</title><rect x="211.5" y="677" width="1.9" height="15.0" fill="rgb(235,14,30)" rx="2" ry="2" />
+<text  x="214.51" y="687.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (14,366,885 samples, 0.01%)</title><rect x="245.8" y="709" width="0.2" height="15.0" fill="rgb(213,123,22)" rx="2" ry="2" />
+<text  x="248.82" y="719.5" ></text>
+</g>
+<g >
+<title>add_wait_queue (20,975,398 samples, 0.02%)</title><rect x="380.5" y="453" width="0.2" height="15.0" fill="rgb(238,198,20)" rx="2" ry="2" />
+<text  x="383.55" y="463.5" ></text>
+</g>
+<g >
+<title>kthread (1,130,081,586 samples, 0.93%)</title><rect x="137.5" y="773" width="11.0" height="15.0" fill="rgb(223,174,3)" rx="2" ry="2" />
+<text  x="140.52" y="783.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (242,906,221 samples, 0.20%)</title><rect x="69.5" y="677" width="2.4" height="15.0" fill="rgb(233,67,36)" rx="2" ry="2" />
+<text  x="72.51" y="687.5" ></text>
+</g>
+<g >
+<title>record_times (222,858,521 samples, 0.18%)</title><rect x="1136.8" y="629" width="2.2" height="15.0" fill="rgb(219,23,14)" rx="2" ry="2" />
+<text  x="1139.78" y="639.5" ></text>
+</g>
+<g >
+<title>_raw_read_lock_bh (10,417,369 samples, 0.01%)</title><rect x="904.0" y="469" width="0.1" height="15.0" fill="rgb(238,23,33)" rx="2" ry="2" />
+<text  x="907.00" y="479.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (1,076,744,919 samples, 0.89%)</title><rect x="254.2" y="789" width="10.5" height="15.0" fill="rgb(247,181,17)" rx="2" ry="2" />
+<text  x="257.21" y="799.5" ></text>
+</g>
+<g >
+<title>__netif_receive_skb_core.constprop.0 (4,422,169,154 samples, 3.65%)</title><rect x="862.1" y="533" width="43.1" height="15.0" fill="rgb(247,68,34)" rx="2" ry="2" />
+<text  x="865.11" y="543.5" >__ne..</text>
+</g>
+<g >
+<title>delete_from_page_cache_batch (26,870,381 samples, 0.02%)</title><rect x="546.8" y="581" width="0.3" height="15.0" fill="rgb(219,186,36)" rx="2" ry="2" />
+<text  x="549.85" y="591.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (844,502,773 samples, 0.70%)</title><rect x="325.8" y="517" width="8.2" height="15.0" fill="rgb(206,203,4)" rx="2" ry="2" />
+<text  x="328.75" y="527.5" ></text>
+</g>
+<g >
+<title>handle_edge_irq (1,438,295,021 samples, 1.19%)</title><rect x="759.2" y="645" width="14.0" height="15.0" fill="rgb(225,153,51)" rx="2" ry="2" />
+<text  x="762.17" y="655.5" ></text>
+</g>
+<g >
+<title>ebt_broute (70,868,239 samples, 0.06%)</title><rect x="903.5" y="501" width="0.7" height="15.0" fill="rgb(248,80,31)" rx="2" ry="2" />
+<text  x="906.47" y="511.5" ></text>
+</g>
+<g >
+<title>ext4_dirty_inode (37,734,795 samples, 0.03%)</title><rect x="423.9" y="549" width="0.4" height="15.0" fill="rgb(254,138,51)" rx="2" ry="2" />
+<text  x="426.95" y="559.5" ></text>
+</g>
+<g >
+<title>__get_obj_cgroup_from_memcg (13,889,652 samples, 0.01%)</title><rect x="429.6" y="469" width="0.1" height="15.0" fill="rgb(241,72,42)" rx="2" ry="2" />
+<text  x="432.55" y="479.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (13,351,466,429 samples, 11.01%)</title><rect x="423.2" y="757" width="129.9" height="15.0" fill="rgb(226,87,4)" rx="2" ry="2" />
+<text  x="426.17" y="767.5" >[qemu-img]</text>
+</g>
+<g >
+<title>_raw_spin_lock_irqsave (43,075,404 samples, 0.04%)</title><rect x="1163.6" y="645" width="0.4" height="15.0" fill="rgb(208,30,24)" rx="2" ry="2" />
+<text  x="1166.59" y="655.5" ></text>
+</g>
+<g >
+<title>_int_realloc (12,621,760 samples, 0.01%)</title><rect x="336.7" y="533" width="0.1" height="15.0" fill="rgb(245,211,42)" rx="2" ry="2" />
+<text  x="339.66" y="543.5" ></text>
+</g>
+<g >
+<title>tcp_recvmsg_locked (2,320,695,477 samples, 1.91%)</title><rect x="300.7" y="421" width="22.6" height="15.0" fill="rgb(227,162,16)" rx="2" ry="2" />
+<text  x="303.73" y="431.5" >t..</text>
+</g>
+<g >
+<title>qio_channel_readv_full_all_eof (12,834,505 samples, 0.01%)</title><rect x="400.9" y="501" width="0.2" height="15.0" fill="rgb(250,8,12)" rx="2" ry="2" />
+<text  x="403.93" y="511.5" ></text>
+</g>
+<g >
+<title>rtl8169_tx_map (155,885,327 samples, 0.13%)</title><rect x="309.4" y="229" width="1.5" height="15.0" fill="rgb(237,119,51)" rx="2" ry="2" />
+<text  x="312.41" y="239.5" ></text>
+</g>
+<g >
+<title>sg_init_table (12,611,967 samples, 0.01%)</title><rect x="137.3" y="693" width="0.1" height="15.0" fill="rgb(206,222,26)" rx="2" ry="2" />
+<text  x="140.30" y="703.5" ></text>
+</g>
+<g >
+<title>[libcurl.so.4.8.0] (6,820,729,398 samples, 5.63%)</title><rect x="284.5" y="597" width="66.4" height="15.0" fill="rgb(217,211,2)" rx="2" ry="2" />
+<text  x="287.55" y="607.5" >[libcur..</text>
+</g>
+<g >
+<title>read_tsc (41,804,904 samples, 0.03%)</title><rect x="322.9" y="357" width="0.4" height="15.0" fill="rgb(217,218,24)" rx="2" ry="2" />
+<text  x="325.89" y="367.5" ></text>
+</g>
+<g >
+<title>sock_sendmsg (1,044,047,982 samples, 0.86%)</title><rect x="386.4" y="613" width="10.2" height="15.0" fill="rgb(210,152,39)" rx="2" ry="2" />
+<text  x="389.44" y="623.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (15,250,041 samples, 0.01%)</title><rect x="343.0" y="549" width="0.2" height="15.0" fill="rgb(244,55,44)" rx="2" ry="2" />
+<text  x="346.01" y="559.5" ></text>
+</g>
+<g >
+<title>_raw_spin_rq_lock_irqsave (29,513,772 samples, 0.02%)</title><rect x="1031.0" y="629" width="0.2" height="15.0" fill="rgb(245,50,43)" rx="2" ry="2" />
+<text  x="1033.96" y="639.5" ></text>
+</g>
+<g >
+<title>__x86_return_thunk (11,782,392 samples, 0.01%)</title><rect x="326.2" y="501" width="0.1" height="15.0" fill="rgb(240,68,52)" rx="2" ry="2" />
+<text  x="329.15" y="511.5" ></text>
+</g>
+<g >
+<title>[systemd-oomd] (14,289,787 samples, 0.01%)</title><rect x="1189.6" y="741" width="0.1" height="15.0" fill="rgb(254,212,49)" rx="2" ry="2" />
+<text  x="1192.59" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (261,800,125 samples, 0.22%)</title><rect x="79.8" y="677" width="2.5" height="15.0" fill="rgb(244,7,32)" rx="2" ry="2" />
+<text  x="82.79" y="687.5" ></text>
+</g>
+<g >
+<title>rtl8169_tx_map (29,213,411 samples, 0.02%)</title><rect x="293.9" y="181" width="0.2" height="15.0" fill="rgb(205,61,11)" rx="2" ry="2" />
+<text  x="296.85" y="191.5" ></text>
+</g>
+<g >
+<title>tcp_rcv_established (106,621,558 samples, 0.09%)</title><rect x="389.3" y="277" width="1.0" height="15.0" fill="rgb(252,226,44)" rx="2" ry="2" />
+<text  x="392.26" y="287.5" ></text>
+</g>
+<g >
+<title>__folio_end_writeback (11,635,678 samples, 0.01%)</title><rect x="178.7" y="661" width="0.2" height="15.0" fill="rgb(223,101,7)" rx="2" ry="2" />
+<text  x="181.75" y="671.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (12,761,212 samples, 0.01%)</title><rect x="916.2" y="629" width="0.1" height="15.0" fill="rgb(214,217,52)" rx="2" ry="2" />
+<text  x="919.21" y="639.5" ></text>
+</g>
+<g >
+<title>kcryptd_crypt (890,274,760 samples, 0.73%)</title><rect x="272.2" y="725" width="8.6" height="15.0" fill="rgb(249,133,11)" rx="2" ry="2" />
+<text  x="275.16" y="735.5" ></text>
+</g>
+<g >
+<title>ip6t_do_table (10,410,353 samples, 0.01%)</title><rect x="388.5" y="309" width="0.1" height="15.0" fill="rgb(210,219,29)" rx="2" ry="2" />
+<text  x="391.51" y="319.5" ></text>
+</g>
+<g >
+<title>__switch_to_asm (42,035,338 samples, 0.03%)</title><rect x="356.0" y="549" width="0.4" height="15.0" fill="rgb(222,51,27)" rx="2" ry="2" />
+<text  x="359.00" y="559.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_state (10,705,063 samples, 0.01%)</title><rect x="203.7" y="501" width="0.1" height="15.0" fill="rgb(254,217,39)" rx="2" ry="2" />
+<text  x="206.68" y="511.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (25,845,032 samples, 0.02%)</title><rect x="413.0" y="549" width="0.2" height="15.0" fill="rgb(218,112,42)" rx="2" ry="2" />
+<text  x="415.95" y="559.5" ></text>
+</g>
+<g >
+<title>asm_sysvec_apic_timer_interrupt (33,238,671 samples, 0.03%)</title><rect x="1077.1" y="677" width="0.3" height="15.0" fill="rgb(234,29,18)" rx="2" ry="2" />
+<text  x="1080.08" y="687.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (185,551,245 samples, 0.15%)</title><rect x="249.6" y="677" width="1.8" height="15.0" fill="rgb(212,32,24)" rx="2" ry="2" />
+<text  x="252.64" y="687.5" ></text>
+</g>
+<g >
+<title>nf_conntrack_in (29,804,318 samples, 0.02%)</title><rect x="295.2" y="277" width="0.3" height="15.0" fill="rgb(221,132,50)" rx="2" ry="2" />
+<text  x="298.21" y="287.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (38,733,855 samples, 0.03%)</title><rect x="1166.3" y="693" width="0.3" height="15.0" fill="rgb(251,144,13)" rx="2" ry="2" />
+<text  x="1169.26" y="703.5" ></text>
+</g>
+<g >
+<title>schedule_hrtimeout_range_clock (1,311,899,926 samples, 1.08%)</title><rect x="363.4" y="485" width="12.8" height="15.0" fill="rgb(240,225,3)" rx="2" ry="2" />
+<text  x="366.44" y="495.5" ></text>
+</g>
+<g >
+<title>common_interrupt (11,578,704 samples, 0.01%)</title><rect x="542.9" y="645" width="0.1" height="15.0" fill="rgb(219,196,37)" rx="2" ry="2" />
+<text  x="545.86" y="655.5" ></text>
+</g>
+<g >
+<title>[unknown] (77,387,559 samples, 0.06%)</title><rect x="281.4" y="773" width="0.7" height="15.0" fill="rgb(245,60,15)" rx="2" ry="2" />
+<text  x="284.39" y="783.5" ></text>
+</g>
+<g >
+<title>_raw_spin_lock_irq (18,370,345 samples, 0.02%)</title><rect x="911.0" y="613" width="0.2" height="15.0" fill="rgb(254,78,22)" rx="2" ry="2" />
+<text  x="914.02" y="623.5" ></text>
+</g>
+<g >
+<title>mpage_prepare_extent_to_map (99,280,241 samples, 0.08%)</title><rect x="205.0" y="597" width="1.0" height="15.0" fill="rgb(237,203,48)" rx="2" ry="2" />
+<text  x="208.02" y="607.5" ></text>
+</g>
+<g >
+<title>cpus_share_cache (18,067,525 samples, 0.01%)</title><rect x="883.3" y="261" width="0.2" height="15.0" fill="rgb(215,202,16)" rx="2" ry="2" />
+<text  x="886.28" y="271.5" ></text>
+</g>
+<g >
+<title>__fget_light (30,124,447 samples, 0.02%)</title><rect x="419.9" y="629" width="0.3" height="15.0" fill="rgb(238,27,12)" rx="2" ry="2" />
+<text  x="422.91" y="639.5" ></text>
+</g>
+<g >
+<title>worker_thread (1,035,371,795 samples, 0.85%)</title><rect x="116.6" y="757" width="10.1" height="15.0" fill="rgb(252,176,24)" rx="2" ry="2" />
+<text  x="119.64" y="767.5" ></text>
+</g>
+<g >
+<title>skb_checksum (177,763,619 samples, 0.15%)</title><rect x="812.4" y="501" width="1.7" height="15.0" fill="rgb(242,168,8)" rx="2" ry="2" />
+<text  x="815.39" y="511.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_full_all_eof (13,378,938 samples, 0.01%)</title><rect x="401.3" y="517" width="0.2" height="15.0" fill="rgb(241,115,39)" rx="2" ry="2" />
+<text  x="404.34" y="527.5" ></text>
+</g>
+<g >
+<title>rtl8169_features_check (32,485,449 samples, 0.03%)</title><rect x="311.1" y="213" width="0.3" height="15.0" fill="rgb(247,46,37)" rx="2" ry="2" />
+<text  x="314.12" y="223.5" ></text>
+</g>
+<g >
+<title>kthread (59,542,910 samples, 0.05%)</title><rect x="10.1" y="773" width="0.6" height="15.0" fill="rgb(235,196,38)" rx="2" ry="2" />
+<text  x="13.14" y="783.5" ></text>
+</g>
+<g >
+<title>update_blocked_averages (54,999,842 samples, 0.05%)</title><rect x="906.3" y="613" width="0.5" height="15.0" fill="rgb(244,131,20)" rx="2" ry="2" />
+<text  x="909.29" y="623.5" ></text>
+</g>
+<g >
+<title>crypt_convert (779,333,705 samples, 0.64%)</title><rect x="206.3" y="709" width="7.6" height="15.0" fill="rgb(205,218,45)" rx="2" ry="2" />
+<text  x="209.34" y="719.5" ></text>
+</g>
+<g >
+<title>ext4_release_io_end (13,013,876 samples, 0.01%)</title><rect x="254.2" y="709" width="0.1" height="15.0" fill="rgb(229,89,9)" rx="2" ry="2" />
+<text  x="257.22" y="719.5" ></text>
+</g>
+<g >
+<title>debug_smp_processor_id (74,516,147 samples, 0.06%)</title><rect x="1068.5" y="645" width="0.7" height="15.0" fill="rgb(206,76,41)" rx="2" ry="2" />
+<text  x="1071.49" y="655.5" ></text>
+</g>
+<g >
+<title>alloc_iova_fast (24,523,260 samples, 0.02%)</title><rect x="309.9" y="165" width="0.2" height="15.0" fill="rgb(249,117,53)" rx="2" ry="2" />
+<text  x="312.87" y="175.5" ></text>
+</g>
+<g >
+<title>__inet_lookup_established (98,695,031 samples, 0.08%)</title><rect x="888.7" y="405" width="1.0" height="15.0" fill="rgb(208,1,8)" rx="2" ry="2" />
+<text  x="891.69" y="415.5" ></text>
+</g>
+<g >
+<title>irq_chip_ack_parent (55,256,796 samples, 0.05%)</title><rect x="772.3" y="629" width="0.6" height="15.0" fill="rgb(210,122,45)" rx="2" ry="2" />
+<text  x="775.33" y="639.5" ></text>
+</g>
+<g >
+<title>__tcp_ack_snd_check (29,943,848 samples, 0.02%)</title><rect x="874.6" y="389" width="0.3" height="15.0" fill="rgb(225,183,38)" rx="2" ry="2" />
+<text  x="877.64" y="399.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (18,282,711 samples, 0.02%)</title><rect x="877.3" y="341" width="0.2" height="15.0" fill="rgb(238,172,43)" rx="2" ry="2" />
+<text  x="880.33" y="351.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (234,164,632 samples, 0.19%)</title><rect x="845.6" y="629" width="2.3" height="15.0" fill="rgb(251,75,18)" rx="2" ry="2" />
+<text  x="848.59" y="639.5" ></text>
+</g>
+<g >
+<title>crypt_page_alloc (10,574,169 samples, 0.01%)</title><rect x="254.1" y="693" width="0.1" height="15.0" fill="rgb(230,17,4)" rx="2" ry="2" />
+<text  x="257.10" y="703.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (287,913,967 samples, 0.24%)</title><rect x="93.4" y="677" width="2.8" height="15.0" fill="rgb(221,7,1)" rx="2" ry="2" />
+<text  x="96.37" y="687.5" ></text>
+</g>
+<g >
+<title>arch_scale_freq_tick (25,602,355 samples, 0.02%)</title><rect x="913.8" y="549" width="0.2" height="15.0" fill="rgb(236,130,30)" rx="2" ry="2" />
+<text  x="916.78" y="559.5" ></text>
+</g>
+<g >
+<title>secondary_startup_64_no_verify (64,784,958,818 samples, 53.44%)</title><rect x="558.7" y="789" width="630.6" height="15.0" fill="rgb(222,139,26)" rx="2" ry="2" />
+<text  x="561.71" y="799.5" >secondary_startup_64_no_verify</text>
+</g>
+<g >
+<title>timekeeping_advance (44,201,793 samples, 0.04%)</title><rect x="912.6" y="565" width="0.5" height="15.0" fill="rgb(239,229,22)" rx="2" ry="2" />
+<text  x="915.63" y="575.5" ></text>
+</g>
+<g >
+<title>tcp_ack (43,668,254 samples, 0.04%)</title><rect x="389.3" y="261" width="0.4" height="15.0" fill="rgb(236,168,37)" rx="2" ry="2" />
+<text  x="392.30" y="271.5" ></text>
+</g>
+<g >
+<title>process_one_work (1,047,951,487 samples, 0.86%)</title><rect x="214.0" y="741" width="10.2" height="15.0" fill="rgb(216,50,25)" rx="2" ry="2" />
+<text  x="217.01" y="751.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (149,403,221 samples, 0.12%)</title><rect x="75.5" y="661" width="1.4" height="15.0" fill="rgb(208,94,37)" rx="2" ry="2" />
+<text  x="78.49" y="671.5" ></text>
+</g>
+<g >
+<title>nf_nat_inet_fn (21,590,485 samples, 0.02%)</title><rect x="895.4" y="405" width="0.2" height="15.0" fill="rgb(244,132,42)" rx="2" ry="2" />
+<text  x="898.40" y="415.5" ></text>
+</g>
+<g >
+<title>kworker/u64:12- (1,145,519,779 samples, 0.94%)</title><rect x="54.4" y="805" width="11.1" height="15.0" fill="rgb(230,162,15)" rx="2" ry="2" />
+<text  x="57.38" y="815.5" ></text>
+</g>
+<g >
+<title>qemu_cond_signal (22,449,012 samples, 0.02%)</title><rect x="402.2" y="549" width="0.2" height="15.0" fill="rgb(238,13,49)" rx="2" ry="2" />
+<text  x="405.18" y="559.5" ></text>
+</g>
+<g >
+<title>nf_hook_slow (104,258,512 samples, 0.09%)</title><rect x="318.6" y="357" width="1.0" height="15.0" fill="rgb(220,9,50)" rx="2" ry="2" />
+<text  x="321.57" y="367.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (11,069,405 samples, 0.01%)</title><rect x="1189.6" y="645" width="0.1" height="15.0" fill="rgb(213,41,39)" rx="2" ry="2" />
+<text  x="1192.62" y="655.5" ></text>
+</g>
+<g >
+<title>[[vdso]] (24,576,221 samples, 0.02%)</title><rect x="353.6" y="581" width="0.2" height="15.0" fill="rgb(251,199,5)" rx="2" ry="2" />
+<text  x="356.57" y="591.5" ></text>
+</g>
+<g >
+<title>tick_nohz_tick_stopped (23,709,280 samples, 0.02%)</title><rect x="1189.0" y="725" width="0.2" height="15.0" fill="rgb(245,117,35)" rx="2" ry="2" />
+<text  x="1192.00" y="735.5" ></text>
+</g>
+<g >
+<title>kworker/u64:16- (1,026,192,089 samples, 0.85%)</title><rect x="97.2" y="805" width="10.0" height="15.0" fill="rgb(229,209,54)" rx="2" ry="2" />
+<text  x="100.16" y="815.5" ></text>
+</g>
+<g >
+<title>get_next_timer_interrupt (282,381,299 samples, 0.23%)</title><rect x="1161.5" y="677" width="2.8" height="15.0" fill="rgb(225,15,54)" rx="2" ry="2" />
+<text  x="1164.54" y="687.5" ></text>
+</g>
+<g >
+<title>__GI___libc_write (177,334,280 samples, 0.15%)</title><rect x="397.3" y="613" width="1.7" height="15.0" fill="rgb(206,155,40)" rx="2" ry="2" />
+<text  x="400.25" y="623.5" ></text>
+</g>
+<g >
+<title>__vfscanf_internal (30,417,831 samples, 0.03%)</title><rect x="337.7" y="549" width="0.3" height="15.0" fill="rgb(253,63,25)" rx="2" ry="2" />
+<text  x="340.69" y="559.5" ></text>
+</g>
+<g >
+<title>mem_cgroup_wb_stats (29,345,106 samples, 0.02%)</title><rect x="424.6" y="549" width="0.3" height="15.0" fill="rgb(243,193,42)" rx="2" ry="2" />
+<text  x="427.63" y="559.5" ></text>
+</g>
+<g >
+<title>tick_nohz_get_sleep_length (927,450,436 samples, 0.77%)</title><rect x="1156.9" y="709" width="9.1" height="15.0" fill="rgb(236,215,25)" rx="2" ry="2" />
+<text  x="1159.93" y="719.5" ></text>
+</g>
+<g >
+<title>[qemu-img] (96,927,829 samples, 0.08%)</title><rect x="414.4" y="661" width="0.9" height="15.0" fill="rgb(219,35,16)" rx="2" ry="2" />
+<text  x="417.39" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (138,272,779 samples, 0.11%)</title><rect x="97.4" y="661" width="1.3" height="15.0" fill="rgb(254,213,19)" rx="2" ry="2" />
+<text  x="100.38" y="671.5" ></text>
+</g>
+<g >
+<title>inet_recvmsg (2,491,895,015 samples, 2.06%)</title><rect x="299.1" y="453" width="24.2" height="15.0" fill="rgb(248,217,8)" rx="2" ry="2" />
+<text  x="302.06" y="463.5" >i..</text>
+</g>
+<g >
+<title>do_futex (42,436,059 samples, 0.04%)</title><rect x="414.8" y="453" width="0.4" height="15.0" fill="rgb(225,163,36)" rx="2" ry="2" />
+<text  x="417.80" y="463.5" ></text>
+</g>
+<g >
+<title>ipv6_rcv (106,680,285 samples, 0.09%)</title><rect x="390.3" y="341" width="1.1" height="15.0" fill="rgb(244,2,41)" rx="2" ry="2" />
+<text  x="393.32" y="351.5" ></text>
+</g>
+<g >
+<title>__wake_up_common_lock (34,520,898 samples, 0.03%)</title><rect x="389.9" y="229" width="0.3" height="15.0" fill="rgb(244,98,36)" rx="2" ry="2" />
+<text  x="392.89" y="239.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (352,110,113 samples, 0.29%)</title><rect x="113.2" y="661" width="3.4" height="15.0" fill="rgb(245,134,19)" rx="2" ry="2" />
+<text  x="116.19" y="671.5" ></text>
+</g>
+<g >
+<title>kthread (1,050,315,656 samples, 0.87%)</title><rect x="214.0" y="773" width="10.2" height="15.0" fill="rgb(218,15,42)" rx="2" ry="2" />
+<text  x="217.00" y="783.5" ></text>
+</g>
+<g >
+<title>skb_copy_datagram_iter (29,719,762 samples, 0.02%)</title><rect x="401.8" y="341" width="0.3" height="15.0" fill="rgb(208,198,52)" rx="2" ry="2" />
+<text  x="404.77" y="351.5" ></text>
+</g>
+<g >
+<title>sch_direct_xmit (280,966,306 samples, 0.23%)</title><rect x="308.8" y="277" width="2.7" height="15.0" fill="rgb(218,18,14)" rx="2" ry="2" />
+<text  x="311.75" y="287.5" ></text>
+</g>
+<g >
+<title>br_dev_xmit (634,521,721 samples, 0.52%)</title><rect x="306.1" y="325" width="6.1" height="15.0" fill="rgb(252,175,19)" rx="2" ry="2" />
+<text  x="309.05" y="335.5" ></text>
+</g>
+<g >
+<title>psi_task_switch (24,062,174 samples, 0.02%)</title><rect x="551.8" y="533" width="0.2" height="15.0" fill="rgb(235,202,26)" rx="2" ry="2" />
+<text  x="554.76" y="543.5" ></text>
+</g>
+<g >
+<title>[perf] (192,192,189 samples, 0.16%)</title><rect x="397.2" y="789" width="1.9" height="15.0" fill="rgb(234,127,17)" rx="2" ry="2" />
+<text  x="400.23" y="799.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (34,101,643 samples, 0.03%)</title><rect x="281.4" y="709" width="0.3" height="15.0" fill="rgb(252,31,5)" rx="2" ry="2" />
+<text  x="284.41" y="719.5" ></text>
+</g>
+<g >
+<title>read_tsc (1,463,725,818 samples, 1.21%)</title><rect x="827.7" y="613" width="14.2" height="15.0" fill="rgb(211,145,18)" rx="2" ry="2" />
+<text  x="830.66" y="623.5" ></text>
+</g>
+<g >
+<title>selinux_socket_recvmsg (94,995,431 samples, 0.08%)</title><rect x="323.6" y="421" width="1.0" height="15.0" fill="rgb(233,219,46)" rx="2" ry="2" />
+<text  x="326.65" y="431.5" ></text>
+</g>
+<g >
+<title>swapper (65,233,026,460 samples, 53.81%)</title><rect x="554.4" y="805" width="635.0" height="15.0" fill="rgb(210,146,1)" rx="2" ry="2" />
+<text  x="557.37" y="815.5" >swapper</text>
+</g>
+<g >
+<title>ip6_output (12,297,695 samples, 0.01%)</title><rect x="410.8" y="261" width="0.1" height="15.0" fill="rgb(213,51,30)" rx="2" ry="2" />
+<text  x="413.80" y="271.5" ></text>
+</g>
+<g >
+<title>__mod_lruvec_page_state (22,036,676 samples, 0.02%)</title><rect x="204.7" y="533" width="0.2" height="15.0" fill="rgb(227,123,17)" rx="2" ry="2" />
+<text  x="207.70" y="543.5" ></text>
+</g>
+<g >
+<title>entry_SYSCALL_64_after_hwframe (36,156,282 samples, 0.03%)</title><rect x="417.4" y="613" width="0.4" height="15.0" fill="rgb(207,83,31)" rx="2" ry="2" />
+<text  x="420.41" y="623.5" ></text>
+</g>
+<g >
+<title>release_sock (12,539,056 samples, 0.01%)</title><rect x="386.7" y="581" width="0.1" height="15.0" fill="rgb(218,229,11)" rx="2" ry="2" />
+<text  x="389.72" y="591.5" ></text>
+</g>
+<g >
+<title>__filemap_add_folio (23,105,307 samples, 0.02%)</title><rect x="398.0" y="437" width="0.2" height="15.0" fill="rgb(205,35,46)" rx="2" ry="2" />
+<text  x="400.96" y="447.5" ></text>
+</g>
+<g >
+<title>find_busiest_group (31,206,167 samples, 0.03%)</title><rect x="564.6" y="549" width="0.3" height="15.0" fill="rgb(226,65,1)" rx="2" ry="2" />
+<text  x="567.63" y="559.5" ></text>
+</g>
+<g >
+<title>check_preemption_disabled (16,629,693 samples, 0.01%)</title><rect x="931.1" y="645" width="0.2" height="15.0" fill="rgb(248,3,19)" rx="2" ry="2" />
+<text  x="934.14" y="655.5" ></text>
+</g>
+<g >
+<title>percpu_counter_add_batch (11,319,073 samples, 0.01%)</title><rect x="115.6" y="549" width="0.1" height="15.0" fill="rgb(219,32,51)" rx="2" ry="2" />
+<text  x="118.59" y="559.5" ></text>
+</g>
+<g >
+<title>wb_writeback (352,110,113 samples, 0.29%)</title><rect x="113.2" y="709" width="3.4" height="15.0" fill="rgb(211,198,28)" rx="2" ry="2" />
+<text  x="116.19" y="719.5" ></text>
+</g>
+<g >
+<title>ret_from_fork (611,746,188 samples, 0.50%)</title><rect x="178.9" y="789" width="5.9" height="15.0" fill="rgb(232,14,43)" rx="2" ry="2" />
+<text  x="181.87" y="799.5" ></text>
+</g>
+<g >
+<title>ktime_get (20,162,494 samples, 0.02%)</title><rect x="1185.0" y="661" width="0.2" height="15.0" fill="rgb(225,75,42)" rx="2" ry="2" />
+<text  x="1187.96" y="671.5" ></text>
+</g>
+<g >
+<title>exc_page_fault (19,602,222 samples, 0.02%)</title><rect x="403.1" y="277" width="0.2" height="15.0" fill="rgb(221,53,48)" rx="2" ry="2" />
+<text  x="406.14" y="287.5" ></text>
+</g>
+<g >
+<title>ipv4_conntrack_defrag (19,697,683 samples, 0.02%)</title><rect x="891.7" y="421" width="0.2" height="15.0" fill="rgb(245,162,20)" rx="2" ry="2" />
+<text  x="894.68" y="431.5" ></text>
+</g>
+<g >
+<title>free_buffer_head (19,245,334 samples, 0.02%)</title><rect x="547.5" y="549" width="0.2" height="15.0" fill="rgb(224,227,38)" rx="2" ry="2" />
+<text  x="550.49" y="559.5" ></text>
+</g>
+<g >
+<title>__writeback_single_inode (45,476,704 samples, 0.04%)</title><rect x="106.7" y="661" width="0.5" height="15.0" fill="rgb(211,140,20)" rx="2" ry="2" />
+<text  x="109.71" y="671.5" ></text>
+</g>
+<g >
+<title>tick_nohz_next_event (10,778,492 samples, 0.01%)</title><rect x="566.2" y="661" width="0.1" height="15.0" fill="rgb(221,181,19)" rx="2" ry="2" />
+<text  x="569.23" y="671.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (141,141,763 samples, 0.12%)</title><rect x="118.5" y="661" width="1.4" height="15.0" fill="rgb(250,124,24)" rx="2" ry="2" />
+<text  x="121.52" y="671.5" ></text>
+</g>
+<g >
+<title>crypt_convert (1,121,803,251 samples, 0.93%)</title><rect x="43.3" y="709" width="11.0" height="15.0" fill="rgb(232,24,6)" rx="2" ry="2" />
+<text  x="46.34" y="719.5" ></text>
+</g>
+<g >
+<title>crypto_skcipher_encrypt (451,631,319 samples, 0.37%)</title><rect x="54.7" y="677" width="4.4" height="15.0" fill="rgb(225,116,34)" rx="2" ry="2" />
+<text  x="57.74" y="687.5" ></text>
+</g>
+<g >
+<title>__entry_text_start (28,558,372 samples, 0.02%)</title><rect x="396.9" y="757" width="0.2" height="15.0" fill="rgb(243,41,40)" rx="2" ry="2" />
+<text  x="399.85" y="767.5" ></text>
+</g>
+<g >
+<title>folio_alloc (11,467,811 samples, 0.01%)</title><rect x="398.2" y="453" width="0.2" height="15.0" fill="rgb(236,93,24)" rx="2" ry="2" />
+<text  x="401.24" y="463.5" ></text>
+</g>
+<g >
+<title>__do_softirq (346,350,571 samples, 0.29%)</title><rect x="388.3" y="421" width="3.3" height="15.0" fill="rgb(212,121,34)" rx="2" ry="2" />
+<text  x="391.26" y="431.5" ></text>
+</g>
+<g >
+<title>generic_update_time (47,161,130 samples, 0.04%)</title><rect x="423.9" y="581" width="0.4" height="15.0" fill="rgb(253,208,29)" rx="2" ry="2" />
+<text  x="426.86" y="591.5" ></text>
+</g>
+<g >
+<title>iv_of_dmreq (75,682,010 samples, 0.06%)</title><rect x="64.5" y="693" width="0.7" height="15.0" fill="rgb(248,94,50)" rx="2" ry="2" />
+<text  x="67.51" y="703.5" ></text>
+</g>
+<g >
+<title>timerqueue_add (15,989,169 samples, 0.01%)</title><rect x="807.0" y="533" width="0.1" height="15.0" fill="rgb(252,14,18)" rx="2" ry="2" />
+<text  x="809.99" y="543.5" ></text>
+</g>
+<g >
+<title>mod_lruvec_page_state (29,211,146 samples, 0.02%)</title><rect x="203.6" y="533" width="0.3" height="15.0" fill="rgb(234,101,26)" rx="2" ry="2" />
+<text  x="206.63" y="543.5" ></text>
+</g>
+<g >
+<title>qio_channel_readv_full_all_eof (65,411,811 samples, 0.05%)</title><rect x="401.5" y="517" width="0.6" height="15.0" fill="rgb(251,109,26)" rx="2" ry="2" />
+<text  x="404.47" y="527.5" ></text>
+</g>
+<g >
+<title>ext4_inode_csum_set (13,007,156 samples, 0.01%)</title><rect x="398.7" y="405" width="0.2" height="15.0" fill="rgb(250,136,8)" rx="2" ry="2" />
+<text  x="401.74" y="415.5" ></text>
+</g>
+<g >
+<title>ip_local_out (564,482,118 samples, 0.47%)</title><rect x="312.8" y="373" width="5.5" height="15.0" fill="rgb(245,210,32)" rx="2" ry="2" />
+<text  x="315.83" y="383.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (50,927,781 samples, 0.04%)</title><rect x="228.9" y="645" width="0.5" height="15.0" fill="rgb(234,177,33)" rx="2" ry="2" />
+<text  x="231.94" y="655.5" ></text>
+</g>
+<g >
+<title>mempool_alloc (10,420,558 samples, 0.01%)</title><rect x="184.7" y="709" width="0.1" height="15.0" fill="rgb(224,116,16)" rx="2" ry="2" />
+<text  x="187.73" y="719.5" ></text>
+</g>
+<g >
+<title>aesni_xts_encrypt (45,110,806 samples, 0.04%)</title><rect x="26.0" y="645" width="0.5" height="15.0" fill="rgb(254,136,51)" rx="2" ry="2" />
+<text  x="29.04" y="655.5" ></text>
+</g>
+<g >
+<title>do_syscall_64 (2,721,400,171 samples, 2.24%)</title><rect x="357.1" y="533" width="26.5" height="15.0" fill="rgb(238,43,45)" rx="2" ry="2" />
+<text  x="360.14" y="543.5" >d..</text>
+</g>
+<g >
+<title>aesni_xts_encrypt (30,101,361 samples, 0.02%)</title><rect x="208.9" y="645" width="0.3" height="15.0" fill="rgb(228,124,48)" rx="2" ry="2" />
+<text  x="211.95" y="655.5" ></text>
+</g>
+<g >
+<title>ip_finish_output2 (12,998,039 samples, 0.01%)</title><rect x="808.4" y="357" width="0.1" height="15.0" fill="rgb(241,108,18)" rx="2" ry="2" />
+<text  x="811.39" y="367.5" ></text>
+</g>
+<g >
+<title>do_sys_openat2 (12,200,014 samples, 0.01%)</title><rect x="399.2" y="693" width="0.1" height="15.0" fill="rgb(231,164,1)" rx="2" ry="2" />
+<text  x="402.15" y="703.5" ></text>
+</g>
+<g >
+<title>curl_mvaprintf (85,996,602 samples, 0.07%)</title><rect x="348.7" y="549" width="0.9" height="15.0" fill="rgb(229,15,6)" rx="2" ry="2" />
+<text  x="351.74" y="559.5" ></text>
+</g>
+<g >
+<title>__block_commit_write.constprop.0.isra.0 (11,496,796 samples, 0.01%)</title><rect x="398.5" y="485" width="0.1" height="15.0" fill="rgb(247,204,42)" rx="2" ry="2" />
+<text  x="401.51" y="495.5" ></text>
+</g>
+<g >
+<title>ext4_bio_write_page (20,500,733 samples, 0.02%)</title><rect x="106.8" y="565" width="0.2" height="15.0" fill="rgb(235,99,39)" rx="2" ry="2" />
+<text  x="109.79" y="575.5" ></text>
+</g>
+<g >
+<title>aesni_enc (12,470,741 samples, 0.01%)</title><rect x="130.3" y="645" width="0.1" height="15.0" fill="rgb(216,71,51)" rx="2" ry="2" />
+<text  x="133.30" y="655.5" ></text>
+</g>
+<g >
+<title>psi_flags_change (62,218,015 samples, 0.05%)</title><rect x="1118.3" y="645" width="0.6" height="15.0" fill="rgb(221,41,8)" rx="2" ry="2" />
+<text  x="1121.26" y="655.5" ></text>
+</g>
+<g >
+<title>pollwake (16,199,812 samples, 0.01%)</title><rect x="808.8" y="309" width="0.2" height="15.0" fill="rgb(213,21,49)" rx="2" ry="2" />
+<text  x="811.83" y="319.5" ></text>
+</g>
+<g >
+<title>kworker/u64:10- (1,054,676,528 samples, 0.87%)</title><rect x="33.0" y="805" width="10.3" height="15.0" fill="rgb(234,37,16)" rx="2" ry="2" />
+<text  x="36.00" y="815.5" ></text>
+</g>
+<g >
+<title>psi_task_change (57,160,115 samples, 0.05%)</title><rect x="884.3" y="245" width="0.6" height="15.0" fill="rgb(210,127,8)" rx="2" ry="2" />
+<text  x="887.35" y="255.5" ></text>
+</g>
+<g >
+<title>crypto_stats_skcipher_encrypt (185,913,001 samples, 0.15%)</title><rect x="13.3" y="661" width="1.8" height="15.0" fill="rgb(233,171,52)" rx="2" ry="2" />
+<text  x="16.34" y="671.5" ></text>
+</g>
+<g >
+<title>security_sock_rcv_skb (75,226,509 samples, 0.06%)</title><rect x="873.6" y="389" width="0.7" height="15.0" fill="rgb(243,84,1)" rx="2" ry="2" />
+<text  x="876.56" y="399.5" ></text>
+</g>
+<g >
+<title>idle_cpu (15,030,719 samples, 0.01%)</title><rect x="564.4" y="581" width="0.1" height="15.0" fill="rgb(212,203,17)" rx="2" ry="2" />
+<text  x="567.38" y="591.5" ></text>
+</g>
+<g >
+<title>release_pages (11,194,468 samples, 0.01%)</title><rect x="438.9" y="485" width="0.1" height="15.0" fill="rgb(223,163,5)" rx="2" ry="2" />
+<text  x="441.88" y="495.5" ></text>
+</g>
+<g >
+<title>memcmp (11,386,769 samples, 0.01%)</title><rect x="863.8" y="453" width="0.2" height="15.0" fill="rgb(244,133,21)" rx="2" ry="2" />
+<text  x="866.85" y="463.5" ></text>
+</g>
+<g >
+<title>ktime_get (55,587,465 samples, 0.05%)</title><rect x="322.8" y="373" width="0.5" height="15.0" fill="rgb(240,71,17)" rx="2" ry="2" />
+<text  x="325.76" y="383.5" ></text>
+</g>
+<g >
+<title>__napi_poll (30,308,585 samples, 0.03%)</title><rect x="396.1" y="405" width="0.3" height="15.0" fill="rgb(230,229,51)" rx="2" ry="2" />
+<text  x="399.10" y="415.5" ></text>
+</g>
+<g >
+<title>crypto_stats_get (156,536,870 samples, 0.13%)</title><rect x="148.9" y="661" width="1.5" height="15.0" fill="rgb(222,35,23)" rx="2" ry="2" />
+<text  x="151.86" y="671.5" ></text>
+</g>
+</g>
+</svg>