Skip to content

Instantly share code, notes, and snippets.

@kazuho
Created January 2, 2023 12:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kazuho/e8fef79568a21bcd23063c838fef1b86 to your computer and use it in GitHub Desktop.
Save kazuho/e8fef79568a21bcd23063c838fef1b86 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="2134" onload="init(evt)" viewBox="0 0 1200 2134" 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="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </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="2117" > </text>
<g id="frames">
<g >
<title>walk_component (10,437,253 samples, 0.05%)</title><rect x="969.2" y="1893" width="0.6" height="15.0" fill="rgb(235,173,21)" rx="2" ry="2" />
<text x="972.25" y="1903.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (1,912,415 samples, 0.01%)</title><rect x="610.3" y="1829" width="0.1" height="15.0" fill="rgb(240,166,37)" rx="2" ry="2" />
<text x="613.31" y="1839.5" ></text>
</g>
<g >
<title>ip_forward (35,056,257 samples, 0.16%)</title><rect x="535.3" y="1877" width="1.9" height="15.0" fill="rgb(224,92,29)" rx="2" ry="2" />
<text x="538.26" y="1887.5" ></text>
</g>
<g >
<title>sdhci_irq (1,946,836 samples, 0.01%)</title><rect x="995.9" y="1845" width="0.1" height="15.0" fill="rgb(248,4,32)" rx="2" ry="2" />
<text x="998.89" y="1855.5" ></text>
</g>
<g >
<title>main (84,711,270 samples, 0.40%)</title><rect x="71.7" y="2037" width="4.7" height="15.0" fill="rgb(250,13,23)" rx="2" ry="2" />
<text x="74.73" y="2047.5" ></text>
</g>
<g >
<title>napi_complete_done (4,634,264 samples, 0.02%)</title><rect x="958.4" y="1925" width="0.2" height="15.0" fill="rgb(254,165,2)" rx="2" ry="2" />
<text x="961.38" y="1935.5" ></text>
</g>
<g >
<title>copy_process (3,321,518 samples, 0.02%)</title><rect x="1178.0" y="1957" width="0.1" height="15.0" fill="rgb(234,186,46)" rx="2" ry="2" />
<text x="1180.95" y="1967.5" ></text>
</g>
<g >
<title>ipv6_conntrack_in (5,758,003 samples, 0.03%)</title><rect x="1014.5" y="1717" width="0.3" height="15.0" fill="rgb(252,107,9)" rx="2" ry="2" />
<text x="1017.48" y="1727.5" ></text>
</g>
<g >
<title>user_path_at_empty (27,453,090 samples, 0.13%)</title><rect x="968.9" y="1957" width="1.5" height="15.0" fill="rgb(244,22,35)" rx="2" ry="2" />
<text x="971.88" y="1967.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="725" width="0.2" height="15.0" fill="rgb(234,101,47)" rx="2" ry="2" />
<text x="897.72" y="735.5" ></text>
</g>
<g >
<title>__alloc_file (3,463,676 samples, 0.02%)</title><rect x="953.1" y="1893" width="0.2" height="15.0" fill="rgb(208,135,33)" rx="2" ry="2" />
<text x="956.12" y="1903.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (12,367,592 samples, 0.06%)</title><rect x="57.2" y="1861" width="0.7" height="15.0" fill="rgb(206,33,19)" rx="2" ry="2" />
<text x="60.24" y="1871.5" ></text>
</g>
<g >
<title>__update_blocked_fair (3,240,350 samples, 0.02%)</title><rect x="525.1" y="1925" width="0.1" height="15.0" fill="rgb(213,23,19)" rx="2" ry="2" />
<text x="528.07" y="1935.5" ></text>
</g>
<g >
<title>do_read_fault (15,390,128 samples, 0.07%)</title><rect x="942.8" y="1909" width="0.9" height="15.0" fill="rgb(230,179,37)" rx="2" ry="2" />
<text x="945.83" y="1919.5" ></text>
</g>
<g >
<title>handle_irq_event (2,607,902 samples, 0.01%)</title><rect x="816.9" y="1685" width="0.2" height="15.0" fill="rgb(214,213,7)" rx="2" ry="2" />
<text x="819.95" y="1695.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (2,317,355 samples, 0.01%)</title><rect x="850.8" y="1845" width="0.2" height="15.0" fill="rgb(244,68,4)" rx="2" ry="2" />
<text x="853.83" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (161,099,977 samples, 0.75%)</title><rect x="393.5" y="1461" width="8.8" height="15.0" fill="rgb(224,212,34)" rx="2" ry="2" />
<text x="396.46" y="1471.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1285" width="0.3" height="15.0" fill="rgb(239,25,51)" rx="2" ry="2" />
<text x="897.70" y="1295.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (5,008,039 samples, 0.02%)</title><rect x="926.2" y="1429" width="0.2" height="15.0" fill="rgb(246,218,6)" rx="2" ry="2" />
<text x="929.15" y="1439.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,298,305 samples, 0.01%)</title><rect x="888.7" y="1957" width="0.1" height="15.0" fill="rgb(226,11,5)" rx="2" ry="2" />
<text x="891.66" y="1967.5" ></text>
</g>
<g >
<title>[libgio-2.0.so.0.7200.4] (2,219,636 samples, 0.01%)</title><rect x="43.5" y="2005" width="0.1" height="15.0" fill="rgb(243,51,33)" rx="2" ry="2" />
<text x="46.51" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (135,097,038 samples, 0.63%)</title><rect x="964.4" y="2053" width="7.5" height="15.0" fill="rgb(219,201,30)" rx="2" ry="2" />
<text x="967.44" y="2063.5" ></text>
</g>
<g >
<title>common_interrupt (6,723,643 samples, 0.03%)</title><rect x="629.2" y="1861" width="0.4" height="15.0" fill="rgb(243,134,38)" rx="2" ry="2" />
<text x="632.24" y="1871.5" ></text>
</g>
<g >
<title>__remove_hrtimer (1,848,832 samples, 0.01%)</title><rect x="555.1" y="1957" width="0.1" height="15.0" fill="rgb(243,32,10)" rx="2" ry="2" />
<text x="558.09" y="1967.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1493" width="0.5" height="15.0" fill="rgb(238,184,24)" rx="2" ry="2" />
<text x="18.42" y="1503.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,002,123 samples, 0.01%)</title><rect x="548.1" y="1829" width="0.2" height="15.0" fill="rgb(207,4,33)" rx="2" ry="2" />
<text x="551.11" y="1839.5" ></text>
</g>
<g >
<title>kfree_skbmem (4,953,992 samples, 0.02%)</title><rect x="417.3" y="1797" width="0.3" height="15.0" fill="rgb(224,204,7)" rx="2" ry="2" />
<text x="420.31" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (4,523,661 samples, 0.02%)</title><rect x="20.4" y="421" width="0.3" height="15.0" fill="rgb(224,213,42)" rx="2" ry="2" />
<text x="23.41" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (1,839,238 samples, 0.01%)</title><rect x="18.7" y="2021" width="0.1" height="15.0" fill="rgb(224,189,22)" rx="2" ry="2" />
<text x="21.71" y="2031.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (10,542,279 samples, 0.05%)</title><rect x="428.9" y="1845" width="0.6" height="15.0" fill="rgb(218,19,10)" rx="2" ry="2" />
<text x="431.89" y="1855.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,853,040 samples, 0.02%)</title><rect x="913.1" y="1477" width="0.2" height="15.0" fill="rgb(208,122,16)" rx="2" ry="2" />
<text x="916.13" y="1487.5" ></text>
</g>
<g >
<title>handle_irq_event (2,253,932 samples, 0.01%)</title><rect x="610.1" y="1893" width="0.2" height="15.0" fill="rgb(253,194,14)" rx="2" ry="2" />
<text x="613.14" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,839,238 samples, 0.01%)</title><rect x="18.7" y="2037" width="0.1" height="15.0" fill="rgb(236,8,0)" rx="2" ry="2" />
<text x="21.71" y="2047.5" ></text>
</g>
<g >
<title>ipv6_rcv (9,077,483 samples, 0.04%)</title><rect x="557.2" y="1861" width="0.5" height="15.0" fill="rgb(213,4,17)" rx="2" ry="2" />
<text x="560.22" y="1871.5" ></text>
</g>
<g >
<title>__qdisc_run (3,028,739 samples, 0.01%)</title><rect x="666.6" y="1573" width="0.2" height="15.0" fill="rgb(233,182,10)" rx="2" ry="2" />
<text x="669.63" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (1,914,271 samples, 0.01%)</title><rect x="51.7" y="1813" width="0.1" height="15.0" fill="rgb(216,147,5)" rx="2" ry="2" />
<text x="54.72" y="1823.5" ></text>
</g>
<g >
<title>irq_exit_rcu (74,961,600 samples, 0.35%)</title><rect x="449.4" y="1973" width="4.2" height="15.0" fill="rgb(218,188,10)" rx="2" ry="2" />
<text x="452.45" y="1983.5" ></text>
</g>
<g >
<title>common_interrupt (3,427,958 samples, 0.02%)</title><rect x="833.4" y="1989" width="0.2" height="15.0" fill="rgb(227,176,4)" rx="2" ry="2" />
<text x="836.44" y="1999.5" ></text>
</g>
<g >
<title>ip6_pol_route_input (1,901,748 samples, 0.01%)</title><rect x="514.7" y="1749" width="0.1" height="15.0" fill="rgb(219,123,28)" rx="2" ry="2" />
<text x="517.69" y="1759.5" ></text>
</g>
<g >
<title>ip_forward (86,501,327 samples, 0.40%)</title><rect x="1027.3" y="1717" width="4.8" height="15.0" fill="rgb(223,206,33)" rx="2" ry="2" />
<text x="1030.32" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1477" width="0.3" height="15.0" fill="rgb(214,175,0)" rx="2" ry="2" />
<text x="23.41" y="1487.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="741" width="0.3" height="15.0" fill="rgb(220,179,46)" rx="2" ry="2" />
<text x="23.41" y="751.5" ></text>
</g>
<g >
<title>[snap-exec] (33,473,968 samples, 0.16%)</title><rect x="873.5" y="1861" width="1.8" height="15.0" fill="rgb(224,200,29)" rx="2" ry="2" />
<text x="876.46" y="1871.5" ></text>
</g>
<g >
<title>__page_cache_alloc (9,792,831 samples, 0.05%)</title><rect x="73.6" y="1733" width="0.5" height="15.0" fill="rgb(235,214,37)" rx="2" ry="2" />
<text x="76.60" y="1743.5" ></text>
</g>
<g >
<title>packet_rcv (1,897,513 samples, 0.01%)</title><rect x="541.4" y="1621" width="0.1" height="15.0" fill="rgb(233,87,23)" rx="2" ry="2" />
<text x="544.40" y="1631.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,301,327 samples, 0.01%)</title><rect x="878.9" y="2021" width="0.1" height="15.0" fill="rgb(215,227,50)" rx="2" ry="2" />
<text x="881.87" y="2031.5" ></text>
</g>
<g >
<title>napi_gro_receive (58,642,113 samples, 0.27%)</title><rect x="685.0" y="1781" width="3.3" height="15.0" fill="rgb(221,197,50)" rx="2" ry="2" />
<text x="688.03" y="1791.5" ></text>
</g>
<g >
<title>__fib_lookup (4,700,608 samples, 0.02%)</title><rect x="1002.4" y="1637" width="0.2" height="15.0" fill="rgb(207,99,45)" rx="2" ry="2" />
<text x="1005.37" y="1647.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (2,715,696 samples, 0.01%)</title><rect x="1068.2" y="1813" width="0.2" height="15.0" fill="rgb(254,169,9)" rx="2" ry="2" />
<text x="1071.24" y="1823.5" ></text>
</g>
<g >
<title>nf_hook_slow (23,999,679 samples, 0.11%)</title><rect x="1046.1" y="1685" width="1.3" height="15.0" fill="rgb(241,128,1)" rx="2" ry="2" />
<text x="1049.10" y="1695.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,856,147 samples, 0.01%)</title><rect x="627.7" y="1797" width="0.1" height="15.0" fill="rgb(235,186,2)" rx="2" ry="2" />
<text x="630.71" y="1807.5" ></text>
</g>
<g >
<title>__nf_ct_refresh_acct (1,870,106 samples, 0.01%)</title><rect x="822.8" y="1765" width="0.1" height="15.0" fill="rgb(240,165,9)" rx="2" ry="2" />
<text x="825.82" y="1775.5" ></text>
</g>
<g >
<title>validate_xmit_skb (4,966,917 samples, 0.02%)</title><rect x="453.1" y="1877" width="0.2" height="15.0" fill="rgb(233,205,6)" rx="2" ry="2" />
<text x="456.06" y="1887.5" ></text>
</g>
<g >
<title>aa_dfa_match (1,923,009 samples, 0.01%)</title><rect x="953.4" y="1797" width="0.1" height="15.0" fill="rgb(224,115,26)" rx="2" ry="2" />
<text x="956.40" y="1807.5" ></text>
</g>
<g >
<title>net_tx_action (14,346,717 samples, 0.07%)</title><rect x="1057.8" y="1877" width="0.8" height="15.0" fill="rgb(236,98,29)" rx="2" ry="2" />
<text x="1060.79" y="1887.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,311,476 samples, 0.01%)</title><rect x="927.0" y="1573" width="0.1" height="15.0" fill="rgb(213,25,52)" rx="2" ry="2" />
<text x="930.00" y="1583.5" ></text>
</g>
<g >
<title>do_fault (15,358,305 samples, 0.07%)</title><rect x="940.1" y="1893" width="0.8" height="15.0" fill="rgb(218,100,39)" rx="2" ry="2" />
<text x="943.08" y="1903.5" ></text>
</g>
<g >
<title>ip_forward (4,158,270 samples, 0.02%)</title><rect x="556.6" y="1877" width="0.2" height="15.0" fill="rgb(227,59,28)" rx="2" ry="2" />
<text x="559.62" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (4,803,619 samples, 0.02%)</title><rect x="543.9" y="1781" width="0.3" height="15.0" fill="rgb(239,74,7)" rx="2" ry="2" />
<text x="546.89" y="1791.5" ></text>
</g>
<g >
<title>ip6_output (3,991,464 samples, 0.02%)</title><rect x="501.9" y="1765" width="0.2" height="15.0" fill="rgb(228,205,47)" rx="2" ry="2" />
<text x="504.87" y="1775.5" ></text>
</g>
<g >
<title>[snap] (8,775,855 samples, 0.04%)</title><rect x="900.7" y="1669" width="0.4" height="15.0" fill="rgb(248,178,46)" rx="2" ry="2" />
<text x="903.65" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (2,245,742 samples, 0.01%)</title><rect x="20.4" y="229" width="0.1" height="15.0" fill="rgb(244,208,9)" rx="2" ry="2" />
<text x="23.41" y="239.5" ></text>
</g>
<g >
<title>rtl8169_poll (6,933,929 samples, 0.03%)</title><rect x="1102.3" y="1829" width="0.4" height="15.0" fill="rgb(216,63,11)" rx="2" ry="2" />
<text x="1105.31" y="1839.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,238,361 samples, 0.01%)</title><rect x="586.1" y="1845" width="0.2" height="15.0" fill="rgb(250,204,18)" rx="2" ry="2" />
<text x="589.14" y="1855.5" ></text>
</g>
<g >
<title>ipv6_gro_receive (8,353,165 samples, 0.04%)</title><rect x="419.0" y="1829" width="0.4" height="15.0" fill="rgb(225,206,17)" rx="2" ry="2" />
<text x="421.98" y="1839.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,600,107 samples, 0.01%)</title><rect x="642.1" y="1829" width="0.2" height="15.0" fill="rgb(248,118,52)" rx="2" ry="2" />
<text x="645.12" y="1839.5" ></text>
</g>
<g >
<title>__napi_poll (1,815,500 samples, 0.01%)</title><rect x="886.1" y="1781" width="0.1" height="15.0" fill="rgb(214,82,20)" rx="2" ry="2" />
<text x="889.07" y="1791.5" ></text>
</g>
<g >
<title>__x64_sys_clone (38,014,895 samples, 0.18%)</title><rect x="25.2" y="2005" width="2.1" height="15.0" fill="rgb(222,79,1)" rx="2" ry="2" />
<text x="28.17" y="2015.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (3,037,225 samples, 0.01%)</title><rect x="18.5" y="2037" width="0.2" height="15.0" fill="rgb(226,6,54)" rx="2" ry="2" />
<text x="21.52" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (53,990,279 samples, 0.25%)</title><rect x="729.4" y="1429" width="3.0" height="15.0" fill="rgb(206,108,21)" rx="2" ry="2" />
<text x="732.45" y="1439.5" ></text>
</g>
<g >
<title>dev_get_by_index_rcu (1,848,315 samples, 0.01%)</title><rect x="738.8" y="1541" width="0.1" height="15.0" fill="rgb(248,3,10)" rx="2" ry="2" />
<text x="741.78" y="1551.5" ></text>
</g>
<g >
<title>netif_skb_features (3,027,182 samples, 0.01%)</title><rect x="727.8" y="1397" width="0.2" height="15.0" fill="rgb(238,23,42)" rx="2" ry="2" />
<text x="730.85" y="1407.5" ></text>
</g>
<g >
<title>ip_output (22,045,213 samples, 0.10%)</title><rect x="535.4" y="1845" width="1.2" height="15.0" fill="rgb(225,183,46)" rx="2" ry="2" />
<text x="538.38" y="1855.5" ></text>
</g>
<g >
<title>acpi_ex_store (4,584,639 samples, 0.02%)</title><rect x="62.6" y="1717" width="0.3" height="15.0" fill="rgb(222,102,19)" rx="2" ry="2" />
<text x="65.63" y="1727.5" ></text>
</g>
<g >
<title>rtl8169_poll (8,313,090 samples, 0.04%)</title><rect x="835.0" y="1893" width="0.5" height="15.0" fill="rgb(247,76,54)" rx="2" ry="2" />
<text x="838.04" y="1903.5" ></text>
</g>
<g >
<title>__pm_runtime_resume (3,071,869 samples, 0.01%)</title><rect x="64.1" y="1829" width="0.2" height="15.0" fill="rgb(210,182,37)" rx="2" ry="2" />
<text x="67.15" y="1839.5" ></text>
</g>
<g >
<title>common_interrupt (3,353,917 samples, 0.02%)</title><rect x="816.9" y="1733" width="0.2" height="15.0" fill="rgb(226,79,31)" rx="2" ry="2" />
<text x="819.93" y="1743.5" ></text>
</g>
<g >
<title>rtl8169_tso_csum_v2.constprop.0 (1,894,761 samples, 0.01%)</title><rect x="695.6" y="1749" width="0.1" height="15.0" fill="rgb(238,193,35)" rx="2" ry="2" />
<text x="698.57" y="1759.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,247,105 samples, 0.01%)</title><rect x="605.5" y="1877" width="0.1" height="15.0" fill="rgb(228,214,6)" rx="2" ry="2" />
<text x="608.50" y="1887.5" ></text>
</g>
<g >
<title>execute_command_internal (3,024,277 samples, 0.01%)</title><rect x="38.9" y="2037" width="0.2" height="15.0" fill="rgb(231,56,6)" rx="2" ry="2" />
<text x="41.91" y="2047.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (1,870,085 samples, 0.01%)</title><rect x="610.1" y="1877" width="0.1" height="15.0" fill="rgb(238,98,42)" rx="2" ry="2" />
<text x="613.14" y="1887.5" ></text>
</g>
<g >
<title>neigh_resolve_output (6,207,818 samples, 0.03%)</title><rect x="1100.3" y="1621" width="0.3" height="15.0" fill="rgb(220,192,45)" rx="2" ry="2" />
<text x="1103.27" y="1631.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,286,063 samples, 0.01%)</title><rect x="599.7" y="1893" width="0.1" height="15.0" fill="rgb(227,59,47)" rx="2" ry="2" />
<text x="602.66" y="1903.5" ></text>
</g>
<g >
<title>put_cred_rcu (3,481,649 samples, 0.02%)</title><rect x="68.3" y="1925" width="0.2" height="15.0" fill="rgb(242,0,1)" rx="2" ry="2" />
<text x="71.27" y="1935.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1,990,607 samples, 0.01%)</title><rect x="71.9" y="1893" width="0.1" height="15.0" fill="rgb(214,86,50)" rx="2" ry="2" />
<text x="74.91" y="1903.5" ></text>
</g>
<g >
<title>dict_repeat (3,098,781 samples, 0.01%)</title><rect x="31.5" y="1589" width="0.2" height="15.0" fill="rgb(215,223,53)" rx="2" ry="2" />
<text x="34.49" y="1599.5" ></text>
</g>
<g >
<title>nft_do_chain (5,460,109 samples, 0.03%)</title><rect x="1031.8" y="1669" width="0.3" height="15.0" fill="rgb(235,75,2)" rx="2" ry="2" />
<text x="1034.76" y="1679.5" ></text>
</g>
<g >
<title>[bash] (4,546,253 samples, 0.02%)</title><rect x="37.2" y="2021" width="0.3" height="15.0" fill="rgb(219,196,51)" rx="2" ry="2" />
<text x="40.23" y="2031.5" ></text>
</g>
<g >
<title>nf_nat_ipv6_in (2,246,226 samples, 0.01%)</title><rect x="680.8" y="1701" width="0.1" height="15.0" fill="rgb(246,172,17)" rx="2" ry="2" />
<text x="683.76" y="1711.5" ></text>
</g>
<g >
<title>irq_exit_rcu (103,042,821 samples, 0.48%)</title><rect x="556.2" y="2005" width="5.7" height="15.0" fill="rgb(233,125,47)" rx="2" ry="2" />
<text x="559.21" y="2015.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (2,708,924 samples, 0.01%)</title><rect x="972.5" y="1909" width="0.1" height="15.0" fill="rgb(236,73,43)" rx="2" ry="2" />
<text x="975.46" y="1919.5" ></text>
</g>
<g >
<title>__napi_poll (1,902,089 samples, 0.01%)</title><rect x="645.6" y="1781" width="0.1" height="15.0" fill="rgb(223,135,41)" rx="2" ry="2" />
<text x="648.57" y="1791.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (5,403,520 samples, 0.03%)</title><rect x="60.8" y="1877" width="0.3" height="15.0" fill="rgb(233,45,31)" rx="2" ry="2" />
<text x="63.84" y="1887.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,289,990 samples, 0.01%)</title><rect x="606.9" y="1973" width="0.1" height="15.0" fill="rgb(212,147,2)" rx="2" ry="2" />
<text x="609.91" y="1983.5" ></text>
</g>
<g >
<title>net_rx_action (1,843,881 samples, 0.01%)</title><rect x="72.8" y="1701" width="0.1" height="15.0" fill="rgb(221,113,11)" rx="2" ry="2" />
<text x="75.76" y="1711.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (26,843,867 samples, 0.13%)</title><rect x="834.2" y="2005" width="1.5" height="15.0" fill="rgb(211,99,40)" rx="2" ry="2" />
<text x="837.25" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1733" width="0.3" height="15.0" fill="rgb(214,73,1)" rx="2" ry="2" />
<text x="23.41" y="1743.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,044,402 samples, 0.01%)</title><rect x="564.2" y="1957" width="0.2" height="15.0" fill="rgb(221,76,49)" rx="2" ry="2" />
<text x="567.23" y="1967.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (2,297,165 samples, 0.01%)</title><rect x="1042.5" y="1493" width="0.1" height="15.0" fill="rgb(210,175,2)" rx="2" ry="2" />
<text x="1045.50" y="1503.5" ></text>
</g>
<g >
<title>[snap] (125,441,632 samples, 0.59%)</title><rect x="880.8" y="1925" width="6.9" height="15.0" fill="rgb(249,46,38)" rx="2" ry="2" />
<text x="883.82" y="1935.5" ></text>
</g>
<g >
<title>napi_complete_done (35,969,473 samples, 0.17%)</title><rect x="1099.2" y="1813" width="2.0" height="15.0" fill="rgb(224,37,28)" rx="2" ry="2" />
<text x="1102.23" y="1823.5" ></text>
</g>
<g >
<title>[bash] (24,172,948 samples, 0.11%)</title><rect x="30.0" y="2037" width="1.3" height="15.0" fill="rgb(215,0,34)" rx="2" ry="2" />
<text x="32.97" y="2047.5" ></text>
</g>
<g >
<title>schedule (1,877,618 samples, 0.01%)</title><rect x="860.9" y="1925" width="0.1" height="15.0" fill="rgb(211,187,19)" rx="2" ry="2" />
<text x="863.85" y="1935.5" ></text>
</g>
<g >
<title>user_path_at_empty (6,148,256 samples, 0.03%)</title><rect x="35.8" y="1941" width="0.3" height="15.0" fill="rgb(227,65,21)" rx="2" ry="2" />
<text x="38.78" y="1951.5" ></text>
</g>
<g >
<title>rtl8169_poll (2,173,236 samples, 0.01%)</title><rect x="641.3" y="1749" width="0.1" height="15.0" fill="rgb(222,204,9)" rx="2" ry="2" />
<text x="644.28" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (4,188,010 samples, 0.02%)</title><rect x="653.1" y="1685" width="0.2" height="15.0" fill="rgb(246,115,40)" rx="2" ry="2" />
<text x="656.05" y="1695.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (37,277,239 samples, 0.17%)</title><rect x="952.9" y="2021" width="2.1" height="15.0" fill="rgb(212,162,28)" rx="2" ry="2" />
<text x="955.91" y="2031.5" ></text>
</g>
<g >
<title>mmput (2,310,102 samples, 0.01%)</title><rect x="70.6" y="1957" width="0.2" height="15.0" fill="rgb(243,48,29)" rx="2" ry="2" />
<text x="73.63" y="1967.5" ></text>
</g>
<g >
<title>handle_pte_fault (13,422,184 samples, 0.06%)</title><rect x="24.2" y="1957" width="0.7" height="15.0" fill="rgb(232,44,30)" rx="2" ry="2" />
<text x="27.15" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (162,527,639 samples, 0.76%)</title><rect x="393.4" y="1557" width="9.0" height="15.0" fill="rgb(240,9,23)" rx="2" ry="2" />
<text x="396.44" y="1567.5" ></text>
</g>
<g >
<title>rtl8169_poll (23,254,064 samples, 0.11%)</title><rect x="424.6" y="1893" width="1.3" height="15.0" fill="rgb(235,10,15)" rx="2" ry="2" />
<text x="427.60" y="1903.5" ></text>
</g>
<g >
<title>getname_flags.part.0 (1,927,213 samples, 0.01%)</title><rect x="845.6" y="1925" width="0.1" height="15.0" fill="rgb(231,44,38)" rx="2" ry="2" />
<text x="848.55" y="1935.5" ></text>
</g>
<g >
<title>validate_xmit_skb (3,434,915 samples, 0.02%)</title><rect x="752.9" y="1621" width="0.2" height="15.0" fill="rgb(247,104,44)" rx="2" ry="2" />
<text x="755.92" y="1631.5" ></text>
</g>
<g >
<title>[snapd] (2,304,300 samples, 0.01%)</title><rect x="975.0" y="1525" width="0.1" height="15.0" fill="rgb(220,59,27)" rx="2" ry="2" />
<text x="977.97" y="1535.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,988,776 samples, 0.01%)</title><rect x="610.6" y="1941" width="0.1" height="15.0" fill="rgb(246,149,31)" rx="2" ry="2" />
<text x="613.58" y="1951.5" ></text>
</g>
<g >
<title>do_sys_openat2 (9,509,332 samples, 0.04%)</title><rect x="1174.7" y="1973" width="0.5" height="15.0" fill="rgb(226,82,27)" rx="2" ry="2" />
<text x="1177.69" y="1983.5" ></text>
</g>
<g >
<title>ip6_pol_route (2,051,429 samples, 0.01%)</title><rect x="1062.8" y="1637" width="0.1" height="15.0" fill="rgb(253,46,3)" rx="2" ry="2" />
<text x="1065.79" y="1647.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,388,744 samples, 0.03%)</title><rect x="879.1" y="2037" width="0.3" height="15.0" fill="rgb(218,229,52)" rx="2" ry="2" />
<text x="882.11" y="2047.5" ></text>
</g>
<g >
<title>__blk_mq_run_hw_queue (14,492,699 samples, 0.07%)</title><rect x="63.7" y="1973" width="0.8" height="15.0" fill="rgb(227,194,9)" rx="2" ry="2" />
<text x="66.68" y="1983.5" ></text>
</g>
<g >
<title>common_interrupt (1,904,685 samples, 0.01%)</title><rect x="976.5" y="1941" width="0.1" height="15.0" fill="rgb(214,110,18)" rx="2" ry="2" />
<text x="979.50" y="1951.5" ></text>
</g>
<g >
<title>neigh_connected_output (15,629,293 samples, 0.07%)</title><rect x="535.5" y="1781" width="0.9" height="15.0" fill="rgb(218,214,26)" rx="2" ry="2" />
<text x="538.55" y="1791.5" ></text>
</g>
<g >
<title>schedule (43,245,967 samples, 0.20%)</title><rect x="583.6" y="1909" width="2.4" height="15.0" fill="rgb(249,38,12)" rx="2" ry="2" />
<text x="586.63" y="1919.5" ></text>
</g>
<g >
<title>common_interrupt (1,887,183 samples, 0.01%)</title><rect x="400.5" y="197" width="0.1" height="15.0" fill="rgb(237,23,5)" rx="2" ry="2" />
<text x="403.51" y="207.5" ></text>
</g>
<g >
<title>ip_forward_finish (51,784,261 samples, 0.24%)</title><rect x="649.7" y="1733" width="2.9" height="15.0" fill="rgb(239,187,47)" rx="2" ry="2" />
<text x="652.72" y="1743.5" ></text>
</g>
<g >
<title>skb_free_head (5,198,928 samples, 0.02%)</title><rect x="446.9" y="1845" width="0.2" height="15.0" fill="rgb(246,142,48)" rx="2" ry="2" />
<text x="449.86" y="1855.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (49,846,724 samples, 0.23%)</title><rect x="470.1" y="1829" width="2.7" height="15.0" fill="rgb(230,84,29)" rx="2" ry="2" />
<text x="473.08" y="1839.5" ></text>
</g>
<g >
<title>do_sys_openat2 (2,695,272 samples, 0.01%)</title><rect x="957.6" y="1973" width="0.2" height="15.0" fill="rgb(230,82,25)" rx="2" ry="2" />
<text x="960.62" y="1983.5" ></text>
</g>
<g >
<title>walk_component (21,651,142 samples, 0.10%)</title><rect x="853.6" y="1893" width="1.2" height="15.0" fill="rgb(247,196,37)" rx="2" ry="2" />
<text x="856.56" y="1903.5" ></text>
</g>
<g >
<title>__napi_poll (3,074,185 samples, 0.01%)</title><rect x="905.6" y="1861" width="0.2" height="15.0" fill="rgb(232,62,54)" rx="2" ry="2" />
<text x="908.64" y="1871.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (175,007,653 samples, 0.82%)</title><rect x="1037.8" y="1717" width="9.6" height="15.0" fill="rgb(250,184,38)" rx="2" ry="2" />
<text x="1040.78" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="725" width="0.3" height="15.0" fill="rgb(209,228,32)" rx="2" ry="2" />
<text x="23.41" y="735.5" ></text>
</g>
<g >
<title>rtl8169_poll (2,286,063 samples, 0.01%)</title><rect x="599.7" y="1829" width="0.1" height="15.0" fill="rgb(219,7,22)" rx="2" ry="2" />
<text x="602.66" y="1839.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3,433,129 samples, 0.02%)</title><rect x="488.7" y="1797" width="0.2" height="15.0" fill="rgb(229,14,4)" rx="2" ry="2" />
<text x="491.66" y="1807.5" ></text>
</g>
<g >
<title>ip6_output (2,591,842 samples, 0.01%)</title><rect x="547.7" y="1797" width="0.1" height="15.0" fill="rgb(247,132,24)" rx="2" ry="2" />
<text x="550.66" y="1807.5" ></text>
</g>
<g >
<title>get_user_pages_remote (1,927,463 samples, 0.01%)</title><rect x="35.4" y="1925" width="0.1" height="15.0" fill="rgb(229,69,17)" rx="2" ry="2" />
<text x="38.40" y="1935.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="693" width="0.5" height="15.0" fill="rgb(233,152,0)" rx="2" ry="2" />
<text x="18.42" y="703.5" ></text>
</g>
<g >
<title>do_dentry_open (4,237,260 samples, 0.02%)</title><rect x="843.2" y="1893" width="0.2" height="15.0" fill="rgb(247,84,22)" rx="2" ry="2" />
<text x="846.22" y="1903.5" ></text>
</g>
<g >
<title>kthread (16,754,806 samples, 0.08%)</title><rect x="60.3" y="2037" width="0.9" height="15.0" fill="rgb(243,40,32)" rx="2" ry="2" />
<text x="63.29" y="2047.5" ></text>
</g>
<g >
<title>sdhci_send_tuning (2,173,180 samples, 0.01%)</title><rect x="63.8" y="1749" width="0.1" height="15.0" fill="rgb(245,6,43)" rx="2" ry="2" />
<text x="66.81" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (166,211,774 samples, 0.78%)</title><rect x="393.3" y="1749" width="9.2" height="15.0" fill="rgb(243,141,2)" rx="2" ry="2" />
<text x="396.34" y="1759.5" ></text>
</g>
<g >
<title>kmalloc_reserve (3,015,060 samples, 0.01%)</title><rect x="1063.6" y="1781" width="0.2" height="15.0" fill="rgb(235,208,19)" rx="2" ry="2" />
<text x="1066.59" y="1791.5" ></text>
</g>
<g >
<title>do_filp_open (1,919,849 samples, 0.01%)</title><rect x="857.8" y="1941" width="0.1" height="15.0" fill="rgb(209,24,18)" rx="2" ry="2" />
<text x="860.79" y="1951.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,262,584 samples, 0.02%)</title><rect x="1111.5" y="1909" width="0.1" height="15.0" fill="rgb(234,200,26)" rx="2" ry="2" />
<text x="1114.47" y="1919.5" ></text>
</g>
<g >
<title>nft_do_chain_ipv6 (3,443,588 samples, 0.02%)</title><rect x="668.5" y="1685" width="0.2" height="15.0" fill="rgb(211,164,11)" rx="2" ry="2" />
<text x="671.54" y="1695.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (12,238,336 samples, 0.06%)</title><rect x="479.7" y="1621" width="0.7" height="15.0" fill="rgb(215,87,12)" rx="2" ry="2" />
<text x="482.69" y="1631.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (34,508,075 samples, 0.16%)</title><rect x="1099.3" y="1749" width="1.9" height="15.0" fill="rgb(228,162,41)" rx="2" ry="2" />
<text x="1102.31" y="1759.5" ></text>
</g>
<g >
<title>[snap-seccomp] (24,537,810 samples, 0.11%)</title><rect x="876.9" y="2005" width="1.4" height="15.0" fill="rgb(228,55,12)" rx="2" ry="2" />
<text x="879.91" y="2015.5" ></text>
</g>
<g >
<title>__napi_poll (6,125,273 samples, 0.03%)</title><rect x="588.2" y="1813" width="0.3" height="15.0" fill="rgb(234,213,25)" rx="2" ry="2" />
<text x="591.17" y="1823.5" ></text>
</g>
<g >
<title>[snap-exec] (10,390,013 samples, 0.05%)</title><rect x="874.0" y="1717" width="0.5" height="15.0" fill="rgb(248,1,6)" rx="2" ry="2" />
<text x="876.97" y="1727.5" ></text>
</g>
<g >
<title>lzma_len (1,923,970 samples, 0.01%)</title><rect x="956.6" y="1605" width="0.1" height="15.0" fill="rgb(251,121,16)" rx="2" ry="2" />
<text x="959.64" y="1615.5" ></text>
</g>
<g >
<title>exit_mmap (20,175,679 samples, 0.09%)</title><rect x="27.3" y="1845" width="1.1" height="15.0" fill="rgb(242,82,32)" rx="2" ry="2" />
<text x="30.30" y="1855.5" ></text>
</g>
<g >
<title>path_openat (1,919,849 samples, 0.01%)</title><rect x="857.8" y="1925" width="0.1" height="15.0" fill="rgb(242,182,29)" rx="2" ry="2" />
<text x="860.79" y="1935.5" ></text>
</g>
<g >
<title>shrink_node_memcgs (15,050,777 samples, 0.07%)</title><rect x="60.4" y="1973" width="0.8" height="15.0" fill="rgb(231,26,42)" rx="2" ry="2" />
<text x="63.35" y="1983.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (278,031,072 samples, 1.30%)</title><rect x="1034.2" y="1765" width="15.3" height="15.0" fill="rgb(245,207,47)" rx="2" ry="2" />
<text x="1037.19" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (116,731,615 samples, 0.55%)</title><rect x="897.8" y="2037" width="6.4" height="15.0" fill="rgb(205,144,28)" rx="2" ry="2" />
<text x="900.81" y="2047.5" ></text>
</g>
<g >
<title>should_failslab (2,246,746 samples, 0.01%)</title><rect x="639.7" y="1845" width="0.1" height="15.0" fill="rgb(240,168,17)" rx="2" ry="2" />
<text x="642.69" y="1855.5" ></text>
</g>
<g >
<title>ip_forward (28,064,916 samples, 0.13%)</title><rect x="1002.9" y="1733" width="1.6" height="15.0" fill="rgb(253,9,18)" rx="2" ry="2" />
<text x="1005.94" y="1743.5" ></text>
</g>
<g >
<title>acpi_device_set_power (19,748,151 samples, 0.09%)</title><rect x="62.3" y="1845" width="1.1" height="15.0" fill="rgb(231,171,26)" rx="2" ry="2" />
<text x="65.29" y="1855.5" ></text>
</g>
<g >
<title>kthread (11,897,627 samples, 0.06%)</title><rect x="840.1" y="2037" width="0.7" height="15.0" fill="rgb(224,13,20)" rx="2" ry="2" />
<text x="843.14" y="2047.5" ></text>
</g>
<g >
<title>clockevents_program_event (6,084,836 samples, 0.03%)</title><rect x="519.1" y="1829" width="0.4" height="15.0" fill="rgb(241,37,50)" rx="2" ry="2" />
<text x="522.12" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_clone3 (4,119,246 samples, 0.02%)</title><rect x="942.4" y="2005" width="0.2" height="15.0" fill="rgb(224,126,36)" rx="2" ry="2" />
<text x="945.39" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (161,099,977 samples, 0.75%)</title><rect x="393.5" y="1381" width="8.8" height="15.0" fill="rgb(252,107,6)" rx="2" ry="2" />
<text x="396.46" y="1391.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (8,500,256 samples, 0.04%)</title><rect x="776.6" y="1797" width="0.5" height="15.0" fill="rgb(245,144,23)" rx="2" ry="2" />
<text x="779.65" y="1807.5" ></text>
</g>
<g >
<title>find_exception (2,958,083 samples, 0.01%)</title><rect x="802.8" y="1765" width="0.1" height="15.0" fill="rgb(212,71,44)" rx="2" ry="2" />
<text x="805.76" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1717" width="0.3" height="15.0" fill="rgb(230,188,23)" rx="2" ry="2" />
<text x="23.41" y="1727.5" ></text>
</g>
<g >
<title>fib_table_lookup (6,815,326 samples, 0.03%)</title><rect x="654.7" y="1637" width="0.3" height="15.0" fill="rgb(246,154,5)" rx="2" ry="2" />
<text x="657.66" y="1647.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (3,716,019 samples, 0.02%)</title><rect x="549.8" y="1813" width="0.2" height="15.0" fill="rgb(209,160,53)" rx="2" ry="2" />
<text x="552.83" y="1823.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,189,227 samples, 0.01%)</title><rect x="896.9" y="1877" width="0.1" height="15.0" fill="rgb(226,6,32)" rx="2" ry="2" />
<text x="899.89" y="1887.5" ></text>
</g>
<g >
<title>asm_common_interrupt (6,443,963 samples, 0.03%)</title><rect x="639.1" y="1829" width="0.4" height="15.0" fill="rgb(246,74,18)" rx="2" ry="2" />
<text x="642.10" y="1839.5" ></text>
</g>
<g >
<title>shrink_node (15,424,121 samples, 0.07%)</title><rect x="60.3" y="1989" width="0.9" height="15.0" fill="rgb(210,23,18)" rx="2" ry="2" />
<text x="63.33" y="1999.5" ></text>
</g>
<g >
<title>do_read_fault (2,702,241 samples, 0.01%)</title><rect x="30.9" y="1909" width="0.2" height="15.0" fill="rgb(227,188,27)" rx="2" ry="2" />
<text x="33.92" y="1919.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (2,675,862 samples, 0.01%)</title><rect x="449.9" y="1845" width="0.1" height="15.0" fill="rgb(208,198,37)" rx="2" ry="2" />
<text x="452.87" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,029,272 samples, 0.01%)</title><rect x="878.7" y="2021" width="0.2" height="15.0" fill="rgb(254,117,25)" rx="2" ry="2" />
<text x="881.69" y="2031.5" ></text>
</g>
<g >
<title>wake_up_process (3,061,345 samples, 0.01%)</title><rect x="696.7" y="1845" width="0.1" height="15.0" fill="rgb(245,127,9)" rx="2" ry="2" />
<text x="699.66" y="1855.5" ></text>
</g>
<g >
<title>reopen (1,920,362 samples, 0.01%)</title><rect x="868.4" y="2037" width="0.1" height="15.0" fill="rgb(224,28,46)" rx="2" ry="2" />
<text x="871.37" y="2047.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (9,610,725 samples, 0.04%)</title><rect x="953.5" y="1909" width="0.6" height="15.0" fill="rgb(222,190,31)" rx="2" ry="2" />
<text x="956.53" y="1919.5" ></text>
</g>
<g >
<title>__do_sys_newstat (2,308,205 samples, 0.01%)</title><rect x="857.9" y="1973" width="0.1" height="15.0" fill="rgb(230,188,11)" rx="2" ry="2" />
<text x="860.92" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (162,527,639 samples, 0.76%)</title><rect x="393.4" y="1573" width="9.0" height="15.0" fill="rgb(254,206,14)" rx="2" ry="2" />
<text x="396.44" y="1583.5" ></text>
</g>
<g >
<title>rtl_rx (1,863,808 samples, 0.01%)</title><rect x="1170.3" y="1765" width="0.1" height="15.0" fill="rgb(241,18,15)" rx="2" ry="2" />
<text x="1173.34" y="1775.5" ></text>
</g>
<g >
<title>exit_mmap (35,628,538 samples, 0.17%)</title><rect x="889.1" y="1845" width="2.0" height="15.0" fill="rgb(214,157,48)" rx="2" ry="2" />
<text x="892.12" y="1855.5" ></text>
</g>
<g >
<title>do_check_common (1,925,500 samples, 0.01%)</title><rect x="870.5" y="1941" width="0.2" height="15.0" fill="rgb(250,37,28)" rx="2" ry="2" />
<text x="873.54" y="1951.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,423,356 samples, 0.02%)</title><rect x="401.1" y="229" width="0.1" height="15.0" fill="rgb(230,66,3)" rx="2" ry="2" />
<text x="404.06" y="239.5" ></text>
</g>
<g >
<title>__ip6_finish_output (264,814,205 samples, 1.24%)</title><rect x="720.3" y="1557" width="14.6" height="15.0" fill="rgb(218,154,48)" rx="2" ry="2" />
<text x="723.34" y="1567.5" ></text>
</g>
<g >
<title>common_interrupt (4,171,942 samples, 0.02%)</title><rect x="626.0" y="1845" width="0.2" height="15.0" fill="rgb(253,108,47)" rx="2" ry="2" />
<text x="629.01" y="1855.5" ></text>
</g>
<g >
<title>wait_task_zombie (2,978,309 samples, 0.01%)</title><rect x="29.2" y="1925" width="0.1" height="15.0" fill="rgb(221,115,26)" rx="2" ry="2" />
<text x="32.17" y="1935.5" ></text>
</g>
<g >
<title>__do_sys_clone3 (1,906,353 samples, 0.01%)</title><rect x="879.5" y="1989" width="0.1" height="15.0" fill="rgb(213,30,38)" rx="2" ry="2" />
<text x="882.47" y="1999.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (1,913,635 samples, 0.01%)</title><rect x="625.8" y="1685" width="0.1" height="15.0" fill="rgb(230,196,15)" rx="2" ry="2" />
<text x="628.78" y="1695.5" ></text>
</g>
<g >
<title>skb_free_head (6,672,009 samples, 0.03%)</title><rect x="1146.8" y="1717" width="0.4" height="15.0" fill="rgb(235,178,15)" rx="2" ry="2" />
<text x="1149.81" y="1727.5" ></text>
</g>
<g >
<title>common_interrupt (4,625,913 samples, 0.02%)</title><rect x="913.1" y="1557" width="0.2" height="15.0" fill="rgb(246,211,43)" rx="2" ry="2" />
<text x="916.09" y="1567.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,885,622 samples, 0.01%)</title><rect x="49.1" y="2037" width="0.1" height="15.0" fill="rgb(213,50,47)" rx="2" ry="2" />
<text x="52.13" y="2047.5" ></text>
</g>
<g >
<title>__common_interrupt (4,643,910 samples, 0.02%)</title><rect x="957.9" y="2005" width="0.3" height="15.0" fill="rgb(220,16,2)" rx="2" ry="2" />
<text x="960.91" y="2015.5" ></text>
</g>
<g >
<title>kfree_skbmem (8,419,268 samples, 0.04%)</title><rect x="681.8" y="1717" width="0.5" height="15.0" fill="rgb(224,84,41)" rx="2" ry="2" />
<text x="684.80" y="1727.5" ></text>
</g>
<g >
<title>__update_blocked_fair (2,857,279 samples, 0.01%)</title><rect x="54.4" y="1941" width="0.2" height="15.0" fill="rgb(236,139,9)" rx="2" ry="2" />
<text x="57.42" y="1951.5" ></text>
</g>
<g >
<title>schedule (2,643,283 samples, 0.01%)</title><rect x="886.4" y="1765" width="0.1" height="15.0" fill="rgb(217,225,36)" rx="2" ry="2" />
<text x="889.36" y="1775.5" ></text>
</g>
<g >
<title>ip_finish_output2 (13,375,612 samples, 0.06%)</title><rect x="1003.1" y="1653" width="0.8" height="15.0" fill="rgb(220,37,44)" rx="2" ry="2" />
<text x="1006.13" y="1663.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (6,387,115 samples, 0.03%)</title><rect x="447.7" y="1877" width="0.3" height="15.0" fill="rgb(228,209,26)" rx="2" ry="2" />
<text x="450.67" y="1887.5" ></text>
</g>
<g >
<title>mmput (14,063,859 samples, 0.07%)</title><rect x="856.9" y="1957" width="0.7" height="15.0" fill="rgb(213,14,11)" rx="2" ry="2" />
<text x="859.87" y="1967.5" ></text>
</g>
<g >
<title>nf_conntrack_in (2,407,977 samples, 0.01%)</title><rect x="1005.1" y="1701" width="0.2" height="15.0" fill="rgb(248,60,23)" rx="2" ry="2" />
<text x="1008.13" y="1711.5" ></text>
</g>
<g >
<title>__pte_alloc (1,922,026 samples, 0.01%)</title><rect x="846.4" y="1925" width="0.1" height="15.0" fill="rgb(253,47,33)" rx="2" ry="2" />
<text x="849.44" y="1935.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (2,681,758 samples, 0.01%)</title><rect x="424.3" y="1797" width="0.2" height="15.0" fill="rgb(231,211,21)" rx="2" ry="2" />
<text x="427.33" y="1807.5" ></text>
</g>
<g >
<title>acpi_ex_write_with_update_rule (2,285,909 samples, 0.01%)</title><rect x="62.7" y="1653" width="0.1" height="15.0" fill="rgb(229,148,11)" rx="2" ry="2" />
<text x="65.68" y="1663.5" ></text>
</g>
<g >
<title>scheduler_tick (3,746,961 samples, 0.02%)</title><rect x="1061.1" y="1813" width="0.3" height="15.0" fill="rgb(233,174,29)" rx="2" ry="2" />
<text x="1064.14" y="1823.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="805" width="0.5" height="15.0" fill="rgb(234,61,37)" rx="2" ry="2" />
<text x="18.42" y="815.5" ></text>
</g>
<g >
<title>tcp_v4_early_demux (3,036,011 samples, 0.01%)</title><rect x="1126.9" y="1701" width="0.2" height="15.0" fill="rgb(230,207,0)" rx="2" ry="2" />
<text x="1129.91" y="1711.5" ></text>
</g>
<g >
<title>validate_xmit_skb (4,978,029 samples, 0.02%)</title><rect x="696.1" y="1781" width="0.3" height="15.0" fill="rgb(211,150,8)" rx="2" ry="2" />
<text x="699.09" y="1791.5" ></text>
</g>
<g >
<title>fib6_rule_action (23,059,521 samples, 0.11%)</title><rect x="1138.4" y="1621" width="1.2" height="15.0" fill="rgb(243,121,47)" rx="2" ry="2" />
<text x="1141.38" y="1631.5" ></text>
</g>
<g >
<title>common_interrupt (1,894,670 samples, 0.01%)</title><rect x="592.7" y="1797" width="0.1" height="15.0" fill="rgb(211,161,24)" rx="2" ry="2" />
<text x="595.73" y="1807.5" ></text>
</g>
<g >
<title>handle_edge_irq (4,564,544 samples, 0.02%)</title><rect x="657.8" y="1621" width="0.2" height="15.0" fill="rgb(236,149,30)" rx="2" ry="2" />
<text x="660.80" y="1631.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (12,900,898 samples, 0.06%)</title><rect x="557.2" y="1909" width="0.7" height="15.0" fill="rgb(208,9,8)" rx="2" ry="2" />
<text x="560.18" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="869" width="8.8" height="15.0" fill="rgb(212,62,22)" rx="2" ry="2" />
<text x="396.46" y="879.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,090,473 samples, 0.01%)</title><rect x="859.7" y="2053" width="0.2" height="15.0" fill="rgb(209,155,49)" rx="2" ry="2" />
<text x="862.71" y="2063.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (2,201,939 samples, 0.01%)</title><rect x="1113.0" y="1781" width="0.1" height="15.0" fill="rgb(210,31,4)" rx="2" ry="2" />
<text x="1115.96" y="1791.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,678,150 samples, 0.01%)</title><rect x="613.7" y="1877" width="0.1" height="15.0" fill="rgb(248,144,16)" rx="2" ry="2" />
<text x="616.69" y="1887.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,074,185 samples, 0.01%)</title><rect x="905.6" y="1941" width="0.2" height="15.0" fill="rgb(209,30,49)" rx="2" ry="2" />
<text x="908.64" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (2,449,287 samples, 0.01%)</title><rect x="1133.9" y="1621" width="0.1" height="15.0" fill="rgb(244,109,25)" rx="2" ry="2" />
<text x="1136.90" y="1631.5" ></text>
</g>
<g >
<title>neigh_resolve_output (6,400,052 samples, 0.03%)</title><rect x="666.6" y="1637" width="0.3" height="15.0" fill="rgb(254,127,27)" rx="2" ry="2" />
<text x="669.59" y="1647.5" ></text>
</g>
<g >
<title>wait_for_completion_io_timeout (2,695,170 samples, 0.01%)</title><rect x="906.8" y="1685" width="0.2" height="15.0" fill="rgb(216,27,35)" rx="2" ry="2" />
<text x="909.81" y="1695.5" ></text>
</g>
<g >
<title>tick_irq_enter (9,218,890 samples, 0.04%)</title><rect x="996.5" y="1893" width="0.5" height="15.0" fill="rgb(232,6,42)" rx="2" ry="2" />
<text x="999.54" y="1903.5" ></text>
</g>
<g >
<title>tick_sched_handle (10,165,674 samples, 0.05%)</title><rect x="509.4" y="1925" width="0.6" height="15.0" fill="rgb(219,151,49)" rx="2" ry="2" />
<text x="512.42" y="1935.5" ></text>
</g>
<g >
<title>skb_release_data (3,039,003 samples, 0.01%)</title><rect x="682.3" y="1717" width="0.2" height="15.0" fill="rgb(254,115,7)" rx="2" ry="2" />
<text x="685.28" y="1727.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,678,150 samples, 0.01%)</title><rect x="613.7" y="1893" width="0.1" height="15.0" fill="rgb(247,47,7)" rx="2" ry="2" />
<text x="616.69" y="1903.5" ></text>
</g>
<g >
<title>clockevents_program_event (2,293,153 samples, 0.01%)</title><rect x="692.2" y="1717" width="0.2" height="15.0" fill="rgb(239,103,24)" rx="2" ry="2" />
<text x="695.23" y="1727.5" ></text>
</g>
<g >
<title>irqentry_exit (3,430,048 samples, 0.02%)</title><rect x="448.2" y="1973" width="0.2" height="15.0" fill="rgb(209,11,5)" rx="2" ry="2" />
<text x="451.17" y="1983.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,909,265 samples, 0.01%)</title><rect x="589.5" y="1861" width="0.1" height="15.0" fill="rgb(230,117,0)" rx="2" ry="2" />
<text x="592.52" y="1871.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,887,183 samples, 0.01%)</title><rect x="400.5" y="213" width="0.1" height="15.0" fill="rgb(221,205,36)" rx="2" ry="2" />
<text x="403.51" y="223.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (21,547,401 samples, 0.10%)</title><rect x="1153.4" y="1765" width="1.2" height="15.0" fill="rgb(219,80,32)" rx="2" ry="2" />
<text x="1156.44" y="1775.5" ></text>
</g>
<g >
<title>consume_skb (3,057,246 samples, 0.01%)</title><rect x="479.9" y="1589" width="0.2" height="15.0" fill="rgb(233,219,43)" rx="2" ry="2" />
<text x="482.92" y="1599.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1205" width="1.1" height="15.0" fill="rgb(233,38,34)" rx="2" ry="2" />
<text x="886.75" y="1215.5" ></text>
</g>
<g >
<title>exit_mmap (2,308,705 samples, 0.01%)</title><rect x="19.3" y="1941" width="0.2" height="15.0" fill="rgb(209,45,12)" rx="2" ry="2" />
<text x="22.34" y="1951.5" ></text>
</g>
<g >
<title>put_cpu_partial (3,034,782 samples, 0.01%)</title><rect x="581.6" y="1829" width="0.2" height="15.0" fill="rgb(235,153,23)" rx="2" ry="2" />
<text x="584.61" y="1839.5" ></text>
</g>
<g >
<title>ip6_forward (5,115,100 samples, 0.02%)</title><rect x="687.9" y="1669" width="0.3" height="15.0" fill="rgb(245,141,22)" rx="2" ry="2" />
<text x="690.94" y="1679.5" ></text>
</g>
<g >
<title>packet_rcv (2,267,198 samples, 0.01%)</title><rect x="664.8" y="1493" width="0.1" height="15.0" fill="rgb(228,178,41)" rx="2" ry="2" />
<text x="667.77" y="1503.5" ></text>
</g>
<g >
<title>ip_rcv (169,276,959 samples, 0.79%)</title><rect x="465.4" y="1877" width="9.3" height="15.0" fill="rgb(218,82,13)" rx="2" ry="2" />
<text x="468.38" y="1887.5" ></text>
</g>
<g >
<title>do_page_mkwrite (1,850,304 samples, 0.01%)</title><rect x="1171.8" y="1909" width="0.1" height="15.0" fill="rgb(227,162,15)" rx="2" ry="2" />
<text x="1174.84" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (169,180,776 samples, 0.79%)</title><rect x="393.3" y="1973" width="9.3" height="15.0" fill="rgb(233,186,41)" rx="2" ry="2" />
<text x="396.26" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (125,715,892 samples, 0.59%)</title><rect x="393.5" y="197" width="6.9" height="15.0" fill="rgb(251,47,37)" rx="2" ry="2" />
<text x="396.46" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16,382,547 samples, 0.08%)</title><rect x="40.6" y="2053" width="0.9" height="15.0" fill="rgb(253,1,52)" rx="2" ry="2" />
<text x="43.60" y="2063.5" ></text>
</g>
<g >
<title>kmalloc_reserve (2,414,249 samples, 0.01%)</title><rect x="498.5" y="1861" width="0.2" height="15.0" fill="rgb(225,88,22)" rx="2" ry="2" />
<text x="501.54" y="1871.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,508,762 samples, 0.04%)</title><rect x="15.4" y="453" width="0.5" height="15.0" fill="rgb(238,55,21)" rx="2" ry="2" />
<text x="18.42" y="463.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (1,861,419 samples, 0.01%)</title><rect x="1155.3" y="1829" width="0.1" height="15.0" fill="rgb(238,68,52)" rx="2" ry="2" />
<text x="1158.34" y="1839.5" ></text>
</g>
<g >
<title>__napi_poll (10,714,717 samples, 0.05%)</title><rect x="979.7" y="1893" width="0.6" height="15.0" fill="rgb(217,200,38)" rx="2" ry="2" />
<text x="982.72" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,095,624 samples, 0.01%)</title><rect x="976.7" y="1973" width="0.2" height="15.0" fill="rgb(234,228,14)" rx="2" ry="2" />
<text x="979.70" y="1983.5" ></text>
</g>
<g >
<title>ipv6_skip_exthdr (1,898,421 samples, 0.01%)</title><rect x="680.0" y="1653" width="0.1" height="15.0" fill="rgb(243,9,14)" rx="2" ry="2" />
<text x="683.05" y="1663.5" ></text>
</g>
<g >
<title>nft_do_chain (3,743,411 samples, 0.02%)</title><rect x="469.6" y="1813" width="0.2" height="15.0" fill="rgb(220,38,29)" rx="2" ry="2" />
<text x="472.57" y="1823.5" ></text>
</g>
<g >
<title>__napi_poll (2,993,270 samples, 0.01%)</title><rect x="886.7" y="1797" width="0.1" height="15.0" fill="rgb(209,96,16)" rx="2" ry="2" />
<text x="889.67" y="1807.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,697,942 samples, 0.01%)</title><rect x="875.1" y="1813" width="0.2" height="15.0" fill="rgb(224,165,40)" rx="2" ry="2" />
<text x="878.14" y="1823.5" ></text>
</g>
<g >
<title>g_signal_emit (2,701,364 samples, 0.01%)</title><rect x="1181.9" y="2005" width="0.2" height="15.0" fill="rgb(234,1,53)" rx="2" ry="2" />
<text x="1184.92" y="2015.5" ></text>
</g>
<g >
<title>flow_hash_from_keys (4,951,592 samples, 0.02%)</title><rect x="757.3" y="1605" width="0.3" height="15.0" fill="rgb(238,151,1)" rx="2" ry="2" />
<text x="760.33" y="1615.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1029" width="8.8" height="15.0" fill="rgb(241,158,32)" rx="2" ry="2" />
<text x="396.46" y="1039.5" ></text>
</g>
<g >
<title>mmap_region (1,901,401 samples, 0.01%)</title><rect x="878.7" y="1925" width="0.1" height="15.0" fill="rgb(217,44,30)" rx="2" ry="2" />
<text x="881.71" y="1935.5" ></text>
</g>
<g >
<title>skb_release_head_state (3,354,316 samples, 0.02%)</title><rect x="504.2" y="1877" width="0.2" height="15.0" fill="rgb(230,5,9)" rx="2" ry="2" />
<text x="507.25" y="1887.5" ></text>
</g>
<g >
<title>squashfs_read_data (24,985,370 samples, 0.12%)</title><rect x="955.4" y="1765" width="1.4" height="15.0" fill="rgb(248,212,19)" rx="2" ry="2" />
<text x="958.39" y="1775.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,608,381 samples, 0.02%)</title><rect x="1164.9" y="1813" width="0.2" height="15.0" fill="rgb(246,217,0)" rx="2" ry="2" />
<text x="1167.88" y="1823.5" ></text>
</g>
<g >
<title>common_interrupt (2,298,215 samples, 0.01%)</title><rect x="592.4" y="1797" width="0.1" height="15.0" fill="rgb(210,93,49)" rx="2" ry="2" />
<text x="595.37" y="1807.5" ></text>
</g>
<g >
<title>dev_gro_receive (39,514,955 samples, 0.18%)</title><rect x="685.1" y="1765" width="2.1" height="15.0" fill="rgb(216,208,13)" rx="2" ry="2" />
<text x="688.06" y="1775.5" ></text>
</g>
<g >
<title>__sys_bpf (4,234,824 samples, 0.02%)</title><rect x="870.5" y="1989" width="0.3" height="15.0" fill="rgb(228,195,24)" rx="2" ry="2" />
<text x="873.52" y="1999.5" ></text>
</g>
<g >
<title>do_exit (31,670,496 samples, 0.15%)</title><rect x="971.9" y="1989" width="1.7" height="15.0" fill="rgb(220,32,19)" rx="2" ry="2" />
<text x="974.88" y="1999.5" ></text>
</g>
<g >
<title>walk_component (2,323,926 samples, 0.01%)</title><rect x="969.9" y="1909" width="0.2" height="15.0" fill="rgb(242,25,35)" rx="2" ry="2" />
<text x="972.93" y="1919.5" ></text>
</g>
<g >
<title>common_interrupt (1,922,026 samples, 0.01%)</title><rect x="846.4" y="1861" width="0.1" height="15.0" fill="rgb(247,47,19)" rx="2" ry="2" />
<text x="849.44" y="1871.5" ></text>
</g>
<g >
<title>dentry_path (1,927,479 samples, 0.01%)</title><rect x="867.4" y="1861" width="0.1" height="15.0" fill="rgb(248,194,50)" rx="2" ry="2" />
<text x="870.40" y="1871.5" ></text>
</g>
<g >
<title>common_interrupt (2,254,864 samples, 0.01%)</title><rect x="829.6" y="1877" width="0.1" height="15.0" fill="rgb(218,8,7)" rx="2" ry="2" />
<text x="832.59" y="1887.5" ></text>
</g>
<g >
<title>common_interrupt (2,630,088 samples, 0.01%)</title><rect x="605.5" y="1909" width="0.1" height="15.0" fill="rgb(243,95,7)" rx="2" ry="2" />
<text x="608.48" y="1919.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,289,879 samples, 0.02%)</title><rect x="639.1" y="1797" width="0.3" height="15.0" fill="rgb(241,211,1)" rx="2" ry="2" />
<text x="642.15" y="1807.5" ></text>
</g>
<g >
<title>__minimal_malloc (6,493,562 samples, 0.03%)</title><rect x="1185.6" y="2053" width="0.3" height="15.0" fill="rgb(224,150,6)" rx="2" ry="2" />
<text x="1188.56" y="2063.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,811,012 samples, 0.02%)</title><rect x="626.0" y="1813" width="0.2" height="15.0" fill="rgb(241,199,24)" rx="2" ry="2" />
<text x="629.03" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (7,908,027 samples, 0.04%)</title><rect x="542.8" y="1797" width="0.4" height="15.0" fill="rgb(216,9,18)" rx="2" ry="2" />
<text x="545.77" y="1807.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,832,644 samples, 0.01%)</title><rect x="997.8" y="1877" width="0.1" height="15.0" fill="rgb(241,172,47)" rx="2" ry="2" />
<text x="1000.79" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (4,475,903 samples, 0.02%)</title><rect x="420.9" y="1877" width="0.3" height="15.0" fill="rgb(236,88,48)" rx="2" ry="2" />
<text x="423.94" y="1887.5" ></text>
</g>
<g >
<title>fib_get_table (10,237,383 samples, 0.05%)</title><rect x="787.9" y="1717" width="0.6" height="15.0" fill="rgb(206,206,53)" rx="2" ry="2" />
<text x="790.95" y="1727.5" ></text>
</g>
<g >
<title>skb_release_data (58,768,542 samples, 0.27%)</title><rect x="579.7" y="1893" width="3.2" height="15.0" fill="rgb(229,162,3)" rx="2" ry="2" />
<text x="582.67" y="1903.5" ></text>
</g>
<g >
<title>rcu_read_unlock_strict (1,899,858 samples, 0.01%)</title><rect x="799.1" y="1685" width="0.1" height="15.0" fill="rgb(205,125,14)" rx="2" ry="2" />
<text x="802.13" y="1695.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,321,412 samples, 0.01%)</title><rect x="852.0" y="1909" width="0.2" height="15.0" fill="rgb(231,166,7)" rx="2" ry="2" />
<text x="855.05" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (7,223,837 samples, 0.03%)</title><rect x="437.1" y="1829" width="0.4" height="15.0" fill="rgb(224,69,9)" rx="2" ry="2" />
<text x="440.06" y="1839.5" ></text>
</g>
<g >
<title>blk_mq_do_dispatch_sched (4,956,420 samples, 0.02%)</title><rect x="61.7" y="1925" width="0.3" height="15.0" fill="rgb(228,142,54)" rx="2" ry="2" />
<text x="64.69" y="1935.5" ></text>
</g>
<g >
<title>fib_table_lookup (7,261,800 samples, 0.03%)</title><rect x="471.1" y="1749" width="0.4" height="15.0" fill="rgb(230,124,35)" rx="2" ry="2" />
<text x="474.09" y="1759.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (7,269,976 samples, 0.03%)</title><rect x="15.4" y="149" width="0.4" height="15.0" fill="rgb(243,106,46)" rx="2" ry="2" />
<text x="18.42" y="159.5" ></text>
</g>
<g >
<title>process_one_work (26,714,942 samples, 0.12%)</title><rect x="62.1" y="2005" width="1.4" height="15.0" fill="rgb(243,72,40)" rx="2" ry="2" />
<text x="65.06" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (6,759,352 samples, 0.03%)</title><rect x="76.8" y="2053" width="0.3" height="15.0" fill="rgb(234,226,41)" rx="2" ry="2" />
<text x="79.76" y="2063.5" ></text>
</g>
<g >
<title>__fib_lookup (12,773,740 samples, 0.06%)</title><rect x="1025.8" y="1621" width="0.7" height="15.0" fill="rgb(227,119,23)" rx="2" ry="2" />
<text x="1028.81" y="1631.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,172,454 samples, 0.03%)</title><rect x="30.9" y="1973" width="0.3" height="15.0" fill="rgb(208,130,48)" rx="2" ry="2" />
<text x="33.90" y="1983.5" ></text>
</g>
<g >
<title>rtl8169_poll (4,601,655 samples, 0.02%)</title><rect x="588.3" y="1797" width="0.2" height="15.0" fill="rgb(235,19,17)" rx="2" ry="2" />
<text x="591.25" y="1807.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,172,454 samples, 0.03%)</title><rect x="30.9" y="1957" width="0.3" height="15.0" fill="rgb(244,75,37)" rx="2" ry="2" />
<text x="33.90" y="1967.5" ></text>
</g>
<g >
<title>__napi_poll (2,569,807 samples, 0.01%)</title><rect x="584.9" y="1781" width="0.1" height="15.0" fill="rgb(216,201,17)" rx="2" ry="2" />
<text x="587.86" y="1791.5" ></text>
</g>
<g >
<title>fib_table_lookup (2,604,332 samples, 0.01%)</title><rect x="537.6" y="1765" width="0.2" height="15.0" fill="rgb(248,187,14)" rx="2" ry="2" />
<text x="540.65" y="1775.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (2,740,950 samples, 0.01%)</title><rect x="48.0" y="1925" width="0.2" height="15.0" fill="rgb(208,207,50)" rx="2" ry="2" />
<text x="51.01" y="1935.5" ></text>
</g>
<g >
<title>__mkroute_input (148,373,814 samples, 0.69%)</title><rect x="792.6" y="1765" width="8.1" height="15.0" fill="rgb(247,156,46)" rx="2" ry="2" />
<text x="795.56" y="1775.5" ></text>
</g>
<g >
<title>nf_hook_slow (12,483,091 samples, 0.06%)</title><rect x="735.0" y="1573" width="0.7" height="15.0" fill="rgb(230,112,6)" rx="2" ry="2" />
<text x="738.02" y="1583.5" ></text>
</g>
<g >
<title>[snap-seccomp] (5,735,397 samples, 0.03%)</title><rect x="876.4" y="2021" width="0.3" height="15.0" fill="rgb(231,160,5)" rx="2" ry="2" />
<text x="879.43" y="2031.5" ></text>
</g>
<g >
<title>ip_forward (5,205,434 samples, 0.02%)</title><rect x="501.3" y="1797" width="0.3" height="15.0" fill="rgb(223,45,44)" rx="2" ry="2" />
<text x="504.27" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (2,244,055 samples, 0.01%)</title><rect x="520.9" y="1861" width="0.1" height="15.0" fill="rgb(244,187,4)" rx="2" ry="2" />
<text x="523.86" y="1871.5" ></text>
</g>
<g >
<title>fib6_rule_action (2,193,292 samples, 0.01%)</title><rect x="501.7" y="1733" width="0.1" height="15.0" fill="rgb(252,130,46)" rx="2" ry="2" />
<text x="504.73" y="1743.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,137,564 samples, 0.01%)</title><rect x="502.1" y="1797" width="0.2" height="15.0" fill="rgb(214,91,25)" rx="2" ry="2" />
<text x="505.13" y="1807.5" ></text>
</g>
<g >
<title>cake_enqueue (2,086,262 samples, 0.01%)</title><rect x="1100.5" y="1541" width="0.1" height="15.0" fill="rgb(250,93,2)" rx="2" ry="2" />
<text x="1103.48" y="1551.5" ></text>
</g>
<g >
<title>__x64_sys_openat (16,187,933 samples, 0.08%)</title><rect x="844.8" y="1973" width="0.9" height="15.0" fill="rgb(248,166,14)" rx="2" ry="2" />
<text x="847.79" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_poll (5,062,300 samples, 0.02%)</title><rect x="16.0" y="1989" width="0.2" height="15.0" fill="rgb(232,118,44)" rx="2" ry="2" />
<text x="18.95" y="1999.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (390,233,902 samples, 1.82%)</title><rect x="661.2" y="1781" width="21.5" height="15.0" fill="rgb(252,223,3)" rx="2" ry="2" />
<text x="664.21" y="1791.5" >n..</text>
</g>
<g >
<title>inode_permission (2,708,530 samples, 0.01%)</title><rect x="68.6" y="1893" width="0.2" height="15.0" fill="rgb(223,127,49)" rx="2" ry="2" />
<text x="71.61" y="1903.5" ></text>
</g>
<g >
<title>__ip_finish_output (1,843,439 samples, 0.01%)</title><rect x="51.0" y="1813" width="0.1" height="15.0" fill="rgb(225,147,24)" rx="2" ry="2" />
<text x="54.03" y="1823.5" ></text>
</g>
<g >
<title>net_rx_action (1,911,202 samples, 0.01%)</title><rect x="943.3" y="1525" width="0.1" height="15.0" fill="rgb(245,55,7)" rx="2" ry="2" />
<text x="946.27" y="1535.5" ></text>
</g>
<g >
<title>execute_command_internal (2,623,262 samples, 0.01%)</title><rect x="38.0" y="2021" width="0.2" height="15.0" fill="rgb(234,124,20)" rx="2" ry="2" />
<text x="41.03" y="2031.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (3,096,406 samples, 0.01%)</title><rect x="957.9" y="1941" width="0.2" height="15.0" fill="rgb(225,193,20)" rx="2" ry="2" />
<text x="960.91" y="1951.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,474,143 samples, 0.02%)</title><rect x="22.0" y="1989" width="0.2" height="15.0" fill="rgb(246,58,54)" rx="2" ry="2" />
<text x="25.03" y="1999.5" ></text>
</g>
<g >
<title>__napi_poll (3,044,402 samples, 0.01%)</title><rect x="564.2" y="1925" width="0.2" height="15.0" fill="rgb(217,93,33)" rx="2" ry="2" />
<text x="567.23" y="1935.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (17,162,318 samples, 0.08%)</title><rect x="856.8" y="2021" width="1.0" height="15.0" fill="rgb(205,218,7)" rx="2" ry="2" />
<text x="859.83" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,401,594 samples, 0.03%)</title><rect x="861.8" y="2021" width="0.3" height="15.0" fill="rgb(245,80,7)" rx="2" ry="2" />
<text x="864.85" y="2031.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (71,189,137 samples, 0.33%)</title><rect x="478.6" y="1701" width="3.9" height="15.0" fill="rgb(215,195,23)" rx="2" ry="2" />
<text x="481.58" y="1711.5" ></text>
</g>
<g >
<title>napi_complete_done (394,192,745 samples, 1.84%)</title><rect x="476.1" y="1909" width="21.7" height="15.0" fill="rgb(220,22,39)" rx="2" ry="2" />
<text x="479.07" y="1919.5" >n..</text>
</g>
<g >
<title>vm_mmap_pgoff (5,775,281 samples, 0.03%)</title><rect x="843.6" y="1973" width="0.3" height="15.0" fill="rgb(232,3,19)" rx="2" ry="2" />
<text x="846.60" y="1983.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (2,297,904 samples, 0.01%)</title><rect x="625.6" y="1717" width="0.2" height="15.0" fill="rgb(206,39,11)" rx="2" ry="2" />
<text x="628.63" y="1727.5" ></text>
</g>
<g >
<title>[snapd] (27,116,941 samples, 0.13%)</title><rect x="973.9" y="1829" width="1.5" height="15.0" fill="rgb(212,219,30)" rx="2" ry="2" />
<text x="976.88" y="1839.5" ></text>
</g>
<g >
<title>__res_context_send (12,531,450 samples, 0.06%)</title><rect x="864.3" y="2037" width="0.7" height="15.0" fill="rgb(207,3,50)" rx="2" ry="2" />
<text x="867.31" y="2047.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (693,566,267 samples, 3.24%)</title><rect x="709.8" y="1701" width="38.2" height="15.0" fill="rgb(225,117,30)" rx="2" ry="2" />
<text x="712.75" y="1711.5" >__d..</text>
</g>
<g >
<title>ksys_read (5,927,777 samples, 0.03%)</title><rect x="1175.2" y="1973" width="0.3" height="15.0" fill="rgb(215,214,2)" rx="2" ry="2" />
<text x="1178.22" y="1983.5" ></text>
</g>
<g >
<title>sch_direct_xmit (22,628,130 samples, 0.11%)</title><rect x="1122.7" y="1557" width="1.3" height="15.0" fill="rgb(217,89,38)" rx="2" ry="2" />
<text x="1125.74" y="1567.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,823,622 samples, 0.02%)</title><rect x="1185.2" y="2037" width="0.2" height="15.0" fill="rgb(251,42,35)" rx="2" ry="2" />
<text x="1188.18" y="2047.5" ></text>
</g>
<g >
<title>sync_regs (2,650,469 samples, 0.01%)</title><rect x="527.1" y="2021" width="0.1" height="15.0" fill="rgb(208,112,24)" rx="2" ry="2" />
<text x="530.09" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,074,681 samples, 0.01%)</title><rect x="1186.4" y="2005" width="0.2" height="15.0" fill="rgb(219,177,35)" rx="2" ry="2" />
<text x="1189.38" y="2015.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,919,539 samples, 0.01%)</title><rect x="946.7" y="1813" width="0.1" height="15.0" fill="rgb(251,106,5)" rx="2" ry="2" />
<text x="949.68" y="1823.5" ></text>
</g>
<g >
<title>kthread (90,257,404 samples, 0.42%)</title><rect x="55.3" y="2037" width="5.0" height="15.0" fill="rgb(254,99,41)" rx="2" ry="2" />
<text x="58.31" y="2047.5" ></text>
</g>
<g >
<title>zap_pte_range (2,261,645 samples, 0.01%)</title><rect x="947.3" y="1797" width="0.2" height="15.0" fill="rgb(239,97,11)" rx="2" ry="2" />
<text x="950.33" y="1807.5" ></text>
</g>
<g >
<title>common_interrupt (4,122,020 samples, 0.02%)</title><rect x="572.3" y="1925" width="0.2" height="15.0" fill="rgb(254,181,53)" rx="2" ry="2" />
<text x="575.29" y="1935.5" ></text>
</g>
<g >
<title>memset_erms (6,424,575 samples, 0.03%)</title><rect x="1135.3" y="1653" width="0.3" height="15.0" fill="rgb(237,103,29)" rx="2" ry="2" />
<text x="1138.25" y="1663.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (30,181,477 samples, 0.14%)</title><rect x="1002.9" y="1749" width="1.7" height="15.0" fill="rgb(214,184,20)" rx="2" ry="2" />
<text x="1005.92" y="1759.5" ></text>
</g>
<g >
<title>wp_page_copy (4,642,351 samples, 0.02%)</title><rect x="966.1" y="1877" width="0.3" height="15.0" fill="rgb(211,25,2)" rx="2" ry="2" />
<text x="969.14" y="1887.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (1,922,234 samples, 0.01%)</title><rect x="47.5" y="2021" width="0.1" height="15.0" fill="rgb(246,25,27)" rx="2" ry="2" />
<text x="50.48" y="2031.5" ></text>
</g>
<g >
<title>ipv6_conntrack_in (5,306,460 samples, 0.02%)</title><rect x="443.5" y="1797" width="0.2" height="15.0" fill="rgb(244,228,0)" rx="2" ry="2" />
<text x="446.46" y="1807.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (3,311,447 samples, 0.02%)</title><rect x="501.7" y="1797" width="0.1" height="15.0" fill="rgb(213,75,13)" rx="2" ry="2" />
<text x="504.67" y="1807.5" ></text>
</g>
<g >
<title>exit_mmap (3,833,974 samples, 0.02%)</title><rect x="10.5" y="1845" width="0.2" height="15.0" fill="rgb(233,181,21)" rx="2" ry="2" />
<text x="13.49" y="1855.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (2,163,771 samples, 0.01%)</title><rect x="1003.7" y="1493" width="0.1" height="15.0" fill="rgb(218,50,7)" rx="2" ry="2" />
<text x="1006.65" y="1503.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (37,535,914 samples, 0.18%)</title><rect x="889.1" y="2037" width="2.1" height="15.0" fill="rgb(240,145,14)" rx="2" ry="2" />
<text x="892.12" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (13,840,154,379 samples, 64.65%)</title><rect x="77.3" y="2053" width="762.8" height="15.0" fill="rgb(239,71,8)" rx="2" ry="2" />
<text x="80.29" y="2063.5" >[unknown]</text>
</g>
<g >
<title>net_rx_action (2,268,767 samples, 0.01%)</title><rect x="632.7" y="1797" width="0.1" height="15.0" fill="rgb(217,198,2)" rx="2" ry="2" />
<text x="635.72" y="1807.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (1,827,459 samples, 0.01%)</title><rect x="834.9" y="1829" width="0.1" height="15.0" fill="rgb(236,62,43)" rx="2" ry="2" />
<text x="837.89" y="1839.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,915,131 samples, 0.01%)</title><rect x="526.2" y="1957" width="0.1" height="15.0" fill="rgb(229,82,6)" rx="2" ry="2" />
<text x="529.23" y="1967.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (3,047,016 samples, 0.01%)</title><rect x="47.1" y="2053" width="0.2" height="15.0" fill="rgb(222,84,54)" rx="2" ry="2" />
<text x="50.08" y="2063.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,448,456 samples, 0.02%)</title><rect x="445.2" y="1829" width="0.1" height="15.0" fill="rgb(233,52,5)" rx="2" ry="2" />
<text x="448.15" y="1839.5" ></text>
</g>
<g >
<title>__napi_poll (2,254,864 samples, 0.01%)</title><rect x="829.6" y="1813" width="0.1" height="15.0" fill="rgb(222,149,9)" rx="2" ry="2" />
<text x="832.59" y="1823.5" ></text>
</g>
<g >
<title>__d_lookup_rcu (4,646,781 samples, 0.02%)</title><rect x="854.9" y="1877" width="0.2" height="15.0" fill="rgb(220,217,1)" rx="2" ry="2" />
<text x="857.86" y="1887.5" ></text>
</g>
<g >
<title>ipv6_rcv (336,021,397 samples, 1.57%)</title><rect x="662.4" y="1733" width="18.6" height="15.0" fill="rgb(228,45,23)" rx="2" ry="2" />
<text x="665.44" y="1743.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (4,834,043 samples, 0.02%)</title><rect x="71.0" y="1941" width="0.3" height="15.0" fill="rgb(243,55,54)" rx="2" ry="2" />
<text x="74.02" y="1951.5" ></text>
</g>
<g >
<title>rw_verify_area (49,641,714 samples, 0.23%)</title><rect x="599.4" y="1957" width="2.7" height="15.0" fill="rgb(239,113,1)" rx="2" ry="2" />
<text x="602.35" y="1967.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (10,057,874 samples, 0.05%)</title><rect x="68.5" y="1909" width="0.5" height="15.0" fill="rgb(232,83,25)" rx="2" ry="2" />
<text x="71.48" y="1919.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (4,634,216 samples, 0.02%)</title><rect x="37.5" y="2021" width="0.2" height="15.0" fill="rgb(220,169,3)" rx="2" ry="2" />
<text x="40.48" y="2031.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (3,434,058 samples, 0.02%)</title><rect x="424.8" y="1733" width="0.1" height="15.0" fill="rgb(253,184,44)" rx="2" ry="2" />
<text x="427.75" y="1743.5" ></text>
</g>
<g >
<title>net_rx_action (1,862,831 samples, 0.01%)</title><rect x="602.3" y="1877" width="0.1" height="15.0" fill="rgb(213,186,49)" rx="2" ry="2" />
<text x="605.32" y="1887.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,027,841 samples, 0.01%)</title><rect x="636.3" y="1797" width="0.2" height="15.0" fill="rgb(207,176,11)" rx="2" ry="2" />
<text x="639.30" y="1807.5" ></text>
</g>
<g >
<title>__ip6_finish_output (29,246,428 samples, 0.14%)</title><rect x="540.9" y="1797" width="1.6" height="15.0" fill="rgb(227,163,13)" rx="2" ry="2" />
<text x="543.90" y="1807.5" ></text>
</g>
<g >
<title>__x64_sys_execve (4,998,195 samples, 0.02%)</title><rect x="872.5" y="2005" width="0.3" height="15.0" fill="rgb(251,125,1)" rx="2" ry="2" />
<text x="875.55" y="2015.5" ></text>
</g>
<g >
<title>fib6_rule_match (1,840,739 samples, 0.01%)</title><rect x="1007.3" y="1669" width="0.1" height="15.0" fill="rgb(206,92,52)" rx="2" ry="2" />
<text x="1010.34" y="1679.5" ></text>
</g>
<g >
<title>run_builtin (84,711,270 samples, 0.40%)</title><rect x="71.7" y="2021" width="4.7" height="15.0" fill="rgb(220,169,51)" rx="2" ry="2" />
<text x="74.73" y="2031.5" ></text>
</g>
<g >
<title>net_rx_action (2,298,305 samples, 0.01%)</title><rect x="888.7" y="1925" width="0.1" height="15.0" fill="rgb(235,146,27)" rx="2" ry="2" />
<text x="891.66" y="1935.5" ></text>
</g>
<g >
<title>irq_enter_rcu (3,489,469 samples, 0.02%)</title><rect x="1149.6" y="1845" width="0.2" height="15.0" fill="rgb(252,33,50)" rx="2" ry="2" />
<text x="1152.61" y="1855.5" ></text>
</g>
<g >
<title>ext4_do_update_inode.isra.0 (6,218,026 samples, 0.03%)</title><rect x="75.3" y="1685" width="0.3" height="15.0" fill="rgb(225,184,19)" rx="2" ry="2" />
<text x="78.25" y="1695.5" ></text>
</g>
<g >
<title>handle_edge_irq (2,496,904 samples, 0.01%)</title><rect x="1149.9" y="1765" width="0.1" height="15.0" fill="rgb(206,51,8)" rx="2" ry="2" />
<text x="1152.87" y="1775.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1669" width="0.5" height="15.0" fill="rgb(229,7,39)" rx="2" ry="2" />
<text x="18.42" y="1679.5" ></text>
</g>
<g >
<title>rtl_rx (3,420,754 samples, 0.02%)</title><rect x="425.6" y="1877" width="0.2" height="15.0" fill="rgb(250,132,14)" rx="2" ry="2" />
<text x="428.63" y="1887.5" ></text>
</g>
<g >
<title>__fib_lookup (4,584,402 samples, 0.02%)</title><rect x="436.3" y="1781" width="0.3" height="15.0" fill="rgb(215,203,24)" rx="2" ry="2" />
<text x="439.30" y="1791.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (194,624,779 samples, 0.91%)</title><rect x="1023.4" y="1749" width="10.8" height="15.0" fill="rgb(243,212,37)" rx="2" ry="2" />
<text x="1026.44" y="1759.5" ></text>
</g>
<g >
<title>__netif_receive_skb (8,323,343 samples, 0.04%)</title><rect x="424.1" y="1877" width="0.5" height="15.0" fill="rgb(234,126,45)" rx="2" ry="2" />
<text x="427.14" y="1887.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="789" width="0.5" height="15.0" fill="rgb(221,27,17)" rx="2" ry="2" />
<text x="18.42" y="799.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,329,790 samples, 0.03%)</title><rect x="966.5" y="1973" width="0.4" height="15.0" fill="rgb(241,212,14)" rx="2" ry="2" />
<text x="969.52" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="693" width="0.3" height="15.0" fill="rgb(244,145,27)" rx="2" ry="2" />
<text x="23.41" y="703.5" ></text>
</g>
<g >
<title>exc_page_fault (13,877,570 samples, 0.06%)</title><rect x="846.3" y="2021" width="0.7" height="15.0" fill="rgb(213,66,13)" rx="2" ry="2" />
<text x="849.27" y="2031.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1589" width="0.5" height="15.0" fill="rgb(207,208,51)" rx="2" ry="2" />
<text x="18.42" y="1599.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (2,888,212 samples, 0.01%)</title><rect x="501.9" y="1653" width="0.1" height="15.0" fill="rgb(221,38,51)" rx="2" ry="2" />
<text x="504.87" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (19,342,654 samples, 0.09%)</title><rect x="858.6" y="2053" width="1.1" height="15.0" fill="rgb(234,65,32)" rx="2" ry="2" />
<text x="861.64" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,702,687 samples, 0.01%)</title><rect x="1189.4" y="2037" width="0.1" height="15.0" fill="rgb(222,186,52)" rx="2" ry="2" />
<text x="1192.38" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="549" width="0.3" height="15.0" fill="rgb(213,133,17)" rx="2" ry="2" />
<text x="23.41" y="559.5" ></text>
</g>
<g >
<title>__slab_free (1,912,495 samples, 0.01%)</title><rect x="417.4" y="1765" width="0.1" height="15.0" fill="rgb(250,68,50)" rx="2" ry="2" />
<text x="420.35" y="1775.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (3,658,975 samples, 0.02%)</title><rect x="1101.8" y="1733" width="0.2" height="15.0" fill="rgb(239,58,7)" rx="2" ry="2" />
<text x="1104.78" y="1743.5" ></text>
</g>
<g >
<title>pci_finish_runtime_suspend (20,522,903 samples, 0.10%)</title><rect x="62.3" y="1909" width="1.1" height="15.0" fill="rgb(234,58,13)" rx="2" ry="2" />
<text x="65.27" y="1919.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,892,308 samples, 0.01%)</title><rect x="401.1" y="165" width="0.1" height="15.0" fill="rgb(240,48,34)" rx="2" ry="2" />
<text x="404.14" y="175.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (3,159,742 samples, 0.01%)</title><rect x="446.1" y="1861" width="0.2" height="15.0" fill="rgb(239,136,11)" rx="2" ry="2" />
<text x="449.10" y="1871.5" ></text>
</g>
<g >
<title>fib4_rule_match (3,614,381 samples, 0.02%)</title><rect x="791.5" y="1733" width="0.2" height="15.0" fill="rgb(209,132,18)" rx="2" ry="2" />
<text x="794.55" y="1743.5" ></text>
</g>
<g >
<title>do_fault (609,055,295 samples, 2.84%)</title><rect x="905.9" y="1893" width="33.6" height="15.0" fill="rgb(244,215,45)" rx="2" ry="2" />
<text x="908.94" y="1903.5" >do..</text>
</g>
<g >
<title>dequeue_skb (22,835,026 samples, 0.11%)</title><rect x="450.9" y="1909" width="1.3" height="15.0" fill="rgb(222,51,27)" rx="2" ry="2" />
<text x="453.91" y="1919.5" ></text>
</g>
<g >
<title>lru_cache_add (2,029,105 samples, 0.01%)</title><rect x="74.6" y="1717" width="0.1" height="15.0" fill="rgb(206,128,36)" rx="2" ry="2" />
<text x="77.60" y="1727.5" ></text>
</g>
<g >
<title>handle_edge_irq (2,253,932 samples, 0.01%)</title><rect x="610.1" y="1909" width="0.2" height="15.0" fill="rgb(239,221,43)" rx="2" ry="2" />
<text x="613.14" y="1919.5" ></text>
</g>
<g >
<title>fib6_rule_action (2,284,800 samples, 0.01%)</title><rect x="514.7" y="1765" width="0.1" height="15.0" fill="rgb(231,2,18)" rx="2" ry="2" />
<text x="517.67" y="1775.5" ></text>
</g>
<g >
<title>do_writepages (2,123,404 samples, 0.01%)</title><rect x="65.1" y="1893" width="0.1" height="15.0" fill="rgb(249,24,31)" rx="2" ry="2" />
<text x="68.09" y="1903.5" ></text>
</g>
<g >
<title>rebalance_domains (2,806,735 samples, 0.01%)</title><rect x="1154.9" y="1797" width="0.1" height="15.0" fill="rgb(238,140,24)" rx="2" ry="2" />
<text x="1157.88" y="1807.5" ></text>
</g>
<g >
<title>ip6_finish_output (2,072,146 samples, 0.01%)</title><rect x="1170.0" y="1653" width="0.1" height="15.0" fill="rgb(248,33,33)" rx="2" ry="2" />
<text x="1172.96" y="1663.5" ></text>
</g>
<g >
<title>handle_irq_event (189,271,737 samples, 0.88%)</title><rect x="985.2" y="1877" width="10.4" height="15.0" fill="rgb(247,212,28)" rx="2" ry="2" />
<text x="988.18" y="1887.5" ></text>
</g>
<g >
<title>[snap-exec] (54,217,557 samples, 0.25%)</title><rect x="872.9" y="1925" width="3.0" height="15.0" fill="rgb(221,117,29)" rx="2" ry="2" />
<text x="875.89" y="1935.5" ></text>
</g>
<g >
<title>__napi_poll (1,940,384 samples, 0.01%)</title><rect x="856.2" y="1845" width="0.1" height="15.0" fill="rgb(233,126,54)" rx="2" ry="2" />
<text x="859.19" y="1855.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (4,197,409 samples, 0.02%)</title><rect x="541.3" y="1669" width="0.3" height="15.0" fill="rgb(242,48,30)" rx="2" ry="2" />
<text x="544.34" y="1679.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (16,636,471 samples, 0.08%)</title><rect x="858.7" y="2037" width="0.9" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="861.71" y="2047.5" ></text>
</g>
<g >
<title>filemap_fault (1,924,422 samples, 0.01%)</title><rect x="956.9" y="1877" width="0.1" height="15.0" fill="rgb(211,2,3)" rx="2" ry="2" />
<text x="959.92" y="1887.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (60,910,066 samples, 0.28%)</title><rect x="674.1" y="1685" width="3.3" height="15.0" fill="rgb(252,170,27)" rx="2" ry="2" />
<text x="677.08" y="1695.5" ></text>
</g>
<g >
<title>neigh_hh_output (20,164,961 samples, 0.09%)</title><rect x="439.0" y="1733" width="1.1" height="15.0" fill="rgb(234,152,27)" rx="2" ry="2" />
<text x="441.95" y="1743.5" ></text>
</g>
<g >
<title>nf_conntrack_in (5,203,906 samples, 0.02%)</title><rect x="1033.8" y="1685" width="0.3" height="15.0" fill="rgb(243,76,14)" rx="2" ry="2" />
<text x="1036.85" y="1695.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (2,653,617 samples, 0.01%)</title><rect x="526.1" y="1957" width="0.1" height="15.0" fill="rgb(210,179,48)" rx="2" ry="2" />
<text x="529.09" y="1967.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (5,032,680 samples, 0.02%)</title><rect x="850.3" y="2021" width="0.2" height="15.0" fill="rgb(238,150,51)" rx="2" ry="2" />
<text x="853.26" y="2031.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,258,039 samples, 0.01%)</title><rect x="571.6" y="1909" width="0.1" height="15.0" fill="rgb(223,52,45)" rx="2" ry="2" />
<text x="574.61" y="1919.5" ></text>
</g>
<g >
<title>lzma2_lzma (471,032,135 samples, 2.20%)</title><rect x="907.7" y="1621" width="26.0" height="15.0" fill="rgb(217,44,13)" rx="2" ry="2" />
<text x="910.72" y="1631.5" >l..</text>
</g>
<g >
<title>load_elf_binary (1,901,184 samples, 0.01%)</title><rect x="862.6" y="1909" width="0.1" height="15.0" fill="rgb(222,28,45)" rx="2" ry="2" />
<text x="865.57" y="1919.5" ></text>
</g>
<g >
<title>skb_free_head (7,350,031 samples, 0.03%)</title><rect x="551.8" y="1877" width="0.4" height="15.0" fill="rgb(236,206,2)" rx="2" ry="2" />
<text x="554.84" y="1887.5" ></text>
</g>
<g >
<title>napi_complete_done (157,553,003 samples, 0.74%)</title><rect x="540.0" y="1925" width="8.6" height="15.0" fill="rgb(235,226,15)" rx="2" ry="2" />
<text x="542.96" y="1935.5" ></text>
</g>
<g >
<title>map_id_range_down (5,322,868 samples, 0.02%)</title><rect x="803.0" y="1749" width="0.3" height="15.0" fill="rgb(234,225,29)" rx="2" ry="2" />
<text x="805.99" y="1759.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1189" width="0.3" height="15.0" fill="rgb(247,62,28)" rx="2" ry="2" />
<text x="897.70" y="1199.5" ></text>
</g>
<g >
<title>net_tx_action (2,496,816 samples, 0.01%)</title><rect x="1170.7" y="1813" width="0.2" height="15.0" fill="rgb(226,92,20)" rx="2" ry="2" />
<text x="1173.75" y="1823.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,940,384 samples, 0.01%)</title><rect x="856.2" y="1877" width="0.1" height="15.0" fill="rgb(205,86,25)" rx="2" ry="2" />
<text x="859.19" y="1887.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (1,934,286 samples, 0.01%)</title><rect x="69.2" y="1877" width="0.1" height="15.0" fill="rgb(245,184,47)" rx="2" ry="2" />
<text x="72.16" y="1887.5" ></text>
</g>
<g >
<title>tun_rx_batched.isra.0 (3,304,974,808 samples, 15.44%)</title><rect x="646.8" y="1909" width="182.2" height="15.0" fill="rgb(242,102,33)" rx="2" ry="2" />
<text x="649.80" y="1919.5" >tun_rx_batched.isra.0</text>
</g>
<g >
<title>ip_list_rcv (10,231,415 samples, 0.05%)</title><rect x="501.1" y="1845" width="0.5" height="15.0" fill="rgb(221,2,24)" rx="2" ry="2" />
<text x="504.08" y="1855.5" ></text>
</g>
<g >
<title>ip_output (1,059,307,106 samples, 4.95%)</title><rect x="705.6" y="1797" width="58.4" height="15.0" fill="rgb(234,81,15)" rx="2" ry="2" />
<text x="708.65" y="1807.5" >ip_out..</text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (8,754,949 samples, 0.04%)</title><rect x="597.4" y="1669" width="0.5" height="15.0" fill="rgb(254,96,18)" rx="2" ry="2" />
<text x="600.39" y="1679.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,928,714 samples, 0.01%)</title><rect x="902.5" y="1813" width="0.1" height="15.0" fill="rgb(243,161,23)" rx="2" ry="2" />
<text x="905.48" y="1823.5" ></text>
</g>
<g >
<title>handle_irq_event (4,686,233 samples, 0.02%)</title><rect x="1098.8" y="1861" width="0.3" height="15.0" fill="rgb(210,47,31)" rx="2" ry="2" />
<text x="1101.81" y="1871.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (117,610,331 samples, 0.55%)</title><rect x="438.2" y="1861" width="6.5" height="15.0" fill="rgb(246,58,33)" rx="2" ry="2" />
<text x="441.23" y="1871.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (17,324,913 samples, 0.08%)</title><rect x="687.3" y="1765" width="1.0" height="15.0" fill="rgb(233,27,31)" rx="2" ry="2" />
<text x="690.30" y="1775.5" ></text>
</g>
<g >
<title>napi_complete_done (2,276,945 samples, 0.01%)</title><rect x="626.1" y="1749" width="0.1" height="15.0" fill="rgb(207,1,0)" rx="2" ry="2" />
<text x="629.09" y="1759.5" ></text>
</g>
<g >
<title>error_return (2,642,510 samples, 0.01%)</title><rect x="526.9" y="2021" width="0.1" height="15.0" fill="rgb(205,2,54)" rx="2" ry="2" />
<text x="529.86" y="2031.5" ></text>
</g>
<g >
<title>__slab_free (10,421,775 samples, 0.05%)</title><rect x="1055.0" y="1749" width="0.6" height="15.0" fill="rgb(216,12,45)" rx="2" ry="2" />
<text x="1058.03" y="1759.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (7,251,424 samples, 0.03%)</title><rect x="1040.5" y="1509" width="0.4" height="15.0" fill="rgb(218,62,34)" rx="2" ry="2" />
<text x="1043.55" y="1519.5" ></text>
</g>
<g >
<title>dev_queue_xmit (1,847,602 samples, 0.01%)</title><rect x="547.7" y="1717" width="0.1" height="15.0" fill="rgb(215,51,44)" rx="2" ry="2" />
<text x="550.70" y="1727.5" ></text>
</g>
<g >
<title>find_match (2,291,777 samples, 0.01%)</title><rect x="676.1" y="1573" width="0.1" height="15.0" fill="rgb(216,123,36)" rx="2" ry="2" />
<text x="679.10" y="1583.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,345,177 samples, 0.02%)</title><rect x="977.7" y="1957" width="0.3" height="15.0" fill="rgb(213,89,2)" rx="2" ry="2" />
<text x="980.73" y="1967.5" ></text>
</g>
<g >
<title>__x64_sys_execve (1,901,184 samples, 0.01%)</title><rect x="862.6" y="2005" width="0.1" height="15.0" fill="rgb(217,88,19)" rx="2" ry="2" />
<text x="865.57" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,287,490 samples, 0.02%)</title><rect x="901.5" y="1733" width="0.2" height="15.0" fill="rgb(216,218,12)" rx="2" ry="2" />
<text x="904.50" y="1743.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,874,292 samples, 0.01%)</title><rect x="609.9" y="1765" width="0.1" height="15.0" fill="rgb(218,57,16)" rx="2" ry="2" />
<text x="612.93" y="1775.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,303,057 samples, 0.01%)</title><rect x="632.8" y="1861" width="0.2" height="15.0" fill="rgb(253,118,8)" rx="2" ry="2" />
<text x="635.84" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (20,443,742 samples, 0.10%)</title><rect x="762.4" y="1749" width="1.1" height="15.0" fill="rgb(216,4,8)" rx="2" ry="2" />
<text x="765.36" y="1759.5" ></text>
</g>
<g >
<title>do_mmap (4,234,666 samples, 0.02%)</title><rect x="847.9" y="1957" width="0.2" height="15.0" fill="rgb(221,64,6)" rx="2" ry="2" />
<text x="850.87" y="1967.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1269" width="0.3" height="15.0" fill="rgb(207,89,10)" rx="2" ry="2" />
<text x="897.70" y="1279.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,925,341 samples, 0.01%)</title><rect x="508.0" y="2005" width="0.1" height="15.0" fill="rgb(237,50,40)" rx="2" ry="2" />
<text x="510.98" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,815,572 samples, 0.01%)</title><rect x="903.3" y="1877" width="0.1" height="15.0" fill="rgb(220,143,46)" rx="2" ry="2" />
<text x="906.33" y="1887.5" ></text>
</g>
<g >
<title>__find_rr_leaf (2,405,437 samples, 0.01%)</title><rect x="1139.1" y="1557" width="0.1" height="15.0" fill="rgb(222,27,17)" rx="2" ry="2" />
<text x="1142.08" y="1567.5" ></text>
</g>
<g >
<title>x86_64_start_reservations (1,038,655,299 samples, 4.85%)</title><rect x="1114.4" y="2021" width="57.2" height="15.0" fill="rgb(234,212,29)" rx="2" ry="2" />
<text x="1117.38" y="2031.5" >x86_64..</text>
</g>
<g >
<title>do_syscall_64 (1,919,849 samples, 0.01%)</title><rect x="857.8" y="1989" width="0.1" height="15.0" fill="rgb(233,193,1)" rx="2" ry="2" />
<text x="860.79" y="1999.5" ></text>
</g>
<g >
<title>path_openat (12,716,400 samples, 0.06%)</title><rect x="844.8" y="1925" width="0.7" height="15.0" fill="rgb(217,95,43)" rx="2" ry="2" />
<text x="847.83" y="1935.5" ></text>
</g>
<g >
<title>nf_hook_slow (24,952,843 samples, 0.12%)</title><rect x="1013.5" y="1733" width="1.3" height="15.0" fill="rgb(220,160,50)" rx="2" ry="2" />
<text x="1016.45" y="1743.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (5,108,908 samples, 0.02%)</title><rect x="1102.3" y="1781" width="0.3" height="15.0" fill="rgb(208,210,13)" rx="2" ry="2" />
<text x="1105.31" y="1791.5" ></text>
</g>
<g >
<title>napi_complete_done (1,924,193 samples, 0.01%)</title><rect x="930.2" y="1461" width="0.1" height="15.0" fill="rgb(236,102,53)" rx="2" ry="2" />
<text x="933.17" y="1471.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (249,857,569 samples, 1.17%)</title><rect x="511.6" y="1973" width="13.8" height="15.0" fill="rgb(208,0,17)" rx="2" ry="2" />
<text x="514.64" y="1983.5" ></text>
</g>
<g >
<title>exc_page_fault (2,697,942 samples, 0.01%)</title><rect x="875.1" y="1829" width="0.2" height="15.0" fill="rgb(229,192,4)" rx="2" ry="2" />
<text x="878.14" y="1839.5" ></text>
</g>
<g >
<title>ip6_forward (149,105,278 samples, 0.70%)</title><rect x="477.6" y="1829" width="8.2" height="15.0" fill="rgb(211,121,54)" rx="2" ry="2" />
<text x="480.62" y="1839.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="645" width="0.5" height="15.0" fill="rgb(209,209,51)" rx="2" ry="2" />
<text x="18.42" y="655.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (21,890,886 samples, 0.10%)</title><rect x="501.1" y="1877" width="1.2" height="15.0" fill="rgb(208,77,54)" rx="2" ry="2" />
<text x="504.06" y="1887.5" ></text>
</g>
<g >
<title>show_mountinfo (4,628,962 samples, 0.02%)</title><rect x="901.9" y="1653" width="0.3" height="15.0" fill="rgb(244,180,46)" rx="2" ry="2" />
<text x="904.91" y="1663.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,149,322 samples, 0.02%)</title><rect x="575.6" y="1877" width="0.2" height="15.0" fill="rgb(230,6,20)" rx="2" ry="2" />
<text x="578.56" y="1887.5" ></text>
</g>
<g >
<title>ip6_pol_route (19,609,432 samples, 0.09%)</title><rect x="1006.2" y="1637" width="1.1" height="15.0" fill="rgb(220,202,39)" rx="2" ry="2" />
<text x="1009.25" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (2,261,152 samples, 0.01%)</title><rect x="514.2" y="1765" width="0.2" height="15.0" fill="rgb(218,104,4)" rx="2" ry="2" />
<text x="517.24" y="1775.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (2,694,231 samples, 0.01%)</title><rect x="70.6" y="2021" width="0.2" height="15.0" fill="rgb(228,101,0)" rx="2" ry="2" />
<text x="73.63" y="2031.5" ></text>
</g>
<g >
<title>ipv6_rcv (13,252,399 samples, 0.06%)</title><rect x="1150.8" y="1701" width="0.7" height="15.0" fill="rgb(228,93,3)" rx="2" ry="2" />
<text x="1153.77" y="1711.5" ></text>
</g>
<g >
<title>__fib_lookup (8,703,555 samples, 0.04%)</title><rect x="1001.8" y="1685" width="0.5" height="15.0" fill="rgb(233,71,27)" rx="2" ry="2" />
<text x="1004.81" y="1695.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (3,113,895 samples, 0.01%)</title><rect x="57.5" y="1685" width="0.2" height="15.0" fill="rgb(208,65,50)" rx="2" ry="2" />
<text x="60.51" y="1695.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (794,049,614 samples, 3.71%)</title><rect x="463.1" y="1973" width="43.8" height="15.0" fill="rgb(231,154,28)" rx="2" ry="2" />
<text x="466.13" y="1983.5" >__so..</text>
</g>
<g >
<title>do_syscall_64 (1,918,274 samples, 0.01%)</title><rect x="47.0" y="2021" width="0.1" height="15.0" fill="rgb(243,41,37)" rx="2" ry="2" />
<text x="49.98" y="2031.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1029" width="0.5" height="15.0" fill="rgb(250,131,42)" rx="2" ry="2" />
<text x="18.42" y="1039.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,302,927 samples, 0.01%)</title><rect x="758.4" y="1685" width="0.1" height="15.0" fill="rgb(244,227,19)" rx="2" ry="2" />
<text x="761.40" y="1695.5" ></text>
</g>
<g >
<title>fib_rules_lookup (11,266,610 samples, 0.05%)</title><rect x="1125.5" y="1637" width="0.6" height="15.0" fill="rgb(244,171,13)" rx="2" ry="2" />
<text x="1128.46" y="1647.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,044,402 samples, 0.01%)</title><rect x="564.2" y="2005" width="0.2" height="15.0" fill="rgb(253,55,1)" rx="2" ry="2" />
<text x="567.23" y="2015.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (8,330,983 samples, 0.04%)</title><rect x="1099.8" y="1589" width="0.5" height="15.0" fill="rgb(211,170,35)" rx="2" ry="2" />
<text x="1102.79" y="1599.5" ></text>
</g>
<g >
<title>next_uptodate_page (3,086,996 samples, 0.01%)</title><rect x="846.8" y="1893" width="0.1" height="15.0" fill="rgb(234,94,50)" rx="2" ry="2" />
<text x="849.76" y="1903.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (5,125,895 samples, 0.02%)</title><rect x="979.8" y="1797" width="0.3" height="15.0" fill="rgb(253,55,36)" rx="2" ry="2" />
<text x="982.77" y="1807.5" ></text>
</g>
<g >
<title>nf_conntrack_in (5,559,634 samples, 0.03%)</title><rect x="1014.5" y="1701" width="0.3" height="15.0" fill="rgb(208,226,9)" rx="2" ry="2" />
<text x="1017.49" y="1711.5" ></text>
</g>
<g >
<title>skb_clone (10,647,168 samples, 0.05%)</title><rect x="694.4" y="1749" width="0.6" height="15.0" fill="rgb(219,29,17)" rx="2" ry="2" />
<text x="697.39" y="1759.5" ></text>
</g>
<g >
<title>ksys_read (18,857,042 samples, 0.09%)</title><rect x="1179.1" y="1781" width="1.0" height="15.0" fill="rgb(251,123,24)" rx="2" ry="2" />
<text x="1182.09" y="1791.5" ></text>
</g>
<g >
<title>net_rx_action (3,804,808 samples, 0.02%)</title><rect x="593.9" y="1765" width="0.2" height="15.0" fill="rgb(214,21,24)" rx="2" ry="2" />
<text x="596.90" y="1775.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,920,362 samples, 0.01%)</title><rect x="868.4" y="2021" width="0.1" height="15.0" fill="rgb(215,178,28)" rx="2" ry="2" />
<text x="871.37" y="2031.5" ></text>
</g>
<g >
<title>fib_rules_lookup (10,450,758 samples, 0.05%)</title><rect x="442.2" y="1765" width="0.6" height="15.0" fill="rgb(225,189,46)" rx="2" ry="2" />
<text x="445.21" y="1775.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (5,113,949 samples, 0.02%)</title><rect x="550.7" y="1813" width="0.3" height="15.0" fill="rgb(247,53,44)" rx="2" ry="2" />
<text x="553.70" y="1823.5" ></text>
</g>
<g >
<title>ip6_route_input (2,942,960 samples, 0.01%)</title><rect x="57.3" y="1797" width="0.1" height="15.0" fill="rgb(206,37,19)" rx="2" ry="2" />
<text x="60.28" y="1807.5" ></text>
</g>
<g >
<title>do_dentry_open (1,916,580 samples, 0.01%)</title><rect x="1174.8" y="1893" width="0.1" height="15.0" fill="rgb(241,39,41)" rx="2" ry="2" />
<text x="1177.77" y="1903.5" ></text>
</g>
<g >
<title>do_exit (17,162,318 samples, 0.08%)</title><rect x="856.8" y="1989" width="1.0" height="15.0" fill="rgb(226,14,0)" rx="2" ry="2" />
<text x="859.83" y="1999.5" ></text>
</g>
<g >
<title>net_tx_action (1,921,677 samples, 0.01%)</title><rect x="959.6" y="1973" width="0.1" height="15.0" fill="rgb(232,227,39)" rx="2" ry="2" />
<text x="962.64" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (2,653,426 samples, 0.01%)</title><rect x="443.2" y="1749" width="0.1" height="15.0" fill="rgb(239,34,9)" rx="2" ry="2" />
<text x="446.17" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (24,910,036 samples, 0.12%)</title><rect x="876.9" y="2037" width="1.4" height="15.0" fill="rgb(225,99,27)" rx="2" ry="2" />
<text x="879.89" y="2047.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (19,132,266 samples, 0.09%)</title><rect x="65.3" y="2053" width="1.1" height="15.0" fill="rgb(226,186,35)" rx="2" ry="2" />
<text x="68.32" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_read (1,897,828 samples, 0.01%)</title><rect x="901.5" y="1717" width="0.1" height="15.0" fill="rgb(215,177,22)" rx="2" ry="2" />
<text x="904.54" y="1727.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,821,728 samples, 0.02%)</title><rect x="835.5" y="1973" width="0.2" height="15.0" fill="rgb(248,87,53)" rx="2" ry="2" />
<text x="838.52" y="1983.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (2,302,009 samples, 0.01%)</title><rect x="401.3" y="149" width="0.1" height="15.0" fill="rgb(220,42,10)" rx="2" ry="2" />
<text x="404.27" y="159.5" ></text>
</g>
<g >
<title>flow_hash_from_keys (2,076,489 samples, 0.01%)</title><rect x="1010.2" y="1509" width="0.1" height="15.0" fill="rgb(233,55,52)" rx="2" ry="2" />
<text x="1013.18" y="1519.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (2,901,292 samples, 0.01%)</title><rect x="18.1" y="2037" width="0.2" height="15.0" fill="rgb(226,96,17)" rx="2" ry="2" />
<text x="21.12" y="2047.5" ></text>
</g>
<g >
<title>do_syscall_64 (17,518,228 samples, 0.08%)</title><rect x="1174.7" y="2005" width="1.0" height="15.0" fill="rgb(241,149,22)" rx="2" ry="2" />
<text x="1177.69" y="2015.5" ></text>
</g>
<g >
<title>fib6_rule_action (1,820,678 samples, 0.01%)</title><rect x="687.8" y="1621" width="0.1" height="15.0" fill="rgb(242,59,39)" rx="2" ry="2" />
<text x="690.84" y="1631.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,269,074 samples, 0.01%)</title><rect x="887.3" y="1861" width="0.1" height="15.0" fill="rgb(215,45,20)" rx="2" ry="2" />
<text x="890.28" y="1871.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (128,362,419 samples, 0.60%)</title><rect x="1062.1" y="1893" width="7.1" height="15.0" fill="rgb(223,50,28)" rx="2" ry="2" />
<text x="1065.12" y="1903.5" ></text>
</g>
<g >
<title>kfree_skbmem (3,386,787 samples, 0.02%)</title><rect x="548.1" y="1845" width="0.2" height="15.0" fill="rgb(218,53,4)" rx="2" ry="2" />
<text x="551.11" y="1855.5" ></text>
</g>
<g >
<title>asm_common_interrupt (438,421,019 samples, 2.05%)</title><rect x="529.9" y="2037" width="24.1" height="15.0" fill="rgb(227,11,7)" rx="2" ry="2" />
<text x="532.86" y="2047.5" >a..</text>
</g>
<g >
<title>new_sync_write (5,993,440 samples, 0.03%)</title><rect x="607.4" y="1973" width="0.3" height="15.0" fill="rgb(225,158,49)" rx="2" ry="2" />
<text x="610.35" y="1983.5" ></text>
</g>
<g >
<title>security_inode_getattr (2,688,421 samples, 0.01%)</title><rect x="35.6" y="1941" width="0.2" height="15.0" fill="rgb(229,30,17)" rx="2" ry="2" />
<text x="38.63" y="1951.5" ></text>
</g>
<g >
<title>skb_release_data (8,441,449 samples, 0.04%)</title><rect x="551.8" y="1893" width="0.4" height="15.0" fill="rgb(222,103,51)" rx="2" ry="2" />
<text x="554.78" y="1903.5" ></text>
</g>
<g >
<title>napi_complete_done (2,701,120 samples, 0.01%)</title><rect x="22.1" y="1925" width="0.1" height="15.0" fill="rgb(205,99,2)" rx="2" ry="2" />
<text x="25.05" y="1935.5" ></text>
</g>
<g >
<title>[snap] (10,261,127 samples, 0.05%)</title><rect x="883.8" y="133" width="0.5" height="15.0" fill="rgb(243,209,43)" rx="2" ry="2" />
<text x="886.77" y="143.5" ></text>
</g>
<g >
<title>tcp_v6_early_demux (4,747,522 samples, 0.02%)</title><rect x="1037.5" y="1701" width="0.3" height="15.0" fill="rgb(243,123,17)" rx="2" ry="2" />
<text x="1040.51" y="1711.5" ></text>
</g>
<g >
<title>__alloc_skb (3,677,954 samples, 0.02%)</title><rect x="1101.3" y="1781" width="0.2" height="15.0" fill="rgb(216,196,11)" rx="2" ry="2" />
<text x="1104.29" y="1791.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,838,928 samples, 0.02%)</title><rect x="937.6" y="1765" width="0.2" height="15.0" fill="rgb(227,107,33)" rx="2" ry="2" />
<text x="940.62" y="1775.5" ></text>
</g>
<g >
<title>[snap-exec] (16,540,835 samples, 0.08%)</title><rect x="873.8" y="1765" width="0.9" height="15.0" fill="rgb(239,99,3)" rx="2" ry="2" />
<text x="876.78" y="1775.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1525" width="0.5" height="15.0" fill="rgb(234,127,37)" rx="2" ry="2" />
<text x="18.42" y="1535.5" ></text>
</g>
<g >
<title>__napi_poll (2,326,520 samples, 0.01%)</title><rect x="853.3" y="1797" width="0.1" height="15.0" fill="rgb(210,11,45)" rx="2" ry="2" />
<text x="856.28" y="1807.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,508,762 samples, 0.04%)</title><rect x="15.4" y="405" width="0.5" height="15.0" fill="rgb(235,192,32)" rx="2" ry="2" />
<text x="18.42" y="415.5" ></text>
</g>
<g >
<title>net_rx_action (324,340,302 samples, 1.52%)</title><rect x="534.7" y="1973" width="17.8" height="15.0" fill="rgb(224,134,48)" rx="2" ry="2" />
<text x="537.65" y="1983.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,211,375 samples, 0.01%)</title><rect x="561.9" y="1989" width="0.1" height="15.0" fill="rgb(218,190,39)" rx="2" ry="2" />
<text x="564.88" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (9,296,349 samples, 0.04%)</title><rect x="861.7" y="2053" width="0.5" height="15.0" fill="rgb(228,20,11)" rx="2" ry="2" />
<text x="864.70" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12,700,267 samples, 0.06%)</title><rect x="842.8" y="2021" width="0.7" height="15.0" fill="rgb(240,152,26)" rx="2" ry="2" />
<text x="845.81" y="2031.5" ></text>
</g>
<g >
<title>ip6_output (2,576,833 samples, 0.01%)</title><rect x="444.0" y="1765" width="0.1" height="15.0" fill="rgb(226,73,36)" rx="2" ry="2" />
<text x="446.96" y="1775.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (5,592,543 samples, 0.03%)</title><rect x="72.6" y="1781" width="0.3" height="15.0" fill="rgb(209,134,4)" rx="2" ry="2" />
<text x="75.57" y="1791.5" ></text>
</g>
<g >
<title>[snap] (25,915,881 samples, 0.12%)</title><rect x="883.6" y="1717" width="1.4" height="15.0" fill="rgb(228,144,9)" rx="2" ry="2" />
<text x="886.59" y="1727.5" ></text>
</g>
<g >
<title>common_interrupt (1,921,657 samples, 0.01%)</title><rect x="34.4" y="1797" width="0.1" height="15.0" fill="rgb(236,92,36)" rx="2" ry="2" />
<text x="37.41" y="1807.5" ></text>
</g>
<g >
<title>handle_irq_event (2,203,800 samples, 0.01%)</title><rect x="771.6" y="1701" width="0.1" height="15.0" fill="rgb(209,35,15)" rx="2" ry="2" />
<text x="774.61" y="1711.5" ></text>
</g>
<g >
<title>__posix_spawn_file_actions_addopen (3,321,518 samples, 0.02%)</title><rect x="1178.0" y="2053" width="0.1" height="15.0" fill="rgb(219,134,47)" rx="2" ry="2" />
<text x="1180.95" y="2063.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,472,546 samples, 0.02%)</title><rect x="959.6" y="2021" width="0.2" height="15.0" fill="rgb(235,69,9)" rx="2" ry="2" />
<text x="962.57" y="2031.5" ></text>
</g>
<g >
<title>exc_page_fault (3,081,304 samples, 0.01%)</title><rect x="967.1" y="2005" width="0.1" height="15.0" fill="rgb(244,110,49)" rx="2" ry="2" />
<text x="970.05" y="2015.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,251,318 samples, 0.01%)</title><rect x="599.0" y="1877" width="0.1" height="15.0" fill="rgb(251,127,34)" rx="2" ry="2" />
<text x="601.96" y="1887.5" ></text>
</g>
<g >
<title>tick_sched_timer (4,963,702 samples, 0.02%)</title><rect x="423.0" y="1909" width="0.2" height="15.0" fill="rgb(223,49,41)" rx="2" ry="2" />
<text x="425.96" y="1919.5" ></text>
</g>
<g >
<title>dec_block (14,627,351 samples, 0.07%)</title><rect x="942.8" y="1669" width="0.9" height="15.0" fill="rgb(250,228,11)" rx="2" ry="2" />
<text x="945.85" y="1679.5" ></text>
</g>
<g >
<title>start_kernel (1,038,655,299 samples, 4.85%)</title><rect x="1114.4" y="2005" width="57.2" height="15.0" fill="rgb(220,150,30)" rx="2" ry="2" />
<text x="1117.38" y="2015.5" >start_..</text>
</g>
<g >
<title>ip_route_input_noref (2,681,758 samples, 0.01%)</title><rect x="424.3" y="1813" width="0.2" height="15.0" fill="rgb(253,11,5)" rx="2" ry="2" />
<text x="427.33" y="1823.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (14,109,090 samples, 0.07%)</title><rect x="597.2" y="1781" width="0.8" height="15.0" fill="rgb(241,49,13)" rx="2" ry="2" />
<text x="600.22" y="1791.5" ></text>
</g>
<g >
<title>__ip6_finish_output (52,655,696 samples, 0.25%)</title><rect x="1130.9" y="1637" width="2.9" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="1133.88" y="1647.5" ></text>
</g>
<g >
<title>do_pselect.constprop.0 (4,069,549 samples, 0.02%)</title><rect x="861.9" y="1973" width="0.2" height="15.0" fill="rgb(220,21,32)" rx="2" ry="2" />
<text x="864.87" y="1983.5" ></text>
</g>
<g >
<title>__napi_poll (1,909,265 samples, 0.01%)</title><rect x="589.5" y="1781" width="0.1" height="15.0" fill="rgb(239,222,50)" rx="2" ry="2" />
<text x="592.52" y="1791.5" ></text>
</g>
<g >
<title>exc_page_fault (1,930,365 samples, 0.01%)</title><rect x="902.6" y="1797" width="0.1" height="15.0" fill="rgb(222,204,33)" rx="2" ry="2" />
<text x="905.63" y="1807.5" ></text>
</g>
<g >
<title>fib_table_lookup (3,333,375 samples, 0.02%)</title><rect x="1002.1" y="1637" width="0.1" height="15.0" fill="rgb(219,121,36)" rx="2" ry="2" />
<text x="1005.06" y="1647.5" ></text>
</g>
<g >
<title>__x64_sys_clone3 (1,906,353 samples, 0.01%)</title><rect x="879.5" y="2005" width="0.1" height="15.0" fill="rgb(239,112,48)" rx="2" ry="2" />
<text x="882.47" y="2015.5" ></text>
</g>
<g >
<title>ip6_rcv_core (7,617,502 samples, 0.04%)</title><rect x="441.6" y="1813" width="0.4" height="15.0" fill="rgb(251,75,53)" rx="2" ry="2" />
<text x="444.62" y="1823.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (2,681,758 samples, 0.01%)</title><rect x="424.3" y="1829" width="0.2" height="15.0" fill="rgb(206,101,0)" rx="2" ry="2" />
<text x="427.33" y="1839.5" ></text>
</g>
<g >
<title>[snap] (51,584,697 samples, 0.24%)</title><rect x="893.0" y="1845" width="2.9" height="15.0" fill="rgb(227,197,7)" rx="2" ry="2" />
<text x="896.03" y="1855.5" ></text>
</g>
<g >
<title>ip_output (17,724,518 samples, 0.08%)</title><rect x="1003.0" y="1701" width="1.0" height="15.0" fill="rgb(221,39,11)" rx="2" ry="2" />
<text x="1006.01" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (4,523,661 samples, 0.02%)</title><rect x="20.4" y="453" width="0.3" height="15.0" fill="rgb(240,15,22)" rx="2" ry="2" />
<text x="23.41" y="463.5" ></text>
</g>
<g >
<title>[unknown] (153,319,249 samples, 0.72%)</title><rect x="393.5" y="357" width="8.4" height="15.0" fill="rgb(248,37,21)" rx="2" ry="2" />
<text x="396.46" y="367.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (10,083,372 samples, 0.05%)</title><rect x="687.7" y="1717" width="0.6" height="15.0" fill="rgb(251,49,14)" rx="2" ry="2" />
<text x="690.70" y="1727.5" ></text>
</g>
<g >
<title>[snap] (15,532,404 samples, 0.07%)</title><rect x="883.8" y="261" width="0.8" height="15.0" fill="rgb(235,97,19)" rx="2" ry="2" />
<text x="886.77" y="271.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (3,234,380 samples, 0.02%)</title><rect x="681.2" y="1733" width="0.2" height="15.0" fill="rgb(239,7,23)" rx="2" ry="2" />
<text x="684.22" y="1743.5" ></text>
</g>
<g >
<title>apparmor_inode_getattr (4,241,287 samples, 0.02%)</title><rect x="28.5" y="1941" width="0.3" height="15.0" fill="rgb(231,112,13)" rx="2" ry="2" />
<text x="31.52" y="1951.5" ></text>
</g>
<g >
<title>do_read_fault (2,203,132 samples, 0.01%)</title><rect x="897.0" y="1813" width="0.2" height="15.0" fill="rgb(249,25,31)" rx="2" ry="2" />
<text x="900.03" y="1823.5" ></text>
</g>
<g >
<title>slab_free_freelist_hook.constprop.0 (14,756,831 samples, 0.07%)</title><rect x="1055.7" y="1749" width="0.8" height="15.0" fill="rgb(243,136,31)" rx="2" ry="2" />
<text x="1058.73" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1525" width="0.3" height="15.0" fill="rgb(212,115,37)" rx="2" ry="2" />
<text x="23.41" y="1535.5" ></text>
</g>
<g >
<title>unmap_vmas (24,842,201 samples, 0.12%)</title><rect x="889.7" y="1829" width="1.4" height="15.0" fill="rgb(253,178,52)" rx="2" ry="2" />
<text x="892.72" y="1839.5" ></text>
</g>
<g >
<title>handle_pte_fault (10,376,923 samples, 0.05%)</title><rect x="965.8" y="1909" width="0.6" height="15.0" fill="rgb(211,45,27)" rx="2" ry="2" />
<text x="968.82" y="1919.5" ></text>
</g>
<g >
<title>kfree (5,198,928 samples, 0.02%)</title><rect x="446.9" y="1829" width="0.2" height="15.0" fill="rgb(220,137,48)" rx="2" ry="2" />
<text x="449.86" y="1839.5" ></text>
</g>
<g >
<title>__skb_flow_get_ports (2,296,157 samples, 0.01%)</title><rect x="802.4" y="1765" width="0.2" height="15.0" fill="rgb(232,136,44)" rx="2" ry="2" />
<text x="805.43" y="1775.5" ></text>
</g>
<g >
<title>m_show (4,628,962 samples, 0.02%)</title><rect x="901.9" y="1669" width="0.3" height="15.0" fill="rgb(229,6,29)" rx="2" ry="2" />
<text x="904.91" y="1679.5" ></text>
</g>
<g >
<title>handle_irq_event (34,515,503 samples, 0.16%)</title><rect x="431.9" y="1941" width="1.9" height="15.0" fill="rgb(236,19,7)" rx="2" ry="2" />
<text x="434.90" y="1951.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,353,917 samples, 0.02%)</title><rect x="816.9" y="1749" width="0.2" height="15.0" fill="rgb(248,177,9)" rx="2" ry="2" />
<text x="819.93" y="1759.5" ></text>
</g>
<g >
<title>clear_page_erms (2,283,976 samples, 0.01%)</title><rect x="886.9" y="1717" width="0.2" height="15.0" fill="rgb(229,135,37)" rx="2" ry="2" />
<text x="889.94" y="1727.5" ></text>
</g>
<g >
<title>unmap_single_vma (12,727,417 samples, 0.06%)</title><rect x="972.7" y="1909" width="0.7" height="15.0" fill="rgb(247,84,25)" rx="2" ry="2" />
<text x="975.65" y="1919.5" ></text>
</g>
<g >
<title>qdisc_watchdog (1,891,309 samples, 0.01%)</title><rect x="510.7" y="1957" width="0.1" height="15.0" fill="rgb(247,13,29)" rx="2" ry="2" />
<text x="513.69" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (2,539,538 samples, 0.01%)</title><rect x="1124.7" y="1653" width="0.1" height="15.0" fill="rgb(212,87,14)" rx="2" ry="2" />
<text x="1127.68" y="1663.5" ></text>
</g>
<g >
<title>cgroup_seqfile_show (2,302,586 samples, 0.01%)</title><rect x="1175.2" y="1877" width="0.1" height="15.0" fill="rgb(231,26,6)" rx="2" ry="2" />
<text x="1178.22" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="981" width="0.3" height="15.0" fill="rgb(217,30,21)" rx="2" ry="2" />
<text x="23.41" y="991.5" ></text>
</g>
<g >
<title>rb_next (3,131,504 samples, 0.01%)</title><rect x="1109.5" y="1893" width="0.1" height="15.0" fill="rgb(217,141,24)" rx="2" ry="2" />
<text x="1112.46" y="1903.5" ></text>
</g>
<g >
<title>__napi_poll (14,109,090 samples, 0.07%)</title><rect x="597.2" y="1749" width="0.8" height="15.0" fill="rgb(223,75,16)" rx="2" ry="2" />
<text x="600.22" y="1759.5" ></text>
</g>
<g >
<title>__do_sys_clone (38,014,895 samples, 0.18%)</title><rect x="25.2" y="1989" width="2.1" height="15.0" fill="rgb(251,110,0)" rx="2" ry="2" />
<text x="28.17" y="1999.5" ></text>
</g>
<g >
<title>lzma_main (19,990,395 samples, 0.09%)</title><rect x="955.6" y="1637" width="1.1" height="15.0" fill="rgb(241,104,33)" rx="2" ry="2" />
<text x="958.64" y="1647.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (3,453,094 samples, 0.02%)</title><rect x="612.0" y="1797" width="0.2" height="15.0" fill="rgb(217,211,20)" rx="2" ry="2" />
<text x="614.96" y="1807.5" ></text>
</g>
<g >
<title>handle_pte_fault (36,908,322 samples, 0.17%)</title><rect x="955.3" y="1941" width="2.0" height="15.0" fill="rgb(205,3,3)" rx="2" ry="2" />
<text x="958.26" y="1951.5" ></text>
</g>
<g >
<title>lzma_len (1,935,524 samples, 0.01%)</title><rect x="913.4" y="1589" width="0.1" height="15.0" fill="rgb(230,0,41)" rx="2" ry="2" />
<text x="916.38" y="1599.5" ></text>
</g>
<g >
<title>__copy_skb_header (3,416,608 samples, 0.02%)</title><rect x="694.5" y="1717" width="0.1" height="15.0" fill="rgb(247,113,47)" rx="2" ry="2" />
<text x="697.45" y="1727.5" ></text>
</g>
<g >
<title>schedule_idle (38,479,219 samples, 0.18%)</title><rect x="1169.2" y="1925" width="2.1" height="15.0" fill="rgb(234,132,12)" rx="2" ry="2" />
<text x="1172.19" y="1935.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (8,020,603 samples, 0.04%)</title><rect x="686.7" y="1717" width="0.4" height="15.0" fill="rgb(218,51,50)" rx="2" ry="2" />
<text x="689.67" y="1727.5" ></text>
</g>
<g >
<title>exit_mmap (13,419,102 samples, 0.06%)</title><rect x="40.6" y="1941" width="0.8" height="15.0" fill="rgb(247,162,21)" rx="2" ry="2" />
<text x="43.64" y="1951.5" ></text>
</g>
<g >
<title>handle_irq_event (52,972,072 samples, 0.25%)</title><rect x="530.7" y="1973" width="2.9" height="15.0" fill="rgb(236,96,19)" rx="2" ry="2" />
<text x="533.69" y="1983.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (16,364,330 samples, 0.08%)</title><rect x="414.8" y="1765" width="0.9" height="15.0" fill="rgb(221,34,1)" rx="2" ry="2" />
<text x="417.82" y="1775.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (6,428,331 samples, 0.03%)</title><rect x="419.5" y="1829" width="0.3" height="15.0" fill="rgb(235,159,18)" rx="2" ry="2" />
<text x="422.48" y="1839.5" ></text>
</g>
<g >
<title>enqueue_entity (2,853,929 samples, 0.01%)</title><rect x="1069.7" y="1797" width="0.2" height="15.0" fill="rgb(254,181,25)" rx="2" ry="2" />
<text x="1072.70" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (165,464,035 samples, 0.77%)</title><rect x="393.4" y="1685" width="9.1" height="15.0" fill="rgb(210,82,11)" rx="2" ry="2" />
<text x="396.36" y="1695.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,397,782 samples, 0.03%)</title><rect x="1187.2" y="2021" width="0.3" height="15.0" fill="rgb(212,138,1)" rx="2" ry="2" />
<text x="1190.16" y="2031.5" ></text>
</g>
<g >
<title>rtl8169_tx_map (3,923,593 samples, 0.02%)</title><rect x="1067.3" y="1781" width="0.2" height="15.0" fill="rgb(224,139,53)" rx="2" ry="2" />
<text x="1070.32" y="1791.5" ></text>
</g>
<g >
<title>____sys_sendmsg (5,432,778 samples, 0.03%)</title><rect x="45.2" y="1925" width="0.3" height="15.0" fill="rgb(242,201,15)" rx="2" ry="2" />
<text x="48.22" y="1935.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,927,803 samples, 0.01%)</title><rect x="903.1" y="1797" width="0.1" height="15.0" fill="rgb(231,135,13)" rx="2" ry="2" />
<text x="906.07" y="1807.5" ></text>
</g>
<g >
<title>nf_hook_slow (9,903,781 samples, 0.05%)</title><rect x="437.1" y="1845" width="0.5" height="15.0" fill="rgb(226,178,33)" rx="2" ry="2" />
<text x="440.06" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="821" width="0.3" height="15.0" fill="rgb(248,94,38)" rx="2" ry="2" />
<text x="23.41" y="831.5" ></text>
</g>
<g >
<title>[unknown] (5,718,105 samples, 0.03%)</title><rect x="409.2" y="1781" width="0.3" height="15.0" fill="rgb(211,158,35)" rx="2" ry="2" />
<text x="412.17" y="1791.5" ></text>
</g>
<g >
<title>ip_forward (3,033,164 samples, 0.01%)</title><rect x="449.7" y="1845" width="0.2" height="15.0" fill="rgb(205,144,8)" rx="2" ry="2" />
<text x="452.70" y="1855.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (3,799,151 samples, 0.02%)</title><rect x="657.8" y="1589" width="0.2" height="15.0" fill="rgb(208,135,38)" rx="2" ry="2" />
<text x="660.84" y="1599.5" ></text>
</g>
<g >
<title>sch_direct_xmit (16,815,431 samples, 0.08%)</title><rect x="467.3" y="1701" width="0.9" height="15.0" fill="rgb(240,101,49)" rx="2" ry="2" />
<text x="470.26" y="1711.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,467,755 samples, 0.02%)</title><rect x="933.4" y="1525" width="0.2" height="15.0" fill="rgb(234,190,48)" rx="2" ry="2" />
<text x="936.41" y="1535.5" ></text>
</g>
<g >
<title>skb_release_data (2,621,265 samples, 0.01%)</title><rect x="1143.3" y="1685" width="0.1" height="15.0" fill="rgb(227,101,16)" rx="2" ry="2" />
<text x="1146.27" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (2,575,466 samples, 0.01%)</title><rect x="495.8" y="1765" width="0.2" height="15.0" fill="rgb(209,46,5)" rx="2" ry="2" />
<text x="498.84" y="1775.5" ></text>
</g>
<g >
<title>rtl_rx (2,691,996 samples, 0.01%)</title><rect x="846.1" y="1925" width="0.2" height="15.0" fill="rgb(226,113,8)" rx="2" ry="2" />
<text x="849.10" y="1935.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1397" width="1.1" height="15.0" fill="rgb(228,12,46)" rx="2" ry="2" />
<text x="886.75" y="1407.5" ></text>
</g>
<g >
<title>[unknown] (5,450,997 samples, 0.03%)</title><rect x="1004.8" y="1669" width="0.3" height="15.0" fill="rgb(247,132,19)" rx="2" ry="2" />
<text x="1007.75" y="1679.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,836,541 samples, 0.02%)</title><rect x="639.5" y="1813" width="0.2" height="15.0" fill="rgb(230,34,26)" rx="2" ry="2" />
<text x="642.46" y="1823.5" ></text>
</g>
<g >
<title>__napi_poll (264,901,370 samples, 1.24%)</title><rect x="406.1" y="1909" width="14.6" height="15.0" fill="rgb(236,124,48)" rx="2" ry="2" />
<text x="409.15" y="1919.5" ></text>
</g>
<g >
<title>exc_page_fault (1,835,646 samples, 0.01%)</title><rect x="896.0" y="1829" width="0.1" height="15.0" fill="rgb(222,135,19)" rx="2" ry="2" />
<text x="899.02" y="1839.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (1,896,014 samples, 0.01%)</title><rect x="401.4" y="117" width="0.1" height="15.0" fill="rgb(219,96,41)" rx="2" ry="2" />
<text x="404.39" y="127.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (3,486,140 samples, 0.02%)</title><rect x="958.8" y="1829" width="0.2" height="15.0" fill="rgb(222,220,51)" rx="2" ry="2" />
<text x="961.85" y="1839.5" ></text>
</g>
<g >
<title>security_file_open (1,935,329 samples, 0.01%)</title><rect x="855.8" y="1877" width="0.2" height="15.0" fill="rgb(251,216,23)" rx="2" ry="2" />
<text x="858.84" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,815,572 samples, 0.01%)</title><rect x="903.3" y="1893" width="0.1" height="15.0" fill="rgb(230,167,29)" rx="2" ry="2" />
<text x="906.33" y="1903.5" ></text>
</g>
<g >
<title>[snap-seccomp] (11,871,561 samples, 0.06%)</title><rect x="877.2" y="1861" width="0.6" height="15.0" fill="rgb(238,168,20)" rx="2" ry="2" />
<text x="880.19" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,665,636 samples, 0.01%)</title><rect x="870.3" y="2021" width="0.2" height="15.0" fill="rgb(206,111,21)" rx="2" ry="2" />
<text x="873.33" y="2031.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (24,466,515 samples, 0.11%)</title><rect x="889.7" y="1781" width="1.4" height="15.0" fill="rgb(212,211,53)" rx="2" ry="2" />
<text x="892.74" y="1791.5" ></text>
</g>
<g >
<title>ip6_pol_route (28,456,636 samples, 0.13%)</title><rect x="1035.6" y="1621" width="1.6" height="15.0" fill="rgb(242,55,3)" rx="2" ry="2" />
<text x="1038.63" y="1631.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,697,942 samples, 0.01%)</title><rect x="875.1" y="1845" width="0.2" height="15.0" fill="rgb(244,134,13)" rx="2" ry="2" />
<text x="878.14" y="1855.5" ></text>
</g>
<g >
<title>__siphash_unaligned (3,182,871 samples, 0.01%)</title><rect x="1132.9" y="1477" width="0.1" height="15.0" fill="rgb(234,31,18)" rx="2" ry="2" />
<text x="1135.85" y="1487.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (1,911,662 samples, 0.01%)</title><rect x="599.7" y="1797" width="0.1" height="15.0" fill="rgb(247,183,26)" rx="2" ry="2" />
<text x="602.66" y="1807.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,325,348 samples, 0.01%)</title><rect x="72.7" y="1765" width="0.2" height="15.0" fill="rgb(219,31,26)" rx="2" ry="2" />
<text x="75.73" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1541" width="0.3" height="15.0" fill="rgb(215,80,31)" rx="2" ry="2" />
<text x="23.41" y="1551.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (3,179,737 samples, 0.01%)</title><rect x="1020.6" y="1749" width="0.2" height="15.0" fill="rgb(211,25,37)" rx="2" ry="2" />
<text x="1023.60" y="1759.5" ></text>
</g>
<g >
<title>nft_do_chain_ipv6 (3,362,410 samples, 0.02%)</title><rect x="487.7" y="1797" width="0.2" height="15.0" fill="rgb(222,72,9)" rx="2" ry="2" />
<text x="490.68" y="1807.5" ></text>
</g>
<g >
<title>ip6_route_input (3,815,673 samples, 0.02%)</title><rect x="514.6" y="1813" width="0.2" height="15.0" fill="rgb(206,28,38)" rx="2" ry="2" />
<text x="517.59" y="1823.5" ></text>
</g>
<g >
<title>ip_output (51,727,638 samples, 0.24%)</title><rect x="465.8" y="1829" width="2.9" height="15.0" fill="rgb(212,171,36)" rx="2" ry="2" />
<text x="468.82" y="1839.5" ></text>
</g>
<g >
<title>strncpy (10,115,543 samples, 0.05%)</title><rect x="775.3" y="1765" width="0.6" height="15.0" fill="rgb(228,34,48)" rx="2" ry="2" />
<text x="778.31" y="1775.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (45,875,270 samples, 0.21%)</title><rect x="1034.9" y="1685" width="2.5" height="15.0" fill="rgb(251,96,23)" rx="2" ry="2" />
<text x="1037.89" y="1695.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1813" width="0.5" height="15.0" fill="rgb(221,5,38)" rx="2" ry="2" />
<text x="18.42" y="1823.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (3,747,875 samples, 0.02%)</title><rect x="399.7" y="53" width="0.2" height="15.0" fill="rgb(244,193,25)" rx="2" ry="2" />
<text x="402.71" y="63.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (11,794,994 samples, 0.06%)</title><rect x="535.7" y="1733" width="0.6" height="15.0" fill="rgb(209,204,37)" rx="2" ry="2" />
<text x="538.70" y="1743.5" ></text>
</g>
<g >
<title>process_one_work (5,723,775 samples, 0.03%)</title><rect x="61.7" y="2005" width="0.3" height="15.0" fill="rgb(228,117,32)" rx="2" ry="2" />
<text x="64.67" y="2015.5" ></text>
</g>
<g >
<title>__do_sys_newstat (1,920,362 samples, 0.01%)</title><rect x="868.4" y="1973" width="0.1" height="15.0" fill="rgb(206,157,14)" rx="2" ry="2" />
<text x="871.37" y="1983.5" ></text>
</g>
<g >
<title>napi_complete_done (4,216,827 samples, 0.02%)</title><rect x="588.3" y="1781" width="0.2" height="15.0" fill="rgb(224,111,11)" rx="2" ry="2" />
<text x="591.25" y="1791.5" ></text>
</g>
<g >
<title>handle_edge_irq (115,844,424 samples, 0.54%)</title><rect x="456.0" y="1973" width="6.4" height="15.0" fill="rgb(237,26,40)" rx="2" ry="2" />
<text x="458.98" y="1983.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (3,799,151 samples, 0.02%)</title><rect x="657.8" y="1573" width="0.2" height="15.0" fill="rgb(227,1,12)" rx="2" ry="2" />
<text x="660.84" y="1583.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,082,253 samples, 0.03%)</title><rect x="886.3" y="1845" width="0.4" height="15.0" fill="rgb(222,150,43)" rx="2" ry="2" />
<text x="889.34" y="1855.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (7,626,626 samples, 0.04%)</title><rect x="591.9" y="1749" width="0.4" height="15.0" fill="rgb(223,119,25)" rx="2" ry="2" />
<text x="594.87" y="1759.5" ></text>
</g>
<g >
<title>cpuidle_get_cpu_driver (2,359,560 samples, 0.01%)</title><rect x="978.7" y="1989" width="0.2" height="15.0" fill="rgb(222,102,44)" rx="2" ry="2" />
<text x="981.73" y="1999.5" ></text>
</g>
<g >
<title>dev_queue_xmit (8,749,864 samples, 0.04%)</title><rect x="435.2" y="1733" width="0.5" height="15.0" fill="rgb(219,110,17)" rx="2" ry="2" />
<text x="438.19" y="1743.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="1013" width="0.2" height="15.0" fill="rgb(247,170,35)" rx="2" ry="2" />
<text x="897.72" y="1023.5" ></text>
</g>
<g >
<title>core_sys_select (3,741,104 samples, 0.02%)</title><rect x="861.9" y="1957" width="0.2" height="15.0" fill="rgb(252,165,49)" rx="2" ry="2" />
<text x="864.87" y="1967.5" ></text>
</g>
<g >
<title>sched_clock (5,612,920 samples, 0.03%)</title><rect x="1103.7" y="1925" width="0.3" height="15.0" fill="rgb(218,144,30)" rx="2" ry="2" />
<text x="1106.70" y="1935.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,919,668 samples, 0.01%)</title><rect x="831.8" y="1893" width="0.1" height="15.0" fill="rgb(236,202,17)" rx="2" ry="2" />
<text x="834.84" y="1903.5" ></text>
</g>
<g >
<title>common_interrupt (2,299,454 samples, 0.01%)</title><rect x="636.8" y="1797" width="0.1" height="15.0" fill="rgb(207,155,5)" rx="2" ry="2" />
<text x="639.79" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (165,464,035 samples, 0.77%)</title><rect x="393.4" y="1701" width="9.1" height="15.0" fill="rgb(211,163,33)" rx="2" ry="2" />
<text x="396.36" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="677" width="0.3" height="15.0" fill="rgb(205,180,32)" rx="2" ry="2" />
<text x="23.41" y="687.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (124,413,951 samples, 0.58%)</title><rect x="22.8" y="2053" width="6.9" height="15.0" fill="rgb(246,102,42)" rx="2" ry="2" />
<text x="25.82" y="2063.5" ></text>
</g>
<g >
<title>dequeue_entity (11,589,324 samples, 0.05%)</title><rect x="584.1" y="1845" width="0.6" height="15.0" fill="rgb(213,17,4)" rx="2" ry="2" />
<text x="587.08" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,963,037 samples, 0.03%)</title><rect x="45.2" y="2005" width="0.4" height="15.0" fill="rgb(248,51,34)" rx="2" ry="2" />
<text x="48.20" y="2015.5" ></text>
</g>
<g >
<title>clear_page_erms (1,903,843 samples, 0.01%)</title><rect x="549.2" y="1845" width="0.1" height="15.0" fill="rgb(219,52,45)" rx="2" ry="2" />
<text x="552.21" y="1855.5" ></text>
</g>
<g >
<title>[libgio-2.0.so.0.7200.4] (2,523,372 samples, 0.01%)</title><rect x="47.6" y="2053" width="0.1" height="15.0" fill="rgb(249,203,11)" rx="2" ry="2" />
<text x="50.59" y="2063.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,888,513 samples, 0.01%)</title><rect x="594.0" y="1653" width="0.1" height="15.0" fill="rgb(234,206,43)" rx="2" ry="2" />
<text x="596.97" y="1663.5" ></text>
</g>
<g >
<title>__siphash_unaligned (1,903,769 samples, 0.01%)</title><rect x="760.0" y="1605" width="0.1" height="15.0" fill="rgb(219,89,24)" rx="2" ry="2" />
<text x="763.00" y="1615.5" ></text>
</g>
<g >
<title>make_kuid (5,322,868 samples, 0.02%)</title><rect x="803.0" y="1765" width="0.3" height="15.0" fill="rgb(216,42,51)" rx="2" ry="2" />
<text x="805.99" y="1775.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (4,958,859 samples, 0.02%)</title><rect x="536.0" y="1685" width="0.2" height="15.0" fill="rgb(227,3,49)" rx="2" ry="2" />
<text x="538.97" y="1695.5" ></text>
</g>
<g >
<title>ip6_output (2,198,599 samples, 0.01%)</title><rect x="681.3" y="1669" width="0.1" height="15.0" fill="rgb(209,213,37)" rx="2" ry="2" />
<text x="684.26" y="1679.5" ></text>
</g>
<g >
<title>get_arg_page (1,927,463 samples, 0.01%)</title><rect x="35.4" y="1941" width="0.1" height="15.0" fill="rgb(206,160,24)" rx="2" ry="2" />
<text x="38.40" y="1951.5" ></text>
</g>
<g >
<title>exc_page_fault (2,586,681 samples, 0.01%)</title><rect x="897.0" y="1909" width="0.2" height="15.0" fill="rgb(250,228,9)" rx="2" ry="2" />
<text x="900.03" y="1919.5" ></text>
</g>
<g >
<title>nf_hook_slow (32,406,706 samples, 0.15%)</title><rect x="1030.3" y="1701" width="1.8" height="15.0" fill="rgb(231,220,13)" rx="2" ry="2" />
<text x="1033.29" y="1711.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (4,913,194 samples, 0.02%)</title><rect x="890.5" y="1733" width="0.3" height="15.0" fill="rgb(228,161,9)" rx="2" ry="2" />
<text x="893.48" y="1743.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,661,480 samples, 0.01%)</title><rect x="400.9" y="213" width="0.1" height="15.0" fill="rgb(224,225,12)" rx="2" ry="2" />
<text x="403.85" y="223.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,833,974 samples, 0.02%)</title><rect x="10.5" y="2021" width="0.2" height="15.0" fill="rgb(235,221,23)" rx="2" ry="2" />
<text x="13.49" y="2031.5" ></text>
</g>
<g >
<title>mmap_region (2,695,931 samples, 0.01%)</title><rect x="848.0" y="1941" width="0.1" height="15.0" fill="rgb(210,199,54)" rx="2" ry="2" />
<text x="850.95" y="1951.5" ></text>
</g>
<g >
<title>do_user_addr_fault (12,207,999 samples, 0.06%)</title><rect x="33.5" y="1989" width="0.7" height="15.0" fill="rgb(254,48,30)" rx="2" ry="2" />
<text x="36.53" y="1999.5" ></text>
</g>
<g >
<title>[snap-exec] (28,077,381 samples, 0.13%)</title><rect x="873.5" y="1845" width="1.6" height="15.0" fill="rgb(205,153,0)" rx="2" ry="2" />
<text x="876.55" y="1855.5" ></text>
</g>
<g >
<title>__irqentry_text_start (24,648,733 samples, 0.12%)</title><rect x="980.5" y="1957" width="1.4" height="15.0" fill="rgb(247,180,23)" rx="2" ry="2" />
<text x="983.52" y="1967.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (4,110,387 samples, 0.02%)</title><rect x="17.6" y="2053" width="0.2" height="15.0" fill="rgb(222,11,16)" rx="2" ry="2" />
<text x="20.58" y="2063.5" ></text>
</g>
<g >
<title>check_stack_object (5,238,175 samples, 0.02%)</title><rect x="592.8" y="1829" width="0.3" height="15.0" fill="rgb(225,56,4)" rx="2" ry="2" />
<text x="595.84" y="1839.5" ></text>
</g>
<g >
<title>filename_lookup (2,693,361 samples, 0.01%)</title><rect x="66.0" y="1925" width="0.1" height="15.0" fill="rgb(235,21,30)" rx="2" ry="2" />
<text x="68.95" y="1935.5" ></text>
</g>
<g >
<title>squashfs_cache_get (492,250,220 samples, 2.30%)</title><rect x="906.6" y="1749" width="27.1" height="15.0" fill="rgb(224,125,2)" rx="2" ry="2" />
<text x="909.59" y="1759.5" >s..</text>
</g>
<g >
<title>lzma_literal (8,840,006 samples, 0.04%)</title><rect x="942.9" y="1605" width="0.5" height="15.0" fill="rgb(242,2,43)" rx="2" ry="2" />
<text x="945.93" y="1615.5" ></text>
</g>
<g >
<title>__siphash_unaligned (3,015,851 samples, 0.01%)</title><rect x="658.3" y="1685" width="0.2" height="15.0" fill="rgb(254,37,23)" rx="2" ry="2" />
<text x="661.32" y="1695.5" ></text>
</g>
<g >
<title>__skb_checksum (6,256,526 samples, 0.03%)</title><rect x="1145.7" y="1653" width="0.3" height="15.0" fill="rgb(228,137,33)" rx="2" ry="2" />
<text x="1148.66" y="1663.5" ></text>
</g>
<g >
<title>mwait_idle_with_hints.constprop.0 (486,890,927 samples, 2.27%)</title><rect x="1070.4" y="1941" width="26.8" height="15.0" fill="rgb(249,150,21)" rx="2" ry="2" />
<text x="1073.38" y="1951.5" >m..</text>
</g>
<g >
<title>do_seccomp (15,877,462 samples, 0.07%)</title><rect x="865.4" y="1973" width="0.8" height="15.0" fill="rgb(230,198,12)" rx="2" ry="2" />
<text x="868.35" y="1983.5" ></text>
</g>
<g >
<title>validate_xmit_xfrm (2,632,977 samples, 0.01%)</title><rect x="747.7" y="1669" width="0.1" height="15.0" fill="rgb(208,24,17)" rx="2" ry="2" />
<text x="750.70" y="1679.5" ></text>
</g>
<g >
<title>fib_rules_lookup (56,402,087 samples, 0.26%)</title><rect x="796.1" y="1701" width="3.1" height="15.0" fill="rgb(234,85,23)" rx="2" ry="2" />
<text x="799.13" y="1711.5" ></text>
</g>
<g >
<title>handle_edge_irq (2,200,885 samples, 0.01%)</title><rect x="979.6" y="1925" width="0.1" height="15.0" fill="rgb(219,128,40)" rx="2" ry="2" />
<text x="982.60" y="1935.5" ></text>
</g>
<g >
<title>slab_free_freelist_hook.constprop.0 (2,158,086 samples, 0.01%)</title><rect x="1053.6" y="1765" width="0.1" height="15.0" fill="rgb(243,109,40)" rx="2" ry="2" />
<text x="1056.57" y="1775.5" ></text>
</g>
<g >
<title>nft_match_eval (2,285,136 samples, 0.01%)</title><rect x="775.0" y="1765" width="0.2" height="15.0" fill="rgb(224,142,44)" rx="2" ry="2" />
<text x="778.04" y="1775.5" ></text>
</g>
<g >
<title>ip6_forward (2,645,412 samples, 0.01%)</title><rect x="1102.4" y="1701" width="0.1" height="15.0" fill="rgb(220,61,53)" rx="2" ry="2" />
<text x="1105.40" y="1711.5" ></text>
</g>
<g >
<title>memcg_slab_free_hook (2,243,930 samples, 0.01%)</title><rect x="428.4" y="1765" width="0.2" height="15.0" fill="rgb(211,133,2)" rx="2" ry="2" />
<text x="431.44" y="1775.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,083,376 samples, 0.01%)</title><rect x="911.2" y="1493" width="0.2" height="15.0" fill="rgb(237,92,1)" rx="2" ry="2" />
<text x="914.23" y="1503.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (3,955,830 samples, 0.02%)</title><rect x="1042.8" y="1525" width="0.2" height="15.0" fill="rgb(205,166,1)" rx="2" ry="2" />
<text x="1045.79" y="1535.5" ></text>
</g>
<g >
<title>__skb_clone (2,613,885 samples, 0.01%)</title><rect x="752.3" y="1573" width="0.1" height="15.0" fill="rgb(241,141,39)" rx="2" ry="2" />
<text x="755.27" y="1583.5" ></text>
</g>
<g >
<title>net_rx_action (2,264,144 samples, 0.01%)</title><rect x="838.2" y="1941" width="0.1" height="15.0" fill="rgb(223,30,22)" rx="2" ry="2" />
<text x="841.18" y="1951.5" ></text>
</g>
<g >
<title>ip6_pol_route (1,901,748 samples, 0.01%)</title><rect x="514.7" y="1733" width="0.1" height="15.0" fill="rgb(242,45,11)" rx="2" ry="2" />
<text x="517.69" y="1743.5" ></text>
</g>
<g >
<title>__qdisc_run (20,074,866 samples, 0.09%)</title><rect x="664.1" y="1573" width="1.2" height="15.0" fill="rgb(252,29,28)" rx="2" ry="2" />
<text x="667.15" y="1583.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (4,613,753 samples, 0.02%)</title><rect x="67.5" y="2021" width="0.2" height="15.0" fill="rgb(233,105,35)" rx="2" ry="2" />
<text x="70.48" y="2031.5" ></text>
</g>
<g >
<title>sch_direct_xmit (5,250,635 samples, 0.02%)</title><rect x="1058.3" y="1845" width="0.3" height="15.0" fill="rgb(246,101,29)" rx="2" ry="2" />
<text x="1061.27" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (6,067,662 samples, 0.03%)</title><rect x="443.1" y="1765" width="0.3" height="15.0" fill="rgb(247,216,36)" rx="2" ry="2" />
<text x="446.08" y="1775.5" ></text>
</g>
<g >
<title>do_sys_poll (5,172,174 samples, 0.02%)</title><rect x="71.0" y="1957" width="0.3" height="15.0" fill="rgb(214,140,8)" rx="2" ry="2" />
<text x="74.00" y="1967.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (21,347,628 samples, 0.10%)</title><rect x="1028.5" y="1573" width="1.1" height="15.0" fill="rgb(238,206,48)" rx="2" ry="2" />
<text x="1031.47" y="1583.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (10,988,838 samples, 0.05%)</title><rect x="685.9" y="1701" width="0.6" height="15.0" fill="rgb(213,145,14)" rx="2" ry="2" />
<text x="688.94" y="1711.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,083,376 samples, 0.01%)</title><rect x="911.2" y="1557" width="0.2" height="15.0" fill="rgb(226,19,33)" rx="2" ry="2" />
<text x="914.23" y="1567.5" ></text>
</g>
<g >
<title>rtl_tx (20,822,846 samples, 0.10%)</title><rect x="1146.2" y="1765" width="1.2" height="15.0" fill="rgb(223,183,11)" rx="2" ry="2" />
<text x="1149.21" y="1775.5" ></text>
</g>
<g >
<title>kernel_clone (38,014,895 samples, 0.18%)</title><rect x="25.2" y="1973" width="2.1" height="15.0" fill="rgb(227,145,18)" rx="2" ry="2" />
<text x="28.17" y="1983.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,257,541 samples, 0.01%)</title><rect x="884.4" y="117" width="0.2" height="15.0" fill="rgb(248,117,19)" rx="2" ry="2" />
<text x="887.44" y="127.5" ></text>
</g>
<g >
<title>dma_map_page_attrs (1,919,370 samples, 0.01%)</title><rect x="523.6" y="1845" width="0.1" height="15.0" fill="rgb(224,33,38)" rx="2" ry="2" />
<text x="526.59" y="1855.5" ></text>
</g>
<g >
<title>exec_mmap (35,628,538 samples, 0.17%)</title><rect x="889.1" y="1877" width="2.0" height="15.0" fill="rgb(221,65,39)" rx="2" ry="2" />
<text x="892.12" y="1887.5" ></text>
</g>
<g >
<title>__d_lookup_rcu (3,867,441 samples, 0.02%)</title><rect x="68.8" y="1861" width="0.2" height="15.0" fill="rgb(218,6,51)" rx="2" ry="2" />
<text x="71.76" y="1871.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,352,024 samples, 0.03%)</title><rect x="629.3" y="1845" width="0.3" height="15.0" fill="rgb(246,39,16)" rx="2" ry="2" />
<text x="632.26" y="1855.5" ></text>
</g>
<g >
<title>rcu_all_qs (7,861,957 samples, 0.04%)</title><rect x="641.8" y="1845" width="0.5" height="15.0" fill="rgb(253,180,27)" rx="2" ry="2" />
<text x="644.83" y="1855.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (79,040,266 samples, 0.37%)</title><rect x="535.0" y="1909" width="4.4" height="15.0" fill="rgb(237,216,43)" rx="2" ry="2" />
<text x="538.05" y="1919.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (2,682,682 samples, 0.01%)</title><rect x="941.6" y="1957" width="0.1" height="15.0" fill="rgb(213,45,0)" rx="2" ry="2" />
<text x="944.55" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (23,902,850 samples, 0.11%)</title><rect x="1047.8" y="1685" width="1.3" height="15.0" fill="rgb(247,228,10)" rx="2" ry="2" />
<text x="1050.76" y="1695.5" ></text>
</g>
<g >
<title>revert_creds (3,481,649 samples, 0.02%)</title><rect x="68.3" y="1957" width="0.2" height="15.0" fill="rgb(231,12,16)" rx="2" ry="2" />
<text x="71.27" y="1967.5" ></text>
</g>
<g >
<title>user_path_at_empty (2,637,885 samples, 0.01%)</title><rect x="28.8" y="1957" width="0.1" height="15.0" fill="rgb(241,138,35)" rx="2" ry="2" />
<text x="31.76" y="1967.5" ></text>
</g>
<g >
<title>do_page_cache_ra (25,757,194 samples, 0.12%)</title><rect x="955.3" y="1877" width="1.5" height="15.0" fill="rgb(254,95,13)" rx="2" ry="2" />
<text x="958.35" y="1887.5" ></text>
</g>
<g >
<title>filename_lookup (3,076,141 samples, 0.01%)</title><rect x="842.9" y="1925" width="0.2" height="15.0" fill="rgb(224,212,37)" rx="2" ry="2" />
<text x="845.90" y="1935.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (3,610,395 samples, 0.02%)</title><rect x="687.7" y="1653" width="0.2" height="15.0" fill="rgb(237,26,46)" rx="2" ry="2" />
<text x="690.74" y="1663.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,299,018 samples, 0.01%)</title><rect x="603.1" y="1893" width="0.1" height="15.0" fill="rgb(250,133,47)" rx="2" ry="2" />
<text x="606.07" y="1903.5" ></text>
</g>
<g >
<title>__x64_sys_newstat (1,922,460 samples, 0.01%)</title><rect x="69.9" y="1989" width="0.1" height="15.0" fill="rgb(230,120,45)" rx="2" ry="2" />
<text x="72.91" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2,308,210 samples, 0.01%)</title><rect x="516.3" y="1925" width="0.2" height="15.0" fill="rgb(252,106,49)" rx="2" ry="2" />
<text x="519.34" y="1935.5" ></text>
</g>
<g >
<title>do_set_pte (2,309,620 samples, 0.01%)</title><rect x="24.3" y="1893" width="0.1" height="15.0" fill="rgb(228,37,31)" rx="2" ry="2" />
<text x="27.28" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,234,824 samples, 0.02%)</title><rect x="870.5" y="2037" width="0.3" height="15.0" fill="rgb(238,83,9)" rx="2" ry="2" />
<text x="873.52" y="2047.5" ></text>
</g>
<g >
<title>path_lookupat (6,584,726 samples, 0.03%)</title><rect x="859.2" y="1925" width="0.4" height="15.0" fill="rgb(246,216,26)" rx="2" ry="2" />
<text x="862.24" y="1935.5" ></text>
</g>
<g >
<title>dev_queue_xmit (2,672,771 samples, 0.01%)</title><rect x="440.1" y="1717" width="0.1" height="15.0" fill="rgb(211,42,30)" rx="2" ry="2" />
<text x="443.06" y="1727.5" ></text>
</g>
<g >
<title>[snap] (119,693,327 samples, 0.56%)</title><rect x="891.2" y="2021" width="6.6" height="15.0" fill="rgb(242,51,34)" rx="2" ry="2" />
<text x="894.19" y="2031.5" ></text>
</g>
<g >
<title>dev_queue_xmit (2,014,257 samples, 0.01%)</title><rect x="56.1" y="1717" width="0.1" height="15.0" fill="rgb(241,16,13)" rx="2" ry="2" />
<text x="59.07" y="1727.5" ></text>
</g>
<g >
<title>nft_do_chain (2,290,882 samples, 0.01%)</title><rect x="1047.3" y="1653" width="0.1" height="15.0" fill="rgb(216,177,40)" rx="2" ry="2" />
<text x="1050.27" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (2,323,015 samples, 0.01%)</title><rect x="1099.9" y="1525" width="0.1" height="15.0" fill="rgb(205,185,35)" rx="2" ry="2" />
<text x="1102.85" y="1535.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,458,694 samples, 0.02%)</title><rect x="879.2" y="1989" width="0.2" height="15.0" fill="rgb(251,69,27)" rx="2" ry="2" />
<text x="882.21" y="1999.5" ></text>
</g>
<g >
<title>napi_complete_done (2,259,587 samples, 0.01%)</title><rect x="601.2" y="1813" width="0.1" height="15.0" fill="rgb(251,6,40)" rx="2" ry="2" />
<text x="604.17" y="1823.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (3,708,645 samples, 0.02%)</title><rect x="1150.1" y="1589" width="0.2" height="15.0" fill="rgb(247,222,42)" rx="2" ry="2" />
<text x="1153.10" y="1599.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (2,296,542 samples, 0.01%)</title><rect x="419.2" y="1797" width="0.2" height="15.0" fill="rgb(211,76,39)" rx="2" ry="2" />
<text x="422.23" y="1807.5" ></text>
</g>
<g >
<title>nf_conntrack_in (5,733,568 samples, 0.03%)</title><rect x="1049.1" y="1685" width="0.3" height="15.0" fill="rgb(215,89,26)" rx="2" ry="2" />
<text x="1052.09" y="1695.5" ></text>
</g>
<g >
<title>dequeue_skb (1,915,953 samples, 0.01%)</title><rect x="412.4" y="1637" width="0.1" height="15.0" fill="rgb(214,88,53)" rx="2" ry="2" />
<text x="415.42" y="1647.5" ></text>
</g>
<g >
<title>[snap] (21,971,380 samples, 0.10%)</title><rect x="883.7" y="1605" width="1.2" height="15.0" fill="rgb(214,9,2)" rx="2" ry="2" />
<text x="886.71" y="1615.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,928,723 samples, 0.01%)</title><rect x="22.2" y="2037" width="0.1" height="15.0" fill="rgb(217,74,25)" rx="2" ry="2" />
<text x="25.22" y="2047.5" ></text>
</g>
<g >
<title>ip_list_rcv (70,584,776 samples, 0.33%)</title><rect x="1001.4" y="1781" width="3.9" height="15.0" fill="rgb(241,0,48)" rx="2" ry="2" />
<text x="1004.42" y="1791.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,879,294 samples, 0.01%)</title><rect x="888.8" y="1957" width="0.1" height="15.0" fill="rgb(238,151,17)" rx="2" ry="2" />
<text x="891.79" y="1967.5" ></text>
</g>
<g >
<title>apic_ack_edge (2,684,719 samples, 0.01%)</title><rect x="433.8" y="1925" width="0.1" height="15.0" fill="rgb(251,52,46)" rx="2" ry="2" />
<text x="436.80" y="1935.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (203,392,844 samples, 0.95%)</title><rect x="721.6" y="1493" width="11.2" height="15.0" fill="rgb(215,151,24)" rx="2" ry="2" />
<text x="724.57" y="1503.5" ></text>
</g>
<g >
<title>free_unref_page (10,594,904 samples, 0.05%)</title><rect x="582.2" y="1845" width="0.6" height="15.0" fill="rgb(225,203,26)" rx="2" ry="2" />
<text x="585.24" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,894,367 samples, 0.01%)</title><rect x="887.1" y="1861" width="0.1" height="15.0" fill="rgb(208,220,47)" rx="2" ry="2" />
<text x="890.09" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (12,773,151 samples, 0.06%)</title><rect x="1132.7" y="1493" width="0.7" height="15.0" fill="rgb(217,44,22)" rx="2" ry="2" />
<text x="1135.70" y="1503.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,884,933 samples, 0.01%)</title><rect x="886.2" y="1861" width="0.1" height="15.0" fill="rgb(246,23,17)" rx="2" ry="2" />
<text x="889.17" y="1871.5" ></text>
</g>
<g >
<title>packet_rcv (8,044,634 samples, 0.04%)</title><rect x="751.8" y="1589" width="0.4" height="15.0" fill="rgb(211,190,12)" rx="2" ry="2" />
<text x="754.80" y="1599.5" ></text>
</g>
<g >
<title>__irqentry_text_end (9,179,128 samples, 0.04%)</title><rect x="454.5" y="2021" width="0.5" height="15.0" fill="rgb(232,91,44)" rx="2" ry="2" />
<text x="457.46" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1301" width="0.3" height="15.0" fill="rgb(246,173,47)" rx="2" ry="2" />
<text x="23.41" y="1311.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,461,655 samples, 0.02%)</title><rect x="846.1" y="1989" width="0.2" height="15.0" fill="rgb(216,168,24)" rx="2" ry="2" />
<text x="849.06" y="1999.5" ></text>
</g>
<g >
<title>rcu_gp_cleanup (2,310,257 samples, 0.01%)</title><rect x="840.2" y="2005" width="0.1" height="15.0" fill="rgb(237,166,10)" rx="2" ry="2" />
<text x="843.17" y="2015.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1749" width="0.5" height="15.0" fill="rgb(240,111,4)" rx="2" ry="2" />
<text x="18.42" y="1759.5" ></text>
</g>
<g >
<title>__virt_addr_valid (6,105,236 samples, 0.03%)</title><rect x="626.3" y="1877" width="0.3" height="15.0" fill="rgb(231,33,54)" rx="2" ry="2" />
<text x="629.28" y="1887.5" ></text>
</g>
<g >
<title>ip6_finish_output (2,385,677 samples, 0.01%)</title><rect x="52.1" y="1813" width="0.1" height="15.0" fill="rgb(248,117,13)" rx="2" ry="2" />
<text x="55.09" y="1823.5" ></text>
</g>
<g >
<title>process_cpu_clock_get (5,329,616 samples, 0.02%)</title><rect x="453.9" y="1957" width="0.3" height="15.0" fill="rgb(243,169,17)" rx="2" ry="2" />
<text x="456.88" y="1967.5" ></text>
</g>
<g >
<title>wp_page_copy (6,944,793 samples, 0.03%)</title><rect x="24.5" y="1925" width="0.4" height="15.0" fill="rgb(250,82,40)" rx="2" ry="2" />
<text x="27.51" y="1935.5" ></text>
</g>
<g >
<title>common_interrupt (7,712,294 samples, 0.04%)</title><rect x="850.6" y="2005" width="0.4" height="15.0" fill="rgb(235,116,8)" rx="2" ry="2" />
<text x="853.60" y="2015.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (3,574,397 samples, 0.02%)</title><rect x="1064.2" y="1733" width="0.2" height="15.0" fill="rgb(227,124,34)" rx="2" ry="2" />
<text x="1067.19" y="1743.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (1,924,193 samples, 0.01%)</title><rect x="930.2" y="1429" width="0.1" height="15.0" fill="rgb(214,186,45)" rx="2" ry="2" />
<text x="933.17" y="1439.5" ></text>
</g>
<g >
<title>[snapctl] (12,894,706 samples, 0.06%)</title><rect x="945.8" y="1813" width="0.7" height="15.0" fill="rgb(246,126,12)" rx="2" ry="2" />
<text x="948.78" y="1823.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,625,404 samples, 0.01%)</title><rect x="884.4" y="197" width="0.2" height="15.0" fill="rgb(212,30,47)" rx="2" ry="2" />
<text x="887.42" y="207.5" ></text>
</g>
<g >
<title>asm_common_interrupt (5,376,702 samples, 0.03%)</title><rect x="23.8" y="2037" width="0.2" height="15.0" fill="rgb(245,193,10)" rx="2" ry="2" />
<text x="26.75" y="2047.5" ></text>
</g>
<g >
<title>slab_free_freelist_hook.constprop.0 (5,982,356 samples, 0.03%)</title><rect x="578.9" y="1861" width="0.3" height="15.0" fill="rgb(240,147,10)" rx="2" ry="2" />
<text x="581.91" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (24,639,962 samples, 0.12%)</title><rect x="1047.7" y="1701" width="1.4" height="15.0" fill="rgb(219,8,14)" rx="2" ry="2" />
<text x="1050.72" y="1711.5" ></text>
</g>
<g >
<title>clockevents_program_event (3,810,382 samples, 0.02%)</title><rect x="555.9" y="1957" width="0.2" height="15.0" fill="rgb(224,181,10)" rx="2" ry="2" />
<text x="558.91" y="1967.5" ></text>
</g>
<g >
<title>seq_dentry (2,700,474 samples, 0.01%)</title><rect x="867.4" y="1877" width="0.2" height="15.0" fill="rgb(247,29,33)" rx="2" ry="2" />
<text x="870.40" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (4,523,661 samples, 0.02%)</title><rect x="20.4" y="389" width="0.3" height="15.0" fill="rgb(235,45,0)" rx="2" ry="2" />
<text x="23.41" y="399.5" ></text>
</g>
<g >
<title>walk_component (1,889,865 samples, 0.01%)</title><rect x="65.5" y="1893" width="0.1" height="15.0" fill="rgb(213,157,19)" rx="2" ry="2" />
<text x="68.53" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (11,813,299 samples, 0.06%)</title><rect x="483.9" y="1781" width="0.7" height="15.0" fill="rgb(237,193,45)" rx="2" ry="2" />
<text x="486.94" y="1791.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (3,018,826 samples, 0.01%)</title><rect x="1150.8" y="1621" width="0.2" height="15.0" fill="rgb(218,98,4)" rx="2" ry="2" />
<text x="1153.80" y="1631.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,662,726 samples, 0.01%)</title><rect x="50.7" y="1893" width="0.2" height="15.0" fill="rgb(247,85,38)" rx="2" ry="2" />
<text x="53.74" y="1903.5" ></text>
</g>
<g >
<title>__napi_poll (3,423,356 samples, 0.02%)</title><rect x="401.1" y="181" width="0.1" height="15.0" fill="rgb(222,32,38)" rx="2" ry="2" />
<text x="404.06" y="191.5" ></text>
</g>
<g >
<title>__napi_poll (472,139,139 samples, 2.21%)</title><rect x="1121.4" y="1797" width="26.0" height="15.0" fill="rgb(242,225,22)" rx="2" ry="2" />
<text x="1124.38" y="1807.5" >_..</text>
</g>
<g >
<title>__ext4_mark_inode_dirty (14,236,422 samples, 0.07%)</title><rect x="75.2" y="1717" width="0.8" height="15.0" fill="rgb(225,129,27)" rx="2" ry="2" />
<text x="78.24" y="1727.5" ></text>
</g>
<g >
<title>nf_hook_slow (16,980,248 samples, 0.08%)</title><rect x="1127.1" y="1717" width="0.9" height="15.0" fill="rgb(226,223,18)" rx="2" ry="2" />
<text x="1130.07" y="1727.5" ></text>
</g>
<g >
<title>__block_commit_write.constprop.0.isra.0 (3,327,860 samples, 0.02%)</title><rect x="74.8" y="1749" width="0.2" height="15.0" fill="rgb(237,51,24)" rx="2" ry="2" />
<text x="77.81" y="1759.5" ></text>
</g>
<g >
<title>__rpm_callback (3,071,869 samples, 0.01%)</title><rect x="64.1" y="1781" width="0.2" height="15.0" fill="rgb(214,11,30)" rx="2" ry="2" />
<text x="67.15" y="1791.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,993,270 samples, 0.01%)</title><rect x="886.7" y="1829" width="0.1" height="15.0" fill="rgb(228,138,33)" rx="2" ry="2" />
<text x="889.67" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,930,279 samples, 0.03%)</title><rect x="957.4" y="2021" width="0.4" height="15.0" fill="rgb(224,191,10)" rx="2" ry="2" />
<text x="960.40" y="2031.5" ></text>
</g>
<g >
<title>next_uptodate_page (3,076,283 samples, 0.01%)</title><rect x="938.8" y="1845" width="0.1" height="15.0" fill="rgb(222,61,13)" rx="2" ry="2" />
<text x="941.76" y="1855.5" ></text>
</g>
<g >
<title>ip_rcv (77,126,414 samples, 0.36%)</title><rect x="535.2" y="1893" width="4.2" height="15.0" fill="rgb(240,91,7)" rx="2" ry="2" />
<text x="538.15" y="1903.5" ></text>
</g>
<g >
<title>skb_checksum (7,186,674 samples, 0.03%)</title><rect x="686.0" y="1669" width="0.4" height="15.0" fill="rgb(215,72,12)" rx="2" ry="2" />
<text x="689.03" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (109,260,937 samples, 0.51%)</title><rect x="393.5" y="101" width="6.0" height="15.0" fill="rgb(249,19,10)" rx="2" ry="2" />
<text x="396.46" y="111.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,718,450 samples, 0.02%)</title><rect x="1171.8" y="1989" width="0.2" height="15.0" fill="rgb(247,219,45)" rx="2" ry="2" />
<text x="1174.76" y="1999.5" ></text>
</g>
<g >
<title>__irqentry_text_start (2,303,174 samples, 0.01%)</title><rect x="431.3" y="2005" width="0.1" height="15.0" fill="rgb(239,132,36)" rx="2" ry="2" />
<text x="434.27" y="2015.5" ></text>
</g>
<g >
<title>record__mmap_read_evlist.constprop.0 (78,338,265 samples, 0.37%)</title><rect x="72.1" y="1989" width="4.3" height="15.0" fill="rgb(225,160,16)" rx="2" ry="2" />
<text x="75.06" y="1999.5" ></text>
</g>
<g >
<title>record__pushfn (75,710,751 samples, 0.35%)</title><rect x="72.1" y="1957" width="4.2" height="15.0" fill="rgb(249,150,37)" rx="2" ry="2" />
<text x="75.11" y="1967.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (1,870,085 samples, 0.01%)</title><rect x="610.1" y="1861" width="0.1" height="15.0" fill="rgb(228,156,35)" rx="2" ry="2" />
<text x="613.14" y="1871.5" ></text>
</g>
<g >
<title>get_zeroed_page (1,931,287 samples, 0.01%)</title><rect x="25.9" y="1861" width="0.2" height="15.0" fill="rgb(221,125,28)" rx="2" ry="2" />
<text x="28.95" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1493" width="0.3" height="15.0" fill="rgb(218,202,6)" rx="2" ry="2" />
<text x="23.41" y="1503.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (5,961,319 samples, 0.03%)</title><rect x="547.6" y="1877" width="0.3" height="15.0" fill="rgb(243,165,2)" rx="2" ry="2" />
<text x="550.56" y="1887.5" ></text>
</g>
<g >
<title>napi_complete_done (17,537,260 samples, 0.08%)</title><rect x="424.7" y="1877" width="0.9" height="15.0" fill="rgb(243,200,48)" rx="2" ry="2" />
<text x="427.67" y="1887.5" ></text>
</g>
<g >
<title>run_rebalance_domains (2,487,387 samples, 0.01%)</title><rect x="696.5" y="1845" width="0.1" height="15.0" fill="rgb(220,27,14)" rx="2" ry="2" />
<text x="699.45" y="1855.5" ></text>
</g>
<g >
<title>copy_process (32,995,088 samples, 0.15%)</title><rect x="25.2" y="1957" width="1.8" height="15.0" fill="rgb(226,31,9)" rx="2" ry="2" />
<text x="28.19" y="1967.5" ></text>
</g>
<g >
<title>path_lookupat (11,604,964 samples, 0.05%)</title><rect x="68.5" y="1925" width="0.6" height="15.0" fill="rgb(213,121,29)" rx="2" ry="2" />
<text x="71.48" y="1935.5" ></text>
</g>
<g >
<title>common_interrupt (1,922,981 samples, 0.01%)</title><rect x="965.6" y="1973" width="0.1" height="15.0" fill="rgb(235,55,47)" rx="2" ry="2" />
<text x="968.63" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (51,236,874 samples, 0.24%)</title><rect x="717.0" y="1557" width="2.8" height="15.0" fill="rgb(254,51,38)" rx="2" ry="2" />
<text x="720.00" y="1567.5" ></text>
</g>
<g >
<title>futex_wait (2,643,283 samples, 0.01%)</title><rect x="886.4" y="1797" width="0.1" height="15.0" fill="rgb(223,121,53)" rx="2" ry="2" />
<text x="889.36" y="1807.5" ></text>
</g>
<g >
<title>bprm_execve.part.0 (22,488,237 samples, 0.11%)</title><rect x="27.3" y="1957" width="1.2" height="15.0" fill="rgb(227,186,50)" rx="2" ry="2" />
<text x="30.26" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (2,299,466 samples, 0.01%)</title><rect x="597.2" y="1701" width="0.1" height="15.0" fill="rgb(228,209,33)" rx="2" ry="2" />
<text x="600.22" y="1711.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (4,843,574 samples, 0.02%)</title><rect x="733.6" y="1429" width="0.3" height="15.0" fill="rgb(242,171,11)" rx="2" ry="2" />
<text x="736.62" y="1439.5" ></text>
</g>
<g >
<title>do_sys_openat2 (1,904,963 samples, 0.01%)</title><rect x="46.8" y="1957" width="0.1" height="15.0" fill="rgb(212,22,52)" rx="2" ry="2" />
<text x="49.83" y="1967.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (7,080,818 samples, 0.03%)</title><rect x="1145.6" y="1685" width="0.4" height="15.0" fill="rgb(234,100,38)" rx="2" ry="2" />
<text x="1148.63" y="1695.5" ></text>
</g>
<g >
<title>fib_rules_lookup (20,795,067 samples, 0.10%)</title><rect x="1024.2" y="1653" width="1.2" height="15.0" fill="rgb(240,132,39)" rx="2" ry="2" />
<text x="1027.20" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (4,523,661 samples, 0.02%)</title><rect x="20.4" y="405" width="0.3" height="15.0" fill="rgb(221,78,13)" rx="2" ry="2" />
<text x="23.41" y="415.5" ></text>
</g>
<g >
<title>strncmp (3,029,272 samples, 0.01%)</title><rect x="878.7" y="2037" width="0.2" height="15.0" fill="rgb(229,88,13)" rx="2" ry="2" />
<text x="881.69" y="2047.5" ></text>
</g>
<g >
<title>nf_hook_slow (48,420,040 samples, 0.23%)</title><rect x="492.1" y="1829" width="2.7" height="15.0" fill="rgb(223,87,1)" rx="2" ry="2" />
<text x="495.15" y="1839.5" ></text>
</g>
<g >
<title>__netif_receive_skb (17,267,458 samples, 0.08%)</title><rect x="50.9" y="1925" width="1.0" height="15.0" fill="rgb(206,16,36)" rx="2" ry="2" />
<text x="53.91" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,883,243 samples, 0.01%)</title><rect x="48.9" y="2005" width="0.1" height="15.0" fill="rgb(247,74,34)" rx="2" ry="2" />
<text x="51.86" y="2015.5" ></text>
</g>
<g >
<title>rtl_rx (43,477,643 samples, 0.20%)</title><rect x="548.6" y="1925" width="2.4" height="15.0" fill="rgb(218,180,37)" rx="2" ry="2" />
<text x="551.65" y="1935.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (3,420,954 samples, 0.02%)</title><rect x="622.0" y="1749" width="0.2" height="15.0" fill="rgb(249,102,54)" rx="2" ry="2" />
<text x="624.97" y="1759.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (174,408,481 samples, 0.81%)</title><rect x="985.3" y="1861" width="9.7" height="15.0" fill="rgb(242,107,45)" rx="2" ry="2" />
<text x="988.34" y="1871.5" ></text>
</g>
<g >
<title>__slab_free (16,047,204 samples, 0.07%)</title><rect x="577.0" y="1861" width="0.9" height="15.0" fill="rgb(253,98,29)" rx="2" ry="2" />
<text x="580.02" y="1871.5" ></text>
</g>
<g >
<title>walk_component (2,698,735 samples, 0.01%)</title><rect x="35.8" y="1877" width="0.2" height="15.0" fill="rgb(241,171,49)" rx="2" ry="2" />
<text x="38.84" y="1887.5" ></text>
</g>
<g >
<title>napi_complete_done (2,777,259 samples, 0.01%)</title><rect x="1112.9" y="1829" width="0.2" height="15.0" fill="rgb(229,107,44)" rx="2" ry="2" />
<text x="1115.93" y="1839.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (95,977,326 samples, 0.45%)</title><rect x="448.5" y="2005" width="5.3" height="15.0" fill="rgb(224,57,49)" rx="2" ry="2" />
<text x="451.46" y="2015.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,057,827 samples, 0.01%)</title><rect x="835.6" y="1957" width="0.1" height="15.0" fill="rgb(241,91,52)" rx="2" ry="2" />
<text x="838.56" y="1967.5" ></text>
</g>
<g >
<title>__remove_hrtimer (2,273,079 samples, 0.01%)</title><rect x="422.7" y="1909" width="0.1" height="15.0" fill="rgb(210,123,21)" rx="2" ry="2" />
<text x="425.67" y="1919.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,923,751 samples, 0.01%)</title><rect x="842.7" y="1941" width="0.1" height="15.0" fill="rgb(223,205,45)" rx="2" ry="2" />
<text x="845.71" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,284,332 samples, 0.01%)</title><rect x="1182.8" y="2021" width="0.1" height="15.0" fill="rgb(245,185,3)" rx="2" ry="2" />
<text x="1185.78" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12,531,450 samples, 0.06%)</title><rect x="864.3" y="2021" width="0.7" height="15.0" fill="rgb(235,29,16)" rx="2" ry="2" />
<text x="867.31" y="2031.5" ></text>
</g>
<g >
<title>filemap_map_pages (2,314,981 samples, 0.01%)</title><rect x="962.8" y="1909" width="0.2" height="15.0" fill="rgb(254,168,33)" rx="2" ry="2" />
<text x="965.84" y="1919.5" ></text>
</g>
<g >
<title>__x64_sys_clock_gettime (6,845,969 samples, 0.03%)</title><rect x="453.8" y="1973" width="0.4" height="15.0" fill="rgb(229,36,17)" rx="2" ry="2" />
<text x="456.81" y="1983.5" ></text>
</g>
<g >
<title>__qdisc_run (10,654,441 samples, 0.05%)</title><rect x="541.0" y="1701" width="0.6" height="15.0" fill="rgb(249,137,1)" rx="2" ry="2" />
<text x="544.05" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (6,095,692 samples, 0.03%)</title><rect x="1188.3" y="2053" width="0.3" height="15.0" fill="rgb(222,129,23)" rx="2" ry="2" />
<text x="1191.29" y="2063.5" ></text>
</g>
<g >
<title>net_rx_action (1,940,384 samples, 0.01%)</title><rect x="856.2" y="1861" width="0.1" height="15.0" fill="rgb(243,26,3)" rx="2" ry="2" />
<text x="859.19" y="1871.5" ></text>
</g>
<g >
<title>sch_direct_xmit (3,708,645 samples, 0.02%)</title><rect x="1150.1" y="1557" width="0.2" height="15.0" fill="rgb(248,227,41)" rx="2" ry="2" />
<text x="1153.10" y="1567.5" ></text>
</g>
<g >
<title>____wcstold_l_internal (6,852,138 samples, 0.03%)</title><rect x="1185.0" y="2053" width="0.4" height="15.0" fill="rgb(213,80,7)" rx="2" ry="2" />
<text x="1188.01" y="2063.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (1,874,292 samples, 0.01%)</title><rect x="609.9" y="1813" width="0.1" height="15.0" fill="rgb(235,32,28)" rx="2" ry="2" />
<text x="612.93" y="1823.5" ></text>
</g>
<g >
<title>snapd (59,700,622 samples, 0.28%)</title><rect x="973.6" y="2069" width="3.3" height="15.0" fill="rgb(247,139,44)" rx="2" ry="2" />
<text x="976.63" y="2079.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (4,186,126 samples, 0.02%)</title><rect x="71.0" y="1925" width="0.3" height="15.0" fill="rgb(251,161,9)" rx="2" ry="2" />
<text x="74.04" y="1935.5" ></text>
</g>
<g >
<title>__napi_poll (1,881,594 samples, 0.01%)</title><rect x="838.2" y="1925" width="0.1" height="15.0" fill="rgb(235,109,19)" rx="2" ry="2" />
<text x="841.18" y="1935.5" ></text>
</g>
<g >
<title>ip_finish_output (12,182,723 samples, 0.06%)</title><rect x="435.0" y="1797" width="0.7" height="15.0" fill="rgb(226,90,46)" rx="2" ry="2" />
<text x="438.00" y="1807.5" ></text>
</g>
<g >
<title>dma_map_page_attrs (1,903,312 samples, 0.01%)</title><rect x="727.4" y="1365" width="0.1" height="15.0" fill="rgb(218,121,27)" rx="2" ry="2" />
<text x="730.35" y="1375.5" ></text>
</g>
<g >
<title>putname (1,926,958 samples, 0.01%)</title><rect x="842.3" y="1941" width="0.1" height="15.0" fill="rgb(236,67,45)" rx="2" ry="2" />
<text x="845.30" y="1951.5" ></text>
</g>
<g >
<title>common_interrupt (2,282,587 samples, 0.01%)</title><rect x="644.0" y="1829" width="0.1" height="15.0" fill="rgb(240,54,6)" rx="2" ry="2" />
<text x="646.98" y="1839.5" ></text>
</g>
<g >
<title>cgroup_rstat_flush_irqsafe (1,909,861 samples, 0.01%)</title><rect x="65.0" y="1909" width="0.1" height="15.0" fill="rgb(218,31,17)" rx="2" ry="2" />
<text x="67.97" y="1919.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,803,261 samples, 0.01%)</title><rect x="1105.0" y="1893" width="0.2" height="15.0" fill="rgb(248,225,0)" rx="2" ry="2" />
<text x="1108.01" y="1903.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (20,178,327 samples, 0.09%)</title><rect x="414.7" y="1797" width="1.1" height="15.0" fill="rgb(250,176,30)" rx="2" ry="2" />
<text x="417.72" y="1807.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,718,450 samples, 0.02%)</title><rect x="1171.8" y="2021" width="0.2" height="15.0" fill="rgb(251,175,46)" rx="2" ry="2" />
<text x="1174.76" y="2031.5" ></text>
</g>
<g >
<title>skb_checksum (6,441,879 samples, 0.03%)</title><rect x="1145.7" y="1669" width="0.3" height="15.0" fill="rgb(232,131,48)" rx="2" ry="2" />
<text x="1148.66" y="1679.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (28,418,329 samples, 0.13%)</title><rect x="1122.5" y="1589" width="1.6" height="15.0" fill="rgb(252,101,3)" rx="2" ry="2" />
<text x="1125.49" y="1599.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,251,318 samples, 0.01%)</title><rect x="599.0" y="1829" width="0.1" height="15.0" fill="rgb(244,34,16)" rx="2" ry="2" />
<text x="601.96" y="1839.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (7,245,434 samples, 0.03%)</title><rect x="656.1" y="1685" width="0.4" height="15.0" fill="rgb(233,61,13)" rx="2" ry="2" />
<text x="659.07" y="1695.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,281,064 samples, 0.01%)</title><rect x="421.9" y="1941" width="0.1" height="15.0" fill="rgb(243,104,27)" rx="2" ry="2" />
<text x="424.89" y="1951.5" ></text>
</g>
<g >
<title>kfree (6,502,345 samples, 0.03%)</title><rect x="1146.8" y="1701" width="0.4" height="15.0" fill="rgb(215,35,3)" rx="2" ry="2" />
<text x="1149.82" y="1711.5" ></text>
</g>
<g >
<title>getname_flags.part.0 (4,639,819 samples, 0.02%)</title><rect x="970.1" y="1925" width="0.2" height="15.0" fill="rgb(249,5,30)" rx="2" ry="2" />
<text x="973.08" y="1935.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1317" width="1.1" height="15.0" fill="rgb(252,125,38)" rx="2" ry="2" />
<text x="886.75" y="1327.5" ></text>
</g>
<g >
<title>__x64_sys_openat (2,695,272 samples, 0.01%)</title><rect x="957.6" y="1989" width="0.2" height="15.0" fill="rgb(249,165,3)" rx="2" ry="2" />
<text x="960.62" y="1999.5" ></text>
</g>
<g >
<title>process_one_work (15,254,791 samples, 0.07%)</title><rect x="63.7" y="2005" width="0.8" height="15.0" fill="rgb(239,223,16)" rx="2" ry="2" />
<text x="66.66" y="2015.5" ></text>
</g>
<g >
<title>exit_mmap (26,276,812 samples, 0.12%)</title><rect x="971.9" y="1941" width="1.5" height="15.0" fill="rgb(225,36,44)" rx="2" ry="2" />
<text x="974.90" y="1951.5" ></text>
</g>
<g >
<title>common_interrupt (8,422,977 samples, 0.04%)</title><rect x="588.1" y="1877" width="0.4" height="15.0" fill="rgb(231,168,54)" rx="2" ry="2" />
<text x="591.08" y="1887.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (58,151,482 samples, 0.27%)</title><rect x="1034.6" y="1717" width="3.2" height="15.0" fill="rgb(215,72,34)" rx="2" ry="2" />
<text x="1037.57" y="1727.5" ></text>
</g>
<g >
<title>__x64_sys_openat (3,968,940 samples, 0.02%)</title><rect x="1172.8" y="1989" width="0.2" height="15.0" fill="rgb(238,65,13)" rx="2" ry="2" />
<text x="1175.76" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (1,919,095 samples, 0.01%)</title><rect x="693.6" y="1733" width="0.1" height="15.0" fill="rgb(251,114,19)" rx="2" ry="2" />
<text x="696.63" y="1743.5" ></text>
</g>
<g >
<title>__inet6_lookup_established (3,377,659 samples, 0.02%)</title><rect x="677.6" y="1669" width="0.2" height="15.0" fill="rgb(237,76,6)" rx="2" ry="2" />
<text x="680.63" y="1679.5" ></text>
</g>
<g >
<title>do_read_fault (3,845,800 samples, 0.02%)</title><rect x="956.9" y="1909" width="0.2" height="15.0" fill="rgb(251,12,20)" rx="2" ry="2" />
<text x="959.92" y="1919.5" ></text>
</g>
<g >
<title>native_write_msr (2,251,080 samples, 0.01%)</title><rect x="1066.2" y="1733" width="0.1" height="15.0" fill="rgb(242,20,45)" rx="2" ry="2" />
<text x="1069.18" y="1743.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (62,071,712 samples, 0.29%)</title><rect x="406.2" y="1861" width="3.4" height="15.0" fill="rgb(223,157,11)" rx="2" ry="2" />
<text x="409.21" y="1871.5" ></text>
</g>
<g >
<title>__hrtimer_next_event_base (2,300,115 samples, 0.01%)</title><rect x="449.1" y="1925" width="0.1" height="15.0" fill="rgb(243,0,8)" rx="2" ry="2" />
<text x="452.09" y="1935.5" ></text>
</g>
<g >
<title>cake_dequeue (4,840,643 samples, 0.02%)</title><rect x="1043.7" y="1525" width="0.3" height="15.0" fill="rgb(237,106,10)" rx="2" ry="2" />
<text x="1046.72" y="1535.5" ></text>
</g>
<g >
<title>common_interrupt (3,785,707 samples, 0.02%)</title><rect x="636.3" y="1813" width="0.2" height="15.0" fill="rgb(238,197,34)" rx="2" ry="2" />
<text x="639.26" y="1823.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,068,984 samples, 0.01%)</title><rect x="583.3" y="1893" width="0.2" height="15.0" fill="rgb(220,204,11)" rx="2" ry="2" />
<text x="586.32" y="1903.5" ></text>
</g>
<g >
<title>__schedule (2,299,436 samples, 0.01%)</title><rect x="526.6" y="1909" width="0.1" height="15.0" fill="rgb(230,57,8)" rx="2" ry="2" />
<text x="529.57" y="1919.5" ></text>
</g>
<g >
<title>exec_mmap (3,833,974 samples, 0.02%)</title><rect x="10.5" y="1877" width="0.2" height="15.0" fill="rgb(217,169,3)" rx="2" ry="2" />
<text x="13.49" y="1887.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (6,223,178 samples, 0.03%)</title><rect x="1101.6" y="1765" width="0.4" height="15.0" fill="rgb(207,43,16)" rx="2" ry="2" />
<text x="1104.64" y="1775.5" ></text>
</g>
<g >
<title>ip6_forward (3,745,791 samples, 0.02%)</title><rect x="557.2" y="1845" width="0.2" height="15.0" fill="rgb(242,212,17)" rx="2" ry="2" />
<text x="560.24" y="1855.5" ></text>
</g>
<g >
<title>kfree (6,667,742 samples, 0.03%)</title><rect x="778.0" y="1781" width="0.4" height="15.0" fill="rgb(239,203,37)" rx="2" ry="2" />
<text x="781.01" y="1791.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2,066,815 samples, 0.01%)</title><rect x="55.1" y="1957" width="0.1" height="15.0" fill="rgb(250,25,32)" rx="2" ry="2" />
<text x="58.05" y="1967.5" ></text>
</g>
<g >
<title>__x64_sys_openat (4,237,260 samples, 0.02%)</title><rect x="843.2" y="1989" width="0.2" height="15.0" fill="rgb(217,32,41)" rx="2" ry="2" />
<text x="846.22" y="1999.5" ></text>
</g>
<g >
<title>[snap] (5,064,410 samples, 0.02%)</title><rect x="900.8" y="1621" width="0.3" height="15.0" fill="rgb(213,156,37)" rx="2" ry="2" />
<text x="903.80" y="1631.5" ></text>
</g>
<g >
<title>skb_free_head (12,793,023 samples, 0.06%)</title><rect x="503.5" y="1861" width="0.7" height="15.0" fill="rgb(220,213,4)" rx="2" ry="2" />
<text x="506.54" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,447,918 samples, 0.03%)</title><rect x="16.0" y="2005" width="0.3" height="15.0" fill="rgb(251,74,3)" rx="2" ry="2" />
<text x="18.95" y="2015.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,455,589 samples, 0.02%)</title><rect x="954.8" y="1941" width="0.1" height="15.0" fill="rgb(248,129,46)" rx="2" ry="2" />
<text x="957.76" y="1951.5" ></text>
</g>
<g >
<title>neigh_hh_output (206,758,839 samples, 0.97%)</title><rect x="721.5" y="1525" width="11.4" height="15.0" fill="rgb(238,84,11)" rx="2" ry="2" />
<text x="724.47" y="1535.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,703,044 samples, 0.01%)</title><rect x="902.6" y="1813" width="0.1" height="15.0" fill="rgb(247,120,38)" rx="2" ry="2" />
<text x="905.59" y="1823.5" ></text>
</g>
<g >
<title>[snap] (29,586,892 samples, 0.14%)</title><rect x="883.5" y="1765" width="1.6" height="15.0" fill="rgb(218,27,42)" rx="2" ry="2" />
<text x="886.48" y="1775.5" ></text>
</g>
<g >
<title>ret_from_fork (3,049,696 samples, 0.01%)</title><rect x="64.6" y="2053" width="0.1" height="15.0" fill="rgb(223,131,44)" rx="2" ry="2" />
<text x="67.56" y="2063.5" ></text>
</g>
<g >
<title>ip6_pol_route_input (32,822,175 samples, 0.15%)</title><rect x="489.9" y="1749" width="1.8" height="15.0" fill="rgb(234,9,17)" rx="2" ry="2" />
<text x="492.86" y="1759.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,639,246 samples, 0.01%)</title><rect x="617.9" y="1877" width="0.2" height="15.0" fill="rgb(225,112,48)" rx="2" ry="2" />
<text x="620.92" y="1887.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,625,404 samples, 0.01%)</title><rect x="884.4" y="165" width="0.2" height="15.0" fill="rgb(230,101,49)" rx="2" ry="2" />
<text x="887.42" y="175.5" ></text>
</g>
<g >
<title>skb_release_data (7,115,349 samples, 0.03%)</title><rect x="446.8" y="1861" width="0.3" height="15.0" fill="rgb(207,126,4)" rx="2" ry="2" />
<text x="449.75" y="1871.5" ></text>
</g>
<g >
<title>unmap_vmas (1,923,818 samples, 0.01%)</title><rect x="19.4" y="1925" width="0.1" height="15.0" fill="rgb(248,112,28)" rx="2" ry="2" />
<text x="22.37" y="1935.5" ></text>
</g>
<g >
<title>acpi_ex_insert_into_field (2,285,909 samples, 0.01%)</title><rect x="62.7" y="1669" width="0.1" height="15.0" fill="rgb(252,104,47)" rx="2" ry="2" />
<text x="65.68" y="1679.5" ></text>
</g>
<g >
<title>lookup_fast (1,929,654 samples, 0.01%)</title><rect x="35.9" y="1861" width="0.1" height="15.0" fill="rgb(235,44,14)" rx="2" ry="2" />
<text x="38.86" y="1871.5" ></text>
</g>
<g >
<title>vfs_write (2,249,598 samples, 0.01%)</title><rect x="860.0" y="1957" width="0.1" height="15.0" fill="rgb(211,19,22)" rx="2" ry="2" />
<text x="862.98" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (159,622,705 samples, 0.75%)</title><rect x="393.5" y="485" width="8.8" height="15.0" fill="rgb(208,146,1)" rx="2" ry="2" />
<text x="396.46" y="495.5" ></text>
</g>
<g >
<title>ip_forward (3,394,937 samples, 0.02%)</title><rect x="424.1" y="1829" width="0.2" height="15.0" fill="rgb(210,54,9)" rx="2" ry="2" />
<text x="427.14" y="1839.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="741" width="0.2" height="15.0" fill="rgb(241,64,38)" rx="2" ry="2" />
<text x="897.72" y="751.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (4,136,437 samples, 0.02%)</title><rect x="445.6" y="1797" width="0.2" height="15.0" fill="rgb(213,222,53)" rx="2" ry="2" />
<text x="448.59" y="1807.5" ></text>
</g>
<g >
<title>wp_page_copy (3,087,177 samples, 0.01%)</title><rect x="31.1" y="1909" width="0.1" height="15.0" fill="rgb(218,54,10)" rx="2" ry="2" />
<text x="34.07" y="1919.5" ></text>
</g>
<g >
<title>begin_new_exec (22,101,918 samples, 0.10%)</title><rect x="27.3" y="1893" width="1.2" height="15.0" fill="rgb(246,108,37)" rx="2" ry="2" />
<text x="30.26" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (1,879,091 samples, 0.01%)</title><rect x="468.6" y="1797" width="0.1" height="15.0" fill="rgb(206,226,2)" rx="2" ry="2" />
<text x="471.56" y="1807.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (2,315,233 samples, 0.01%)</title><rect x="930.3" y="1381" width="0.2" height="15.0" fill="rgb(221,94,51)" rx="2" ry="2" />
<text x="933.34" y="1391.5" ></text>
</g>
<g >
<title>__handle_mm_fault (611,745,833 samples, 2.86%)</title><rect x="905.9" y="1925" width="33.7" height="15.0" fill="rgb(246,226,4)" rx="2" ry="2" />
<text x="908.85" y="1935.5" >__..</text>
</g>
<g >
<title>ip6_sublist_rcv_finish (2,307,053 samples, 0.01%)</title><rect x="926.3" y="1365" width="0.1" height="15.0" fill="rgb(243,175,19)" rx="2" ry="2" />
<text x="929.26" y="1375.5" ></text>
</g>
<g >
<title>do_fault (5,779,692 samples, 0.03%)</title><rect x="846.6" y="1941" width="0.4" height="15.0" fill="rgb(248,31,46)" rx="2" ry="2" />
<text x="849.63" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (13,279,657 samples, 0.06%)</title><rect x="1124.3" y="1685" width="0.7" height="15.0" fill="rgb(253,31,50)" rx="2" ry="2" />
<text x="1127.26" y="1695.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (3,831,079 samples, 0.02%)</title><rect x="451.7" y="1861" width="0.2" height="15.0" fill="rgb(227,63,4)" rx="2" ry="2" />
<text x="454.69" y="1871.5" ></text>
</g>
<g >
<title>squashfs_get_datablock (11,239,380 samples, 0.05%)</title><rect x="31.4" y="1765" width="0.6" height="15.0" fill="rgb(219,0,11)" rx="2" ry="2" />
<text x="34.41" y="1775.5" ></text>
</g>
<g >
<title>os.(*File).Read (19,442,112 samples, 0.09%)</title><rect x="1179.1" y="1909" width="1.0" height="15.0" fill="rgb(237,171,45)" rx="2" ry="2" />
<text x="1182.05" y="1919.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (3,317,464 samples, 0.02%)</title><rect x="1152.8" y="1717" width="0.2" height="15.0" fill="rgb(251,188,9)" rx="2" ry="2" />
<text x="1155.83" y="1727.5" ></text>
</g>
<g >
<title>napi_complete_done (3,703,968 samples, 0.02%)</title><rect x="643.1" y="1717" width="0.2" height="15.0" fill="rgb(211,154,31)" rx="2" ry="2" />
<text x="646.05" y="1727.5" ></text>
</g>
<g >
<title>skb_checksum (2,318,043 samples, 0.01%)</title><rect x="1021.6" y="1733" width="0.1" height="15.0" fill="rgb(220,99,15)" rx="2" ry="2" />
<text x="1024.57" y="1743.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,283,377 samples, 0.02%)</title><rect x="401.5" y="293" width="0.2" height="15.0" fill="rgb(245,150,18)" rx="2" ry="2" />
<text x="404.52" y="303.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (52,027,115 samples, 0.24%)</title><rect x="508.4" y="1973" width="2.9" height="15.0" fill="rgb(249,88,5)" rx="2" ry="2" />
<text x="511.44" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_openat (5,019,179 samples, 0.02%)</title><rect x="970.5" y="1989" width="0.3" height="15.0" fill="rgb(227,42,38)" rx="2" ry="2" />
<text x="973.48" y="1999.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (5,520,224 samples, 0.03%)</title><rect x="799.5" y="1717" width="0.3" height="15.0" fill="rgb(230,191,14)" rx="2" ry="2" />
<text x="802.53" y="1727.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (2,677,618 samples, 0.01%)</title><rect x="977.8" y="1813" width="0.1" height="15.0" fill="rgb(227,19,32)" rx="2" ry="2" />
<text x="980.76" y="1823.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (2,628,829 samples, 0.01%)</title><rect x="501.1" y="1813" width="0.2" height="15.0" fill="rgb(216,181,51)" rx="2" ry="2" />
<text x="504.12" y="1823.5" ></text>
</g>
<g >
<title>ktime_get_update_offsets_now (2,641,683 samples, 0.01%)</title><rect x="510.5" y="1957" width="0.2" height="15.0" fill="rgb(216,141,5)" rx="2" ry="2" />
<text x="513.54" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (6,103,077 samples, 0.03%)</title><rect x="439.5" y="1637" width="0.4" height="15.0" fill="rgb(214,111,25)" rx="2" ry="2" />
<text x="442.54" y="1647.5" ></text>
</g>
<g >
<title>ip6_input (44,323,007 samples, 0.21%)</title><rect x="669.8" y="1717" width="2.4" height="15.0" fill="rgb(235,6,26)" rx="2" ry="2" />
<text x="672.78" y="1727.5" ></text>
</g>
<g >
<title>ip4ip6_rcv (2,023,179 samples, 0.01%)</title><rect x="1136.5" y="1637" width="0.1" height="15.0" fill="rgb(241,60,28)" rx="2" ry="2" />
<text x="1139.49" y="1647.5" ></text>
</g>
<g >
<title>fib_rules_lookup (6,850,236 samples, 0.03%)</title><rect x="655.4" y="1621" width="0.4" height="15.0" fill="rgb(221,148,44)" rx="2" ry="2" />
<text x="658.42" y="1631.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,552,779 samples, 0.01%)</title><rect x="602.3" y="1909" width="0.2" height="15.0" fill="rgb(235,78,44)" rx="2" ry="2" />
<text x="605.32" y="1919.5" ></text>
</g>
<g >
<title>sleep (3,788,888 samples, 0.02%)</title><rect x="862.2" y="2069" width="0.2" height="15.0" fill="rgb(211,68,28)" rx="2" ry="2" />
<text x="865.22" y="2079.5" ></text>
</g>
<g >
<title>ip6_output (33,033,496 samples, 0.15%)</title><rect x="540.9" y="1829" width="1.8" height="15.0" fill="rgb(248,41,6)" rx="2" ry="2" />
<text x="543.86" y="1839.5" ></text>
</g>
<g >
<title>common_interrupt (1,899,242 samples, 0.01%)</title><rect x="624.7" y="1829" width="0.1" height="15.0" fill="rgb(211,155,53)" rx="2" ry="2" />
<text x="627.67" y="1839.5" ></text>
</g>
<g >
<title>net_rx_action (32,726,923 samples, 0.15%)</title><rect x="424.1" y="1925" width="1.8" height="15.0" fill="rgb(239,136,37)" rx="2" ry="2" />
<text x="427.08" y="1935.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (1,915,517 samples, 0.01%)</title><rect x="450.1" y="1749" width="0.1" height="15.0" fill="rgb(212,159,42)" rx="2" ry="2" />
<text x="453.14" y="1759.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,655,052 samples, 0.01%)</title><rect x="536.5" y="1829" width="0.1" height="15.0" fill="rgb(206,2,14)" rx="2" ry="2" />
<text x="539.45" y="1839.5" ></text>
</g>
<g >
<title>skb_scrub_packet (4,115,424 samples, 0.02%)</title><rect x="739.2" y="1605" width="0.2" height="15.0" fill="rgb(209,57,23)" rx="2" ry="2" />
<text x="742.22" y="1615.5" ></text>
</g>
<g >
<title>inet_gro_receive (13,672,843 samples, 0.06%)</title><rect x="685.9" y="1717" width="0.7" height="15.0" fill="rgb(252,150,36)" rx="2" ry="2" />
<text x="688.86" y="1727.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (13,469,916 samples, 0.06%)</title><rect x="848.4" y="2021" width="0.8" height="15.0" fill="rgb(226,102,13)" rx="2" ry="2" />
<text x="851.41" y="2031.5" ></text>
</g>
<g >
<title>kthread (7,561,954 samples, 0.04%)</title><rect x="61.2" y="2037" width="0.4" height="15.0" fill="rgb(246,217,21)" rx="2" ry="2" />
<text x="64.21" y="2047.5" ></text>
</g>
<g >
<title>squashfs_get_datablock (15,008,857 samples, 0.07%)</title><rect x="942.8" y="1781" width="0.9" height="15.0" fill="rgb(237,71,44)" rx="2" ry="2" />
<text x="945.85" y="1791.5" ></text>
</g>
<g >
<title>irq_exit_rcu (802,244,447 samples, 3.75%)</title><rect x="462.9" y="1989" width="44.3" height="15.0" fill="rgb(249,223,53)" rx="2" ry="2" />
<text x="465.95" y="1999.5" >irq_..</text>
</g>
<g >
<title>rtl8169_poll (5,332,136 samples, 0.02%)</title><rect x="621.9" y="1813" width="0.3" height="15.0" fill="rgb(233,151,4)" rx="2" ry="2" />
<text x="624.95" y="1823.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,490,067 samples, 0.03%)</title><rect x="598.1" y="1797" width="0.3" height="15.0" fill="rgb(215,184,54)" rx="2" ry="2" />
<text x="601.08" y="1807.5" ></text>
</g>
<g >
<title>path_openat (18,446,530 samples, 0.09%)</title><rect x="841.1" y="1925" width="1.0" height="15.0" fill="rgb(226,195,2)" rx="2" ry="2" />
<text x="844.07" y="1935.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,835,646 samples, 0.01%)</title><rect x="896.0" y="1813" width="0.1" height="15.0" fill="rgb(249,168,50)" rx="2" ry="2" />
<text x="899.02" y="1823.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (117,452,868 samples, 0.55%)</title><rect x="1148.9" y="1861" width="6.4" height="15.0" fill="rgb(236,40,19)" rx="2" ry="2" />
<text x="1151.87" y="1871.5" ></text>
</g>
<g >
<title>kthread (7,686,381 samples, 0.04%)</title><rect x="61.6" y="2037" width="0.5" height="15.0" fill="rgb(249,113,18)" rx="2" ry="2" />
<text x="64.63" y="2047.5" ></text>
</g>
<g >
<title>[snap] (118,926,426 samples, 0.56%)</title><rect x="891.2" y="1989" width="6.6" height="15.0" fill="rgb(246,83,24)" rx="2" ry="2" />
<text x="894.21" y="1999.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (2,301,653 samples, 0.01%)</title><rect x="941.8" y="2005" width="0.1" height="15.0" fill="rgb(229,15,47)" rx="2" ry="2" />
<text x="944.78" y="2015.5" ></text>
</g>
<g >
<title>common_interrupt (1,923,190 samples, 0.01%)</title><rect x="907.6" y="1605" width="0.1" height="15.0" fill="rgb(235,191,7)" rx="2" ry="2" />
<text x="910.62" y="1615.5" ></text>
</g>
<g >
<title>[unknown] (5,297,187 samples, 0.02%)</title><rect x="657.4" y="1669" width="0.3" height="15.0" fill="rgb(221,62,41)" rx="2" ry="2" />
<text x="660.44" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (3,894,955 samples, 0.02%)</title><rect x="1147.5" y="1765" width="0.2" height="15.0" fill="rgb(211,119,30)" rx="2" ry="2" />
<text x="1150.50" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1765" width="0.3" height="15.0" fill="rgb(207,175,29)" rx="2" ry="2" />
<text x="23.41" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (15,655,144 samples, 0.07%)</title><rect x="1127.1" y="1701" width="0.9" height="15.0" fill="rgb(242,16,40)" rx="2" ry="2" />
<text x="1130.11" y="1711.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (4,583,577 samples, 0.02%)</title><rect x="401.3" y="229" width="0.2" height="15.0" fill="rgb(219,183,43)" rx="2" ry="2" />
<text x="404.27" y="239.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (5,290,966 samples, 0.02%)</title><rect x="620.5" y="1733" width="0.3" height="15.0" fill="rgb(218,22,30)" rx="2" ry="2" />
<text x="623.47" y="1743.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,919,668 samples, 0.01%)</title><rect x="831.8" y="1877" width="0.1" height="15.0" fill="rgb(254,57,18)" rx="2" ry="2" />
<text x="834.84" y="1887.5" ></text>
</g>
<g >
<title>pagecache_get_page (3,089,263 samples, 0.01%)</title><rect x="906.4" y="1765" width="0.2" height="15.0" fill="rgb(254,48,34)" rx="2" ry="2" />
<text x="909.38" y="1775.5" ></text>
</g>
<g >
<title>neigh_hh_output (5,350,489 samples, 0.02%)</title><rect x="513.6" y="1749" width="0.3" height="15.0" fill="rgb(253,146,46)" rx="2" ry="2" />
<text x="516.62" y="1759.5" ></text>
</g>
<g >
<title>ipv6_rcv (321,616,087 samples, 1.50%)</title><rect x="477.2" y="1845" width="17.8" height="15.0" fill="rgb(246,184,27)" rx="2" ry="2" />
<text x="480.24" y="1855.5" ></text>
</g>
<g >
<title>__common_interrupt (46,629,371 samples, 0.22%)</title><rect x="431.4" y="1973" width="2.6" height="15.0" fill="rgb(210,0,3)" rx="2" ry="2" />
<text x="434.44" y="1983.5" ></text>
</g>
<g >
<title>cpuidle_reflect (7,602,885 samples, 0.04%)</title><rect x="1112.0" y="1989" width="0.4" height="15.0" fill="rgb(242,224,50)" rx="2" ry="2" />
<text x="1114.99" y="1999.5" ></text>
</g>
<g >
<title>consume_skb (6,476,304 samples, 0.03%)</title><rect x="521.6" y="1845" width="0.3" height="15.0" fill="rgb(236,27,34)" rx="2" ry="2" />
<text x="524.58" y="1855.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1413" width="1.1" height="15.0" fill="rgb(205,64,17)" rx="2" ry="2" />
<text x="886.75" y="1423.5" ></text>
</g>
<g >
<title>sch_direct_xmit (6,848,445 samples, 0.03%)</title><rect x="411.5" y="1637" width="0.3" height="15.0" fill="rgb(210,6,1)" rx="2" ry="2" />
<text x="414.45" y="1647.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,649,515 samples, 0.05%)</title><rect x="496.3" y="1813" width="0.6" height="15.0" fill="rgb(230,228,34)" rx="2" ry="2" />
<text x="499.33" y="1823.5" ></text>
</g>
<g >
<title>filemap_map_pages (3,848,248 samples, 0.02%)</title><rect x="24.3" y="1909" width="0.2" height="15.0" fill="rgb(222,51,38)" rx="2" ry="2" />
<text x="27.28" y="1919.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (8,283,214 samples, 0.04%)</title><rect x="421.2" y="1877" width="0.5" height="15.0" fill="rgb(235,113,45)" rx="2" ry="2" />
<text x="424.23" y="1887.5" ></text>
</g>
<g >
<title>ip_route_input_noref (4,117,388 samples, 0.02%)</title><rect x="556.8" y="1861" width="0.3" height="15.0" fill="rgb(254,203,48)" rx="2" ry="2" />
<text x="559.85" y="1871.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (142,413,785 samples, 0.67%)</title><rect x="1005.4" y="1749" width="7.9" height="15.0" fill="rgb(229,88,25)" rx="2" ry="2" />
<text x="1008.45" y="1759.5" ></text>
</g>
<g >
<title>lookup_fast (8,119,350 samples, 0.04%)</title><rect x="969.3" y="1877" width="0.4" height="15.0" fill="rgb(207,221,52)" rx="2" ry="2" />
<text x="972.27" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (3,384,799 samples, 0.02%)</title><rect x="20.4" y="277" width="0.2" height="15.0" fill="rgb(212,141,41)" rx="2" ry="2" />
<text x="23.41" y="287.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="981" width="1.1" height="15.0" fill="rgb(207,223,1)" rx="2" ry="2" />
<text x="886.75" y="991.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1221" width="1.1" height="15.0" fill="rgb(246,16,1)" rx="2" ry="2" />
<text x="886.75" y="1231.5" ></text>
</g>
<g >
<title>[snapd] (32,717,359 samples, 0.15%)</title><rect x="973.7" y="1973" width="1.8" height="15.0" fill="rgb(222,169,25)" rx="2" ry="2" />
<text x="976.67" y="1983.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,909,265 samples, 0.01%)</title><rect x="589.5" y="1813" width="0.1" height="15.0" fill="rgb(219,86,5)" rx="2" ry="2" />
<text x="592.52" y="1823.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1381" width="0.5" height="15.0" fill="rgb(215,1,35)" rx="2" ry="2" />
<text x="18.42" y="1391.5" ></text>
</g>
<g >
<title>squashfs_cache_get (15,008,857 samples, 0.07%)</title><rect x="942.8" y="1765" width="0.9" height="15.0" fill="rgb(252,185,44)" rx="2" ry="2" />
<text x="945.85" y="1775.5" ></text>
</g>
<g >
<title>__common_interrupt (2,638,507 samples, 0.01%)</title><rect x="610.1" y="1925" width="0.2" height="15.0" fill="rgb(217,59,4)" rx="2" ry="2" />
<text x="613.12" y="1935.5" ></text>
</g>
<g >
<title>[snap] (35,194,173 samples, 0.16%)</title><rect x="893.7" y="1813" width="1.9" height="15.0" fill="rgb(243,3,7)" rx="2" ry="2" />
<text x="896.69" y="1823.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (1,918,274 samples, 0.01%)</title><rect x="47.0" y="2005" width="0.1" height="15.0" fill="rgb(243,156,48)" rx="2" ry="2" />
<text x="49.98" y="2015.5" ></text>
</g>
<g >
<title>[snap] (83,833,959 samples, 0.39%)</title><rect x="892.0" y="1893" width="4.6" height="15.0" fill="rgb(208,123,30)" rx="2" ry="2" />
<text x="894.98" y="1903.5" ></text>
</g>
<g >
<title>mmc_mq_queue_rq (4,574,447 samples, 0.02%)</title><rect x="61.7" y="1877" width="0.3" height="15.0" fill="rgb(223,219,20)" rx="2" ry="2" />
<text x="64.71" y="1887.5" ></text>
</g>
<g >
<title>[snap] (5,330,088 samples, 0.02%)</title><rect x="894.7" y="1461" width="0.3" height="15.0" fill="rgb(239,52,7)" rx="2" ry="2" />
<text x="897.68" y="1471.5" ></text>
</g>
<g >
<title>futex_wait_queue_me (2,683,187 samples, 0.01%)</title><rect x="526.5" y="1941" width="0.2" height="15.0" fill="rgb(231,141,2)" rx="2" ry="2" />
<text x="529.55" y="1951.5" ></text>
</g>
<g >
<title>wake_up_process (1,947,939 samples, 0.01%)</title><rect x="1058.6" y="1877" width="0.1" height="15.0" fill="rgb(235,94,23)" rx="2" ry="2" />
<text x="1061.60" y="1887.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (40,885,551 samples, 0.19%)</title><rect x="964.7" y="2005" width="2.2" height="15.0" fill="rgb(223,49,41)" rx="2" ry="2" />
<text x="967.67" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,432,367 samples, 0.03%)</title><rect x="562.1" y="2037" width="0.4" height="15.0" fill="rgb(243,229,19)" rx="2" ry="2" />
<text x="565.13" y="2047.5" ></text>
</g>
<g >
<title>napi_gro_receive (2,843,292 samples, 0.01%)</title><rect x="980.1" y="1845" width="0.2" height="15.0" fill="rgb(238,26,8)" rx="2" ry="2" />
<text x="983.10" y="1855.5" ></text>
</g>
<g >
<title>dev_queue_xmit (34,196,761 samples, 0.16%)</title><rect x="650.4" y="1637" width="1.9" height="15.0" fill="rgb(216,40,22)" rx="2" ry="2" />
<text x="653.39" y="1647.5" ></text>
</g>
<g >
<title>__ip_finish_output (12,182,723 samples, 0.06%)</title><rect x="435.0" y="1781" width="0.7" height="15.0" fill="rgb(237,126,19)" rx="2" ry="2" />
<text x="438.00" y="1791.5" ></text>
</g>
<g >
<title>__siphash_unaligned (6,085,036 samples, 0.03%)</title><rect x="713.6" y="1573" width="0.3" height="15.0" fill="rgb(232,9,37)" rx="2" ry="2" />
<text x="716.59" y="1583.5" ></text>
</g>
<g >
<title>dequeue_skb (7,311,809 samples, 0.03%)</title><rect x="1057.9" y="1845" width="0.4" height="15.0" fill="rgb(244,16,50)" rx="2" ry="2" />
<text x="1060.87" y="1855.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,551,641 samples, 0.01%)</title><rect x="573.7" y="1861" width="0.2" height="15.0" fill="rgb(242,15,39)" rx="2" ry="2" />
<text x="576.74" y="1871.5" ></text>
</g>
<g >
<title>fib_rules_lookup (2,754,986 samples, 0.01%)</title><rect x="1151.2" y="1637" width="0.2" height="15.0" fill="rgb(209,95,41)" rx="2" ry="2" />
<text x="1154.21" y="1647.5" ></text>
</g>
<g >
<title>ip_forward_finish (4,100,460 samples, 0.02%)</title><rect x="1169.5" y="1701" width="0.2" height="15.0" fill="rgb(233,73,44)" rx="2" ry="2" />
<text x="1172.48" y="1711.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (1,910,190 samples, 0.01%)</title><rect x="26.5" y="1893" width="0.1" height="15.0" fill="rgb(252,204,6)" rx="2" ry="2" />
<text x="29.46" y="1903.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (22,854,936 samples, 0.11%)</title><rect x="1099.6" y="1717" width="1.3" height="15.0" fill="rgb(249,228,4)" rx="2" ry="2" />
<text x="1102.64" y="1727.5" ></text>
</g>
<g >
<title>rtl_rx (5,586,544 samples, 0.03%)</title><rect x="52.9" y="1925" width="0.3" height="15.0" fill="rgb(233,186,48)" rx="2" ry="2" />
<text x="55.91" y="1935.5" ></text>
</g>
<g >
<title>rcu_dynticks_inc (2,483,354 samples, 0.01%)</title><rect x="1103.2" y="1909" width="0.1" height="15.0" fill="rgb(216,178,35)" rx="2" ry="2" />
<text x="1106.17" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,345,981 samples, 0.02%)</title><rect x="897.4" y="1957" width="0.2" height="15.0" fill="rgb(228,16,48)" rx="2" ry="2" />
<text x="900.41" y="1967.5" ></text>
</g>
<g >
<title>golang.zx2c4.com/wireguard/tun.CreateTUNFromFile.func2 (3,220,282 samples, 0.02%)</title><rect x="1178.6" y="2037" width="0.2" height="15.0" fill="rgb(215,58,10)" rx="2" ry="2" />
<text x="1181.63" y="2047.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (5,257,030 samples, 0.02%)</title><rect x="666.6" y="1605" width="0.3" height="15.0" fill="rgb(225,183,39)" rx="2" ry="2" />
<text x="669.61" y="1615.5" ></text>
</g>
<g >
<title>[unknown] (67,759,420 samples, 0.32%)</title><rect x="754.1" y="1637" width="3.7" height="15.0" fill="rgb(210,222,12)" rx="2" ry="2" />
<text x="757.10" y="1647.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (2,677,618 samples, 0.01%)</title><rect x="977.8" y="1829" width="0.1" height="15.0" fill="rgb(235,60,36)" rx="2" ry="2" />
<text x="980.76" y="1839.5" ></text>
</g>
<g >
<title>free_pgtables (2,323,316 samples, 0.01%)</title><rect x="856.9" y="1925" width="0.1" height="15.0" fill="rgb(237,15,15)" rx="2" ry="2" />
<text x="859.87" y="1935.5" ></text>
</g>
<g >
<title>__siphash_unaligned (2,278,930 samples, 0.01%)</title><rect x="734.5" y="1397" width="0.1" height="15.0" fill="rgb(250,198,16)" rx="2" ry="2" />
<text x="737.46" y="1407.5" ></text>
</g>
<g >
<title>load_balance (4,626,298 samples, 0.02%)</title><rect x="1068.1" y="1845" width="0.3" height="15.0" fill="rgb(216,0,6)" rx="2" ry="2" />
<text x="1071.13" y="1855.5" ></text>
</g>
<g >
<title>tun_net_xmit (2,132,140 samples, 0.01%)</title><rect x="1169.6" y="1509" width="0.1" height="15.0" fill="rgb(226,86,28)" rx="2" ry="2" />
<text x="1172.56" y="1519.5" ></text>
</g>
<g >
<title>__napi_poll (2,298,305 samples, 0.01%)</title><rect x="888.7" y="1909" width="0.1" height="15.0" fill="rgb(206,7,49)" rx="2" ry="2" />
<text x="891.66" y="1919.5" ></text>
</g>
<g >
<title>__fget_files (9,011,946 samples, 0.04%)</title><rect x="567.5" y="1941" width="0.5" height="15.0" fill="rgb(228,227,7)" rx="2" ry="2" />
<text x="570.55" y="1951.5" ></text>
</g>
<g >
<title>__mem_cgroup_flush_stats (2,091,574 samples, 0.01%)</title><rect x="65.0" y="1925" width="0.1" height="15.0" fill="rgb(212,16,42)" rx="2" ry="2" />
<text x="67.96" y="1935.5" ></text>
</g>
<g >
<title>__irqentry_text_start (7,987,737 samples, 0.04%)</title><rect x="1115.1" y="1893" width="0.4" height="15.0" fill="rgb(243,32,44)" rx="2" ry="2" />
<text x="1118.09" y="1903.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,665,732 samples, 0.01%)</title><rect x="448.2" y="1957" width="0.2" height="15.0" fill="rgb(225,40,26)" rx="2" ry="2" />
<text x="451.21" y="1967.5" ></text>
</g>
<g >
<title>handle_edge_irq (3,750,806 samples, 0.02%)</title><rect x="512.1" y="1909" width="0.2" height="15.0" fill="rgb(226,141,13)" rx="2" ry="2" />
<text x="515.09" y="1919.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (14,628,402 samples, 0.07%)</title><rect x="442.0" y="1813" width="0.9" height="15.0" fill="rgb(239,137,36)" rx="2" ry="2" />
<text x="445.04" y="1823.5" ></text>
</g>
<g >
<title>[snap-exec] (47,700,322 samples, 0.22%)</title><rect x="873.1" y="1893" width="2.6" height="15.0" fill="rgb(238,67,46)" rx="2" ry="2" />
<text x="876.12" y="1903.5" ></text>
</g>
<g >
<title>security_cred_free (3,484,921 samples, 0.02%)</title><rect x="968.7" y="1909" width="0.2" height="15.0" fill="rgb(239,137,10)" rx="2" ry="2" />
<text x="971.69" y="1919.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,127,442 samples, 0.01%)</title><rect x="1113.4" y="1941" width="0.2" height="15.0" fill="rgb(235,63,8)" rx="2" ry="2" />
<text x="1116.39" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (14,944,890 samples, 0.07%)</title><rect x="1127.1" y="1685" width="0.9" height="15.0" fill="rgb(244,157,27)" rx="2" ry="2" />
<text x="1130.15" y="1695.5" ></text>
</g>
<g >
<title>do_exit (1,930,050 samples, 0.01%)</title><rect x="879.1" y="1989" width="0.1" height="15.0" fill="rgb(250,136,40)" rx="2" ry="2" />
<text x="882.11" y="1999.5" ></text>
</g>
<g >
<title>do_filp_open (3,431,567 samples, 0.02%)</title><rect x="65.4" y="1941" width="0.2" height="15.0" fill="rgb(223,154,9)" rx="2" ry="2" />
<text x="68.45" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,585,371 samples, 0.02%)</title><rect x="44.4" y="2021" width="0.2" height="15.0" fill="rgb(230,55,4)" rx="2" ry="2" />
<text x="47.45" y="2031.5" ></text>
</g>
<g >
<title>rcu_core_si (2,313,448 samples, 0.01%)</title><rect x="1067.9" y="1877" width="0.1" height="15.0" fill="rgb(216,36,40)" rx="2" ry="2" />
<text x="1070.91" y="1887.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (27,310,366 samples, 0.13%)</title><rect x="1013.3" y="1749" width="1.5" height="15.0" fill="rgb(242,95,42)" rx="2" ry="2" />
<text x="1016.32" y="1759.5" ></text>
</g>
<g >
<title>kworker/0:0-mm_ (7,561,954 samples, 0.04%)</title><rect x="61.2" y="2069" width="0.4" height="15.0" fill="rgb(244,127,0)" rx="2" ry="2" />
<text x="64.21" y="2079.5" ></text>
</g>
<g >
<title>do_set_pte (6,928,248 samples, 0.03%)</title><rect x="939.0" y="1861" width="0.4" height="15.0" fill="rgb(207,204,19)" rx="2" ry="2" />
<text x="942.04" y="1871.5" ></text>
</g>
<g >
<title>asm_common_interrupt (8,004,783 samples, 0.04%)</title><rect x="591.8" y="1797" width="0.5" height="15.0" fill="rgb(236,50,54)" rx="2" ry="2" />
<text x="594.85" y="1807.5" ></text>
</g>
<g >
<title>kmem_cache_free (6,882,900 samples, 0.03%)</title><rect x="681.8" y="1701" width="0.4" height="15.0" fill="rgb(207,43,19)" rx="2" ry="2" />
<text x="684.84" y="1711.5" ></text>
</g>
<g >
<title>fib_rules_lookup (4,998,182 samples, 0.02%)</title><rect x="1099.4" y="1669" width="0.2" height="15.0" fill="rgb(235,55,25)" rx="2" ry="2" />
<text x="1102.37" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (8,364,350 samples, 0.04%)</title><rect x="541.8" y="1669" width="0.5" height="15.0" fill="rgb(222,60,43)" rx="2" ry="2" />
<text x="544.83" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (2,628,105 samples, 0.01%)</title><rect x="1047.5" y="1717" width="0.2" height="15.0" fill="rgb(239,229,6)" rx="2" ry="2" />
<text x="1050.52" y="1727.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (4,261,901 samples, 0.02%)</title><rect x="958.8" y="1861" width="0.3" height="15.0" fill="rgb(237,145,8)" rx="2" ry="2" />
<text x="961.85" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (3,422,413 samples, 0.02%)</title><rect x="18.5" y="2053" width="0.2" height="15.0" fill="rgb(214,71,39)" rx="2" ry="2" />
<text x="21.52" y="2063.5" ></text>
</g>
<g >
<title>bpf_int_jit_compile (3,376,810 samples, 0.02%)</title><rect x="865.5" y="1893" width="0.2" height="15.0" fill="rgb(238,214,41)" rx="2" ry="2" />
<text x="868.52" y="1903.5" ></text>
</g>
<g >
<title>[snap-seccomp] (17,256,293 samples, 0.08%)</title><rect x="877.0" y="1909" width="1.0" height="15.0" fill="rgb(218,44,49)" rx="2" ry="2" />
<text x="880.02" y="1919.5" ></text>
</g>
<g >
<title>[snap] (5,330,088 samples, 0.02%)</title><rect x="894.7" y="1445" width="0.3" height="15.0" fill="rgb(208,224,46)" rx="2" ry="2" />
<text x="897.68" y="1455.5" ></text>
</g>
<g >
<title>exc_page_fault (6,169,062 samples, 0.03%)</title><rect x="962.7" y="2021" width="0.3" height="15.0" fill="rgb(217,41,50)" rx="2" ry="2" />
<text x="965.67" y="2031.5" ></text>
</g>
<g >
<title>ip6_finish_output (25,465,470 samples, 0.12%)</title><rect x="438.8" y="1781" width="1.4" height="15.0" fill="rgb(239,152,15)" rx="2" ry="2" />
<text x="441.83" y="1791.5" ></text>
</g>
<g >
<title>cake_enqueue (7,672,778 samples, 0.04%)</title><rect x="758.0" y="1653" width="0.4" height="15.0" fill="rgb(250,131,22)" rx="2" ry="2" />
<text x="760.96" y="1663.5" ></text>
</g>
<g >
<title>vfs_open (4,238,917 samples, 0.02%)</title><rect x="845.0" y="1893" width="0.2" height="15.0" fill="rgb(232,227,18)" rx="2" ry="2" />
<text x="848.00" y="1903.5" ></text>
</g>
<g >
<title>prandom_u32 (3,053,526 samples, 0.01%)</title><rect x="692.9" y="1797" width="0.2" height="15.0" fill="rgb(242,141,10)" rx="2" ry="2" />
<text x="695.94" y="1807.5" ></text>
</g>
<g >
<title>ip6_forward (1,857,987 samples, 0.01%)</title><rect x="419.7" y="1749" width="0.1" height="15.0" fill="rgb(248,54,49)" rx="2" ry="2" />
<text x="422.69" y="1759.5" ></text>
</g>
<g >
<title>handle_preload_list (2,285,556 samples, 0.01%)</title><rect x="878.4" y="2037" width="0.1" height="15.0" fill="rgb(219,50,12)" rx="2" ry="2" />
<text x="881.37" y="2047.5" ></text>
</g>
<g >
<title>__qdisc_run (11,622,307 samples, 0.05%)</title><rect x="53.5" y="1957" width="0.6" height="15.0" fill="rgb(250,160,44)" rx="2" ry="2" />
<text x="56.45" y="1967.5" ></text>
</g>
<g >
<title>__qdisc_run (7,621,273 samples, 0.04%)</title><rect x="439.0" y="1669" width="0.5" height="15.0" fill="rgb(241,179,17)" rx="2" ry="2" />
<text x="442.04" y="1679.5" ></text>
</g>
<g >
<title>nf_hook_slow (3,314,673 samples, 0.02%)</title><rect x="495.8" y="1813" width="0.2" height="15.0" fill="rgb(208,72,28)" rx="2" ry="2" />
<text x="498.82" y="1823.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (4,052,382 samples, 0.02%)</title><rect x="443.9" y="1845" width="0.2" height="15.0" fill="rgb(210,186,13)" rx="2" ry="2" />
<text x="446.89" y="1855.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,077,674 samples, 0.01%)</title><rect x="869.0" y="1957" width="0.2" height="15.0" fill="rgb(223,164,46)" rx="2" ry="2" />
<text x="872.00" y="1967.5" ></text>
</g>
<g >
<title>free_unref_page_commit.constprop.0 (1,919,257 samples, 0.01%)</title><rect x="582.7" y="1829" width="0.1" height="15.0" fill="rgb(250,89,27)" rx="2" ry="2" />
<text x="585.72" y="1839.5" ></text>
</g>
<g >
<title>__qdisc_run (20,337,673 samples, 0.09%)</title><rect x="1008.4" y="1573" width="1.1" height="15.0" fill="rgb(221,194,53)" rx="2" ry="2" />
<text x="1011.37" y="1583.5" ></text>
</g>
<g >
<title>ip_forward (76,264,629 samples, 0.36%)</title><rect x="465.6" y="1861" width="4.2" height="15.0" fill="rgb(209,109,19)" rx="2" ry="2" />
<text x="468.61" y="1871.5" ></text>
</g>
<g >
<title>handle_irq_event (3,747,875 samples, 0.02%)</title><rect x="399.7" y="69" width="0.2" height="15.0" fill="rgb(252,155,45)" rx="2" ry="2" />
<text x="402.71" y="79.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,160,769 samples, 0.03%)</title><rect x="843.6" y="2037" width="0.3" height="15.0" fill="rgb(218,139,54)" rx="2" ry="2" />
<text x="846.60" y="2047.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (57,601,804 samples, 0.27%)</title><rect x="489.0" y="1829" width="3.1" height="15.0" fill="rgb(221,17,28)" rx="2" ry="2" />
<text x="491.96" y="1839.5" ></text>
</g>
<g >
<title>ip6_pol_route (3,088,898 samples, 0.01%)</title><rect x="1099.5" y="1621" width="0.1" height="15.0" fill="rgb(229,56,36)" rx="2" ry="2" />
<text x="1102.47" y="1631.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7,995,183 samples, 0.04%)</title><rect x="453.8" y="2005" width="0.4" height="15.0" fill="rgb(245,74,52)" rx="2" ry="2" />
<text x="456.77" y="2015.5" ></text>
</g>
<g >
<title>[snapctl] (34,047,674 samples, 0.16%)</title><rect x="945.1" y="1941" width="1.9" height="15.0" fill="rgb(244,128,46)" rx="2" ry="2" />
<text x="948.15" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="501" width="0.3" height="15.0" fill="rgb(239,100,31)" rx="2" ry="2" />
<text x="23.41" y="511.5" ></text>
</g>
<g >
<title>[unknown] (158,897,290 samples, 0.74%)</title><rect x="393.5" y="453" width="8.7" height="15.0" fill="rgb(245,129,39)" rx="2" ry="2" />
<text x="396.46" y="463.5" ></text>
</g>
<g >
<title>tailscale.com/ipn/ipnlocal.(*LocalBackend).Start.func1.1 (23,174,499 samples, 0.11%)</title><rect x="1178.9" y="2037" width="1.3" height="15.0" fill="rgb(230,174,45)" rx="2" ry="2" />
<text x="1181.88" y="2047.5" ></text>
</g>
<g >
<title>rtl8169_poll (2,208,681 samples, 0.01%)</title><rect x="598.8" y="1733" width="0.1" height="15.0" fill="rgb(222,12,34)" rx="2" ry="2" />
<text x="601.77" y="1743.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (6,771,016 samples, 0.03%)</title><rect x="15.4" y="117" width="0.4" height="15.0" fill="rgb(253,116,0)" rx="2" ry="2" />
<text x="18.42" y="127.5" ></text>
</g>
<g >
<title>ip_route_input_noref (47,182,310 samples, 0.22%)</title><rect x="654.0" y="1733" width="2.6" height="15.0" fill="rgb(250,194,29)" rx="2" ry="2" />
<text x="657.02" y="1743.5" ></text>
</g>
<g >
<title>common_interrupt (1,896,738 samples, 0.01%)</title><rect x="400.0" y="133" width="0.1" height="15.0" fill="rgb(250,175,31)" rx="2" ry="2" />
<text x="403.04" y="143.5" ></text>
</g>
<g >
<title>packet_rcv (2,683,507 samples, 0.01%)</title><rect x="557.7" y="1877" width="0.2" height="15.0" fill="rgb(212,178,35)" rx="2" ry="2" />
<text x="560.74" y="1887.5" ></text>
</g>
<g >
<title>do_group_exit (5,408,958 samples, 0.03%)</title><rect x="69.4" y="2005" width="0.3" height="15.0" fill="rgb(207,26,30)" rx="2" ry="2" />
<text x="72.42" y="2015.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (2,427,145 samples, 0.01%)</title><rect x="1065.9" y="1765" width="0.1" height="15.0" fill="rgb(247,107,42)" rx="2" ry="2" />
<text x="1068.89" y="1775.5" ></text>
</g>
<g >
<title>security_file_permission (36,952,114 samples, 0.17%)</title><rect x="600.1" y="1941" width="2.0" height="15.0" fill="rgb(209,148,49)" rx="2" ry="2" />
<text x="603.05" y="1951.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1173" width="0.3" height="15.0" fill="rgb(223,204,0)" rx="2" ry="2" />
<text x="897.70" y="1183.5" ></text>
</g>
<g >
<title>consume_skb (6,878,139 samples, 0.03%)</title><rect x="444.3" y="1829" width="0.4" height="15.0" fill="rgb(208,198,11)" rx="2" ry="2" />
<text x="447.29" y="1839.5" ></text>
</g>
<g >
<title>squashfs_decompress (23,834,653 samples, 0.11%)</title><rect x="955.5" y="1749" width="1.3" height="15.0" fill="rgb(219,94,17)" rx="2" ry="2" />
<text x="958.45" y="1759.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,203,132 samples, 0.01%)</title><rect x="897.0" y="1861" width="0.2" height="15.0" fill="rgb(214,75,26)" rx="2" ry="2" />
<text x="900.03" y="1871.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,312,591 samples, 0.01%)</title><rect x="39.8" y="2021" width="0.1" height="15.0" fill="rgb(245,48,45)" rx="2" ry="2" />
<text x="42.82" y="2031.5" ></text>
</g>
<g >
<title>ext4_da_get_block_prep (5,233,247 samples, 0.02%)</title><rect x="73.2" y="1749" width="0.3" height="15.0" fill="rgb(211,59,52)" rx="2" ry="2" />
<text x="76.24" y="1759.5" ></text>
</g>
<g >
<title>validate_xmit_skb (1,943,903 samples, 0.01%)</title><rect x="1154.7" y="1749" width="0.1" height="15.0" fill="rgb(252,93,36)" rx="2" ry="2" />
<text x="1157.67" y="1759.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,701,120 samples, 0.01%)</title><rect x="22.1" y="1893" width="0.1" height="15.0" fill="rgb(239,47,30)" rx="2" ry="2" />
<text x="25.05" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (7,712,294 samples, 0.04%)</title><rect x="850.6" y="2021" width="0.4" height="15.0" fill="rgb(247,222,38)" rx="2" ry="2" />
<text x="853.60" y="2031.5" ></text>
</g>
<g >
<title>validate_xmit_skb (3,445,330 samples, 0.02%)</title><rect x="480.5" y="1637" width="0.2" height="15.0" fill="rgb(253,63,32)" rx="2" ry="2" />
<text x="483.49" y="1647.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (1,901,401 samples, 0.01%)</title><rect x="878.7" y="1989" width="0.1" height="15.0" fill="rgb(249,185,26)" rx="2" ry="2" />
<text x="881.71" y="1999.5" ></text>
</g>
<g >
<title>__do_fault (1,924,422 samples, 0.01%)</title><rect x="956.9" y="1893" width="0.1" height="15.0" fill="rgb(215,66,23)" rx="2" ry="2" />
<text x="959.92" y="1903.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,243,239 samples, 0.01%)</title><rect x="641.4" y="1829" width="0.1" height="15.0" fill="rgb(223,204,23)" rx="2" ry="2" />
<text x="644.40" y="1839.5" ></text>
</g>
<g >
<title>irq_exit_rcu (99,860,328 samples, 0.47%)</title><rect x="1149.8" y="1845" width="5.5" height="15.0" fill="rgb(247,225,51)" rx="2" ry="2" />
<text x="1152.81" y="1855.5" ></text>
</g>
<g >
<title>dev_gro_receive (1,892,700 samples, 0.01%)</title><rect x="56.6" y="1893" width="0.1" height="15.0" fill="rgb(217,133,34)" rx="2" ry="2" />
<text x="59.61" y="1903.5" ></text>
</g>
<g >
<title>ip6_forward (40,568,614 samples, 0.19%)</title><rect x="438.6" y="1813" width="2.3" height="15.0" fill="rgb(252,93,19)" rx="2" ry="2" />
<text x="441.64" y="1823.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (450,580,775 samples, 2.10%)</title><rect x="780.7" y="1829" width="24.8" height="15.0" fill="rgb(244,133,43)" rx="2" ry="2" />
<text x="783.70" y="1839.5" >i..</text>
</g>
<g >
<title>__netif_receive_skb_list_core (9,896,820 samples, 0.05%)</title><rect x="597.4" y="1685" width="0.5" height="15.0" fill="rgb(227,120,18)" rx="2" ry="2" />
<text x="600.39" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (9,109,789 samples, 0.04%)</title><rect x="671.4" y="1669" width="0.5" height="15.0" fill="rgb(252,138,10)" rx="2" ry="2" />
<text x="674.36" y="1679.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,918,274 samples, 0.01%)</title><rect x="47.0" y="2037" width="0.1" height="15.0" fill="rgb(233,23,23)" rx="2" ry="2" />
<text x="49.98" y="2047.5" ></text>
</g>
<g >
<title>nf_checksum (42,829,286 samples, 0.20%)</title><rect x="817.2" y="1749" width="2.4" height="15.0" fill="rgb(237,58,40)" rx="2" ry="2" />
<text x="820.24" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (5,647,532 samples, 0.03%)</title><rect x="441.3" y="1781" width="0.3" height="15.0" fill="rgb(224,158,17)" rx="2" ry="2" />
<text x="444.27" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (2,654,612 samples, 0.01%)</title><rect x="514.9" y="1813" width="0.1" height="15.0" fill="rgb(207,97,47)" rx="2" ry="2" />
<text x="517.88" y="1823.5" ></text>
</g>
<g >
<title>ip_rcv (6,072,061 samples, 0.03%)</title><rect x="827.3" y="1861" width="0.3" height="15.0" fill="rgb(250,217,52)" rx="2" ry="2" />
<text x="830.28" y="1871.5" ></text>
</g>
<g >
<title>nf_conntrack_handle_packet (3,047,422 samples, 0.01%)</title><rect x="494.3" y="1781" width="0.2" height="15.0" fill="rgb(244,74,30)" rx="2" ry="2" />
<text x="497.34" y="1791.5" ></text>
</g>
<g >
<title>fib_rules_lookup (124,025,824 samples, 0.58%)</title><rect x="785.6" y="1749" width="6.8" height="15.0" fill="rgb(213,159,14)" rx="2" ry="2" />
<text x="788.55" y="1759.5" ></text>
</g>
<g >
<title>__check_object_size (56,668,486 samples, 0.26%)</title><rect x="590.0" y="1845" width="3.1" height="15.0" fill="rgb(208,163,28)" rx="2" ry="2" />
<text x="593.00" y="1855.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (2,306,398 samples, 0.01%)</title><rect x="845.7" y="1973" width="0.1" height="15.0" fill="rgb(244,118,0)" rx="2" ry="2" />
<text x="848.68" y="1983.5" ></text>
</g>
<g >
<title>rtl8169_poll (5,010,868 samples, 0.02%)</title><rect x="977.7" y="1893" width="0.3" height="15.0" fill="rgb(217,175,7)" rx="2" ry="2" />
<text x="980.73" y="1903.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (8,476,174 samples, 0.04%)</title><rect x="1000.9" y="1781" width="0.5" height="15.0" fill="rgb(218,163,32)" rx="2" ry="2" />
<text x="1003.89" y="1791.5" ></text>
</g>
<g >
<title>__napi_poll (1,911,202 samples, 0.01%)</title><rect x="943.3" y="1509" width="0.1" height="15.0" fill="rgb(224,116,38)" rx="2" ry="2" />
<text x="946.27" y="1519.5" ></text>
</g>
<g >
<title>__x64_sys_poll (3,212,261 samples, 0.02%)</title><rect x="44.4" y="1989" width="0.2" height="15.0" fill="rgb(238,218,27)" rx="2" ry="2" />
<text x="47.45" y="1999.5" ></text>
</g>
<g >
<title>ext4_file_write_iter (72,171,478 samples, 0.34%)</title><rect x="72.3" y="1829" width="4.0" height="15.0" fill="rgb(246,112,21)" rx="2" ry="2" />
<text x="75.29" y="1839.5" ></text>
</g>
<g >
<title>net_rx_action (2,900,129 samples, 0.01%)</title><rect x="401.5" y="229" width="0.2" height="15.0" fill="rgb(218,17,12)" rx="2" ry="2" />
<text x="404.52" y="239.5" ></text>
</g>
<g >
<title>__x64_sys_poll (4,695,598 samples, 0.02%)</title><rect x="71.8" y="1941" width="0.2" height="15.0" fill="rgb(239,49,12)" rx="2" ry="2" />
<text x="74.76" y="1951.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (1,934,635 samples, 0.01%)</title><rect x="68.0" y="2021" width="0.1" height="15.0" fill="rgb(231,19,29)" rx="2" ry="2" />
<text x="70.99" y="2031.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (2,102,506 samples, 0.01%)</title><rect x="56.5" y="1861" width="0.1" height="15.0" fill="rgb(229,123,24)" rx="2" ry="2" />
<text x="59.46" y="1871.5" ></text>
</g>
<g >
<title>__netlink_request (8,477,734 samples, 0.04%)</title><rect x="47.9" y="2037" width="0.4" height="15.0" fill="rgb(244,157,17)" rx="2" ry="2" />
<text x="50.88" y="2047.5" ></text>
</g>
<g >
<title>common_interrupt (2,326,584 samples, 0.01%)</title><rect x="969.6" y="1829" width="0.1" height="15.0" fill="rgb(245,82,8)" rx="2" ry="2" />
<text x="972.59" y="1839.5" ></text>
</g>
<g >
<title>vsnprintf (3,847,186 samples, 0.02%)</title><rect x="868.0" y="1861" width="0.2" height="15.0" fill="rgb(249,178,35)" rx="2" ry="2" />
<text x="871.00" y="1871.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (3,106,873 samples, 0.01%)</title><rect x="495.2" y="1813" width="0.2" height="15.0" fill="rgb(229,116,22)" rx="2" ry="2" />
<text x="498.23" y="1823.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (3,607,504 samples, 0.02%)</title><rect x="681.2" y="1749" width="0.2" height="15.0" fill="rgb(222,115,25)" rx="2" ry="2" />
<text x="684.20" y="1759.5" ></text>
</g>
<g >
<title>__ip6_finish_output (63,394,155 samples, 0.30%)</title><rect x="663.5" y="1669" width="3.5" height="15.0" fill="rgb(234,14,50)" rx="2" ry="2" />
<text x="666.51" y="1679.5" ></text>
</g>
<g >
<title>lzma_match (6,186,981 samples, 0.03%)</title><rect x="935.6" y="1573" width="0.4" height="15.0" fill="rgb(227,225,42)" rx="2" ry="2" />
<text x="938.64" y="1583.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_insert (1,881,056 samples, 0.01%)</title><rect x="25.6" y="1877" width="0.1" height="15.0" fill="rgb(253,48,53)" rx="2" ry="2" />
<text x="28.61" y="1887.5" ></text>
</g>
<g >
<title>nf_hook_slow (3,725,332 samples, 0.02%)</title><rect x="1100.7" y="1685" width="0.2" height="15.0" fill="rgb(211,118,17)" rx="2" ry="2" />
<text x="1103.70" y="1695.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,137,121,184 samples, 5.31%)</title><rect x="997.0" y="1909" width="62.7" height="15.0" fill="rgb(212,99,6)" rx="2" ry="2" />
<text x="1000.04" y="1919.5" >irq_ex..</text>
</g>
<g >
<title>sch_direct_xmit (78,329,175 samples, 0.37%)</title><rect x="520.4" y="1925" width="4.3" height="15.0" fill="rgb(238,47,53)" rx="2" ry="2" />
<text x="523.38" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (110,189,063 samples, 0.51%)</title><rect x="862.7" y="2053" width="6.1" height="15.0" fill="rgb(239,205,2)" rx="2" ry="2" />
<text x="865.68" y="2063.5" ></text>
</g>
<g >
<title>mmc_blk_mq_issue_rq (7,010,091 samples, 0.03%)</title><rect x="63.8" y="1861" width="0.3" height="15.0" fill="rgb(211,198,2)" rx="2" ry="2" />
<text x="66.76" y="1871.5" ></text>
</g>
<g >
<title>neigh_hh_output (3,113,895 samples, 0.01%)</title><rect x="57.5" y="1717" width="0.2" height="15.0" fill="rgb(214,94,14)" rx="2" ry="2" />
<text x="60.51" y="1727.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,886,621 samples, 0.01%)</title><rect x="942.2" y="2037" width="0.1" height="15.0" fill="rgb(240,144,16)" rx="2" ry="2" />
<text x="945.20" y="2047.5" ></text>
</g>
<g >
<title>exc_page_fault (15,390,128 samples, 0.07%)</title><rect x="942.8" y="2005" width="0.9" height="15.0" fill="rgb(216,39,18)" rx="2" ry="2" />
<text x="945.83" y="2015.5" ></text>
</g>
<g >
<title>getname_flags (5,410,566 samples, 0.03%)</title><rect x="970.1" y="1941" width="0.3" height="15.0" fill="rgb(240,22,15)" rx="2" ry="2" />
<text x="973.06" y="1951.5" ></text>
</g>
<g >
<title>do_open (3,076,990 samples, 0.01%)</title><rect x="953.3" y="1909" width="0.2" height="15.0" fill="rgb(207,217,9)" rx="2" ry="2" />
<text x="956.34" y="1919.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (4,759,577 samples, 0.02%)</title><rect x="501.8" y="1797" width="0.3" height="15.0" fill="rgb(240,115,12)" rx="2" ry="2" />
<text x="504.85" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,082,603 samples, 0.01%)</title><rect x="858.5" y="2037" width="0.1" height="15.0" fill="rgb(254,154,16)" rx="2" ry="2" />
<text x="861.47" y="2047.5" ></text>
</g>
<g >
<title>rcu_gp_kthread (11,507,796 samples, 0.05%)</title><rect x="840.2" y="2021" width="0.6" height="15.0" fill="rgb(227,9,26)" rx="2" ry="2" />
<text x="843.16" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,894,367 samples, 0.01%)</title><rect x="887.1" y="1877" width="0.1" height="15.0" fill="rgb(248,55,0)" rx="2" ry="2" />
<text x="890.09" y="1887.5" ></text>
</g>
<g >
<title>do_csum (2,244,676 samples, 0.01%)</title><rect x="549.9" y="1749" width="0.1" height="15.0" fill="rgb(215,46,12)" rx="2" ry="2" />
<text x="552.90" y="1759.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,896,120 samples, 0.01%)</title><rect x="613.9" y="1877" width="0.1" height="15.0" fill="rgb(243,106,36)" rx="2" ry="2" />
<text x="616.88" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (74,975,600 samples, 0.35%)</title><rect x="72.2" y="1925" width="4.1" height="15.0" fill="rgb(215,205,18)" rx="2" ry="2" />
<text x="75.15" y="1935.5" ></text>
</g>
<g >
<title>ipv6_rcv (2,267,155 samples, 0.01%)</title><rect x="571.2" y="1781" width="0.1" height="15.0" fill="rgb(230,202,30)" rx="2" ry="2" />
<text x="574.16" y="1791.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (28,479,537 samples, 0.13%)</title><rect x="540.9" y="1781" width="1.6" height="15.0" fill="rgb(225,226,31)" rx="2" ry="2" />
<text x="543.94" y="1791.5" ></text>
</g>
<g >
<title>pick_next_task (4,205,584 samples, 0.02%)</title><rect x="585.1" y="1877" width="0.3" height="15.0" fill="rgb(249,22,50)" rx="2" ry="2" />
<text x="588.13" y="1887.5" ></text>
</g>
<g >
<title>ksys_write (74,975,600 samples, 0.35%)</title><rect x="72.2" y="1877" width="4.1" height="15.0" fill="rgb(212,214,33)" rx="2" ry="2" />
<text x="75.15" y="1887.5" ></text>
</g>
<g >
<title>task_sched_runtime (2,641,072 samples, 0.01%)</title><rect x="430.5" y="1877" width="0.2" height="15.0" fill="rgb(240,99,38)" rx="2" ry="2" />
<text x="433.54" y="1887.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,869,589 samples, 0.01%)</title><rect x="1187.0" y="2021" width="0.1" height="15.0" fill="rgb(253,170,21)" rx="2" ry="2" />
<text x="1190.01" y="2031.5" ></text>
</g>
<g >
<title>dev_queue_xmit (35,743,344 samples, 0.17%)</title><rect x="732.9" y="1509" width="1.9" height="15.0" fill="rgb(206,154,40)" rx="2" ry="2" />
<text x="735.87" y="1519.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,745,581 samples, 0.03%)</title><rect x="499.1" y="1845" width="0.3" height="15.0" fill="rgb(249,90,16)" rx="2" ry="2" />
<text x="502.10" y="1855.5" ></text>
</g>
<g >
<title>__napi_poll (8,304,474 samples, 0.04%)</title><rect x="621.8" y="1829" width="0.4" height="15.0" fill="rgb(242,24,51)" rx="2" ry="2" />
<text x="624.78" y="1839.5" ></text>
</g>
<g >
<title>__napi_poll (720,947,946 samples, 3.37%)</title><rect x="464.9" y="1941" width="39.7" height="15.0" fill="rgb(205,51,30)" rx="2" ry="2" />
<text x="467.88" y="1951.5" >__n..</text>
</g>
<g >
<title>seccomp_attach_filter (8,749,001 samples, 0.04%)</title><rect x="865.7" y="1941" width="0.5" height="15.0" fill="rgb(248,220,27)" rx="2" ry="2" />
<text x="868.75" y="1951.5" ></text>
</g>
<g >
<title>do_open_execat (2,954,309 samples, 0.01%)</title><rect x="34.9" y="1861" width="0.2" height="15.0" fill="rgb(219,62,24)" rx="2" ry="2" />
<text x="37.90" y="1871.5" ></text>
</g>
<g >
<title>irqentry_exit (3,050,906 samples, 0.01%)</title><rect x="421.9" y="1957" width="0.1" height="15.0" fill="rgb(251,194,43)" rx="2" ry="2" />
<text x="424.85" y="1967.5" ></text>
</g>
<g >
<title>nf_hook_slow (21,643,180 samples, 0.10%)</title><rect x="652.6" y="1733" width="1.2" height="15.0" fill="rgb(251,93,23)" rx="2" ry="2" />
<text x="655.59" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (32,548,423 samples, 0.15%)</title><rect x="866.6" y="2021" width="1.8" height="15.0" fill="rgb(252,18,27)" rx="2" ry="2" />
<text x="869.58" y="2031.5" ></text>
</g>
<g >
<title>jbd2_journal_stop (2,584,443 samples, 0.01%)</title><rect x="75.1" y="1701" width="0.1" height="15.0" fill="rgb(236,39,12)" rx="2" ry="2" />
<text x="78.10" y="1711.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,314,303 samples, 0.01%)</title><rect x="66.9" y="1989" width="0.2" height="15.0" fill="rgb(251,193,22)" rx="2" ry="2" />
<text x="69.93" y="1999.5" ></text>
</g>
<g >
<title>filename_lookup (21,266,417 samples, 0.10%)</title><rect x="968.9" y="1941" width="1.2" height="15.0" fill="rgb(234,101,12)" rx="2" ry="2" />
<text x="971.88" y="1951.5" ></text>
</g>
<g >
<title>tick_program_event (4,192,529 samples, 0.02%)</title><rect x="555.9" y="1973" width="0.2" height="15.0" fill="rgb(217,114,52)" rx="2" ry="2" />
<text x="558.91" y="1983.5" ></text>
</g>
<g >
<title>do_fault (1,918,822 samples, 0.01%)</title><rect x="1186.2" y="1925" width="0.1" height="15.0" fill="rgb(227,16,44)" rx="2" ry="2" />
<text x="1189.23" y="1935.5" ></text>
</g>
<g >
<title>read_pages (498,818,771 samples, 2.33%)</title><rect x="906.2" y="1813" width="27.5" height="15.0" fill="rgb(230,177,7)" rx="2" ry="2" />
<text x="909.23" y="1823.5" >r..</text>
</g>
<g >
<title>sch_direct_xmit (8,280,955 samples, 0.04%)</title><rect x="733.6" y="1445" width="0.5" height="15.0" fill="rgb(216,80,19)" rx="2" ry="2" />
<text x="736.60" y="1455.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (4,187,618 samples, 0.02%)</title><rect x="593.9" y="1781" width="0.2" height="15.0" fill="rgb(226,88,25)" rx="2" ry="2" />
<text x="596.88" y="1791.5" ></text>
</g>
<g >
<title>inode_permission (1,934,917 samples, 0.01%)</title><rect x="859.3" y="1893" width="0.1" height="15.0" fill="rgb(245,215,22)" rx="2" ry="2" />
<text x="862.26" y="1903.5" ></text>
</g>
<g >
<title>dup_mmap (6,959,086 samples, 0.03%)</title><rect x="963.0" y="1925" width="0.4" height="15.0" fill="rgb(217,151,30)" rx="2" ry="2" />
<text x="966.01" y="1935.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (2,266,294 samples, 0.01%)</title><rect x="1064.0" y="1733" width="0.2" height="15.0" fill="rgb(207,20,26)" rx="2" ry="2" />
<text x="1067.03" y="1743.5" ></text>
</g>
<g >
<title>kfree_skbmem (7,230,022 samples, 0.03%)</title><rect x="693.8" y="1717" width="0.4" height="15.0" fill="rgb(214,106,26)" rx="2" ry="2" />
<text x="696.76" y="1727.5" ></text>
</g>
<g >
<title>bprm_execve.part.0 (1,923,221 samples, 0.01%)</title><rect x="858.5" y="1957" width="0.1" height="15.0" fill="rgb(210,68,53)" rx="2" ry="2" />
<text x="861.49" y="1967.5" ></text>
</g>
<g >
<title>[snapctl] (34,430,280 samples, 0.16%)</title><rect x="945.1" y="1957" width="1.9" height="15.0" fill="rgb(205,20,25)" rx="2" ry="2" />
<text x="948.15" y="1967.5" ></text>
</g>
<g >
<title>mmc_mq_queue_rq (12,213,184 samples, 0.06%)</title><rect x="63.7" y="1877" width="0.7" height="15.0" fill="rgb(230,135,54)" rx="2" ry="2" />
<text x="66.75" y="1887.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (3,194,362 samples, 0.01%)</title><rect x="890.5" y="1701" width="0.2" height="15.0" fill="rgb(229,31,32)" rx="2" ry="2" />
<text x="893.52" y="1711.5" ></text>
</g>
<g >
<title>get_page_from_freelist (7,407,665 samples, 0.03%)</title><rect x="73.7" y="1685" width="0.4" height="15.0" fill="rgb(215,21,32)" rx="2" ry="2" />
<text x="76.67" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (246,255,150 samples, 1.15%)</title><rect x="808.6" y="1781" width="13.5" height="15.0" fill="rgb(212,209,54)" rx="2" ry="2" />
<text x="811.57" y="1791.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,378,092 samples, 0.03%)</title><rect x="871.3" y="2037" width="0.3" height="15.0" fill="rgb(212,115,37)" rx="2" ry="2" />
<text x="874.34" y="2047.5" ></text>
</g>
<g >
<title>rcu_read_unlock_strict (3,668,971 samples, 0.02%)</title><rect x="605.7" y="1941" width="0.2" height="15.0" fill="rgb(243,96,40)" rx="2" ry="2" />
<text x="608.69" y="1951.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (18,271,762 samples, 0.09%)</title><rect x="407.9" y="1797" width="1.0" height="15.0" fill="rgb(223,38,31)" rx="2" ry="2" />
<text x="410.93" y="1807.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (6,439,528 samples, 0.03%)</title><rect x="622.4" y="1861" width="0.3" height="15.0" fill="rgb(234,172,9)" rx="2" ry="2" />
<text x="625.37" y="1871.5" ></text>
</g>
<g >
<title>seccomp_cache_prepare_bitmap.constprop.0.isra.0 (8,749,001 samples, 0.04%)</title><rect x="865.7" y="1925" width="0.5" height="15.0" fill="rgb(239,80,7)" rx="2" ry="2" />
<text x="868.75" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (166,211,774 samples, 0.78%)</title><rect x="393.3" y="1765" width="9.2" height="15.0" fill="rgb(214,6,26)" rx="2" ry="2" />
<text x="396.34" y="1775.5" ></text>
</g>
<g >
<title>ip6_protocol_deliver_rcu (15,359,678 samples, 0.07%)</title><rect x="1135.8" y="1669" width="0.8" height="15.0" fill="rgb(242,229,17)" rx="2" ry="2" />
<text x="1138.76" y="1679.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (3,608,672 samples, 0.02%)</title><rect x="501.9" y="1717" width="0.2" height="15.0" fill="rgb(227,217,4)" rx="2" ry="2" />
<text x="504.87" y="1727.5" ></text>
</g>
<g >
<title>[snapctl] (35,197,333 samples, 0.16%)</title><rect x="945.1" y="1973" width="2.0" height="15.0" fill="rgb(226,226,2)" rx="2" ry="2" />
<text x="948.15" y="1983.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (3,842,774 samples, 0.02%)</title><rect x="67.5" y="2005" width="0.2" height="15.0" fill="rgb(233,203,41)" rx="2" ry="2" />
<text x="70.48" y="2015.5" ></text>
</g>
<g >
<title>security_file_permission (10,845,802 samples, 0.05%)</title><rect x="832.1" y="1957" width="0.6" height="15.0" fill="rgb(246,215,45)" rx="2" ry="2" />
<text x="835.05" y="1967.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (7,218,531 samples, 0.03%)</title><rect x="435.2" y="1701" width="0.4" height="15.0" fill="rgb(225,75,53)" rx="2" ry="2" />
<text x="438.23" y="1711.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (131,009,675 samples, 0.61%)</title><rect x="540.3" y="1877" width="7.2" height="15.0" fill="rgb(230,122,32)" rx="2" ry="2" />
<text x="543.27" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (11,361,150 samples, 0.05%)</title><rect x="430.2" y="1973" width="0.6" height="15.0" fill="rgb(208,5,48)" rx="2" ry="2" />
<text x="433.20" y="1983.5" ></text>
</g>
<g >
<title>xz_dec_lzma2_run (20,378,356 samples, 0.10%)</title><rect x="955.6" y="1669" width="1.2" height="15.0" fill="rgb(246,171,34)" rx="2" ry="2" />
<text x="958.64" y="1679.5" ></text>
</g>
<g >
<title>aa_path_perm (4,237,260 samples, 0.02%)</title><rect x="843.2" y="1845" width="0.2" height="15.0" fill="rgb(215,126,16)" rx="2" ry="2" />
<text x="846.22" y="1855.5" ></text>
</g>
<g >
<title>unmap_page_range (2,690,340 samples, 0.01%)</title><rect x="960.3" y="1861" width="0.2" height="15.0" fill="rgb(226,172,54)" rx="2" ry="2" />
<text x="963.32" y="1871.5" ></text>
</g>
<g >
<title>__common_interrupt (2,496,904 samples, 0.01%)</title><rect x="1149.9" y="1781" width="0.1" height="15.0" fill="rgb(237,93,18)" rx="2" ry="2" />
<text x="1152.87" y="1791.5" ></text>
</g>
<g >
<title>strncmp (3,261,699 samples, 0.02%)</title><rect x="941.0" y="2005" width="0.2" height="15.0" fill="rgb(249,117,12)" rx="2" ry="2" />
<text x="944.03" y="2015.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1,863,611 samples, 0.01%)</title><rect x="520.1" y="1877" width="0.1" height="15.0" fill="rgb(235,105,49)" rx="2" ry="2" />
<text x="523.09" y="1887.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,785,707 samples, 0.02%)</title><rect x="636.3" y="1829" width="0.2" height="15.0" fill="rgb(244,49,10)" rx="2" ry="2" />
<text x="639.26" y="1839.5" ></text>
</g>
<g >
<title>ip_finish_output2 (3,778,045 samples, 0.02%)</title><rect x="1169.5" y="1637" width="0.2" height="15.0" fill="rgb(241,25,13)" rx="2" ry="2" />
<text x="1172.50" y="1647.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,828,357 samples, 0.01%)</title><rect x="18.4" y="2021" width="0.1" height="15.0" fill="rgb(252,158,47)" rx="2" ry="2" />
<text x="21.42" y="2031.5" ></text>
</g>
<g >
<title>revert_creds (5,809,938 samples, 0.03%)</title><rect x="968.6" y="1957" width="0.3" height="15.0" fill="rgb(244,6,14)" rx="2" ry="2" />
<text x="971.56" y="1967.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (34,973,277 samples, 0.16%)</title><rect x="953.0" y="2005" width="2.0" height="15.0" fill="rgb(245,202,11)" rx="2" ry="2" />
<text x="956.04" y="2015.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,930,910 samples, 0.01%)</title><rect x="930.7" y="1573" width="0.1" height="15.0" fill="rgb(229,24,54)" rx="2" ry="2" />
<text x="933.70" y="1583.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,263,811 samples, 0.01%)</title><rect x="602.5" y="1925" width="0.1" height="15.0" fill="rgb(223,74,22)" rx="2" ry="2" />
<text x="605.46" y="1935.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (2,293,081 samples, 0.01%)</title><rect x="47.3" y="2037" width="0.1" height="15.0" fill="rgb(248,81,26)" rx="2" ry="2" />
<text x="50.25" y="2047.5" ></text>
</g>
<g >
<title>__common_interrupt (2,658,281 samples, 0.01%)</title><rect x="700.5" y="1797" width="0.1" height="15.0" fill="rgb(237,102,27)" rx="2" ry="2" />
<text x="703.50" y="1807.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (13,970,674 samples, 0.07%)</title><rect x="834.7" y="1941" width="0.8" height="15.0" fill="rgb(226,73,5)" rx="2" ry="2" />
<text x="837.75" y="1951.5" ></text>
</g>
<g >
<title>strncpy (2,214,563 samples, 0.01%)</title><rect x="543.1" y="1781" width="0.1" height="15.0" fill="rgb(212,52,7)" rx="2" ry="2" />
<text x="546.08" y="1791.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,886,621 samples, 0.01%)</title><rect x="942.2" y="2021" width="0.1" height="15.0" fill="rgb(228,170,41)" rx="2" ry="2" />
<text x="945.20" y="2031.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,962,653 samples, 0.01%)</title><rect x="896.9" y="1909" width="0.1" height="15.0" fill="rgb(232,162,11)" rx="2" ry="2" />
<text x="899.87" y="1919.5" ></text>
</g>
<g >
<title>_dl_higher_prime_number (3,447,470 samples, 0.02%)</title><rect x="1186.6" y="2053" width="0.1" height="15.0" fill="rgb(206,159,13)" rx="2" ry="2" />
<text x="1189.55" y="2063.5" ></text>
</g>
<g >
<title>nf_ip_checksum (40,918,186 samples, 0.19%)</title><rect x="817.3" y="1733" width="2.3" height="15.0" fill="rgb(206,44,38)" rx="2" ry="2" />
<text x="820.34" y="1743.5" ></text>
</g>
<g >
<title>do_syscall_64 (47,168,564 samples, 0.22%)</title><rect x="968.3" y="2005" width="2.6" height="15.0" fill="rgb(215,18,31)" rx="2" ry="2" />
<text x="971.31" y="2015.5" ></text>
</g>
<g >
<title>cleanup_mnt (2,310,640 samples, 0.01%)</title><rect x="973.5" y="1941" width="0.1" height="15.0" fill="rgb(252,1,19)" rx="2" ry="2" />
<text x="976.48" y="1951.5" ></text>
</g>
<g >
<title>load_elf_binary (4,880,461 samples, 0.02%)</title><rect x="34.8" y="1893" width="0.3" height="15.0" fill="rgb(224,102,4)" rx="2" ry="2" />
<text x="37.79" y="1903.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="677" width="0.5" height="15.0" fill="rgb(233,121,51)" rx="2" ry="2" />
<text x="18.42" y="687.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="501" width="0.5" height="15.0" fill="rgb(238,104,38)" rx="2" ry="2" />
<text x="18.42" y="511.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="901" width="0.2" height="15.0" fill="rgb(253,192,19)" rx="2" ry="2" />
<text x="897.72" y="911.5" ></text>
</g>
<g >
<title>rcu_sched (11,897,627 samples, 0.06%)</title><rect x="840.1" y="2069" width="0.7" height="15.0" fill="rgb(248,36,54)" rx="2" ry="2" />
<text x="843.14" y="2079.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (20,741,344 samples, 0.10%)</title><rect x="743.7" y="1461" width="1.2" height="15.0" fill="rgb(243,140,46)" rx="2" ry="2" />
<text x="746.72" y="1471.5" ></text>
</g>
<g >
<title>do_filp_open (1,921,953 samples, 0.01%)</title><rect x="1188.8" y="1941" width="0.1" height="15.0" fill="rgb(234,38,53)" rx="2" ry="2" />
<text x="1191.81" y="1951.5" ></text>
</g>
<g >
<title>__netif_receive_skb (2,352,464,262 samples, 10.99%)</title><rect x="698.0" y="1877" width="129.6" height="15.0" fill="rgb(229,96,38)" rx="2" ry="2" />
<text x="700.95" y="1887.5" >__netif_receive_..</text>
</g>
<g >
<title>tty_set_termios (1,856,547 samples, 0.01%)</title><rect x="861.3" y="1909" width="0.1" height="15.0" fill="rgb(244,126,35)" rx="2" ry="2" />
<text x="864.29" y="1919.5" ></text>
</g>
<g >
<title>ip_rcv (112,925,716 samples, 0.53%)</title><rect x="1121.8" y="1733" width="6.2" height="15.0" fill="rgb(246,177,38)" rx="2" ry="2" />
<text x="1124.79" y="1743.5" ></text>
</g>
<g >
<title>__schedule (2,623,276 samples, 0.01%)</title><rect x="507.4" y="1909" width="0.2" height="15.0" fill="rgb(247,145,8)" rx="2" ry="2" />
<text x="510.42" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (10,029,063 samples, 0.05%)</title><rect x="733.0" y="1429" width="0.6" height="15.0" fill="rgb(207,142,21)" rx="2" ry="2" />
<text x="736.05" y="1439.5" ></text>
</g>
<g >
<title>net_rx_action (8,604,029 samples, 0.04%)</title><rect x="1112.9" y="1877" width="0.5" height="15.0" fill="rgb(254,14,43)" rx="2" ry="2" />
<text x="1115.92" y="1887.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,376,702 samples, 0.03%)</title><rect x="23.8" y="2005" width="0.2" height="15.0" fill="rgb(223,173,4)" rx="2" ry="2" />
<text x="26.75" y="2015.5" ></text>
</g>
<g >
<title>exc_page_fault (6,169,807 samples, 0.03%)</title><rect x="959.2" y="2021" width="0.4" height="15.0" fill="rgb(206,12,39)" rx="2" ry="2" />
<text x="962.23" y="2031.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (2,241,052 samples, 0.01%)</title><rect x="37.0" y="1941" width="0.1" height="15.0" fill="rgb(221,8,30)" rx="2" ry="2" />
<text x="40.02" y="1951.5" ></text>
</g>
<g >
<title>kthread (3,049,696 samples, 0.01%)</title><rect x="64.6" y="2037" width="0.1" height="15.0" fill="rgb(225,43,37)" rx="2" ry="2" />
<text x="67.56" y="2047.5" ></text>
</g>
<g >
<title>xdg-user-dirs-u (22,732,457 samples, 0.11%)</title><rect x="1188.7" y="2069" width="1.3" height="15.0" fill="rgb(238,83,18)" rx="2" ry="2" />
<text x="1191.75" y="2079.5" ></text>
</g>
<g >
<title>tun_sock_write_space (5,155,202 samples, 0.02%)</title><rect x="780.2" y="1797" width="0.3" height="15.0" fill="rgb(211,169,36)" rx="2" ry="2" />
<text x="783.19" y="1807.5" ></text>
</g>
<g >
<title>do_page_cache_ra (2,657,730 samples, 0.01%)</title><rect x="965.8" y="1845" width="0.2" height="15.0" fill="rgb(250,192,27)" rx="2" ry="2" />
<text x="968.84" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,694,744 samples, 0.01%)</title><rect x="858.5" y="2021" width="0.1" height="15.0" fill="rgb(248,54,26)" rx="2" ry="2" />
<text x="861.49" y="2031.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,474,143 samples, 0.02%)</title><rect x="22.0" y="1941" width="0.2" height="15.0" fill="rgb(230,47,44)" rx="2" ry="2" />
<text x="25.03" y="1951.5" ></text>
</g>
<g >
<title>rtl_rx (3,864,311 samples, 0.02%)</title><rect x="850.7" y="1909" width="0.3" height="15.0" fill="rgb(229,35,47)" rx="2" ry="2" />
<text x="853.75" y="1919.5" ></text>
</g>
<g >
<title>memset_erms (41,086,550 samples, 0.19%)</title><rect x="637.4" y="1845" width="2.3" height="15.0" fill="rgb(214,199,46)" rx="2" ry="2" />
<text x="640.41" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1173" width="8.8" height="15.0" fill="rgb(224,197,3)" rx="2" ry="2" />
<text x="396.46" y="1183.5" ></text>
</g>
<g >
<title>put_cpu_partial (2,292,090 samples, 0.01%)</title><rect x="503.9" y="1813" width="0.1" height="15.0" fill="rgb(213,54,39)" rx="2" ry="2" />
<text x="506.89" y="1823.5" ></text>
</g>
<g >
<title>[snapd] (7,362,342 samples, 0.03%)</title><rect x="974.7" y="1653" width="0.4" height="15.0" fill="rgb(228,217,34)" rx="2" ry="2" />
<text x="977.73" y="1663.5" ></text>
</g>
<g >
<title>exc_page_fault (2,625,404 samples, 0.01%)</title><rect x="884.4" y="181" width="0.2" height="15.0" fill="rgb(251,2,5)" rx="2" ry="2" />
<text x="887.42" y="191.5" ></text>
</g>
<g >
<title>mmput (2,308,705 samples, 0.01%)</title><rect x="19.3" y="1957" width="0.2" height="15.0" fill="rgb(205,79,3)" rx="2" ry="2" />
<text x="22.34" y="1967.5" ></text>
</g>
<g >
<title>ip6_forward (2,006,332 samples, 0.01%)</title><rect x="1113.0" y="1717" width="0.1" height="15.0" fill="rgb(228,146,8)" rx="2" ry="2" />
<text x="1115.97" y="1727.5" ></text>
</g>
<g >
<title>[snap] (134,459,381 samples, 0.63%)</title><rect x="880.5" y="1941" width="7.5" height="15.0" fill="rgb(233,149,29)" rx="2" ry="2" />
<text x="883.55" y="1951.5" ></text>
</g>
<g >
<title>__ip6_finish_output (2,950,060 samples, 0.01%)</title><rect x="56.1" y="1765" width="0.1" height="15.0" fill="rgb(230,115,13)" rx="2" ry="2" />
<text x="59.06" y="1775.5" ></text>
</g>
<g >
<title>tcp6_gro_receive (3,777,518 samples, 0.02%)</title><rect x="550.1" y="1861" width="0.2" height="15.0" fill="rgb(220,215,33)" rx="2" ry="2" />
<text x="553.08" y="1871.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (1,820,684 samples, 0.01%)</title><rect x="1102.9" y="1813" width="0.1" height="15.0" fill="rgb(225,175,12)" rx="2" ry="2" />
<text x="1105.86" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,158,372 samples, 0.01%)</title><rect x="1173.2" y="2037" width="0.1" height="15.0" fill="rgb(247,218,30)" rx="2" ry="2" />
<text x="1176.21" y="2047.5" ></text>
</g>
<g >
<title>net_rx_action (2,326,520 samples, 0.01%)</title><rect x="853.3" y="1813" width="0.1" height="15.0" fill="rgb(212,10,34)" rx="2" ry="2" />
<text x="856.28" y="1823.5" ></text>
</g>
<g >
<title>__res_context_search (2,539,361 samples, 0.01%)</title><rect x="1173.2" y="2053" width="0.2" height="15.0" fill="rgb(219,194,54)" rx="2" ry="2" />
<text x="1176.21" y="2063.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (5,606,488 samples, 0.03%)</title><rect x="1100.3" y="1573" width="0.3" height="15.0" fill="rgb(213,37,36)" rx="2" ry="2" />
<text x="1103.28" y="1583.5" ></text>
</g>
<g >
<title>_nss_dns_gethostbyaddr2_r (7,222,450 samples, 0.03%)</title><rect x="941.8" y="2053" width="0.4" height="15.0" fill="rgb(242,4,7)" rx="2" ry="2" />
<text x="944.76" y="2063.5" ></text>
</g>
<g >
<title>ip_finish_output2 (39,564,395 samples, 0.18%)</title><rect x="650.1" y="1669" width="2.2" height="15.0" fill="rgb(225,125,37)" rx="2" ry="2" />
<text x="653.10" y="1679.5" ></text>
</g>
<g >
<title>lapic_next_deadline (1,892,712 samples, 0.01%)</title><rect x="511.1" y="1925" width="0.1" height="15.0" fill="rgb(253,195,45)" rx="2" ry="2" />
<text x="514.10" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (19,224,822 samples, 0.09%)</title><rect x="546.1" y="1829" width="1.0" height="15.0" fill="rgb(246,60,4)" rx="2" ry="2" />
<text x="549.08" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (2,494,474 samples, 0.01%)</title><rect x="1100.7" y="1653" width="0.2" height="15.0" fill="rgb(251,57,5)" rx="2" ry="2" />
<text x="1103.72" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (4,567,996 samples, 0.02%)</title><rect x="1044.7" y="1525" width="0.3" height="15.0" fill="rgb(246,170,4)" rx="2" ry="2" />
<text x="1047.75" y="1535.5" ></text>
</g>
<g >
<title>nf_conntrack_handle_packet (1,823,030 samples, 0.01%)</title><rect x="1142.3" y="1637" width="0.1" height="15.0" fill="rgb(221,41,51)" rx="2" ry="2" />
<text x="1145.34" y="1647.5" ></text>
</g>
<g >
<title>common_interrupt (2,264,055 samples, 0.01%)</title><rect x="30.8" y="2005" width="0.1" height="15.0" fill="rgb(217,47,8)" rx="2" ry="2" />
<text x="33.75" y="2015.5" ></text>
</g>
<g >
<title>skb_set_owner_w (13,870,479 samples, 0.06%)</title><rect x="646.0" y="1893" width="0.8" height="15.0" fill="rgb(223,193,22)" rx="2" ry="2" />
<text x="649.04" y="1903.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (10,130,486 samples, 0.05%)</title><rect x="40.8" y="1877" width="0.6" height="15.0" fill="rgb(232,191,6)" rx="2" ry="2" />
<text x="43.82" y="1887.5" ></text>
</g>
<g >
<title>exit_mm (14,063,859 samples, 0.07%)</title><rect x="856.9" y="1973" width="0.7" height="15.0" fill="rgb(229,222,18)" rx="2" ry="2" />
<text x="859.87" y="1983.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (1,930,934 samples, 0.01%)</title><rect x="22.5" y="2021" width="0.1" height="15.0" fill="rgb(251,50,54)" rx="2" ry="2" />
<text x="25.54" y="2031.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,896,738 samples, 0.01%)</title><rect x="400.0" y="149" width="0.1" height="15.0" fill="rgb(231,51,49)" rx="2" ry="2" />
<text x="403.04" y="159.5" ></text>
</g>
<g >
<title>[snap] (114,866,448 samples, 0.54%)</title><rect x="891.3" y="1973" width="6.3" height="15.0" fill="rgb(253,17,48)" rx="2" ry="2" />
<text x="894.32" y="1983.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (10,242,282 samples, 0.05%)</title><rect x="439.5" y="1669" width="0.5" height="15.0" fill="rgb(209,38,53)" rx="2" ry="2" />
<text x="442.46" y="1679.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,052,125 samples, 0.01%)</title><rect x="833.1" y="1893" width="0.1" height="15.0" fill="rgb(206,128,12)" rx="2" ry="2" />
<text x="836.08" y="1903.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (3,090,473 samples, 0.01%)</title><rect x="859.7" y="2021" width="0.2" height="15.0" fill="rgb(231,208,12)" rx="2" ry="2" />
<text x="862.71" y="2031.5" ></text>
</g>
<g >
<title>__napi_poll (319,433,154 samples, 1.49%)</title><rect x="534.9" y="1957" width="17.6" height="15.0" fill="rgb(224,220,0)" rx="2" ry="2" />
<text x="537.90" y="1967.5" ></text>
</g>
<g >
<title>net_rx_action (37,304,157 samples, 0.17%)</title><rect x="1062.5" y="1877" width="2.1" height="15.0" fill="rgb(246,37,14)" rx="2" ry="2" />
<text x="1065.55" y="1887.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (2,294,548 samples, 0.01%)</title><rect x="505.3" y="1893" width="0.1" height="15.0" fill="rgb(207,88,16)" rx="2" ry="2" />
<text x="508.27" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (7,448,672 samples, 0.03%)</title><rect x="704.7" y="1813" width="0.4" height="15.0" fill="rgb(216,74,1)" rx="2" ry="2" />
<text x="707.66" y="1823.5" ></text>
</g>
<g >
<title>revert_creds (2,709,604 samples, 0.01%)</title><rect x="859.1" y="1957" width="0.1" height="15.0" fill="rgb(215,70,26)" rx="2" ry="2" />
<text x="862.09" y="1967.5" ></text>
</g>
<g >
<title>__qdisc_run (2,103,265 samples, 0.01%)</title><rect x="1165.0" y="1781" width="0.1" height="15.0" fill="rgb(211,202,25)" rx="2" ry="2" />
<text x="1167.95" y="1791.5" ></text>
</g>
<g >
<title>rtl8169_poll (2,259,587 samples, 0.01%)</title><rect x="601.2" y="1829" width="0.1" height="15.0" fill="rgb(235,79,40)" rx="2" ry="2" />
<text x="604.17" y="1839.5" ></text>
</g>
<g >
<title>dict_repeat (35,136,670 samples, 0.16%)</title><rect x="911.4" y="1589" width="2.0" height="15.0" fill="rgb(207,138,41)" rx="2" ry="2" />
<text x="914.45" y="1599.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (5,569,181 samples, 0.03%)</title><rect x="641.5" y="1845" width="0.3" height="15.0" fill="rgb(225,153,9)" rx="2" ry="2" />
<text x="644.53" y="1855.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (2,056,186 samples, 0.01%)</title><rect x="1040.3" y="1477" width="0.1" height="15.0" fill="rgb(242,131,20)" rx="2" ry="2" />
<text x="1043.26" y="1487.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,686,351 samples, 0.01%)</title><rect x="641.6" y="1829" width="0.2" height="15.0" fill="rgb(253,162,18)" rx="2" ry="2" />
<text x="644.62" y="1839.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (1,873,469 samples, 0.01%)</title><rect x="501.3" y="1653" width="0.1" height="15.0" fill="rgb(229,218,10)" rx="2" ry="2" />
<text x="504.31" y="1663.5" ></text>
</g>
<g >
<title>__alloc_pages (2,603,853 samples, 0.01%)</title><rect x="940.5" y="1861" width="0.1" height="15.0" fill="rgb(241,87,10)" rx="2" ry="2" />
<text x="943.47" y="1871.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,872,884 samples, 0.01%)</title><rect x="1115.6" y="1893" width="0.2" height="15.0" fill="rgb(243,41,11)" rx="2" ry="2" />
<text x="1118.61" y="1903.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (50,512,303 samples, 0.24%)</title><rect x="964.4" y="2037" width="2.8" height="15.0" fill="rgb(242,26,32)" rx="2" ry="2" />
<text x="967.44" y="2047.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (5,345,177 samples, 0.02%)</title><rect x="977.7" y="1941" width="0.3" height="15.0" fill="rgb(213,102,4)" rx="2" ry="2" />
<text x="980.73" y="1951.5" ></text>
</g>
<g >
<title>__run_timers.part.0 (2,068,947 samples, 0.01%)</title><rect x="1069.0" y="1861" width="0.1" height="15.0" fill="rgb(252,37,23)" rx="2" ry="2" />
<text x="1072.03" y="1871.5" ></text>
</g>
<g >
<title>[snapctl] (2,308,291 samples, 0.01%)</title><rect x="946.1" y="1637" width="0.1" height="15.0" fill="rgb(245,117,54)" rx="2" ry="2" />
<text x="949.10" y="1647.5" ></text>
</g>
<g >
<title>__skb_checksum (2,948,699 samples, 0.01%)</title><rect x="549.9" y="1781" width="0.1" height="15.0" fill="rgb(238,226,20)" rx="2" ry="2" />
<text x="552.88" y="1791.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (2,657,730 samples, 0.01%)</title><rect x="965.8" y="1829" width="0.2" height="15.0" fill="rgb(226,67,3)" rx="2" ry="2" />
<text x="968.84" y="1839.5" ></text>
</g>
<g >
<title>process_backlog (15,374,028 samples, 0.07%)</title><rect x="512.4" y="1925" width="0.8" height="15.0" fill="rgb(226,132,8)" rx="2" ry="2" />
<text x="515.36" y="1935.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (4,202,786 samples, 0.02%)</title><rect x="543.5" y="1813" width="0.2" height="15.0" fill="rgb(205,115,32)" rx="2" ry="2" />
<text x="546.47" y="1823.5" ></text>
</g>
<g >
<title>cake_enqueue (5,047,314 samples, 0.02%)</title><rect x="1011.4" y="1557" width="0.3" height="15.0" fill="rgb(231,204,5)" rx="2" ry="2" />
<text x="1014.39" y="1567.5" ></text>
</g>
<g >
<title>memcpy_erms (7,645,846 samples, 0.04%)</title><rect x="1128.3" y="1765" width="0.4" height="15.0" fill="rgb(229,229,41)" rx="2" ry="2" />
<text x="1131.31" y="1775.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,568,064 samples, 0.01%)</title><rect x="902.3" y="1781" width="0.2" height="15.0" fill="rgb(238,128,34)" rx="2" ry="2" />
<text x="905.34" y="1791.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (1,922,943 samples, 0.01%)</title><rect x="803.7" y="1813" width="0.1" height="15.0" fill="rgb(225,16,16)" rx="2" ry="2" />
<text x="806.66" y="1823.5" ></text>
</g>
<g >
<title>smpboot_thread_fn (88,599,250 samples, 0.41%)</title><rect x="55.4" y="2021" width="4.9" height="15.0" fill="rgb(248,93,33)" rx="2" ry="2" />
<text x="58.40" y="2031.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,914,890 samples, 0.01%)</title><rect x="592.4" y="1781" width="0.1" height="15.0" fill="rgb(208,220,2)" rx="2" ry="2" />
<text x="595.39" y="1791.5" ></text>
</g>
<g >
<title>__napi_poll (47,646,216 samples, 0.22%)</title><rect x="55.7" y="1957" width="2.6" height="15.0" fill="rgb(210,205,47)" rx="2" ry="2" />
<text x="58.68" y="1967.5" ></text>
</g>
<g >
<title>__aa_path_perm (1,923,009 samples, 0.01%)</title><rect x="953.4" y="1813" width="0.1" height="15.0" fill="rgb(249,55,4)" rx="2" ry="2" />
<text x="956.40" y="1823.5" ></text>
</g>
<g >
<title>tcp6_gro_receive (2,291,021 samples, 0.01%)</title><rect x="445.8" y="1829" width="0.2" height="15.0" fill="rgb(239,76,29)" rx="2" ry="2" />
<text x="448.84" y="1839.5" ></text>
</g>
<g >
<title>[snap] (24,041,840 samples, 0.11%)</title><rect x="883.7" y="1701" width="1.3" height="15.0" fill="rgb(241,180,36)" rx="2" ry="2" />
<text x="886.67" y="1711.5" ></text>
</g>
<g >
<title>copy_strings.isra.0 (2,697,686 samples, 0.01%)</title><rect x="35.4" y="1957" width="0.1" height="15.0" fill="rgb(210,67,47)" rx="2" ry="2" />
<text x="38.36" y="1967.5" ></text>
</g>
<g >
<title>dev_queue_xmit (1,915,517 samples, 0.01%)</title><rect x="450.1" y="1717" width="0.1" height="15.0" fill="rgb(226,60,23)" rx="2" ry="2" />
<text x="453.14" y="1727.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (7,486,922 samples, 0.03%)</title><rect x="1154.2" y="1733" width="0.4" height="15.0" fill="rgb(227,196,44)" rx="2" ry="2" />
<text x="1157.18" y="1743.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (2,935,333 samples, 0.01%)</title><rect x="501.7" y="1765" width="0.1" height="15.0" fill="rgb(239,54,4)" rx="2" ry="2" />
<text x="504.69" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (31,479,918 samples, 0.15%)</title><rect x="1140.5" y="1637" width="1.7" height="15.0" fill="rgb(214,58,36)" rx="2" ry="2" />
<text x="1143.49" y="1647.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (6,071,117 samples, 0.03%)</title><rect x="482.7" y="1701" width="0.3" height="15.0" fill="rgb(226,97,2)" rx="2" ry="2" />
<text x="485.65" y="1711.5" ></text>
</g>
<g >
<title>ip_forward (5,703,491 samples, 0.03%)</title><rect x="512.4" y="1861" width="0.3" height="15.0" fill="rgb(237,89,34)" rx="2" ry="2" />
<text x="515.40" y="1871.5" ></text>
</g>
<g >
<title>ksys_unshare (12,531,450 samples, 0.06%)</title><rect x="864.3" y="1973" width="0.7" height="15.0" fill="rgb(205,151,33)" rx="2" ry="2" />
<text x="867.31" y="1983.5" ></text>
</g>
<g >
<title>udp4_gro_receive (1,966,392 samples, 0.01%)</title><rect x="1020.9" y="1765" width="0.1" height="15.0" fill="rgb(216,212,0)" rx="2" ry="2" />
<text x="1023.87" y="1775.5" ></text>
</g>
<g >
<title>__seccomp_filter (3,875,781 samples, 0.02%)</title><rect x="856.1" y="1941" width="0.2" height="15.0" fill="rgb(208,4,49)" rx="2" ry="2" />
<text x="859.12" y="1951.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,659,026 samples, 0.01%)</title><rect x="578.7" y="1845" width="0.1" height="15.0" fill="rgb(237,172,0)" rx="2" ry="2" />
<text x="581.65" y="1855.5" ></text>
</g>
<g >
<title>__alloc_percpu (6,037,606 samples, 0.03%)</title><rect x="864.4" y="1861" width="0.3" height="15.0" fill="rgb(245,26,26)" rx="2" ry="2" />
<text x="867.39" y="1871.5" ></text>
</g>
<g >
<title>ip6_output (1,896,246 samples, 0.01%)</title><rect x="557.2" y="1829" width="0.1" height="15.0" fill="rgb(210,111,7)" rx="2" ry="2" />
<text x="560.24" y="1839.5" ></text>
</g>
<g >
<title>do_nanosleep (5,876,410 samples, 0.03%)</title><rect x="903.8" y="1925" width="0.3" height="15.0" fill="rgb(244,21,2)" rx="2" ry="2" />
<text x="906.79" y="1935.5" ></text>
</g>
<g >
<title>strncpy (5,067,262 samples, 0.02%)</title><rect x="1046.9" y="1637" width="0.3" height="15.0" fill="rgb(249,191,22)" rx="2" ry="2" />
<text x="1049.92" y="1647.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (2,295,209 samples, 0.01%)</title><rect x="57.1" y="1829" width="0.1" height="15.0" fill="rgb(227,176,6)" rx="2" ry="2" />
<text x="60.09" y="1839.5" ></text>
</g>
<g >
<title>user_path_at_empty (15,471,552 samples, 0.07%)</title><rect x="68.5" y="1957" width="0.8" height="15.0" fill="rgb(215,65,10)" rx="2" ry="2" />
<text x="71.46" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (3,062,153 samples, 0.01%)</title><rect x="662.7" y="1717" width="0.1" height="15.0" fill="rgb(254,178,41)" rx="2" ry="2" />
<text x="665.67" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (1,913,002 samples, 0.01%)</title><rect x="425.4" y="1765" width="0.1" height="15.0" fill="rgb(210,169,32)" rx="2" ry="2" />
<text x="428.40" y="1775.5" ></text>
</g>
<g >
<title>ip6_route_input (49,961,089 samples, 0.23%)</title><rect x="1034.7" y="1701" width="2.8" height="15.0" fill="rgb(248,86,30)" rx="2" ry="2" />
<text x="1037.71" y="1711.5" ></text>
</g>
<g >
<title>__napi_poll (2,208,681 samples, 0.01%)</title><rect x="598.8" y="1749" width="0.1" height="15.0" fill="rgb(249,164,8)" rx="2" ry="2" />
<text x="601.77" y="1759.5" ></text>
</g>
<g >
<title>__x64_sys_openat (7,880,155 samples, 0.04%)</title><rect x="1177.1" y="1989" width="0.5" height="15.0" fill="rgb(214,15,3)" rx="2" ry="2" />
<text x="1180.14" y="1999.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (3,033,033 samples, 0.01%)</title><rect x="759.4" y="1621" width="0.2" height="15.0" fill="rgb(211,0,14)" rx="2" ry="2" />
<text x="762.44" y="1631.5" ></text>
</g>
<g >
<title>ipv6_rcv (3,420,954 samples, 0.02%)</title><rect x="622.0" y="1733" width="0.2" height="15.0" fill="rgb(226,137,7)" rx="2" ry="2" />
<text x="624.97" y="1743.5" ></text>
</g>
<g >
<title>ip6_output (2,675,134 samples, 0.01%)</title><rect x="597.5" y="1621" width="0.2" height="15.0" fill="rgb(214,188,21)" rx="2" ry="2" />
<text x="600.52" y="1631.5" ></text>
</g>
<g >
<title>lzma_literal (247,482,145 samples, 1.16%)</title><rect x="913.5" y="1589" width="13.6" height="15.0" fill="rgb(213,133,26)" rx="2" ry="2" />
<text x="916.49" y="1599.5" ></text>
</g>
<g >
<title>apparmor_file_open (3,467,401 samples, 0.02%)</title><rect x="845.0" y="1845" width="0.2" height="15.0" fill="rgb(230,228,28)" rx="2" ry="2" />
<text x="848.04" y="1855.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,915,797 samples, 0.01%)</title><rect x="76.4" y="1909" width="0.1" height="15.0" fill="rgb(247,212,14)" rx="2" ry="2" />
<text x="79.44" y="1919.5" ></text>
</g>
<g >
<title>seccomp_set_mode_filter (15,877,462 samples, 0.07%)</title><rect x="865.4" y="1957" width="0.8" height="15.0" fill="rgb(218,206,26)" rx="2" ry="2" />
<text x="868.35" y="1967.5" ></text>
</g>
<g >
<title>exit_mm (3,317,015 samples, 0.02%)</title><rect x="947.3" y="1909" width="0.2" height="15.0" fill="rgb(213,108,36)" rx="2" ry="2" />
<text x="950.27" y="1919.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (2,972,338 samples, 0.01%)</title><rect x="621.8" y="1781" width="0.1" height="15.0" fill="rgb(242,181,51)" rx="2" ry="2" />
<text x="624.78" y="1791.5" ></text>
</g>
<g >
<title>page_frag_alloc_align (3,831,642 samples, 0.02%)</title><rect x="445.2" y="1861" width="0.2" height="15.0" fill="rgb(220,191,14)" rx="2" ry="2" />
<text x="448.15" y="1871.5" ></text>
</g>
<g >
<title>asm_common_interrupt (4,938,755 samples, 0.02%)</title><rect x="657.8" y="1669" width="0.3" height="15.0" fill="rgb(254,165,25)" rx="2" ry="2" />
<text x="660.80" y="1679.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,234,824 samples, 0.02%)</title><rect x="870.5" y="2021" width="0.3" height="15.0" fill="rgb(208,26,43)" rx="2" ry="2" />
<text x="873.52" y="2031.5" ></text>
</g>
<g >
<title>nf_hook_slow (12,326,383 samples, 0.06%)</title><rect x="1134.2" y="1669" width="0.6" height="15.0" fill="rgb(231,30,2)" rx="2" ry="2" />
<text x="1137.16" y="1679.5" ></text>
</g>
<g >
<title>timerqueue_add (2,238,545 samples, 0.01%)</title><rect x="692.0" y="1717" width="0.1" height="15.0" fill="rgb(216,30,20)" rx="2" ry="2" />
<text x="694.98" y="1727.5" ></text>
</g>
<g >
<title>net_tx_action (38,007,817 samples, 0.18%)</title><rect x="504.7" y="1957" width="2.1" height="15.0" fill="rgb(238,13,8)" rx="2" ry="2" />
<text x="507.72" y="1967.5" ></text>
</g>
<g >
<title>do_exit (1,922,234 samples, 0.01%)</title><rect x="47.5" y="1989" width="0.1" height="15.0" fill="rgb(246,124,49)" rx="2" ry="2" />
<text x="50.48" y="1999.5" ></text>
</g>
<g >
<title>do_sys_openat2 (3,484,484 samples, 0.02%)</title><rect x="855.8" y="1973" width="0.2" height="15.0" fill="rgb(212,114,51)" rx="2" ry="2" />
<text x="858.84" y="1983.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (1,888,935 samples, 0.01%)</title><rect x="659.2" y="1685" width="0.1" height="15.0" fill="rgb(215,78,8)" rx="2" ry="2" />
<text x="662.16" y="1695.5" ></text>
</g>
<g >
<title>kmem_cache_free (5,720,004 samples, 0.03%)</title><rect x="693.8" y="1701" width="0.3" height="15.0" fill="rgb(232,118,46)" rx="2" ry="2" />
<text x="696.78" y="1711.5" ></text>
</g>
<g >
<title>do_csum (1,913,118 samples, 0.01%)</title><rect x="419.3" y="1733" width="0.1" height="15.0" fill="rgb(253,50,32)" rx="2" ry="2" />
<text x="422.25" y="1743.5" ></text>
</g>
<g >
<title>ret_from_fork (7,561,954 samples, 0.04%)</title><rect x="61.2" y="2053" width="0.4" height="15.0" fill="rgb(227,225,40)" rx="2" ry="2" />
<text x="64.21" y="2063.5" ></text>
</g>
<g >
<title>ip_rcv_core (36,638,842 samples, 0.17%)</title><rect x="778.7" y="1829" width="2.0" height="15.0" fill="rgb(209,45,41)" rx="2" ry="2" />
<text x="781.68" y="1839.5" ></text>
</g>
<g >
<title>load_elf_binary (22,488,237 samples, 0.11%)</title><rect x="27.3" y="1909" width="1.2" height="15.0" fill="rgb(205,38,36)" rx="2" ry="2" />
<text x="30.26" y="1919.5" ></text>
</g>
<g >
<title>schedule (4,217,620 samples, 0.02%)</title><rect x="525.6" y="1925" width="0.3" height="15.0" fill="rgb(223,198,53)" rx="2" ry="2" />
<text x="528.63" y="1935.5" ></text>
</g>
<g >
<title>clear_page_erms (3,448,456 samples, 0.02%)</title><rect x="445.2" y="1813" width="0.1" height="15.0" fill="rgb(233,134,46)" rx="2" ry="2" />
<text x="448.15" y="1823.5" ></text>
</g>
<g >
<title>napi_complete_done (3,423,589 samples, 0.02%)</title><rect x="578.0" y="1749" width="0.2" height="15.0" fill="rgb(251,77,5)" rx="2" ry="2" />
<text x="581.05" y="1759.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,407,050 samples, 0.02%)</title><rect x="646.6" y="1877" width="0.2" height="15.0" fill="rgb(254,153,52)" rx="2" ry="2" />
<text x="649.61" y="1887.5" ></text>
</g>
<g >
<title>handle_edge_irq (2,607,902 samples, 0.01%)</title><rect x="816.9" y="1701" width="0.2" height="15.0" fill="rgb(217,181,30)" rx="2" ry="2" />
<text x="819.95" y="1711.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (3,919,961 samples, 0.02%)</title><rect x="1062.7" y="1701" width="0.2" height="15.0" fill="rgb(220,47,40)" rx="2" ry="2" />
<text x="1065.70" y="1711.5" ></text>
</g>
<g >
<title>asm_common_interrupt (11,559,178 samples, 0.05%)</title><rect x="930.1" y="1573" width="0.6" height="15.0" fill="rgb(240,153,29)" rx="2" ry="2" />
<text x="933.07" y="1583.5" ></text>
</g>
<g >
<title>cake_dequeue (9,141,968 samples, 0.04%)</title><rect x="692.4" y="1797" width="0.5" height="15.0" fill="rgb(219,108,50)" rx="2" ry="2" />
<text x="695.42" y="1807.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (4,852,273 samples, 0.02%)</title><rect x="643.0" y="1781" width="0.3" height="15.0" fill="rgb(243,89,36)" rx="2" ry="2" />
<text x="646.01" y="1791.5" ></text>
</g>
<g >
<title>netif_skb_features (3,447,825 samples, 0.02%)</title><rect x="651.7" y="1541" width="0.2" height="15.0" fill="rgb(224,149,28)" rx="2" ry="2" />
<text x="654.73" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (14,227,496 samples, 0.07%)</title><rect x="1012.2" y="1669" width="0.7" height="15.0" fill="rgb(214,213,49)" rx="2" ry="2" />
<text x="1015.16" y="1679.5" ></text>
</g>
<g >
<title>do_futex (1,916,126 samples, 0.01%)</title><rect x="885.8" y="1797" width="0.1" height="15.0" fill="rgb(244,2,6)" rx="2" ry="2" />
<text x="888.84" y="1807.5" ></text>
</g>
<g >
<title>exec_binprm (22,488,237 samples, 0.11%)</title><rect x="27.3" y="1941" width="1.2" height="15.0" fill="rgb(229,17,5)" rx="2" ry="2" />
<text x="30.26" y="1951.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (2,270,037 samples, 0.01%)</title><rect x="593.9" y="1669" width="0.2" height="15.0" fill="rgb(219,210,37)" rx="2" ry="2" />
<text x="596.95" y="1679.5" ></text>
</g>
<g >
<title>skb_checksum (3,414,538 samples, 0.02%)</title><rect x="1145.4" y="1637" width="0.1" height="15.0" fill="rgb(230,200,21)" rx="2" ry="2" />
<text x="1148.35" y="1647.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1653" width="0.5" height="15.0" fill="rgb(233,180,17)" rx="2" ry="2" />
<text x="18.42" y="1663.5" ></text>
</g>
<g >
<title>common_interrupt (4,047,165 samples, 0.02%)</title><rect x="568.7" y="1957" width="0.3" height="15.0" fill="rgb(225,4,49)" rx="2" ry="2" />
<text x="571.75" y="1967.5" ></text>
</g>
<g >
<title>rtl_rx (98,490,173 samples, 0.46%)</title><rect x="682.9" y="1797" width="5.4" height="15.0" fill="rgb(206,11,30)" rx="2" ry="2" />
<text x="685.87" y="1807.5" ></text>
</g>
<g >
<title>pgd_alloc (2,693,135 samples, 0.01%)</title><rect x="34.4" y="1909" width="0.2" height="15.0" fill="rgb(243,64,35)" rx="2" ry="2" />
<text x="37.41" y="1919.5" ></text>
</g>
<g >
<title>dequeue_skb (5,209,074 samples, 0.02%)</title><rect x="420.9" y="1893" width="0.3" height="15.0" fill="rgb(213,223,34)" rx="2" ry="2" />
<text x="423.94" y="1903.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.0 (8,076,231 samples, 0.04%)</title><rect x="847.1" y="1989" width="0.4" height="15.0" fill="rgb(233,159,21)" rx="2" ry="2" />
<text x="850.08" y="1999.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (31,102,275 samples, 0.15%)</title><rect x="1041.4" y="1557" width="1.7" height="15.0" fill="rgb(236,152,53)" rx="2" ry="2" />
<text x="1044.36" y="1567.5" ></text>
</g>
<g >
<title>kmem_cache_free_bulk (7,783,801 samples, 0.04%)</title><rect x="1053.3" y="1797" width="0.4" height="15.0" fill="rgb(244,141,17)" rx="2" ry="2" />
<text x="1056.26" y="1807.5" ></text>
</g>
<g >
<title>do_mmap (22,677,465 samples, 0.11%)</title><rect x="959.8" y="1957" width="1.3" height="15.0" fill="rgb(208,60,1)" rx="2" ry="2" />
<text x="962.83" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (35,051,581 samples, 0.16%)</title><rect x="1099.3" y="1781" width="1.9" height="15.0" fill="rgb(233,157,42)" rx="2" ry="2" />
<text x="1102.28" y="1791.5" ></text>
</g>
<g >
<title>__napi_poll (3,083,376 samples, 0.01%)</title><rect x="911.2" y="1509" width="0.2" height="15.0" fill="rgb(224,117,2)" rx="2" ry="2" />
<text x="914.23" y="1519.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (103,063,667 samples, 0.48%)</title><rect x="1007.6" y="1733" width="5.7" height="15.0" fill="rgb(234,52,17)" rx="2" ry="2" />
<text x="1010.60" y="1743.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,694,933 samples, 0.01%)</title><rect x="842.7" y="1989" width="0.1" height="15.0" fill="rgb(248,212,35)" rx="2" ry="2" />
<text x="845.66" y="1999.5" ></text>
</g>
<g >
<title>memcpy_erms (4,918,486 samples, 0.02%)</title><rect x="539.7" y="1925" width="0.3" height="15.0" fill="rgb(242,164,36)" rx="2" ry="2" />
<text x="542.69" y="1935.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (4,516,648 samples, 0.02%)</title><rect x="1145.3" y="1669" width="0.3" height="15.0" fill="rgb(215,32,36)" rx="2" ry="2" />
<text x="1148.33" y="1679.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,415,127 samples, 0.02%)</title><rect x="574.0" y="1829" width="0.2" height="15.0" fill="rgb(224,106,12)" rx="2" ry="2" />
<text x="576.98" y="1839.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (506,471,467 samples, 2.37%)</title><rect x="1021.8" y="1797" width="27.9" height="15.0" fill="rgb(242,5,43)" rx="2" ry="2" />
<text x="1024.81" y="1807.5" >n..</text>
</g>
<g >
<title>command_substitute (1,928,420 samples, 0.01%)</title><rect x="40.1" y="2053" width="0.1" height="15.0" fill="rgb(254,71,7)" rx="2" ry="2" />
<text x="43.09" y="2063.5" ></text>
</g>
<g >
<title>resolve_normal_ct (19,759,720 samples, 0.09%)</title><rect x="824.8" y="1781" width="1.0" height="15.0" fill="rgb(245,222,8)" rx="2" ry="2" />
<text x="827.75" y="1791.5" ></text>
</g>
<g >
<title>ip6_pol_route_input (2,224,201 samples, 0.01%)</title><rect x="1151.2" y="1605" width="0.2" height="15.0" fill="rgb(247,171,5)" rx="2" ry="2" />
<text x="1154.24" y="1615.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,590,439 samples, 0.01%)</title><rect x="464.0" y="1909" width="0.1" height="15.0" fill="rgb(233,93,37)" rx="2" ry="2" />
<text x="466.97" y="1919.5" ></text>
</g>
<g >
<title>ipv6_rcv (14,833,604 samples, 0.07%)</title><rect x="52.1" y="1861" width="0.8" height="15.0" fill="rgb(218,89,1)" rx="2" ry="2" />
<text x="55.05" y="1871.5" ></text>
</g>
<g >
<title>page_frag_free (1,913,718 samples, 0.01%)</title><rect x="497.0" y="1813" width="0.2" height="15.0" fill="rgb(252,188,27)" rx="2" ry="2" />
<text x="500.05" y="1823.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (1,871,910 samples, 0.01%)</title><rect x="890.6" y="1525" width="0.1" height="15.0" fill="rgb(205,33,45)" rx="2" ry="2" />
<text x="893.59" y="1535.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (20,452,517 samples, 0.10%)</title><rect x="1010.6" y="1589" width="1.1" height="15.0" fill="rgb(235,50,17)" rx="2" ry="2" />
<text x="1013.55" y="1599.5" ></text>
</g>
<g >
<title>nf_conntrack_handle_packet (3,100,758 samples, 0.01%)</title><rect x="1033.9" y="1669" width="0.1" height="15.0" fill="rgb(220,27,53)" rx="2" ry="2" />
<text x="1036.86" y="1679.5" ></text>
</g>
<g >
<title>napi_complete_done (17,001,026 samples, 0.08%)</title><rect x="1150.7" y="1765" width="0.9" height="15.0" fill="rgb(232,80,11)" rx="2" ry="2" />
<text x="1153.66" y="1775.5" ></text>
</g>
<g >
<title>__napi_poll (3,665,527 samples, 0.02%)</title><rect x="568.7" y="1893" width="0.3" height="15.0" fill="rgb(222,134,4)" rx="2" ry="2" />
<text x="571.75" y="1903.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (1,918,274 samples, 0.01%)</title><rect x="47.0" y="1973" width="0.1" height="15.0" fill="rgb(217,92,7)" rx="2" ry="2" />
<text x="49.98" y="1983.5" ></text>
</g>
<g >
<title>__mkroute_input (4,899,297 samples, 0.02%)</title><rect x="436.6" y="1781" width="0.2" height="15.0" fill="rgb(213,27,16)" rx="2" ry="2" />
<text x="439.55" y="1791.5" ></text>
</g>
<g >
<title>process_backlog (10,083,023 samples, 0.05%)</title><rect x="1150.1" y="1781" width="0.5" height="15.0" fill="rgb(222,82,22)" rx="2" ry="2" />
<text x="1153.05" y="1791.5" ></text>
</g>
<g >
<title>nf_conntrack_handle_packet (2,290,662 samples, 0.01%)</title><rect x="680.4" y="1669" width="0.1" height="15.0" fill="rgb(246,187,30)" rx="2" ry="2" />
<text x="683.38" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (104,335,065 samples, 0.49%)</title><rect x="393.5" y="37" width="5.7" height="15.0" fill="rgb(213,53,36)" rx="2" ry="2" />
<text x="396.46" y="47.5" ></text>
</g>
<g >
<title>step_into (6,557,717 samples, 0.03%)</title><rect x="854.4" y="1877" width="0.4" height="15.0" fill="rgb(208,4,38)" rx="2" ry="2" />
<text x="857.39" y="1887.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (1,880,477 samples, 0.01%)</title><rect x="759.4" y="1605" width="0.1" height="15.0" fill="rgb(211,164,36)" rx="2" ry="2" />
<text x="762.44" y="1615.5" ></text>
</g>
<g >
<title>do_softirq (897,202,213 samples, 4.19%)</title><rect x="647.6" y="1877" width="49.5" height="15.0" fill="rgb(242,113,12)" rx="2" ry="2" />
<text x="650.63" y="1887.5" >do_s..</text>
</g>
<g >
<title>cpuidle_enter_state (903,209,973 samples, 4.22%)</title><rect x="1115.8" y="1893" width="49.8" height="15.0" fill="rgb(226,133,43)" rx="2" ry="2" />
<text x="1118.82" y="1903.5" >cpuid..</text>
</g>
<g >
<title>[snap] (10,282,039 samples, 0.05%)</title><rect x="900.6" y="1685" width="0.6" height="15.0" fill="rgb(241,80,46)" rx="2" ry="2" />
<text x="903.59" y="1695.5" ></text>
</g>
<g >
<title>__ip6_finish_output (2,072,146 samples, 0.01%)</title><rect x="1170.0" y="1637" width="0.1" height="15.0" fill="rgb(218,71,26)" rx="2" ry="2" />
<text x="1172.96" y="1647.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,921,657 samples, 0.01%)</title><rect x="34.4" y="1845" width="0.1" height="15.0" fill="rgb(240,153,1)" rx="2" ry="2" />
<text x="37.41" y="1855.5" ></text>
</g>
<g >
<title>dev_queue_xmit (21,885,772 samples, 0.10%)</title><rect x="1010.5" y="1621" width="1.2" height="15.0" fill="rgb(252,7,11)" rx="2" ry="2" />
<text x="1013.51" y="1631.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (17,267,458 samples, 0.08%)</title><rect x="50.9" y="1909" width="1.0" height="15.0" fill="rgb(228,212,50)" rx="2" ry="2" />
<text x="53.91" y="1919.5" ></text>
</g>
<g >
<title>napi_consume_skb (11,718,222 samples, 0.05%)</title><rect x="1146.7" y="1749" width="0.6" height="15.0" fill="rgb(218,61,34)" rx="2" ry="2" />
<text x="1149.69" y="1759.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (52,008,767 samples, 0.24%)</title><rect x="654.0" y="1749" width="2.8" height="15.0" fill="rgb(246,182,25)" rx="2" ry="2" />
<text x="656.95" y="1759.5" ></text>
</g>
<g >
<title>__copy_skb_header (4,146,721 samples, 0.02%)</title><rect x="522.1" y="1829" width="0.3" height="15.0" fill="rgb(244,228,9)" rx="2" ry="2" />
<text x="525.14" y="1839.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,677,961 samples, 0.01%)</title><rect x="606.8" y="1973" width="0.1" height="15.0" fill="rgb(251,25,47)" rx="2" ry="2" />
<text x="609.76" y="1983.5" ></text>
</g>
<g >
<title>[snap] (7,270,509 samples, 0.03%)</title><rect x="900.7" y="1653" width="0.4" height="15.0" fill="rgb(233,176,8)" rx="2" ry="2" />
<text x="903.74" y="1663.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (4,999,527 samples, 0.02%)</title><rect x="1041.0" y="1525" width="0.3" height="15.0" fill="rgb(253,23,6)" rx="2" ry="2" />
<text x="1043.98" y="1535.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="981" width="8.8" height="15.0" fill="rgb(211,227,44)" rx="2" ry="2" />
<text x="396.46" y="991.5" ></text>
</g>
<g >
<title>kernel_clone (6,959,086 samples, 0.03%)</title><rect x="963.0" y="1973" width="0.4" height="15.0" fill="rgb(209,26,51)" rx="2" ry="2" />
<text x="966.01" y="1983.5" ></text>
</g>
<g >
<title>tick_sched_handle (5,785,744 samples, 0.03%)</title><rect x="1061.0" y="1845" width="0.4" height="15.0" fill="rgb(208,32,53)" rx="2" ry="2" />
<text x="1064.03" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1221" width="8.8" height="15.0" fill="rgb(236,104,30)" rx="2" ry="2" />
<text x="396.46" y="1231.5" ></text>
</g>
<g >
<title>do_wp_page (2,300,732 samples, 0.01%)</title><rect x="957.1" y="1925" width="0.2" height="15.0" fill="rgb(223,132,46)" rx="2" ry="2" />
<text x="960.13" y="1935.5" ></text>
</g>
<g >
<title>fib_validate_source (5,680,028 samples, 0.03%)</title><rect x="408.5" y="1749" width="0.3" height="15.0" fill="rgb(237,207,22)" rx="2" ry="2" />
<text x="411.50" y="1759.5" ></text>
</g>
<g >
<title>common_interrupt (4,993,259 samples, 0.02%)</title><rect x="645.7" y="1877" width="0.3" height="15.0" fill="rgb(234,35,53)" rx="2" ry="2" />
<text x="648.68" y="1887.5" ></text>
</g>
<g >
<title>do_open (2,691,664 samples, 0.01%)</title><rect x="866.7" y="1925" width="0.2" height="15.0" fill="rgb(228,150,39)" rx="2" ry="2" />
<text x="869.73" y="1935.5" ></text>
</g>
<g >
<title>__napi_poll (1,887,183 samples, 0.01%)</title><rect x="400.5" y="133" width="0.1" height="15.0" fill="rgb(219,5,2)" rx="2" ry="2" />
<text x="403.51" y="143.5" ></text>
</g>
<g >
<title>[snap] (79,785,063 samples, 0.37%)</title><rect x="898.7" y="1861" width="4.4" height="15.0" fill="rgb(225,152,28)" rx="2" ry="2" />
<text x="901.65" y="1871.5" ></text>
</g>
<g >
<title>ip4ip6_gro_receive (5,631,852 samples, 0.03%)</title><rect x="549.8" y="1861" width="0.3" height="15.0" fill="rgb(229,164,3)" rx="2" ry="2" />
<text x="552.77" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (10,626,539 samples, 0.05%)</title><rect x="538.7" y="1829" width="0.6" height="15.0" fill="rgb(229,201,46)" rx="2" ry="2" />
<text x="541.71" y="1839.5" ></text>
</g>
<g >
<title>mmput (1,922,234 samples, 0.01%)</title><rect x="47.5" y="1957" width="0.1" height="15.0" fill="rgb(237,149,53)" rx="2" ry="2" />
<text x="50.48" y="1967.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,939,552 samples, 0.01%)</title><rect x="856.6" y="1973" width="0.1" height="15.0" fill="rgb(241,134,22)" rx="2" ry="2" />
<text x="859.59" y="1983.5" ></text>
</g>
<g >
<title>kworker/1:2H-ev (16,996,796 samples, 0.08%)</title><rect x="63.6" y="2069" width="1.0" height="15.0" fill="rgb(238,4,26)" rx="2" ry="2" />
<text x="66.62" y="2079.5" ></text>
</g>
<g >
<title>__napi_poll (2,803,261 samples, 0.01%)</title><rect x="1105.0" y="1861" width="0.2" height="15.0" fill="rgb(252,52,8)" rx="2" ry="2" />
<text x="1108.01" y="1871.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="869" width="0.5" height="15.0" fill="rgb(213,100,13)" rx="2" ry="2" />
<text x="18.42" y="879.5" ></text>
</g>
<g >
<title>squashfs_readpage (25,373,494 samples, 0.12%)</title><rect x="955.4" y="1829" width="1.4" height="15.0" fill="rgb(216,50,45)" rx="2" ry="2" />
<text x="958.37" y="1839.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (75,417,438 samples, 0.35%)</title><rect x="55.5" y="1989" width="4.2" height="15.0" fill="rgb(229,30,7)" rx="2" ry="2" />
<text x="58.51" y="1999.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (2,258,712 samples, 0.01%)</title><rect x="1044.4" y="1525" width="0.2" height="15.0" fill="rgb(221,36,33)" rx="2" ry="2" />
<text x="1047.44" y="1535.5" ></text>
</g>
<g >
<title>__validuser2_sa (1,923,484 samples, 0.01%)</title><rect x="869.9" y="2053" width="0.1" height="15.0" fill="rgb(251,146,49)" rx="2" ry="2" />
<text x="872.92" y="2063.5" ></text>
</g>
<g >
<title>__common_interrupt (4,302,220 samples, 0.02%)</title><rect x="1062.3" y="1845" width="0.2" height="15.0" fill="rgb(209,209,49)" rx="2" ry="2" />
<text x="1065.31" y="1855.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (3,038,731 samples, 0.01%)</title><rect x="1154.6" y="1765" width="0.2" height="15.0" fill="rgb(216,18,9)" rx="2" ry="2" />
<text x="1157.63" y="1775.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (15,135,803 samples, 0.07%)</title><rect x="1062.7" y="1765" width="0.8" height="15.0" fill="rgb(210,113,51)" rx="2" ry="2" />
<text x="1065.70" y="1775.5" ></text>
</g>
<g >
<title>[snap-seccomp] (9,587,559 samples, 0.04%)</title><rect x="877.3" y="1845" width="0.5" height="15.0" fill="rgb(247,102,15)" rx="2" ry="2" />
<text x="880.29" y="1855.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,508,762 samples, 0.04%)</title><rect x="15.4" y="373" width="0.5" height="15.0" fill="rgb(225,76,49)" rx="2" ry="2" />
<text x="18.42" y="383.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (2,653,617 samples, 0.01%)</title><rect x="526.1" y="1989" width="0.1" height="15.0" fill="rgb(225,111,35)" rx="2" ry="2" />
<text x="529.09" y="1999.5" ></text>
</g>
<g >
<title>squashfs_read_metadata (3,863,567 samples, 0.02%)</title><rect x="847.6" y="1957" width="0.2" height="15.0" fill="rgb(220,54,7)" rx="2" ry="2" />
<text x="850.63" y="1967.5" ></text>
</g>
<g >
<title>fib6_get_table (1,909,985 samples, 0.01%)</title><rect x="489.7" y="1749" width="0.1" height="15.0" fill="rgb(233,53,45)" rx="2" ry="2" />
<text x="492.71" y="1759.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,598,401 samples, 0.02%)</title><rect x="521.6" y="1813" width="0.3" height="15.0" fill="rgb(224,44,19)" rx="2" ry="2" />
<text x="524.61" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (6,374,285 samples, 0.03%)</title><rect x="664.3" y="1541" width="0.4" height="15.0" fill="rgb(226,227,5)" rx="2" ry="2" />
<text x="667.31" y="1551.5" ></text>
</g>
<g >
<title>rtl8169_poll (15,811,431 samples, 0.07%)</title><rect x="926.1" y="1477" width="0.9" height="15.0" fill="rgb(209,27,2)" rx="2" ry="2" />
<text x="929.11" y="1487.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (3,450,554 samples, 0.02%)</title><rect x="821.4" y="1765" width="0.2" height="15.0" fill="rgb(244,49,1)" rx="2" ry="2" />
<text x="824.43" y="1775.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,264,866 samples, 0.03%)</title><rect x="65.4" y="1989" width="0.4" height="15.0" fill="rgb(250,153,52)" rx="2" ry="2" />
<text x="68.40" y="1999.5" ></text>
</g>
<g >
<title>ip6_output (5,065,870 samples, 0.02%)</title><rect x="495.4" y="1781" width="0.3" height="15.0" fill="rgb(222,103,3)" rx="2" ry="2" />
<text x="498.44" y="1791.5" ></text>
</g>
<g >
<title>irq_chip_ack_parent (1,916,492 samples, 0.01%)</title><rect x="533.6" y="1973" width="0.1" height="15.0" fill="rgb(208,75,18)" rx="2" ry="2" />
<text x="536.61" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="821" width="8.8" height="15.0" fill="rgb(216,104,35)" rx="2" ry="2" />
<text x="396.46" y="831.5" ></text>
</g>
<g >
<title>__netif_receive_skb (2,297,904 samples, 0.01%)</title><rect x="625.6" y="1733" width="0.2" height="15.0" fill="rgb(229,106,43)" rx="2" ry="2" />
<text x="628.63" y="1743.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (2,238,716 samples, 0.01%)</title><rect x="599.1" y="1877" width="0.1" height="15.0" fill="rgb(242,87,25)" rx="2" ry="2" />
<text x="602.08" y="1887.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (6,303,545 samples, 0.03%)</title><rect x="743.1" y="1397" width="0.4" height="15.0" fill="rgb(245,81,54)" rx="2" ry="2" />
<text x="746.14" y="1407.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (1,939,552 samples, 0.01%)</title><rect x="856.6" y="2021" width="0.1" height="15.0" fill="rgb(248,225,14)" rx="2" ry="2" />
<text x="859.59" y="2031.5" ></text>
</g>
<g >
<title>ip_list_rcv (8,259,382 samples, 0.04%)</title><rect x="56.8" y="1861" width="0.4" height="15.0" fill="rgb(211,55,12)" rx="2" ry="2" />
<text x="59.79" y="1871.5" ></text>
</g>
<g >
<title>__x64_sys_clone (5,731,432 samples, 0.03%)</title><rect x="869.4" y="2005" width="0.3" height="15.0" fill="rgb(231,201,1)" rx="2" ry="2" />
<text x="872.39" y="2015.5" ></text>
</g>
<g >
<title>nf_hook_slow (4,136,252 samples, 0.02%)</title><rect x="1133.8" y="1653" width="0.3" height="15.0" fill="rgb(232,7,16)" rx="2" ry="2" />
<text x="1136.83" y="1663.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,319,491 samples, 0.01%)</title><rect x="1164.7" y="1829" width="0.1" height="15.0" fill="rgb(223,62,17)" rx="2" ry="2" />
<text x="1167.72" y="1839.5" ></text>
</g>
<g >
<title>sch_direct_xmit (1,820,684 samples, 0.01%)</title><rect x="1102.9" y="1829" width="0.1" height="15.0" fill="rgb(208,96,51)" rx="2" ry="2" />
<text x="1105.86" y="1839.5" ></text>
</g>
<g >
<title>rtl_rx (26,829,455 samples, 0.13%)</title><rect x="444.8" y="1893" width="1.5" height="15.0" fill="rgb(253,180,40)" rx="2" ry="2" />
<text x="447.79" y="1903.5" ></text>
</g>
<g >
<title>jbd2/mmcblk1p2- (1,837,215 samples, 0.01%)</title><rect x="50.3" y="2069" width="0.1" height="15.0" fill="rgb(227,119,51)" rx="2" ry="2" />
<text x="53.26" y="2079.5" ></text>
</g>
<g >
<title>__slab_free (4,215,335 samples, 0.02%)</title><rect x="682.0" y="1685" width="0.2" height="15.0" fill="rgb(209,174,47)" rx="2" ry="2" />
<text x="684.99" y="1695.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (25,286,710 samples, 0.12%)</title><rect x="422.4" y="1941" width="1.4" height="15.0" fill="rgb(214,223,6)" rx="2" ry="2" />
<text x="425.37" y="1951.5" ></text>
</g>
<g >
<title>slab_free_freelist_hook.constprop.0 (2,292,545 samples, 0.01%)</title><rect x="689.9" y="1717" width="0.1" height="15.0" fill="rgb(237,168,23)" rx="2" ry="2" />
<text x="692.91" y="1727.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,209,500 samples, 0.01%)</title><rect x="690.6" y="1813" width="0.2" height="15.0" fill="rgb(209,19,34)" rx="2" ry="2" />
<text x="693.64" y="1823.5" ></text>
</g>
<g >
<title>worker_thread (7,561,954 samples, 0.04%)</title><rect x="61.2" y="2021" width="0.4" height="15.0" fill="rgb(215,192,45)" rx="2" ry="2" />
<text x="64.21" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (5,307,003 samples, 0.02%)</title><rect x="416.2" y="1733" width="0.3" height="15.0" fill="rgb(215,23,25)" rx="2" ry="2" />
<text x="419.16" y="1743.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (1,825,956 samples, 0.01%)</title><rect x="598.8" y="1685" width="0.1" height="15.0" fill="rgb(252,150,48)" rx="2" ry="2" />
<text x="601.77" y="1695.5" ></text>
</g>
<g >
<title>unmap_page_range (10,130,486 samples, 0.05%)</title><rect x="40.8" y="1893" width="0.6" height="15.0" fill="rgb(207,98,42)" rx="2" ry="2" />
<text x="43.82" y="1903.5" ></text>
</g>
<g >
<title>__mkroute_input (13,327,856 samples, 0.06%)</title><rect x="471.7" y="1797" width="0.7" height="15.0" fill="rgb(215,70,7)" rx="2" ry="2" />
<text x="474.65" y="1807.5" ></text>
</g>
<g >
<title>begin_new_exec (3,833,974 samples, 0.02%)</title><rect x="10.5" y="1893" width="0.2" height="15.0" fill="rgb(229,138,4)" rx="2" ry="2" />
<text x="13.49" y="1903.5" ></text>
</g>
<g >
<title>xz_dec_run (15,008,857 samples, 0.07%)</title><rect x="942.8" y="1701" width="0.9" height="15.0" fill="rgb(250,24,42)" rx="2" ry="2" />
<text x="945.85" y="1711.5" ></text>
</g>
<g >
<title>fib6_rule_action (1,902,423 samples, 0.01%)</title><rect x="52.6" y="1781" width="0.1" height="15.0" fill="rgb(246,218,9)" rx="2" ry="2" />
<text x="55.60" y="1791.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (3,096,406 samples, 0.01%)</title><rect x="957.9" y="1957" width="0.2" height="15.0" fill="rgb(210,186,45)" rx="2" ry="2" />
<text x="960.91" y="1967.5" ></text>
</g>
<g >
<title>common_interrupt (3,283,377 samples, 0.02%)</title><rect x="401.5" y="277" width="0.2" height="15.0" fill="rgb(247,40,24)" rx="2" ry="2" />
<text x="404.52" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (97,111,070 samples, 0.45%)</title><rect x="851.2" y="2021" width="5.3" height="15.0" fill="rgb(207,105,47)" rx="2" ry="2" />
<text x="854.17" y="2031.5" ></text>
</g>
<g >
<title>chmod (9,386,929 samples, 0.04%)</title><rect x="17.6" y="2069" width="0.5" height="15.0" fill="rgb(220,58,0)" rx="2" ry="2" />
<text x="20.58" y="2079.5" ></text>
</g>
<g >
<title>bprm_execve (22,488,237 samples, 0.11%)</title><rect x="27.3" y="1973" width="1.2" height="15.0" fill="rgb(211,204,20)" rx="2" ry="2" />
<text x="30.26" y="1983.5" ></text>
</g>
<g >
<title>__napi_poll (2,251,318 samples, 0.01%)</title><rect x="599.0" y="1797" width="0.1" height="15.0" fill="rgb(239,10,49)" rx="2" ry="2" />
<text x="601.96" y="1807.5" ></text>
</g>
<g >
<title>[snap] (18,573,128 samples, 0.09%)</title><rect x="883.8" y="565" width="1.0" height="15.0" fill="rgb(207,196,32)" rx="2" ry="2" />
<text x="886.75" y="575.5" ></text>
</g>
<g >
<title>[snap] (8,737,767 samples, 0.04%)</title><rect x="883.8" y="101" width="0.5" height="15.0" fill="rgb(223,144,11)" rx="2" ry="2" />
<text x="886.77" y="111.5" ></text>
</g>
<g >
<title>[snap] (17,425,508 samples, 0.08%)</title><rect x="883.8" y="341" width="0.9" height="15.0" fill="rgb(233,183,19)" rx="2" ry="2" />
<text x="886.75" y="351.5" ></text>
</g>
<g >
<title>schedule (2,682,243 samples, 0.01%)</title><rect x="29.0" y="1941" width="0.2" height="15.0" fill="rgb(254,84,9)" rx="2" ry="2" />
<text x="32.03" y="1951.5" ></text>
</g>
<g >
<title>napi_complete_done (2,843,937 samples, 0.01%)</title><rect x="977.7" y="1877" width="0.2" height="15.0" fill="rgb(207,54,28)" rx="2" ry="2" />
<text x="980.75" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (2,261,152 samples, 0.01%)</title><rect x="514.2" y="1749" width="0.2" height="15.0" fill="rgb(243,9,16)" rx="2" ry="2" />
<text x="517.24" y="1759.5" ></text>
</g>
<g >
<title>rcmd_af (19,236,389 samples, 0.09%)</title><rect x="1174.6" y="2037" width="1.1" height="15.0" fill="rgb(218,191,4)" rx="2" ry="2" />
<text x="1177.60" y="2047.5" ></text>
</g>
<g >
<title>__fib_lookup (9,365,655 samples, 0.04%)</title><rect x="746.0" y="1573" width="0.6" height="15.0" fill="rgb(247,208,7)" rx="2" ry="2" />
<text x="749.05" y="1583.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (16,462,393 samples, 0.08%)</title><rect x="1102.1" y="1909" width="0.9" height="15.0" fill="rgb(229,35,20)" rx="2" ry="2" />
<text x="1105.11" y="1919.5" ></text>
</g>
<g >
<title>gro_cells_receive (3,014,487 samples, 0.01%)</title><rect x="670.6" y="1621" width="0.1" height="15.0" fill="rgb(246,163,53)" rx="2" ry="2" />
<text x="673.57" y="1631.5" ></text>
</g>
<g >
<title>__fib_validate_source (7,574,835 samples, 0.04%)</title><rect x="1126.2" y="1621" width="0.4" height="15.0" fill="rgb(234,128,15)" rx="2" ry="2" />
<text x="1129.18" y="1631.5" ></text>
</g>
<g >
<title>__fsnotify_parent (6,446,381 samples, 0.03%)</title><rect x="606.4" y="1973" width="0.4" height="15.0" fill="rgb(224,66,13)" rx="2" ry="2" />
<text x="609.41" y="1983.5" ></text>
</g>
<g >
<title>memcg_slab_free_hook (3,060,621 samples, 0.01%)</title><rect x="581.9" y="1845" width="0.1" height="15.0" fill="rgb(232,77,3)" rx="2" ry="2" />
<text x="584.86" y="1855.5" ></text>
</g>
<g >
<title>memcg_slab_free_hook (1,914,388 samples, 0.01%)</title><rect x="521.7" y="1797" width="0.1" height="15.0" fill="rgb(210,48,27)" rx="2" ry="2" />
<text x="524.73" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1205" width="8.8" height="15.0" fill="rgb(224,3,45)" rx="2" ry="2" />
<text x="396.46" y="1215.5" ></text>
</g>
<g >
<title>fib6_select_path (2,679,202 samples, 0.01%)</title><rect x="675.6" y="1605" width="0.1" height="15.0" fill="rgb(225,6,24)" rx="2" ry="2" />
<text x="678.58" y="1615.5" ></text>
</g>
<g >
<title>sched_clock_idle_sleep_event (4,288,218 samples, 0.02%)</title><rect x="1058.9" y="1893" width="0.2" height="15.0" fill="rgb(217,217,45)" rx="2" ry="2" />
<text x="1061.88" y="1903.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,823,833 samples, 0.03%)</title><rect x="622.4" y="1877" width="0.3" height="15.0" fill="rgb(254,50,35)" rx="2" ry="2" />
<text x="625.37" y="1887.5" ></text>
</g>
<g >
<title>__res_context_send (7,339,403 samples, 0.03%)</title><rect x="45.2" y="2021" width="0.4" height="15.0" fill="rgb(249,85,42)" rx="2" ry="2" />
<text x="48.18" y="2031.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (3,318,852 samples, 0.02%)</title><rect x="643.1" y="1669" width="0.1" height="15.0" fill="rgb(229,157,27)" rx="2" ry="2" />
<text x="646.05" y="1679.5" ></text>
</g>
<g >
<title>bprm_execve (8,076,231 samples, 0.04%)</title><rect x="847.1" y="1973" width="0.4" height="15.0" fill="rgb(250,40,5)" rx="2" ry="2" />
<text x="850.08" y="1983.5" ></text>
</g>
<g >
<title>getname_flags.part.0 (7,349,830 samples, 0.03%)</title><rect x="855.1" y="1925" width="0.4" height="15.0" fill="rgb(212,119,27)" rx="2" ry="2" />
<text x="858.12" y="1935.5" ></text>
</g>
<g >
<title>ip6_forward (2,576,833 samples, 0.01%)</title><rect x="444.0" y="1781" width="0.1" height="15.0" fill="rgb(231,215,0)" rx="2" ry="2" />
<text x="446.96" y="1791.5" ></text>
</g>
<g >
<title>net_rx_action (4,135,764 samples, 0.02%)</title><rect x="610.3" y="1893" width="0.2" height="15.0" fill="rgb(231,81,3)" rx="2" ry="2" />
<text x="613.27" y="1903.5" ></text>
</g>
<g >
<title>cpuidle_reflect (2,234,935 samples, 0.01%)</title><rect x="1166.0" y="1909" width="0.2" height="15.0" fill="rgb(205,146,53)" rx="2" ry="2" />
<text x="1169.04" y="1919.5" ></text>
</g>
<g >
<title>fib4_rule_match (4,205,679 samples, 0.02%)</title><rect x="785.3" y="1749" width="0.2" height="15.0" fill="rgb(242,217,8)" rx="2" ry="2" />
<text x="788.26" y="1759.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (4,208,598 samples, 0.02%)</title><rect x="411.5" y="1589" width="0.2" height="15.0" fill="rgb(210,174,12)" rx="2" ry="2" />
<text x="414.50" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (2,293,893 samples, 0.01%)</title><rect x="513.8" y="1669" width="0.1" height="15.0" fill="rgb(244,142,29)" rx="2" ry="2" />
<text x="516.75" y="1679.5" ></text>
</g>
<g >
<title>rtl_tx (39,938,896 samples, 0.19%)</title><rect x="502.3" y="1909" width="2.2" height="15.0" fill="rgb(229,224,5)" rx="2" ry="2" />
<text x="505.31" y="1919.5" ></text>
</g>
<g >
<title>__napi_poll (8,604,029 samples, 0.04%)</title><rect x="1112.9" y="1861" width="0.5" height="15.0" fill="rgb(225,75,41)" rx="2" ry="2" />
<text x="1115.92" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="677" width="8.8" height="15.0" fill="rgb(241,81,14)" rx="2" ry="2" />
<text x="396.46" y="687.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (2,171,804 samples, 0.01%)</title><rect x="556.4" y="1877" width="0.1" height="15.0" fill="rgb(213,123,2)" rx="2" ry="2" />
<text x="559.35" y="1887.5" ></text>
</g>
<g >
<title>do_fault (2,299,094 samples, 0.01%)</title><rect x="897.3" y="1861" width="0.1" height="15.0" fill="rgb(227,173,5)" rx="2" ry="2" />
<text x="900.28" y="1871.5" ></text>
</g>
<g >
<title>get_page_from_freelist (18,838,246 samples, 0.09%)</title><rect x="936.9" y="1845" width="1.1" height="15.0" fill="rgb(224,210,9)" rx="2" ry="2" />
<text x="939.94" y="1855.5" ></text>
</g>
<g >
<title>__fget_light (18,826,682 samples, 0.09%)</title><rect x="604.9" y="1957" width="1.0" height="15.0" fill="rgb(253,157,35)" rx="2" ry="2" />
<text x="607.87" y="1967.5" ></text>
</g>
<g >
<title>nft_do_chain_ipv6 (2,989,925 samples, 0.01%)</title><rect x="672.0" y="1685" width="0.2" height="15.0" fill="rgb(235,207,28)" rx="2" ry="2" />
<text x="674.99" y="1695.5" ></text>
</g>
<g >
<title>napi_gro_receive (2,302,796 samples, 0.01%)</title><rect x="937.7" y="1685" width="0.1" height="15.0" fill="rgb(214,7,38)" rx="2" ry="2" />
<text x="940.68" y="1695.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (15,455,504 samples, 0.07%)</title><rect x="751.7" y="1605" width="0.9" height="15.0" fill="rgb(216,184,48)" rx="2" ry="2" />
<text x="754.70" y="1615.5" ></text>
</g>
<g >
<title>__slab_free (11,692,978 samples, 0.05%)</title><rect x="581.1" y="1845" width="0.7" height="15.0" fill="rgb(227,78,9)" rx="2" ry="2" />
<text x="584.13" y="1855.5" ></text>
</g>
<g >
<title>do_sys_openat2 (1,919,849 samples, 0.01%)</title><rect x="857.8" y="1957" width="0.1" height="15.0" fill="rgb(215,11,5)" rx="2" ry="2" />
<text x="860.79" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,961,156 samples, 0.01%)</title><rect x="941.0" y="1973" width="0.2" height="15.0" fill="rgb(231,92,26)" rx="2" ry="2" />
<text x="944.03" y="1983.5" ></text>
</g>
<g >
<title>ip6_forward (2,530,727 samples, 0.01%)</title><rect x="681.3" y="1685" width="0.1" height="15.0" fill="rgb(206,68,37)" rx="2" ry="2" />
<text x="684.26" y="1695.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (11,877,768 samples, 0.06%)</title><rect x="1003.2" y="1605" width="0.7" height="15.0" fill="rgb(228,93,9)" rx="2" ry="2" />
<text x="1006.21" y="1615.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (273,450,250 samples, 1.28%)</title><rect x="1034.4" y="1749" width="15.1" height="15.0" fill="rgb(224,137,12)" rx="2" ry="2" />
<text x="1037.43" y="1759.5" ></text>
</g>
<g >
<title>__skb_checksum (7,604,991 samples, 0.04%)</title><rect x="823.4" y="1701" width="0.4" height="15.0" fill="rgb(246,31,0)" rx="2" ry="2" />
<text x="826.42" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (16,258,989 samples, 0.08%)</title><rect x="665.4" y="1541" width="0.9" height="15.0" fill="rgb(230,92,40)" rx="2" ry="2" />
<text x="668.36" y="1551.5" ></text>
</g>
<g >
<title>[snap] (168,027,419 samples, 0.78%)</title><rect x="879.8" y="2021" width="9.3" height="15.0" fill="rgb(224,207,5)" rx="2" ry="2" />
<text x="882.82" y="2031.5" ></text>
</g>
<g >
<title>ip_finish_output2 (43,056,703 samples, 0.20%)</title><rect x="466.1" y="1781" width="2.3" height="15.0" fill="rgb(216,160,48)" rx="2" ry="2" />
<text x="469.07" y="1791.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (24,339,997 samples, 0.11%)</title><rect x="438.9" y="1749" width="1.3" height="15.0" fill="rgb(225,60,10)" rx="2" ry="2" />
<text x="441.87" y="1759.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,309,804 samples, 0.01%)</title><rect x="842.7" y="1973" width="0.1" height="15.0" fill="rgb(249,75,19)" rx="2" ry="2" />
<text x="845.69" y="1983.5" ></text>
</g>
<g >
<title>acpi_ps_create_op (2,578,146 samples, 0.01%)</title><rect x="63.1" y="1749" width="0.1" height="15.0" fill="rgb(239,23,2)" rx="2" ry="2" />
<text x="66.08" y="1759.5" ></text>
</g>
<g >
<title>tun_chr_read_iter (483,788,263 samples, 2.26%)</title><rect x="572.6" y="1941" width="26.7" height="15.0" fill="rgb(228,209,11)" rx="2" ry="2" />
<text x="575.64" y="1951.5" >t..</text>
</g>
<g >
<title>tick_sched_timer (5,667,618 samples, 0.03%)</title><rect x="555.4" y="1957" width="0.3" height="15.0" fill="rgb(230,199,7)" rx="2" ry="2" />
<text x="558.39" y="1967.5" ></text>
</g>
<g >
<title>__napi_poll (17,767,976 samples, 0.08%)</title><rect x="958.2" y="1957" width="1.0" height="15.0" fill="rgb(210,38,22)" rx="2" ry="2" />
<text x="961.19" y="1967.5" ></text>
</g>
<g >
<title>putname (2,320,226 samples, 0.01%)</title><rect x="855.5" y="1941" width="0.2" height="15.0" fill="rgb(230,109,32)" rx="2" ry="2" />
<text x="858.54" y="1951.5" ></text>
</g>
<g >
<title>skb_release_head_state (1,873,642 samples, 0.01%)</title><rect x="420.6" y="1845" width="0.1" height="15.0" fill="rgb(212,155,42)" rx="2" ry="2" />
<text x="423.60" y="1855.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (14,862,160 samples, 0.07%)</title><rect x="535.6" y="1749" width="0.8" height="15.0" fill="rgb(242,208,30)" rx="2" ry="2" />
<text x="538.59" y="1759.5" ></text>
</g>
<g >
<title>fib_rules_lookup (30,643,565 samples, 0.14%)</title><rect x="1005.8" y="1685" width="1.7" height="15.0" fill="rgb(247,206,48)" rx="2" ry="2" />
<text x="1008.76" y="1695.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (35,876,117 samples, 0.17%)</title><rect x="513.4" y="1877" width="2.0" height="15.0" fill="rgb(245,189,21)" rx="2" ry="2" />
<text x="516.39" y="1887.5" ></text>
</g>
<g >
<title>netif_skb_features (1,829,305 samples, 0.01%)</title><rect x="1041.0" y="1493" width="0.1" height="15.0" fill="rgb(247,104,43)" rx="2" ry="2" />
<text x="1044.01" y="1503.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (2,682,682 samples, 0.01%)</title><rect x="941.6" y="1989" width="0.1" height="15.0" fill="rgb(207,59,54)" rx="2" ry="2" />
<text x="944.55" y="1999.5" ></text>
</g>
<g >
<title>neigh_hh_output (26,169,008 samples, 0.12%)</title><rect x="410.9" y="1717" width="1.5" height="15.0" fill="rgb(247,142,43)" rx="2" ry="2" />
<text x="413.93" y="1727.5" ></text>
</g>
<g >
<title>sock_def_readable (2,293,083 samples, 0.01%)</title><rect x="467.9" y="1637" width="0.2" height="15.0" fill="rgb(219,43,16)" rx="2" ry="2" />
<text x="470.94" y="1647.5" ></text>
</g>
<g >
<title>cake_enqueue (7,287,883 samples, 0.03%)</title><rect x="1045.1" y="1541" width="0.4" height="15.0" fill="rgb(233,66,22)" rx="2" ry="2" />
<text x="1048.06" y="1551.5" ></text>
</g>
<g >
<title>read_tsc (4,876,378 samples, 0.02%)</title><rect x="751.0" y="1621" width="0.3" height="15.0" fill="rgb(216,141,54)" rx="2" ry="2" />
<text x="753.99" y="1631.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (4,818,814 samples, 0.02%)</title><rect x="559.5" y="1893" width="0.3" height="15.0" fill="rgb(234,86,11)" rx="2" ry="2" />
<text x="562.53" y="1903.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,815,500 samples, 0.01%)</title><rect x="886.1" y="1813" width="0.1" height="15.0" fill="rgb(249,99,49)" rx="2" ry="2" />
<text x="889.07" y="1823.5" ></text>
</g>
<g >
<title>asm_common_interrupt (587,338,790 samples, 2.74%)</title><rect x="1116.5" y="1877" width="32.3" height="15.0" fill="rgb(216,59,35)" rx="2" ry="2" />
<text x="1119.46" y="1887.5" >as..</text>
</g>
<g >
<title>neigh_hh_output (2,385,677 samples, 0.01%)</title><rect x="52.1" y="1765" width="0.1" height="15.0" fill="rgb(210,48,48)" rx="2" ry="2" />
<text x="55.09" y="1775.5" ></text>
</g>
<g >
<title>napi_gro_receive (11,335,078 samples, 0.05%)</title><rect x="1063.8" y="1813" width="0.6" height="15.0" fill="rgb(248,130,33)" rx="2" ry="2" />
<text x="1066.82" y="1823.5" ></text>
</g>
<g >
<title>[snap] (11,718,909 samples, 0.05%)</title><rect x="900.5" y="1701" width="0.7" height="15.0" fill="rgb(223,207,5)" rx="2" ry="2" />
<text x="903.51" y="1711.5" ></text>
</g>
<g >
<title>do_mmap (1,901,401 samples, 0.01%)</title><rect x="878.7" y="1941" width="0.1" height="15.0" fill="rgb(226,190,31)" rx="2" ry="2" />
<text x="881.71" y="1951.5" ></text>
</g>
<g >
<title>rtl_rx (3,600,328 samples, 0.02%)</title><rect x="980.1" y="1861" width="0.2" height="15.0" fill="rgb(238,139,54)" rx="2" ry="2" />
<text x="983.05" y="1871.5" ></text>
</g>
<g >
<title>unmap_page_range (2,317,174 samples, 0.01%)</title><rect x="69.5" y="1893" width="0.2" height="15.0" fill="rgb(250,122,9)" rx="2" ry="2" />
<text x="72.54" y="1903.5" ></text>
</g>
<g >
<title>kfree (41,074,820 samples, 0.19%)</title><rect x="1054.3" y="1765" width="2.2" height="15.0" fill="rgb(242,142,19)" rx="2" ry="2" />
<text x="1057.28" y="1775.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,240,637 samples, 0.02%)</title><rect x="959.3" y="1957" width="0.3" height="15.0" fill="rgb(220,97,22)" rx="2" ry="2" />
<text x="962.32" y="1967.5" ></text>
</g>
<g >
<title>ip_finish_output2 (12,188,723 samples, 0.06%)</title><rect x="406.7" y="1749" width="0.6" height="15.0" fill="rgb(239,83,32)" rx="2" ry="2" />
<text x="409.67" y="1759.5" ></text>
</g>
<g >
<title>dev_queue_xmit (14,862,160 samples, 0.07%)</title><rect x="535.6" y="1765" width="0.8" height="15.0" fill="rgb(223,210,42)" rx="2" ry="2" />
<text x="538.59" y="1775.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (2,006,332 samples, 0.01%)</title><rect x="1113.0" y="1733" width="0.1" height="15.0" fill="rgb(226,2,19)" rx="2" ry="2" />
<text x="1115.97" y="1743.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,300,278 samples, 0.02%)</title><rect x="579.3" y="1893" width="0.2" height="15.0" fill="rgb(214,190,30)" rx="2" ry="2" />
<text x="582.34" y="1903.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,399,238 samples, 0.03%)</title><rect x="571.0" y="1925" width="0.4" height="15.0" fill="rgb(236,195,2)" rx="2" ry="2" />
<text x="574.01" y="1935.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (3,465,817 samples, 0.02%)</title><rect x="926.2" y="1397" width="0.2" height="15.0" fill="rgb(236,192,47)" rx="2" ry="2" />
<text x="929.24" y="1407.5" ></text>
</g>
<g >
<title>nf_hook_slow (54,621,545 samples, 0.26%)</title><rect x="716.9" y="1573" width="3.0" height="15.0" fill="rgb(205,133,3)" rx="2" ry="2" />
<text x="719.85" y="1583.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,738,833 samples, 0.02%)</title><rect x="1112.2" y="1941" width="0.2" height="15.0" fill="rgb(248,159,12)" rx="2" ry="2" />
<text x="1115.19" y="1951.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1301" width="1.1" height="15.0" fill="rgb(242,201,14)" rx="2" ry="2" />
<text x="886.75" y="1311.5" ></text>
</g>
<g >
<title>nf_hook_slow (4,943,911 samples, 0.02%)</title><rect x="413.9" y="1781" width="0.3" height="15.0" fill="rgb(234,99,12)" rx="2" ry="2" />
<text x="416.93" y="1791.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (17,324,913 samples, 0.08%)</title><rect x="687.3" y="1749" width="1.0" height="15.0" fill="rgb(236,48,23)" rx="2" ry="2" />
<text x="690.30" y="1759.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,326,584 samples, 0.01%)</title><rect x="969.6" y="1797" width="0.1" height="15.0" fill="rgb(222,75,31)" rx="2" ry="2" />
<text x="972.59" y="1807.5" ></text>
</g>
<g >
<title>unmap_single_vma (2,690,340 samples, 0.01%)</title><rect x="960.3" y="1877" width="0.2" height="15.0" fill="rgb(224,200,8)" rx="2" ry="2" />
<text x="963.32" y="1887.5" ></text>
</g>
<g >
<title>__napi_poll (1,862,831 samples, 0.01%)</title><rect x="602.3" y="1861" width="0.1" height="15.0" fill="rgb(238,48,30)" rx="2" ry="2" />
<text x="605.32" y="1871.5" ></text>
</g>
<g >
<title>__put_cred (2,709,604 samples, 0.01%)</title><rect x="859.1" y="1941" width="0.1" height="15.0" fill="rgb(244,133,15)" rx="2" ry="2" />
<text x="862.09" y="1951.5" ></text>
</g>
<g >
<title>rtl_tx (1,877,724 samples, 0.01%)</title><rect x="504.5" y="1925" width="0.1" height="15.0" fill="rgb(234,158,9)" rx="2" ry="2" />
<text x="507.51" y="1935.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1093" width="1.1" height="15.0" fill="rgb(239,85,32)" rx="2" ry="2" />
<text x="886.75" y="1103.5" ></text>
</g>
<g >
<title>net_rx_action (69,269,534 samples, 0.32%)</title><rect x="512.3" y="1957" width="3.8" height="15.0" fill="rgb(233,168,33)" rx="2" ry="2" />
<text x="515.30" y="1967.5" ></text>
</g>
<g >
<title>common_interrupt (1,909,786 samples, 0.01%)</title><rect x="831.7" y="1893" width="0.1" height="15.0" fill="rgb(217,138,10)" rx="2" ry="2" />
<text x="834.74" y="1903.5" ></text>
</g>
<g >
<title>avahi-daemon (22,848,119 samples, 0.11%)</title><rect x="15.3" y="2069" width="1.3" height="15.0" fill="rgb(242,111,33)" rx="2" ry="2" />
<text x="18.33" y="2079.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,903,740 samples, 0.01%)</title><rect x="885.3" y="1797" width="0.1" height="15.0" fill="rgb(225,222,53)" rx="2" ry="2" />
<text x="888.26" y="1807.5" ></text>
</g>
<g >
<title>__napi_poll (748,517,461 samples, 3.50%)</title><rect x="649.0" y="1829" width="41.3" height="15.0" fill="rgb(208,18,3)" rx="2" ry="2" />
<text x="652.01" y="1839.5" >__n..</text>
</g>
<g >
<title>acpi_pci_set_power_state (1,885,222 samples, 0.01%)</title><rect x="64.2" y="1717" width="0.1" height="15.0" fill="rgb(236,17,25)" rx="2" ry="2" />
<text x="67.17" y="1727.5" ></text>
</g>
<g >
<title>[snap-exec] (7,294,989 samples, 0.03%)</title><rect x="872.0" y="1989" width="0.4" height="15.0" fill="rgb(253,209,48)" rx="2" ry="2" />
<text x="874.96" y="1999.5" ></text>
</g>
<g >
<title>ip6_route_input (1,825,696 samples, 0.01%)</title><rect x="979.8" y="1749" width="0.1" height="15.0" fill="rgb(236,206,14)" rx="2" ry="2" />
<text x="982.77" y="1759.5" ></text>
</g>
<g >
<title>__irqentry_text_start (2,304,125 samples, 0.01%)</title><rect x="403.0" y="1989" width="0.2" height="15.0" fill="rgb(216,229,21)" rx="2" ry="2" />
<text x="406.02" y="1999.5" ></text>
</g>
<g >
<title>dequeue_skb (14,835,311 samples, 0.07%)</title><rect x="1131.3" y="1525" width="0.8" height="15.0" fill="rgb(229,213,40)" rx="2" ry="2" />
<text x="1134.30" y="1535.5" ></text>
</g>
<g >
<title>[unknown] (9,934,263 samples, 0.05%)</title><rect x="479.0" y="1653" width="0.5" height="15.0" fill="rgb(236,13,21)" rx="2" ry="2" />
<text x="481.96" y="1663.5" ></text>
</g>
<g >
<title>neigh_resolve_output (22,018,974 samples, 0.10%)</title><rect x="1010.5" y="1637" width="1.2" height="15.0" fill="rgb(246,49,36)" rx="2" ry="2" />
<text x="1013.51" y="1647.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,735,947 samples, 0.02%)</title><rect x="572.3" y="1909" width="0.2" height="15.0" fill="rgb(207,206,49)" rx="2" ry="2" />
<text x="575.32" y="1919.5" ></text>
</g>
<g >
<title>__napi_poll (2,900,129 samples, 0.01%)</title><rect x="401.5" y="213" width="0.2" height="15.0" fill="rgb(213,28,46)" rx="2" ry="2" />
<text x="404.52" y="223.5" ></text>
</g>
<g >
<title>strncpy (1,912,138 samples, 0.01%)</title><rect x="537.0" y="1813" width="0.1" height="15.0" fill="rgb(236,198,5)" rx="2" ry="2" />
<text x="539.96" y="1823.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="853" width="0.5" height="15.0" fill="rgb(242,50,45)" rx="2" ry="2" />
<text x="18.42" y="863.5" ></text>
</g>
<g >
<title>[unknown] (137,881,383 samples, 0.64%)</title><rect x="393.5" y="261" width="7.6" height="15.0" fill="rgb(239,164,50)" rx="2" ry="2" />
<text x="396.46" y="271.5" ></text>
</g>
<g >
<title>step_into (1,919,261 samples, 0.01%)</title><rect x="954.0" y="1877" width="0.1" height="15.0" fill="rgb(223,7,45)" rx="2" ry="2" />
<text x="956.95" y="1887.5" ></text>
</g>
<g >
<title>sch_direct_xmit (7,875,543 samples, 0.04%)</title><rect x="1003.4" y="1573" width="0.4" height="15.0" fill="rgb(246,20,34)" rx="2" ry="2" />
<text x="1006.41" y="1583.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="965" width="0.5" height="15.0" fill="rgb(216,67,6)" rx="2" ry="2" />
<text x="18.42" y="975.5" ></text>
</g>
<g >
<title>__netif_receive_skb (5,835,326 samples, 0.03%)</title><rect x="1169.5" y="1765" width="0.3" height="15.0" fill="rgb(212,88,20)" rx="2" ry="2" />
<text x="1172.46" y="1775.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (2,684,281 samples, 0.01%)</title><rect x="451.7" y="1845" width="0.2" height="15.0" fill="rgb(248,86,31)" rx="2" ry="2" />
<text x="454.73" y="1855.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (4,595,483 samples, 0.02%)</title><rect x="412.4" y="1685" width="0.2" height="15.0" fill="rgb(249,25,3)" rx="2" ry="2" />
<text x="415.38" y="1695.5" ></text>
</g>
<g >
<title>unmap_page_range (10,624,953 samples, 0.05%)</title><rect x="27.8" y="1797" width="0.6" height="15.0" fill="rgb(231,219,26)" rx="2" ry="2" />
<text x="30.83" y="1807.5" ></text>
</g>
<g >
<title>tun_get_user (3,898,046,533 samples, 18.21%)</title><rect x="614.9" y="1925" width="214.9" height="15.0" fill="rgb(207,93,26)" rx="2" ry="2" />
<text x="617.95" y="1935.5" >tun_get_user</text>
</g>
<g >
<title>[unknown] (17,819,376 samples, 0.08%)</title><rect x="678.9" y="1653" width="0.9" height="15.0" fill="rgb(234,85,16)" rx="2" ry="2" />
<text x="681.86" y="1663.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (9,775,468 samples, 0.05%)</title><rect x="621.7" y="1861" width="0.6" height="15.0" fill="rgb(231,49,52)" rx="2" ry="2" />
<text x="624.75" y="1871.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (12,923,156 samples, 0.06%)</title><rect x="620.2" y="1845" width="0.7" height="15.0" fill="rgb(242,189,21)" rx="2" ry="2" />
<text x="623.16" y="1855.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,861,710 samples, 0.01%)</title><rect x="572.5" y="1893" width="0.1" height="15.0" fill="rgb(229,145,42)" rx="2" ry="2" />
<text x="575.54" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (9,895,822 samples, 0.05%)</title><rect x="1009.8" y="1525" width="0.5" height="15.0" fill="rgb(225,37,53)" rx="2" ry="2" />
<text x="1012.79" y="1535.5" ></text>
</g>
<g >
<title>ip6_output (286,400,005 samples, 1.34%)</title><rect x="719.9" y="1589" width="15.8" height="15.0" fill="rgb(241,56,2)" rx="2" ry="2" />
<text x="722.92" y="1599.5" ></text>
</g>
<g >
<title>do_group_exit (2,692,616 samples, 0.01%)</title><rect x="19.3" y="2005" width="0.2" height="15.0" fill="rgb(237,71,23)" rx="2" ry="2" />
<text x="22.34" y="2015.5" ></text>
</g>
<g >
<title>posix_cpu_clock_get (5,329,616 samples, 0.02%)</title><rect x="453.9" y="1941" width="0.3" height="15.0" fill="rgb(229,96,33)" rx="2" ry="2" />
<text x="456.88" y="1951.5" ></text>
</g>
<g >
<title>schedule (2,623,276 samples, 0.01%)</title><rect x="507.4" y="1925" width="0.2" height="15.0" fill="rgb(241,172,30)" rx="2" ry="2" />
<text x="510.42" y="1935.5" ></text>
</g>
<g >
<title>common_interrupt (1,913,513 samples, 0.01%)</title><rect x="636.0" y="1765" width="0.1" height="15.0" fill="rgb(254,149,28)" rx="2" ry="2" />
<text x="638.96" y="1775.5" ></text>
</g>
<g >
<title>net_rx_action (2,551,641 samples, 0.01%)</title><rect x="573.7" y="1845" width="0.2" height="15.0" fill="rgb(221,57,36)" rx="2" ry="2" />
<text x="576.74" y="1855.5" ></text>
</g>
<g >
<title>nf_conntrack_in (3,724,595 samples, 0.02%)</title><rect x="1142.3" y="1653" width="0.2" height="15.0" fill="rgb(230,151,14)" rx="2" ry="2" />
<text x="1145.29" y="1663.5" ></text>
</g>
<g >
<title>page_remove_rmap (9,913,743 samples, 0.05%)</title><rect x="890.5" y="1749" width="0.5" height="15.0" fill="rgb(232,210,54)" rx="2" ry="2" />
<text x="893.46" y="1759.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (6,086,774 samples, 0.03%)</title><rect x="472.4" y="1797" width="0.3" height="15.0" fill="rgb(252,8,47)" rx="2" ry="2" />
<text x="475.39" y="1807.5" ></text>
</g>
<g >
<title>[snap-seccomp] (4,604,609 samples, 0.02%)</title><rect x="877.4" y="1813" width="0.3" height="15.0" fill="rgb(236,11,38)" rx="2" ry="2" />
<text x="880.44" y="1823.5" ></text>
</g>
<g >
<title>neigh_connected_output (3,708,645 samples, 0.02%)</title><rect x="1150.1" y="1621" width="0.2" height="15.0" fill="rgb(210,56,50)" rx="2" ry="2" />
<text x="1153.10" y="1631.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (1,825,696 samples, 0.01%)</title><rect x="979.8" y="1733" width="0.1" height="15.0" fill="rgb(234,106,25)" rx="2" ry="2" />
<text x="982.77" y="1743.5" ></text>
</g>
<g >
<title>charge_memcg (2,311,258 samples, 0.01%)</title><rect x="936.6" y="1861" width="0.1" height="15.0" fill="rgb(239,15,45)" rx="2" ry="2" />
<text x="939.56" y="1871.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (2,696,203 samples, 0.01%)</title><rect x="848.8" y="1957" width="0.1" height="15.0" fill="rgb(232,151,30)" rx="2" ry="2" />
<text x="851.79" y="1967.5" ></text>
</g>
<g >
<title>do_filp_open (1,927,894 samples, 0.01%)</title><rect x="902.3" y="1733" width="0.1" height="15.0" fill="rgb(212,77,47)" rx="2" ry="2" />
<text x="905.34" y="1743.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,052,125 samples, 0.01%)</title><rect x="833.1" y="1941" width="0.1" height="15.0" fill="rgb(221,152,49)" rx="2" ry="2" />
<text x="836.08" y="1951.5" ></text>
</g>
<g >
<title>sched_clock_cpu (4,284,371 samples, 0.02%)</title><rect x="1165.3" y="1877" width="0.3" height="15.0" fill="rgb(227,50,2)" rx="2" ry="2" />
<text x="1168.33" y="1887.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (3,326,155 samples, 0.02%)</title><rect x="1132.1" y="1509" width="0.2" height="15.0" fill="rgb(225,37,27)" rx="2" ry="2" />
<text x="1135.12" y="1519.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (16,971,472 samples, 0.08%)</title><rect x="926.1" y="1525" width="0.9" height="15.0" fill="rgb(230,16,1)" rx="2" ry="2" />
<text x="929.07" y="1535.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (28,544,499 samples, 0.13%)</title><rect x="1169.3" y="1893" width="1.6" height="15.0" fill="rgb(222,125,45)" rx="2" ry="2" />
<text x="1172.33" y="1903.5" ></text>
</g>
<g >
<title>ip_finish_output (34,838,406 samples, 0.16%)</title><rect x="1028.0" y="1669" width="1.9" height="15.0" fill="rgb(219,31,6)" rx="2" ry="2" />
<text x="1030.99" y="1679.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (101,360,309 samples, 0.47%)</title><rect x="438.3" y="1845" width="5.6" height="15.0" fill="rgb(218,210,4)" rx="2" ry="2" />
<text x="441.27" y="1855.5" ></text>
</g>
<g >
<title>fib4_rule_action (2,683,062 samples, 0.01%)</title><rect x="436.4" y="1749" width="0.2" height="15.0" fill="rgb(251,117,4)" rx="2" ry="2" />
<text x="439.41" y="1759.5" ></text>
</g>
<g >
<title>rcmd_af (74,975,600 samples, 0.35%)</title><rect x="72.2" y="1941" width="4.1" height="15.0" fill="rgb(230,49,2)" rx="2" ry="2" />
<text x="75.15" y="1951.5" ></text>
</g>
<g >
<title>napi_complete_done (400,369,089 samples, 1.87%)</title><rect x="660.7" y="1797" width="22.1" height="15.0" fill="rgb(226,143,31)" rx="2" ry="2" />
<text x="663.70" y="1807.5" >n..</text>
</g>
<g >
<title>[snap] (147,128,093 samples, 0.69%)</title><rect x="880.3" y="1973" width="8.1" height="15.0" fill="rgb(242,90,19)" rx="2" ry="2" />
<text x="883.28" y="1983.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (3,458,694 samples, 0.02%)</title><rect x="879.2" y="2005" width="0.2" height="15.0" fill="rgb(244,50,41)" rx="2" ry="2" />
<text x="882.21" y="2015.5" ></text>
</g>
<g >
<title>mem_cgroup_wb_stats (2,091,574 samples, 0.01%)</title><rect x="65.0" y="1941" width="0.1" height="15.0" fill="rgb(214,220,0)" rx="2" ry="2" />
<text x="67.96" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,270,123 samples, 0.01%)</title><rect x="71.6" y="2005" width="0.1" height="15.0" fill="rgb(250,115,16)" rx="2" ry="2" />
<text x="74.58" y="2015.5" ></text>
</g>
<g >
<title>[snap] (106,734,817 samples, 0.50%)</title><rect x="891.4" y="1957" width="5.9" height="15.0" fill="rgb(228,143,23)" rx="2" ry="2" />
<text x="894.38" y="1967.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="613" width="0.5" height="15.0" fill="rgb(246,216,12)" rx="2" ry="2" />
<text x="18.42" y="623.5" ></text>
</g>
<g >
<title>do_sys_poll (3,212,261 samples, 0.02%)</title><rect x="44.4" y="1973" width="0.2" height="15.0" fill="rgb(223,51,18)" rx="2" ry="2" />
<text x="47.45" y="1983.5" ></text>
</g>
<g >
<title>squashfs_bio_read (5,385,675 samples, 0.03%)</title><rect x="906.7" y="1717" width="0.3" height="15.0" fill="rgb(244,96,13)" rx="2" ry="2" />
<text x="909.66" y="1727.5" ></text>
</g>
<g >
<title>__fib_lookup (8,764,980 samples, 0.04%)</title><rect x="655.4" y="1637" width="0.4" height="15.0" fill="rgb(206,62,11)" rx="2" ry="2" />
<text x="658.35" y="1647.5" ></text>
</g>
<g >
<title>nf_hook_slow (3,412,114 samples, 0.02%)</title><rect x="513.0" y="1861" width="0.2" height="15.0" fill="rgb(229,215,22)" rx="2" ry="2" />
<text x="516.00" y="1871.5" ></text>
</g>
<g >
<title>do_wait (5,660,552 samples, 0.03%)</title><rect x="29.0" y="1957" width="0.3" height="15.0" fill="rgb(214,91,2)" rx="2" ry="2" />
<text x="32.03" y="1967.5" ></text>
</g>
<g >
<title>page_frag_alloc_align (11,389,036 samples, 0.05%)</title><rect x="684.3" y="1765" width="0.6" height="15.0" fill="rgb(251,115,19)" rx="2" ry="2" />
<text x="687.25" y="1775.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1733" width="0.5" height="15.0" fill="rgb(213,1,22)" rx="2" ry="2" />
<text x="18.42" y="1743.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,738,833 samples, 0.02%)</title><rect x="1112.2" y="1877" width="0.2" height="15.0" fill="rgb(214,212,8)" rx="2" ry="2" />
<text x="1115.19" y="1887.5" ></text>
</g>
<g >
<title>bprm_execve (11,736,506 samples, 0.05%)</title><rect x="34.6" y="1957" width="0.6" height="15.0" fill="rgb(227,142,32)" rx="2" ry="2" />
<text x="37.56" y="1967.5" ></text>
</g>
<g >
<title>[snap] (24,041,840 samples, 0.11%)</title><rect x="883.7" y="1685" width="1.3" height="15.0" fill="rgb(237,103,44)" rx="2" ry="2" />
<text x="886.67" y="1695.5" ></text>
</g>
<g >
<title>net_rx_action (736,363,978 samples, 3.44%)</title><rect x="464.1" y="1957" width="40.6" height="15.0" fill="rgb(237,136,48)" rx="2" ry="2" />
<text x="467.13" y="1967.5" >net..</text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (3,234,380 samples, 0.02%)</title><rect x="681.2" y="1717" width="0.2" height="15.0" fill="rgb(223,21,43)" rx="2" ry="2" />
<text x="684.22" y="1727.5" ></text>
</g>
<g >
<title>sch_direct_xmit (31,487,415 samples, 0.15%)</title><rect x="560.0" y="1941" width="1.8" height="15.0" fill="rgb(206,133,25)" rx="2" ry="2" />
<text x="563.04" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (14,082,009 samples, 0.07%)</title><rect x="670.2" y="1669" width="0.8" height="15.0" fill="rgb(212,4,19)" rx="2" ry="2" />
<text x="673.23" y="1679.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (2,645,412 samples, 0.01%)</title><rect x="1102.4" y="1717" width="0.1" height="15.0" fill="rgb(222,141,50)" rx="2" ry="2" />
<text x="1105.40" y="1727.5" ></text>
</g>
<g >
<title>skb_release_data (2,187,262 samples, 0.01%)</title><rect x="548.3" y="1845" width="0.1" height="15.0" fill="rgb(226,176,27)" rx="2" ry="2" />
<text x="551.30" y="1855.5" ></text>
</g>
<g >
<title>worker_thread (10,385,157 samples, 0.05%)</title><rect x="64.7" y="2021" width="0.6" height="15.0" fill="rgb(219,90,15)" rx="2" ry="2" />
<text x="67.73" y="2031.5" ></text>
</g>
<g >
<title>[snapd] (32,717,359 samples, 0.15%)</title><rect x="973.7" y="1989" width="1.8" height="15.0" fill="rgb(228,146,4)" rx="2" ry="2" />
<text x="976.67" y="1999.5" ></text>
</g>
<g >
<title>ip_rcv (16,161,128 samples, 0.08%)</title><rect x="51.0" y="1893" width="0.9" height="15.0" fill="rgb(235,131,33)" rx="2" ry="2" />
<text x="53.97" y="1903.5" ></text>
</g>
<g >
<title>handle_mm_fault (10,666,951 samples, 0.05%)</title><rect x="33.6" y="1973" width="0.6" height="15.0" fill="rgb(243,211,45)" rx="2" ry="2" />
<text x="36.61" y="1983.5" ></text>
</g>
<g >
<title>rtl8169_tx_map (2,246,671 samples, 0.01%)</title><rect x="1154.5" y="1717" width="0.1" height="15.0" fill="rgb(244,215,14)" rx="2" ry="2" />
<text x="1157.47" y="1727.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1829" width="0.5" height="15.0" fill="rgb(223,18,38)" rx="2" ry="2" />
<text x="18.42" y="1839.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (169,711,512 samples, 0.79%)</title><rect x="985.6" y="1845" width="9.4" height="15.0" fill="rgb(251,46,4)" rx="2" ry="2" />
<text x="988.60" y="1855.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (3,223,923 samples, 0.02%)</title><rect x="1169.5" y="1573" width="0.2" height="15.0" fill="rgb(230,11,38)" rx="2" ry="2" />
<text x="1172.52" y="1583.5" ></text>
</g>
<g >
<title>__idna_name_classify (6,202,599 samples, 0.03%)</title><rect x="861.8" y="2037" width="0.3" height="15.0" fill="rgb(215,97,26)" rx="2" ry="2" />
<text x="864.81" y="2047.5" ></text>
</g>
<g >
<title>nf_hook_slow (17,060,514 samples, 0.08%)</title><rect x="667.8" y="1701" width="0.9" height="15.0" fill="rgb(226,136,33)" rx="2" ry="2" />
<text x="670.79" y="1711.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (2,105,429 samples, 0.01%)</title><rect x="688.0" y="1557" width="0.1" height="15.0" fill="rgb(251,176,26)" rx="2" ry="2" />
<text x="690.98" y="1567.5" ></text>
</g>
<g >
<title>[unknown] (3,853,362 samples, 0.02%)</title><rect x="971.7" y="1989" width="0.2" height="15.0" fill="rgb(216,41,15)" rx="2" ry="2" />
<text x="974.67" y="1999.5" ></text>
</g>
<g >
<title>rw_verify_area (5,653,750 samples, 0.03%)</title><rect x="569.5" y="1973" width="0.3" height="15.0" fill="rgb(212,13,6)" rx="2" ry="2" />
<text x="572.46" y="1983.5" ></text>
</g>
<g >
<title>__napi_build_skb (3,799,604 samples, 0.02%)</title><rect x="498.8" y="1877" width="0.2" height="15.0" fill="rgb(241,224,9)" rx="2" ry="2" />
<text x="501.82" y="1887.5" ></text>
</g>
<g >
<title>__x64_sys_clock_gettime (9,824,678 samples, 0.05%)</title><rect x="430.2" y="1957" width="0.6" height="15.0" fill="rgb(205,86,4)" rx="2" ry="2" />
<text x="433.23" y="1967.5" ></text>
</g>
<g >
<title>ipv6_rcv (6,283,144 samples, 0.03%)</title><rect x="1169.9" y="1701" width="0.4" height="15.0" fill="rgb(236,36,19)" rx="2" ry="2" />
<text x="1172.93" y="1711.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (20,532,460 samples, 0.10%)</title><rect x="407.9" y="1829" width="1.1" height="15.0" fill="rgb(245,139,41)" rx="2" ry="2" />
<text x="410.89" y="1839.5" ></text>
</g>
<g >
<title>ip6_forward (57,315,810 samples, 0.27%)</title><rect x="540.7" y="1845" width="3.2" height="15.0" fill="rgb(209,121,39)" rx="2" ry="2" />
<text x="543.69" y="1855.5" ></text>
</g>
<g >
<title>tun_net_xmit (4,585,490 samples, 0.02%)</title><rect x="651.3" y="1541" width="0.3" height="15.0" fill="rgb(228,8,50)" rx="2" ry="2" />
<text x="654.33" y="1551.5" ></text>
</g>
<g >
<title>__pagevec_lru_add (2,697,255 samples, 0.01%)</title><rect x="939.1" y="1813" width="0.1" height="15.0" fill="rgb(244,75,32)" rx="2" ry="2" />
<text x="942.08" y="1823.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (6,845,786 samples, 0.03%)</title><rect x="449.6" y="1877" width="0.4" height="15.0" fill="rgb(228,112,7)" rx="2" ry="2" />
<text x="452.64" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (15,262,400 samples, 0.07%)</title><rect x="483.8" y="1797" width="0.9" height="15.0" fill="rgb(248,213,47)" rx="2" ry="2" />
<text x="486.84" y="1807.5" ></text>
</g>
<g >
<title>handle_edge_irq (210,035,493 samples, 0.98%)</title><rect x="984.3" y="1893" width="11.6" height="15.0" fill="rgb(225,207,10)" rx="2" ry="2" />
<text x="987.32" y="1903.5" ></text>
</g>
<g >
<title>__napi_poll (3,461,655 samples, 0.02%)</title><rect x="846.1" y="1957" width="0.2" height="15.0" fill="rgb(238,201,16)" rx="2" ry="2" />
<text x="849.06" y="1967.5" ></text>
</g>
<g >
<title>acpi_ps_execute_method (19,359,561 samples, 0.09%)</title><rect x="62.3" y="1797" width="1.1" height="15.0" fill="rgb(215,97,15)" rx="2" ry="2" />
<text x="65.29" y="1807.5" ></text>
</g>
<g >
<title>do_syscall_64 (12,317,399 samples, 0.06%)</title><rect x="842.8" y="2005" width="0.7" height="15.0" fill="rgb(222,133,11)" rx="2" ry="2" />
<text x="845.83" y="2015.5" ></text>
</g>
<g >
<title>__posix_spawn_file_actions_addopen (5,731,432 samples, 0.03%)</title><rect x="869.4" y="2053" width="0.3" height="15.0" fill="rgb(240,23,53)" rx="2" ry="2" />
<text x="872.39" y="2063.5" ></text>
</g>
<g >
<title>handle_edge_irq (2,534,267 samples, 0.01%)</title><rect x="556.4" y="1925" width="0.1" height="15.0" fill="rgb(217,214,51)" rx="2" ry="2" />
<text x="559.35" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,694,231 samples, 0.01%)</title><rect x="70.6" y="2053" width="0.2" height="15.0" fill="rgb(228,1,39)" rx="2" ry="2" />
<text x="73.63" y="2063.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,196,601 samples, 0.01%)</title><rect x="1171.8" y="1941" width="0.2" height="15.0" fill="rgb(224,39,50)" rx="2" ry="2" />
<text x="1174.84" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (7,224,362 samples, 0.03%)</title><rect x="1004.0" y="1701" width="0.4" height="15.0" fill="rgb(240,115,20)" rx="2" ry="2" />
<text x="1007.00" y="1711.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,928,863 samples, 0.01%)</title><rect x="71.6" y="1973" width="0.1" height="15.0" fill="rgb(233,204,23)" rx="2" ry="2" />
<text x="74.58" y="1983.5" ></text>
</g>
<g >
<title>vfs_open (2,691,664 samples, 0.01%)</title><rect x="866.7" y="1909" width="0.2" height="15.0" fill="rgb(231,217,32)" rx="2" ry="2" />
<text x="869.73" y="1919.5" ></text>
</g>
<g >
<title>schedule (1,990,607 samples, 0.01%)</title><rect x="71.9" y="1861" width="0.1" height="15.0" fill="rgb(244,141,17)" rx="2" ry="2" />
<text x="74.91" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (1,914,129 samples, 0.01%)</title><rect x="751.8" y="1573" width="0.2" height="15.0" fill="rgb(232,61,54)" rx="2" ry="2" />
<text x="754.85" y="1583.5" ></text>
</g>
<g >
<title>__netif_receive_skb (2,298,875 samples, 0.01%)</title><rect x="639.1" y="1717" width="0.2" height="15.0" fill="rgb(232,3,46)" rx="2" ry="2" />
<text x="642.15" y="1727.5" ></text>
</g>
<g >
<title>do_open_execat (2,239,783 samples, 0.01%)</title><rect x="34.6" y="1925" width="0.1" height="15.0" fill="rgb(239,224,41)" rx="2" ry="2" />
<text x="37.56" y="1935.5" ></text>
</g>
<g >
<title>do_exit (1,924,407 samples, 0.01%)</title><rect x="17.5" y="1989" width="0.1" height="15.0" fill="rgb(218,176,22)" rx="2" ry="2" />
<text x="20.48" y="1999.5" ></text>
</g>
<g >
<title>handle_edge_irq (35,928,140 samples, 0.17%)</title><rect x="403.3" y="1941" width="2.0" height="15.0" fill="rgb(232,191,8)" rx="2" ry="2" />
<text x="406.31" y="1951.5" ></text>
</g>
<g >
<title>exit_mmap (2,310,102 samples, 0.01%)</title><rect x="70.6" y="1941" width="0.2" height="15.0" fill="rgb(223,157,4)" rx="2" ry="2" />
<text x="73.63" y="1951.5" ></text>
</g>
<g >
<title>[snap] (29,921,544 samples, 0.14%)</title><rect x="900.0" y="1765" width="1.7" height="15.0" fill="rgb(248,53,14)" rx="2" ry="2" />
<text x="903.03" y="1775.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (18,304,611 samples, 0.09%)</title><rect x="1060.4" y="1877" width="1.0" height="15.0" fill="rgb(214,129,41)" rx="2" ry="2" />
<text x="1063.36" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,689,247 samples, 0.01%)</title><rect x="1188.8" y="2005" width="0.2" height="15.0" fill="rgb(241,216,49)" rx="2" ry="2" />
<text x="1191.81" y="2015.5" ></text>
</g>
<g >
<title>__vm_munmap (2,629,502 samples, 0.01%)</title><rect x="942.0" y="1989" width="0.2" height="15.0" fill="rgb(216,109,20)" rx="2" ry="2" />
<text x="945.01" y="1999.5" ></text>
</g>
<g >
<title>_nss_dns_gethostbyaddr2_r (2,681,364 samples, 0.01%)</title><rect x="878.9" y="2053" width="0.1" height="15.0" fill="rgb(213,40,5)" rx="2" ry="2" />
<text x="881.85" y="2063.5" ></text>
</g>
<g >
<title>ip_finish_output (14,218,974 samples, 0.07%)</title><rect x="1003.1" y="1685" width="0.8" height="15.0" fill="rgb(232,26,43)" rx="2" ry="2" />
<text x="1006.12" y="1695.5" ></text>
</g>
<g >
<title>[snap] (18,573,128 samples, 0.09%)</title><rect x="883.8" y="581" width="1.0" height="15.0" fill="rgb(242,18,0)" rx="2" ry="2" />
<text x="886.75" y="591.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,935,024 samples, 0.01%)</title><rect x="1120.9" y="1797" width="0.2" height="15.0" fill="rgb(250,189,31)" rx="2" ry="2" />
<text x="1123.95" y="1807.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="997" width="1.1" height="15.0" fill="rgb(229,32,51)" rx="2" ry="2" />
<text x="886.75" y="1007.5" ></text>
</g>
<g >
<title>__napi_alloc_skb (3,404,554 samples, 0.02%)</title><rect x="56.4" y="1909" width="0.2" height="15.0" fill="rgb(223,37,29)" rx="2" ry="2" />
<text x="59.42" y="1919.5" ></text>
</g>
<g >
<title>do_filp_open (8,089,441 samples, 0.04%)</title><rect x="866.6" y="1957" width="0.4" height="15.0" fill="rgb(206,17,52)" rx="2" ry="2" />
<text x="869.60" y="1967.5" ></text>
</g>
<g >
<title>pick_next_task (2,634,545 samples, 0.01%)</title><rect x="55.0" y="1973" width="0.2" height="15.0" fill="rgb(207,64,53)" rx="2" ry="2" />
<text x="58.03" y="1983.5" ></text>
</g>
<g >
<title>exc_page_fault (2,266,094 samples, 0.01%)</title><rect x="888.1" y="1941" width="0.1" height="15.0" fill="rgb(231,18,19)" rx="2" ry="2" />
<text x="891.06" y="1951.5" ></text>
</g>
<g >
<title>lzma_literal (3,086,247 samples, 0.01%)</title><rect x="907.9" y="1605" width="0.1" height="15.0" fill="rgb(236,112,38)" rx="2" ry="2" />
<text x="910.87" y="1615.5" ></text>
</g>
<g >
<title>___sys_sendmsg (1,915,343 samples, 0.01%)</title><rect x="1172.1" y="1941" width="0.1" height="15.0" fill="rgb(246,30,33)" rx="2" ry="2" />
<text x="1175.08" y="1951.5" ></text>
</g>
<g >
<title>asm_common_interrupt (23,529,461 samples, 0.11%)</title><rect x="925.7" y="1573" width="1.3" height="15.0" fill="rgb(249,158,46)" rx="2" ry="2" />
<text x="928.71" y="1583.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (8,257,905 samples, 0.04%)</title><rect x="1039.9" y="1509" width="0.5" height="15.0" fill="rgb(239,196,52)" rx="2" ry="2" />
<text x="1042.92" y="1519.5" ></text>
</g>
<g >
<title>ip6_finish_output (266,732,693 samples, 1.25%)</title><rect x="720.3" y="1573" width="14.7" height="15.0" fill="rgb(207,210,43)" rx="2" ry="2" />
<text x="723.32" y="1583.5" ></text>
</g>
<g >
<title>__do_sys_clone (6,959,086 samples, 0.03%)</title><rect x="963.0" y="1989" width="0.4" height="15.0" fill="rgb(254,120,43)" rx="2" ry="2" />
<text x="966.01" y="1999.5" ></text>
</g>
<g >
<title>thread_group_cputime (4,172,042 samples, 0.02%)</title><rect x="453.9" y="1909" width="0.2" height="15.0" fill="rgb(243,24,25)" rx="2" ry="2" />
<text x="456.92" y="1919.5" ></text>
</g>
<g >
<title>tun_net_xmit (16,684,770 samples, 0.08%)</title><rect x="1122.9" y="1509" width="0.9" height="15.0" fill="rgb(248,120,12)" rx="2" ry="2" />
<text x="1125.88" y="1519.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (5,205,434 samples, 0.02%)</title><rect x="501.3" y="1813" width="0.3" height="15.0" fill="rgb(207,138,47)" rx="2" ry="2" />
<text x="504.27" y="1823.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (12,756,139 samples, 0.06%)</title><rect x="1123.1" y="1477" width="0.7" height="15.0" fill="rgb(239,155,51)" rx="2" ry="2" />
<text x="1126.10" y="1487.5" ></text>
</g>
<g >
<title>process_backlog (2,298,875 samples, 0.01%)</title><rect x="639.1" y="1733" width="0.2" height="15.0" fill="rgb(244,183,26)" rx="2" ry="2" />
<text x="642.15" y="1743.5" ></text>
</g>
<g >
<title>tcp_seq_next (7,847,590 samples, 0.04%)</title><rect x="1179.1" y="1701" width="0.5" height="15.0" fill="rgb(247,97,15)" rx="2" ry="2" />
<text x="1182.12" y="1711.5" ></text>
</g>
<g >
<title>tracker-extract (144,991,975 samples, 0.68%)</title><rect x="1180.3" y="2069" width="8.0" height="15.0" fill="rgb(215,204,14)" rx="2" ry="2" />
<text x="1183.27" y="2079.5" ></text>
</g>
<g >
<title>exit_mmap (1,922,234 samples, 0.01%)</title><rect x="47.5" y="1941" width="0.1" height="15.0" fill="rgb(214,115,39)" rx="2" ry="2" />
<text x="50.48" y="1951.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (1,891,177 samples, 0.01%)</title><rect x="33.3" y="1845" width="0.1" height="15.0" fill="rgb(221,65,5)" rx="2" ry="2" />
<text x="36.32" y="1855.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,896,899 samples, 0.01%)</title><rect x="817.1" y="1717" width="0.1" height="15.0" fill="rgb(223,114,42)" rx="2" ry="2" />
<text x="820.11" y="1727.5" ></text>
</g>
<g >
<title>__napi_poll (5,289,879 samples, 0.02%)</title><rect x="639.1" y="1749" width="0.3" height="15.0" fill="rgb(206,104,19)" rx="2" ry="2" />
<text x="642.15" y="1759.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (16,630,311 samples, 0.08%)</title><rect x="1062.6" y="1797" width="0.9" height="15.0" fill="rgb(249,183,29)" rx="2" ry="2" />
<text x="1065.62" y="1807.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (5,408,958 samples, 0.03%)</title><rect x="69.4" y="2021" width="0.3" height="15.0" fill="rgb(247,41,36)" rx="2" ry="2" />
<text x="72.42" y="2031.5" ></text>
</g>
<g >
<title>bpf_prog_create_from_user (5,568,860 samples, 0.03%)</title><rect x="865.4" y="1941" width="0.3" height="15.0" fill="rgb(243,77,21)" rx="2" ry="2" />
<text x="868.44" y="1951.5" ></text>
</g>
<g >
<title>run_ksoftirqd (76,920,817 samples, 0.36%)</title><rect x="55.5" y="2005" width="4.2" height="15.0" fill="rgb(252,184,17)" rx="2" ry="2" />
<text x="58.48" y="2015.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,556,104 samples, 0.03%)</title><rect x="850.7" y="1989" width="0.3" height="15.0" fill="rgb(251,198,15)" rx="2" ry="2" />
<text x="853.66" y="1999.5" ></text>
</g>
<g >
<title>__napi_poll (2,277,135 samples, 0.01%)</title><rect x="833.5" y="1925" width="0.1" height="15.0" fill="rgb(230,12,9)" rx="2" ry="2" />
<text x="836.48" y="1935.5" ></text>
</g>
<g >
<title>__ip6_finish_output (127,265,114 samples, 0.59%)</title><rect x="1038.6" y="1653" width="7.0" height="15.0" fill="rgb(215,15,22)" rx="2" ry="2" />
<text x="1041.61" y="1663.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (6,771,016 samples, 0.03%)</title><rect x="15.4" y="133" width="0.4" height="15.0" fill="rgb(224,79,49)" rx="2" ry="2" />
<text x="18.42" y="143.5" ></text>
</g>
<g >
<title>__napi_build_skb (3,039,801 samples, 0.01%)</title><rect x="684.1" y="1765" width="0.1" height="15.0" fill="rgb(243,178,15)" rx="2" ry="2" />
<text x="687.06" y="1775.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (1,915,517 samples, 0.01%)</title><rect x="450.1" y="1701" width="0.1" height="15.0" fill="rgb(211,187,27)" rx="2" ry="2" />
<text x="453.14" y="1711.5" ></text>
</g>
<g >
<title>ip6_forward (7,268,049 samples, 0.03%)</title><rect x="424.7" y="1797" width="0.4" height="15.0" fill="rgb(241,50,54)" rx="2" ry="2" />
<text x="427.73" y="1807.5" ></text>
</g>
<g >
<title>[snap] (97,724,021 samples, 0.46%)</title><rect x="898.2" y="1941" width="5.4" height="15.0" fill="rgb(232,139,33)" rx="2" ry="2" />
<text x="901.19" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (4,946,174 samples, 0.02%)</title><rect x="1045.7" y="1653" width="0.3" height="15.0" fill="rgb(243,171,29)" rx="2" ry="2" />
<text x="1048.72" y="1663.5" ></text>
</g>
<g >
<title>do_syscall_64 (81,792,387 samples, 0.38%)</title><rect x="25.0" y="2021" width="4.5" height="15.0" fill="rgb(247,199,22)" rx="2" ry="2" />
<text x="27.98" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,731,432 samples, 0.03%)</title><rect x="869.4" y="2021" width="0.3" height="15.0" fill="rgb(232,35,15)" rx="2" ry="2" />
<text x="872.39" y="2031.5" ></text>
</g>
<g >
<title>process_backlog (117,879,598 samples, 0.55%)</title><rect x="1121.5" y="1781" width="6.5" height="15.0" fill="rgb(231,12,0)" rx="2" ry="2" />
<text x="1124.54" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (6,344,974 samples, 0.03%)</title><rect x="1004.1" y="1685" width="0.3" height="15.0" fill="rgb(232,146,13)" rx="2" ry="2" />
<text x="1007.05" y="1695.5" ></text>
</g>
<g >
<title>packet_rcv (4,591,702 samples, 0.02%)</title><rect x="479.9" y="1605" width="0.2" height="15.0" fill="rgb(240,18,9)" rx="2" ry="2" />
<text x="482.88" y="1615.5" ></text>
</g>
<g >
<title>walk_component (5,416,913 samples, 0.03%)</title><rect x="854.8" y="1909" width="0.3" height="15.0" fill="rgb(239,126,51)" rx="2" ry="2" />
<text x="857.82" y="1919.5" ></text>
</g>
<g >
<title>tcp_v6_early_demux.part.0 (4,884,825 samples, 0.02%)</title><rect x="677.6" y="1685" width="0.2" height="15.0" fill="rgb(228,120,52)" rx="2" ry="2" />
<text x="680.57" y="1695.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (5,775,281 samples, 0.03%)</title><rect x="843.6" y="1989" width="0.3" height="15.0" fill="rgb(232,101,37)" rx="2" ry="2" />
<text x="846.60" y="1999.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (2,199,494 samples, 0.01%)</title><rect x="419.7" y="1781" width="0.1" height="15.0" fill="rgb(253,32,39)" rx="2" ry="2" />
<text x="422.67" y="1791.5" ></text>
</g>
<g >
<title>net_rx_action (2,258,039 samples, 0.01%)</title><rect x="571.6" y="1877" width="0.1" height="15.0" fill="rgb(209,136,42)" rx="2" ry="2" />
<text x="574.61" y="1887.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="997" width="0.5" height="15.0" fill="rgb(244,204,14)" rx="2" ry="2" />
<text x="18.42" y="1007.5" ></text>
</g>
<g >
<title>fib4_rule_action (8,694,397 samples, 0.04%)</title><rect x="471.0" y="1765" width="0.5" height="15.0" fill="rgb(207,195,7)" rx="2" ry="2" />
<text x="474.01" y="1775.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,383,038,924 samples, 6.46%)</title><rect x="984.0" y="1941" width="76.2" height="15.0" fill="rgb(233,206,33)" rx="2" ry="2" />
<text x="986.99" y="1951.5" >asm_comm..</text>
</g>
<g >
<title>sched_clock_cpu (7,814,988 samples, 0.04%)</title><rect x="1103.6" y="1941" width="0.4" height="15.0" fill="rgb(227,190,41)" rx="2" ry="2" />
<text x="1106.57" y="1951.5" ></text>
</g>
<g >
<title>page_referenced (1,908,643 samples, 0.01%)</title><rect x="60.5" y="1925" width="0.1" height="15.0" fill="rgb(227,56,27)" rx="2" ry="2" />
<text x="63.54" y="1935.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (3,007,722 samples, 0.01%)</title><rect x="550.5" y="1845" width="0.1" height="15.0" fill="rgb(226,192,37)" rx="2" ry="2" />
<text x="553.47" y="1855.5" ></text>
</g>
<g >
<title>dequeue_skb (6,349,460 samples, 0.03%)</title><rect x="552.6" y="1941" width="0.4" height="15.0" fill="rgb(253,213,26)" rx="2" ry="2" />
<text x="555.61" y="1951.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (47,434,089 samples, 0.22%)</title><rect x="961.3" y="2053" width="2.6" height="15.0" fill="rgb(214,165,16)" rx="2" ry="2" />
<text x="964.29" y="2063.5" ></text>
</g>
<g >
<title>skb_checksum (3,380,867 samples, 0.02%)</title><rect x="500.7" y="1813" width="0.2" height="15.0" fill="rgb(218,55,17)" rx="2" ry="2" />
<text x="503.70" y="1823.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (31,510,235 samples, 0.15%)</title><rect x="480.8" y="1685" width="1.7" height="15.0" fill="rgb(217,25,48)" rx="2" ry="2" />
<text x="483.77" y="1695.5" ></text>
</g>
<g >
<title>[snap] (5,330,088 samples, 0.02%)</title><rect x="894.7" y="1477" width="0.3" height="15.0" fill="rgb(224,182,48)" rx="2" ry="2" />
<text x="897.68" y="1487.5" ></text>
</g>
<g >
<title>ext4_reserve_inode_write (5,761,315 samples, 0.03%)</title><rect x="75.7" y="1701" width="0.3" height="15.0" fill="rgb(209,76,43)" rx="2" ry="2" />
<text x="78.71" y="1711.5" ></text>
</g>
<g >
<title>squashfs_cache_get (24,985,370 samples, 0.12%)</title><rect x="955.4" y="1781" width="1.4" height="15.0" fill="rgb(210,143,13)" rx="2" ry="2" />
<text x="958.39" y="1791.5" ></text>
</g>
<g >
<title>__fdget_pos (3,422,562 samples, 0.02%)</title><rect x="603.4" y="1989" width="0.2" height="15.0" fill="rgb(223,155,2)" rx="2" ry="2" />
<text x="606.45" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (14,279,288 samples, 0.07%)</title><rect x="486.0" y="1797" width="0.8" height="15.0" fill="rgb(226,11,17)" rx="2" ry="2" />
<text x="488.98" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (11,287,538 samples, 0.05%)</title><rect x="1135.8" y="1621" width="0.7" height="15.0" fill="rgb(247,128,53)" rx="2" ry="2" />
<text x="1138.84" y="1631.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (6,247,621 samples, 0.03%)</title><rect x="57.5" y="1813" width="0.3" height="15.0" fill="rgb(208,0,43)" rx="2" ry="2" />
<text x="60.46" y="1823.5" ></text>
</g>
<g >
<title>lzma_match (3,474,939 samples, 0.02%)</title><rect x="943.4" y="1605" width="0.2" height="15.0" fill="rgb(235,144,7)" rx="2" ry="2" />
<text x="946.42" y="1615.5" ></text>
</g>
<g >
<title>do_syscall_64 (16,648,423 samples, 0.08%)</title><rect x="865.3" y="2005" width="0.9" height="15.0" fill="rgb(252,57,41)" rx="2" ry="2" />
<text x="868.31" y="2015.5" ></text>
</g>
<g >
<title>__qdisc_run (4,884,943 samples, 0.02%)</title><rect x="1099.8" y="1557" width="0.3" height="15.0" fill="rgb(214,109,21)" rx="2" ry="2" />
<text x="1102.80" y="1567.5" ></text>
</g>
<g >
<title>do_page_cache_ra (2,938,484 samples, 0.01%)</title><rect x="940.1" y="1845" width="0.2" height="15.0" fill="rgb(215,204,34)" rx="2" ry="2" />
<text x="943.10" y="1855.5" ></text>
</g>
<g >
<title>__napi_poll (1,919,770 samples, 0.01%)</title><rect x="641.6" y="1749" width="0.1" height="15.0" fill="rgb(251,48,17)" rx="2" ry="2" />
<text x="644.64" y="1759.5" ></text>
</g>
<g >
<title>napi_consume_skb (2,361,927 samples, 0.01%)</title><rect x="58.2" y="1909" width="0.1" height="15.0" fill="rgb(237,201,43)" rx="2" ry="2" />
<text x="61.16" y="1919.5" ></text>
</g>
<g >
<title>common_interrupt (4,617,818 samples, 0.02%)</title><rect x="846.0" y="2021" width="0.3" height="15.0" fill="rgb(241,186,43)" rx="2" ry="2" />
<text x="849.00" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (47,418,309 samples, 0.22%)</title><rect x="517.1" y="1909" width="2.6" height="15.0" fill="rgb(249,227,13)" rx="2" ry="2" />
<text x="520.05" y="1919.5" ></text>
</g>
<g >
<title>net_rx_action (6,556,104 samples, 0.03%)</title><rect x="850.7" y="1957" width="0.3" height="15.0" fill="rgb(225,158,49)" rx="2" ry="2" />
<text x="853.66" y="1967.5" ></text>
</g>
<g >
<title>rtl_rx (2,559,148 samples, 0.01%)</title><rect x="978.5" y="1877" width="0.2" height="15.0" fill="rgb(247,144,37)" rx="2" ry="2" />
<text x="981.55" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,465,600 samples, 0.02%)</title><rect x="947.2" y="2053" width="0.3" height="15.0" fill="rgb(226,148,49)" rx="2" ry="2" />
<text x="950.20" y="2063.5" ></text>
</g>
<g >
<title>__irqentry_text_start (20,359,354 samples, 0.10%)</title><rect x="528.5" y="2037" width="1.1" height="15.0" fill="rgb(238,14,28)" rx="2" ry="2" />
<text x="531.51" y="2047.5" ></text>
</g>
<g >
<title>filemap_map_pages (4,996,350 samples, 0.02%)</title><rect x="938.7" y="1861" width="0.3" height="15.0" fill="rgb(242,83,49)" rx="2" ry="2" />
<text x="941.72" y="1871.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (12,213,184 samples, 0.06%)</title><rect x="63.7" y="1893" width="0.7" height="15.0" fill="rgb(213,74,46)" rx="2" ry="2" />
<text x="66.75" y="1903.5" ></text>
</g>
<g >
<title>common_interrupt (2,238,361 samples, 0.01%)</title><rect x="586.1" y="1877" width="0.2" height="15.0" fill="rgb(239,181,3)" rx="2" ry="2" />
<text x="589.14" y="1887.5" ></text>
</g>
<g >
<title>assoc_dequote (3,071,346 samples, 0.01%)</title><rect x="38.4" y="2037" width="0.2" height="15.0" fill="rgb(205,58,54)" rx="2" ry="2" />
<text x="41.39" y="2047.5" ></text>
</g>
<g >
<title>do_csum (5,354,406 samples, 0.03%)</title><rect x="686.8" y="1653" width="0.3" height="15.0" fill="rgb(220,62,7)" rx="2" ry="2" />
<text x="689.78" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="549" width="8.8" height="15.0" fill="rgb(215,139,49)" rx="2" ry="2" />
<text x="396.46" y="559.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,203,132 samples, 0.01%)</title><rect x="897.0" y="1893" width="0.2" height="15.0" fill="rgb(209,104,54)" rx="2" ry="2" />
<text x="900.03" y="1903.5" ></text>
</g>
<g >
<title>nf_hook_slow (44,644,279 samples, 0.21%)</title><rect x="761.5" y="1781" width="2.5" height="15.0" fill="rgb(237,164,19)" rx="2" ry="2" />
<text x="764.51" y="1791.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,922,026 samples, 0.01%)</title><rect x="846.4" y="1781" width="0.1" height="15.0" fill="rgb(223,92,45)" rx="2" ry="2" />
<text x="849.44" y="1791.5" ></text>
</g>
<g >
<title>ip_forward_finish (40,009,250 samples, 0.19%)</title><rect x="1122.0" y="1701" width="2.2" height="15.0" fill="rgb(226,174,50)" rx="2" ry="2" />
<text x="1125.03" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (169,180,776 samples, 0.79%)</title><rect x="393.3" y="1941" width="9.3" height="15.0" fill="rgb(247,157,33)" rx="2" ry="2" />
<text x="396.26" y="1951.5" ></text>
</g>
<g >
<title>kfree (10,312,090 samples, 0.05%)</title><rect x="689.5" y="1733" width="0.5" height="15.0" fill="rgb(208,206,17)" rx="2" ry="2" />
<text x="692.47" y="1743.5" ></text>
</g>
<g >
<title>[snap] (153,983,800 samples, 0.72%)</title><rect x="880.2" y="1989" width="8.5" height="15.0" fill="rgb(244,145,22)" rx="2" ry="2" />
<text x="883.17" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="693" width="8.8" height="15.0" fill="rgb(251,81,21)" rx="2" ry="2" />
<text x="396.46" y="703.5" ></text>
</g>
<g >
<title>__ip6_finish_output (3,434,058 samples, 0.02%)</title><rect x="424.8" y="1749" width="0.1" height="15.0" fill="rgb(236,95,8)" rx="2" ry="2" />
<text x="427.75" y="1759.5" ></text>
</g>
<g >
<title>exit_mm (1,922,234 samples, 0.01%)</title><rect x="47.5" y="1973" width="0.1" height="15.0" fill="rgb(254,224,19)" rx="2" ry="2" />
<text x="50.48" y="1983.5" ></text>
</g>
<g >
<title>rcmd_af (6,474,670 samples, 0.03%)</title><rect x="1172.8" y="2037" width="0.3" height="15.0" fill="rgb(216,128,5)" rx="2" ry="2" />
<text x="1175.76" y="2047.5" ></text>
</g>
<g >
<title>irqentry_exit (1,915,131 samples, 0.01%)</title><rect x="526.2" y="1989" width="0.1" height="15.0" fill="rgb(235,87,51)" rx="2" ry="2" />
<text x="529.23" y="1999.5" ></text>
</g>
<g >
<title>acpi_ns_evaluate (1,885,222 samples, 0.01%)</title><rect x="64.2" y="1669" width="0.1" height="15.0" fill="rgb(244,205,37)" rx="2" ry="2" />
<text x="67.17" y="1679.5" ></text>
</g>
<g >
<title>neigh_resolve_output (7,216,333 samples, 0.03%)</title><rect x="482.7" y="1749" width="0.3" height="15.0" fill="rgb(222,123,54)" rx="2" ry="2" />
<text x="485.65" y="1759.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (8,323,343 samples, 0.04%)</title><rect x="424.1" y="1861" width="0.5" height="15.0" fill="rgb(248,120,6)" rx="2" ry="2" />
<text x="427.14" y="1871.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (15,374,349 samples, 0.07%)</title><rect x="1150.7" y="1733" width="0.9" height="15.0" fill="rgb(245,200,40)" rx="2" ry="2" />
<text x="1153.75" y="1743.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1973" width="0.5" height="15.0" fill="rgb(227,52,13)" rx="2" ry="2" />
<text x="18.42" y="1983.5" ></text>
</g>
<g >
<title>fib6_rule_action (3,765,694 samples, 0.02%)</title><rect x="1099.4" y="1653" width="0.2" height="15.0" fill="rgb(220,1,50)" rx="2" ry="2" />
<text x="1102.44" y="1663.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (3,738,884 samples, 0.02%)</title><rect x="421.5" y="1845" width="0.2" height="15.0" fill="rgb(234,111,13)" rx="2" ry="2" />
<text x="424.48" y="1855.5" ></text>
</g>
<g >
<title>process_one_work (3,954,538 samples, 0.02%)</title><rect x="61.2" y="2005" width="0.3" height="15.0" fill="rgb(229,13,1)" rx="2" ry="2" />
<text x="64.24" y="2015.5" ></text>
</g>
<g >
<title>__common_interrupt (2,203,800 samples, 0.01%)</title><rect x="771.6" y="1733" width="0.1" height="15.0" fill="rgb(230,79,5)" rx="2" ry="2" />
<text x="774.61" y="1743.5" ></text>
</g>
<g >
<title>ret_from_fork (28,348,179 samples, 0.13%)</title><rect x="62.1" y="2053" width="1.5" height="15.0" fill="rgb(249,99,2)" rx="2" ry="2" />
<text x="65.05" y="2063.5" ></text>
</g>
<g >
<title>resolve_normal_ct (3,376,029 samples, 0.02%)</title><rect x="741.0" y="1525" width="0.2" height="15.0" fill="rgb(236,73,6)" rx="2" ry="2" />
<text x="743.97" y="1535.5" ></text>
</g>
<g >
<title>dequeue_skb (3,220,486 samples, 0.02%)</title><rect x="1099.8" y="1541" width="0.2" height="15.0" fill="rgb(228,116,40)" rx="2" ry="2" />
<text x="1102.82" y="1551.5" ></text>
</g>
<g >
<title>rtl8169_poll (4,991,066 samples, 0.02%)</title><rect x="23.8" y="1941" width="0.2" height="15.0" fill="rgb(248,46,16)" rx="2" ry="2" />
<text x="26.77" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (3,018,939 samples, 0.01%)</title><rect x="1152.5" y="1749" width="0.2" height="15.0" fill="rgb(235,185,49)" rx="2" ry="2" />
<text x="1155.50" y="1759.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (65,689,697 samples, 0.31%)</title><rect x="1023.7" y="1733" width="3.6" height="15.0" fill="rgb(248,124,29)" rx="2" ry="2" />
<text x="1026.66" y="1743.5" ></text>
</g>
<g >
<title>ip6_route_input (3,106,873 samples, 0.01%)</title><rect x="495.2" y="1797" width="0.2" height="15.0" fill="rgb(242,28,33)" rx="2" ry="2" />
<text x="498.23" y="1807.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (13,981,591 samples, 0.07%)</title><rect x="523.9" y="1909" width="0.8" height="15.0" fill="rgb(222,92,17)" rx="2" ry="2" />
<text x="526.88" y="1919.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,940,384 samples, 0.01%)</title><rect x="856.2" y="1829" width="0.1" height="15.0" fill="rgb(214,152,12)" rx="2" ry="2" />
<text x="859.19" y="1839.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (1,877,313 samples, 0.01%)</title><rect x="559.5" y="1877" width="0.1" height="15.0" fill="rgb(208,14,49)" rx="2" ry="2" />
<text x="562.53" y="1887.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (1,924,422 samples, 0.01%)</title><rect x="956.9" y="1845" width="0.1" height="15.0" fill="rgb(220,89,28)" rx="2" ry="2" />
<text x="959.92" y="1855.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (5,236,148 samples, 0.02%)</title><rect x="474.3" y="1845" width="0.3" height="15.0" fill="rgb(222,161,24)" rx="2" ry="2" />
<text x="477.34" y="1855.5" ></text>
</g>
<g >
<title>napi_consume_skb (1,918,691 samples, 0.01%)</title><rect x="53.3" y="1909" width="0.1" height="15.0" fill="rgb(208,148,5)" rx="2" ry="2" />
<text x="56.30" y="1919.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,474,143 samples, 0.02%)</title><rect x="22.0" y="2005" width="0.2" height="15.0" fill="rgb(211,24,35)" rx="2" ry="2" />
<text x="25.03" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (7,946,470 samples, 0.04%)</title><rect x="20.4" y="2037" width="0.4" height="15.0" fill="rgb(216,67,8)" rx="2" ry="2" />
<text x="23.37" y="2047.5" ></text>
</g>
<g >
<title>rtl8169_poll (7,565,790 samples, 0.04%)</title><rect x="620.4" y="1797" width="0.4" height="15.0" fill="rgb(242,77,29)" rx="2" ry="2" />
<text x="623.43" y="1807.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (21,516,103 samples, 0.10%)</title><rect x="56.7" y="1877" width="1.2" height="15.0" fill="rgb(249,109,2)" rx="2" ry="2" />
<text x="59.74" y="1887.5" ></text>
</g>
<g >
<title>neigh_connected_output (9,133,753 samples, 0.04%)</title><rect x="435.2" y="1749" width="0.5" height="15.0" fill="rgb(232,113,49)" rx="2" ry="2" />
<text x="438.17" y="1759.5" ></text>
</g>
<g >
<title>[snap] (13,279,523 samples, 0.06%)</title><rect x="894.4" y="1717" width="0.8" height="15.0" fill="rgb(236,126,19)" rx="2" ry="2" />
<text x="897.45" y="1727.5" ></text>
</g>
<g >
<title>__netif_schedule (3,070,394 samples, 0.01%)</title><rect x="509.0" y="1925" width="0.2" height="15.0" fill="rgb(218,214,32)" rx="2" ry="2" />
<text x="512.02" y="1935.5" ></text>
</g>
<g >
<title>neigh_connected_output (36,486,037 samples, 0.17%)</title><rect x="650.3" y="1653" width="2.0" height="15.0" fill="rgb(217,184,30)" rx="2" ry="2" />
<text x="653.27" y="1663.5" ></text>
</g>
<g >
<title>ip6_output (2,385,677 samples, 0.01%)</title><rect x="52.1" y="1829" width="0.1" height="15.0" fill="rgb(228,206,39)" rx="2" ry="2" />
<text x="55.09" y="1839.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (3,420,954 samples, 0.02%)</title><rect x="622.0" y="1765" width="0.2" height="15.0" fill="rgb(205,211,22)" rx="2" ry="2" />
<text x="624.97" y="1775.5" ></text>
</g>
<g >
<title>fib6_rule_action (13,314,290 samples, 0.06%)</title><rect x="414.9" y="1733" width="0.7" height="15.0" fill="rgb(239,16,6)" rx="2" ry="2" />
<text x="417.91" y="1743.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (2,294,130 samples, 0.01%)</title><rect x="597.5" y="1573" width="0.2" height="15.0" fill="rgb(211,87,42)" rx="2" ry="2" />
<text x="600.54" y="1583.5" ></text>
</g>
<g >
<title>vfs_statx (1,940,731 samples, 0.01%)</title><rect x="855.7" y="1957" width="0.1" height="15.0" fill="rgb(240,135,18)" rx="2" ry="2" />
<text x="858.74" y="1967.5" ></text>
</g>
<g >
<title>tunnel46_rcv (2,236,967 samples, 0.01%)</title><rect x="544.2" y="1813" width="0.1" height="15.0" fill="rgb(245,128,54)" rx="2" ry="2" />
<text x="547.16" y="1823.5" ></text>
</g>
<g >
<title>__skb_checksum (6,887,881 samples, 0.03%)</title><rect x="686.7" y="1685" width="0.4" height="15.0" fill="rgb(238,13,32)" rx="2" ry="2" />
<text x="689.72" y="1695.5" ></text>
</g>
<g >
<title>ip_forward (2,621,736 samples, 0.01%)</title><rect x="56.9" y="1813" width="0.2" height="15.0" fill="rgb(222,168,13)" rx="2" ry="2" />
<text x="59.95" y="1823.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (1,917,509 samples, 0.01%)</title><rect x="427.1" y="1829" width="0.1" height="15.0" fill="rgb(252,30,27)" rx="2" ry="2" />
<text x="430.07" y="1839.5" ></text>
</g>
<g >
<title>skb_release_data (1,909,199 samples, 0.01%)</title><rect x="586.3" y="1909" width="0.1" height="15.0" fill="rgb(248,207,47)" rx="2" ry="2" />
<text x="589.28" y="1919.5" ></text>
</g>
<g >
<title>ip_rcv (2,286,587,697 samples, 10.68%)</title><rect x="700.8" y="1845" width="126.0" height="15.0" fill="rgb(221,159,14)" rx="2" ry="2" />
<text x="703.81" y="1855.5" >ip_rcv</text>
</g>
<g >
<title>ip6_sublist_rcv (2,201,939 samples, 0.01%)</title><rect x="1113.0" y="1765" width="0.1" height="15.0" fill="rgb(235,39,25)" rx="2" ry="2" />
<text x="1115.96" y="1775.5" ></text>
</g>
<g >
<title>__qdisc_run (5,349,531 samples, 0.02%)</title><rect x="466.9" y="1701" width="0.3" height="15.0" fill="rgb(240,22,43)" rx="2" ry="2" />
<text x="469.92" y="1711.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,301,743 samples, 0.01%)</title><rect x="641.6" y="1797" width="0.2" height="15.0" fill="rgb(252,29,36)" rx="2" ry="2" />
<text x="644.64" y="1807.5" ></text>
</g>
<g >
<title>process_backlog (80,186,163 samples, 0.37%)</title><rect x="535.0" y="1941" width="4.4" height="15.0" fill="rgb(239,53,21)" rx="2" ry="2" />
<text x="538.03" y="1951.5" ></text>
</g>
<g >
<title>__napi_poll (2,258,761 samples, 0.01%)</title><rect x="609.9" y="1861" width="0.2" height="15.0" fill="rgb(219,48,35)" rx="2" ry="2" />
<text x="612.93" y="1871.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,605,377 samples, 0.01%)</title><rect x="428.4" y="1781" width="0.2" height="15.0" fill="rgb(234,193,11)" rx="2" ry="2" />
<text x="431.42" y="1791.5" ></text>
</g>
<g >
<title>gro_cell_poll (2,662,726 samples, 0.01%)</title><rect x="50.7" y="1941" width="0.2" height="15.0" fill="rgb(226,5,31)" rx="2" ry="2" />
<text x="53.74" y="1951.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (187,258,293 samples, 0.87%)</title><rect x="649.2" y="1781" width="10.3" height="15.0" fill="rgb(226,205,14)" rx="2" ry="2" />
<text x="652.20" y="1791.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (6,395,439 samples, 0.03%)</title><rect x="1044.1" y="1493" width="0.3" height="15.0" fill="rgb(213,84,35)" rx="2" ry="2" />
<text x="1047.06" y="1503.5" ></text>
</g>
<g >
<title>sock_sendmsg (5,050,229 samples, 0.02%)</title><rect x="45.2" y="1909" width="0.3" height="15.0" fill="rgb(215,81,15)" rx="2" ry="2" />
<text x="48.24" y="1919.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (7,053,843 samples, 0.03%)</title><rect x="1044.0" y="1525" width="0.4" height="15.0" fill="rgb(207,126,48)" rx="2" ry="2" />
<text x="1047.04" y="1535.5" ></text>
</g>
<g >
<title>__pagevec_lru_add_fn (1,923,800 samples, 0.01%)</title><rect x="939.1" y="1797" width="0.1" height="15.0" fill="rgb(250,192,25)" rx="2" ry="2" />
<text x="942.10" y="1807.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (44,761,755 samples, 0.21%)</title><rect x="664.0" y="1589" width="2.5" height="15.0" fill="rgb(251,46,3)" rx="2" ry="2" />
<text x="667.04" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (28,453,912 samples, 0.13%)</title><rect x="657.1" y="1701" width="1.5" height="15.0" fill="rgb(234,58,22)" rx="2" ry="2" />
<text x="660.07" y="1711.5" ></text>
</g>
<g >
<title>zap_pte_range (1,923,818 samples, 0.01%)</title><rect x="19.4" y="1861" width="0.1" height="15.0" fill="rgb(242,12,23)" rx="2" ry="2" />
<text x="22.37" y="1871.5" ></text>
</g>
<g >
<title>ip6_pol_route (8,914,716 samples, 0.04%)</title><rect x="545.4" y="1749" width="0.5" height="15.0" fill="rgb(251,168,45)" rx="2" ry="2" />
<text x="548.42" y="1759.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (3,461,655 samples, 0.02%)</title><rect x="961.6" y="2021" width="0.2" height="15.0" fill="rgb(232,66,24)" rx="2" ry="2" />
<text x="964.59" y="2031.5" ></text>
</g>
<g >
<title>[systemd] (3,828,731 samples, 0.02%)</title><rect x="10.0" y="2021" width="0.2" height="15.0" fill="rgb(243,132,29)" rx="2" ry="2" />
<text x="13.00" y="2031.5" ></text>
</g>
<g >
<title>neigh_connected_output (11,807,291 samples, 0.06%)</title><rect x="406.7" y="1733" width="0.6" height="15.0" fill="rgb(231,190,26)" rx="2" ry="2" />
<text x="409.69" y="1743.5" ></text>
</g>
<g >
<title>[snap-exec] (4,981,788 samples, 0.02%)</title><rect x="872.0" y="1957" width="0.3" height="15.0" fill="rgb(235,53,54)" rx="2" ry="2" />
<text x="874.98" y="1967.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (2,229,093 samples, 0.01%)</title><rect x="1101.7" y="1733" width="0.1" height="15.0" fill="rgb(234,151,17)" rx="2" ry="2" />
<text x="1104.66" y="1743.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (3,053,802 samples, 0.01%)</title><rect x="733.9" y="1429" width="0.2" height="15.0" fill="rgb(227,55,49)" rx="2" ry="2" />
<text x="736.89" y="1439.5" ></text>
</g>
<g >
<title>walk_component (5,029,856 samples, 0.02%)</title><rect x="68.8" y="1893" width="0.2" height="15.0" fill="rgb(249,183,35)" rx="2" ry="2" />
<text x="71.76" y="1903.5" ></text>
</g>
<g >
<title>__schedule (2,376,812 samples, 0.01%)</title><rect x="48.0" y="1893" width="0.2" height="15.0" fill="rgb(246,163,24)" rx="2" ry="2" />
<text x="51.03" y="1903.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,821,064 samples, 0.01%)</title><rect x="607.6" y="1925" width="0.1" height="15.0" fill="rgb(239,13,29)" rx="2" ry="2" />
<text x="610.56" y="1935.5" ></text>
</g>
<g >
<title>ip_rcv (8,323,343 samples, 0.04%)</title><rect x="424.1" y="1845" width="0.5" height="15.0" fill="rgb(215,56,10)" rx="2" ry="2" />
<text x="427.14" y="1855.5" ></text>
</g>
<g >
<title>[snapd] (31,952,310 samples, 0.15%)</title><rect x="973.7" y="1925" width="1.8" height="15.0" fill="rgb(231,78,35)" rx="2" ry="2" />
<text x="976.71" y="1935.5" ></text>
</g>
<g >
<title>consume_skb (9,499,059 samples, 0.04%)</title><rect x="693.8" y="1733" width="0.5" height="15.0" fill="rgb(239,31,43)" rx="2" ry="2" />
<text x="696.76" y="1743.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (4,216,827 samples, 0.02%)</title><rect x="588.3" y="1765" width="0.2" height="15.0" fill="rgb(206,149,41)" rx="2" ry="2" />
<text x="591.25" y="1775.5" ></text>
</g>
<g >
<title>exc_page_fault (1,926,742 samples, 0.01%)</title><rect x="39.8" y="2005" width="0.1" height="15.0" fill="rgb(215,35,45)" rx="2" ry="2" />
<text x="42.84" y="2015.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (7,234,798 samples, 0.03%)</title><rect x="617.7" y="1909" width="0.4" height="15.0" fill="rgb(231,84,43)" rx="2" ry="2" />
<text x="620.67" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (4,160,378 samples, 0.02%)</title><rect x="691.5" y="1781" width="0.2" height="15.0" fill="rgb(207,176,13)" rx="2" ry="2" />
<text x="694.49" y="1791.5" ></text>
</g>
<g >
<title>dev_queue_xmit (3,193,829 samples, 0.01%)</title><rect x="495.5" y="1701" width="0.1" height="15.0" fill="rgb(245,128,15)" rx="2" ry="2" />
<text x="498.46" y="1711.5" ></text>
</g>
<g >
<title>xz_dec_run (21,152,418 samples, 0.10%)</title><rect x="955.6" y="1717" width="1.2" height="15.0" fill="rgb(229,170,3)" rx="2" ry="2" />
<text x="958.60" y="1727.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (4,983,157 samples, 0.02%)</title><rect x="53.8" y="1925" width="0.3" height="15.0" fill="rgb(224,62,7)" rx="2" ry="2" />
<text x="56.78" y="1935.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,801,232 samples, 0.02%)</title><rect x="632.6" y="1861" width="0.2" height="15.0" fill="rgb(254,176,33)" rx="2" ry="2" />
<text x="635.63" y="1871.5" ></text>
</g>
<g >
<title>task_tick_fair (4,106,506 samples, 0.02%)</title><rect x="509.7" y="1877" width="0.3" height="15.0" fill="rgb(208,111,19)" rx="2" ry="2" />
<text x="512.73" y="1887.5" ></text>
</g>
<g >
<title>nft_do_chain_ipv6 (3,001,398 samples, 0.01%)</title><rect x="1047.3" y="1669" width="0.1" height="15.0" fill="rgb(219,30,2)" rx="2" ry="2" />
<text x="1050.26" y="1679.5" ></text>
</g>
<g >
<title>net_rx_action (17,767,976 samples, 0.08%)</title><rect x="958.2" y="1973" width="1.0" height="15.0" fill="rgb(243,40,35)" rx="2" ry="2" />
<text x="961.19" y="1983.5" ></text>
</g>
<g >
<title>common_interrupt (5,376,702 samples, 0.03%)</title><rect x="23.8" y="2021" width="0.2" height="15.0" fill="rgb(220,120,30)" rx="2" ry="2" />
<text x="26.75" y="2031.5" ></text>
</g>
<g >
<title>__napi_poll (13,201,422 samples, 0.06%)</title><rect x="834.8" y="1909" width="0.7" height="15.0" fill="rgb(244,96,0)" rx="2" ry="2" />
<text x="837.77" y="1919.5" ></text>
</g>
<g >
<title>squashfs_readpage (1,891,043 samples, 0.01%)</title><rect x="965.9" y="1797" width="0.1" height="15.0" fill="rgb(234,131,19)" rx="2" ry="2" />
<text x="968.88" y="1807.5" ></text>
</g>
<g >
<title>ipv6_conntrack_in (5,844,429 samples, 0.03%)</title><rect x="1049.1" y="1701" width="0.3" height="15.0" fill="rgb(213,85,33)" rx="2" ry="2" />
<text x="1052.08" y="1711.5" ></text>
</g>
<g >
<title>fib_rules_lookup (4,106,986 samples, 0.02%)</title><rect x="1002.4" y="1621" width="0.2" height="15.0" fill="rgb(210,45,39)" rx="2" ry="2" />
<text x="1005.40" y="1631.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (1,917,458 samples, 0.01%)</title><rect x="553.7" y="1957" width="0.1" height="15.0" fill="rgb(224,166,22)" rx="2" ry="2" />
<text x="556.67" y="1967.5" ></text>
</g>
<g >
<title>__irqentry_text_end (2,285,795 samples, 0.01%)</title><rect x="431.1" y="2005" width="0.2" height="15.0" fill="rgb(205,6,27)" rx="2" ry="2" />
<text x="434.15" y="2015.5" ></text>
</g>
<g >
<title>napi_complete_done (1,825,956 samples, 0.01%)</title><rect x="598.8" y="1717" width="0.1" height="15.0" fill="rgb(220,147,36)" rx="2" ry="2" />
<text x="601.77" y="1727.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (15,464,762 samples, 0.07%)</title><rect x="52.0" y="1877" width="0.9" height="15.0" fill="rgb(245,197,4)" rx="2" ry="2" />
<text x="55.02" y="1887.5" ></text>
</g>
<g >
<title>csum_partial (2,244,676 samples, 0.01%)</title><rect x="549.9" y="1765" width="0.1" height="15.0" fill="rgb(228,159,52)" rx="2" ry="2" />
<text x="552.90" y="1775.5" ></text>
</g>
<g >
<title>ip6_output (3,138,206 samples, 0.01%)</title><rect x="56.1" y="1797" width="0.1" height="15.0" fill="rgb(208,150,43)" rx="2" ry="2" />
<text x="59.06" y="1807.5" ></text>
</g>
<g >
<title>__alloc_pages (4,588,832 samples, 0.02%)</title><rect x="418.5" y="1829" width="0.2" height="15.0" fill="rgb(243,122,5)" rx="2" ry="2" />
<text x="421.46" y="1839.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (3,083,398 samples, 0.01%)</title><rect x="845.2" y="1909" width="0.2" height="15.0" fill="rgb(223,82,10)" rx="2" ry="2" />
<text x="848.23" y="1919.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (5,410,216 samples, 0.03%)</title><rect x="966.5" y="1941" width="0.3" height="15.0" fill="rgb(222,27,9)" rx="2" ry="2" />
<text x="969.52" y="1951.5" ></text>
</g>
<g >
<title>[snap-exec] (3,823,862 samples, 0.02%)</title><rect x="872.0" y="1941" width="0.2" height="15.0" fill="rgb(237,115,51)" rx="2" ry="2" />
<text x="875.00" y="1951.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (12,384,691 samples, 0.06%)</title><rect x="467.4" y="1669" width="0.7" height="15.0" fill="rgb(209,73,52)" rx="2" ry="2" />
<text x="470.38" y="1679.5" ></text>
</g>
<g >
<title>tcp6_gro_receive (4,847,582 samples, 0.02%)</title><rect x="500.7" y="1845" width="0.2" height="15.0" fill="rgb(224,197,31)" rx="2" ry="2" />
<text x="503.65" y="1855.5" ></text>
</g>
<g >
<title>[snapctl] (32,888,258 samples, 0.15%)</title><rect x="945.1" y="1909" width="1.9" height="15.0" fill="rgb(244,221,51)" rx="2" ry="2" />
<text x="948.15" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (2,654,612 samples, 0.01%)</title><rect x="514.9" y="1797" width="0.1" height="15.0" fill="rgb(238,38,5)" rx="2" ry="2" />
<text x="517.88" y="1807.5" ></text>
</g>
<g >
<title>kfence_ksize (3,031,962 samples, 0.01%)</title><rect x="633.0" y="1861" width="0.1" height="15.0" fill="rgb(254,110,14)" rx="2" ry="2" />
<text x="635.97" y="1871.5" ></text>
</g>
<g >
<title>fib6_rule_action (10,794,076 samples, 0.05%)</title><rect x="545.3" y="1781" width="0.6" height="15.0" fill="rgb(226,154,4)" rx="2" ry="2" />
<text x="548.33" y="1791.5" ></text>
</g>
<g >
<title>squashfs_xz_uncompress (21,152,418 samples, 0.10%)</title><rect x="955.6" y="1733" width="1.2" height="15.0" fill="rgb(220,173,44)" rx="2" ry="2" />
<text x="958.60" y="1743.5" ></text>
</g>
<g >
<title>fib_validate_source (21,630,677 samples, 0.10%)</title><rect x="1025.6" y="1653" width="1.1" height="15.0" fill="rgb(250,119,48)" rx="2" ry="2" />
<text x="1028.55" y="1663.5" ></text>
</g>
<g >
<title>kfree (12,793,023 samples, 0.06%)</title><rect x="503.5" y="1845" width="0.7" height="15.0" fill="rgb(228,31,49)" rx="2" ry="2" />
<text x="506.54" y="1855.5" ></text>
</g>
<g >
<title>napi_consume_skb (10,073,617 samples, 0.05%)</title><rect x="446.7" y="1877" width="0.6" height="15.0" fill="rgb(242,38,24)" rx="2" ry="2" />
<text x="449.71" y="1887.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (2,970,736 samples, 0.01%)</title><rect x="57.5" y="1653" width="0.2" height="15.0" fill="rgb(234,14,31)" rx="2" ry="2" />
<text x="60.51" y="1663.5" ></text>
</g>
<g >
<title>dup_mm (3,321,518 samples, 0.02%)</title><rect x="1178.0" y="1941" width="0.1" height="15.0" fill="rgb(238,24,7)" rx="2" ry="2" />
<text x="1180.95" y="1951.5" ></text>
</g>
<g >
<title>ip6_forward (4,759,577 samples, 0.02%)</title><rect x="501.8" y="1781" width="0.3" height="15.0" fill="rgb(218,14,26)" rx="2" ry="2" />
<text x="504.85" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="869" width="0.3" height="15.0" fill="rgb(242,115,28)" rx="2" ry="2" />
<text x="23.41" y="879.5" ></text>
</g>
<g >
<title>__get_user_nocheck_1 (3,627,449 samples, 0.02%)</title><rect x="76.1" y="1765" width="0.2" height="15.0" fill="rgb(217,156,52)" rx="2" ry="2" />
<text x="79.05" y="1775.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,082,225 samples, 0.01%)</title><rect x="1063.4" y="1733" width="0.1" height="15.0" fill="rgb(230,167,31)" rx="2" ry="2" />
<text x="1066.42" y="1743.5" ></text>
</g>
<g >
<title>unmap_single_vma (2,261,645 samples, 0.01%)</title><rect x="947.3" y="1845" width="0.2" height="15.0" fill="rgb(212,97,53)" rx="2" ry="2" />
<text x="950.33" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,388,744 samples, 0.03%)</title><rect x="879.1" y="2053" width="0.3" height="15.0" fill="rgb(244,178,34)" rx="2" ry="2" />
<text x="882.11" y="2063.5" ></text>
</g>
<g >
<title>asm_common_interrupt (4,625,913 samples, 0.02%)</title><rect x="913.1" y="1573" width="0.2" height="15.0" fill="rgb(239,147,31)" rx="2" ry="2" />
<text x="916.09" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (14,820,712 samples, 0.07%)</title><rect x="481.2" y="1637" width="0.8" height="15.0" fill="rgb(230,113,21)" rx="2" ry="2" />
<text x="484.18" y="1647.5" ></text>
</g>
<g >
<title>apparmor_file_permission (17,333,746 samples, 0.08%)</title><rect x="831.0" y="1925" width="1.0" height="15.0" fill="rgb(208,1,42)" rx="2" ry="2" />
<text x="834.03" y="1935.5" ></text>
</g>
<g >
<title>squashfs_readpage_block (43,702,984 samples, 0.20%)</title><rect x="933.7" y="1765" width="2.5" height="15.0" fill="rgb(225,77,29)" rx="2" ry="2" />
<text x="936.75" y="1775.5" ></text>
</g>
<g >
<title>common_interrupt (3,750,806 samples, 0.02%)</title><rect x="512.1" y="1941" width="0.2" height="15.0" fill="rgb(247,116,40)" rx="2" ry="2" />
<text x="515.09" y="1951.5" ></text>
</g>
<g >
<title>copy_pmd_range (5,000,182 samples, 0.02%)</title><rect x="26.1" y="1877" width="0.2" height="15.0" fill="rgb(225,103,33)" rx="2" ry="2" />
<text x="29.05" y="1887.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (2,171,804 samples, 0.01%)</title><rect x="556.4" y="1893" width="0.1" height="15.0" fill="rgb(249,1,30)" rx="2" ry="2" />
<text x="559.35" y="1903.5" ></text>
</g>
<g >
<title>do_set_pte (1,923,653 samples, 0.01%)</title><rect x="846.7" y="1893" width="0.1" height="15.0" fill="rgb(244,138,33)" rx="2" ry="2" />
<text x="849.66" y="1903.5" ></text>
</g>
<g >
<title>kmem_cache_free (1,933,420 samples, 0.01%)</title><rect x="855.5" y="1925" width="0.2" height="15.0" fill="rgb(251,54,48)" rx="2" ry="2" />
<text x="858.54" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (2,317,362 samples, 0.01%)</title><rect x="37.7" y="2021" width="0.2" height="15.0" fill="rgb(237,136,2)" rx="2" ry="2" />
<text x="40.73" y="2031.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (191,841,109 samples, 0.90%)</title><rect x="588.6" y="1893" width="10.6" height="15.0" fill="rgb(237,158,1)" rx="2" ry="2" />
<text x="591.63" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,921,657 samples, 0.01%)</title><rect x="34.4" y="1813" width="0.1" height="15.0" fill="rgb(207,2,40)" rx="2" ry="2" />
<text x="37.41" y="1823.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (42,809,004 samples, 0.20%)</title><rect x="964.6" y="2021" width="2.4" height="15.0" fill="rgb(224,100,25)" rx="2" ry="2" />
<text x="967.65" y="2031.5" ></text>
</g>
<g >
<title>update_load_avg (5,403,779 samples, 0.03%)</title><rect x="584.4" y="1829" width="0.3" height="15.0" fill="rgb(244,225,24)" rx="2" ry="2" />
<text x="587.40" y="1839.5" ></text>
</g>
<g >
<title>__ext4_journal_stop (2,584,443 samples, 0.01%)</title><rect x="75.1" y="1717" width="0.1" height="15.0" fill="rgb(220,227,31)" rx="2" ry="2" />
<text x="78.10" y="1727.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (1,924,407 samples, 0.01%)</title><rect x="17.5" y="2021" width="0.1" height="15.0" fill="rgb(223,89,17)" rx="2" ry="2" />
<text x="20.48" y="2031.5" ></text>
</g>
<g >
<title>seq_escape (3,464,775 samples, 0.02%)</title><rect x="867.6" y="1877" width="0.1" height="15.0" fill="rgb(250,91,47)" rx="2" ry="2" />
<text x="870.55" y="1887.5" ></text>
</g>
<g >
<title>[snap] (18,573,128 samples, 0.09%)</title><rect x="883.8" y="405" width="1.0" height="15.0" fill="rgb(237,179,41)" rx="2" ry="2" />
<text x="886.75" y="415.5" ></text>
</g>
<g >
<title>[unknown] (166,211,774 samples, 0.78%)</title><rect x="393.3" y="1733" width="9.2" height="15.0" fill="rgb(239,22,43)" rx="2" ry="2" />
<text x="396.34" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (3,358,780 samples, 0.02%)</title><rect x="559.2" y="1909" width="0.2" height="15.0" fill="rgb(243,27,15)" rx="2" ry="2" />
<text x="562.20" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,449,712 samples, 0.02%)</title><rect x="869.7" y="2037" width="0.2" height="15.0" fill="rgb(246,57,44)" rx="2" ry="2" />
<text x="872.71" y="2047.5" ></text>
</g>
<g >
<title>blk_mq_run_work_fn (14,492,699 samples, 0.07%)</title><rect x="63.7" y="1989" width="0.8" height="15.0" fill="rgb(253,196,54)" rx="2" ry="2" />
<text x="66.68" y="1999.5" ></text>
</g>
<g >
<title>do_filp_open (1,923,065 samples, 0.01%)</title><rect x="16.7" y="1941" width="0.1" height="15.0" fill="rgb(232,192,34)" rx="2" ry="2" />
<text x="19.67" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (32,655,157 samples, 0.15%)</title><rect x="657.0" y="1717" width="1.8" height="15.0" fill="rgb(208,175,54)" rx="2" ry="2" />
<text x="659.98" y="1727.5" ></text>
</g>
<g >
<title>ip6_finish_output (65,309,166 samples, 0.31%)</title><rect x="663.5" y="1685" width="3.6" height="15.0" fill="rgb(246,198,23)" rx="2" ry="2" />
<text x="666.49" y="1695.5" ></text>
</g>
<g >
<title>lzma_main (14,627,351 samples, 0.07%)</title><rect x="942.8" y="1621" width="0.9" height="15.0" fill="rgb(220,225,21)" rx="2" ry="2" />
<text x="945.85" y="1631.5" ></text>
</g>
<g >
<title>rm (38,221,003 samples, 0.18%)</title><rect x="857.8" y="2069" width="2.1" height="15.0" fill="rgb(252,94,19)" rx="2" ry="2" />
<text x="860.77" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="1029" width="0.3" height="15.0" fill="rgb(206,117,11)" rx="2" ry="2" />
<text x="23.41" y="1039.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,886,621 samples, 0.01%)</title><rect x="942.2" y="2005" width="0.1" height="15.0" fill="rgb(208,184,20)" rx="2" ry="2" />
<text x="945.20" y="2015.5" ></text>
</g>
<g >
<title>neigh_resolve_output (1,829,918 samples, 0.01%)</title><rect x="550.8" y="1717" width="0.1" height="15.0" fill="rgb(212,80,44)" rx="2" ry="2" />
<text x="553.78" y="1727.5" ></text>
</g>
<g >
<title>__ipv6_chk_addr_and_flags (1,912,637 samples, 0.01%)</title><rect x="670.7" y="1605" width="0.1" height="15.0" fill="rgb(216,48,4)" rx="2" ry="2" />
<text x="673.74" y="1615.5" ></text>
</g>
<g >
<title>security_prepare_creds (4,644,113 samples, 0.02%)</title><rect x="851.8" y="1941" width="0.2" height="15.0" fill="rgb(209,4,2)" rx="2" ry="2" />
<text x="854.75" y="1951.5" ></text>
</g>
<g >
<title>nf_conntrack_in (8,316,151 samples, 0.04%)</title><rect x="494.2" y="1797" width="0.5" height="15.0" fill="rgb(234,127,40)" rx="2" ry="2" />
<text x="497.23" y="1807.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (3,999,883 samples, 0.02%)</title><rect x="1102.3" y="1733" width="0.2" height="15.0" fill="rgb(235,117,17)" rx="2" ry="2" />
<text x="1105.32" y="1743.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,993,270 samples, 0.01%)</title><rect x="886.7" y="1877" width="0.1" height="15.0" fill="rgb(225,164,53)" rx="2" ry="2" />
<text x="889.67" y="1887.5" ></text>
</g>
<g >
<title>__ip_finish_output (34,021,145 samples, 0.16%)</title><rect x="1122.2" y="1653" width="1.9" height="15.0" fill="rgb(209,141,1)" rx="2" ry="2" />
<text x="1125.23" y="1663.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,672,282 samples, 0.01%)</title><rect x="635.4" y="1685" width="0.1" height="15.0" fill="rgb(213,108,14)" rx="2" ry="2" />
<text x="638.37" y="1695.5" ></text>
</g>
<g >
<title>squashfs_readdir (5,029,039 samples, 0.02%)</title><rect x="963.5" y="1973" width="0.3" height="15.0" fill="rgb(234,44,52)" rx="2" ry="2" />
<text x="966.48" y="1983.5" ></text>
</g>
<g >
<title>ip_route_input_slow (2,681,758 samples, 0.01%)</title><rect x="424.3" y="1781" width="0.2" height="15.0" fill="rgb(243,115,12)" rx="2" ry="2" />
<text x="427.33" y="1791.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1557" width="0.5" height="15.0" fill="rgb(240,81,52)" rx="2" ry="2" />
<text x="18.42" y="1567.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (75,002,491 samples, 0.35%)</title><rect x="478.5" y="1717" width="4.1" height="15.0" fill="rgb(228,137,36)" rx="2" ry="2" />
<text x="481.48" y="1727.5" ></text>
</g>
<g >
<title>nft_do_chain_ipv4 (46,678,286 samples, 0.22%)</title><rect x="773.6" y="1797" width="2.6" height="15.0" fill="rgb(227,30,13)" rx="2" ry="2" />
<text x="776.60" y="1807.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (170,276,156 samples, 0.80%)</title><rect x="1005.4" y="1765" width="9.4" height="15.0" fill="rgb(218,221,28)" rx="2" ry="2" />
<text x="1008.44" y="1775.5" ></text>
</g>
<g >
<title>page_frag_alloc_align (4,588,832 samples, 0.02%)</title><rect x="418.5" y="1845" width="0.2" height="15.0" fill="rgb(214,83,32)" rx="2" ry="2" />
<text x="421.46" y="1855.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (3,608,902 samples, 0.02%)</title><rect x="1026.7" y="1669" width="0.2" height="15.0" fill="rgb(237,225,54)" rx="2" ry="2" />
<text x="1029.75" y="1679.5" ></text>
</g>
<g >
<title>dequeue_skb (4,767,243 samples, 0.02%)</title><rect x="1147.5" y="1781" width="0.3" height="15.0" fill="rgb(253,152,28)" rx="2" ry="2" />
<text x="1150.50" y="1791.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6,411,017 samples, 0.03%)</title><rect x="507.3" y="1957" width="0.3" height="15.0" fill="rgb(244,33,43)" rx="2" ry="2" />
<text x="510.27" y="1967.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,918,822 samples, 0.01%)</title><rect x="1186.2" y="1989" width="0.1" height="15.0" fill="rgb(213,73,48)" rx="2" ry="2" />
<text x="1189.23" y="1999.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (3,778,045 samples, 0.02%)</title><rect x="1169.5" y="1589" width="0.2" height="15.0" fill="rgb(223,60,17)" rx="2" ry="2" />
<text x="1172.50" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (159,622,705 samples, 0.75%)</title><rect x="393.5" y="469" width="8.8" height="15.0" fill="rgb(209,155,29)" rx="2" ry="2" />
<text x="396.46" y="479.5" ></text>
</g>
<g >
<title>ip6_route_input (3,338,239 samples, 0.02%)</title><rect x="1151.2" y="1669" width="0.2" height="15.0" fill="rgb(239,196,7)" rx="2" ry="2" />
<text x="1154.18" y="1679.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (2,264,339 samples, 0.01%)</title><rect x="726.3" y="1413" width="0.1" height="15.0" fill="rgb(230,123,22)" rx="2" ry="2" />
<text x="729.25" y="1423.5" ></text>
</g>
<g >
<title>common_interrupt (2,253,168 samples, 0.01%)</title><rect x="564.9" y="1989" width="0.1" height="15.0" fill="rgb(248,223,10)" rx="2" ry="2" />
<text x="567.91" y="1999.5" ></text>
</g>
<g >
<title>__slab_free (2,305,274 samples, 0.01%)</title><rect x="420.4" y="1797" width="0.1" height="15.0" fill="rgb(210,181,48)" rx="2" ry="2" />
<text x="423.38" y="1807.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,213,646 samples, 0.01%)</title><rect x="43.9" y="1957" width="0.2" height="15.0" fill="rgb(240,172,36)" rx="2" ry="2" />
<text x="46.95" y="1967.5" ></text>
</g>
<g >
<title>rtl_tx (6,228,979 samples, 0.03%)</title><rect x="57.9" y="1925" width="0.4" height="15.0" fill="rgb(221,153,17)" rx="2" ry="2" />
<text x="60.94" y="1935.5" ></text>
</g>
<g >
<title>__qdisc_run (104,647,782 samples, 0.49%)</title><rect x="690.6" y="1829" width="5.8" height="15.0" fill="rgb(241,8,46)" rx="2" ry="2" />
<text x="693.64" y="1839.5" ></text>
</g>
<g >
<title>sock_wfree (13,056,760 samples, 0.06%)</title><rect x="779.8" y="1813" width="0.7" height="15.0" fill="rgb(247,62,33)" rx="2" ry="2" />
<text x="782.75" y="1823.5" ></text>
</g>
<g >
<title>zap_pte_range (2,690,061 samples, 0.01%)</title><rect x="872.7" y="1765" width="0.1" height="15.0" fill="rgb(215,94,18)" rx="2" ry="2" />
<text x="875.68" y="1775.5" ></text>
</g>
<g >
<title>asm_common_interrupt (6,496,010 samples, 0.03%)</title><rect x="625.6" y="1845" width="0.3" height="15.0" fill="rgb(243,119,11)" rx="2" ry="2" />
<text x="628.59" y="1855.5" ></text>
</g>
<g >
<title>dequeue_task (2,787,402 samples, 0.01%)</title><rect x="59.9" y="1973" width="0.1" height="15.0" fill="rgb(254,105,33)" rx="2" ry="2" />
<text x="62.87" y="1983.5" ></text>
</g>
<g >
<title>tcp6_gro_receive (3,444,240 samples, 0.02%)</title><rect x="419.2" y="1813" width="0.2" height="15.0" fill="rgb(239,28,24)" rx="2" ry="2" />
<text x="422.23" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,692,616 samples, 0.01%)</title><rect x="19.3" y="2053" width="0.2" height="15.0" fill="rgb(234,194,35)" rx="2" ry="2" />
<text x="22.34" y="2063.5" ></text>
</g>
<g >
<title>__ip_rt_update_pmtu (11,662,058 samples, 0.05%)</title><rect x="746.0" y="1589" width="0.6" height="15.0" fill="rgb(215,216,3)" rx="2" ry="2" />
<text x="748.96" y="1599.5" ></text>
</g>
<g >
<title>search_binary_handler (1,922,816 samples, 0.01%)</title><rect x="17.1" y="1925" width="0.1" height="15.0" fill="rgb(222,170,32)" rx="2" ry="2" />
<text x="20.05" y="1935.5" ></text>
</g>
<g >
<title>__netif_receive_skb (187,637,785 samples, 0.88%)</title><rect x="649.2" y="1797" width="10.3" height="15.0" fill="rgb(235,143,43)" rx="2" ry="2" />
<text x="652.17" y="1807.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (7,567,270 samples, 0.04%)</title><rect x="686.0" y="1685" width="0.4" height="15.0" fill="rgb(245,203,34)" rx="2" ry="2" />
<text x="689.00" y="1695.5" ></text>
</g>
<g >
<title>__fget_light (9,437,037 samples, 0.04%)</title><rect x="568.1" y="1973" width="0.6" height="15.0" fill="rgb(249,164,1)" rx="2" ry="2" />
<text x="571.15" y="1983.5" ></text>
</g>
<g >
<title>[snap] (15,532,404 samples, 0.07%)</title><rect x="883.8" y="277" width="0.8" height="15.0" fill="rgb(224,46,7)" rx="2" ry="2" />
<text x="886.77" y="287.5" ></text>
</g>
<g >
<title>acpi_ex_access_region (2,285,909 samples, 0.01%)</title><rect x="62.7" y="1621" width="0.1" height="15.0" fill="rgb(227,190,20)" rx="2" ry="2" />
<text x="65.68" y="1631.5" ></text>
</g>
<g >
<title>handle_edge_irq (6,173,341 samples, 0.03%)</title><rect x="925.7" y="1525" width="0.3" height="15.0" fill="rgb(249,36,45)" rx="2" ry="2" />
<text x="928.71" y="1535.5" ></text>
</g>
<g >
<title>ip6_input (13,586,376 samples, 0.06%)</title><rect x="440.9" y="1813" width="0.7" height="15.0" fill="rgb(241,162,29)" rx="2" ry="2" />
<text x="443.88" y="1823.5" ></text>
</g>
<g >
<title>resolve_normal_ct (4,567,557 samples, 0.02%)</title><rect x="659.2" y="1701" width="0.2" height="15.0" fill="rgb(220,204,7)" rx="2" ry="2" />
<text x="662.16" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1349" width="0.3" height="15.0" fill="rgb(229,189,13)" rx="2" ry="2" />
<text x="23.41" y="1359.5" ></text>
</g>
<g >
<title>[unknown] (155,577,135 samples, 0.73%)</title><rect x="393.5" y="389" width="8.5" height="15.0" fill="rgb(254,69,47)" rx="2" ry="2" />
<text x="396.46" y="399.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,930,365 samples, 0.01%)</title><rect x="902.6" y="1733" width="0.1" height="15.0" fill="rgb(206,43,18)" rx="2" ry="2" />
<text x="905.63" y="1743.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (3,482,448 samples, 0.02%)</title><rect x="972.5" y="1925" width="0.2" height="15.0" fill="rgb(213,216,5)" rx="2" ry="2" />
<text x="975.46" y="1935.5" ></text>
</g>
<g >
<title>fib6_rule_action (10,065,358 samples, 0.05%)</title><rect x="442.2" y="1749" width="0.6" height="15.0" fill="rgb(207,70,27)" rx="2" ry="2" />
<text x="445.23" y="1759.5" ></text>
</g>
<g >
<title>filemap_fault (554,451,081 samples, 2.59%)</title><rect x="906.0" y="1861" width="30.6" height="15.0" fill="rgb(239,162,28)" rx="2" ry="2" />
<text x="909.00" y="1871.5" >fi..</text>
</g>
<g >
<title>cpuidle_enter (2,256,418,579 samples, 10.54%)</title><rect x="980.4" y="1973" width="124.4" height="15.0" fill="rgb(251,161,22)" rx="2" ry="2" />
<text x="983.40" y="1983.5" >cpuidle_enter</text>
</g>
<g >
<title>[snapctl] (25,969,333 samples, 0.12%)</title><rect x="945.4" y="1861" width="1.5" height="15.0" fill="rgb(227,228,47)" rx="2" ry="2" />
<text x="948.42" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1749" width="0.3" height="15.0" fill="rgb(208,120,7)" rx="2" ry="2" />
<text x="23.41" y="1759.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (10,192,906 samples, 0.05%)</title><rect x="450.0" y="1861" width="0.6" height="15.0" fill="rgb(246,41,31)" rx="2" ry="2" />
<text x="453.03" y="1871.5" ></text>
</g>
<g >
<title>exc_page_fault (40,752,250 samples, 0.19%)</title><rect x="955.1" y="2005" width="2.3" height="15.0" fill="rgb(208,147,41)" rx="2" ry="2" />
<text x="958.14" y="2015.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.0 (1,901,184 samples, 0.01%)</title><rect x="862.6" y="1989" width="0.1" height="15.0" fill="rgb(233,221,10)" rx="2" ry="2" />
<text x="865.57" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2,677,814 samples, 0.01%)</title><rect x="465.4" y="1861" width="0.2" height="15.0" fill="rgb(210,111,46)" rx="2" ry="2" />
<text x="468.44" y="1871.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,273,082 samples, 0.01%)</title><rect x="884.1" y="37" width="0.1" height="15.0" fill="rgb(236,118,33)" rx="2" ry="2" />
<text x="887.11" y="47.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="741" width="8.8" height="15.0" fill="rgb(242,18,27)" rx="2" ry="2" />
<text x="396.46" y="751.5" ></text>
</g>
<g >
<title>tracker-miner-f (8,374,955 samples, 0.04%)</title><rect x="1188.3" y="2069" width="0.4" height="15.0" fill="rgb(249,192,47)" rx="2" ry="2" />
<text x="1191.26" y="2079.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,772,188 samples, 0.02%)</title><rect x="507.4" y="1941" width="0.2" height="15.0" fill="rgb(213,3,20)" rx="2" ry="2" />
<text x="510.36" y="1951.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,894,071 samples, 0.01%)</title><rect x="833.5" y="1909" width="0.1" height="15.0" fill="rgb(235,18,53)" rx="2" ry="2" />
<text x="836.50" y="1919.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,666,951 samples, 0.05%)</title><rect x="33.6" y="1957" width="0.6" height="15.0" fill="rgb(230,57,47)" rx="2" ry="2" />
<text x="36.61" y="1967.5" ></text>
</g>
<g >
<title>path_openat (20,374,216 samples, 0.10%)</title><rect x="953.1" y="1925" width="1.1" height="15.0" fill="rgb(208,111,8)" rx="2" ry="2" />
<text x="956.10" y="1935.5" ></text>
</g>
<g >
<title>netif_skb_features (3,415,323 samples, 0.02%)</title><rect x="747.4" y="1669" width="0.2" height="15.0" fill="rgb(226,28,2)" rx="2" ry="2" />
<text x="750.36" y="1679.5" ></text>
</g>
<g >
<title>napi_complete_done (2,223,533 samples, 0.01%)</title><rect x="572.4" y="1829" width="0.1" height="15.0" fill="rgb(253,136,9)" rx="2" ry="2" />
<text x="575.36" y="1839.5" ></text>
</g>
<g >
<title>__check_heap_object (5,267,225 samples, 0.02%)</title><rect x="623.7" y="1877" width="0.3" height="15.0" fill="rgb(241,49,52)" rx="2" ry="2" />
<text x="626.67" y="1887.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (2,012,045 samples, 0.01%)</title><rect x="417.0" y="1781" width="0.1" height="15.0" fill="rgb(244,49,42)" rx="2" ry="2" />
<text x="420.01" y="1791.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,922,723 samples, 0.01%)</title><rect x="816.6" y="1733" width="0.1" height="15.0" fill="rgb(229,146,28)" rx="2" ry="2" />
<text x="819.61" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (106,612,640 samples, 0.50%)</title><rect x="393.5" y="69" width="5.8" height="15.0" fill="rgb(216,75,1)" rx="2" ry="2" />
<text x="396.46" y="79.5" ></text>
</g>
<g >
<title>common_interrupt (2,496,904 samples, 0.01%)</title><rect x="1149.9" y="1797" width="0.1" height="15.0" fill="rgb(254,143,4)" rx="2" ry="2" />
<text x="1152.87" y="1807.5" ></text>
</g>
<g >
<title>cake_classify (3,463,243 samples, 0.02%)</title><rect x="1011.4" y="1541" width="0.2" height="15.0" fill="rgb(217,214,53)" rx="2" ry="2" />
<text x="1014.44" y="1551.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (2,244,883 samples, 0.01%)</title><rect x="1155.3" y="1877" width="0.2" height="15.0" fill="rgb(227,229,26)" rx="2" ry="2" />
<text x="1158.34" y="1887.5" ></text>
</g>
<g >
<title>bprm_execve.part.0 (8,076,231 samples, 0.04%)</title><rect x="847.1" y="1957" width="0.4" height="15.0" fill="rgb(249,152,30)" rx="2" ry="2" />
<text x="850.08" y="1967.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,669,357 samples, 0.01%)</title><rect x="1185.2" y="1941" width="0.2" height="15.0" fill="rgb(233,184,33)" rx="2" ry="2" />
<text x="1188.22" y="1951.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="885" width="0.2" height="15.0" fill="rgb(213,181,28)" rx="2" ry="2" />
<text x="897.72" y="895.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2,106,542 samples, 0.01%)</title><rect x="1170.9" y="1877" width="0.2" height="15.0" fill="rgb(250,115,22)" rx="2" ry="2" />
<text x="1173.93" y="1887.5" ></text>
</g>
<g >
<title>memcg_slab_free_hook (2,282,603 samples, 0.01%)</title><rect x="59.0" y="1893" width="0.1" height="15.0" fill="rgb(232,175,10)" rx="2" ry="2" />
<text x="61.97" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,253,168 samples, 0.01%)</title><rect x="564.9" y="2005" width="0.1" height="15.0" fill="rgb(240,184,23)" rx="2" ry="2" />
<text x="567.91" y="2015.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (2,659,113 samples, 0.01%)</title><rect x="419.1" y="1781" width="0.1" height="15.0" fill="rgb(245,186,34)" rx="2" ry="2" />
<text x="422.07" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1157" width="8.8" height="15.0" fill="rgb(215,183,43)" rx="2" ry="2" />
<text x="396.46" y="1167.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (2,888,212 samples, 0.01%)</title><rect x="501.9" y="1669" width="0.1" height="15.0" fill="rgb(213,127,41)" rx="2" ry="2" />
<text x="504.87" y="1679.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,928,714 samples, 0.01%)</title><rect x="902.5" y="1765" width="0.1" height="15.0" fill="rgb(220,109,47)" rx="2" ry="2" />
<text x="905.48" y="1775.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1077" width="1.1" height="15.0" fill="rgb(233,41,12)" rx="2" ry="2" />
<text x="886.75" y="1087.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1797" width="0.5" height="15.0" fill="rgb(241,225,30)" rx="2" ry="2" />
<text x="18.42" y="1807.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,074,681 samples, 0.01%)</title><rect x="1186.4" y="2021" width="0.2" height="15.0" fill="rgb(207,131,51)" rx="2" ry="2" />
<text x="1189.38" y="2031.5" ></text>
</g>
<g >
<title>do_sys_poll (4,717,938 samples, 0.02%)</title><rect x="16.0" y="1973" width="0.2" height="15.0" fill="rgb(209,17,35)" rx="2" ry="2" />
<text x="18.95" y="1983.5" ></text>
</g>
<g >
<title>packet_rcv (3,067,760 samples, 0.01%)</title><rect x="411.5" y="1573" width="0.2" height="15.0" fill="rgb(249,152,45)" rx="2" ry="2" />
<text x="414.52" y="1583.5" ></text>
</g>
<g >
<title>dequeue_entity (3,958,968 samples, 0.02%)</title><rect x="54.8" y="1941" width="0.2" height="15.0" fill="rgb(222,182,49)" rx="2" ry="2" />
<text x="57.77" y="1951.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="1029" width="0.2" height="15.0" fill="rgb(247,77,41)" rx="2" ry="2" />
<text x="897.72" y="1039.5" ></text>
</g>
<g >
<title>cake_dequeue (2,291,435 samples, 0.01%)</title><rect x="759.2" y="1637" width="0.2" height="15.0" fill="rgb(241,117,3)" rx="2" ry="2" />
<text x="762.23" y="1647.5" ></text>
</g>
<g >
<title>zap_pte_range (24,466,515 samples, 0.11%)</title><rect x="889.7" y="1765" width="1.4" height="15.0" fill="rgb(233,123,49)" rx="2" ry="2" />
<text x="892.74" y="1775.5" ></text>
</g>
<g >
<title>fib_validate_source (8,252,016 samples, 0.04%)</title><rect x="1126.2" y="1637" width="0.4" height="15.0" fill="rgb(209,167,24)" rx="2" ry="2" />
<text x="1129.16" y="1647.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,843,937 samples, 0.01%)</title><rect x="977.7" y="1861" width="0.2" height="15.0" fill="rgb(206,30,41)" rx="2" ry="2" />
<text x="980.75" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="725" width="8.8" height="15.0" fill="rgb(233,75,11)" rx="2" ry="2" />
<text x="396.46" y="735.5" ></text>
</g>
<g >
<title>[snapctl] (2,308,291 samples, 0.01%)</title><rect x="946.1" y="1653" width="0.1" height="15.0" fill="rgb(254,34,43)" rx="2" ry="2" />
<text x="949.10" y="1663.5" ></text>
</g>
<g >
<title>cake_classify (3,055,606 samples, 0.01%)</title><rect x="482.2" y="1653" width="0.2" height="15.0" fill="rgb(232,216,14)" rx="2" ry="2" />
<text x="485.21" y="1663.5" ></text>
</g>
<g >
<title>user_path_at_empty (2,693,361 samples, 0.01%)</title><rect x="66.0" y="1941" width="0.1" height="15.0" fill="rgb(243,43,28)" rx="2" ry="2" />
<text x="68.95" y="1951.5" ></text>
</g>
<g >
<title>n_tty_ioctl (2,470,368 samples, 0.01%)</title><rect x="861.3" y="1973" width="0.1" height="15.0" fill="rgb(251,212,19)" rx="2" ry="2" />
<text x="864.28" y="1983.5" ></text>
</g>
<g >
<title>page_remove_rmap (5,789,417 samples, 0.03%)</title><rect x="973.0" y="1845" width="0.3" height="15.0" fill="rgb(224,42,2)" rx="2" ry="2" />
<text x="976.01" y="1855.5" ></text>
</g>
<g >
<title>__qdisc_run (21,893,849 samples, 0.10%)</title><rect x="1043.4" y="1557" width="1.2" height="15.0" fill="rgb(225,24,29)" rx="2" ry="2" />
<text x="1046.37" y="1567.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,703,312 samples, 0.01%)</title><rect x="40.4" y="2005" width="0.1" height="15.0" fill="rgb(216,96,46)" rx="2" ry="2" />
<text x="43.37" y="2015.5" ></text>
</g>
<g >
<title>[snap] (7,637,845 samples, 0.04%)</title><rect x="894.6" y="1605" width="0.5" height="15.0" fill="rgb(245,122,2)" rx="2" ry="2" />
<text x="897.65" y="1615.5" ></text>
</g>
<g >
<title>seq_read_iter (5,786,855 samples, 0.03%)</title><rect x="901.9" y="1685" width="0.3" height="15.0" fill="rgb(222,200,35)" rx="2" ry="2" />
<text x="904.85" y="1695.5" ></text>
</g>
<g >
<title>exit_mm (1,920,252 samples, 0.01%)</title><rect x="879.2" y="1909" width="0.1" height="15.0" fill="rgb(234,220,36)" rx="2" ry="2" />
<text x="882.21" y="1919.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,057,827 samples, 0.01%)</title><rect x="835.6" y="1941" width="0.1" height="15.0" fill="rgb(210,147,38)" rx="2" ry="2" />
<text x="838.56" y="1951.5" ></text>
</g>
<g >
<title>common_interrupt (2,582,205 samples, 0.01%)</title><rect x="598.8" y="1813" width="0.1" height="15.0" fill="rgb(251,191,28)" rx="2" ry="2" />
<text x="601.75" y="1823.5" ></text>
</g>
<g >
<title>__napi_poll (4,469,956 samples, 0.02%)</title><rect x="643.0" y="1749" width="0.3" height="15.0" fill="rgb(240,224,38)" rx="2" ry="2" />
<text x="646.01" y="1759.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (18,768,009 samples, 0.09%)</title><rect x="427.9" y="1845" width="1.0" height="15.0" fill="rgb(224,205,33)" rx="2" ry="2" />
<text x="430.86" y="1855.5" ></text>
</g>
<g >
<title>ip6_pol_route_input (3,088,898 samples, 0.01%)</title><rect x="1099.5" y="1637" width="0.1" height="15.0" fill="rgb(246,225,53)" rx="2" ry="2" />
<text x="1102.47" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (34,186,100 samples, 0.16%)</title><rect x="656.9" y="1733" width="1.9" height="15.0" fill="rgb(244,68,40)" rx="2" ry="2" />
<text x="659.94" y="1743.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (5,650,513 samples, 0.03%)</title><rect x="733.2" y="1413" width="0.3" height="15.0" fill="rgb(221,25,9)" rx="2" ry="2" />
<text x="736.24" y="1423.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,565,719 samples, 0.02%)</title><rect x="978.5" y="1941" width="0.2" height="15.0" fill="rgb(241,71,16)" rx="2" ry="2" />
<text x="981.51" y="1951.5" ></text>
</g>
<g >
<title>Monitor_thread (5,322,130 samples, 0.02%)</title><rect x="15.0" y="2069" width="0.3" height="15.0" fill="rgb(208,228,13)" rx="2" ry="2" />
<text x="18.03" y="2079.5" ></text>
</g>
<g >
<title>napi_gro_receive (5,964,088 samples, 0.03%)</title><rect x="515.5" y="1893" width="0.4" height="15.0" fill="rgb(215,192,49)" rx="2" ry="2" />
<text x="518.53" y="1903.5" ></text>
</g>
<g >
<title>schedule (2,299,777 samples, 0.01%)</title><rect x="430.0" y="1893" width="0.1" height="15.0" fill="rgb(222,95,22)" rx="2" ry="2" />
<text x="433.00" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (4,953,466 samples, 0.02%)</title><rect x="412.8" y="1765" width="0.3" height="15.0" fill="rgb(241,3,20)" rx="2" ry="2" />
<text x="415.84" y="1775.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (13,635,591 samples, 0.06%)</title><rect x="1102.2" y="1877" width="0.8" height="15.0" fill="rgb(235,92,32)" rx="2" ry="2" />
<text x="1105.22" y="1887.5" ></text>
</g>
<g >
<title>[snap] (113,812,321 samples, 0.53%)</title><rect x="897.9" y="2005" width="6.3" height="15.0" fill="rgb(244,78,42)" rx="2" ry="2" />
<text x="900.91" y="2015.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (3,818,749 samples, 0.02%)</title><rect x="33.2" y="1861" width="0.2" height="15.0" fill="rgb(228,68,38)" rx="2" ry="2" />
<text x="36.21" y="1871.5" ></text>
</g>
<g >
<title>ip6_forward (4,977,146 samples, 0.02%)</title><rect x="597.4" y="1637" width="0.3" height="15.0" fill="rgb(210,139,22)" rx="2" ry="2" />
<text x="600.43" y="1647.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,825,956 samples, 0.01%)</title><rect x="598.8" y="1653" width="0.1" height="15.0" fill="rgb(233,28,40)" rx="2" ry="2" />
<text x="601.77" y="1663.5" ></text>
</g>
<g >
<title>__napi_poll (2,253,168 samples, 0.01%)</title><rect x="564.9" y="1925" width="0.1" height="15.0" fill="rgb(210,203,18)" rx="2" ry="2" />
<text x="567.91" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,922,234 samples, 0.01%)</title><rect x="47.5" y="2037" width="0.1" height="15.0" fill="rgb(233,87,10)" rx="2" ry="2" />
<text x="50.48" y="2047.5" ></text>
</g>
<g >
<title>vfs_open (1,863,451 samples, 0.01%)</title><rect x="1177.3" y="1909" width="0.1" height="15.0" fill="rgb(251,143,35)" rx="2" ry="2" />
<text x="1180.28" y="1919.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (2,051,698 samples, 0.01%)</title><rect x="1029.3" y="1461" width="0.1" height="15.0" fill="rgb(248,15,16)" rx="2" ry="2" />
<text x="1032.34" y="1471.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,905,831 samples, 0.01%)</title><rect x="574.2" y="1925" width="0.1" height="15.0" fill="rgb(222,58,18)" rx="2" ry="2" />
<text x="577.17" y="1935.5" ></text>
</g>
<g >
<title>irq_exit_rcu (6,850,761 samples, 0.03%)</title><rect x="577.9" y="1829" width="0.4" height="15.0" fill="rgb(208,73,42)" rx="2" ry="2" />
<text x="580.94" y="1839.5" ></text>
</g>
<g >
<title>net_rx_action (20,064,612 samples, 0.09%)</title><rect x="449.6" y="1941" width="1.1" height="15.0" fill="rgb(212,184,22)" rx="2" ry="2" />
<text x="452.62" y="1951.5" ></text>
</g>
<g >
<title>_nss_dns_gethostbyaddr2_r (4,234,824 samples, 0.02%)</title><rect x="870.5" y="2053" width="0.3" height="15.0" fill="rgb(209,41,15)" rx="2" ry="2" />
<text x="873.52" y="2063.5" ></text>
</g>
<g >
<title>[snap] (104,492,152 samples, 0.49%)</title><rect x="881.4" y="1893" width="5.8" height="15.0" fill="rgb(227,57,24)" rx="2" ry="2" />
<text x="884.43" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,859,108 samples, 0.02%)</title><rect x="22.0" y="2037" width="0.2" height="15.0" fill="rgb(221,188,20)" rx="2" ry="2" />
<text x="25.01" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (1,895,722 samples, 0.01%)</title><rect x="542.5" y="1797" width="0.1" height="15.0" fill="rgb(217,109,29)" rx="2" ry="2" />
<text x="545.51" y="1807.5" ></text>
</g>
<g >
<title>add_interrupt_randomness (3,701,064 samples, 0.02%)</title><rect x="995.0" y="1861" width="0.2" height="15.0" fill="rgb(205,118,11)" rx="2" ry="2" />
<text x="997.97" y="1871.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (4,315,709 samples, 0.02%)</title><rect x="495.4" y="1733" width="0.3" height="15.0" fill="rgb(213,44,44)" rx="2" ry="2" />
<text x="498.44" y="1743.5" ></text>
</g>
<g >
<title>skb_release_head_state (1,919,299 samples, 0.01%)</title><rect x="690.0" y="1765" width="0.1" height="15.0" fill="rgb(251,101,29)" rx="2" ry="2" />
<text x="693.04" y="1775.5" ></text>
</g>
<g >
<title>exc_page_fault (3,079,684 samples, 0.01%)</title><rect x="842.6" y="2005" width="0.2" height="15.0" fill="rgb(234,15,11)" rx="2" ry="2" />
<text x="845.64" y="2015.5" ></text>
</g>
<g >
<title>__netif_receive_skb (10,152,382 samples, 0.05%)</title><rect x="556.6" y="1925" width="0.5" height="15.0" fill="rgb(210,140,9)" rx="2" ry="2" />
<text x="559.55" y="1935.5" ></text>
</g>
<g >
<title>__schedule (2,298,602 samples, 0.01%)</title><rect x="29.0" y="1925" width="0.2" height="15.0" fill="rgb(217,28,16)" rx="2" ry="2" />
<text x="32.03" y="1935.5" ></text>
</g>
<g >
<title>fast_mix (4,127,586 samples, 0.02%)</title><rect x="995.2" y="1861" width="0.2" height="15.0" fill="rgb(237,101,5)" rx="2" ry="2" />
<text x="998.17" y="1871.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (7,975,302 samples, 0.04%)</title><rect x="622.3" y="1893" width="0.4" height="15.0" fill="rgb(215,186,35)" rx="2" ry="2" />
<text x="625.30" y="1903.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,899,556 samples, 0.01%)</title><rect x="791.0" y="1653" width="0.1" height="15.0" fill="rgb(225,198,27)" rx="2" ry="2" />
<text x="793.97" y="1663.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (12,393,487 samples, 0.06%)</title><rect x="1148.9" y="1829" width="0.7" height="15.0" fill="rgb(231,146,21)" rx="2" ry="2" />
<text x="1151.92" y="1839.5" ></text>
</g>
<g >
<title>do_user_addr_fault (617,119,882 samples, 2.88%)</title><rect x="905.6" y="1957" width="34.0" height="15.0" fill="rgb(217,212,18)" rx="2" ry="2" />
<text x="908.62" y="1967.5" >do..</text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (3,251,839 samples, 0.02%)</title><rect x="57.3" y="1813" width="0.2" height="15.0" fill="rgb(254,173,46)" rx="2" ry="2" />
<text x="60.28" y="1823.5" ></text>
</g>
<g >
<title>lzma_literal (23,201,884 samples, 0.11%)</title><rect x="934.4" y="1573" width="1.2" height="15.0" fill="rgb(216,198,12)" rx="2" ry="2" />
<text x="937.37" y="1583.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (2,267,155 samples, 0.01%)</title><rect x="571.2" y="1797" width="0.1" height="15.0" fill="rgb(249,140,2)" rx="2" ry="2" />
<text x="574.16" y="1807.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (1,920,809 samples, 0.01%)</title><rect x="47.4" y="2037" width="0.1" height="15.0" fill="rgb(245,189,48)" rx="2" ry="2" />
<text x="50.38" y="2047.5" ></text>
</g>
<g >
<title>fib_validate_source (6,794,590 samples, 0.03%)</title><rect x="1002.3" y="1669" width="0.4" height="15.0" fill="rgb(253,56,8)" rx="2" ry="2" />
<text x="1005.33" y="1679.5" ></text>
</g>
<g >
<title>__common_interrupt (2,200,885 samples, 0.01%)</title><rect x="979.6" y="1941" width="0.1" height="15.0" fill="rgb(243,187,7)" rx="2" ry="2" />
<text x="982.60" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (288,245,189 samples, 1.35%)</title><rect x="806.4" y="1813" width="15.8" height="15.0" fill="rgb(219,212,11)" rx="2" ry="2" />
<text x="809.36" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (169,180,776 samples, 0.79%)</title><rect x="393.3" y="1957" width="9.3" height="15.0" fill="rgb(234,198,54)" rx="2" ry="2" />
<text x="396.26" y="1967.5" ></text>
</g>
<g >
<title>lzma_match (1,937,539 samples, 0.01%)</title><rect x="31.9" y="1589" width="0.1" height="15.0" fill="rgb(222,191,32)" rx="2" ry="2" />
<text x="34.92" y="1599.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,821,064 samples, 0.01%)</title><rect x="607.6" y="1861" width="0.1" height="15.0" fill="rgb(244,47,18)" rx="2" ry="2" />
<text x="610.56" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (3,438,074 samples, 0.02%)</title><rect x="493.5" y="1749" width="0.2" height="15.0" fill="rgb(228,7,16)" rx="2" ry="2" />
<text x="496.46" y="1759.5" ></text>
</g>
<g >
<title>__napi_poll (19,681,192 samples, 0.09%)</title><rect x="449.6" y="1925" width="1.1" height="15.0" fill="rgb(210,16,30)" rx="2" ry="2" />
<text x="452.64" y="1935.5" ></text>
</g>
<g >
<title>mmc_start_request (6,722,145 samples, 0.03%)</title><rect x="63.8" y="1845" width="0.3" height="15.0" fill="rgb(233,37,21)" rx="2" ry="2" />
<text x="66.78" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (10,274,891 samples, 0.05%)</title><rect x="860.1" y="2053" width="0.6" height="15.0" fill="rgb(230,64,44)" rx="2" ry="2" />
<text x="863.15" y="2063.5" ></text>
</g>
<g >
<title>[snap] (85,549,557 samples, 0.40%)</title><rect x="898.5" y="1877" width="4.7" height="15.0" fill="rgb(245,220,15)" rx="2" ry="2" />
<text x="901.53" y="1887.5" ></text>
</g>
<g >
<title>skb_clone (3,799,113 samples, 0.02%)</title><rect x="441.8" y="1797" width="0.2" height="15.0" fill="rgb(244,40,24)" rx="2" ry="2" />
<text x="444.84" y="1807.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (2,294,548 samples, 0.01%)</title><rect x="505.3" y="1877" width="0.1" height="15.0" fill="rgb(217,158,38)" rx="2" ry="2" />
<text x="508.27" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,301,327 samples, 0.01%)</title><rect x="878.9" y="2037" width="0.1" height="15.0" fill="rgb(252,142,52)" rx="2" ry="2" />
<text x="881.87" y="2047.5" ></text>
</g>
<g >
<title>[snap] (19,678,493 samples, 0.09%)</title><rect x="883.8" y="821" width="1.0" height="15.0" fill="rgb(219,211,11)" rx="2" ry="2" />
<text x="886.75" y="831.5" ></text>
</g>
<g >
<title>nf_hook_slow (3,018,441 samples, 0.01%)</title><rect x="827.0" y="1845" width="0.2" height="15.0" fill="rgb(244,107,29)" rx="2" ry="2" />
<text x="830.03" y="1855.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1125" width="0.5" height="15.0" fill="rgb(244,223,4)" rx="2" ry="2" />
<text x="18.42" y="1135.5" ></text>
</g>
<g >
<title>do_csum (2,484,011 samples, 0.01%)</title><rect x="1145.4" y="1589" width="0.1" height="15.0" fill="rgb(226,38,12)" rx="2" ry="2" />
<text x="1148.39" y="1599.5" ></text>
</g>
<g >
<title>mmput (26,276,812 samples, 0.12%)</title><rect x="971.9" y="1957" width="1.5" height="15.0" fill="rgb(219,48,35)" rx="2" ry="2" />
<text x="974.90" y="1967.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (13,005,814 samples, 0.06%)</title><rect x="1148.9" y="1845" width="0.7" height="15.0" fill="rgb(226,217,33)" rx="2" ry="2" />
<text x="1151.90" y="1855.5" ></text>
</g>
<g >
<title>__qdisc_run (30,086,141 samples, 0.14%)</title><rect x="742.0" y="1461" width="1.7" height="15.0" fill="rgb(223,156,7)" rx="2" ry="2" />
<text x="745.04" y="1471.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1381" width="0.3" height="15.0" fill="rgb(216,54,53)" rx="2" ry="2" />
<text x="23.41" y="1391.5" ></text>
</g>
<g >
<title>rtl8169_tx_map (2,239,707 samples, 0.01%)</title><rect x="752.7" y="1589" width="0.1" height="15.0" fill="rgb(241,87,29)" rx="2" ry="2" />
<text x="755.70" y="1599.5" ></text>
</g>
<g >
<title>ip6_finish_output (2,675,134 samples, 0.01%)</title><rect x="597.5" y="1605" width="0.2" height="15.0" fill="rgb(233,22,43)" rx="2" ry="2" />
<text x="600.52" y="1615.5" ></text>
</g>
<g >
<title>__fib_lookup (22,018,685 samples, 0.10%)</title><rect x="470.4" y="1797" width="1.2" height="15.0" fill="rgb(233,102,3)" rx="2" ry="2" />
<text x="473.42" y="1807.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (19,015,225 samples, 0.09%)</title><rect x="439.0" y="1685" width="1.0" height="15.0" fill="rgb(249,210,15)" rx="2" ry="2" />
<text x="441.99" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="709" width="8.8" height="15.0" fill="rgb(220,7,44)" rx="2" ry="2" />
<text x="396.46" y="719.5" ></text>
</g>
<g >
<title>[snap] (2,286,061 samples, 0.01%)</title><rect x="894.7" y="597" width="0.1" height="15.0" fill="rgb(251,153,13)" rx="2" ry="2" />
<text x="897.72" y="607.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (3,700,114 samples, 0.02%)</title><rect x="947.2" y="1973" width="0.3" height="15.0" fill="rgb(231,223,16)" rx="2" ry="2" />
<text x="950.25" y="1983.5" ></text>
</g>
<g >
<title>vfs_read (6,171,767 samples, 0.03%)</title><rect x="901.9" y="1717" width="0.3" height="15.0" fill="rgb(231,166,12)" rx="2" ry="2" />
<text x="904.85" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (4,189,895 samples, 0.02%)</title><rect x="409.2" y="1765" width="0.2" height="15.0" fill="rgb(254,28,53)" rx="2" ry="2" />
<text x="412.17" y="1775.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (888,463,252 samples, 4.15%)</title><rect x="647.9" y="1861" width="49.0" height="15.0" fill="rgb(220,190,17)" rx="2" ry="2" />
<text x="650.88" y="1871.5" >__so..</text>
</g>
<g >
<title>handle_mm_fault (2,257,541 samples, 0.01%)</title><rect x="884.4" y="149" width="0.2" height="15.0" fill="rgb(244,174,15)" rx="2" ry="2" />
<text x="887.44" y="159.5" ></text>
</g>
<g >
<title>packet_rcv (9,747,211 samples, 0.05%)</title><rect x="547.9" y="1877" width="0.6" height="15.0" fill="rgb(254,38,4)" rx="2" ry="2" />
<text x="550.92" y="1887.5" ></text>
</g>
<g >
<title>[snapctl] (2,307,746 samples, 0.01%)</title><rect x="944.4" y="1893" width="0.1" height="15.0" fill="rgb(240,33,50)" rx="2" ry="2" />
<text x="947.39" y="1903.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1093" width="0.3" height="15.0" fill="rgb(248,63,11)" rx="2" ry="2" />
<text x="897.70" y="1103.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (129,903,413 samples, 0.61%)</title><rect x="554.9" y="2021" width="7.1" height="15.0" fill="rgb(208,127,33)" rx="2" ry="2" />
<text x="557.88" y="2031.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,299,094 samples, 0.01%)</title><rect x="897.3" y="1925" width="0.1" height="15.0" fill="rgb(213,219,52)" rx="2" ry="2" />
<text x="900.28" y="1935.5" ></text>
</g>
<g >
<title>handle_irq_event (2,223,372 samples, 0.01%)</title><rect x="462.4" y="1973" width="0.1" height="15.0" fill="rgb(234,8,11)" rx="2" ry="2" />
<text x="465.36" y="1983.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (4,991,066 samples, 0.02%)</title><rect x="23.8" y="1989" width="0.2" height="15.0" fill="rgb(228,94,6)" rx="2" ry="2" />
<text x="26.77" y="1999.5" ></text>
</g>
<g >
<title>do_idle (1,032,564,875 samples, 4.82%)</title><rect x="1114.6" y="1941" width="56.9" height="15.0" fill="rgb(224,107,47)" rx="2" ry="2" />
<text x="1117.58" y="1951.5" >do_idle</text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1301" width="0.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="897.70" y="1311.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (87,453,868 samples, 0.41%)</title><rect x="1027.3" y="1733" width="4.8" height="15.0" fill="rgb(215,91,16)" rx="2" ry="2" />
<text x="1030.30" y="1743.5" ></text>
</g>
<g >
<title>do_sys_openat2 (3,645,443 samples, 0.02%)</title><rect x="1172.8" y="1973" width="0.2" height="15.0" fill="rgb(227,219,7)" rx="2" ry="2" />
<text x="1175.77" y="1983.5" ></text>
</g>
<g >
<title>[snap-seccomp] (6,525,513 samples, 0.03%)</title><rect x="877.4" y="1829" width="0.4" height="15.0" fill="rgb(241,10,0)" rx="2" ry="2" />
<text x="880.40" y="1839.5" ></text>
</g>
<g >
<title>ip_finish_output (981,937,541 samples, 4.59%)</title><rect x="707.2" y="1781" width="54.2" height="15.0" fill="rgb(211,153,6)" rx="2" ry="2" />
<text x="710.24" y="1791.5" >ip_fi..</text>
</g>
<g >
<title>kfree_skbmem (12,182,152 samples, 0.06%)</title><rect x="496.3" y="1829" width="0.7" height="15.0" fill="rgb(213,203,20)" rx="2" ry="2" />
<text x="499.29" y="1839.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (3,475,089 samples, 0.02%)</title><rect x="926.7" y="1397" width="0.2" height="15.0" fill="rgb(232,185,25)" rx="2" ry="2" />
<text x="929.68" y="1407.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1925" width="0.3" height="15.0" fill="rgb(223,162,4)" rx="2" ry="2" />
<text x="23.41" y="1935.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,262,584 samples, 0.02%)</title><rect x="1111.5" y="1925" width="0.1" height="15.0" fill="rgb(239,151,8)" rx="2" ry="2" />
<text x="1114.47" y="1935.5" ></text>
</g>
<g >
<title>tick_sched_handle (3,432,025 samples, 0.02%)</title><rect x="423.0" y="1893" width="0.2" height="15.0" fill="rgb(211,180,35)" rx="2" ry="2" />
<text x="426.02" y="1903.5" ></text>
</g>
<g >
<title>__napi_poll (3,811,012 samples, 0.02%)</title><rect x="626.0" y="1781" width="0.2" height="15.0" fill="rgb(236,13,13)" rx="2" ry="2" />
<text x="629.03" y="1791.5" ></text>
</g>
<g >
<title>[snap] (23,018,361 samples, 0.11%)</title><rect x="883.7" y="1653" width="1.3" height="15.0" fill="rgb(253,212,14)" rx="2" ry="2" />
<text x="886.71" y="1663.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (1,909,898 samples, 0.01%)</title><rect x="752.4" y="1573" width="0.1" height="15.0" fill="rgb(238,63,4)" rx="2" ry="2" />
<text x="755.41" y="1583.5" ></text>
</g>
<g >
<title>ipv6_chk_addr_and_flags (1,877,628 samples, 0.01%)</title><rect x="486.5" y="1733" width="0.1" height="15.0" fill="rgb(236,125,34)" rx="2" ry="2" />
<text x="489.51" y="1743.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,923,751 samples, 0.01%)</title><rect x="842.7" y="1957" width="0.1" height="15.0" fill="rgb(254,52,11)" rx="2" ry="2" />
<text x="845.71" y="1967.5" ></text>
</g>
<g >
<title>asm_common_interrupt (5,230,001 samples, 0.02%)</title><rect x="643.0" y="1829" width="0.3" height="15.0" fill="rgb(245,59,17)" rx="2" ry="2" />
<text x="645.99" y="1839.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,861,775 samples, 0.01%)</title><rect x="896.5" y="1829" width="0.1" height="15.0" fill="rgb(238,176,22)" rx="2" ry="2" />
<text x="899.46" y="1839.5" ></text>
</g>
<g >
<title>do_wp_page (4,167,532 samples, 0.02%)</title><rect x="34.0" y="1925" width="0.2" height="15.0" fill="rgb(243,33,49)" rx="2" ry="2" />
<text x="36.97" y="1935.5" ></text>
</g>
<g >
<title>ip_forward_finish (3,157,619 samples, 0.01%)</title><rect x="51.0" y="1861" width="0.2" height="15.0" fill="rgb(237,148,1)" rx="2" ry="2" />
<text x="53.99" y="1871.5" ></text>
</g>
<g >
<title>sch_direct_xmit (9,428,078 samples, 0.04%)</title><rect x="421.2" y="1893" width="0.5" height="15.0" fill="rgb(228,62,42)" rx="2" ry="2" />
<text x="424.23" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (134,102,702 samples, 0.63%)</title><rect x="393.5" y="245" width="7.4" height="15.0" fill="rgb(223,158,1)" rx="2" ry="2" />
<text x="396.46" y="255.5" ></text>
</g>
<g >
<title>release_pages (2,708,924 samples, 0.01%)</title><rect x="972.5" y="1893" width="0.1" height="15.0" fill="rgb(251,22,1)" rx="2" ry="2" />
<text x="975.46" y="1903.5" ></text>
</g>
<g >
<title>wake_up_process (4,681,006 samples, 0.02%)</title><rect x="1060.7" y="1845" width="0.2" height="15.0" fill="rgb(246,136,21)" rx="2" ry="2" />
<text x="1063.66" y="1855.5" ></text>
</g>
<g >
<title>alloc_vfsmnt (10,704,638 samples, 0.05%)</title><rect x="864.4" y="1877" width="0.6" height="15.0" fill="rgb(228,199,51)" rx="2" ry="2" />
<text x="867.39" y="1887.5" ></text>
</g>
<g >
<title>ip_route_input_slow (3,735,321 samples, 0.02%)</title><rect x="556.8" y="1829" width="0.3" height="15.0" fill="rgb(248,113,54)" rx="2" ry="2" />
<text x="559.85" y="1839.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (5,550,525 samples, 0.03%)</title><rect x="1100.9" y="1733" width="0.3" height="15.0" fill="rgb(214,36,54)" rx="2" ry="2" />
<text x="1103.90" y="1743.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (119,097,150 samples, 0.56%)</title><rect x="438.2" y="1877" width="6.5" height="15.0" fill="rgb(252,39,15)" rx="2" ry="2" />
<text x="441.18" y="1887.5" ></text>
</g>
<g >
<title>rtl_rx (1,871,910 samples, 0.01%)</title><rect x="890.6" y="1557" width="0.1" height="15.0" fill="rgb(219,195,24)" rx="2" ry="2" />
<text x="893.59" y="1567.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1365" width="0.3" height="15.0" fill="rgb(214,214,22)" rx="2" ry="2" />
<text x="23.41" y="1375.5" ></text>
</g>
<g >
<title>do_csum (1,896,646 samples, 0.01%)</title><rect x="819.5" y="1685" width="0.1" height="15.0" fill="rgb(240,226,22)" rx="2" ry="2" />
<text x="822.45" y="1695.5" ></text>
</g>
<g >
<title>asm_common_interrupt (5,897,006 samples, 0.03%)</title><rect x="981.9" y="1957" width="0.3" height="15.0" fill="rgb(239,101,34)" rx="2" ry="2" />
<text x="984.91" y="1967.5" ></text>
</g>
<g >
<title>net_rx_action (15,811,431 samples, 0.07%)</title><rect x="926.1" y="1509" width="0.9" height="15.0" fill="rgb(254,14,50)" rx="2" ry="2" />
<text x="929.11" y="1519.5" ></text>
</g>
<g >
<title>packet_rcv (25,151,220 samples, 0.12%)</title><rect x="496.1" y="1861" width="1.4" height="15.0" fill="rgb(251,84,28)" rx="2" ry="2" />
<text x="499.10" y="1871.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (29,764,359 samples, 0.14%)</title><rect x="67.8" y="2037" width="1.6" height="15.0" fill="rgb(214,169,40)" rx="2" ry="2" />
<text x="70.78" y="2047.5" ></text>
</g>
<g >
<title>fib_info_nh_uses_dev (3,370,601 samples, 0.02%)</title><rect x="799.9" y="1717" width="0.2" height="15.0" fill="rgb(220,42,28)" rx="2" ry="2" />
<text x="802.92" y="1727.5" ></text>
</g>
<g >
<title>nf_hook_slow (3,037,536 samples, 0.01%)</title><rect x="425.4" y="1797" width="0.1" height="15.0" fill="rgb(214,107,20)" rx="2" ry="2" />
<text x="428.38" y="1807.5" ></text>
</g>
<g >
<title>bprm_execve.part.0 (1,901,184 samples, 0.01%)</title><rect x="862.6" y="1957" width="0.1" height="15.0" fill="rgb(216,114,10)" rx="2" ry="2" />
<text x="865.57" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (2,342,620,437 samples, 10.94%)</title><rect x="698.2" y="1861" width="129.1" height="15.0" fill="rgb(225,174,33)" rx="2" ry="2" />
<text x="701.16" y="1871.5" >__netif_receive_..</text>
</g>
<g >
<title>ip6_output (3,743,655 samples, 0.02%)</title><rect x="550.7" y="1781" width="0.2" height="15.0" fill="rgb(236,109,48)" rx="2" ry="2" />
<text x="553.72" y="1791.5" ></text>
</g>
<g >
<title>[snap-seccomp] (2,293,680 samples, 0.01%)</title><rect x="876.5" y="1989" width="0.1" height="15.0" fill="rgb(227,109,1)" rx="2" ry="2" />
<text x="879.49" y="1999.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2,693,920 samples, 0.01%)</title><rect x="842.5" y="1973" width="0.1" height="15.0" fill="rgb(252,70,1)" rx="2" ry="2" />
<text x="845.45" y="1983.5" ></text>
</g>
<g >
<title>skb_clone (6,372,972 samples, 0.03%)</title><rect x="414.4" y="1781" width="0.3" height="15.0" fill="rgb(237,84,42)" rx="2" ry="2" />
<text x="417.37" y="1791.5" ></text>
</g>
<g >
<title>path_lookupat (5,374,133 samples, 0.03%)</title><rect x="35.8" y="1909" width="0.3" height="15.0" fill="rgb(228,184,48)" rx="2" ry="2" />
<text x="38.78" y="1919.5" ></text>
</g>
<g >
<title>fib_validate_source (14,880,344 samples, 0.07%)</title><rect x="655.2" y="1669" width="0.9" height="15.0" fill="rgb(235,211,50)" rx="2" ry="2" />
<text x="658.25" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (3,585,837 samples, 0.02%)</title><rect x="1133.8" y="1637" width="0.2" height="15.0" fill="rgb(234,176,27)" rx="2" ry="2" />
<text x="1136.84" y="1647.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,557,826 samples, 0.03%)</title><rect x="30.9" y="1989" width="0.3" height="15.0" fill="rgb(251,183,3)" rx="2" ry="2" />
<text x="33.88" y="1999.5" ></text>
</g>
<g >
<title>[snapctl] (38,092,739 samples, 0.18%)</title><rect x="945.1" y="2021" width="2.1" height="15.0" fill="rgb(236,64,15)" rx="2" ry="2" />
<text x="948.10" y="2031.5" ></text>
</g>
<g >
<title>rb_erase (4,103,390 samples, 0.02%)</title><rect x="724.9" y="1349" width="0.3" height="15.0" fill="rgb(238,224,25)" rx="2" ry="2" />
<text x="727.94" y="1359.5" ></text>
</g>
<g >
<title>path_openat (5,391,861 samples, 0.03%)</title><rect x="36.2" y="1941" width="0.3" height="15.0" fill="rgb(242,82,35)" rx="2" ry="2" />
<text x="39.18" y="1951.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (4,997,808 samples, 0.02%)</title><rect x="15.4" y="37" width="0.3" height="15.0" fill="rgb(219,141,38)" rx="2" ry="2" />
<text x="18.42" y="47.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (10,178,752 samples, 0.05%)</title><rect x="1069.6" y="1861" width="0.6" height="15.0" fill="rgb(242,202,32)" rx="2" ry="2" />
<text x="1072.59" y="1871.5" ></text>
</g>
<g >
<title>__get_user_pages (2,309,610 samples, 0.01%)</title><rect x="35.2" y="1893" width="0.2" height="15.0" fill="rgb(205,162,11)" rx="2" ry="2" />
<text x="38.23" y="1903.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,052,125 samples, 0.01%)</title><rect x="833.1" y="1909" width="0.1" height="15.0" fill="rgb(210,79,37)" rx="2" ry="2" />
<text x="836.08" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="885" width="0.3" height="15.0" fill="rgb(220,3,46)" rx="2" ry="2" />
<text x="23.41" y="895.5" ></text>
</g>
<g >
<title>__get_hash_from_flowi6 (15,164,950 samples, 0.07%)</title><rect x="713.4" y="1589" width="0.9" height="15.0" fill="rgb(246,161,11)" rx="2" ry="2" />
<text x="716.45" y="1599.5" ></text>
</g>
<g >
<title>ip_finish_output2 (2,617,716 samples, 0.01%)</title><rect x="501.3" y="1717" width="0.1" height="15.0" fill="rgb(213,81,27)" rx="2" ry="2" />
<text x="504.27" y="1727.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,000,922 samples, 0.01%)</title><rect x="601.1" y="1925" width="0.2" height="15.0" fill="rgb(233,128,41)" rx="2" ry="2" />
<text x="604.13" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,393,420 samples, 0.03%)</title><rect x="860.7" y="2037" width="0.4" height="15.0" fill="rgb(232,154,23)" rx="2" ry="2" />
<text x="863.74" y="2047.5" ></text>
</g>
<g >
<title>copy_process (3,377,965 samples, 0.02%)</title><rect x="942.4" y="1957" width="0.2" height="15.0" fill="rgb(216,190,17)" rx="2" ry="2" />
<text x="945.43" y="1967.5" ></text>
</g>
<g >
<title>[snapctl] (1,922,806 samples, 0.01%)</title><rect x="944.4" y="1877" width="0.1" height="15.0" fill="rgb(230,176,21)" rx="2" ry="2" />
<text x="947.42" y="1887.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (9,941,817 samples, 0.05%)</title><rect x="550.5" y="1877" width="0.5" height="15.0" fill="rgb(253,9,22)" rx="2" ry="2" />
<text x="553.46" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (524,574,194 samples, 2.45%)</title><rect x="711.1" y="1653" width="28.9" height="15.0" fill="rgb(209,136,3)" rx="2" ry="2" />
<text x="714.05" y="1663.5" >[u..</text>
</g>
<g >
<title>asm_exc_page_fault (2,299,094 samples, 0.01%)</title><rect x="897.3" y="1957" width="0.1" height="15.0" fill="rgb(245,168,23)" rx="2" ry="2" />
<text x="900.28" y="1967.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (15,390,128 samples, 0.07%)</title><rect x="942.8" y="2021" width="0.9" height="15.0" fill="rgb(233,110,25)" rx="2" ry="2" />
<text x="945.83" y="2031.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (254,855,491 samples, 1.19%)</title><rect x="434.1" y="1957" width="14.0" height="15.0" fill="rgb(222,225,22)" rx="2" ry="2" />
<text x="437.05" y="1967.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,218,467 samples, 0.01%)</title><rect x="1063.3" y="1701" width="0.1" height="15.0" fill="rgb(246,135,19)" rx="2" ry="2" />
<text x="1066.27" y="1711.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (3,457,120 samples, 0.02%)</title><rect x="1188.8" y="2021" width="0.2" height="15.0" fill="rgb(247,221,13)" rx="2" ry="2" />
<text x="1191.77" y="2031.5" ></text>
</g>
<g >
<title>tun_do_read (449,743,479 samples, 2.10%)</title><rect x="574.4" y="1925" width="24.8" height="15.0" fill="rgb(245,221,42)" rx="2" ry="2" />
<text x="577.42" y="1935.5" >t..</text>
</g>
<g >
<title>cpu_clock_sample_group (6,868,259 samples, 0.03%)</title><rect x="430.3" y="1909" width="0.4" height="15.0" fill="rgb(217,31,19)" rx="2" ry="2" />
<text x="433.33" y="1919.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,843,881 samples, 0.01%)</title><rect x="72.8" y="1733" width="0.1" height="15.0" fill="rgb(214,123,13)" rx="2" ry="2" />
<text x="75.76" y="1743.5" ></text>
</g>
<g >
<title>fib6_node_lookup (2,976,980 samples, 0.01%)</title><rect x="545.7" y="1717" width="0.1" height="15.0" fill="rgb(225,150,43)" rx="2" ry="2" />
<text x="548.66" y="1727.5" ></text>
</g>
<g >
<title>ip6_forward (2,263,277 samples, 0.01%)</title><rect x="620.5" y="1701" width="0.1" height="15.0" fill="rgb(231,192,26)" rx="2" ry="2" />
<text x="623.47" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (4,803,619 samples, 0.02%)</title><rect x="543.9" y="1797" width="0.3" height="15.0" fill="rgb(237,23,50)" rx="2" ry="2" />
<text x="546.89" y="1807.5" ></text>
</g>
<g >
<title>read_tsc (2,844,918 samples, 0.01%)</title><rect x="996.9" y="1877" width="0.1" height="15.0" fill="rgb(218,183,0)" rx="2" ry="2" />
<text x="999.89" y="1887.5" ></text>
</g>
<g >
<title>netif_skb_features (2,301,922 samples, 0.01%)</title><rect x="696.1" y="1765" width="0.2" height="15.0" fill="rgb(238,72,16)" rx="2" ry="2" />
<text x="699.13" y="1775.5" ></text>
</g>
<g >
<title>page_frag_alloc_align (3,794,155 samples, 0.02%)</title><rect x="549.1" y="1893" width="0.2" height="15.0" fill="rgb(217,205,1)" rx="2" ry="2" />
<text x="552.12" y="1903.5" ></text>
</g>
<g >
<title>ipv6_rcv (15,255,895 samples, 0.07%)</title><rect x="424.7" y="1813" width="0.8" height="15.0" fill="rgb(237,0,27)" rx="2" ry="2" />
<text x="427.71" y="1823.5" ></text>
</g>
<g >
<title>clockevents_program_event (2,931,860 samples, 0.01%)</title><rect x="1152.9" y="1685" width="0.1" height="15.0" fill="rgb(211,39,24)" rx="2" ry="2" />
<text x="1155.86" y="1695.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,944,620 samples, 0.01%)</title><rect x="584.9" y="1813" width="0.1" height="15.0" fill="rgb(237,109,51)" rx="2" ry="2" />
<text x="587.86" y="1823.5" ></text>
</g>
<g >
<title>gvfs-gphoto2-vo (1,822,618 samples, 0.01%)</title><rect x="49.7" y="2069" width="0.1" height="15.0" fill="rgb(224,34,2)" rx="2" ry="2" />
<text x="52.72" y="2079.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,557,826 samples, 0.03%)</title><rect x="30.9" y="2021" width="0.3" height="15.0" fill="rgb(254,75,36)" rx="2" ry="2" />
<text x="33.88" y="2031.5" ></text>
</g>
<g >
<title>next_uptodate_page (3,806,915 samples, 0.02%)</title><rect x="33.8" y="1877" width="0.2" height="15.0" fill="rgb(205,89,0)" rx="2" ry="2" />
<text x="36.76" y="1887.5" ></text>
</g>
<g >
<title>rtl8169_poll (8,604,029 samples, 0.04%)</title><rect x="1112.9" y="1845" width="0.5" height="15.0" fill="rgb(242,158,22)" rx="2" ry="2" />
<text x="1115.92" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (2,443,322 samples, 0.01%)</title><rect x="1014.2" y="1653" width="0.1" height="15.0" fill="rgb(211,152,19)" rx="2" ry="2" />
<text x="1017.16" y="1663.5" ></text>
</g>
<g >
<title>g_socket_receive_message (2,844,257 samples, 0.01%)</title><rect x="43.9" y="2005" width="0.2" height="15.0" fill="rgb(247,72,30)" rx="2" ry="2" />
<text x="46.93" y="2015.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,702,123 samples, 0.01%)</title><rect x="850.8" y="1861" width="0.2" height="15.0" fill="rgb(234,122,15)" rx="2" ry="2" />
<text x="853.81" y="1871.5" ></text>
</g>
<g >
<title>do_exit (1,886,621 samples, 0.01%)</title><rect x="942.2" y="1925" width="0.1" height="15.0" fill="rgb(231,117,41)" rx="2" ry="2" />
<text x="945.20" y="1935.5" ></text>
</g>
<g >
<title>vfs_open (4,237,260 samples, 0.02%)</title><rect x="843.2" y="1909" width="0.2" height="15.0" fill="rgb(215,161,54)" rx="2" ry="2" />
<text x="846.22" y="1919.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,843,292 samples, 0.01%)</title><rect x="980.1" y="1813" width="0.2" height="15.0" fill="rgb(242,218,20)" rx="2" ry="2" />
<text x="983.10" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (2,309,046 samples, 0.01%)</title><rect x="863.2" y="2021" width="0.2" height="15.0" fill="rgb(213,190,33)" rx="2" ry="2" />
<text x="866.23" y="2031.5" ></text>
</g>
<g >
<title>new_sync_read (1,897,828 samples, 0.01%)</title><rect x="901.5" y="1669" width="0.1" height="15.0" fill="rgb(221,176,31)" rx="2" ry="2" />
<text x="904.54" y="1679.5" ></text>
</g>
<g >
<title>__schedule (1,897,817 samples, 0.01%)</title><rect x="886.4" y="1749" width="0.1" height="15.0" fill="rgb(242,216,23)" rx="2" ry="2" />
<text x="889.36" y="1759.5" ></text>
</g>
<g >
<title>lzma2_lzma (14,627,351 samples, 0.07%)</title><rect x="942.8" y="1637" width="0.9" height="15.0" fill="rgb(236,27,10)" rx="2" ry="2" />
<text x="945.85" y="1647.5" ></text>
</g>
<g >
<title>netif_skb_features (1,916,577 samples, 0.01%)</title><rect x="561.6" y="1893" width="0.1" height="15.0" fill="rgb(224,44,10)" rx="2" ry="2" />
<text x="564.57" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (14,082,009 samples, 0.07%)</title><rect x="670.2" y="1653" width="0.8" height="15.0" fill="rgb(221,50,11)" rx="2" ry="2" />
<text x="673.23" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1461" width="0.3" height="15.0" fill="rgb(211,49,38)" rx="2" ry="2" />
<text x="23.41" y="1471.5" ></text>
</g>
<g >
<title>rtl8169_poll (12,408,972 samples, 0.06%)</title><rect x="1169.8" y="1781" width="0.7" height="15.0" fill="rgb(215,223,28)" rx="2" ry="2" />
<text x="1172.78" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (3,446,095 samples, 0.02%)</title><rect x="49.2" y="2053" width="0.2" height="15.0" fill="rgb(214,188,6)" rx="2" ry="2" />
<text x="52.23" y="2063.5" ></text>
</g>
<g >
<title>ip6_pol_route_input (11,040,490 samples, 0.05%)</title><rect x="415.0" y="1717" width="0.6" height="15.0" fill="rgb(228,172,7)" rx="2" ry="2" />
<text x="418.03" y="1727.5" ></text>
</g>
<g >
<title>ip6_output (1,923,337 samples, 0.01%)</title><rect x="926.3" y="1333" width="0.1" height="15.0" fill="rgb(254,54,45)" rx="2" ry="2" />
<text x="929.28" y="1343.5" ></text>
</g>
<g >
<title>rmap_walk_file (1,908,643 samples, 0.01%)</title><rect x="60.5" y="1893" width="0.1" height="15.0" fill="rgb(229,136,1)" rx="2" ry="2" />
<text x="63.54" y="1903.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (2,565,440 samples, 0.01%)</title><rect x="474.4" y="1797" width="0.2" height="15.0" fill="rgb(207,8,18)" rx="2" ry="2" />
<text x="477.44" y="1807.5" ></text>
</g>
<g >
<title>history_delimiting_chars (1,928,402 samples, 0.01%)</title><rect x="41.7" y="2053" width="0.1" height="15.0" fill="rgb(243,24,18)" rx="2" ry="2" />
<text x="44.65" y="2063.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (5,361,904 samples, 0.03%)</title><rect x="696.1" y="1797" width="0.3" height="15.0" fill="rgb(248,195,19)" rx="2" ry="2" />
<text x="699.09" y="1807.5" ></text>
</g>
<g >
<title>ip_forward (5,442,140 samples, 0.03%)</title><rect x="51.0" y="1877" width="0.3" height="15.0" fill="rgb(252,30,30)" rx="2" ry="2" />
<text x="53.97" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="1045" width="0.3" height="15.0" fill="rgb(221,81,13)" rx="2" ry="2" />
<text x="23.41" y="1055.5" ></text>
</g>
<g >
<title>prandom_u32 (1,897,839 samples, 0.01%)</title><rect x="520.2" y="1909" width="0.1" height="15.0" fill="rgb(248,24,43)" rx="2" ry="2" />
<text x="523.19" y="1919.5" ></text>
</g>
<g >
<title>handle_irq_event (1,873,240 samples, 0.01%)</title><rect x="834.6" y="1925" width="0.1" height="15.0" fill="rgb(221,160,38)" rx="2" ry="2" />
<text x="837.62" y="1935.5" ></text>
</g>
<g >
<title>[snap] (19,310,813 samples, 0.09%)</title><rect x="883.8" y="629" width="1.0" height="15.0" fill="rgb(242,152,9)" rx="2" ry="2" />
<text x="886.75" y="639.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (2,638,369 samples, 0.01%)</title><rect x="27.7" y="1829" width="0.1" height="15.0" fill="rgb(228,68,18)" rx="2" ry="2" />
<text x="30.68" y="1839.5" ></text>
</g>
<g >
<title>ip6_forward (2,679,685 samples, 0.01%)</title><rect x="450.1" y="1813" width="0.2" height="15.0" fill="rgb(206,175,3)" rx="2" ry="2" />
<text x="453.12" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (161,099,977 samples, 0.75%)</title><rect x="393.5" y="1477" width="8.8" height="15.0" fill="rgb(214,201,28)" rx="2" ry="2" />
<text x="396.46" y="1487.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (6,071,117 samples, 0.03%)</title><rect x="482.7" y="1717" width="0.3" height="15.0" fill="rgb(217,10,0)" rx="2" ry="2" />
<text x="485.65" y="1727.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (1,926,715 samples, 0.01%)</title><rect x="22.1" y="1861" width="0.1" height="15.0" fill="rgb(217,88,22)" rx="2" ry="2" />
<text x="25.09" y="1871.5" ></text>
</g>
<g >
<title>ip_route_input_noref (2,244,629 samples, 0.01%)</title><rect x="501.1" y="1797" width="0.1" height="15.0" fill="rgb(239,129,30)" rx="2" ry="2" />
<text x="504.12" y="1807.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (7,812,817 samples, 0.04%)</title><rect x="1099.8" y="1573" width="0.4" height="15.0" fill="rgb(232,49,5)" rx="2" ry="2" />
<text x="1102.80" y="1583.5" ></text>
</g>
<g >
<title>__napi_poll (7,241,707 samples, 0.03%)</title><rect x="591.9" y="1717" width="0.4" height="15.0" fill="rgb(207,203,40)" rx="2" ry="2" />
<text x="594.89" y="1727.5" ></text>
</g>
<g >
<title>ip6_forward (2,012,045 samples, 0.01%)</title><rect x="417.0" y="1765" width="0.1" height="15.0" fill="rgb(248,78,13)" rx="2" ry="2" />
<text x="420.01" y="1775.5" ></text>
</g>
<g >
<title>worker_thread (3,049,696 samples, 0.01%)</title><rect x="64.6" y="2021" width="0.1" height="15.0" fill="rgb(242,172,49)" rx="2" ry="2" />
<text x="67.56" y="2031.5" ></text>
</g>
<g >
<title>nft_do_chain_ipv6 (1,872,496 samples, 0.01%)</title><rect x="440.5" y="1781" width="0.1" height="15.0" fill="rgb(239,180,1)" rx="2" ry="2" />
<text x="443.50" y="1791.5" ></text>
</g>
<g >
<title>getname (3,078,217 samples, 0.01%)</title><rect x="842.1" y="1941" width="0.2" height="15.0" fill="rgb(220,159,41)" rx="2" ry="2" />
<text x="845.11" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (31,423,382 samples, 0.15%)</title><rect x="876.8" y="2053" width="1.7" height="15.0" fill="rgb(219,190,11)" rx="2" ry="2" />
<text x="879.81" y="2063.5" ></text>
</g>
<g >
<title>dev_queue_xmit (41,937,853 samples, 0.20%)</title><rect x="1043.3" y="1605" width="2.3" height="15.0" fill="rgb(234,104,17)" rx="2" ry="2" />
<text x="1046.26" y="1615.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,886,557 samples, 0.01%)</title><rect x="65.8" y="2021" width="0.1" height="15.0" fill="rgb(218,95,2)" rx="2" ry="2" />
<text x="68.83" y="2031.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,247,105 samples, 0.01%)</title><rect x="605.5" y="1893" width="0.1" height="15.0" fill="rgb(207,131,0)" rx="2" ry="2" />
<text x="608.50" y="1903.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (26,314,757 samples, 0.12%)</title><rect x="403.6" y="1893" width="1.4" height="15.0" fill="rgb(214,139,17)" rx="2" ry="2" />
<text x="406.58" y="1903.5" ></text>
</g>
<g >
<title>handle_mm_fault (38,445,727 samples, 0.18%)</title><rect x="955.2" y="1973" width="2.1" height="15.0" fill="rgb(218,29,19)" rx="2" ry="2" />
<text x="958.22" y="1983.5" ></text>
</g>
<g >
<title>path_openat (2,696,088 samples, 0.01%)</title><rect x="66.6" y="1925" width="0.2" height="15.0" fill="rgb(224,114,42)" rx="2" ry="2" />
<text x="69.61" y="1935.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,012,640 samples, 0.01%)</title><rect x="37.0" y="1989" width="0.2" height="15.0" fill="rgb(245,124,52)" rx="2" ry="2" />
<text x="40.00" y="1999.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,644,893 samples, 0.01%)</title><rect x="574.0" y="1781" width="0.1" height="15.0" fill="rgb(246,95,24)" rx="2" ry="2" />
<text x="577.00" y="1791.5" ></text>
</g>
<g >
<title>__update_blocked_fair (2,067,479 samples, 0.01%)</title><rect x="59.3" y="1941" width="0.1" height="15.0" fill="rgb(225,37,28)" rx="2" ry="2" />
<text x="62.33" y="1951.5" ></text>
</g>
<g >
<title>ret_from_fork (16,365,759 samples, 0.08%)</title><rect x="63.7" y="2053" width="0.9" height="15.0" fill="rgb(216,114,48)" rx="2" ry="2" />
<text x="66.66" y="2063.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,821,064 samples, 0.01%)</title><rect x="607.6" y="1957" width="0.1" height="15.0" fill="rgb(247,207,24)" rx="2" ry="2" />
<text x="610.56" y="1967.5" ></text>
</g>
<g >
<title>fsnotify_perm.part.0 (3,679,463 samples, 0.02%)</title><rect x="599.8" y="1941" width="0.2" height="15.0" fill="rgb(212,138,16)" rx="2" ry="2" />
<text x="602.83" y="1951.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (3,387,589 samples, 0.02%)</title><rect x="1177.4" y="1925" width="0.2" height="15.0" fill="rgb(237,35,15)" rx="2" ry="2" />
<text x="1180.38" y="1935.5" ></text>
</g>
<g >
<title>[libglib-2.0.so.0.7200.4] (2,299,761 samples, 0.01%)</title><rect x="1180.4" y="2053" width="0.1" height="15.0" fill="rgb(245,21,25)" rx="2" ry="2" />
<text x="1183.36" y="2063.5" ></text>
</g>
<g >
<title>ip_route_input_noref (22,297,421 samples, 0.10%)</title><rect x="1001.7" y="1733" width="1.2" height="15.0" fill="rgb(234,67,37)" rx="2" ry="2" />
<text x="1004.65" y="1743.5" ></text>
</g>
<g >
<title>rtl8169_poll (47,157,823 samples, 0.22%)</title><rect x="55.7" y="1941" width="2.6" height="15.0" fill="rgb(246,59,3)" rx="2" ry="2" />
<text x="58.69" y="1951.5" ></text>
</g>
<g >
<title>__ip_finish_output (34,059,321 samples, 0.16%)</title><rect x="1028.0" y="1653" width="1.9" height="15.0" fill="rgb(230,35,48)" rx="2" ry="2" />
<text x="1031.02" y="1663.5" ></text>
</g>
<g >
<title>__x64_sys_poll (5,496,878 samples, 0.03%)</title><rect x="47.9" y="1989" width="0.3" height="15.0" fill="rgb(249,62,3)" rx="2" ry="2" />
<text x="50.92" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (5,675,965 samples, 0.03%)</title><rect x="1172.2" y="2037" width="0.3" height="15.0" fill="rgb(208,178,2)" rx="2" ry="2" />
<text x="1175.21" y="2047.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,917,704 samples, 0.01%)</title><rect x="695.4" y="1749" width="0.1" height="15.0" fill="rgb(223,185,47)" rx="2" ry="2" />
<text x="698.42" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (4,059,246 samples, 0.02%)</title><rect x="552.6" y="1925" width="0.2" height="15.0" fill="rgb(215,136,1)" rx="2" ry="2" />
<text x="555.61" y="1935.5" ></text>
</g>
<g >
<title>ip6_route_input (3,919,961 samples, 0.02%)</title><rect x="1062.7" y="1717" width="0.2" height="15.0" fill="rgb(222,11,1)" rx="2" ry="2" />
<text x="1065.70" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (18,399,085 samples, 0.09%)</title><rect x="1140.9" y="1621" width="1.0" height="15.0" fill="rgb(208,191,5)" rx="2" ry="2" />
<text x="1143.90" y="1631.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="949" width="0.2" height="15.0" fill="rgb(232,217,28)" rx="2" ry="2" />
<text x="897.72" y="959.5" ></text>
</g>
<g >
<title>do_jit (2,225,032 samples, 0.01%)</title><rect x="865.5" y="1877" width="0.2" height="15.0" fill="rgb(221,179,35)" rx="2" ry="2" />
<text x="868.54" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="901" width="0.3" height="15.0" fill="rgb(244,178,51)" rx="2" ry="2" />
<text x="23.41" y="911.5" ></text>
</g>
<g >
<title>nf_ip_checksum (9,903,412 samples, 0.05%)</title><rect x="823.3" y="1733" width="0.6" height="15.0" fill="rgb(240,73,7)" rx="2" ry="2" />
<text x="826.34" y="1743.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,299,454 samples, 0.01%)</title><rect x="636.8" y="1781" width="0.1" height="15.0" fill="rgb(245,20,6)" rx="2" ry="2" />
<text x="639.79" y="1791.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (1,918,434 samples, 0.01%)</title><rect x="782.6" y="1781" width="0.1" height="15.0" fill="rgb(210,180,26)" rx="2" ry="2" />
<text x="785.63" y="1791.5" ></text>
</g>
<g >
<title>free_pcp_prepare (7,577,639 samples, 0.04%)</title><rect x="582.3" y="1829" width="0.4" height="15.0" fill="rgb(236,121,47)" rx="2" ry="2" />
<text x="585.30" y="1839.5" ></text>
</g>
<g >
<title>fib_rules_lookup (2,553,580 samples, 0.01%)</title><rect x="57.3" y="1765" width="0.1" height="15.0" fill="rgb(227,219,54)" rx="2" ry="2" />
<text x="60.30" y="1775.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (236,071,471 samples, 1.10%)</title><rect x="1034.4" y="1733" width="13.1" height="15.0" fill="rgb(230,157,0)" rx="2" ry="2" />
<text x="1037.44" y="1743.5" ></text>
</g>
<g >
<title>exit_mmap (4,636,266 samples, 0.02%)</title><rect x="69.4" y="1941" width="0.3" height="15.0" fill="rgb(229,159,48)" rx="2" ry="2" />
<text x="72.42" y="1951.5" ></text>
</g>
<g >
<title>resolve_normal_ct (1,967,269 samples, 0.01%)</title><rect x="1034.0" y="1669" width="0.1" height="15.0" fill="rgb(238,15,5)" rx="2" ry="2" />
<text x="1037.03" y="1679.5" ></text>
</g>
<g >
<title>[snap] (19,310,813 samples, 0.09%)</title><rect x="883.8" y="677" width="1.0" height="15.0" fill="rgb(215,104,40)" rx="2" ry="2" />
<text x="886.75" y="687.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,821,728 samples, 0.02%)</title><rect x="835.5" y="1989" width="0.2" height="15.0" fill="rgb(230,95,42)" rx="2" ry="2" />
<text x="838.52" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (10,624,829 samples, 0.05%)</title><rect x="671.3" y="1685" width="0.6" height="15.0" fill="rgb(217,113,3)" rx="2" ry="2" />
<text x="674.34" y="1695.5" ></text>
</g>
<g >
<title>add_wait_queue (2,127,756 samples, 0.01%)</title><rect x="575.4" y="1909" width="0.1" height="15.0" fill="rgb(230,105,16)" rx="2" ry="2" />
<text x="578.41" y="1919.5" ></text>
</g>
<g >
<title>dequeue_skb (61,246,537 samples, 0.29%)</title><rect x="722.7" y="1445" width="3.3" height="15.0" fill="rgb(226,142,52)" rx="2" ry="2" />
<text x="725.67" y="1455.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,988,776 samples, 0.01%)</title><rect x="610.6" y="1957" width="0.1" height="15.0" fill="rgb(246,217,7)" rx="2" ry="2" />
<text x="613.58" y="1967.5" ></text>
</g>
<g >
<title>skb_free_head (5,230,068 samples, 0.02%)</title><rect x="420.3" y="1829" width="0.3" height="15.0" fill="rgb(207,72,12)" rx="2" ry="2" />
<text x="423.31" y="1839.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,912,415 samples, 0.01%)</title><rect x="610.3" y="1781" width="0.1" height="15.0" fill="rgb(232,74,37)" rx="2" ry="2" />
<text x="613.31" y="1791.5" ></text>
</g>
<g >
<title>[snap] (3,224,632 samples, 0.02%)</title><rect x="900.9" y="1589" width="0.2" height="15.0" fill="rgb(231,118,44)" rx="2" ry="2" />
<text x="903.90" y="1599.5" ></text>
</g>
<g >
<title>__napi_poll (4,223,838 samples, 0.02%)</title><rect x="645.7" y="1813" width="0.2" height="15.0" fill="rgb(234,130,40)" rx="2" ry="2" />
<text x="648.70" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (31,670,496 samples, 0.15%)</title><rect x="971.9" y="2053" width="1.7" height="15.0" fill="rgb(240,38,5)" rx="2" ry="2" />
<text x="974.88" y="2063.5" ></text>
</g>
<g >
<title>get_partial_node.part.0 (4,595,310 samples, 0.02%)</title><rect x="1018.1" y="1733" width="0.2" height="15.0" fill="rgb(236,81,43)" rx="2" ry="2" />
<text x="1021.07" y="1743.5" ></text>
</g>
<g >
<title>tick_nohz_irq_exit (4,140,410 samples, 0.02%)</title><rect x="1069.3" y="1893" width="0.2" height="15.0" fill="rgb(252,194,41)" rx="2" ry="2" />
<text x="1072.25" y="1903.5" ></text>
</g>
<g >
<title>ip6_tnl_xmit (116,202,201 samples, 0.54%)</title><rect x="740.3" y="1621" width="6.4" height="15.0" fill="rgb(254,23,17)" rx="2" ry="2" />
<text x="743.28" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="1061" width="0.3" height="15.0" fill="rgb(224,93,7)" rx="2" ry="2" />
<text x="23.41" y="1071.5" ></text>
</g>
<g >
<title>fib4_rule_action (2,304,699 samples, 0.01%)</title><rect x="1126.4" y="1573" width="0.1" height="15.0" fill="rgb(251,103,1)" rx="2" ry="2" />
<text x="1129.37" y="1583.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="869" width="0.2" height="15.0" fill="rgb(220,192,6)" rx="2" ry="2" />
<text x="897.72" y="879.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="917" width="1.1" height="15.0" fill="rgb(217,186,10)" rx="2" ry="2" />
<text x="886.75" y="927.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="1141" width="0.3" height="15.0" fill="rgb(233,11,24)" rx="2" ry="2" />
<text x="23.41" y="1151.5" ></text>
</g>
<g >
<title>net_rx_action (3,565,719 samples, 0.02%)</title><rect x="978.5" y="1925" width="0.2" height="15.0" fill="rgb(230,172,35)" rx="2" ry="2" />
<text x="981.51" y="1935.5" ></text>
</g>
<g >
<title>acpi_ds_exec_end_op (12,774,079 samples, 0.06%)</title><rect x="62.4" y="1749" width="0.7" height="15.0" fill="rgb(220,200,53)" rx="2" ry="2" />
<text x="65.38" y="1759.5" ></text>
</g>
<g >
<title>[snap] (22,870,087 samples, 0.11%)</title><rect x="894.2" y="1781" width="1.3" height="15.0" fill="rgb(252,147,25)" rx="2" ry="2" />
<text x="897.21" y="1791.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (3,456,231 samples, 0.02%)</title><rect x="733.3" y="1381" width="0.2" height="15.0" fill="rgb(230,73,14)" rx="2" ry="2" />
<text x="736.28" y="1391.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="1045" width="0.2" height="15.0" fill="rgb(231,124,1)" rx="2" ry="2" />
<text x="897.72" y="1055.5" ></text>
</g>
<g >
<title>asm_common_interrupt (4,144,594 samples, 0.02%)</title><rect x="573.9" y="1925" width="0.3" height="15.0" fill="rgb(216,48,3)" rx="2" ry="2" />
<text x="576.94" y="1935.5" ></text>
</g>
<g >
<title>napi_complete_done (1,911,662 samples, 0.01%)</title><rect x="599.7" y="1813" width="0.1" height="15.0" fill="rgb(241,176,49)" rx="2" ry="2" />
<text x="602.66" y="1823.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,326,584 samples, 0.01%)</title><rect x="969.6" y="1845" width="0.1" height="15.0" fill="rgb(251,29,51)" rx="2" ry="2" />
<text x="972.59" y="1855.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (5,277,912 samples, 0.02%)</title><rect x="870.8" y="2021" width="0.3" height="15.0" fill="rgb(220,10,46)" rx="2" ry="2" />
<text x="873.84" y="2031.5" ></text>
</g>
<g >
<title>ksys_write (3,262,457 samples, 0.02%)</title><rect x="834.1" y="2005" width="0.1" height="15.0" fill="rgb(230,63,49)" rx="2" ry="2" />
<text x="837.07" y="2015.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,264,055 samples, 0.01%)</title><rect x="30.8" y="2021" width="0.1" height="15.0" fill="rgb(248,164,53)" rx="2" ry="2" />
<text x="33.75" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (12,444,542 samples, 0.06%)</title><rect x="415.9" y="1781" width="0.7" height="15.0" fill="rgb(253,29,20)" rx="2" ry="2" />
<text x="418.89" y="1791.5" ></text>
</g>
<g >
<title>zap_pte_range (9,539,267 samples, 0.04%)</title><rect x="40.8" y="1861" width="0.6" height="15.0" fill="rgb(243,56,53)" rx="2" ry="2" />
<text x="43.85" y="1871.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="933" width="1.1" height="15.0" fill="rgb(211,128,10)" rx="2" ry="2" />
<text x="886.75" y="943.5" ></text>
</g>
<g >
<title>__mkroute_input (16,795,259 samples, 0.08%)</title><rect x="655.1" y="1685" width="1.0" height="15.0" fill="rgb(228,23,20)" rx="2" ry="2" />
<text x="658.14" y="1695.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,407,050 samples, 0.02%)</title><rect x="646.6" y="1829" width="0.2" height="15.0" fill="rgb(218,167,7)" rx="2" ry="2" />
<text x="649.61" y="1839.5" ></text>
</g>
<g >
<title>[snapctl] (30,581,640 samples, 0.14%)</title><rect x="945.2" y="1893" width="1.7" height="15.0" fill="rgb(229,24,19)" rx="2" ry="2" />
<text x="948.21" y="1903.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (293,512,591 samples, 1.37%)</title><rect x="405.6" y="1941" width="16.2" height="15.0" fill="rgb(218,95,27)" rx="2" ry="2" />
<text x="408.59" y="1951.5" ></text>
</g>
<g >
<title>[snap] (19,310,813 samples, 0.09%)</title><rect x="883.8" y="645" width="1.0" height="15.0" fill="rgb(237,10,24)" rx="2" ry="2" />
<text x="886.75" y="655.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (34,975,093 samples, 0.16%)</title><rect x="732.9" y="1477" width="1.9" height="15.0" fill="rgb(219,38,34)" rx="2" ry="2" />
<text x="735.87" y="1487.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1845" width="0.5" height="15.0" fill="rgb(219,11,37)" rx="2" ry="2" />
<text x="18.42" y="1855.5" ></text>
</g>
<g >
<title>nf_hook_slow (14,514,886 samples, 0.07%)</title><rect x="1124.2" y="1701" width="0.8" height="15.0" fill="rgb(216,126,33)" rx="2" ry="2" />
<text x="1127.25" y="1711.5" ></text>
</g>
<g >
<title>__common_interrupt (37,838,627 samples, 0.18%)</title><rect x="403.3" y="1957" width="2.0" height="15.0" fill="rgb(222,224,1)" rx="2" ry="2" />
<text x="406.25" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,672,282 samples, 0.01%)</title><rect x="635.4" y="1669" width="0.1" height="15.0" fill="rgb(222,212,31)" rx="2" ry="2" />
<text x="638.37" y="1679.5" ></text>
</g>
<g >
<title>__put_cred (8,126,318 samples, 0.04%)</title><rect x="852.0" y="1941" width="0.5" height="15.0" fill="rgb(212,132,6)" rx="2" ry="2" />
<text x="855.01" y="1951.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (5,344,725 samples, 0.02%)</title><rect x="411.5" y="1605" width="0.3" height="15.0" fill="rgb(242,45,22)" rx="2" ry="2" />
<text x="414.50" y="1615.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (5,331,981 samples, 0.02%)</title><rect x="46.8" y="2053" width="0.3" height="15.0" fill="rgb(215,172,40)" rx="2" ry="2" />
<text x="49.79" y="2063.5" ></text>
</g>
<g >
<title>__schedule (5,528,568 samples, 0.03%)</title><rect x="836.8" y="1941" width="0.3" height="15.0" fill="rgb(253,41,18)" rx="2" ry="2" />
<text x="839.77" y="1951.5" ></text>
</g>
<g >
<title>napi_complete_done (17,015,426 samples, 0.08%)</title><rect x="1062.6" y="1829" width="0.9" height="15.0" fill="rgb(221,173,48)" rx="2" ry="2" />
<text x="1065.61" y="1839.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,283,926 samples, 0.01%)</title><rect x="22.3" y="1989" width="0.2" height="15.0" fill="rgb(222,162,54)" rx="2" ry="2" />
<text x="25.33" y="1999.5" ></text>
</g>
<g >
<title>ip6_route_input (12,745,855 samples, 0.06%)</title><rect x="442.1" y="1797" width="0.7" height="15.0" fill="rgb(223,12,37)" rx="2" ry="2" />
<text x="445.11" y="1807.5" ></text>
</g>
<g >
<title>__napi_alloc_skb (23,429,431 samples, 0.11%)</title><rect x="683.6" y="1781" width="1.3" height="15.0" fill="rgb(220,174,32)" rx="2" ry="2" />
<text x="686.59" y="1791.5" ></text>
</g>
<g >
<title>fib_rules_lookup (8,314,822 samples, 0.04%)</title><rect x="537.5" y="1797" width="0.4" height="15.0" fill="rgb(249,52,44)" rx="2" ry="2" />
<text x="540.48" y="1807.5" ></text>
</g>
<g >
<title>[snapctl] (15,185,201 samples, 0.07%)</title><rect x="944.2" y="2037" width="0.9" height="15.0" fill="rgb(209,63,11)" rx="2" ry="2" />
<text x="947.25" y="2047.5" ></text>
</g>
<g >
<title>memset_erms (10,878,081 samples, 0.05%)</title><rect x="643.5" y="1861" width="0.6" height="15.0" fill="rgb(205,199,27)" rx="2" ry="2" />
<text x="646.54" y="1871.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (116,248,246 samples, 0.54%)</title><rect x="1121.6" y="1749" width="6.4" height="15.0" fill="rgb(230,121,3)" rx="2" ry="2" />
<text x="1124.62" y="1759.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (4,983,157 samples, 0.02%)</title><rect x="53.8" y="1909" width="0.3" height="15.0" fill="rgb(254,43,22)" rx="2" ry="2" />
<text x="56.78" y="1919.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10,983,305 samples, 0.05%)</title><rect x="979.7" y="1941" width="0.6" height="15.0" fill="rgb(248,111,33)" rx="2" ry="2" />
<text x="982.72" y="1951.5" ></text>
</g>
<g >
<title>lookup_fast (3,867,441 samples, 0.02%)</title><rect x="68.8" y="1877" width="0.2" height="15.0" fill="rgb(253,29,51)" rx="2" ry="2" />
<text x="71.76" y="1887.5" ></text>
</g>
<g >
<title>squashfs_decompress (11,239,380 samples, 0.05%)</title><rect x="31.4" y="1717" width="0.6" height="15.0" fill="rgb(223,147,3)" rx="2" ry="2" />
<text x="34.41" y="1727.5" ></text>
</g>
<g >
<title>common_interrupt (4,144,594 samples, 0.02%)</title><rect x="573.9" y="1909" width="0.3" height="15.0" fill="rgb(210,174,53)" rx="2" ry="2" />
<text x="576.94" y="1919.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,667,567 samples, 0.01%)</title><rect x="878.7" y="2005" width="0.2" height="15.0" fill="rgb(216,199,39)" rx="2" ry="2" />
<text x="881.71" y="2015.5" ></text>
</g>
<g >
<title>bprm_execve.part.0 (37,535,914 samples, 0.18%)</title><rect x="889.1" y="1957" width="2.1" height="15.0" fill="rgb(208,44,15)" rx="2" ry="2" />
<text x="892.12" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="2021" width="0.3" height="15.0" fill="rgb(240,90,44)" rx="2" ry="2" />
<text x="23.41" y="2031.5" ></text>
</g>
<g >
<title>__entry_text_start (1,891,864 samples, 0.01%)</title><rect x="431.0" y="2005" width="0.1" height="15.0" fill="rgb(246,8,47)" rx="2" ry="2" />
<text x="434.04" y="2015.5" ></text>
</g>
<g >
<title>__ip6_finish_output (2,675,134 samples, 0.01%)</title><rect x="597.5" y="1589" width="0.2" height="15.0" fill="rgb(213,228,45)" rx="2" ry="2" />
<text x="600.52" y="1599.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (1,886,621 samples, 0.01%)</title><rect x="942.2" y="1973" width="0.1" height="15.0" fill="rgb(242,122,41)" rx="2" ry="2" />
<text x="945.20" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_ioctl (3,502,333 samples, 0.02%)</title><rect x="861.3" y="2005" width="0.1" height="15.0" fill="rgb(233,192,19)" rx="2" ry="2" />
<text x="864.25" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (2,610,849 samples, 0.01%)</title><rect x="1101.0" y="1701" width="0.1" height="15.0" fill="rgb(225,152,12)" rx="2" ry="2" />
<text x="1104.00" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="565" width="8.8" height="15.0" fill="rgb(230,204,40)" rx="2" ry="2" />
<text x="396.46" y="575.5" ></text>
</g>
<g >
<title>kfree (3,484,190 samples, 0.02%)</title><rect x="852.3" y="1893" width="0.2" height="15.0" fill="rgb(242,116,1)" rx="2" ry="2" />
<text x="855.26" y="1903.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (12,756,139 samples, 0.06%)</title><rect x="1123.1" y="1461" width="0.7" height="15.0" fill="rgb(238,85,22)" rx="2" ry="2" />
<text x="1126.10" y="1471.5" ></text>
</g>
<g >
<title>cake_dequeue (4,970,252 samples, 0.02%)</title><rect x="505.4" y="1909" width="0.3" height="15.0" fill="rgb(228,42,53)" rx="2" ry="2" />
<text x="508.44" y="1919.5" ></text>
</g>
<g >
<title>__schedule (11,905,807 samples, 0.06%)</title><rect x="54.6" y="1989" width="0.7" height="15.0" fill="rgb(228,95,26)" rx="2" ry="2" />
<text x="57.62" y="1999.5" ></text>
</g>
<g >
<title>ip_route_input_slow (21,296,402 samples, 0.10%)</title><rect x="1001.7" y="1701" width="1.2" height="15.0" fill="rgb(232,9,48)" rx="2" ry="2" />
<text x="1004.70" y="1711.5" ></text>
</g>
<g >
<title>csum_partial (2,995,658 samples, 0.01%)</title><rect x="500.7" y="1781" width="0.2" height="15.0" fill="rgb(245,117,54)" rx="2" ry="2" />
<text x="503.70" y="1791.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (329,586,946 samples, 1.54%)</title><rect x="507.9" y="2021" width="18.2" height="15.0" fill="rgb(249,119,19)" rx="2" ry="2" />
<text x="510.92" y="2031.5" ></text>
</g>
<g >
<title>__minimal_calloc (1,929,812 samples, 0.01%)</title><rect x="1185.4" y="2053" width="0.1" height="15.0" fill="rgb(235,131,11)" rx="2" ry="2" />
<text x="1188.39" y="2063.5" ></text>
</g>
<g >
<title>irq_exit_rcu (14,109,090 samples, 0.07%)</title><rect x="597.2" y="1797" width="0.8" height="15.0" fill="rgb(248,35,9)" rx="2" ry="2" />
<text x="600.22" y="1807.5" ></text>
</g>
<g >
<title>__do_sys_clone (3,321,518 samples, 0.02%)</title><rect x="1178.0" y="1989" width="0.1" height="15.0" fill="rgb(212,223,38)" rx="2" ry="2" />
<text x="1180.95" y="1999.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,881,594 samples, 0.01%)</title><rect x="838.2" y="1909" width="0.1" height="15.0" fill="rgb(236,125,51)" rx="2" ry="2" />
<text x="841.18" y="1919.5" ></text>
</g>
<g >
<title>__napi_poll (32,183,357 samples, 0.15%)</title><rect x="1150.1" y="1797" width="1.7" height="15.0" fill="rgb(252,175,10)" rx="2" ry="2" />
<text x="1153.05" y="1807.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (3,412,778 samples, 0.02%)</title><rect x="629.3" y="1749" width="0.2" height="15.0" fill="rgb(223,42,54)" rx="2" ry="2" />
<text x="632.30" y="1759.5" ></text>
</g>
<g >
<title>put_cred_rcu (2,709,604 samples, 0.01%)</title><rect x="859.1" y="1925" width="0.1" height="15.0" fill="rgb(218,47,54)" rx="2" ry="2" />
<text x="862.09" y="1935.5" ></text>
</g>
<g >
<title>net_rx_action (51,644,282 samples, 0.24%)</title><rect x="1099.2" y="1861" width="2.8" height="15.0" fill="rgb(238,220,21)" rx="2" ry="2" />
<text x="1102.17" y="1871.5" ></text>
</g>
<g >
<title>[snap] (24,041,840 samples, 0.11%)</title><rect x="883.7" y="1669" width="1.3" height="15.0" fill="rgb(251,191,24)" rx="2" ry="2" />
<text x="886.67" y="1679.5" ></text>
</g>
<g >
<title>handle_mm_fault (13,807,521 samples, 0.06%)</title><rect x="24.2" y="1989" width="0.7" height="15.0" fill="rgb(207,174,4)" rx="2" ry="2" />
<text x="27.15" y="1999.5" ></text>
</g>
<g >
<title>new_sync_read (5,786,855 samples, 0.03%)</title><rect x="901.9" y="1701" width="0.3" height="15.0" fill="rgb(233,11,26)" rx="2" ry="2" />
<text x="904.85" y="1711.5" ></text>
</g>
<g >
<title>dequeue_skb (4,946,906 samples, 0.02%)</title><rect x="447.4" y="1909" width="0.3" height="15.0" fill="rgb(243,92,36)" rx="2" ry="2" />
<text x="450.39" y="1919.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,467,755 samples, 0.02%)</title><rect x="933.4" y="1509" width="0.2" height="15.0" fill="rgb(251,121,24)" rx="2" ry="2" />
<text x="936.41" y="1519.5" ></text>
</g>
<g >
<title>handle_edge_irq (3,898,311 samples, 0.02%)</title><rect x="1062.3" y="1829" width="0.2" height="15.0" fill="rgb(213,132,26)" rx="2" ry="2" />
<text x="1065.32" y="1839.5" ></text>
</g>
<g >
<title>__napi_poll (3,354,198 samples, 0.02%)</title><rect x="572.3" y="1861" width="0.2" height="15.0" fill="rgb(218,209,15)" rx="2" ry="2" />
<text x="575.32" y="1871.5" ></text>
</g>
<g >
<title>apparmor_file_open (1,935,329 samples, 0.01%)</title><rect x="855.8" y="1861" width="0.2" height="15.0" fill="rgb(241,222,49)" rx="2" ry="2" />
<text x="858.84" y="1871.5" ></text>
</g>
<g >
<title>__get_user_pages_remote (1,927,463 samples, 0.01%)</title><rect x="35.4" y="1909" width="0.1" height="15.0" fill="rgb(246,104,13)" rx="2" ry="2" />
<text x="38.40" y="1919.5" ></text>
</g>
<g >
<title>ip_rcv (6,472,524 samples, 0.03%)</title><rect x="449.7" y="1861" width="0.3" height="15.0" fill="rgb(214,168,37)" rx="2" ry="2" />
<text x="452.66" y="1871.5" ></text>
</g>
<g >
<title>[snap] (3,609,352 samples, 0.02%)</title><rect x="900.9" y="1605" width="0.2" height="15.0" fill="rgb(217,102,48)" rx="2" ry="2" />
<text x="903.88" y="1615.5" ></text>
</g>
<g >
<title>[snap-exec] (11,505,028 samples, 0.05%)</title><rect x="871.9" y="2021" width="0.6" height="15.0" fill="rgb(230,158,24)" rx="2" ry="2" />
<text x="874.89" y="2031.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2,869,604 samples, 0.01%)</title><rect x="585.2" y="1861" width="0.1" height="15.0" fill="rgb(206,170,51)" rx="2" ry="2" />
<text x="588.16" y="1871.5" ></text>
</g>
<g >
<title>exc_page_fault (1,869,589 samples, 0.01%)</title><rect x="1187.0" y="2005" width="0.1" height="15.0" fill="rgb(222,88,19)" rx="2" ry="2" />
<text x="1190.01" y="2015.5" ></text>
</g>
<g >
<title>net_tx_action (4,756,424 samples, 0.02%)</title><rect x="1102.7" y="1861" width="0.3" height="15.0" fill="rgb(212,142,44)" rx="2" ry="2" />
<text x="1105.69" y="1871.5" ></text>
</g>
<g >
<title>common_interrupt (2,226,476 samples, 0.01%)</title><rect x="902.8" y="1813" width="0.1" height="15.0" fill="rgb(224,176,36)" rx="2" ry="2" />
<text x="905.78" y="1823.5" ></text>
</g>
<g >
<title>path_openat (3,458,193 samples, 0.02%)</title><rect x="871.4" y="1957" width="0.2" height="15.0" fill="rgb(213,149,1)" rx="2" ry="2" />
<text x="874.41" y="1967.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (3,587,392 samples, 0.02%)</title><rect x="1008.7" y="1509" width="0.2" height="15.0" fill="rgb(242,93,54)" rx="2" ry="2" />
<text x="1011.74" y="1519.5" ></text>
</g>
<g >
<title>kfree (6,965,629 samples, 0.03%)</title><rect x="551.9" y="1861" width="0.3" height="15.0" fill="rgb(217,45,20)" rx="2" ry="2" />
<text x="554.86" y="1871.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (4,239,187 samples, 0.02%)</title><rect x="66.6" y="2021" width="0.2" height="15.0" fill="rgb(220,87,35)" rx="2" ry="2" />
<text x="69.61" y="2031.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (3,039,507 samples, 0.01%)</title><rect x="578.0" y="1701" width="0.2" height="15.0" fill="rgb(241,63,10)" rx="2" ry="2" />
<text x="581.05" y="1711.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="965" width="0.2" height="15.0" fill="rgb(213,202,46)" rx="2" ry="2" />
<text x="897.72" y="975.5" ></text>
</g>
<g >
<title>xz_dec_lzma2_run (10,850,644 samples, 0.05%)</title><rect x="31.4" y="1637" width="0.6" height="15.0" fill="rgb(242,34,48)" rx="2" ry="2" />
<text x="34.43" y="1647.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (2,249,559 samples, 0.01%)</title><rect x="1131.8" y="1493" width="0.2" height="15.0" fill="rgb(248,149,8)" rx="2" ry="2" />
<text x="1134.84" y="1503.5" ></text>
</g>
<g >
<title>__do_fault (26,533,332 samples, 0.12%)</title><rect x="955.3" y="1909" width="1.5" height="15.0" fill="rgb(229,210,5)" rx="2" ry="2" />
<text x="958.35" y="1919.5" ></text>
</g>
<g >
<title>sch_direct_xmit (28,156,052 samples, 0.13%)</title><rect x="751.6" y="1653" width="1.6" height="15.0" fill="rgb(226,142,52)" rx="2" ry="2" />
<text x="754.60" y="1663.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (1,922,013 samples, 0.01%)</title><rect x="17.3" y="2037" width="0.1" height="15.0" fill="rgb(253,25,37)" rx="2" ry="2" />
<text x="20.33" y="2047.5" ></text>
</g>
<g >
<title>[snap] (1,901,184 samples, 0.01%)</title><rect x="862.6" y="2053" width="0.1" height="15.0" fill="rgb(237,23,11)" rx="2" ry="2" />
<text x="865.57" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="581" width="8.8" height="15.0" fill="rgb(254,169,49)" rx="2" ry="2" />
<text x="396.46" y="591.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (4,501,766 samples, 0.02%)</title><rect x="613.2" y="1925" width="0.3" height="15.0" fill="rgb(236,145,46)" rx="2" ry="2" />
<text x="616.25" y="1935.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,508,762 samples, 0.04%)</title><rect x="15.4" y="325" width="0.5" height="15.0" fill="rgb(248,187,46)" rx="2" ry="2" />
<text x="18.42" y="335.5" ></text>
</g>
<g >
<title>[unknown] (499,117,367 samples, 2.33%)</title><rect x="711.9" y="1621" width="27.5" height="15.0" fill="rgb(210,78,1)" rx="2" ry="2" />
<text x="714.93" y="1631.5" >[..</text>
</g>
<g >
<title>dev_queue_xmit (11,988,779 samples, 0.06%)</title><rect x="1003.2" y="1621" width="0.7" height="15.0" fill="rgb(213,215,4)" rx="2" ry="2" />
<text x="1006.21" y="1631.5" ></text>
</g>
<g >
<title>fib_rules_lookup (11,966,700 samples, 0.06%)</title><rect x="1025.8" y="1605" width="0.7" height="15.0" fill="rgb(209,212,47)" rx="2" ry="2" />
<text x="1028.84" y="1615.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (7,377,457 samples, 0.03%)</title><rect x="15.4" y="213" width="0.4" height="15.0" fill="rgb(218,126,7)" rx="2" ry="2" />
<text x="18.42" y="223.5" ></text>
</g>
<g >
<title>[unknown] (17,200,587 samples, 0.08%)</title><rect x="1152.1" y="1765" width="1.0" height="15.0" fill="rgb(231,148,39)" rx="2" ry="2" />
<text x="1155.14" y="1775.5" ></text>
</g>
<g >
<title>squashfs_readpage_block (15,390,128 samples, 0.07%)</title><rect x="942.8" y="1797" width="0.9" height="15.0" fill="rgb(226,205,16)" rx="2" ry="2" />
<text x="945.83" y="1807.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1141" width="0.5" height="15.0" fill="rgb(207,18,40)" rx="2" ry="2" />
<text x="18.42" y="1151.5" ></text>
</g>
<g >
<title>newidle_balance (1,914,293 samples, 0.01%)</title><rect x="585.2" y="1845" width="0.1" height="15.0" fill="rgb(221,94,54)" rx="2" ry="2" />
<text x="588.22" y="1855.5" ></text>
</g>
<g >
<title>do_mmap (5,392,385 samples, 0.03%)</title><rect x="843.6" y="1957" width="0.3" height="15.0" fill="rgb(238,95,3)" rx="2" ry="2" />
<text x="846.60" y="1967.5" ></text>
</g>
<g >
<title>rtl_tx (142,851,873 samples, 0.67%)</title><rect x="1049.8" y="1829" width="7.8" height="15.0" fill="rgb(223,33,12)" rx="2" ry="2" />
<text x="1052.76" y="1839.5" ></text>
</g>
<g >
<title>ip_forward (1,899,425 samples, 0.01%)</title><rect x="50.8" y="1829" width="0.1" height="15.0" fill="rgb(231,183,40)" rx="2" ry="2" />
<text x="53.78" y="1839.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (169,244,127 samples, 0.79%)</title><rect x="1060.2" y="1925" width="9.3" height="15.0" fill="rgb(215,111,0)" rx="2" ry="2" />
<text x="1063.22" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1333" width="0.3" height="15.0" fill="rgb(220,168,24)" rx="2" ry="2" />
<text x="23.41" y="1343.5" ></text>
</g>
<g >
<title>enqueue_task (8,116,600 samples, 0.04%)</title><rect x="1069.7" y="1829" width="0.4" height="15.0" fill="rgb(206,161,11)" rx="2" ry="2" />
<text x="1072.66" y="1839.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (2,077,617 samples, 0.01%)</title><rect x="1063.6" y="1765" width="0.1" height="15.0" fill="rgb(214,206,35)" rx="2" ry="2" />
<text x="1066.59" y="1775.5" ></text>
</g>
<g >
<title>tcp_in_window (10,711,791 samples, 0.05%)</title><rect x="824.1" y="1749" width="0.6" height="15.0" fill="rgb(220,127,31)" rx="2" ry="2" />
<text x="827.08" y="1759.5" ></text>
</g>
<g >
<title>sch_direct_xmit (8,888,190 samples, 0.04%)</title><rect x="1009.0" y="1557" width="0.5" height="15.0" fill="rgb(213,227,2)" rx="2" ry="2" />
<text x="1012.00" y="1567.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,146,096 samples, 0.01%)</title><rect x="1144.5" y="1701" width="0.2" height="15.0" fill="rgb(211,181,43)" rx="2" ry="2" />
<text x="1147.54" y="1711.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (4,193,476 samples, 0.02%)</title><rect x="623.4" y="1893" width="0.3" height="15.0" fill="rgb(233,188,47)" rx="2" ry="2" />
<text x="626.44" y="1903.5" ></text>
</g>
<g >
<title>pagecache_get_page (6,925,165 samples, 0.03%)</title><rect x="936.2" y="1845" width="0.4" height="15.0" fill="rgb(217,205,0)" rx="2" ry="2" />
<text x="939.18" y="1855.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,878,786 samples, 0.01%)</title><rect x="601.2" y="1749" width="0.1" height="15.0" fill="rgb(237,96,51)" rx="2" ry="2" />
<text x="604.17" y="1759.5" ></text>
</g>
<g >
<title>ip_finish_output2 (11,801,327 samples, 0.06%)</title><rect x="435.0" y="1765" width="0.7" height="15.0" fill="rgb(227,212,9)" rx="2" ry="2" />
<text x="438.02" y="1775.5" ></text>
</g>
<g >
<title>getname (1,927,213 samples, 0.01%)</title><rect x="845.6" y="1941" width="0.1" height="15.0" fill="rgb(209,222,41)" rx="2" ry="2" />
<text x="848.55" y="1951.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (60,653,231 samples, 0.28%)</title><rect x="741.8" y="1541" width="3.3" height="15.0" fill="rgb(241,100,23)" rx="2" ry="2" />
<text x="744.75" y="1551.5" ></text>
</g>
<g >
<title>kfree_skbmem (1,909,276 samples, 0.01%)</title><rect x="479.9" y="1573" width="0.1" height="15.0" fill="rgb(211,164,17)" rx="2" ry="2" />
<text x="482.92" y="1583.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (1,884,039 samples, 0.01%)</title><rect x="407.0" y="1653" width="0.1" height="15.0" fill="rgb(249,146,17)" rx="2" ry="2" />
<text x="410.03" y="1663.5" ></text>
</g>
<g >
<title>net_rx_action (1,821,064 samples, 0.01%)</title><rect x="607.6" y="1893" width="0.1" height="15.0" fill="rgb(227,3,47)" rx="2" ry="2" />
<text x="610.56" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (171,088,702 samples, 0.80%)</title><rect x="393.2" y="1989" width="9.5" height="15.0" fill="rgb(244,202,37)" rx="2" ry="2" />
<text x="396.24" y="1999.5" ></text>
</g>
<g >
<title>try_to_wake_up (3,260,331 samples, 0.02%)</title><rect x="1148.0" y="1797" width="0.2" height="15.0" fill="rgb(205,23,42)" rx="2" ry="2" />
<text x="1151.05" y="1807.5" ></text>
</g>
<g >
<title>ip6_forward (4,458,979 samples, 0.02%)</title><rect x="56.1" y="1813" width="0.2" height="15.0" fill="rgb(241,194,35)" rx="2" ry="2" />
<text x="59.06" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (12,474,369 samples, 0.06%)</title><rect x="667.8" y="1685" width="0.7" height="15.0" fill="rgb(225,149,43)" rx="2" ry="2" />
<text x="670.81" y="1695.5" ></text>
</g>
<g >
<title>__do_munmap (9,222,125 samples, 0.04%)</title><rect x="960.0" y="1925" width="0.5" height="15.0" fill="rgb(216,92,23)" rx="2" ry="2" />
<text x="962.98" y="1935.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (12,616,311 samples, 0.06%)</title><rect x="1069.6" y="1925" width="0.7" height="15.0" fill="rgb(251,101,47)" rx="2" ry="2" />
<text x="1072.56" y="1935.5" ></text>
</g>
<g >
<title>___slab_alloc (17,997,554 samples, 0.08%)</title><rect x="1017.4" y="1749" width="0.9" height="15.0" fill="rgb(227,44,36)" rx="2" ry="2" />
<text x="1020.35" y="1759.5" ></text>
</g>
<g >
<title>ip_forward_finish (1,914,220 samples, 0.01%)</title><rect x="556.7" y="1861" width="0.1" height="15.0" fill="rgb(254,115,18)" rx="2" ry="2" />
<text x="559.66" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (8,014,505 samples, 0.04%)</title><rect x="409.0" y="1813" width="0.5" height="15.0" fill="rgb(212,158,42)" rx="2" ry="2" />
<text x="412.04" y="1823.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,449,712 samples, 0.02%)</title><rect x="869.7" y="2021" width="0.2" height="15.0" fill="rgb(216,173,17)" rx="2" ry="2" />
<text x="872.71" y="2031.5" ></text>
</g>
<g >
<title>common_interrupt (1,940,384 samples, 0.01%)</title><rect x="856.2" y="1909" width="0.1" height="15.0" fill="rgb(240,34,52)" rx="2" ry="2" />
<text x="859.19" y="1919.5" ></text>
</g>
<g >
<title>dev_queue_xmit (1,873,469 samples, 0.01%)</title><rect x="501.3" y="1685" width="0.1" height="15.0" fill="rgb(252,139,40)" rx="2" ry="2" />
<text x="504.31" y="1695.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (15,356,734 samples, 0.07%)</title><rect x="1066.7" y="1829" width="0.9" height="15.0" fill="rgb(250,177,25)" rx="2" ry="2" />
<text x="1069.71" y="1839.5" ></text>
</g>
<g >
<title>do_sys_openat2 (1,930,934 samples, 0.01%)</title><rect x="22.5" y="1957" width="0.1" height="15.0" fill="rgb(218,69,13)" rx="2" ry="2" />
<text x="25.54" y="1967.5" ></text>
</g>
<g >
<title>ip6_forward (2,945,689 samples, 0.01%)</title><rect x="547.7" y="1813" width="0.1" height="15.0" fill="rgb(250,206,47)" rx="2" ry="2" />
<text x="550.66" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="853" width="0.3" height="15.0" fill="rgb(214,225,17)" rx="2" ry="2" />
<text x="23.41" y="863.5" ></text>
</g>
<g >
<title>dev_queue_xmit (5,257,030 samples, 0.02%)</title><rect x="666.6" y="1621" width="0.3" height="15.0" fill="rgb(215,12,11)" rx="2" ry="2" />
<text x="669.61" y="1631.5" ></text>
</g>
<g >
<title>search_binary_handler (37,535,914 samples, 0.18%)</title><rect x="889.1" y="1925" width="2.1" height="15.0" fill="rgb(239,48,44)" rx="2" ry="2" />
<text x="892.12" y="1935.5" ></text>
</g>
<g >
<title>path_openat (1,927,894 samples, 0.01%)</title><rect x="902.3" y="1717" width="0.1" height="15.0" fill="rgb(215,171,1)" rx="2" ry="2" />
<text x="905.34" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (8,909,511 samples, 0.04%)</title><rect x="1136.7" y="1637" width="0.5" height="15.0" fill="rgb(250,123,13)" rx="2" ry="2" />
<text x="1139.71" y="1647.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (1,873,240 samples, 0.01%)</title><rect x="834.6" y="1893" width="0.1" height="15.0" fill="rgb(252,159,19)" rx="2" ry="2" />
<text x="837.62" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (38,477,906 samples, 0.18%)</title><rect x="945.1" y="2053" width="2.1" height="15.0" fill="rgb(244,48,43)" rx="2" ry="2" />
<text x="948.08" y="2063.5" ></text>
</g>
<g >
<title>__handle_mm_fault (37,289,943 samples, 0.17%)</title><rect x="955.2" y="1957" width="2.1" height="15.0" fill="rgb(243,26,38)" rx="2" ry="2" />
<text x="958.24" y="1967.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,853,040 samples, 0.02%)</title><rect x="913.1" y="1541" width="0.2" height="15.0" fill="rgb(208,134,33)" rx="2" ry="2" />
<text x="916.13" y="1551.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (1,833,020 samples, 0.01%)</title><rect x="664.5" y="1525" width="0.1" height="15.0" fill="rgb(239,35,53)" rx="2" ry="2" />
<text x="667.54" y="1535.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (258,518,838 samples, 1.21%)</title><rect x="1129.3" y="1733" width="14.3" height="15.0" fill="rgb(219,171,39)" rx="2" ry="2" />
<text x="1132.30" y="1743.5" ></text>
</g>
<g >
<title>common_interrupt (16,227,133 samples, 0.08%)</title><rect x="834.6" y="1973" width="0.9" height="15.0" fill="rgb(252,103,13)" rx="2" ry="2" />
<text x="837.62" y="1983.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (25,757,194 samples, 0.12%)</title><rect x="955.3" y="1861" width="1.5" height="15.0" fill="rgb(242,205,53)" rx="2" ry="2" />
<text x="958.35" y="1871.5" ></text>
</g>
<g >
<title>cut (12,951,678 samples, 0.06%)</title><rect x="18.1" y="2069" width="0.7" height="15.0" fill="rgb(219,145,9)" rx="2" ry="2" />
<text x="21.10" y="2079.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (3,046,781 samples, 0.01%)</title><rect x="65.5" y="1909" width="0.1" height="15.0" fill="rgb(238,140,23)" rx="2" ry="2" />
<text x="68.47" y="1919.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (3,065,455 samples, 0.01%)</title><rect x="1058.3" y="1829" width="0.2" height="15.0" fill="rgb(252,143,51)" rx="2" ry="2" />
<text x="1061.28" y="1839.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,963,037 samples, 0.03%)</title><rect x="45.2" y="1989" width="0.4" height="15.0" fill="rgb(247,95,10)" rx="2" ry="2" />
<text x="48.20" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (1,893,622 samples, 0.01%)</title><rect x="652.4" y="1685" width="0.1" height="15.0" fill="rgb(221,109,18)" rx="2" ry="2" />
<text x="655.36" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (12,097,095 samples, 0.06%)</title><rect x="735.0" y="1557" width="0.7" height="15.0" fill="rgb(218,8,25)" rx="2" ry="2" />
<text x="738.02" y="1567.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1925" width="0.5" height="15.0" fill="rgb(232,144,26)" rx="2" ry="2" />
<text x="18.42" y="1935.5" ></text>
</g>
<g >
<title>squashfs_decompress (485,696,561 samples, 2.27%)</title><rect x="907.0" y="1717" width="26.7" height="15.0" fill="rgb(242,220,22)" rx="2" ry="2" />
<text x="909.96" y="1727.5" >s..</text>
</g>
<g >
<title>__alloc_pages (2,262,194 samples, 0.01%)</title><rect x="549.2" y="1877" width="0.1" height="15.0" fill="rgb(227,103,20)" rx="2" ry="2" />
<text x="552.21" y="1887.5" ></text>
</g>
<g >
<title>net_rx_action (3,811,012 samples, 0.02%)</title><rect x="626.0" y="1797" width="0.2" height="15.0" fill="rgb(228,85,38)" rx="2" ry="2" />
<text x="629.03" y="1807.5" ></text>
</g>
<g >
<title>nf_hook_slow (1,903,856 samples, 0.01%)</title><rect x="407.4" y="1781" width="0.1" height="15.0" fill="rgb(229,42,23)" rx="2" ry="2" />
<text x="410.37" y="1791.5" ></text>
</g>
<g >
<title>neigh_hh_output (8,910,025 samples, 0.04%)</title><rect x="1099.8" y="1621" width="0.5" height="15.0" fill="rgb(229,8,14)" rx="2" ry="2" />
<text x="1102.78" y="1631.5" ></text>
</g>
<g >
<title>asm_common_interrupt (6,477,058 samples, 0.03%)</title><rect x="635.3" y="1813" width="0.3" height="15.0" fill="rgb(216,196,47)" rx="2" ry="2" />
<text x="638.27" y="1823.5" ></text>
</g>
<g >
<title>[snap] (10,261,127 samples, 0.05%)</title><rect x="883.8" y="117" width="0.5" height="15.0" fill="rgb(216,179,21)" rx="2" ry="2" />
<text x="886.77" y="127.5" ></text>
</g>
<g >
<title>__mmc_start_request (6,722,145 samples, 0.03%)</title><rect x="63.8" y="1829" width="0.3" height="15.0" fill="rgb(219,77,0)" rx="2" ry="2" />
<text x="66.78" y="1839.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,003,550 samples, 0.01%)</title><rect x="601.8" y="1893" width="0.2" height="15.0" fill="rgb(249,119,44)" rx="2" ry="2" />
<text x="604.80" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,284,332 samples, 0.01%)</title><rect x="1182.8" y="2005" width="0.1" height="15.0" fill="rgb(210,194,48)" rx="2" ry="2" />
<text x="1185.78" y="2015.5" ></text>
</g>
<g >
<title>rtl8169_tx_map (2,677,086 samples, 0.01%)</title><rect x="561.2" y="1877" width="0.1" height="15.0" fill="rgb(252,72,7)" rx="2" ry="2" />
<text x="564.20" y="1887.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (3,045,307 samples, 0.01%)</title><rect x="541.4" y="1637" width="0.1" height="15.0" fill="rgb(213,2,49)" rx="2" ry="2" />
<text x="544.36" y="1647.5" ></text>
</g>
<g >
<title>__find_rr_leaf (3,230,462 samples, 0.02%)</title><rect x="1006.6" y="1605" width="0.2" height="15.0" fill="rgb(230,92,10)" rx="2" ry="2" />
<text x="1009.62" y="1615.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (331,505,509 samples, 1.55%)</title><rect x="476.8" y="1861" width="18.3" height="15.0" fill="rgb(248,180,3)" rx="2" ry="2" />
<text x="479.82" y="1871.5" ></text>
</g>
<g >
<title>enqueue_task_fair (2,055,787 samples, 0.01%)</title><rect x="1060.7" y="1781" width="0.1" height="15.0" fill="rgb(230,139,37)" rx="2" ry="2" />
<text x="1063.72" y="1791.5" ></text>
</g>
<g >
<title>dup_task_struct (2,678,883 samples, 0.01%)</title><rect x="26.7" y="1941" width="0.2" height="15.0" fill="rgb(238,53,49)" rx="2" ry="2" />
<text x="29.73" y="1951.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1077" width="0.3" height="15.0" fill="rgb(230,2,21)" rx="2" ry="2" />
<text x="897.70" y="1087.5" ></text>
</g>
<g >
<title>[unknown] (14,848,220 samples, 0.07%)</title><rect x="670.2" y="1685" width="0.8" height="15.0" fill="rgb(243,37,36)" rx="2" ry="2" />
<text x="673.19" y="1695.5" ></text>
</g>
<g >
<title>rtl_rx (81,588,012 samples, 0.38%)</title><rect x="497.8" y="1909" width="4.5" height="15.0" fill="rgb(232,85,48)" rx="2" ry="2" />
<text x="500.81" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (23,785,679 samples, 0.11%)</title><rect x="1032.5" y="1669" width="1.3" height="15.0" fill="rgb(254,81,49)" rx="2" ry="2" />
<text x="1035.51" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="1013" width="0.3" height="15.0" fill="rgb(230,150,24)" rx="2" ry="2" />
<text x="23.41" y="1023.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,254,864 samples, 0.01%)</title><rect x="829.6" y="1845" width="0.1" height="15.0" fill="rgb(231,6,23)" rx="2" ry="2" />
<text x="832.59" y="1855.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,820,113 samples, 0.01%)</title><rect x="584.9" y="1765" width="0.1" height="15.0" fill="rgb(214,6,46)" rx="2" ry="2" />
<text x="587.90" y="1775.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (130,703,621 samples, 0.61%)</title><rect x="849.3" y="2037" width="7.2" height="15.0" fill="rgb(225,80,44)" rx="2" ry="2" />
<text x="852.34" y="2047.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,916,003 samples, 0.01%)</title><rect x="636.8" y="1765" width="0.1" height="15.0" fill="rgb(250,190,46)" rx="2" ry="2" />
<text x="639.79" y="1775.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (27,490,973 samples, 0.13%)</title><rect x="466.7" y="1717" width="1.5" height="15.0" fill="rgb(253,71,37)" rx="2" ry="2" />
<text x="469.69" y="1727.5" ></text>
</g>
<g >
<title>irq_exit_rcu (16,971,472 samples, 0.08%)</title><rect x="926.1" y="1541" width="0.9" height="15.0" fill="rgb(218,204,15)" rx="2" ry="2" />
<text x="929.07" y="1551.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1429" width="0.5" height="15.0" fill="rgb(223,19,42)" rx="2" ry="2" />
<text x="18.42" y="1439.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,090,950 samples, 0.01%)</title><rect x="1151.4" y="1685" width="0.1" height="15.0" fill="rgb(216,159,24)" rx="2" ry="2" />
<text x="1154.38" y="1695.5" ></text>
</g>
<g >
<title>rtl_rx (8,115,823 samples, 0.04%)</title><rect x="958.6" y="1925" width="0.5" height="15.0" fill="rgb(209,87,39)" rx="2" ry="2" />
<text x="961.64" y="1935.5" ></text>
</g>
<g >
<title>rcu_core (12,360,604 samples, 0.06%)</title><rect x="58.6" y="1957" width="0.6" height="15.0" fill="rgb(209,2,10)" rx="2" ry="2" />
<text x="61.56" y="1967.5" ></text>
</g>
<g >
<title>rcu_idle_enter (3,247,333 samples, 0.02%)</title><rect x="1103.1" y="1941" width="0.2" height="15.0" fill="rgb(241,4,7)" rx="2" ry="2" />
<text x="1106.13" y="1951.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (19,999,392 samples, 0.09%)</title><rect x="1169.4" y="1829" width="1.1" height="15.0" fill="rgb(211,120,46)" rx="2" ry="2" />
<text x="1172.44" y="1839.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (2,105,429 samples, 0.01%)</title><rect x="688.0" y="1541" width="0.1" height="15.0" fill="rgb(241,162,0)" rx="2" ry="2" />
<text x="690.98" y="1551.5" ></text>
</g>
<g >
<title>ip6_finish_output (32,641,260 samples, 0.15%)</title><rect x="410.9" y="1765" width="1.7" height="15.0" fill="rgb(210,175,32)" rx="2" ry="2" />
<text x="413.85" y="1775.5" ></text>
</g>
<g >
<title>asm_common_interrupt (13,389,490 samples, 0.06%)</title><rect x="979.6" y="1973" width="0.7" height="15.0" fill="rgb(209,212,23)" rx="2" ry="2" />
<text x="982.60" y="1983.5" ></text>
</g>
<g >
<title>pci_set_power_state (1,885,222 samples, 0.01%)</title><rect x="64.2" y="1749" width="0.1" height="15.0" fill="rgb(212,150,43)" rx="2" ry="2" />
<text x="67.17" y="1759.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,119,246 samples, 0.02%)</title><rect x="942.4" y="2021" width="0.2" height="15.0" fill="rgb(240,47,47)" rx="2" ry="2" />
<text x="945.39" y="2031.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (2,628,925 samples, 0.01%)</title><rect x="698.0" y="1861" width="0.2" height="15.0" fill="rgb(251,145,10)" rx="2" ry="2" />
<text x="701.02" y="1871.5" ></text>
</g>
<g >
<title>seq_read_iter (3,245,640 samples, 0.02%)</title><rect x="1175.4" y="1909" width="0.1" height="15.0" fill="rgb(243,116,1)" rx="2" ry="2" />
<text x="1178.37" y="1919.5" ></text>
</g>
<g >
<title>rcu_idle_exit (3,957,158 samples, 0.02%)</title><rect x="1103.3" y="1941" width="0.2" height="15.0" fill="rgb(234,120,43)" rx="2" ry="2" />
<text x="1106.31" y="1951.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (2,253,066 samples, 0.01%)</title><rect x="550.1" y="1845" width="0.1" height="15.0" fill="rgb(238,213,44)" rx="2" ry="2" />
<text x="553.12" y="1855.5" ></text>
</g>
<g >
<title>[snap] (2,286,061 samples, 0.01%)</title><rect x="894.7" y="613" width="0.1" height="15.0" fill="rgb(252,15,28)" rx="2" ry="2" />
<text x="897.72" y="623.5" ></text>
</g>
<g >
<title>[unknown] (4,809,650 samples, 0.02%)</title><rect x="1031.1" y="1653" width="0.3" height="15.0" fill="rgb(246,33,40)" rx="2" ry="2" />
<text x="1034.15" y="1663.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,622,810 samples, 0.01%)</title><rect x="627.7" y="1893" width="0.1" height="15.0" fill="rgb(223,198,39)" rx="2" ry="2" />
<text x="630.69" y="1903.5" ></text>
</g>
<g >
<title>net_rx_action (2,253,168 samples, 0.01%)</title><rect x="564.9" y="1941" width="0.1" height="15.0" fill="rgb(244,62,33)" rx="2" ry="2" />
<text x="567.91" y="1951.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,922,026 samples, 0.01%)</title><rect x="846.4" y="1829" width="0.1" height="15.0" fill="rgb(221,211,49)" rx="2" ry="2" />
<text x="849.44" y="1839.5" ></text>
</g>
<g >
<title>squashfs_readpage_block (25,373,494 samples, 0.12%)</title><rect x="955.4" y="1813" width="1.4" height="15.0" fill="rgb(238,120,35)" rx="2" ry="2" />
<text x="958.37" y="1823.5" ></text>
</g>
<g >
<title>__lookup_mnt (2,320,318 samples, 0.01%)</title><rect x="854.5" y="1861" width="0.2" height="15.0" fill="rgb(215,43,2)" rx="2" ry="2" />
<text x="857.52" y="1871.5" ></text>
</g>
<g >
<title>napi_gro_receive (7,970,828 samples, 0.04%)</title><rect x="1101.5" y="1797" width="0.5" height="15.0" fill="rgb(219,176,47)" rx="2" ry="2" />
<text x="1104.54" y="1807.5" ></text>
</g>
<g >
<title>__check_object_size (2,319,537 samples, 0.01%)</title><rect x="69.2" y="1893" width="0.1" height="15.0" fill="rgb(215,5,32)" rx="2" ry="2" />
<text x="72.16" y="1903.5" ></text>
</g>
<g >
<title>[snap-exec] (2,283,871 samples, 0.01%)</title><rect x="872.0" y="1845" width="0.1" height="15.0" fill="rgb(244,169,33)" rx="2" ry="2" />
<text x="875.02" y="1855.5" ></text>
</g>
<g >
<title>prepare_creds (12,383,440 samples, 0.06%)</title><rect x="851.3" y="1957" width="0.7" height="15.0" fill="rgb(243,110,54)" rx="2" ry="2" />
<text x="854.32" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb (15,374,028 samples, 0.07%)</title><rect x="512.4" y="1909" width="0.8" height="15.0" fill="rgb(250,210,21)" rx="2" ry="2" />
<text x="515.36" y="1919.5" ></text>
</g>
<g >
<title>nf_nat_ipv6_local_fn (2,561,133 samples, 0.01%)</title><rect x="741.4" y="1557" width="0.1" height="15.0" fill="rgb(250,60,45)" rx="2" ry="2" />
<text x="744.36" y="1567.5" ></text>
</g>
<g >
<title>fib4_rule_match (2,641,826 samples, 0.01%)</title><rect x="798.8" y="1685" width="0.2" height="15.0" fill="rgb(222,99,14)" rx="2" ry="2" />
<text x="801.84" y="1695.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1317" width="0.5" height="15.0" fill="rgb(209,61,36)" rx="2" ry="2" />
<text x="18.42" y="1327.5" ></text>
</g>
<g >
<title>dl_main (664,907,089 samples, 3.11%)</title><rect x="904.6" y="2021" width="36.6" height="15.0" fill="rgb(247,8,21)" rx="2" ry="2" />
<text x="907.56" y="2031.5" >dl_..</text>
</g>
<g >
<title>asm_common_interrupt (1,913,513 samples, 0.01%)</title><rect x="636.0" y="1781" width="0.1" height="15.0" fill="rgb(240,132,34)" rx="2" ry="2" />
<text x="638.96" y="1791.5" ></text>
</g>
<g >
<title>pick_next_task (2,955,017 samples, 0.01%)</title><rect x="836.9" y="1925" width="0.2" height="15.0" fill="rgb(207,156,1)" rx="2" ry="2" />
<text x="839.89" y="1935.5" ></text>
</g>
<g >
<title>__inet_lookup_established (4,936,283 samples, 0.02%)</title><rect x="781.6" y="1813" width="0.2" height="15.0" fill="rgb(215,127,9)" rx="2" ry="2" />
<text x="784.58" y="1823.5" ></text>
</g>
<g >
<title>do_fault (5,358,290 samples, 0.03%)</title><rect x="965.8" y="1893" width="0.3" height="15.0" fill="rgb(249,143,6)" rx="2" ry="2" />
<text x="968.82" y="1903.5" ></text>
</g>
<g >
<title>do_sys_openat2 (2,305,235 samples, 0.01%)</title><rect x="1188.8" y="1957" width="0.1" height="15.0" fill="rgb(205,102,25)" rx="2" ry="2" />
<text x="1191.81" y="1967.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (4,433,698 samples, 0.02%)</title><rect x="752.6" y="1605" width="0.2" height="15.0" fill="rgb(244,42,34)" rx="2" ry="2" />
<text x="755.58" y="1615.5" ></text>
</g>
<g >
<title>memcpy_erms (8,363,671 samples, 0.04%)</title><rect x="475.6" y="1909" width="0.5" height="15.0" fill="rgb(210,225,29)" rx="2" ry="2" />
<text x="478.61" y="1919.5" ></text>
</g>
<g >
<title>wb_workfn (2,072,357 samples, 0.01%)</title><rect x="64.6" y="1989" width="0.1" height="15.0" fill="rgb(206,143,25)" rx="2" ry="2" />
<text x="67.59" y="1999.5" ></text>
</g>
<g >
<title>ip6_finish_output (6,105,122 samples, 0.03%)</title><rect x="513.6" y="1797" width="0.3" height="15.0" fill="rgb(225,184,33)" rx="2" ry="2" />
<text x="516.60" y="1807.5" ></text>
</g>
<g >
<title>ip_finish_output (3,708,645 samples, 0.02%)</title><rect x="1150.1" y="1669" width="0.2" height="15.0" fill="rgb(218,115,54)" rx="2" ry="2" />
<text x="1153.10" y="1679.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (237,568,125 samples, 1.11%)</title><rect x="1129.5" y="1717" width="13.1" height="15.0" fill="rgb(222,11,20)" rx="2" ry="2" />
<text x="1132.49" y="1727.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,095,927 samples, 0.01%)</title><rect x="57.8" y="1813" width="0.1" height="15.0" fill="rgb(236,102,7)" rx="2" ry="2" />
<text x="60.81" y="1823.5" ></text>
</g>
<g >
<title>fib6_node_lookup (7,979,557 samples, 0.04%)</title><rect x="491.1" y="1701" width="0.5" height="15.0" fill="rgb(211,7,21)" rx="2" ry="2" />
<text x="494.15" y="1711.5" ></text>
</g>
<g >
<title>__netlink_request (5,058,633 samples, 0.02%)</title><rect x="44.4" y="2037" width="0.3" height="15.0" fill="rgb(254,215,27)" rx="2" ry="2" />
<text x="47.39" y="2047.5" ></text>
</g>
<g >
<title>fib4_rule_action (22,202,563 samples, 0.10%)</title><rect x="737.4" y="1541" width="1.2" height="15.0" fill="rgb(239,130,43)" rx="2" ry="2" />
<text x="740.35" y="1551.5" ></text>
</g>
<g >
<title>net_rx_action (2,294,762 samples, 0.01%)</title><rect x="613.7" y="1861" width="0.1" height="15.0" fill="rgb(254,161,49)" rx="2" ry="2" />
<text x="616.69" y="1871.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,870,289 samples, 0.01%)</title><rect x="564.9" y="1909" width="0.1" height="15.0" fill="rgb(223,131,21)" rx="2" ry="2" />
<text x="567.93" y="1919.5" ></text>
</g>
<g >
<title>[snapd] (3,184,946 samples, 0.01%)</title><rect x="976.3" y="1941" width="0.2" height="15.0" fill="rgb(220,101,54)" rx="2" ry="2" />
<text x="979.32" y="1951.5" ></text>
</g>
<g >
<title>ip6_pol_route_input (2,051,429 samples, 0.01%)</title><rect x="1062.8" y="1653" width="0.1" height="15.0" fill="rgb(219,31,31)" rx="2" ry="2" />
<text x="1065.79" y="1663.5" ></text>
</g>
<g >
<title>io_schedule_timeout (2,695,170 samples, 0.01%)</title><rect x="906.8" y="1653" width="0.2" height="15.0" fill="rgb(213,138,22)" rx="2" ry="2" />
<text x="909.81" y="1663.5" ></text>
</g>
<g >
<title>alloc_pages_vma (21,154,218 samples, 0.10%)</title><rect x="936.8" y="1877" width="1.2" height="15.0" fill="rgb(207,89,28)" rx="2" ry="2" />
<text x="939.84" y="1887.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,921,261 samples, 0.01%)</title><rect x="645.8" y="1717" width="0.1" height="15.0" fill="rgb(205,225,47)" rx="2" ry="2" />
<text x="648.80" y="1727.5" ></text>
</g>
<g >
<title>lzma_rep_match (31,260,375 samples, 0.15%)</title><rect x="931.9" y="1589" width="1.7" height="15.0" fill="rgb(216,90,23)" rx="2" ry="2" />
<text x="934.88" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1189" width="8.8" height="15.0" fill="rgb(248,28,32)" rx="2" ry="2" />
<text x="396.46" y="1199.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (1,864,188 samples, 0.01%)</title><rect x="632.3" y="1861" width="0.1" height="15.0" fill="rgb(232,62,10)" rx="2" ry="2" />
<text x="635.28" y="1871.5" ></text>
</g>
<g >
<title>__x64_sys_execve (1,924,965 samples, 0.01%)</title><rect x="876.0" y="1909" width="0.1" height="15.0" fill="rgb(214,122,29)" rx="2" ry="2" />
<text x="879.02" y="1919.5" ></text>
</g>
<g >
<title>pskb_expand_head (38,964,150 samples, 0.18%)</title><rect x="776.3" y="1813" width="2.1" height="15.0" fill="rgb(212,3,4)" rx="2" ry="2" />
<text x="779.27" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (11,763,641 samples, 0.05%)</title><rect x="538.7" y="1861" width="0.6" height="15.0" fill="rgb(250,6,37)" rx="2" ry="2" />
<text x="541.65" y="1871.5" ></text>
</g>
<g >
<title>exc_page_fault (2,318,126 samples, 0.01%)</title><rect x="851.0" y="2005" width="0.2" height="15.0" fill="rgb(230,210,14)" rx="2" ry="2" />
<text x="854.03" y="2015.5" ></text>
</g>
<g >
<title>vm_area_dup (3,451,554 samples, 0.02%)</title><rect x="26.4" y="1909" width="0.2" height="15.0" fill="rgb(226,30,53)" rx="2" ry="2" />
<text x="29.37" y="1919.5" ></text>
</g>
<g >
<title>menu_reflect (6,094,079 samples, 0.03%)</title><rect x="1111.3" y="1973" width="0.3" height="15.0" fill="rgb(220,120,54)" rx="2" ry="2" />
<text x="1114.31" y="1983.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (3,708,645 samples, 0.02%)</title><rect x="1150.1" y="1573" width="0.2" height="15.0" fill="rgb(252,107,17)" rx="2" ry="2" />
<text x="1153.10" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (2,353,716 samples, 0.01%)</title><rect x="1011.2" y="1541" width="0.2" height="15.0" fill="rgb(246,141,31)" rx="2" ry="2" />
<text x="1014.24" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (11,818,649 samples, 0.06%)</title><rect x="665.5" y="1525" width="0.7" height="15.0" fill="rgb(247,103,13)" rx="2" ry="2" />
<text x="668.54" y="1535.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (17,537,260 samples, 0.08%)</title><rect x="424.7" y="1861" width="0.9" height="15.0" fill="rgb(252,118,19)" rx="2" ry="2" />
<text x="427.67" y="1871.5" ></text>
</g>
<g >
<title>process_backlog (2,290,130 samples, 0.01%)</title><rect x="591.9" y="1701" width="0.1" height="15.0" fill="rgb(235,105,48)" rx="2" ry="2" />
<text x="594.89" y="1711.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (16,237,248 samples, 0.08%)</title><rect x="968.9" y="1909" width="0.9" height="15.0" fill="rgb(220,53,33)" rx="2" ry="2" />
<text x="971.93" y="1919.5" ></text>
</g>
<g >
<title>generic_perform_write (70,998,565 samples, 0.33%)</title><rect x="72.3" y="1797" width="4.0" height="15.0" fill="rgb(243,133,48)" rx="2" ry="2" />
<text x="75.34" y="1807.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (145,508,267 samples, 0.68%)</title><rect x="554.0" y="2037" width="8.0" height="15.0" fill="rgb(223,37,17)" rx="2" ry="2" />
<text x="557.02" y="2047.5" ></text>
</g>
<g >
<title>[snapctl] (10,972,074 samples, 0.05%)</title><rect x="945.8" y="1797" width="0.6" height="15.0" fill="rgb(227,30,51)" rx="2" ry="2" />
<text x="948.83" y="1807.5" ></text>
</g>
<g >
<title>sch_direct_xmit (13,510,521 samples, 0.06%)</title><rect x="743.0" y="1445" width="0.7" height="15.0" fill="rgb(231,97,25)" rx="2" ry="2" />
<text x="745.96" y="1455.5" ></text>
</g>
<g >
<title>[unknown] (165,257,781 samples, 0.77%)</title><rect x="764.4" y="1797" width="9.1" height="15.0" fill="rgb(238,84,31)" rx="2" ry="2" />
<text x="767.41" y="1807.5" ></text>
</g>
<g >
<title>fib_table_lookup (3,486,467 samples, 0.02%)</title><rect x="1125.8" y="1605" width="0.2" height="15.0" fill="rgb(218,193,15)" rx="2" ry="2" />
<text x="1128.82" y="1615.5" ></text>
</g>
<g >
<title>nf_hook_slow (6,061,876 samples, 0.03%)</title><rect x="440.3" y="1797" width="0.3" height="15.0" fill="rgb(235,201,18)" rx="2" ry="2" />
<text x="443.27" y="1807.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (3,217,056 samples, 0.02%)</title><rect x="20.0" y="1893" width="0.2" height="15.0" fill="rgb(212,46,45)" rx="2" ry="2" />
<text x="23.01" y="1903.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,950,883 samples, 0.01%)</title><rect x="1171.8" y="1957" width="0.2" height="15.0" fill="rgb(218,88,6)" rx="2" ry="2" />
<text x="1174.80" y="1967.5" ></text>
</g>
<g >
<title>rtl_rx (2,686,128 samples, 0.01%)</title><rect x="937.7" y="1701" width="0.1" height="15.0" fill="rgb(212,68,44)" rx="2" ry="2" />
<text x="940.66" y="1711.5" ></text>
</g>
<g >
<title>asm_common_interrupt (4,122,020 samples, 0.02%)</title><rect x="572.3" y="1941" width="0.2" height="15.0" fill="rgb(249,86,53)" rx="2" ry="2" />
<text x="575.29" y="1951.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,832,644 samples, 0.01%)</title><rect x="997.8" y="1845" width="0.1" height="15.0" fill="rgb(241,30,33)" rx="2" ry="2" />
<text x="1000.79" y="1855.5" ></text>
</g>
<g >
<title>__pagevec_lru_add (2,029,105 samples, 0.01%)</title><rect x="74.6" y="1701" width="0.1" height="15.0" fill="rgb(216,36,9)" rx="2" ry="2" />
<text x="77.60" y="1711.5" ></text>
</g>
<g >
<title>ipv6_conntrack_in (3,724,595 samples, 0.02%)</title><rect x="1142.3" y="1669" width="0.2" height="15.0" fill="rgb(225,227,45)" rx="2" ry="2" />
<text x="1145.29" y="1679.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,319,308 samples, 0.01%)</title><rect x="40.4" y="1973" width="0.1" height="15.0" fill="rgb(241,4,19)" rx="2" ry="2" />
<text x="43.39" y="1983.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (3,391,878 samples, 0.02%)</title><rect x="1018.5" y="1749" width="0.1" height="15.0" fill="rgb(222,94,34)" rx="2" ry="2" />
<text x="1021.46" y="1759.5" ></text>
</g>
<g >
<title>net_tx_action (2,103,265 samples, 0.01%)</title><rect x="1165.0" y="1797" width="0.1" height="15.0" fill="rgb(212,224,3)" rx="2" ry="2" />
<text x="1167.95" y="1807.5" ></text>
</g>
<g >
<title>do_sys_poll (5,121,114 samples, 0.02%)</title><rect x="47.9" y="1973" width="0.3" height="15.0" fill="rgb(239,125,19)" rx="2" ry="2" />
<text x="50.92" y="1983.5" ></text>
</g>
<g >
<title>exit_mm (2,310,102 samples, 0.01%)</title><rect x="70.6" y="1973" width="0.2" height="15.0" fill="rgb(223,215,13)" rx="2" ry="2" />
<text x="73.63" y="1983.5" ></text>
</g>
<g >
<title>jbd2_journal_commit_transaction (1,837,215 samples, 0.01%)</title><rect x="50.3" y="2005" width="0.1" height="15.0" fill="rgb(250,122,2)" rx="2" ry="2" />
<text x="53.26" y="2015.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (3,475,089 samples, 0.02%)</title><rect x="926.7" y="1381" width="0.2" height="15.0" fill="rgb(239,2,47)" rx="2" ry="2" />
<text x="929.68" y="1391.5" ></text>
</g>
<g >
<title>[snapd] (9,277,625 samples, 0.04%)</title><rect x="974.6" y="1685" width="0.5" height="15.0" fill="rgb(212,166,41)" rx="2" ry="2" />
<text x="977.63" y="1695.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,920,434 samples, 0.01%)</title><rect x="635.6" y="1781" width="0.1" height="15.0" fill="rgb(226,209,8)" rx="2" ry="2" />
<text x="638.62" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (2,816,254 samples, 0.01%)</title><rect x="1100.7" y="1669" width="0.2" height="15.0" fill="rgb(249,132,39)" rx="2" ry="2" />
<text x="1103.70" y="1679.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (2,305,023 samples, 0.01%)</title><rect x="655.8" y="1637" width="0.2" height="15.0" fill="rgb(249,150,16)" rx="2" ry="2" />
<text x="658.84" y="1647.5" ></text>
</g>
<g >
<title>[bash] (23,172,643 samples, 0.11%)</title><rect x="21.2" y="2053" width="1.3" height="15.0" fill="rgb(214,106,31)" rx="2" ry="2" />
<text x="24.18" y="2063.5" ></text>
</g>
<g >
<title>do_group_exit (3,700,114 samples, 0.02%)</title><rect x="947.2" y="1941" width="0.3" height="15.0" fill="rgb(220,93,7)" rx="2" ry="2" />
<text x="950.25" y="1951.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3,842,429 samples, 0.02%)</title><rect x="841.2" y="1877" width="0.2" height="15.0" fill="rgb(206,147,19)" rx="2" ry="2" />
<text x="844.16" y="1887.5" ></text>
</g>
<g >
<title>__schedule (9,853,437 samples, 0.05%)</title><rect x="59.7" y="1989" width="0.6" height="15.0" fill="rgb(242,11,4)" rx="2" ry="2" />
<text x="62.73" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (4,180,477 samples, 0.02%)</title><rect x="447.4" y="1893" width="0.2" height="15.0" fill="rgb(246,69,51)" rx="2" ry="2" />
<text x="450.41" y="1903.5" ></text>
</g>
<g >
<title>ip6_forward (124,744,809 samples, 0.58%)</title><rect x="662.9" y="1717" width="6.9" height="15.0" fill="rgb(251,208,28)" rx="2" ry="2" />
<text x="665.90" y="1727.5" ></text>
</g>
<g >
<title>golang.zx2c4.com/wireguard/tun.(*NativeTun).routineHackListener (3,220,282 samples, 0.02%)</title><rect x="1178.6" y="2021" width="0.2" height="15.0" fill="rgb(222,173,17)" rx="2" ry="2" />
<text x="1181.63" y="2031.5" ></text>
</g>
<g >
<title>__sys_recvmsg (2,213,646 samples, 0.01%)</title><rect x="43.9" y="1925" width="0.2" height="15.0" fill="rgb(209,169,43)" rx="2" ry="2" />
<text x="46.95" y="1935.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (2,385,677 samples, 0.01%)</title><rect x="52.1" y="1781" width="0.1" height="15.0" fill="rgb(254,62,46)" rx="2" ry="2" />
<text x="55.09" y="1791.5" ></text>
</g>
<g >
<title>fib6_table_lookup (7,209,107 samples, 0.03%)</title><rect x="415.2" y="1685" width="0.4" height="15.0" fill="rgb(252,54,37)" rx="2" ry="2" />
<text x="418.22" y="1695.5" ></text>
</g>
<g >
<title>rtl_rx (3,818,749 samples, 0.02%)</title><rect x="33.2" y="1909" width="0.2" height="15.0" fill="rgb(222,10,49)" rx="2" ry="2" />
<text x="36.21" y="1919.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (4,995,896 samples, 0.02%)</title><rect x="69.8" y="2037" width="0.2" height="15.0" fill="rgb(213,189,5)" rx="2" ry="2" />
<text x="72.76" y="2047.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,871,910 samples, 0.01%)</title><rect x="890.6" y="1573" width="0.1" height="15.0" fill="rgb(238,152,8)" rx="2" ry="2" />
<text x="893.59" y="1583.5" ></text>
</g>
<g >
<title>kernel_clone (3,321,518 samples, 0.02%)</title><rect x="1178.0" y="1973" width="0.1" height="15.0" fill="rgb(237,50,36)" rx="2" ry="2" />
<text x="1180.95" y="1983.5" ></text>
</g>
<g >
<title>psi_group_change (2,426,461 samples, 0.01%)</title><rect x="1113.8" y="1941" width="0.1" height="15.0" fill="rgb(237,201,15)" rx="2" ry="2" />
<text x="1116.78" y="1951.5" ></text>
</g>
<g >
<title>net_rx_action (1,871,910 samples, 0.01%)</title><rect x="890.6" y="1605" width="0.1" height="15.0" fill="rgb(245,5,1)" rx="2" ry="2" />
<text x="893.59" y="1615.5" ></text>
</g>
<g >
<title>ipv6_rcv (3,453,094 samples, 0.02%)</title><rect x="612.0" y="1765" width="0.2" height="15.0" fill="rgb(247,110,46)" rx="2" ry="2" />
<text x="614.96" y="1775.5" ></text>
</g>
<g >
<title>memcpy_erms (2,665,611 samples, 0.01%)</title><rect x="719.4" y="1509" width="0.1" height="15.0" fill="rgb(242,129,20)" rx="2" ry="2" />
<text x="722.39" y="1519.5" ></text>
</g>
<g >
<title>ip_rcv (2,259,023 samples, 0.01%)</title><rect x="571.0" y="1813" width="0.1" height="15.0" fill="rgb(236,62,34)" rx="2" ry="2" />
<text x="574.01" y="1823.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1173" width="1.1" height="15.0" fill="rgb(222,83,50)" rx="2" ry="2" />
<text x="886.75" y="1183.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (7,269,612 samples, 0.03%)</title><rect x="495.4" y="1813" width="0.4" height="15.0" fill="rgb(227,83,42)" rx="2" ry="2" />
<text x="498.40" y="1823.5" ></text>
</g>
<g >
<title>[snap] (100,352,409 samples, 0.47%)</title><rect x="891.5" y="1925" width="5.5" height="15.0" fill="rgb(218,58,42)" rx="2" ry="2" />
<text x="894.50" y="1935.5" ></text>
</g>
<g >
<title>[snap] (21,588,101 samples, 0.10%)</title><rect x="883.7" y="1557" width="1.2" height="15.0" fill="rgb(220,17,16)" rx="2" ry="2" />
<text x="886.71" y="1567.5" ></text>
</g>
<g >
<title>dev_queue_xmit (204,848,837 samples, 0.96%)</title><rect x="721.6" y="1509" width="11.3" height="15.0" fill="rgb(237,80,53)" rx="2" ry="2" />
<text x="724.57" y="1519.5" ></text>
</g>
<g >
<title>do_mmap (4,940,599 samples, 0.02%)</title><rect x="1187.2" y="1941" width="0.2" height="15.0" fill="rgb(222,170,40)" rx="2" ry="2" />
<text x="1190.16" y="1951.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (6,352,024 samples, 0.03%)</title><rect x="629.3" y="1829" width="0.3" height="15.0" fill="rgb(254,187,49)" rx="2" ry="2" />
<text x="632.26" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (1,905,890 samples, 0.01%)</title><rect x="57.1" y="1765" width="0.1" height="15.0" fill="rgb(223,153,35)" rx="2" ry="2" />
<text x="60.11" y="1775.5" ></text>
</g>
<g >
<title>neigh_resolve_output (27,313,394 samples, 0.13%)</title><rect x="759.0" y="1733" width="1.5" height="15.0" fill="rgb(207,68,0)" rx="2" ry="2" />
<text x="762.02" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (2,027,573 samples, 0.01%)</title><rect x="1011.3" y="1525" width="0.1" height="15.0" fill="rgb(235,45,2)" rx="2" ry="2" />
<text x="1014.26" y="1535.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,245,952 samples, 0.01%)</title><rect x="534.5" y="1941" width="0.1" height="15.0" fill="rgb(231,103,17)" rx="2" ry="2" />
<text x="537.51" y="1951.5" ></text>
</g>
<g >
<title>do_read_fault (2,698,976 samples, 0.01%)</title><rect x="962.8" y="1925" width="0.2" height="15.0" fill="rgb(240,154,19)" rx="2" ry="2" />
<text x="965.84" y="1935.5" ></text>
</g>
<g >
<title>mprotect_fixup (2,265,965 samples, 0.01%)</title><rect x="941.0" y="1925" width="0.2" height="15.0" fill="rgb(254,118,14)" rx="2" ry="2" />
<text x="944.03" y="1935.5" ></text>
</g>
<g >
<title>vfs_iter_read (1,892,010 samples, 0.01%)</title><rect x="64.8" y="1941" width="0.1" height="15.0" fill="rgb(233,5,22)" rx="2" ry="2" />
<text x="67.83" y="1951.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (1,847,602 samples, 0.01%)</title><rect x="547.7" y="1685" width="0.1" height="15.0" fill="rgb(254,79,52)" rx="2" ry="2" />
<text x="550.70" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (11,763,641 samples, 0.05%)</title><rect x="538.7" y="1845" width="0.6" height="15.0" fill="rgb(232,83,45)" rx="2" ry="2" />
<text x="541.65" y="1855.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,270,566 samples, 0.01%)</title><rect x="816.7" y="1733" width="0.1" height="15.0" fill="rgb(219,179,16)" rx="2" ry="2" />
<text x="819.72" y="1743.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,879,294 samples, 0.01%)</title><rect x="888.8" y="1989" width="0.1" height="15.0" fill="rgb(252,49,0)" rx="2" ry="2" />
<text x="891.79" y="1999.5" ></text>
</g>
<g >
<title>arch_cpu_idle_exit (2,453,309 samples, 0.01%)</title><rect x="1114.4" y="1941" width="0.1" height="15.0" fill="rgb(238,163,6)" rx="2" ry="2" />
<text x="1117.41" y="1951.5" ></text>
</g>
<g >
<title>fib6_node_lookup_1 (11,449,310 samples, 0.05%)</title><rect x="676.4" y="1573" width="0.6" height="15.0" fill="rgb(208,78,37)" rx="2" ry="2" />
<text x="679.40" y="1583.5" ></text>
</g>
<g >
<title>neigh_hh_output (46,236,817 samples, 0.22%)</title><rect x="1131.1" y="1605" width="2.6" height="15.0" fill="rgb(228,71,12)" rx="2" ry="2" />
<text x="1134.11" y="1615.5" ></text>
</g>
<g >
<title>ip4ip6_gro_receive (4,900,385 samples, 0.02%)</title><rect x="445.6" y="1829" width="0.2" height="15.0" fill="rgb(209,40,12)" rx="2" ry="2" />
<text x="448.57" y="1839.5" ></text>
</g>
<g >
<title>irq_exit_rcu (14,398,035 samples, 0.07%)</title><rect x="1102.2" y="1893" width="0.8" height="15.0" fill="rgb(210,218,7)" rx="2" ry="2" />
<text x="1105.22" y="1903.5" ></text>
</g>
<g >
<title>[snap-seccomp] (13,028,414 samples, 0.06%)</title><rect x="877.1" y="1877" width="0.7" height="15.0" fill="rgb(253,99,5)" rx="2" ry="2" />
<text x="880.12" y="1887.5" ></text>
</g>
<g >
<title>__nf_conntrack_find_get (5,720,664 samples, 0.03%)</title><rect x="824.9" y="1765" width="0.3" height="15.0" fill="rgb(238,41,36)" rx="2" ry="2" />
<text x="827.92" y="1775.5" ></text>
</g>
<g >
<title>dict_repeat (2,703,504 samples, 0.01%)</title><rect x="907.7" y="1605" width="0.2" height="15.0" fill="rgb(206,147,49)" rx="2" ry="2" />
<text x="910.72" y="1615.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1317" width="0.3" height="15.0" fill="rgb(254,170,25)" rx="2" ry="2" />
<text x="23.41" y="1327.5" ></text>
</g>
<g >
<title>[snap] (18,573,128 samples, 0.09%)</title><rect x="883.8" y="469" width="1.0" height="15.0" fill="rgb(251,21,48)" rx="2" ry="2" />
<text x="886.75" y="479.5" ></text>
</g>
<g >
<title>ip6_tnl_start_xmit (123,798,275 samples, 0.58%)</title><rect x="740.0" y="1653" width="6.8" height="15.0" fill="rgb(213,101,15)" rx="2" ry="2" />
<text x="742.99" y="1663.5" ></text>
</g>
<g >
<title>clear_page_erms (1,921,657 samples, 0.01%)</title><rect x="34.4" y="1829" width="0.1" height="15.0" fill="rgb(212,215,46)" rx="2" ry="2" />
<text x="37.41" y="1839.5" ></text>
</g>
<g >
<title>rtl8169_poll (537,285,736 samples, 2.51%)</title><rect x="474.9" y="1925" width="29.6" height="15.0" fill="rgb(216,72,39)" rx="2" ry="2" />
<text x="477.90" y="1935.5" >rt..</text>
</g>
<g >
<title>__hrtimer_next_event_base (7,480,830 samples, 0.03%)</title><rect x="1109.2" y="1909" width="0.4" height="15.0" fill="rgb(214,14,33)" rx="2" ry="2" />
<text x="1112.22" y="1919.5" ></text>
</g>
<g >
<title>__wake_up_common (2,163,771 samples, 0.01%)</title><rect x="1003.7" y="1461" width="0.1" height="15.0" fill="rgb(220,44,9)" rx="2" ry="2" />
<text x="1006.65" y="1471.5" ></text>
</g>
<g >
<title>__slab_free (3,486,836 samples, 0.02%)</title><rect x="1143.0" y="1653" width="0.2" height="15.0" fill="rgb(213,63,10)" rx="2" ry="2" />
<text x="1145.97" y="1663.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,614,850 samples, 0.04%)</title><rect x="453.8" y="1989" width="0.4" height="15.0" fill="rgb(221,222,12)" rx="2" ry="2" />
<text x="456.77" y="1999.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (2,638,369 samples, 0.01%)</title><rect x="27.7" y="1813" width="0.1" height="15.0" fill="rgb(211,205,48)" rx="2" ry="2" />
<text x="30.68" y="1823.5" ></text>
</g>
<g >
<title>common_interrupt (3,446,388 samples, 0.02%)</title><rect x="982.0" y="1941" width="0.2" height="15.0" fill="rgb(223,207,39)" rx="2" ry="2" />
<text x="985.04" y="1951.5" ></text>
</g>
<g >
<title>fib6_rule_action (39,314,529 samples, 0.18%)</title><rect x="489.5" y="1765" width="2.2" height="15.0" fill="rgb(244,149,5)" rx="2" ry="2" />
<text x="492.50" y="1775.5" ></text>
</g>
<g >
<title>net_rx_action (6,016,745 samples, 0.03%)</title><rect x="571.0" y="1893" width="0.3" height="15.0" fill="rgb(231,42,0)" rx="2" ry="2" />
<text x="574.01" y="1903.5" ></text>
</g>
<g >
<title>inet_gro_receive (9,997,798 samples, 0.05%)</title><rect x="1020.4" y="1781" width="0.6" height="15.0" fill="rgb(248,215,48)" rx="2" ry="2" />
<text x="1023.43" y="1791.5" ></text>
</g>
<g >
<title>ip_output (3,157,619 samples, 0.01%)</title><rect x="51.0" y="1845" width="0.2" height="15.0" fill="rgb(245,165,47)" rx="2" ry="2" />
<text x="53.99" y="1855.5" ></text>
</g>
<g >
<title>__build_skb_around (4,533,682 samples, 0.02%)</title><rect x="1016.3" y="1781" width="0.3" height="15.0" fill="rgb(252,190,4)" rx="2" ry="2" />
<text x="1019.32" y="1791.5" ></text>
</g>
<g >
<title>net_rx_action (10,714,717 samples, 0.05%)</title><rect x="979.7" y="1909" width="0.6" height="15.0" fill="rgb(247,213,16)" rx="2" ry="2" />
<text x="982.72" y="1919.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (2,357,976 samples, 0.01%)</title><rect x="1049.2" y="1653" width="0.1" height="15.0" fill="rgb(226,162,51)" rx="2" ry="2" />
<text x="1052.16" y="1663.5" ></text>
</g>
<g >
<title>established_get_first (3,958,962 samples, 0.02%)</title><rect x="1179.8" y="1653" width="0.2" height="15.0" fill="rgb(216,210,15)" rx="2" ry="2" />
<text x="1182.77" y="1663.5" ></text>
</g>
<g >
<title>do_fault (6,499,419 samples, 0.03%)</title><rect x="33.6" y="1925" width="0.4" height="15.0" fill="rgb(231,218,28)" rx="2" ry="2" />
<text x="36.61" y="1935.5" ></text>
</g>
<g >
<title>packet_rcv (3,334,613 samples, 0.02%)</title><rect x="560.3" y="1877" width="0.2" height="15.0" fill="rgb(225,213,28)" rx="2" ry="2" />
<text x="563.30" y="1887.5" ></text>
</g>
<g >
<title>pipe_read (2,643,364 samples, 0.01%)</title><rect x="36.7" y="1925" width="0.2" height="15.0" fill="rgb(214,64,16)" rx="2" ry="2" />
<text x="39.73" y="1935.5" ></text>
</g>
<g >
<title>net_rx_action (1,887,183 samples, 0.01%)</title><rect x="400.5" y="149" width="0.1" height="15.0" fill="rgb(227,215,31)" rx="2" ry="2" />
<text x="403.51" y="159.5" ></text>
</g>
<g >
<title>[snap] (19,678,493 samples, 0.09%)</title><rect x="883.8" y="773" width="1.0" height="15.0" fill="rgb(212,212,2)" rx="2" ry="2" />
<text x="886.75" y="783.5" ></text>
</g>
<g >
<title>do_syscall_64 (15,072,933 samples, 0.07%)</title><rect x="963.0" y="2021" width="0.8" height="15.0" fill="rgb(240,39,3)" rx="2" ry="2" />
<text x="966.01" y="2031.5" ></text>
</g>
<g >
<title>ip6_pol_route_input (9,295,242 samples, 0.04%)</title><rect x="545.4" y="1765" width="0.5" height="15.0" fill="rgb(205,144,36)" rx="2" ry="2" />
<text x="548.42" y="1775.5" ></text>
</g>
<g >
<title>_raw_spin_lock (3,667,215 samples, 0.02%)</title><rect x="1064.7" y="1845" width="0.2" height="15.0" fill="rgb(215,195,31)" rx="2" ry="2" />
<text x="1067.70" y="1855.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (9,004,955 samples, 0.04%)</title><rect x="598.5" y="1845" width="0.5" height="15.0" fill="rgb(240,76,3)" rx="2" ry="2" />
<text x="601.46" y="1855.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (16,403,437 samples, 0.08%)</title><rect x="52.0" y="1893" width="0.9" height="15.0" fill="rgb(207,11,45)" rx="2" ry="2" />
<text x="54.99" y="1903.5" ></text>
</g>
<g >
<title>__inet_lookup_established (15,808,197 samples, 0.07%)</title><rect x="804.4" y="1797" width="0.8" height="15.0" fill="rgb(245,32,1)" rx="2" ry="2" />
<text x="807.38" y="1807.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (2,317,355 samples, 0.01%)</title><rect x="850.8" y="1813" width="0.2" height="15.0" fill="rgb(207,17,32)" rx="2" ry="2" />
<text x="853.83" y="1823.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (2,682,137 samples, 0.01%)</title><rect x="1175.2" y="1925" width="0.2" height="15.0" fill="rgb(211,152,35)" rx="2" ry="2" />
<text x="1178.22" y="1935.5" ></text>
</g>
<g >
<title>validate_xmit_skb (4,155,619 samples, 0.02%)</title><rect x="429.6" y="1861" width="0.2" height="15.0" fill="rgb(251,16,46)" rx="2" ry="2" />
<text x="432.58" y="1871.5" ></text>
</g>
<g >
<title>__napi_poll (1,922,026 samples, 0.01%)</title><rect x="846.4" y="1797" width="0.1" height="15.0" fill="rgb(218,58,29)" rx="2" ry="2" />
<text x="849.44" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (6,868,133 samples, 0.03%)</title><rect x="409.1" y="1797" width="0.4" height="15.0" fill="rgb(208,63,14)" rx="2" ry="2" />
<text x="412.11" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (2,249,229 samples, 0.01%)</title><rect x="671.7" y="1653" width="0.2" height="15.0" fill="rgb(253,116,10)" rx="2" ry="2" />
<text x="674.74" y="1663.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (2,301,795 samples, 0.01%)</title><rect x="692.7" y="1781" width="0.2" height="15.0" fill="rgb(221,211,43)" rx="2" ry="2" />
<text x="695.73" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (4,540,206 samples, 0.02%)</title><rect x="859.9" y="2053" width="0.2" height="15.0" fill="rgb(224,109,41)" rx="2" ry="2" />
<text x="862.88" y="2063.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (1,990,607 samples, 0.01%)</title><rect x="71.9" y="1877" width="0.1" height="15.0" fill="rgb(232,29,0)" rx="2" ry="2" />
<text x="74.91" y="1887.5" ></text>
</g>
<g >
<title>do_open (4,237,260 samples, 0.02%)</title><rect x="843.2" y="1925" width="0.2" height="15.0" fill="rgb(210,208,31)" rx="2" ry="2" />
<text x="846.22" y="1935.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,254,864 samples, 0.01%)</title><rect x="829.6" y="1861" width="0.1" height="15.0" fill="rgb(233,199,36)" rx="2" ry="2" />
<text x="832.59" y="1871.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (74,815,514 samples, 0.35%)</title><rect x="728.5" y="1461" width="4.1" height="15.0" fill="rgb(248,38,14)" rx="2" ry="2" />
<text x="731.50" y="1471.5" ></text>
</g>
<g >
<title>dequeue_skb (15,694,284 samples, 0.07%)</title><rect x="504.9" y="1925" width="0.9" height="15.0" fill="rgb(248,72,3)" rx="2" ry="2" />
<text x="507.89" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="837" width="0.3" height="15.0" fill="rgb(209,74,11)" rx="2" ry="2" />
<text x="23.41" y="847.5" ></text>
</g>
<g >
<title>kmalloc_reserve (3,411,917 samples, 0.02%)</title><rect x="644.8" y="1877" width="0.2" height="15.0" fill="rgb(205,179,42)" rx="2" ry="2" />
<text x="647.84" y="1887.5" ></text>
</g>
<g >
<title>__napi_poll (6,933,929 samples, 0.03%)</title><rect x="1102.3" y="1845" width="0.4" height="15.0" fill="rgb(241,72,22)" rx="2" ry="2" />
<text x="1105.31" y="1855.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,508,762 samples, 0.04%)</title><rect x="15.4" y="421" width="0.5" height="15.0" fill="rgb(250,1,50)" rx="2" ry="2" />
<text x="18.42" y="431.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="693" width="0.2" height="15.0" fill="rgb(246,9,45)" rx="2" ry="2" />
<text x="897.72" y="703.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,549,268 samples, 0.03%)</title><rect x="67.1" y="2037" width="0.3" height="15.0" fill="rgb(236,132,19)" rx="2" ry="2" />
<text x="70.05" y="2047.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (2,015,313 samples, 0.01%)</title><rect x="836.5" y="1957" width="0.1" height="15.0" fill="rgb(215,126,36)" rx="2" ry="2" />
<text x="839.50" y="1967.5" ></text>
</g>
<g >
<title>tun_net_xmit (8,297,011 samples, 0.04%)</title><rect x="467.6" y="1653" width="0.5" height="15.0" fill="rgb(237,116,29)" rx="2" ry="2" />
<text x="470.60" y="1663.5" ></text>
</g>
<g >
<title>do_dentry_open (1,920,049 samples, 0.01%)</title><rect x="866.7" y="1893" width="0.1" height="15.0" fill="rgb(235,72,51)" rx="2" ry="2" />
<text x="869.73" y="1903.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,074,185 samples, 0.01%)</title><rect x="905.6" y="1909" width="0.2" height="15.0" fill="rgb(249,204,8)" rx="2" ry="2" />
<text x="908.64" y="1919.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (2,671,199 samples, 0.01%)</title><rect x="533.5" y="1957" width="0.1" height="15.0" fill="rgb(205,5,51)" rx="2" ry="2" />
<text x="536.46" y="1967.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (52,334,911 samples, 0.24%)</title><rect x="742.0" y="1477" width="2.9" height="15.0" fill="rgb(244,211,34)" rx="2" ry="2" />
<text x="744.98" y="1487.5" ></text>
</g>
<g >
<title>alloc_pages (1,931,287 samples, 0.01%)</title><rect x="25.9" y="1845" width="0.2" height="15.0" fill="rgb(240,49,40)" rx="2" ry="2" />
<text x="28.95" y="1855.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (8,025,284 samples, 0.04%)</title><rect x="756.9" y="1605" width="0.4" height="15.0" fill="rgb(239,93,45)" rx="2" ry="2" />
<text x="759.87" y="1615.5" ></text>
</g>
<g >
<title>[unknown] (4,141,229 samples, 0.02%)</title><rect x="20.4" y="309" width="0.2" height="15.0" fill="rgb(223,74,7)" rx="2" ry="2" />
<text x="23.41" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,159,743 samples, 0.02%)</title><rect x="29.7" y="2005" width="0.2" height="15.0" fill="rgb(238,187,12)" rx="2" ry="2" />
<text x="32.70" y="2015.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="997" width="0.3" height="15.0" fill="rgb(249,198,36)" rx="2" ry="2" />
<text x="23.41" y="1007.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (45,702,302 samples, 0.21%)</title><rect x="590.1" y="1829" width="2.5" height="15.0" fill="rgb(220,45,16)" rx="2" ry="2" />
<text x="593.08" y="1839.5" ></text>
</g>
<g >
<title>net_tx_action (55,222,376 samples, 0.26%)</title><rect x="1151.8" y="1813" width="3.1" height="15.0" fill="rgb(207,18,20)" rx="2" ry="2" />
<text x="1154.83" y="1823.5" ></text>
</g>
<g >
<title>rtl_rx (1,869,839 samples, 0.01%)</title><rect x="977.9" y="1877" width="0.1" height="15.0" fill="rgb(227,114,1)" rx="2" ry="2" />
<text x="980.90" y="1887.5" ></text>
</g>
<g >
<title>exc_page_fault (14,135,510 samples, 0.07%)</title><rect x="33.5" y="2005" width="0.8" height="15.0" fill="rgb(209,214,15)" rx="2" ry="2" />
<text x="36.51" y="2015.5" ></text>
</g>
<g >
<title>ip_forward_finish (3,365,856 samples, 0.02%)</title><rect x="501.3" y="1781" width="0.2" height="15.0" fill="rgb(249,89,23)" rx="2" ry="2" />
<text x="504.27" y="1791.5" ></text>
</g>
<g >
<title>__x64_sys_sendmsg (1,915,343 samples, 0.01%)</title><rect x="1172.1" y="1973" width="0.1" height="15.0" fill="rgb(235,225,1)" rx="2" ry="2" />
<text x="1175.08" y="1983.5" ></text>
</g>
<g >
<title>fib_rules_lookup (7,294,226 samples, 0.03%)</title><rect x="1001.9" y="1669" width="0.4" height="15.0" fill="rgb(209,222,17)" rx="2" ry="2" />
<text x="1004.87" y="1679.5" ></text>
</g>
<g >
<title>napi_complete_done (265,673,787 samples, 1.24%)</title><rect x="1000.3" y="1829" width="14.7" height="15.0" fill="rgb(236,109,54)" rx="2" ry="2" />
<text x="1003.34" y="1839.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (4,847,862 samples, 0.02%)</title><rect x="414.4" y="1765" width="0.3" height="15.0" fill="rgb(209,197,54)" rx="2" ry="2" />
<text x="417.41" y="1775.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,326,584 samples, 0.01%)</title><rect x="969.6" y="1813" width="0.1" height="15.0" fill="rgb(220,44,53)" rx="2" ry="2" />
<text x="972.59" y="1823.5" ></text>
</g>
<g >
<title>tun_net_xmit (2,544,558 samples, 0.01%)</title><rect x="1150.1" y="1509" width="0.2" height="15.0" fill="rgb(222,197,17)" rx="2" ry="2" />
<text x="1153.12" y="1519.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (18,476,656 samples, 0.09%)</title><rect x="848.3" y="2037" width="1.0" height="15.0" fill="rgb(244,81,29)" rx="2" ry="2" />
<text x="851.33" y="2047.5" ></text>
</g>
<g >
<title>do_sys_openat2 (25,752,864 samples, 0.12%)</title><rect x="953.1" y="1957" width="1.4" height="15.0" fill="rgb(227,217,8)" rx="2" ry="2" />
<text x="956.10" y="1967.5" ></text>
</g>
<g >
<title>cake_hash (3,445,596 samples, 0.02%)</title><rect x="666.3" y="1525" width="0.2" height="15.0" fill="rgb(215,120,37)" rx="2" ry="2" />
<text x="669.28" y="1535.5" ></text>
</g>
<g >
<title>fib6_table_lookup (5,645,260 samples, 0.03%)</title><rect x="545.6" y="1733" width="0.3" height="15.0" fill="rgb(241,31,27)" rx="2" ry="2" />
<text x="548.58" y="1743.5" ></text>
</g>
<g >
<title>rcu_eqs_enter.constprop.0 (2,931,742 samples, 0.01%)</title><rect x="1103.1" y="1925" width="0.2" height="15.0" fill="rgb(206,205,34)" rx="2" ry="2" />
<text x="1106.15" y="1935.5" ></text>
</g>
<g >
<title>clockevents_program_event (2,301,718 samples, 0.01%)</title><rect x="451.7" y="1813" width="0.2" height="15.0" fill="rgb(241,53,14)" rx="2" ry="2" />
<text x="454.75" y="1823.5" ></text>
</g>
<g >
<title>irq_exit_rcu (111,516,078 samples, 0.52%)</title><rect x="423.8" y="1957" width="6.2" height="15.0" fill="rgb(220,151,17)" rx="2" ry="2" />
<text x="426.83" y="1967.5" ></text>
</g>
<g >
<title>fib_rules_lookup (1,920,717 samples, 0.01%)</title><rect x="450.4" y="1765" width="0.1" height="15.0" fill="rgb(209,218,46)" rx="2" ry="2" />
<text x="453.41" y="1775.5" ></text>
</g>
<g >
<title>syscall.read (19,442,112 samples, 0.09%)</title><rect x="1179.1" y="1877" width="1.0" height="15.0" fill="rgb(241,139,2)" rx="2" ry="2" />
<text x="1182.05" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (168,796,277 samples, 0.79%)</title><rect x="393.3" y="1925" width="9.3" height="15.0" fill="rgb(240,37,28)" rx="2" ry="2" />
<text x="396.28" y="1935.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,959,530 samples, 0.01%)</title><rect x="832.9" y="1941" width="0.2" height="15.0" fill="rgb(249,52,12)" rx="2" ry="2" />
<text x="835.92" y="1951.5" ></text>
</g>
<g >
<title>handle_edge_irq (2,658,281 samples, 0.01%)</title><rect x="700.5" y="1781" width="0.1" height="15.0" fill="rgb(248,226,25)" rx="2" ry="2" />
<text x="703.50" y="1791.5" ></text>
</g>
<g >
<title>__x64_sys_openat (27,290,660 samples, 0.13%)</title><rect x="953.0" y="1973" width="1.5" height="15.0" fill="rgb(247,62,18)" rx="2" ry="2" />
<text x="956.04" y="1983.5" ></text>
</g>
<g >
<title>ipv4_confirm (2,664,580 samples, 0.01%)</title><rect x="761.4" y="1781" width="0.1" height="15.0" fill="rgb(236,218,8)" rx="2" ry="2" />
<text x="764.36" y="1791.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (10,239,072 samples, 0.05%)</title><rect x="27.9" y="1781" width="0.5" height="15.0" fill="rgb(213,228,42)" rx="2" ry="2" />
<text x="30.85" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (3,449,025 samples, 0.02%)</title><rect x="521.4" y="1845" width="0.2" height="15.0" fill="rgb(247,158,2)" rx="2" ry="2" />
<text x="524.39" y="1855.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,223,533 samples, 0.01%)</title><rect x="572.4" y="1797" width="0.1" height="15.0" fill="rgb(228,36,5)" rx="2" ry="2" />
<text x="575.36" y="1807.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (2,245,135 samples, 0.01%)</title><rect x="53.9" y="1893" width="0.2" height="15.0" fill="rgb(224,105,11)" rx="2" ry="2" />
<text x="56.93" y="1903.5" ></text>
</g>
<g >
<title>[snap] (120,074,319 samples, 0.56%)</title><rect x="891.2" y="2037" width="6.6" height="15.0" fill="rgb(240,203,7)" rx="2" ry="2" />
<text x="894.19" y="2047.5" ></text>
</g>
<g >
<title>squashfs_read_data (11,239,380 samples, 0.05%)</title><rect x="31.4" y="1733" width="0.6" height="15.0" fill="rgb(213,73,29)" rx="2" ry="2" />
<text x="34.41" y="1743.5" ></text>
</g>
<g >
<title>kfree_skbmem (3,813,752 samples, 0.02%)</title><rect x="444.3" y="1813" width="0.2" height="15.0" fill="rgb(215,46,41)" rx="2" ry="2" />
<text x="447.29" y="1823.5" ></text>
</g>
<g >
<title>inode_permission (3,477,689 samples, 0.02%)</title><rect x="969.0" y="1893" width="0.2" height="15.0" fill="rgb(212,194,53)" rx="2" ry="2" />
<text x="972.03" y="1903.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (3,436,161 samples, 0.02%)</title><rect x="514.6" y="1797" width="0.2" height="15.0" fill="rgb(246,153,48)" rx="2" ry="2" />
<text x="517.61" y="1807.5" ></text>
</g>
<g >
<title>common_interrupt (11,559,178 samples, 0.05%)</title><rect x="930.1" y="1557" width="0.6" height="15.0" fill="rgb(239,222,45)" rx="2" ry="2" />
<text x="933.07" y="1567.5" ></text>
</g>
<g >
<title>ksys_read (4,526,334 samples, 0.02%)</title><rect x="833.8" y="2005" width="0.3" height="15.0" fill="rgb(207,92,42)" rx="2" ry="2" />
<text x="836.82" y="2015.5" ></text>
</g>
<g >
<title>dequeue_task_fair (4,727,150 samples, 0.02%)</title><rect x="54.7" y="1957" width="0.3" height="15.0" fill="rgb(219,64,9)" rx="2" ry="2" />
<text x="57.75" y="1967.5" ></text>
</g>
<g >
<title>[libgstreamer-1.0.so.0.2003.0] (4,636,371 samples, 0.02%)</title><rect x="1180.9" y="2037" width="0.3" height="15.0" fill="rgb(218,61,6)" rx="2" ry="2" />
<text x="1183.92" y="2047.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,328,977 samples, 0.04%)</title><rect x="622.3" y="1909" width="0.4" height="15.0" fill="rgb(244,23,22)" rx="2" ry="2" />
<text x="625.28" y="1919.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (2,298,056 samples, 0.01%)</title><rect x="507.6" y="1957" width="0.2" height="15.0" fill="rgb(215,6,46)" rx="2" ry="2" />
<text x="510.63" y="1967.5" ></text>
</g>
<g >
<title>psi_task_change (3,501,402 samples, 0.02%)</title><rect x="1069.9" y="1813" width="0.2" height="15.0" fill="rgb(237,114,47)" rx="2" ry="2" />
<text x="1072.91" y="1823.5" ></text>
</g>
<g >
<title>net_rx_action (31,297,490 samples, 0.15%)</title><rect x="556.5" y="1973" width="1.7" height="15.0" fill="rgb(217,90,35)" rx="2" ry="2" />
<text x="559.51" y="1983.5" ></text>
</g>
<g >
<title>wait_consider_task (2,978,309 samples, 0.01%)</title><rect x="29.2" y="1941" width="0.1" height="15.0" fill="rgb(249,43,15)" rx="2" ry="2" />
<text x="32.17" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="661" width="0.3" height="15.0" fill="rgb(210,137,9)" rx="2" ry="2" />
<text x="23.41" y="671.5" ></text>
</g>
<g >
<title>[unknown] (6,864,707 samples, 0.03%)</title><rect x="541.9" y="1653" width="0.4" height="15.0" fill="rgb(220,88,6)" rx="2" ry="2" />
<text x="544.91" y="1663.5" ></text>
</g>
<g >
<title>copy_p4d_range (1,935,962 samples, 0.01%)</title><rect x="963.2" y="1893" width="0.1" height="15.0" fill="rgb(225,29,17)" rx="2" ry="2" />
<text x="966.18" y="1903.5" ></text>
</g>
<g >
<title>ip_list_rcv (199,336,009 samples, 0.93%)</title><rect x="1023.2" y="1765" width="11.0" height="15.0" fill="rgb(251,43,22)" rx="2" ry="2" />
<text x="1026.19" y="1775.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1,865,329 samples, 0.01%)</title><rect x="1066.5" y="1797" width="0.1" height="15.0" fill="rgb(254,140,23)" rx="2" ry="2" />
<text x="1069.49" y="1807.5" ></text>
</g>
<g >
<title>ip_forward_finish (1,899,425 samples, 0.01%)</title><rect x="50.8" y="1813" width="0.1" height="15.0" fill="rgb(229,48,6)" rx="2" ry="2" />
<text x="53.78" y="1823.5" ></text>
</g>
<g >
<title>[snap-exec] (55,365,191 samples, 0.26%)</title><rect x="872.9" y="1941" width="3.0" height="15.0" fill="rgb(214,48,33)" rx="2" ry="2" />
<text x="875.89" y="1951.5" ></text>
</g>
<g >
<title>netif_rx_internal (3,060,891 samples, 0.01%)</title><rect x="486.3" y="1701" width="0.2" height="15.0" fill="rgb(227,3,47)" rx="2" ry="2" />
<text x="489.34" y="1711.5" ></text>
</g>
<g >
<title>common_interrupt (4,583,577 samples, 0.02%)</title><rect x="401.3" y="261" width="0.2" height="15.0" fill="rgb(211,113,2)" rx="2" ry="2" />
<text x="404.27" y="271.5" ></text>
</g>
<g >
<title>ruby (28,051,660 samples, 0.13%)</title><rect x="860.1" y="2069" width="1.6" height="15.0" fill="rgb(210,23,43)" rx="2" ry="2" />
<text x="863.13" y="2079.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (14,262,744 samples, 0.07%)</title><rect x="846.3" y="2037" width="0.7" height="15.0" fill="rgb(238,177,52)" rx="2" ry="2" />
<text x="849.25" y="2047.5" ></text>
</g>
<g >
<title>kfree_skbmem (3,059,487 samples, 0.01%)</title><rect x="752.0" y="1557" width="0.1" height="15.0" fill="rgb(207,17,40)" rx="2" ry="2" />
<text x="754.97" y="1567.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,687,354 samples, 0.01%)</title><rect x="426.0" y="1893" width="0.2" height="15.0" fill="rgb(242,131,40)" rx="2" ry="2" />
<text x="429.03" y="1903.5" ></text>
</g>
<g >
<title>tick_sched_handle (2,304,976 samples, 0.01%)</title><rect x="448.9" y="1909" width="0.1" height="15.0" fill="rgb(230,38,41)" rx="2" ry="2" />
<text x="451.88" y="1919.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (55,809,597 samples, 0.26%)</title><rect x="618.1" y="1909" width="3.0" height="15.0" fill="rgb(247,157,5)" rx="2" ry="2" />
<text x="621.07" y="1919.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (2,987,778 samples, 0.01%)</title><rect x="17.6" y="2037" width="0.2" height="15.0" fill="rgb(208,0,26)" rx="2" ry="2" />
<text x="20.62" y="2047.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (1,861,544 samples, 0.01%)</title><rect x="1008.7" y="1493" width="0.1" height="15.0" fill="rgb(244,52,49)" rx="2" ry="2" />
<text x="1011.75" y="1503.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,004,493,006 samples, 23.38%)</title><rect x="562.5" y="2037" width="275.8" height="15.0" fill="rgb(235,194,39)" rx="2" ry="2" />
<text x="565.48" y="2047.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>bufio.(*Reader).ReadSlice (19,558,258 samples, 0.09%)</title><rect x="1179.0" y="1941" width="1.1" height="15.0" fill="rgb(237,139,49)" rx="2" ry="2" />
<text x="1182.05" y="1951.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,920,434 samples, 0.01%)</title><rect x="635.6" y="1765" width="0.1" height="15.0" fill="rgb(249,28,39)" rx="2" ry="2" />
<text x="638.62" y="1775.5" ></text>
</g>
<g >
<title>ip_rcv (181,172,052 samples, 0.85%)</title><rect x="649.5" y="1765" width="10.0" height="15.0" fill="rgb(231,217,12)" rx="2" ry="2" />
<text x="652.47" y="1775.5" ></text>
</g>
<g >
<title>[snap] (16,665,583 samples, 0.08%)</title><rect x="883.8" y="309" width="0.9" height="15.0" fill="rgb(231,117,1)" rx="2" ry="2" />
<text x="886.75" y="319.5" ></text>
</g>
<g >
<title>[unknown] (11,631,457 samples, 0.05%)</title><rect x="70.8" y="2053" width="0.6" height="15.0" fill="rgb(239,9,4)" rx="2" ry="2" />
<text x="73.78" y="2063.5" ></text>
</g>
<g >
<title>fib_rules_lookup (2,285,554 samples, 0.01%)</title><rect x="52.6" y="1797" width="0.1" height="15.0" fill="rgb(246,88,53)" rx="2" ry="2" />
<text x="55.57" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (11,779,157 samples, 0.06%)</title><rect x="1136.6" y="1653" width="0.7" height="15.0" fill="rgb(208,108,11)" rx="2" ry="2" />
<text x="1139.64" y="1663.5" ></text>
</g>
<g >
<title>__blk_mq_run_hw_queue (4,956,420 samples, 0.02%)</title><rect x="61.7" y="1973" width="0.3" height="15.0" fill="rgb(241,216,32)" rx="2" ry="2" />
<text x="64.69" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (3,435,140 samples, 0.02%)</title><rect x="441.0" y="1765" width="0.2" height="15.0" fill="rgb(252,90,15)" rx="2" ry="2" />
<text x="444.00" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (7,957,965 samples, 0.04%)</title><rect x="735.2" y="1541" width="0.4" height="15.0" fill="rgb(236,205,51)" rx="2" ry="2" />
<text x="738.21" y="1551.5" ></text>
</g>
<g >
<title>bufio.(*Reader).fill (19,558,258 samples, 0.09%)</title><rect x="1179.0" y="1925" width="1.1" height="15.0" fill="rgb(240,49,35)" rx="2" ry="2" />
<text x="1182.05" y="1935.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,936,226 samples, 0.01%)</title><rect x="641.2" y="1813" width="0.2" height="15.0" fill="rgb(251,225,7)" rx="2" ry="2" />
<text x="644.24" y="1823.5" ></text>
</g>
<g >
<title>fib4_rule_action (33,781,298 samples, 0.16%)</title><rect x="797.0" y="1685" width="1.8" height="15.0" fill="rgb(235,228,53)" rx="2" ry="2" />
<text x="799.98" y="1695.5" ></text>
</g>
<g >
<title>[snapctl] (6,148,000 samples, 0.03%)</title><rect x="944.4" y="1941" width="0.3" height="15.0" fill="rgb(224,108,36)" rx="2" ry="2" />
<text x="947.35" y="1951.5" ></text>
</g>
<g >
<title>csum_partial (2,484,011 samples, 0.01%)</title><rect x="1145.4" y="1605" width="0.1" height="15.0" fill="rgb(215,39,44)" rx="2" ry="2" />
<text x="1148.39" y="1615.5" ></text>
</g>
<g >
<title>[snap] (18,573,128 samples, 0.09%)</title><rect x="883.8" y="549" width="1.0" height="15.0" fill="rgb(250,134,5)" rx="2" ry="2" />
<text x="886.75" y="559.5" ></text>
</g>
<g >
<title>[snap-confine] (6,915,791 samples, 0.03%)</title><rect x="862.8" y="2037" width="0.4" height="15.0" fill="rgb(216,3,31)" rx="2" ry="2" />
<text x="865.83" y="2047.5" ></text>
</g>
<g >
<title>psi_task_switch (8,365,124 samples, 0.04%)</title><rect x="585.4" y="1877" width="0.5" height="15.0" fill="rgb(215,227,11)" rx="2" ry="2" />
<text x="588.43" y="1887.5" ></text>
</g>
<g >
<title>__x64_sys_write (4,173,414,862 samples, 19.49%)</title><rect x="603.4" y="2005" width="230.0" height="15.0" fill="rgb(211,183,49)" rx="2" ry="2" />
<text x="606.41" y="2015.5" >__x64_sys_write</text>
</g>
<g >
<title>dequeue_skb (31,461,228 samples, 0.15%)</title><rect x="1064.9" y="1845" width="1.8" height="15.0" fill="rgb(230,154,4)" rx="2" ry="2" />
<text x="1067.92" y="1855.5" ></text>
</g>
<g >
<title>handle_pte_fault (5,009,109 samples, 0.02%)</title><rect x="962.7" y="1957" width="0.3" height="15.0" fill="rgb(213,222,13)" rx="2" ry="2" />
<text x="965.73" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (25,436,821 samples, 0.12%)</title><rect x="975.5" y="2053" width="1.4" height="15.0" fill="rgb(244,70,37)" rx="2" ry="2" />
<text x="978.52" y="2063.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,658,435 samples, 0.01%)</title><rect x="833.5" y="1973" width="0.1" height="15.0" fill="rgb(233,189,40)" rx="2" ry="2" />
<text x="836.48" y="1983.5" ></text>
</g>
<g >
<title>posix_cpu_clock_get (6,868,259 samples, 0.03%)</title><rect x="430.3" y="1925" width="0.4" height="15.0" fill="rgb(240,127,35)" rx="2" ry="2" />
<text x="433.33" y="1935.5" ></text>
</g>
<g >
<title>net_rx_action (49,576,204 samples, 0.23%)</title><rect x="50.7" y="1973" width="2.8" height="15.0" fill="rgb(252,141,53)" rx="2" ry="2" />
<text x="53.72" y="1983.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="917" width="0.5" height="15.0" fill="rgb(244,89,22)" rx="2" ry="2" />
<text x="18.42" y="927.5" ></text>
</g>
<g >
<title>tick_irq_enter (2,773,056 samples, 0.01%)</title><rect x="1149.7" y="1829" width="0.1" height="15.0" fill="rgb(209,76,4)" rx="2" ry="2" />
<text x="1152.65" y="1839.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (1,861,419 samples, 0.01%)</title><rect x="1155.3" y="1845" width="0.1" height="15.0" fill="rgb(237,55,36)" rx="2" ry="2" />
<text x="1158.34" y="1855.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1221" width="0.5" height="15.0" fill="rgb(228,50,26)" rx="2" ry="2" />
<text x="18.42" y="1231.5" ></text>
</g>
<g >
<title>dequeue_skb (9,507,817 samples, 0.04%)</title><rect x="1008.5" y="1557" width="0.5" height="15.0" fill="rgb(246,217,35)" rx="2" ry="2" />
<text x="1011.47" y="1567.5" ></text>
</g>
<g >
<title>fib6_table_lookup (19,609,769 samples, 0.09%)</title><rect x="490.5" y="1717" width="1.1" height="15.0" fill="rgb(249,202,28)" rx="2" ry="2" />
<text x="493.53" y="1727.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,283,392 samples, 0.01%)</title><rect x="791.0" y="1701" width="0.1" height="15.0" fill="rgb(209,224,13)" rx="2" ry="2" />
<text x="793.97" y="1711.5" ></text>
</g>
<g >
<title>___slab_alloc (1,923,048 samples, 0.01%)</title><rect x="866.6" y="1877" width="0.1" height="15.0" fill="rgb(213,145,2)" rx="2" ry="2" />
<text x="869.62" y="1887.5" ></text>
</g>
<g >
<title>__ip_finish_output (41,099,202 samples, 0.19%)</title><rect x="650.1" y="1685" width="2.2" height="15.0" fill="rgb(225,86,16)" rx="2" ry="2" />
<text x="653.06" y="1695.5" ></text>
</g>
<g >
<title>ip_forward (2,266,294 samples, 0.01%)</title><rect x="1064.0" y="1717" width="0.2" height="15.0" fill="rgb(247,61,27)" rx="2" ry="2" />
<text x="1067.03" y="1727.5" ></text>
</g>
<g >
<title>dev_queue_xmit (8,613,389 samples, 0.04%)</title><rect x="1099.8" y="1605" width="0.5" height="15.0" fill="rgb(240,198,53)" rx="2" ry="2" />
<text x="1102.79" y="1615.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (2,260,119 samples, 0.01%)</title><rect x="538.4" y="1813" width="0.1" height="15.0" fill="rgb(240,216,14)" rx="2" ry="2" />
<text x="541.42" y="1823.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (2,309,619 samples, 0.01%)</title><rect x="1189.6" y="2037" width="0.1" height="15.0" fill="rgb(208,17,8)" rx="2" ry="2" />
<text x="1192.55" y="2047.5" ></text>
</g>
<g >
<title>fib6_table_lookup (2,808,044 samples, 0.01%)</title><rect x="442.6" y="1701" width="0.1" height="15.0" fill="rgb(243,120,33)" rx="2" ry="2" />
<text x="445.57" y="1711.5" ></text>
</g>
<g >
<title>__ip6_tnl_rcv (2,639,732 samples, 0.01%)</title><rect x="671.1" y="1637" width="0.1" height="15.0" fill="rgb(248,27,35)" rx="2" ry="2" />
<text x="674.07" y="1647.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (5,775,281 samples, 0.03%)</title><rect x="843.6" y="2005" width="0.3" height="15.0" fill="rgb(248,32,25)" rx="2" ry="2" />
<text x="846.60" y="2015.5" ></text>
</g>
<g >
<title>fib_lookup_good_nhc (2,233,613 samples, 0.01%)</title><rect x="798.7" y="1653" width="0.1" height="15.0" fill="rgb(228,60,30)" rx="2" ry="2" />
<text x="801.70" y="1663.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,869,589 samples, 0.01%)</title><rect x="1187.0" y="1989" width="0.1" height="15.0" fill="rgb(242,205,32)" rx="2" ry="2" />
<text x="1190.01" y="1999.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (5,115,100 samples, 0.02%)</title><rect x="687.9" y="1685" width="0.3" height="15.0" fill="rgb(238,189,53)" rx="2" ry="2" />
<text x="690.94" y="1695.5" ></text>
</g>
<g >
<title>bpf_check (1,925,500 samples, 0.01%)</title><rect x="870.5" y="1957" width="0.2" height="15.0" fill="rgb(249,203,8)" rx="2" ry="2" />
<text x="873.54" y="1967.5" ></text>
</g>
<g >
<title>filename_lookup (5,374,133 samples, 0.03%)</title><rect x="35.8" y="1925" width="0.3" height="15.0" fill="rgb(224,25,38)" rx="2" ry="2" />
<text x="38.78" y="1935.5" ></text>
</g>
<g >
<title>dequeue_skb (10,708,997 samples, 0.05%)</title><rect x="733.0" y="1445" width="0.6" height="15.0" fill="rgb(234,227,31)" rx="2" ry="2" />
<text x="736.01" y="1455.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,684,470 samples, 0.01%)</title><rect x="621.0" y="1845" width="0.1" height="15.0" fill="rgb(228,196,47)" rx="2" ry="2" />
<text x="623.97" y="1855.5" ></text>
</g>
<g >
<title>apparmor_ipv4_postroute (5,333,846 samples, 0.02%)</title><rect x="706.9" y="1781" width="0.3" height="15.0" fill="rgb(249,31,2)" rx="2" ry="2" />
<text x="709.93" y="1791.5" ></text>
</g>
<g >
<title>exc_page_fault (3,823,622 samples, 0.02%)</title><rect x="1185.2" y="2021" width="0.2" height="15.0" fill="rgb(231,153,19)" rx="2" ry="2" />
<text x="1188.18" y="2031.5" ></text>
</g>
<g >
<title>do_filp_open (2,696,088 samples, 0.01%)</title><rect x="66.6" y="1941" width="0.2" height="15.0" fill="rgb(221,40,22)" rx="2" ry="2" />
<text x="69.61" y="1951.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (4,940,599 samples, 0.02%)</title><rect x="1187.2" y="1989" width="0.2" height="15.0" fill="rgb(217,154,4)" rx="2" ry="2" />
<text x="1190.16" y="1999.5" ></text>
</g>
<g >
<title>[snapd] (4,439,479 samples, 0.02%)</title><rect x="974.9" y="1589" width="0.2" height="15.0" fill="rgb(206,85,53)" rx="2" ry="2" />
<text x="977.87" y="1599.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (1,850,866 samples, 0.01%)</title><rect x="1150.4" y="1717" width="0.1" height="15.0" fill="rgb(208,127,12)" rx="2" ry="2" />
<text x="1153.39" y="1727.5" ></text>
</g>
<g >
<title>__find_rr_leaf (5,211,243 samples, 0.02%)</title><rect x="490.9" y="1701" width="0.2" height="15.0" fill="rgb(213,84,14)" rx="2" ry="2" />
<text x="493.86" y="1711.5" ></text>
</g>
<g >
<title>skb_clone (13,593,470 samples, 0.06%)</title><rect x="522.0" y="1861" width="0.8" height="15.0" fill="rgb(223,20,54)" rx="2" ry="2" />
<text x="525.02" y="1871.5" ></text>
</g>
<g >
<title>squashfs_cache_get (1,891,043 samples, 0.01%)</title><rect x="965.9" y="1749" width="0.1" height="15.0" fill="rgb(206,229,24)" rx="2" ry="2" />
<text x="968.88" y="1759.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (4,602,382 samples, 0.02%)</title><rect x="587.8" y="1893" width="0.3" height="15.0" fill="rgb(251,135,39)" rx="2" ry="2" />
<text x="590.83" y="1903.5" ></text>
</g>
<g >
<title>handle_edge_irq (65,799,651 samples, 0.31%)</title><rect x="1116.6" y="1829" width="3.6" height="15.0" fill="rgb(246,129,48)" rx="2" ry="2" />
<text x="1119.62" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (2,293,893 samples, 0.01%)</title><rect x="513.8" y="1653" width="0.1" height="15.0" fill="rgb(239,64,14)" rx="2" ry="2" />
<text x="516.75" y="1663.5" ></text>
</g>
<g >
<title>net_rx_action (2,677,961 samples, 0.01%)</title><rect x="606.8" y="1909" width="0.1" height="15.0" fill="rgb(247,151,13)" rx="2" ry="2" />
<text x="609.76" y="1919.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (3,872,280 samples, 0.02%)</title><rect x="967.8" y="2021" width="0.2" height="15.0" fill="rgb(254,61,22)" rx="2" ry="2" />
<text x="970.80" y="2031.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (3,062,131 samples, 0.01%)</title><rect x="743.5" y="1429" width="0.2" height="15.0" fill="rgb(251,8,11)" rx="2" ry="2" />
<text x="746.53" y="1439.5" ></text>
</g>
<g >
<title>__netif_receive_skb (62,834,019 samples, 0.29%)</title><rect x="406.2" y="1877" width="3.5" height="15.0" fill="rgb(236,221,51)" rx="2" ry="2" />
<text x="409.19" y="1887.5" ></text>
</g>
<g >
<title>ip6_finish_output (2,982,670 samples, 0.01%)</title><rect x="550.7" y="1765" width="0.2" height="15.0" fill="rgb(205,81,24)" rx="2" ry="2" />
<text x="553.72" y="1775.5" ></text>
</g>
<g >
<title>rtl8169_poll (28,491,644 samples, 0.13%)</title><rect x="51.9" y="1941" width="1.5" height="15.0" fill="rgb(212,125,25)" rx="2" ry="2" />
<text x="54.86" y="1951.5" ></text>
</g>
<g >
<title>ip_finish_output (34,372,886 samples, 0.16%)</title><rect x="1122.2" y="1669" width="1.9" height="15.0" fill="rgb(247,116,42)" rx="2" ry="2" />
<text x="1125.22" y="1679.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,853,942 samples, 0.01%)</title><rect x="610.9" y="1941" width="0.2" height="15.0" fill="rgb(229,35,26)" rx="2" ry="2" />
<text x="613.95" y="1951.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,305,166 samples, 0.01%)</title><rect x="639.5" y="1781" width="0.1" height="15.0" fill="rgb(254,145,5)" rx="2" ry="2" />
<text x="642.46" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (5,336,482 samples, 0.02%)</title><rect x="439.6" y="1621" width="0.3" height="15.0" fill="rgb(243,113,11)" rx="2" ry="2" />
<text x="442.58" y="1631.5" ></text>
</g>
<g >
<title>__qdisc_run (16,167,439 samples, 0.08%)</title><rect x="420.9" y="1909" width="0.8" height="15.0" fill="rgb(210,177,20)" rx="2" ry="2" />
<text x="423.85" y="1919.5" ></text>
</g>
<g >
<title>[snap] (21,207,408 samples, 0.10%)</title><rect x="883.7" y="1477" width="1.2" height="15.0" fill="rgb(246,71,15)" rx="2" ry="2" />
<text x="886.73" y="1487.5" ></text>
</g>
<g >
<title>__add_to_page_cache_locked (7,476,318 samples, 0.03%)</title><rect x="74.2" y="1717" width="0.4" height="15.0" fill="rgb(214,183,25)" rx="2" ry="2" />
<text x="77.17" y="1727.5" ></text>
</g>
<g >
<title>ip_list_rcv (2,851,092 samples, 0.01%)</title><rect x="419.5" y="1813" width="0.2" height="15.0" fill="rgb(243,9,13)" rx="2" ry="2" />
<text x="422.52" y="1823.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (12,213,184 samples, 0.06%)</title><rect x="63.7" y="1909" width="0.7" height="15.0" fill="rgb(210,48,15)" rx="2" ry="2" />
<text x="66.75" y="1919.5" ></text>
</g>
<g >
<title>neigh_hh_output (3,049,879 samples, 0.01%)</title><rect x="424.8" y="1717" width="0.1" height="15.0" fill="rgb(208,167,28)" rx="2" ry="2" />
<text x="427.77" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (4,012,696 samples, 0.02%)</title><rect x="1044.8" y="1509" width="0.2" height="15.0" fill="rgb(222,144,19)" rx="2" ry="2" />
<text x="1047.78" y="1519.5" ></text>
</g>
<g >
<title>net_rx_action (2,277,135 samples, 0.01%)</title><rect x="833.5" y="1941" width="0.1" height="15.0" fill="rgb(208,142,4)" rx="2" ry="2" />
<text x="836.48" y="1951.5" ></text>
</g>
<g >
<title>vfs_statx (2,308,205 samples, 0.01%)</title><rect x="857.9" y="1957" width="0.1" height="15.0" fill="rgb(242,204,17)" rx="2" ry="2" />
<text x="860.92" y="1967.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (4,505,663 samples, 0.02%)</title><rect x="1064.2" y="1749" width="0.2" height="15.0" fill="rgb(253,54,17)" rx="2" ry="2" />
<text x="1067.19" y="1759.5" ></text>
</g>
<g >
<title>rtl8169_poll (2,985,323 samples, 0.01%)</title><rect x="572.3" y="1845" width="0.2" height="15.0" fill="rgb(215,115,13)" rx="2" ry="2" />
<text x="575.34" y="1855.5" ></text>
</g>
<g >
<title>nf_conntrack_in (5,236,148 samples, 0.02%)</title><rect x="474.3" y="1829" width="0.3" height="15.0" fill="rgb(226,200,23)" rx="2" ry="2" />
<text x="477.34" y="1839.5" ></text>
</g>
<g >
<title>irqentry_enter (2,634,747 samples, 0.01%)</title><rect x="1059.7" y="1909" width="0.2" height="15.0" fill="rgb(228,7,4)" rx="2" ry="2" />
<text x="1062.72" y="1919.5" ></text>
</g>
<g >
<title>unmap_page_range (24,466,515 samples, 0.11%)</title><rect x="889.7" y="1797" width="1.4" height="15.0" fill="rgb(210,66,5)" rx="2" ry="2" />
<text x="892.74" y="1807.5" ></text>
</g>
<g >
<title>__x64_sys_openat (9,509,332 samples, 0.04%)</title><rect x="1174.7" y="1989" width="0.5" height="15.0" fill="rgb(207,199,30)" rx="2" ry="2" />
<text x="1177.69" y="1999.5" ></text>
</g>
<g >
<title>sch_direct_xmit (4,178,591 samples, 0.02%)</title><rect x="435.4" y="1685" width="0.2" height="15.0" fill="rgb(237,97,48)" rx="2" ry="2" />
<text x="438.38" y="1695.5" ></text>
</g>
<g >
<title>sch_direct_xmit (20,259,307 samples, 0.09%)</title><rect x="479.6" y="1669" width="1.1" height="15.0" fill="rgb(212,25,1)" rx="2" ry="2" />
<text x="482.63" y="1679.5" ></text>
</g>
<g >
<title>nf_hook_slow (13,639,005 samples, 0.06%)</title><rect x="1136.6" y="1669" width="0.8" height="15.0" fill="rgb(215,74,20)" rx="2" ry="2" />
<text x="1139.62" y="1679.5" ></text>
</g>
<g >
<title>neigh_resolve_output (4,595,483 samples, 0.02%)</title><rect x="412.4" y="1717" width="0.2" height="15.0" fill="rgb(241,209,1)" rx="2" ry="2" />
<text x="415.38" y="1727.5" ></text>
</g>
<g >
<title>do_user_addr_fault (39,983,273 samples, 0.19%)</title><rect x="955.2" y="1989" width="2.2" height="15.0" fill="rgb(212,114,48)" rx="2" ry="2" />
<text x="958.16" y="1999.5" ></text>
</g>
<g >
<title>napi_complete_done (2,304,820 samples, 0.01%)</title><rect x="645.8" y="1781" width="0.1" height="15.0" fill="rgb(236,217,27)" rx="2" ry="2" />
<text x="648.80" y="1791.5" ></text>
</g>
<g >
<title>mmc_get_card (4,615,374 samples, 0.02%)</title><rect x="64.1" y="1861" width="0.3" height="15.0" fill="rgb(243,118,7)" rx="2" ry="2" />
<text x="67.15" y="1871.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (13,673,938 samples, 0.06%)</title><rect x="422.5" y="1925" width="0.8" height="15.0" fill="rgb(234,108,26)" rx="2" ry="2" />
<text x="425.52" y="1935.5" ></text>
</g>
<g >
<title>path_lookupat (3,076,141 samples, 0.01%)</title><rect x="842.9" y="1909" width="0.2" height="15.0" fill="rgb(240,6,54)" rx="2" ry="2" />
<text x="845.90" y="1919.5" ></text>
</g>
<g >
<title>copy_page (3,852,554 samples, 0.02%)</title><rect x="24.6" y="1909" width="0.2" height="15.0" fill="rgb(236,13,30)" rx="2" ry="2" />
<text x="27.57" y="1919.5" ></text>
</g>
<g >
<title>___sys_recvmsg (3,217,056 samples, 0.02%)</title><rect x="20.0" y="1941" width="0.2" height="15.0" fill="rgb(222,76,27)" rx="2" ry="2" />
<text x="23.01" y="1951.5" ></text>
</g>
<g >
<title>napi_gro_receive (542,090,023 samples, 2.53%)</title><rect x="1019.9" y="1813" width="29.8" height="15.0" fill="rgb(229,167,19)" rx="2" ry="2" />
<text x="1022.87" y="1823.5" >na..</text>
</g>
<g >
<title>[snap-exec] (17,265,981 samples, 0.08%)</title><rect x="871.9" y="2053" width="0.9" height="15.0" fill="rgb(221,39,50)" rx="2" ry="2" />
<text x="874.89" y="2063.5" ></text>
</g>
<g >
<title>napi_complete_done (2,193,157 samples, 0.01%)</title><rect x="568.8" y="1861" width="0.1" height="15.0" fill="rgb(219,82,7)" rx="2" ry="2" />
<text x="571.79" y="1871.5" ></text>
</g>
<g >
<title>ip6_finish_output (63,674,315 samples, 0.30%)</title><rect x="741.6" y="1573" width="3.5" height="15.0" fill="rgb(248,107,51)" rx="2" ry="2" />
<text x="744.63" y="1583.5" ></text>
</g>
<g >
<title>ipv6_conntrack_in (9,008,157 samples, 0.04%)</title><rect x="494.2" y="1813" width="0.5" height="15.0" fill="rgb(246,103,24)" rx="2" ry="2" />
<text x="497.19" y="1823.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,959,530 samples, 0.01%)</title><rect x="832.9" y="1909" width="0.2" height="15.0" fill="rgb(239,25,22)" rx="2" ry="2" />
<text x="835.92" y="1919.5" ></text>
</g>
<g >
<title>nf_hook_slow (26,103,526 samples, 0.12%)</title><rect x="546.0" y="1845" width="1.4" height="15.0" fill="rgb(209,211,36)" rx="2" ry="2" />
<text x="548.99" y="1855.5" ></text>
</g>
<g >
<title>ip6_rcv_core (10,253,619 samples, 0.05%)</title><rect x="1137.4" y="1685" width="0.6" height="15.0" fill="rgb(215,173,33)" rx="2" ry="2" />
<text x="1140.40" y="1695.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,920,362 samples, 0.01%)</title><rect x="868.4" y="2005" width="0.1" height="15.0" fill="rgb(228,95,23)" rx="2" ry="2" />
<text x="871.37" y="2015.5" ></text>
</g>
<g >
<title>__fsnotify_parent (6,790,528 samples, 0.03%)</title><rect x="601.6" y="1909" width="0.4" height="15.0" fill="rgb(217,175,16)" rx="2" ry="2" />
<text x="604.61" y="1919.5" ></text>
</g>
<g >
<title>skb_clone (5,073,253 samples, 0.02%)</title><rect x="1137.7" y="1669" width="0.3" height="15.0" fill="rgb(237,10,11)" rx="2" ry="2" />
<text x="1140.68" y="1679.5" ></text>
</g>
<g >
<title>memcpy_erms (2,675,532 samples, 0.01%)</title><rect x="437.9" y="1893" width="0.1" height="15.0" fill="rgb(245,17,47)" rx="2" ry="2" />
<text x="440.89" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,865,874 samples, 0.01%)</title><rect x="626.8" y="1861" width="0.1" height="15.0" fill="rgb(237,32,23)" rx="2" ry="2" />
<text x="629.80" y="1871.5" ></text>
</g>
<g >
<title>dup_mm (22,624,511 samples, 0.11%)</title><rect x="25.5" y="1941" width="1.2" height="15.0" fill="rgb(237,167,23)" rx="2" ry="2" />
<text x="28.48" y="1951.5" ></text>
</g>
<g >
<title>netif_skb_features (2,317,652 samples, 0.01%)</title><rect x="1067.6" y="1797" width="0.1" height="15.0" fill="rgb(247,84,26)" rx="2" ry="2" />
<text x="1070.60" y="1807.5" ></text>
</g>
<g >
<title>ip6_forward (4,711,269 samples, 0.02%)</title><rect x="52.1" y="1845" width="0.2" height="15.0" fill="rgb(208,224,29)" rx="2" ry="2" />
<text x="55.07" y="1855.5" ></text>
</g>
<g >
<title>net_rx_action (1,937,314 samples, 0.01%)</title><rect x="969.6" y="1781" width="0.1" height="15.0" fill="rgb(242,12,53)" rx="2" ry="2" />
<text x="972.59" y="1791.5" ></text>
</g>
<g >
<title>[snap] (10,466,168 samples, 0.05%)</title><rect x="894.6" y="1653" width="0.5" height="15.0" fill="rgb(233,30,9)" rx="2" ry="2" />
<text x="897.56" y="1663.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (7,170,908 samples, 0.03%)</title><rect x="55.9" y="1845" width="0.4" height="15.0" fill="rgb(230,193,47)" rx="2" ry="2" />
<text x="58.91" y="1855.5" ></text>
</g>
<g >
<title>ip_list_rcv (3,191,164 samples, 0.01%)</title><rect x="681.0" y="1749" width="0.2" height="15.0" fill="rgb(207,19,38)" rx="2" ry="2" />
<text x="684.03" y="1759.5" ></text>
</g>
<g >
<title>tailscale.com/portlist.(*Poller).getList (21,710,202 samples, 0.10%)</title><rect x="1179.0" y="1989" width="1.2" height="15.0" fill="rgb(215,185,50)" rx="2" ry="2" />
<text x="1181.96" y="1999.5" ></text>
</g>
<g >
<title>kmem_cache_free_bulk.part.0 (5,890,466 samples, 0.03%)</title><rect x="1053.4" y="1781" width="0.3" height="15.0" fill="rgb(238,193,28)" rx="2" ry="2" />
<text x="1056.37" y="1791.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (4,246,453 samples, 0.02%)</title><rect x="930.3" y="1429" width="0.3" height="15.0" fill="rgb(249,91,19)" rx="2" ry="2" />
<text x="933.34" y="1439.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (1,868,207 samples, 0.01%)</title><rect x="542.4" y="1717" width="0.1" height="15.0" fill="rgb(225,29,38)" rx="2" ry="2" />
<text x="545.41" y="1727.5" ></text>
</g>
<g >
<title>ext4_da_write_end (22,918,123 samples, 0.11%)</title><rect x="74.8" y="1781" width="1.3" height="15.0" fill="rgb(253,23,9)" rx="2" ry="2" />
<text x="77.79" y="1791.5" ></text>
</g>
<g >
<title>do_group_exit (1,922,234 samples, 0.01%)</title><rect x="47.5" y="2005" width="0.1" height="15.0" fill="rgb(236,114,28)" rx="2" ry="2" />
<text x="50.48" y="2015.5" ></text>
</g>
<g >
<title>fib_rules_lookup (27,257,822 samples, 0.13%)</title><rect x="1138.2" y="1637" width="1.5" height="15.0" fill="rgb(236,80,36)" rx="2" ry="2" />
<text x="1141.22" y="1647.5" ></text>
</g>
<g >
<title>pick_next_task_fair (2,569,740 samples, 0.01%)</title><rect x="836.9" y="1909" width="0.1" height="15.0" fill="rgb(224,113,30)" rx="2" ry="2" />
<text x="839.89" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1877" width="0.3" height="15.0" fill="rgb(233,177,34)" rx="2" ry="2" />
<text x="23.41" y="1887.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,464,877 samples, 0.02%)</title><rect x="869.0" y="1973" width="0.2" height="15.0" fill="rgb(229,8,8)" rx="2" ry="2" />
<text x="871.98" y="1983.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,315,962 samples, 0.01%)</title><rect x="33.1" y="1893" width="0.1" height="15.0" fill="rgb(227,136,26)" rx="2" ry="2" />
<text x="36.08" y="1903.5" ></text>
</g>
<g >
<title>skb_clone (2,992,308 samples, 0.01%)</title><rect x="428.7" y="1829" width="0.2" height="15.0" fill="rgb(216,32,23)" rx="2" ry="2" />
<text x="431.73" y="1839.5" ></text>
</g>
<g >
<title>free_unref_page_list (6,180,516 samples, 0.03%)</title><rect x="60.8" y="1909" width="0.3" height="15.0" fill="rgb(235,4,13)" rx="2" ry="2" />
<text x="63.80" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (8,703,371 samples, 0.04%)</title><rect x="1131.5" y="1509" width="0.5" height="15.0" fill="rgb(208,176,37)" rx="2" ry="2" />
<text x="1134.52" y="1519.5" ></text>
</g>
<g >
<title>ipv6_gro_receive (30,459,669 samples, 0.14%)</title><rect x="685.5" y="1749" width="1.7" height="15.0" fill="rgb(253,46,19)" rx="2" ry="2" />
<text x="688.54" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (24,696,396 samples, 0.12%)</title><rect x="701.4" y="1829" width="1.4" height="15.0" fill="rgb(239,73,2)" rx="2" ry="2" />
<text x="704.39" y="1839.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,924,965 samples, 0.01%)</title><rect x="876.0" y="1941" width="0.1" height="15.0" fill="rgb(216,97,34)" rx="2" ry="2" />
<text x="879.02" y="1951.5" ></text>
</g>
<g >
<title>consume_skb (18,302,349 samples, 0.09%)</title><rect x="496.3" y="1845" width="1.0" height="15.0" fill="rgb(227,227,36)" rx="2" ry="2" />
<text x="499.27" y="1855.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (6,243,359 samples, 0.03%)</title><rect x="1009.0" y="1541" width="0.4" height="15.0" fill="rgb(225,36,19)" rx="2" ry="2" />
<text x="1012.05" y="1551.5" ></text>
</g>
<g >
<title>ip6_finish_output (2,950,060 samples, 0.01%)</title><rect x="56.1" y="1781" width="0.1" height="15.0" fill="rgb(227,156,33)" rx="2" ry="2" />
<text x="59.06" y="1791.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (2,215,562 samples, 0.01%)</title><rect x="547.7" y="1749" width="0.1" height="15.0" fill="rgb(232,209,47)" rx="2" ry="2" />
<text x="550.68" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (3,846,389 samples, 0.02%)</title><rect x="70.4" y="2053" width="0.2" height="15.0" fill="rgb(232,143,29)" rx="2" ry="2" />
<text x="73.41" y="2063.5" ></text>
</g>
<g >
<title>validate_xmit_skb (2,669,623 samples, 0.01%)</title><rect x="733.9" y="1413" width="0.2" height="15.0" fill="rgb(214,0,8)" rx="2" ry="2" />
<text x="736.91" y="1423.5" ></text>
</g>
<g >
<title>__x64_sys_openat (10,013,425 samples, 0.05%)</title><rect x="866.6" y="1989" width="0.6" height="15.0" fill="rgb(238,153,12)" rx="2" ry="2" />
<text x="869.60" y="1999.5" ></text>
</g>
<g >
<title>irqentry_exit (4,910,126 samples, 0.02%)</title><rect x="553.6" y="2005" width="0.3" height="15.0" fill="rgb(219,189,19)" rx="2" ry="2" />
<text x="556.63" y="2015.5" ></text>
</g>
<g >
<title>ip6_finish_output (15,994,572 samples, 0.07%)</title><rect x="1099.7" y="1669" width="0.9" height="15.0" fill="rgb(249,4,42)" rx="2" ry="2" />
<text x="1102.73" y="1679.5" ></text>
</g>
<g >
<title>neigh_hh_output (76,534,305 samples, 0.36%)</title><rect x="478.4" y="1749" width="4.3" height="15.0" fill="rgb(211,228,11)" rx="2" ry="2" />
<text x="481.43" y="1759.5" ></text>
</g>
<g >
<title>[snap] (19,678,493 samples, 0.09%)</title><rect x="883.8" y="757" width="1.0" height="15.0" fill="rgb(215,29,38)" rx="2" ry="2" />
<text x="886.75" y="767.5" ></text>
</g>
<g >
<title>__ip6_finish_output (4,698,964 samples, 0.02%)</title><rect x="495.4" y="1749" width="0.3" height="15.0" fill="rgb(252,145,24)" rx="2" ry="2" />
<text x="498.44" y="1759.5" ></text>
</g>
<g >
<title>__ip6_finish_output (87,941,465 samples, 0.41%)</title><rect x="478.2" y="1781" width="4.9" height="15.0" fill="rgb(208,57,25)" rx="2" ry="2" />
<text x="481.24" y="1791.5" ></text>
</g>
<g >
<title>nf_hook_slow (3,811,253 samples, 0.02%)</title><rect x="1101.0" y="1717" width="0.2" height="15.0" fill="rgb(244,155,14)" rx="2" ry="2" />
<text x="1103.98" y="1727.5" ></text>
</g>
<g >
<title>sync_regs (3,941,292 samples, 0.02%)</title><rect x="839.0" y="2037" width="0.2" height="15.0" fill="rgb(249,160,14)" rx="2" ry="2" />
<text x="842.00" y="2047.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (2,503,359 samples, 0.01%)</title><rect x="1153.9" y="1701" width="0.2" height="15.0" fill="rgb(219,44,37)" rx="2" ry="2" />
<text x="1156.94" y="1711.5" ></text>
</g>
<g >
<title>consume_skb (1,890,217 samples, 0.01%)</title><rect x="515.3" y="1845" width="0.1" height="15.0" fill="rgb(213,158,54)" rx="2" ry="2" />
<text x="518.27" y="1855.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (94,058,976 samples, 0.44%)</title><rect x="448.6" y="1989" width="5.2" height="15.0" fill="rgb(246,28,21)" rx="2" ry="2" />
<text x="451.57" y="1999.5" ></text>
</g>
<g >
<title>load_elf_binary (1,922,816 samples, 0.01%)</title><rect x="17.1" y="1909" width="0.1" height="15.0" fill="rgb(252,184,11)" rx="2" ry="2" />
<text x="20.05" y="1919.5" ></text>
</g>
<g >
<title>__qdisc_run (13,595,766 samples, 0.06%)</title><rect x="1057.8" y="1861" width="0.8" height="15.0" fill="rgb(222,133,43)" rx="2" ry="2" />
<text x="1060.81" y="1871.5" ></text>
</g>
<g >
<title>do_dentry_open (2,692,159 samples, 0.01%)</title><rect x="953.4" y="1877" width="0.1" height="15.0" fill="rgb(223,193,13)" rx="2" ry="2" />
<text x="956.36" y="1887.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,336,125 samples, 0.02%)</title><rect x="1171.8" y="1973" width="0.2" height="15.0" fill="rgb(244,147,35)" rx="2" ry="2" />
<text x="1174.78" y="1983.5" ></text>
</g>
<g >
<title>net_tx_action (2,291,783 samples, 0.01%)</title><rect x="835.6" y="1925" width="0.1" height="15.0" fill="rgb(243,42,2)" rx="2" ry="2" />
<text x="838.60" y="1935.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (56,185,728 samples, 0.26%)</title><rect x="508.3" y="1989" width="3.1" height="15.0" fill="rgb(234,172,23)" rx="2" ry="2" />
<text x="511.30" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (2,105,871 samples, 0.01%)</title><rect x="1032.2" y="1717" width="0.1" height="15.0" fill="rgb(243,136,15)" rx="2" ry="2" />
<text x="1035.16" y="1727.5" ></text>
</g>
<g >
<title>default_wake_function (8,838,266 samples, 0.04%)</title><rect x="1123.2" y="1429" width="0.5" height="15.0" fill="rgb(227,216,26)" rx="2" ry="2" />
<text x="1126.25" y="1439.5" ></text>
</g>
<g >
<title>common_interrupt (2,298,305 samples, 0.01%)</title><rect x="888.7" y="1973" width="0.1" height="15.0" fill="rgb(237,223,50)" rx="2" ry="2" />
<text x="891.66" y="1983.5" ></text>
</g>
<g >
<title>[snap-exec] (3,440,727 samples, 0.02%)</title><rect x="872.0" y="1909" width="0.2" height="15.0" fill="rgb(232,96,45)" rx="2" ry="2" />
<text x="875.00" y="1919.5" ></text>
</g>
<g >
<title>ip6_finish_output (29,246,428 samples, 0.14%)</title><rect x="540.9" y="1813" width="1.6" height="15.0" fill="rgb(248,119,22)" rx="2" ry="2" />
<text x="543.90" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (4,803,619 samples, 0.02%)</title><rect x="543.9" y="1813" width="0.3" height="15.0" fill="rgb(247,14,26)" rx="2" ry="2" />
<text x="546.89" y="1823.5" ></text>
</g>
<g >
<title>__sys_sendmsg (5,814,609 samples, 0.03%)</title><rect x="45.2" y="1957" width="0.3" height="15.0" fill="rgb(230,14,13)" rx="2" ry="2" />
<text x="48.20" y="1967.5" ></text>
</g>
<g >
<title>exc_page_fault (1,939,552 samples, 0.01%)</title><rect x="856.6" y="1989" width="0.1" height="15.0" fill="rgb(253,120,8)" rx="2" ry="2" />
<text x="859.59" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,924,407 samples, 0.01%)</title><rect x="17.5" y="2053" width="0.1" height="15.0" fill="rgb(215,115,44)" rx="2" ry="2" />
<text x="20.48" y="2063.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (4,047,165 samples, 0.02%)</title><rect x="568.7" y="1925" width="0.3" height="15.0" fill="rgb(210,219,39)" rx="2" ry="2" />
<text x="571.75" y="1935.5" ></text>
</g>
<g >
<title>irqentry_exit (3,450,008 samples, 0.02%)</title><rect x="430.0" y="1957" width="0.2" height="15.0" fill="rgb(254,77,38)" rx="2" ry="2" />
<text x="432.98" y="1967.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (6,243,359 samples, 0.03%)</title><rect x="1009.0" y="1525" width="0.4" height="15.0" fill="rgb(219,88,42)" rx="2" ry="2" />
<text x="1012.05" y="1535.5" ></text>
</g>
<g >
<title>vfs_read (607,184,276 samples, 2.84%)</title><rect x="569.8" y="1973" width="33.4" height="15.0" fill="rgb(212,225,32)" rx="2" ry="2" />
<text x="572.78" y="1983.5" >vf..</text>
</g>
<g >
<title>exec_binprm (2,304,923 samples, 0.01%)</title><rect x="869.7" y="1941" width="0.1" height="15.0" fill="rgb(246,86,1)" rx="2" ry="2" />
<text x="872.71" y="1951.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,926,113 samples, 0.01%)</title><rect x="962.7" y="1941" width="0.1" height="15.0" fill="rgb(230,32,27)" rx="2" ry="2" />
<text x="965.73" y="1951.5" ></text>
</g>
<g >
<title>clockevents_program_event (5,311,664 samples, 0.02%)</title><rect x="511.0" y="1941" width="0.3" height="15.0" fill="rgb(210,156,29)" rx="2" ry="2" />
<text x="513.96" y="1951.5" ></text>
</g>
<g >
<title>mm_alloc (2,693,135 samples, 0.01%)</title><rect x="34.4" y="1941" width="0.2" height="15.0" fill="rgb(237,148,32)" rx="2" ry="2" />
<text x="37.41" y="1951.5" ></text>
</g>
<g >
<title>copy_page (12,284,097 samples, 0.06%)</title><rect x="938.0" y="1877" width="0.7" height="15.0" fill="rgb(221,4,22)" rx="2" ry="2" />
<text x="941.02" y="1887.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,171,767 samples, 0.03%)</title><rect x="901.9" y="1765" width="0.3" height="15.0" fill="rgb(227,194,12)" rx="2" ry="2" />
<text x="904.85" y="1775.5" ></text>
</g>
<g >
<title>[libudev.so.1.7.2] (2,309,106 samples, 0.01%)</title><rect x="862.7" y="2037" width="0.1" height="15.0" fill="rgb(234,150,4)" rx="2" ry="2" />
<text x="865.70" y="2047.5" ></text>
</g>
<g >
<title>handle_irq_event (2,658,281 samples, 0.01%)</title><rect x="700.5" y="1765" width="0.1" height="15.0" fill="rgb(212,36,16)" rx="2" ry="2" />
<text x="703.50" y="1775.5" ></text>
</g>
<g >
<title>skb_checksum (2,297,341 samples, 0.01%)</title><rect x="445.6" y="1765" width="0.2" height="15.0" fill="rgb(210,16,28)" rx="2" ry="2" />
<text x="448.63" y="1775.5" ></text>
</g>
<g >
<title>do_sys_openat2 (6,930,784 samples, 0.03%)</title><rect x="36.2" y="1973" width="0.4" height="15.0" fill="rgb(239,222,47)" rx="2" ry="2" />
<text x="39.18" y="1983.5" ></text>
</g>
<g >
<title>page_cache_async_ra (44,090,883 samples, 0.21%)</title><rect x="933.7" y="1845" width="2.5" height="15.0" fill="rgb(232,178,35)" rx="2" ry="2" />
<text x="936.75" y="1855.5" ></text>
</g>
<g >
<title>net_rx_action (48,139,365 samples, 0.22%)</title><rect x="55.6" y="1973" width="2.7" height="15.0" fill="rgb(229,102,33)" rx="2" ry="2" />
<text x="58.65" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_read (7,129,723 samples, 0.03%)</title><rect x="563.5" y="2021" width="0.4" height="15.0" fill="rgb(252,117,48)" rx="2" ry="2" />
<text x="566.53" y="2031.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (5,362,923 samples, 0.03%)</title><rect x="525.6" y="1941" width="0.3" height="15.0" fill="rgb(212,185,54)" rx="2" ry="2" />
<text x="528.56" y="1951.5" ></text>
</g>
<g >
<title>cake_classify (3,829,091 samples, 0.02%)</title><rect x="666.3" y="1541" width="0.2" height="15.0" fill="rgb(230,43,39)" rx="2" ry="2" />
<text x="669.25" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1893" width="0.3" height="15.0" fill="rgb(239,68,40)" rx="2" ry="2" />
<text x="23.41" y="1903.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (2,313,252 samples, 0.01%)</title><rect x="979.9" y="1765" width="0.1" height="15.0" fill="rgb(227,44,35)" rx="2" ry="2" />
<text x="982.87" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (4,510,685 samples, 0.02%)</title><rect x="1141.6" y="1605" width="0.3" height="15.0" fill="rgb(213,141,53)" rx="2" ry="2" />
<text x="1144.61" y="1615.5" ></text>
</g>
<g >
<title>fib_rules_lookup (2,935,333 samples, 0.01%)</title><rect x="501.7" y="1749" width="0.1" height="15.0" fill="rgb(208,198,37)" rx="2" ry="2" />
<text x="504.69" y="1759.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (18,538,040 samples, 0.09%)</title><rect x="958.2" y="1989" width="1.0" height="15.0" fill="rgb(235,6,46)" rx="2" ry="2" />
<text x="961.17" y="1999.5" ></text>
</g>
<g >
<title>get_next_timer_interrupt (10,588,108 samples, 0.05%)</title><rect x="1110.5" y="1909" width="0.6" height="15.0" fill="rgb(244,69,20)" rx="2" ry="2" />
<text x="1113.48" y="1919.5" ></text>
</g>
<g >
<title>ip_finish_output2 (951,622,055 samples, 4.45%)</title><rect x="708.1" y="1749" width="52.4" height="15.0" fill="rgb(223,76,29)" rx="2" ry="2" />
<text x="711.08" y="1759.5" >ip_fi..</text>
</g>
<g >
<title>search_binary_handler (2,304,923 samples, 0.01%)</title><rect x="869.7" y="1925" width="0.1" height="15.0" fill="rgb(220,27,40)" rx="2" ry="2" />
<text x="872.71" y="1935.5" ></text>
</g>
<g >
<title>ret_from_fork (1,837,215 samples, 0.01%)</title><rect x="50.3" y="2053" width="0.1" height="15.0" fill="rgb(214,46,36)" rx="2" ry="2" />
<text x="53.26" y="2063.5" ></text>
</g>
<g >
<title>fib6_rule_action (2,303,429 samples, 0.01%)</title><rect x="1062.8" y="1669" width="0.1" height="15.0" fill="rgb(234,163,22)" rx="2" ry="2" />
<text x="1065.78" y="1679.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (4,505,663 samples, 0.02%)</title><rect x="1064.2" y="1765" width="0.2" height="15.0" fill="rgb(221,152,16)" rx="2" ry="2" />
<text x="1067.19" y="1775.5" ></text>
</g>
<g >
<title>kfree_skbmem (8,156,728 samples, 0.04%)</title><rect x="1142.8" y="1685" width="0.4" height="15.0" fill="rgb(214,228,38)" rx="2" ry="2" />
<text x="1145.80" y="1695.5" ></text>
</g>
<g >
<title>acpi_evaluate_object (1,885,222 samples, 0.01%)</title><rect x="64.2" y="1685" width="0.1" height="15.0" fill="rgb(230,174,23)" rx="2" ry="2" />
<text x="67.17" y="1695.5" ></text>
</g>
<g >
<title>[snap] (21,588,101 samples, 0.10%)</title><rect x="883.7" y="1573" width="1.2" height="15.0" fill="rgb(214,36,54)" rx="2" ry="2" />
<text x="886.71" y="1583.5" ></text>
</g>
<g >
<title>memcpy_erms (19,594,500 samples, 0.09%)</title><rect x="999.3" y="1829" width="1.0" height="15.0" fill="rgb(245,62,33)" rx="2" ry="2" />
<text x="1002.26" y="1839.5" ></text>
</g>
<g >
<title>error_entry (1,937,610 samples, 0.01%)</title><rect x="1165.6" y="1893" width="0.1" height="15.0" fill="rgb(249,66,17)" rx="2" ry="2" />
<text x="1168.61" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (4,450,913 samples, 0.02%)</title><rect x="399.7" y="133" width="0.3" height="15.0" fill="rgb(214,5,15)" rx="2" ry="2" />
<text x="402.71" y="143.5" ></text>
</g>
<g >
<title>asm_common_interrupt (16,227,133 samples, 0.08%)</title><rect x="834.6" y="1989" width="0.9" height="15.0" fill="rgb(207,142,31)" rx="2" ry="2" />
<text x="837.62" y="1999.5" ></text>
</g>
<g >
<title>ip_list_rcv (3,007,722 samples, 0.01%)</title><rect x="550.5" y="1861" width="0.1" height="15.0" fill="rgb(251,136,8)" rx="2" ry="2" />
<text x="553.47" y="1871.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (2,516,867 samples, 0.01%)</title><rect x="1169.5" y="1525" width="0.2" height="15.0" fill="rgb(223,212,43)" rx="2" ry="2" />
<text x="1172.54" y="1535.5" ></text>
</g>
<g >
<title>sch_direct_xmit (4,061,864 samples, 0.02%)</title><rect x="1132.1" y="1525" width="0.2" height="15.0" fill="rgb(233,134,52)" rx="2" ry="2" />
<text x="1135.12" y="1535.5" ></text>
</g>
<g >
<title>net_rx_action (2,254,864 samples, 0.01%)</title><rect x="829.6" y="1829" width="0.1" height="15.0" fill="rgb(237,158,8)" rx="2" ry="2" />
<text x="832.59" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (12,156,691 samples, 0.06%)</title><rect x="15.9" y="2053" width="0.7" height="15.0" fill="rgb(227,173,30)" rx="2" ry="2" />
<text x="18.90" y="2063.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,169,062 samples, 0.03%)</title><rect x="962.7" y="2005" width="0.3" height="15.0" fill="rgb(247,212,4)" rx="2" ry="2" />
<text x="965.67" y="2015.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (1,829,918 samples, 0.01%)</title><rect x="550.8" y="1669" width="0.1" height="15.0" fill="rgb(227,178,38)" rx="2" ry="2" />
<text x="553.78" y="1679.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,246,339 samples, 0.01%)</title><rect x="887.8" y="1877" width="0.1" height="15.0" fill="rgb(212,168,27)" rx="2" ry="2" />
<text x="890.76" y="1887.5" ></text>
</g>
<g >
<title>common_interrupt (3,044,402 samples, 0.01%)</title><rect x="564.2" y="1989" width="0.2" height="15.0" fill="rgb(246,44,50)" rx="2" ry="2" />
<text x="567.23" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1269" width="0.3" height="15.0" fill="rgb(221,228,29)" rx="2" ry="2" />
<text x="23.41" y="1279.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,283,377 samples, 0.02%)</title><rect x="401.5" y="245" width="0.2" height="15.0" fill="rgb(215,58,52)" rx="2" ry="2" />
<text x="404.52" y="255.5" ></text>
</g>
<g >
<title>[unknown] (166,968,735 samples, 0.78%)</title><rect x="393.3" y="1861" width="9.2" height="15.0" fill="rgb(215,216,51)" rx="2" ry="2" />
<text x="396.32" y="1871.5" ></text>
</g>
<g >
<title>common_interrupt (3,068,984 samples, 0.01%)</title><rect x="583.3" y="1877" width="0.2" height="15.0" fill="rgb(252,111,36)" rx="2" ry="2" />
<text x="586.32" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (10,660,317 samples, 0.05%)</title><rect x="541.7" y="1685" width="0.6" height="15.0" fill="rgb(238,157,28)" rx="2" ry="2" />
<text x="544.70" y="1695.5" ></text>
</g>
<g >
<title>dequeue_skb (5,871,093 samples, 0.03%)</title><rect x="53.5" y="1941" width="0.3" height="15.0" fill="rgb(223,156,0)" rx="2" ry="2" />
<text x="56.45" y="1951.5" ></text>
</g>
<g >
<title>net_tx_action (11,622,307 samples, 0.05%)</title><rect x="53.5" y="1973" width="0.6" height="15.0" fill="rgb(230,163,44)" rx="2" ry="2" />
<text x="56.45" y="1983.5" ></text>
</g>
<g >
<title>nf_hook_slow (371,768,216 samples, 1.74%)</title><rect x="805.7" y="1829" width="20.5" height="15.0" fill="rgb(248,87,18)" rx="2" ry="2" />
<text x="808.68" y="1839.5" ></text>
</g>
<g >
<title>page_remove_file_rmap (2,704,021 samples, 0.01%)</title><rect x="973.2" y="1829" width="0.1" height="15.0" fill="rgb(205,43,7)" rx="2" ry="2" />
<text x="976.16" y="1839.5" ></text>
</g>
<g >
<title>tun_chr_write_iter (3,948,752,593 samples, 18.44%)</title><rect x="612.4" y="1941" width="217.7" height="15.0" fill="rgb(251,124,27)" rx="2" ry="2" />
<text x="615.45" y="1951.5" >tun_chr_write_iter</text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (2,231,300 samples, 0.01%)</title><rect x="1112.2" y="1781" width="0.1" height="15.0" fill="rgb(230,114,10)" rx="2" ry="2" />
<text x="1115.20" y="1791.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (2,713,040 samples, 0.01%)</title><rect x="1101.8" y="1717" width="0.1" height="15.0" fill="rgb(222,214,39)" rx="2" ry="2" />
<text x="1104.78" y="1727.5" ></text>
</g>
<g >
<title>ipv6_gro_receive (20,379,326 samples, 0.10%)</title><rect x="499.9" y="1861" width="1.1" height="15.0" fill="rgb(250,59,30)" rx="2" ry="2" />
<text x="502.86" y="1871.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (2,319,891 samples, 0.01%)</title><rect x="958.7" y="1845" width="0.1" height="15.0" fill="rgb(229,192,35)" rx="2" ry="2" />
<text x="961.72" y="1855.5" ></text>
</g>
<g >
<title>do_wp_page (5,018,633 samples, 0.02%)</title><rect x="966.1" y="1893" width="0.3" height="15.0" fill="rgb(208,77,54)" rx="2" ry="2" />
<text x="969.12" y="1903.5" ></text>
</g>
<g >
<title>add_interrupt_randomness (2,258,635 samples, 0.01%)</title><rect x="1119.8" y="1797" width="0.2" height="15.0" fill="rgb(244,61,30)" rx="2" ry="2" />
<text x="1122.84" y="1807.5" ></text>
</g>
<g >
<title>squashfs_read_data (43,702,984 samples, 0.20%)</title><rect x="933.7" y="1717" width="2.5" height="15.0" fill="rgb(233,62,36)" rx="2" ry="2" />
<text x="936.75" y="1727.5" ></text>
</g>
<g >
<title>[snapd] (29,662,903 samples, 0.14%)</title><rect x="973.7" y="1877" width="1.7" height="15.0" fill="rgb(224,42,4)" rx="2" ry="2" />
<text x="976.74" y="1887.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,074,185 samples, 0.01%)</title><rect x="905.6" y="1893" width="0.2" height="15.0" fill="rgb(214,217,30)" rx="2" ry="2" />
<text x="908.64" y="1903.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,000,922 samples, 0.01%)</title><rect x="601.1" y="1893" width="0.2" height="15.0" fill="rgb(236,92,10)" rx="2" ry="2" />
<text x="604.13" y="1903.5" ></text>
</g>
<g >
<title>rtl8169_features_check (1,918,329 samples, 0.01%)</title><rect x="524.2" y="1861" width="0.1" height="15.0" fill="rgb(208,187,38)" rx="2" ry="2" />
<text x="527.23" y="1871.5" ></text>
</g>
<g >
<title>sch_direct_xmit (4,648,293 samples, 0.02%)</title><rect x="1147.8" y="1781" width="0.2" height="15.0" fill="rgb(244,9,52)" rx="2" ry="2" />
<text x="1150.76" y="1791.5" ></text>
</g>
<g >
<title>__x64_sys_write (2,249,598 samples, 0.01%)</title><rect x="860.0" y="1989" width="0.1" height="15.0" fill="rgb(225,193,34)" rx="2" ry="2" />
<text x="862.98" y="1999.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1413" width="0.5" height="15.0" fill="rgb(209,217,15)" rx="2" ry="2" />
<text x="18.42" y="1423.5" ></text>
</g>
<g >
<title>ip_rcv (2,297,904 samples, 0.01%)</title><rect x="625.6" y="1701" width="0.2" height="15.0" fill="rgb(209,121,10)" rx="2" ry="2" />
<text x="628.63" y="1711.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (4,922,382 samples, 0.02%)</title><rect x="586.0" y="1909" width="0.3" height="15.0" fill="rgb(243,213,2)" rx="2" ry="2" />
<text x="589.01" y="1919.5" ></text>
</g>
<g >
<title>dequeue_skb (3,770,751 samples, 0.02%)</title><rect x="541.1" y="1685" width="0.2" height="15.0" fill="rgb(254,166,51)" rx="2" ry="2" />
<text x="544.13" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (2,523,372 samples, 0.01%)</title><rect x="47.6" y="2037" width="0.1" height="15.0" fill="rgb(209,5,18)" rx="2" ry="2" />
<text x="50.59" y="2047.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,914,566 samples, 0.01%)</title><rect x="958.4" y="1861" width="0.1" height="15.0" fill="rgb(206,24,32)" rx="2" ry="2" />
<text x="961.38" y="1871.5" ></text>
</g>
<g >
<title>fib4_rule_action (4,098,036 samples, 0.02%)</title><rect x="1002.0" y="1653" width="0.2" height="15.0" fill="rgb(245,77,37)" rx="2" ry="2" />
<text x="1005.02" y="1663.5" ></text>
</g>
<g >
<title>nf_hook_slow (6,456,273 samples, 0.03%)</title><rect x="407.5" y="1813" width="0.3" height="15.0" fill="rgb(241,141,46)" rx="2" ry="2" />
<text x="410.49" y="1823.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (3,057,786 samples, 0.01%)</title><rect x="440.6" y="1781" width="0.2" height="15.0" fill="rgb(211,211,26)" rx="2" ry="2" />
<text x="443.62" y="1791.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (7,483,068 samples, 0.03%)</title><rect x="1040.5" y="1525" width="0.4" height="15.0" fill="rgb(217,62,40)" rx="2" ry="2" />
<text x="1043.53" y="1535.5" ></text>
</g>
<g >
<title>ip_output (13,714,973 samples, 0.06%)</title><rect x="435.0" y="1813" width="0.7" height="15.0" fill="rgb(226,208,30)" rx="2" ry="2" />
<text x="437.98" y="1823.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,277,912 samples, 0.02%)</title><rect x="870.8" y="2037" width="0.3" height="15.0" fill="rgb(220,83,46)" rx="2" ry="2" />
<text x="873.84" y="2047.5" ></text>
</g>
<g >
<title>[snap-exec] (10,004,783 samples, 0.05%)</title><rect x="874.0" y="1701" width="0.5" height="15.0" fill="rgb(206,80,37)" rx="2" ry="2" />
<text x="876.99" y="1711.5" ></text>
</g>
<g >
<title>__fib_validate_source (5,668,308 samples, 0.03%)</title><rect x="538.0" y="1781" width="0.4" height="15.0" fill="rgb(247,197,5)" rx="2" ry="2" />
<text x="541.04" y="1791.5" ></text>
</g>
<g >
<title>getname_flags (3,092,853 samples, 0.01%)</title><rect x="69.1" y="1941" width="0.2" height="15.0" fill="rgb(246,165,12)" rx="2" ry="2" />
<text x="72.12" y="1951.5" ></text>
</g>
<g >
<title>napi_complete_done (2,281,568 samples, 0.01%)</title><rect x="401.4" y="165" width="0.1" height="15.0" fill="rgb(249,171,22)" rx="2" ry="2" />
<text x="404.39" y="175.5" ></text>
</g>
<g >
<title>ip4ip6_gro_receive (3,802,148 samples, 0.02%)</title><rect x="419.0" y="1813" width="0.2" height="15.0" fill="rgb(245,153,22)" rx="2" ry="2" />
<text x="422.00" y="1823.5" ></text>
</g>
<g >
<title>dst_cache_per_cpu_get (11,041,488 samples, 0.05%)</title><rect x="715.1" y="1589" width="0.6" height="15.0" fill="rgb(251,132,13)" rx="2" ry="2" />
<text x="718.11" y="1599.5" ></text>
</g>
<g >
<title>search_binary_handler (1,901,184 samples, 0.01%)</title><rect x="862.6" y="1925" width="0.1" height="15.0" fill="rgb(250,194,28)" rx="2" ry="2" />
<text x="865.57" y="1935.5" ></text>
</g>
<g >
<title>[snap] (8,352,756 samples, 0.04%)</title><rect x="883.8" y="69" width="0.4" height="15.0" fill="rgb(227,141,36)" rx="2" ry="2" />
<text x="886.77" y="79.5" ></text>
</g>
<g >
<title>ip_route_input_noref (2,567,157 samples, 0.01%)</title><rect x="56.8" y="1813" width="0.1" height="15.0" fill="rgb(207,88,48)" rx="2" ry="2" />
<text x="59.79" y="1823.5" ></text>
</g>
<g >
<title>__qdisc_run (68,750,826 samples, 0.32%)</title><rect x="749.4" y="1669" width="3.8" height="15.0" fill="rgb(236,67,18)" rx="2" ry="2" />
<text x="752.36" y="1679.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (25,364,860 samples, 0.12%)</title><rect x="959.8" y="1989" width="1.4" height="15.0" fill="rgb(227,135,47)" rx="2" ry="2" />
<text x="962.76" y="1999.5" ></text>
</g>
<g >
<title>irq_exit_rcu (19,999,392 samples, 0.09%)</title><rect x="1169.4" y="1845" width="1.1" height="15.0" fill="rgb(237,103,13)" rx="2" ry="2" />
<text x="1172.44" y="1855.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (4,922,168 samples, 0.02%)</title><rect x="452.7" y="1861" width="0.3" height="15.0" fill="rgb(214,27,20)" rx="2" ry="2" />
<text x="455.68" y="1871.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,044,268 samples, 0.01%)</title><rect x="626.1" y="1765" width="0.1" height="15.0" fill="rgb(240,5,53)" rx="2" ry="2" />
<text x="629.07" y="1775.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (4,529,980 samples, 0.02%)</title><rect x="668.8" y="1685" width="0.2" height="15.0" fill="rgb(233,185,52)" rx="2" ry="2" />
<text x="671.77" y="1695.5" ></text>
</g>
<g >
<title>strncpy_from_user (1,932,232 samples, 0.01%)</title><rect x="970.2" y="1909" width="0.1" height="15.0" fill="rgb(245,15,47)" rx="2" ry="2" />
<text x="973.23" y="1919.5" ></text>
</g>
<g >
<title>wake_up_new_task (4,247,905 samples, 0.02%)</title><rect x="27.0" y="1957" width="0.3" height="15.0" fill="rgb(233,78,35)" rx="2" ry="2" />
<text x="30.03" y="1967.5" ></text>
</g>
<g >
<title>kernel_clone (3,762,358 samples, 0.02%)</title><rect x="942.4" y="1973" width="0.2" height="15.0" fill="rgb(239,30,21)" rx="2" ry="2" />
<text x="945.41" y="1983.5" ></text>
</g>
<g >
<title>ext4_buffered_write_iter (72,171,478 samples, 0.34%)</title><rect x="72.3" y="1813" width="4.0" height="15.0" fill="rgb(213,179,16)" rx="2" ry="2" />
<text x="75.29" y="1823.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (14,897,802 samples, 0.07%)</title><rect x="479.7" y="1637" width="0.8" height="15.0" fill="rgb(253,181,7)" rx="2" ry="2" />
<text x="482.65" y="1647.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (3,338,239 samples, 0.02%)</title><rect x="1151.2" y="1685" width="0.2" height="15.0" fill="rgb(231,106,14)" rx="2" ry="2" />
<text x="1154.18" y="1695.5" ></text>
</g>
<g >
<title>common_interrupt (2,622,810 samples, 0.01%)</title><rect x="627.7" y="1877" width="0.1" height="15.0" fill="rgb(248,61,31)" rx="2" ry="2" />
<text x="630.69" y="1887.5" ></text>
</g>
<g >
<title>napi_gro_receive (2,225,472 samples, 0.01%)</title><rect x="1151.7" y="1749" width="0.1" height="15.0" fill="rgb(241,175,51)" rx="2" ry="2" />
<text x="1154.66" y="1759.5" ></text>
</g>
<g >
<title>__fget_files (14,774,093 samples, 0.07%)</title><rect x="604.9" y="1941" width="0.8" height="15.0" fill="rgb(233,118,15)" rx="2" ry="2" />
<text x="607.87" y="1951.5" ></text>
</g>
<g >
<title>new_sync_write (3,973,615,024 samples, 18.56%)</title><rect x="611.1" y="1957" width="219.0" height="15.0" fill="rgb(216,125,19)" rx="2" ry="2" />
<text x="614.09" y="1967.5" >new_sync_write</text>
</g>
<g >
<title>neigh_hh_output (2,888,212 samples, 0.01%)</title><rect x="501.9" y="1701" width="0.1" height="15.0" fill="rgb(244,86,36)" rx="2" ry="2" />
<text x="504.87" y="1711.5" ></text>
</g>
<g >
<title>common_interrupt (1,871,910 samples, 0.01%)</title><rect x="890.6" y="1653" width="0.1" height="15.0" fill="rgb(229,165,2)" rx="2" ry="2" />
<text x="893.59" y="1663.5" ></text>
</g>
<g >
<title>rtl_rx (8,499,056 samples, 0.04%)</title><rect x="515.4" y="1909" width="0.5" height="15.0" fill="rgb(211,209,5)" rx="2" ry="2" />
<text x="518.39" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (2,970,736 samples, 0.01%)</title><rect x="57.5" y="1637" width="0.2" height="15.0" fill="rgb(234,196,9)" rx="2" ry="2" />
<text x="60.51" y="1647.5" ></text>
</g>
<g >
<title>__alloc_file (2,310,713 samples, 0.01%)</title><rect x="866.6" y="1909" width="0.1" height="15.0" fill="rgb(222,35,25)" rx="2" ry="2" />
<text x="869.60" y="1919.5" ></text>
</g>
<g >
<title>packet_rcv (3,497,852 samples, 0.02%)</title><rect x="1153.6" y="1717" width="0.2" height="15.0" fill="rgb(243,60,5)" rx="2" ry="2" />
<text x="1156.58" y="1727.5" ></text>
</g>
<g >
<title>filemap_map_pages (2,299,094 samples, 0.01%)</title><rect x="897.3" y="1829" width="0.1" height="15.0" fill="rgb(243,171,44)" rx="2" ry="2" />
<text x="900.28" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1253" width="0.3" height="15.0" fill="rgb(241,77,40)" rx="2" ry="2" />
<text x="23.41" y="1263.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,270,037 samples, 0.01%)</title><rect x="593.9" y="1685" width="0.2" height="15.0" fill="rgb(219,51,41)" rx="2" ry="2" />
<text x="596.95" y="1695.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (6,630,930 samples, 0.03%)</title><rect x="550.6" y="1861" width="0.4" height="15.0" fill="rgb(211,189,34)" rx="2" ry="2" />
<text x="553.64" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (157,040,480 samples, 0.73%)</title><rect x="393.5" y="405" width="8.6" height="15.0" fill="rgb(224,117,42)" rx="2" ry="2" />
<text x="396.46" y="415.5" ></text>
</g>
<g >
<title>neigh_hh_output (2,841,498 samples, 0.01%)</title><rect x="1150.8" y="1605" width="0.2" height="15.0" fill="rgb(209,50,39)" rx="2" ry="2" />
<text x="1153.80" y="1615.5" ></text>
</g>
<g >
<title>ip6_forward (2,401,224 samples, 0.01%)</title><rect x="1170.0" y="1685" width="0.1" height="15.0" fill="rgb(207,220,12)" rx="2" ry="2" />
<text x="1172.96" y="1695.5" ></text>
</g>
<g >
<title>ipv6_rcv (95,702,041 samples, 0.45%)</title><rect x="438.5" y="1829" width="5.3" height="15.0" fill="rgb(244,29,4)" rx="2" ry="2" />
<text x="441.52" y="1839.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (2,645,107 samples, 0.01%)</title><rect x="860.8" y="1941" width="0.2" height="15.0" fill="rgb(215,24,48)" rx="2" ry="2" />
<text x="863.81" y="1951.5" ></text>
</g>
<g >
<title>g_main_context_check (2,178,748 samples, 0.01%)</title><rect x="48.4" y="2037" width="0.1" height="15.0" fill="rgb(241,177,24)" rx="2" ry="2" />
<text x="51.39" y="2047.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1397" width="0.3" height="15.0" fill="rgb(245,65,31)" rx="2" ry="2" />
<text x="897.70" y="1407.5" ></text>
</g>
<g >
<title>[unknown] (14,294,091 samples, 0.07%)</title><rect x="1127.2" y="1669" width="0.8" height="15.0" fill="rgb(224,91,22)" rx="2" ry="2" />
<text x="1130.18" y="1679.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (10,045,569 samples, 0.05%)</title><rect x="55.9" y="1877" width="0.5" height="15.0" fill="rgb(219,69,0)" rx="2" ry="2" />
<text x="58.85" y="1887.5" ></text>
</g>
<g >
<title>fast_mix (2,616,795 samples, 0.01%)</title><rect x="461.7" y="1941" width="0.1" height="15.0" fill="rgb(245,76,16)" rx="2" ry="2" />
<text x="464.70" y="1951.5" ></text>
</g>
<g >
<title>fib_rules_lookup (15,613,300 samples, 0.07%)</title><rect x="414.8" y="1749" width="0.9" height="15.0" fill="rgb(230,177,15)" rx="2" ry="2" />
<text x="417.85" y="1759.5" ></text>
</g>
<g >
<title>__x64_sys_poll (1,901,995 samples, 0.01%)</title><rect x="1182.8" y="1989" width="0.1" height="15.0" fill="rgb(212,151,44)" rx="2" ry="2" />
<text x="1185.78" y="1999.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (4,216,827 samples, 0.02%)</title><rect x="588.3" y="1749" width="0.2" height="15.0" fill="rgb(220,204,13)" rx="2" ry="2" />
<text x="591.25" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (17,969,862 samples, 0.08%)</title><rect x="450.9" y="1893" width="1.0" height="15.0" fill="rgb(225,112,27)" rx="2" ry="2" />
<text x="453.93" y="1903.5" ></text>
</g>
<g >
<title>create_new_namespaces (12,531,450 samples, 0.06%)</title><rect x="864.3" y="1941" width="0.7" height="15.0" fill="rgb(220,199,40)" rx="2" ry="2" />
<text x="867.31" y="1951.5" ></text>
</g>
<g >
<title>ln (80,124,879 samples, 0.37%)</title><rect x="65.3" y="2069" width="4.4" height="15.0" fill="rgb(212,105,39)" rx="2" ry="2" />
<text x="68.30" y="2079.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (26,256,269 samples, 0.12%)</title><rect x="560.1" y="1909" width="1.4" height="15.0" fill="rgb(217,190,43)" rx="2" ry="2" />
<text x="563.07" y="1919.5" ></text>
</g>
<g >
<title>fib4_rule_action (2,591,480 samples, 0.01%)</title><rect x="785.1" y="1749" width="0.2" height="15.0" fill="rgb(247,7,20)" rx="2" ry="2" />
<text x="788.12" y="1759.5" ></text>
</g>
<g >
<title>__napi_poll (1,909,384 samples, 0.01%)</title><rect x="598.1" y="1749" width="0.1" height="15.0" fill="rgb(251,163,48)" rx="2" ry="2" />
<text x="601.10" y="1759.5" ></text>
</g>
<g >
<title>irq_enter_rcu (2,304,737 samples, 0.01%)</title><rect x="977.3" y="2053" width="0.1" height="15.0" fill="rgb(211,12,34)" rx="2" ry="2" />
<text x="980.29" y="2063.5" ></text>
</g>
<g >
<title>sch_direct_xmit (3,034,209 samples, 0.01%)</title><rect x="439.3" y="1653" width="0.2" height="15.0" fill="rgb(245,114,14)" rx="2" ry="2" />
<text x="442.29" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (17,427,636 samples, 0.08%)</title><rect x="546.2" y="1813" width="0.9" height="15.0" fill="rgb(224,181,32)" rx="2" ry="2" />
<text x="549.15" y="1823.5" ></text>
</g>
<g >
<title>error_return (2,303,960 samples, 0.01%)</title><rect x="430.9" y="1989" width="0.1" height="15.0" fill="rgb(245,161,50)" rx="2" ry="2" />
<text x="433.85" y="1999.5" ></text>
</g>
<g >
<title>runtime.goexit.abi0 (27,726,123 samples, 0.13%)</title><rect x="1178.6" y="2053" width="1.6" height="15.0" fill="rgb(207,64,21)" rx="2" ry="2" />
<text x="1181.63" y="2063.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (2,961,156 samples, 0.01%)</title><rect x="941.0" y="1957" width="0.2" height="15.0" fill="rgb(229,89,48)" rx="2" ry="2" />
<text x="944.03" y="1967.5" ></text>
</g>
<g >
<title>irq_exit_rcu (13,970,674 samples, 0.07%)</title><rect x="834.7" y="1957" width="0.8" height="15.0" fill="rgb(214,78,51)" rx="2" ry="2" />
<text x="837.75" y="1967.5" ></text>
</g>
<g >
<title>rtl8169_poll (4,567,631 samples, 0.02%)</title><rect x="578.0" y="1765" width="0.3" height="15.0" fill="rgb(240,180,40)" rx="2" ry="2" />
<text x="581.05" y="1775.5" ></text>
</g>
<g >
<title>[snapctl] (2,308,291 samples, 0.01%)</title><rect x="946.1" y="1621" width="0.1" height="15.0" fill="rgb(227,137,23)" rx="2" ry="2" />
<text x="949.10" y="1631.5" ></text>
</g>
<g >
<title>csum_partial (5,354,406 samples, 0.03%)</title><rect x="686.8" y="1669" width="0.3" height="15.0" fill="rgb(206,29,38)" rx="2" ry="2" />
<text x="689.78" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (2,053,199 samples, 0.01%)</title><rect x="1100.1" y="1509" width="0.1" height="15.0" fill="rgb(245,140,47)" rx="2" ry="2" />
<text x="1103.11" y="1519.5" ></text>
</g>
<g >
<title>__d_lookup_rcu (2,306,766 samples, 0.01%)</title><rect x="841.8" y="1861" width="0.2" height="15.0" fill="rgb(232,159,49)" rx="2" ry="2" />
<text x="844.84" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1909" width="0.3" height="15.0" fill="rgb(253,38,2)" rx="2" ry="2" />
<text x="23.41" y="1919.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,861,710 samples, 0.01%)</title><rect x="572.5" y="1925" width="0.1" height="15.0" fill="rgb(207,103,15)" rx="2" ry="2" />
<text x="575.54" y="1935.5" ></text>
</g>
<g >
<title>ksize (3,814,788 samples, 0.02%)</title><rect x="669.0" y="1685" width="0.3" height="15.0" fill="rgb(214,171,45)" rx="2" ry="2" />
<text x="672.04" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (36,305,518 samples, 0.17%)</title><rect x="67.4" y="2053" width="2.0" height="15.0" fill="rgb(231,92,44)" rx="2" ry="2" />
<text x="70.42" y="2063.5" ></text>
</g>
<g >
<title>fib6_rule_suppress (2,599,102 samples, 0.01%)</title><rect x="674.2" y="1669" width="0.2" height="15.0" fill="rgb(206,177,40)" rx="2" ry="2" />
<text x="677.23" y="1679.5" ></text>
</g>
<g >
<title>do_sys_openat2 (4,239,187 samples, 0.02%)</title><rect x="66.6" y="1957" width="0.2" height="15.0" fill="rgb(211,189,27)" rx="2" ry="2" />
<text x="69.61" y="1967.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (2,196,670 samples, 0.01%)</title><rect x="584.4" y="1813" width="0.2" height="15.0" fill="rgb(205,146,25)" rx="2" ry="2" />
<text x="587.44" y="1823.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,923,484 samples, 0.01%)</title><rect x="869.9" y="2037" width="0.1" height="15.0" fill="rgb(244,133,39)" rx="2" ry="2" />
<text x="872.92" y="2047.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (3,554,617 samples, 0.02%)</title><rect x="1126.6" y="1653" width="0.2" height="15.0" fill="rgb(209,196,0)" rx="2" ry="2" />
<text x="1129.62" y="1663.5" ></text>
</g>
<g >
<title>_raw_spin_lock (6,683,428 samples, 0.03%)</title><rect x="722.3" y="1445" width="0.4" height="15.0" fill="rgb(217,120,43)" rx="2" ry="2" />
<text x="725.30" y="1455.5" ></text>
</g>
<g >
<title>exit_mm (2,704,472 samples, 0.01%)</title><rect x="859.7" y="1973" width="0.2" height="15.0" fill="rgb(213,215,21)" rx="2" ry="2" />
<text x="862.71" y="1983.5" ></text>
</g>
<g >
<title>__qdisc_run (9,908,601 samples, 0.05%)</title><rect x="1147.5" y="1797" width="0.5" height="15.0" fill="rgb(228,137,40)" rx="2" ry="2" />
<text x="1150.47" y="1807.5" ></text>
</g>
<g >
<title>neigh_hh_output (2,014,257 samples, 0.01%)</title><rect x="56.1" y="1733" width="0.1" height="15.0" fill="rgb(205,216,30)" rx="2" ry="2" />
<text x="59.07" y="1743.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (21,505,467 samples, 0.10%)</title><rect x="501.1" y="1861" width="1.2" height="15.0" fill="rgb(213,185,7)" rx="2" ry="2" />
<text x="504.06" y="1871.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,193,157 samples, 0.01%)</title><rect x="568.8" y="1829" width="0.1" height="15.0" fill="rgb(226,96,4)" rx="2" ry="2" />
<text x="571.79" y="1839.5" ></text>
</g>
<g >
<title>do_mmap (2,301,653 samples, 0.01%)</title><rect x="941.8" y="1957" width="0.1" height="15.0" fill="rgb(216,87,47)" rx="2" ry="2" />
<text x="944.78" y="1967.5" ></text>
</g>
<g >
<title>nf_hook_slow (33,352,871 samples, 0.16%)</title><rect x="1032.3" y="1717" width="1.8" height="15.0" fill="rgb(239,197,19)" rx="2" ry="2" />
<text x="1035.30" y="1727.5" ></text>
</g>
<g >
<title>sdhci_execute_tuning (2,836,473 samples, 0.01%)</title><rect x="63.8" y="1765" width="0.1" height="15.0" fill="rgb(207,103,21)" rx="2" ry="2" />
<text x="66.78" y="1775.5" ></text>
</g>
<g >
<title>tick_nohz_get_sleep_length (16,879,248 samples, 0.08%)</title><rect x="1167.6" y="1877" width="0.9" height="15.0" fill="rgb(227,141,6)" rx="2" ry="2" />
<text x="1170.61" y="1887.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (3,919,961 samples, 0.02%)</title><rect x="1062.7" y="1733" width="0.2" height="15.0" fill="rgb(241,169,16)" rx="2" ry="2" />
<text x="1065.70" y="1743.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (1,874,292 samples, 0.01%)</title><rect x="609.9" y="1781" width="0.1" height="15.0" fill="rgb(247,29,20)" rx="2" ry="2" />
<text x="612.93" y="1791.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,887,183 samples, 0.01%)</title><rect x="400.5" y="117" width="0.1" height="15.0" fill="rgb(244,52,19)" rx="2" ry="2" />
<text x="403.51" y="127.5" ></text>
</g>
<g >
<title>fib_table_lookup (2,299,982 samples, 0.01%)</title><rect x="408.2" y="1717" width="0.1" height="15.0" fill="rgb(216,177,7)" rx="2" ry="2" />
<text x="411.21" y="1727.5" ></text>
</g>
<g >
<title>dst_cache_get (11,807,444 samples, 0.06%)</title><rect x="715.1" y="1605" width="0.7" height="15.0" fill="rgb(222,72,48)" rx="2" ry="2" />
<text x="718.11" y="1615.5" ></text>
</g>
<g >
<title>ip6_finish_output (1,915,517 samples, 0.01%)</title><rect x="450.1" y="1781" width="0.1" height="15.0" fill="rgb(239,144,41)" rx="2" ry="2" />
<text x="453.14" y="1791.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (2,456,483 samples, 0.01%)</title><rect x="1112.2" y="1813" width="0.1" height="15.0" fill="rgb(216,145,6)" rx="2" ry="2" />
<text x="1115.20" y="1823.5" ></text>
</g>
<g >
<title>nf_hook_slow (15,911,002 samples, 0.07%)</title><rect x="442.9" y="1813" width="0.8" height="15.0" fill="rgb(229,209,21)" rx="2" ry="2" />
<text x="445.87" y="1823.5" ></text>
</g>
<g >
<title>common_interrupt (1,879,811 samples, 0.01%)</title><rect x="773.2" y="1733" width="0.1" height="15.0" fill="rgb(211,58,41)" rx="2" ry="2" />
<text x="776.18" y="1743.5" ></text>
</g>
<g >
<title>vfs_open (2,682,116 samples, 0.01%)</title><rect x="1174.8" y="1909" width="0.1" height="15.0" fill="rgb(213,80,2)" rx="2" ry="2" />
<text x="1177.77" y="1919.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (26,548,094 samples, 0.12%)</title><rect x="759.0" y="1701" width="1.5" height="15.0" fill="rgb(250,164,44)" rx="2" ry="2" />
<text x="762.02" y="1711.5" ></text>
</g>
<g >
<title>cake_enqueue (7,247,812 samples, 0.03%)</title><rect x="482.1" y="1669" width="0.4" height="15.0" fill="rgb(247,85,32)" rx="2" ry="2" />
<text x="485.10" y="1679.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (6,412,008 samples, 0.03%)</title><rect x="15.4" y="101" width="0.4" height="15.0" fill="rgb(246,187,14)" rx="2" ry="2" />
<text x="18.42" y="111.5" ></text>
</g>
<g >
<title>[unknown] (3,853,362 samples, 0.02%)</title><rect x="971.7" y="2005" width="0.2" height="15.0" fill="rgb(227,159,29)" rx="2" ry="2" />
<text x="974.67" y="2015.5" ></text>
</g>
<g >
<title>ip_forward (4,100,460 samples, 0.02%)</title><rect x="1169.5" y="1717" width="0.2" height="15.0" fill="rgb(248,2,8)" rx="2" ry="2" />
<text x="1172.48" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (4,955,879 samples, 0.02%)</title><rect x="1057.9" y="1829" width="0.3" height="15.0" fill="rgb(243,70,20)" rx="2" ry="2" />
<text x="1060.91" y="1839.5" ></text>
</g>
<g >
<title>ip_route_input_slow (57,367,479 samples, 0.27%)</title><rect x="1023.9" y="1685" width="3.1" height="15.0" fill="rgb(250,95,13)" rx="2" ry="2" />
<text x="1026.88" y="1695.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (2,244,422 samples, 0.01%)</title><rect x="890.6" y="1685" width="0.1" height="15.0" fill="rgb(244,94,39)" rx="2" ry="2" />
<text x="893.57" y="1695.5" ></text>
</g>
<g >
<title>napi_complete_done (2,990,403 samples, 0.01%)</title><rect x="571.1" y="1845" width="0.2" height="15.0" fill="rgb(232,113,5)" rx="2" ry="2" />
<text x="574.14" y="1855.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (1,914,566 samples, 0.01%)</title><rect x="958.4" y="1877" width="0.1" height="15.0" fill="rgb(227,190,7)" rx="2" ry="2" />
<text x="961.38" y="1887.5" ></text>
</g>
<g >
<title>ip_forward_finish (2,244,951 samples, 0.01%)</title><rect x="778.6" y="1829" width="0.1" height="15.0" fill="rgb(224,99,51)" rx="2" ry="2" />
<text x="781.56" y="1839.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,467,755 samples, 0.02%)</title><rect x="933.4" y="1461" width="0.2" height="15.0" fill="rgb(248,184,41)" rx="2" ry="2" />
<text x="936.41" y="1471.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (2,290,130 samples, 0.01%)</title><rect x="591.9" y="1669" width="0.1" height="15.0" fill="rgb(247,78,0)" rx="2" ry="2" />
<text x="594.89" y="1679.5" ></text>
</g>
<g >
<title>ip_route_input_noref (4,342,227 samples, 0.02%)</title><rect x="512.7" y="1845" width="0.3" height="15.0" fill="rgb(234,188,12)" rx="2" ry="2" />
<text x="515.74" y="1855.5" ></text>
</g>
<g >
<title>ipv6_rcv (2,193,157 samples, 0.01%)</title><rect x="568.8" y="1797" width="0.1" height="15.0" fill="rgb(206,112,49)" rx="2" ry="2" />
<text x="571.79" y="1807.5" ></text>
</g>
<g >
<title>ip_skb_dst_mtu (7,590,436 samples, 0.04%)</title><rect x="760.5" y="1749" width="0.4" height="15.0" fill="rgb(206,66,54)" rx="2" ry="2" />
<text x="763.53" y="1759.5" ></text>
</g>
<g >
<title>update_curr (2,264,357 samples, 0.01%)</title><rect x="54.8" y="1925" width="0.1" height="15.0" fill="rgb(229,94,28)" rx="2" ry="2" />
<text x="57.77" y="1935.5" ></text>
</g>
<g >
<title>copy_page_range (7,319,529 samples, 0.03%)</title><rect x="25.9" y="1909" width="0.4" height="15.0" fill="rgb(241,1,48)" rx="2" ry="2" />
<text x="28.93" y="1919.5" ></text>
</g>
<g >
<title>neigh_connected_output (12,179,461 samples, 0.06%)</title><rect x="1003.2" y="1637" width="0.7" height="15.0" fill="rgb(225,74,47)" rx="2" ry="2" />
<text x="1006.20" y="1647.5" ></text>
</g>
<g >
<title>common_interrupt (3,801,232 samples, 0.02%)</title><rect x="632.6" y="1845" width="0.2" height="15.0" fill="rgb(237,6,40)" rx="2" ry="2" />
<text x="635.63" y="1855.5" ></text>
</g>
<g >
<title>[snapctl] (33,661,186 samples, 0.16%)</title><rect x="945.1" y="1925" width="1.9" height="15.0" fill="rgb(240,174,44)" rx="2" ry="2" />
<text x="948.15" y="1935.5" ></text>
</g>
<g >
<title>napi_complete_done (5,678,532 samples, 0.03%)</title><rect x="979.7" y="1861" width="0.4" height="15.0" fill="rgb(224,93,24)" rx="2" ry="2" />
<text x="982.74" y="1871.5" ></text>
</g>
<g >
<title>ipv6_rcv (225,575,139 samples, 1.05%)</title><rect x="1130.1" y="1701" width="12.5" height="15.0" fill="rgb(244,218,7)" rx="2" ry="2" />
<text x="1133.12" y="1711.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (2,095,927 samples, 0.01%)</title><rect x="57.8" y="1829" width="0.1" height="15.0" fill="rgb(209,35,23)" rx="2" ry="2" />
<text x="60.81" y="1839.5" ></text>
</g>
<g >
<title>[snap] (12,533,027 samples, 0.06%)</title><rect x="894.5" y="1685" width="0.7" height="15.0" fill="rgb(238,143,6)" rx="2" ry="2" />
<text x="897.47" y="1695.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (3,074,681 samples, 0.01%)</title><rect x="1186.4" y="1973" width="0.2" height="15.0" fill="rgb(205,158,18)" rx="2" ry="2" />
<text x="1189.38" y="1983.5" ></text>
</g>
<g >
<title>__napi_alloc_skb (2,187,309 samples, 0.01%)</title><rect x="52.9" y="1909" width="0.1" height="15.0" fill="rgb(205,191,2)" rx="2" ry="2" />
<text x="55.91" y="1919.5" ></text>
</g>
<g >
<title>net_rx_action (13,201,422 samples, 0.06%)</title><rect x="834.8" y="1925" width="0.7" height="15.0" fill="rgb(207,215,34)" rx="2" ry="2" />
<text x="837.77" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,317,045 samples, 0.01%)</title><rect x="1189.4" y="2021" width="0.1" height="15.0" fill="rgb(230,147,21)" rx="2" ry="2" />
<text x="1192.40" y="2031.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (4,518,006 samples, 0.02%)</title><rect x="837.1" y="1973" width="0.2" height="15.0" fill="rgb(210,100,44)" rx="2" ry="2" />
<text x="840.08" y="1983.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (2,927,874 samples, 0.01%)</title><rect x="1100.1" y="1557" width="0.1" height="15.0" fill="rgb(221,62,13)" rx="2" ry="2" />
<text x="1103.07" y="1567.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1077" width="0.5" height="15.0" fill="rgb(215,192,26)" rx="2" ry="2" />
<text x="18.42" y="1087.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (3,784,796 samples, 0.02%)</title><rect x="1042.8" y="1509" width="0.2" height="15.0" fill="rgb(222,122,29)" rx="2" ry="2" />
<text x="1045.80" y="1519.5" ></text>
</g>
<g >
<title>net_rx_action (2,803,261 samples, 0.01%)</title><rect x="1105.0" y="1877" width="0.2" height="15.0" fill="rgb(239,47,40)" rx="2" ry="2" />
<text x="1108.01" y="1887.5" ></text>
</g>
<g >
<title>aa_path_perm (2,688,421 samples, 0.01%)</title><rect x="35.6" y="1893" width="0.2" height="15.0" fill="rgb(250,10,43)" rx="2" ry="2" />
<text x="38.63" y="1903.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,309,045 samples, 0.01%)</title><rect x="16.7" y="1989" width="0.1" height="15.0" fill="rgb(246,96,32)" rx="2" ry="2" />
<text x="19.67" y="1999.5" ></text>
</g>
<g >
<title>ktime_get (2,668,397 samples, 0.01%)</title><rect x="724.4" y="1413" width="0.1" height="15.0" fill="rgb(248,56,19)" rx="2" ry="2" />
<text x="727.38" y="1423.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (2,621,644 samples, 0.01%)</title><rect x="692.0" y="1733" width="0.1" height="15.0" fill="rgb(231,36,2)" rx="2" ry="2" />
<text x="694.96" y="1743.5" ></text>
</g>
<g >
<title>tick_program_event (2,293,153 samples, 0.01%)</title><rect x="692.2" y="1733" width="0.2" height="15.0" fill="rgb(232,211,10)" rx="2" ry="2" />
<text x="695.23" y="1743.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,212,261 samples, 0.02%)</title><rect x="44.4" y="2005" width="0.2" height="15.0" fill="rgb(237,179,31)" rx="2" ry="2" />
<text x="47.45" y="2015.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (2,535,806 samples, 0.01%)</title><rect x="748.4" y="1717" width="0.1" height="15.0" fill="rgb(205,32,7)" rx="2" ry="2" />
<text x="751.40" y="1727.5" ></text>
</g>
<g >
<title>fib_rules_lookup (2,823,879 samples, 0.01%)</title><rect x="51.3" y="1797" width="0.2" height="15.0" fill="rgb(237,178,0)" rx="2" ry="2" />
<text x="54.34" y="1807.5" ></text>
</g>
<g >
<title>ipv6_rcv (3,438,641 samples, 0.02%)</title><rect x="592.0" y="1621" width="0.2" height="15.0" fill="rgb(220,225,29)" rx="2" ry="2" />
<text x="595.04" y="1631.5" ></text>
</g>
<g >
<title>common_interrupt (1,917,704 samples, 0.01%)</title><rect x="695.4" y="1733" width="0.1" height="15.0" fill="rgb(240,46,32)" rx="2" ry="2" />
<text x="698.42" y="1743.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (7,377,457 samples, 0.03%)</title><rect x="15.4" y="181" width="0.4" height="15.0" fill="rgb(241,214,24)" rx="2" ry="2" />
<text x="18.42" y="191.5" ></text>
</g>
<g >
<title>page_frag_alloc_align (7,660,043 samples, 0.04%)</title><rect x="499.0" y="1877" width="0.5" height="15.0" fill="rgb(238,220,9)" rx="2" ry="2" />
<text x="502.03" y="1887.5" ></text>
</g>
<g >
<title>nft_do_chain_ipv4 (2,273,636 samples, 0.01%)</title><rect x="407.7" y="1797" width="0.1" height="15.0" fill="rgb(206,171,13)" rx="2" ry="2" />
<text x="410.72" y="1807.5" ></text>
</g>
<g >
<title>nf_nat_ipv4_out (3,049,327 samples, 0.01%)</title><rect x="763.8" y="1765" width="0.2" height="15.0" fill="rgb(250,167,9)" rx="2" ry="2" />
<text x="766.80" y="1775.5" ></text>
</g>
<g >
<title>do_syscall_64 (26,902,674 samples, 0.13%)</title><rect x="959.8" y="2021" width="1.4" height="15.0" fill="rgb(226,4,29)" rx="2" ry="2" />
<text x="962.76" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (12,432,893 samples, 0.06%)</title><rect x="1124.3" y="1669" width="0.7" height="15.0" fill="rgb(209,189,7)" rx="2" ry="2" />
<text x="1127.30" y="1679.5" ></text>
</g>
<g >
<title>perf_mmap__push (76,301,415 samples, 0.36%)</title><rect x="72.1" y="1973" width="4.2" height="15.0" fill="rgb(252,1,26)" rx="2" ry="2" />
<text x="75.08" y="1983.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (1,939,452 samples, 0.01%)</title><rect x="851.6" y="1925" width="0.1" height="15.0" fill="rgb(231,32,47)" rx="2" ry="2" />
<text x="854.60" y="1935.5" ></text>
</g>
<g >
<title>pci_platform_power_transition (1,885,222 samples, 0.01%)</title><rect x="64.2" y="1733" width="0.1" height="15.0" fill="rgb(214,110,40)" rx="2" ry="2" />
<text x="67.17" y="1743.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (8,604,029 samples, 0.04%)</title><rect x="1112.9" y="1893" width="0.5" height="15.0" fill="rgb(249,50,38)" rx="2" ry="2" />
<text x="1115.92" y="1903.5" ></text>
</g>
<g >
<title>tun_net_xmit (3,426,938 samples, 0.02%)</title><rect x="536.1" y="1669" width="0.1" height="15.0" fill="rgb(209,145,18)" rx="2" ry="2" />
<text x="539.05" y="1679.5" ></text>
</g>
<g >
<title>fib_rules_lookup (2,644,424 samples, 0.01%)</title><rect x="472.0" y="1733" width="0.1" height="15.0" fill="rgb(224,50,42)" rx="2" ry="2" />
<text x="474.96" y="1743.5" ></text>
</g>
<g >
<title>mmput (4,121,002 samples, 0.02%)</title><rect x="870.9" y="1957" width="0.2" height="15.0" fill="rgb(249,215,15)" rx="2" ry="2" />
<text x="873.88" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="517" width="0.3" height="15.0" fill="rgb(209,159,39)" rx="2" ry="2" />
<text x="23.41" y="527.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (4,246,453 samples, 0.02%)</title><rect x="930.3" y="1413" width="0.3" height="15.0" fill="rgb(223,118,31)" rx="2" ry="2" />
<text x="933.34" y="1423.5" ></text>
</g>
<g >
<title>consume_skb (12,180,435 samples, 0.06%)</title><rect x="1142.8" y="1701" width="0.6" height="15.0" fill="rgb(238,52,26)" rx="2" ry="2" />
<text x="1145.77" y="1711.5" ></text>
</g>
<g >
<title>__qdisc_run (2,496,816 samples, 0.01%)</title><rect x="1170.7" y="1797" width="0.2" height="15.0" fill="rgb(237,72,8)" rx="2" ry="2" />
<text x="1173.75" y="1807.5" ></text>
</g>
<g >
<title>napi_gro_receive (7,354,425 samples, 0.03%)</title><rect x="958.7" y="1909" width="0.4" height="15.0" fill="rgb(254,78,1)" rx="2" ry="2" />
<text x="961.68" y="1919.5" ></text>
</g>
<g >
<title>[snap] (15,153,286 samples, 0.07%)</title><rect x="883.8" y="229" width="0.8" height="15.0" fill="rgb(209,161,5)" rx="2" ry="2" />
<text x="886.77" y="239.5" ></text>
</g>
<g >
<title>[unknown] (1,832,711 samples, 0.01%)</title><rect x="495.9" y="1749" width="0.1" height="15.0" fill="rgb(216,84,3)" rx="2" ry="2" />
<text x="498.86" y="1759.5" ></text>
</g>
<g >
<title>pskb_expand_head (4,955,312 samples, 0.02%)</title><rect x="440.6" y="1797" width="0.3" height="15.0" fill="rgb(210,42,9)" rx="2" ry="2" />
<text x="443.60" y="1807.5" ></text>
</g>
<g >
<title>[snap] (8,396,771 samples, 0.04%)</title><rect x="894.6" y="1621" width="0.5" height="15.0" fill="rgb(229,101,26)" rx="2" ry="2" />
<text x="897.62" y="1631.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (2,091,541 samples, 0.01%)</title><rect x="1043.9" y="1493" width="0.1" height="15.0" fill="rgb(224,125,54)" rx="2" ry="2" />
<text x="1046.88" y="1503.5" ></text>
</g>
<g >
<title>nf_hook_slow (6,475,999 samples, 0.03%)</title><rect x="412.8" y="1781" width="0.4" height="15.0" fill="rgb(206,150,26)" rx="2" ry="2" />
<text x="415.84" y="1791.5" ></text>
</g>
<g >
<title>next_uptodate_page (2,313,494 samples, 0.01%)</title><rect x="959.4" y="1893" width="0.1" height="15.0" fill="rgb(241,136,7)" rx="2" ry="2" />
<text x="962.38" y="1903.5" ></text>
</g>
<g >
<title>__entry_text_start (2,287,892 samples, 0.01%)</title><rect x="402.7" y="1989" width="0.1" height="15.0" fill="rgb(223,120,38)" rx="2" ry="2" />
<text x="405.69" y="1999.5" ></text>
</g>
<g >
<title>seq_path_root (4,241,183 samples, 0.02%)</title><rect x="867.7" y="1877" width="0.3" height="15.0" fill="rgb(226,116,43)" rx="2" ry="2" />
<text x="870.74" y="1887.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (3,863,636 samples, 0.02%)</title><rect x="416.9" y="1829" width="0.2" height="15.0" fill="rgb(244,196,24)" rx="2" ry="2" />
<text x="419.93" y="1839.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (1,929,390 samples, 0.01%)</title><rect x="926.7" y="1349" width="0.1" height="15.0" fill="rgb(235,214,0)" rx="2" ry="2" />
<text x="929.73" y="1359.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (5,791,770 samples, 0.03%)</title><rect x="926.6" y="1413" width="0.3" height="15.0" fill="rgb(208,149,48)" rx="2" ry="2" />
<text x="929.56" y="1423.5" ></text>
</g>
<g >
<title>[unknown] (4,213,890 samples, 0.02%)</title><rect x="47.3" y="2053" width="0.2" height="15.0" fill="rgb(221,46,41)" rx="2" ry="2" />
<text x="50.25" y="2063.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (3,065,455 samples, 0.01%)</title><rect x="1058.3" y="1813" width="0.2" height="15.0" fill="rgb(207,160,30)" rx="2" ry="2" />
<text x="1061.28" y="1823.5" ></text>
</g>
<g >
<title>__ipv6_chk_addr_and_flags (5,300,903 samples, 0.02%)</title><rect x="714.5" y="1573" width="0.3" height="15.0" fill="rgb(216,100,9)" rx="2" ry="2" />
<text x="717.46" y="1583.5" ></text>
</g>
<g >
<title>__ip6_finish_output (1,844,987 samples, 0.01%)</title><rect x="681.3" y="1637" width="0.1" height="15.0" fill="rgb(213,117,15)" rx="2" ry="2" />
<text x="684.26" y="1647.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,254,864 samples, 0.01%)</title><rect x="829.6" y="1893" width="0.1" height="15.0" fill="rgb(249,225,53)" rx="2" ry="2" />
<text x="832.59" y="1903.5" ></text>
</g>
<g >
<title>[snapd] (14,963,307 samples, 0.07%)</title><rect x="974.4" y="1749" width="0.8" height="15.0" fill="rgb(244,197,53)" rx="2" ry="2" />
<text x="977.38" y="1759.5" ></text>
</g>
<g >
<title>lzma_len (19,320,159 samples, 0.09%)</title><rect x="930.8" y="1573" width="1.1" height="15.0" fill="rgb(237,0,22)" rx="2" ry="2" />
<text x="933.81" y="1583.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (7,837,294 samples, 0.04%)</title><rect x="743.1" y="1413" width="0.4" height="15.0" fill="rgb(233,80,28)" rx="2" ry="2" />
<text x="746.10" y="1423.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (31,670,496 samples, 0.15%)</title><rect x="971.9" y="2021" width="1.7" height="15.0" fill="rgb(221,3,46)" rx="2" ry="2" />
<text x="974.88" y="2031.5" ></text>
</g>
<g >
<title>net_rx_action (2,208,681 samples, 0.01%)</title><rect x="598.8" y="1765" width="0.1" height="15.0" fill="rgb(233,211,10)" rx="2" ry="2" />
<text x="601.77" y="1775.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (3,847,956 samples, 0.02%)</title><rect x="16.7" y="2037" width="0.2" height="15.0" fill="rgb(241,221,53)" rx="2" ry="2" />
<text x="19.67" y="2047.5" ></text>
</g>
<g >
<title>nf_nat_inet_fn (1,900,391 samples, 0.01%)</title><rect x="680.8" y="1669" width="0.1" height="15.0" fill="rgb(219,132,29)" rx="2" ry="2" />
<text x="683.77" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (154,209,793 samples, 0.72%)</title><rect x="848.3" y="2053" width="8.5" height="15.0" fill="rgb(232,146,5)" rx="2" ry="2" />
<text x="851.33" y="2063.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (62,557,636 samples, 0.29%)</title><rect x="822.4" y="1813" width="3.4" height="15.0" fill="rgb(207,100,27)" rx="2" ry="2" />
<text x="825.39" y="1823.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (5,394,419 samples, 0.03%)</title><rect x="926.2" y="1445" width="0.2" height="15.0" fill="rgb(220,201,39)" rx="2" ry="2" />
<text x="929.15" y="1455.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (4,159,851 samples, 0.02%)</title><rect x="421.2" y="1845" width="0.3" height="15.0" fill="rgb(212,68,5)" rx="2" ry="2" />
<text x="424.23" y="1855.5" ></text>
</g>
<g >
<title>__siphash_unaligned (1,911,586 samples, 0.01%)</title><rect x="416.5" y="1733" width="0.1" height="15.0" fill="rgb(248,52,49)" rx="2" ry="2" />
<text x="419.45" y="1743.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10,240,489 samples, 0.05%)</title><rect x="684.3" y="1733" width="0.6" height="15.0" fill="rgb(241,27,42)" rx="2" ry="2" />
<text x="687.29" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (32,158,757 samples, 0.15%)</title><rect x="761.8" y="1765" width="1.7" height="15.0" fill="rgb(242,76,16)" rx="2" ry="2" />
<text x="764.76" y="1775.5" ></text>
</g>
<g >
<title>__fib_lookup (5,673,872 samples, 0.03%)</title><rect x="471.9" y="1749" width="0.3" height="15.0" fill="rgb(239,98,40)" rx="2" ry="2" />
<text x="474.86" y="1759.5" ></text>
</g>
<g >
<title>do_fault (3,848,248 samples, 0.02%)</title><rect x="24.3" y="1941" width="0.2" height="15.0" fill="rgb(251,98,0)" rx="2" ry="2" />
<text x="27.28" y="1951.5" ></text>
</g>
<g >
<title>do_group_exit (16,382,547 samples, 0.08%)</title><rect x="40.6" y="2005" width="0.9" height="15.0" fill="rgb(213,62,34)" rx="2" ry="2" />
<text x="43.60" y="2015.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,930,501 samples, 0.01%)</title><rect x="858.4" y="1973" width="0.1" height="15.0" fill="rgb(208,29,30)" rx="2" ry="2" />
<text x="861.37" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (4,513,936 samples, 0.02%)</title><rect x="441.3" y="1765" width="0.2" height="15.0" fill="rgb(237,229,40)" rx="2" ry="2" />
<text x="444.29" y="1775.5" ></text>
</g>
<g >
<title>do_idle (2,472,142,437 samples, 11.55%)</title><rect x="978.0" y="2005" width="136.3" height="15.0" fill="rgb(231,5,5)" rx="2" ry="2" />
<text x="981.02" y="2015.5" >do_idle</text>
</g>
<g >
<title>lzma_rep_match (2,693,556 samples, 0.01%)</title><rect x="956.6" y="1621" width="0.1" height="15.0" fill="rgb(223,128,6)" rx="2" ry="2" />
<text x="959.60" y="1631.5" ></text>
</g>
<g >
<title>exit_mmap (1,927,432 samples, 0.01%)</title><rect x="869.7" y="1845" width="0.1" height="15.0" fill="rgb(238,108,46)" rx="2" ry="2" />
<text x="872.71" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (6,840,034 samples, 0.03%)</title><rect x="437.1" y="1797" width="0.4" height="15.0" fill="rgb(242,194,31)" rx="2" ry="2" />
<text x="440.08" y="1807.5" ></text>
</g>
<g >
<title>ip4ip6_gro_receive (12,116,589 samples, 0.06%)</title><rect x="500.0" y="1845" width="0.7" height="15.0" fill="rgb(244,81,25)" rx="2" ry="2" />
<text x="502.99" y="1855.5" ></text>
</g>
<g >
<title>[snap] (17,810,051 samples, 0.08%)</title><rect x="883.8" y="357" width="0.9" height="15.0" fill="rgb(227,186,45)" rx="2" ry="2" />
<text x="886.75" y="367.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (20,295,539 samples, 0.09%)</title><rect x="939.9" y="1989" width="1.1" height="15.0" fill="rgb(227,0,41)" rx="2" ry="2" />
<text x="942.87" y="1999.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,843,292 samples, 0.01%)</title><rect x="980.1" y="1829" width="0.2" height="15.0" fill="rgb(226,207,33)" rx="2" ry="2" />
<text x="983.10" y="1839.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,913,765 samples, 0.01%)</title><rect x="567.9" y="1925" width="0.1" height="15.0" fill="rgb(227,50,4)" rx="2" ry="2" />
<text x="570.88" y="1935.5" ></text>
</g>
<g >
<title>napi_complete_done (1,855,480 samples, 0.01%)</title><rect x="586.2" y="1781" width="0.1" height="15.0" fill="rgb(229,106,34)" rx="2" ry="2" />
<text x="589.16" y="1791.5" ></text>
</g>
<g >
<title>sch_direct_xmit (2,405,800 samples, 0.01%)</title><rect x="58.4" y="1941" width="0.2" height="15.0" fill="rgb(211,8,23)" rx="2" ry="2" />
<text x="61.42" y="1951.5" ></text>
</g>
<g >
<title>handle_edge_irq (2,203,800 samples, 0.01%)</title><rect x="771.6" y="1717" width="0.1" height="15.0" fill="rgb(232,47,19)" rx="2" ry="2" />
<text x="774.61" y="1727.5" ></text>
</g>
<g >
<title>irq_exit_rcu (7,274,520 samples, 0.03%)</title><rect x="588.1" y="1861" width="0.4" height="15.0" fill="rgb(212,61,12)" rx="2" ry="2" />
<text x="591.15" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1237" width="0.3" height="15.0" fill="rgb(227,146,16)" rx="2" ry="2" />
<text x="23.41" y="1247.5" ></text>
</g>
<g >
<title>try_to_wake_up (8,334,815 samples, 0.04%)</title><rect x="1123.3" y="1413" width="0.4" height="15.0" fill="rgb(243,97,35)" rx="2" ry="2" />
<text x="1126.28" y="1423.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,918,840 samples, 0.01%)</title><rect x="583.4" y="1797" width="0.1" height="15.0" fill="rgb(221,89,0)" rx="2" ry="2" />
<text x="586.36" y="1807.5" ></text>
</g>
<g >
<title>[snap-seccomp] (3,067,994 samples, 0.01%)</title><rect x="877.5" y="1797" width="0.2" height="15.0" fill="rgb(219,143,49)" rx="2" ry="2" />
<text x="880.50" y="1807.5" ></text>
</g>
<g >
<title>__slab_free (3,829,839 samples, 0.02%)</title><rect x="496.6" y="1797" width="0.2" height="15.0" fill="rgb(247,46,46)" rx="2" ry="2" />
<text x="499.57" y="1807.5" ></text>
</g>
<g >
<title>[snapd] (7,316,846 samples, 0.03%)</title><rect x="976.1" y="1957" width="0.4" height="15.0" fill="rgb(214,157,28)" rx="2" ry="2" />
<text x="979.10" y="1967.5" ></text>
</g>
<g >
<title>tailscale.com/portlist.(*Poller).Run (23,174,499 samples, 0.11%)</title><rect x="1178.9" y="2021" width="1.3" height="15.0" fill="rgb(229,224,22)" rx="2" ry="2" />
<text x="1181.88" y="2031.5" ></text>
</g>
<g >
<title>lzma2_lzma (20,378,356 samples, 0.10%)</title><rect x="955.6" y="1653" width="1.2" height="15.0" fill="rgb(215,171,46)" rx="2" ry="2" />
<text x="958.64" y="1663.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (3,039,507 samples, 0.01%)</title><rect x="578.0" y="1733" width="0.2" height="15.0" fill="rgb(217,139,10)" rx="2" ry="2" />
<text x="581.05" y="1743.5" ></text>
</g>
<g >
<title>rtl8169_poll (4,951,577 samples, 0.02%)</title><rect x="592.0" y="1701" width="0.3" height="15.0" fill="rgb(211,106,40)" rx="2" ry="2" />
<text x="595.02" y="1711.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,777,259 samples, 0.01%)</title><rect x="1112.9" y="1797" width="0.2" height="15.0" fill="rgb(232,221,28)" rx="2" ry="2" />
<text x="1115.93" y="1807.5" ></text>
</g>
<g >
<title>seq_read_iter (18,709,478 samples, 0.09%)</title><rect x="1179.1" y="1717" width="1.0" height="15.0" fill="rgb(234,120,42)" rx="2" ry="2" />
<text x="1182.09" y="1727.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (30,386,776 samples, 0.14%)</title><rect x="1060.2" y="1909" width="1.7" height="15.0" fill="rgb(238,138,25)" rx="2" ry="2" />
<text x="1063.24" y="1919.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,259,587 samples, 0.01%)</title><rect x="601.2" y="1781" width="0.1" height="15.0" fill="rgb(213,201,21)" rx="2" ry="2" />
<text x="604.17" y="1791.5" ></text>
</g>
<g >
<title>napi_gro_receive (23,796,969 samples, 0.11%)</title><rect x="56.6" y="1909" width="1.3" height="15.0" fill="rgb(219,170,40)" rx="2" ry="2" />
<text x="59.61" y="1919.5" ></text>
</g>
<g >
<title>do_fault (2,203,132 samples, 0.01%)</title><rect x="897.0" y="1829" width="0.2" height="15.0" fill="rgb(244,21,25)" rx="2" ry="2" />
<text x="900.03" y="1839.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,861,775 samples, 0.01%)</title><rect x="896.5" y="1813" width="0.1" height="15.0" fill="rgb(205,91,32)" rx="2" ry="2" />
<text x="899.46" y="1823.5" ></text>
</g>
<g >
<title>irqentry_exit (2,301,375 samples, 0.01%)</title><rect x="1059.9" y="1909" width="0.1" height="15.0" fill="rgb(224,14,42)" rx="2" ry="2" />
<text x="1062.87" y="1919.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (59,404,477 samples, 0.28%)</title><rect x="520.6" y="1893" width="3.3" height="15.0" fill="rgb(232,71,3)" rx="2" ry="2" />
<text x="523.59" y="1903.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (3,113,895 samples, 0.01%)</title><rect x="57.5" y="1669" width="0.2" height="15.0" fill="rgb(221,27,23)" rx="2" ry="2" />
<text x="60.51" y="1679.5" ></text>
</g>
<g >
<title>cake_dequeue (3,727,335 samples, 0.02%)</title><rect x="451.9" y="1893" width="0.2" height="15.0" fill="rgb(238,131,5)" rx="2" ry="2" />
<text x="454.92" y="1903.5" ></text>
</g>
<g >
<title>rtl_tx (18,464,334 samples, 0.09%)</title><rect x="446.3" y="1893" width="1.0" height="15.0" fill="rgb(246,21,19)" rx="2" ry="2" />
<text x="449.27" y="1903.5" ></text>
</g>
<g >
<title>__strncat_ssse3 (2,655,919 samples, 0.01%)</title><rect x="71.6" y="2053" width="0.1" height="15.0" fill="rgb(225,2,25)" rx="2" ry="2" />
<text x="74.58" y="2063.5" ></text>
</g>
<g >
<title>ipv6_gro_receive (13,741,099 samples, 0.06%)</title><rect x="1021.0" y="1781" width="0.7" height="15.0" fill="rgb(209,96,6)" rx="2" ry="2" />
<text x="1023.98" y="1791.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="2005" width="0.5" height="15.0" fill="rgb(239,58,50)" rx="2" ry="2" />
<text x="18.42" y="2015.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,307,764 samples, 0.01%)</title><rect x="69.9" y="2005" width="0.1" height="15.0" fill="rgb(216,155,46)" rx="2" ry="2" />
<text x="72.91" y="2015.5" ></text>
</g>
<g >
<title>__qdisc_run (2,285,841 samples, 0.01%)</title><rect x="833.1" y="1861" width="0.1" height="15.0" fill="rgb(253,168,27)" rx="2" ry="2" />
<text x="836.12" y="1871.5" ></text>
</g>
<g >
<title>[snap] (10,261,127 samples, 0.05%)</title><rect x="883.8" y="165" width="0.5" height="15.0" fill="rgb(233,130,45)" rx="2" ry="2" />
<text x="886.77" y="175.5" ></text>
</g>
<g >
<title>nf_nat_ipv6_fn (1,900,391 samples, 0.01%)</title><rect x="680.8" y="1685" width="0.1" height="15.0" fill="rgb(249,172,22)" rx="2" ry="2" />
<text x="683.77" y="1695.5" ></text>
</g>
<g >
<title>fib_lookup_good_nhc (7,846,412 samples, 0.04%)</title><rect x="791.1" y="1701" width="0.4" height="15.0" fill="rgb(237,170,15)" rx="2" ry="2" />
<text x="794.09" y="1711.5" ></text>
</g>
<g >
<title>exc_page_fault (19,008,137 samples, 0.09%)</title><rect x="939.9" y="1973" width="1.1" height="15.0" fill="rgb(212,137,43)" rx="2" ry="2" />
<text x="942.94" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (32,542,023 samples, 0.15%)</title><rect x="492.4" y="1797" width="1.8" height="15.0" fill="rgb(241,185,36)" rx="2" ry="2" />
<text x="495.38" y="1807.5" ></text>
</g>
<g >
<title>[snap-exec] (22,694,622 samples, 0.11%)</title><rect x="873.7" y="1813" width="1.2" height="15.0" fill="rgb(221,88,26)" rx="2" ry="2" />
<text x="876.67" y="1823.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (3,016,689 samples, 0.01%)</title><rect x="621.5" y="1909" width="0.2" height="15.0" fill="rgb(236,115,13)" rx="2" ry="2" />
<text x="624.50" y="1919.5" ></text>
</g>
<g >
<title>perf-exec (2,647,986 samples, 0.01%)</title><rect x="71.4" y="2069" width="0.2" height="15.0" fill="rgb(222,70,43)" rx="2" ry="2" />
<text x="74.43" y="2079.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,286,063 samples, 0.01%)</title><rect x="599.7" y="1925" width="0.1" height="15.0" fill="rgb(226,120,44)" rx="2" ry="2" />
<text x="602.66" y="1935.5" ></text>
</g>
<g >
<title>set_termios.part.0 (2,143,071 samples, 0.01%)</title><rect x="861.3" y="1925" width="0.1" height="15.0" fill="rgb(233,24,43)" rx="2" ry="2" />
<text x="864.29" y="1935.5" ></text>
</g>
<g >
<title>_raw_spin_lock (8,366,593 samples, 0.04%)</title><rect x="984.6" y="1877" width="0.4" height="15.0" fill="rgb(207,178,13)" rx="2" ry="2" />
<text x="987.57" y="1887.5" ></text>
</g>
<g >
<title>cond_expand_word (5,697,934 samples, 0.03%)</title><rect x="40.2" y="2053" width="0.3" height="15.0" fill="rgb(248,210,11)" rx="2" ry="2" />
<text x="43.20" y="2063.5" ></text>
</g>
<g >
<title>ipv6_conntrack_in (5,347,135 samples, 0.02%)</title><rect x="547.1" y="1829" width="0.3" height="15.0" fill="rgb(232,8,19)" rx="2" ry="2" />
<text x="550.14" y="1839.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (4,214,906 samples, 0.02%)</title><rect x="451.7" y="1877" width="0.2" height="15.0" fill="rgb(234,212,41)" rx="2" ry="2" />
<text x="454.66" y="1887.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,193,157 samples, 0.01%)</title><rect x="568.8" y="1845" width="0.1" height="15.0" fill="rgb(240,8,11)" rx="2" ry="2" />
<text x="571.79" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="837" width="8.8" height="15.0" fill="rgb(222,61,21)" rx="2" ry="2" />
<text x="396.46" y="847.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (6,744,164 samples, 0.03%)</title><rect x="427.1" y="1845" width="0.3" height="15.0" fill="rgb(224,96,14)" rx="2" ry="2" />
<text x="430.05" y="1855.5" ></text>
</g>
<g >
<title>tcp_v6_early_demux.part.0 (2,450,176 samples, 0.01%)</title><rect x="1139.8" y="1653" width="0.1" height="15.0" fill="rgb(250,64,47)" rx="2" ry="2" />
<text x="1142.81" y="1663.5" ></text>
</g>
<g >
<title>xz_dec_lzma2_run (472,955,325 samples, 2.21%)</title><rect x="907.6" y="1637" width="26.1" height="15.0" fill="rgb(211,178,18)" rx="2" ry="2" />
<text x="910.62" y="1647.5" >x..</text>
</g>
<g >
<title>do_open (2,701,562 samples, 0.01%)</title><rect x="970.5" y="1925" width="0.1" height="15.0" fill="rgb(229,13,37)" rx="2" ry="2" />
<text x="973.48" y="1935.5" ></text>
</g>
<g >
<title>ip6_output (5,581,061 samples, 0.03%)</title><rect x="1063.0" y="1701" width="0.3" height="15.0" fill="rgb(213,36,30)" rx="2" ry="2" />
<text x="1065.96" y="1711.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (1,873,469 samples, 0.01%)</title><rect x="501.3" y="1669" width="0.1" height="15.0" fill="rgb(236,109,0)" rx="2" ry="2" />
<text x="504.31" y="1679.5" ></text>
</g>
<g >
<title>copy_process (6,959,086 samples, 0.03%)</title><rect x="963.0" y="1957" width="0.4" height="15.0" fill="rgb(213,193,45)" rx="2" ry="2" />
<text x="966.01" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (111,557,696 samples, 0.52%)</title><rect x="393.5" y="117" width="6.1" height="15.0" fill="rgb(205,169,44)" rx="2" ry="2" />
<text x="396.46" y="127.5" ></text>
</g>
<g >
<title>rat.rb:41 (13,841,295,937 samples, 64.65%)</title><rect x="77.2" y="2069" width="762.9" height="15.0" fill="rgb(219,180,43)" rx="2" ry="2" />
<text x="80.23" y="2079.5" >rat.rb:41</text>
</g>
<g >
<title>__wake_up_sync_key (2,150,546 samples, 0.01%)</title><rect x="1029.3" y="1477" width="0.2" height="15.0" fill="rgb(248,44,17)" rx="2" ry="2" />
<text x="1032.34" y="1487.5" ></text>
</g>
<g >
<title>process_backlog (177,643,566 samples, 0.83%)</title><rect x="465.1" y="1925" width="9.8" height="15.0" fill="rgb(207,11,35)" rx="2" ry="2" />
<text x="468.07" y="1935.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,917,251 samples, 0.01%)</title><rect x="434.2" y="1893" width="0.1" height="15.0" fill="rgb(211,228,0)" rx="2" ry="2" />
<text x="437.22" y="1903.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (3,037,225 samples, 0.01%)</title><rect x="18.5" y="2021" width="0.2" height="15.0" fill="rgb(209,76,54)" rx="2" ry="2" />
<text x="21.52" y="2031.5" ></text>
</g>
<g >
<title>asm_common_interrupt (7,573,962 samples, 0.04%)</title><rect x="577.9" y="1861" width="0.4" height="15.0" fill="rgb(233,66,22)" rx="2" ry="2" />
<text x="580.90" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (15,873,436 samples, 0.07%)</title><rect x="492.9" y="1765" width="0.9" height="15.0" fill="rgb(245,149,32)" rx="2" ry="2" />
<text x="495.88" y="1775.5" ></text>
</g>
<g >
<title>tailscale.com/portlist.(*linuxImpl).AppendListeningPorts (21,710,202 samples, 0.10%)</title><rect x="1179.0" y="1973" width="1.2" height="15.0" fill="rgb(215,206,33)" rx="2" ry="2" />
<text x="1181.96" y="1983.5" ></text>
</g>
<g >
<title>cpuidle_idle_call (981,053,045 samples, 4.58%)</title><rect x="1114.8" y="1925" width="54.1" height="15.0" fill="rgb(220,188,25)" rx="2" ry="2" />
<text x="1117.84" y="1935.5" >cpuid..</text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (2,955,120 samples, 0.01%)</title><rect x="56.8" y="1829" width="0.1" height="15.0" fill="rgb(246,161,28)" rx="2" ry="2" />
<text x="59.79" y="1839.5" ></text>
</g>
<g >
<title>fib6_table_lookup (20,538,931 samples, 0.10%)</title><rect x="1036.0" y="1605" width="1.1" height="15.0" fill="rgb(242,55,5)" rx="2" ry="2" />
<text x="1038.97" y="1615.5" ></text>
</g>
<g >
<title>load_balance (2,493,487 samples, 0.01%)</title><rect x="1154.9" y="1781" width="0.1" height="15.0" fill="rgb(208,145,30)" rx="2" ry="2" />
<text x="1157.90" y="1791.5" ></text>
</g>
<g >
<title>net_rx_action (3,407,050 samples, 0.02%)</title><rect x="646.6" y="1813" width="0.2" height="15.0" fill="rgb(223,179,33)" rx="2" ry="2" />
<text x="649.61" y="1823.5" ></text>
</g>
<g >
<title>timerqueue_add (3,825,941 samples, 0.02%)</title><rect x="725.2" y="1349" width="0.2" height="15.0" fill="rgb(218,109,13)" rx="2" ry="2" />
<text x="728.20" y="1359.5" ></text>
</g>
<g >
<title>ip6_forward (50,546,507 samples, 0.24%)</title><rect x="410.7" y="1797" width="2.8" height="15.0" fill="rgb(241,90,27)" rx="2" ry="2" />
<text x="413.68" y="1807.5" ></text>
</g>
<g >
<title>[snap] (19,678,493 samples, 0.09%)</title><rect x="883.8" y="837" width="1.0" height="15.0" fill="rgb(225,112,20)" rx="2" ry="2" />
<text x="886.75" y="847.5" ></text>
</g>
<g >
<title>[unknown] (2,488,444 samples, 0.01%)</title><rect x="53.5" y="1925" width="0.1" height="15.0" fill="rgb(229,64,54)" rx="2" ry="2" />
<text x="56.47" y="1935.5" ></text>
</g>
<g >
<title>rtl_rx (13,994,995 samples, 0.07%)</title><rect x="1101.2" y="1813" width="0.8" height="15.0" fill="rgb(229,71,14)" rx="2" ry="2" />
<text x="1104.21" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (12,193,545 samples, 0.06%)</title><rect x="734.1" y="1445" width="0.7" height="15.0" fill="rgb(213,6,18)" rx="2" ry="2" />
<text x="737.10" y="1455.5" ></text>
</g>
<g >
<title>fib_validate_source (116,370,631 samples, 0.54%)</title><rect x="794.2" y="1749" width="6.4" height="15.0" fill="rgb(244,15,19)" rx="2" ry="2" />
<text x="797.18" y="1759.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (2,530,727 samples, 0.01%)</title><rect x="681.3" y="1701" width="0.1" height="15.0" fill="rgb(225,158,18)" rx="2" ry="2" />
<text x="684.26" y="1711.5" ></text>
</g>
<g >
<title>sch_direct_xmit (18,907,984 samples, 0.09%)</title><rect x="505.8" y="1925" width="1.0" height="15.0" fill="rgb(226,55,21)" rx="2" ry="2" />
<text x="508.75" y="1935.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1909" width="0.5" height="15.0" fill="rgb(209,226,7)" rx="2" ry="2" />
<text x="18.42" y="1919.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1541" width="0.5" height="15.0" fill="rgb(237,66,22)" rx="2" ry="2" />
<text x="18.42" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="997" width="8.8" height="15.0" fill="rgb(239,68,10)" rx="2" ry="2" />
<text x="396.46" y="1007.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (8,734,196 samples, 0.04%)</title><rect x="1065.9" y="1797" width="0.4" height="15.0" fill="rgb(228,138,9)" rx="2" ry="2" />
<text x="1068.86" y="1807.5" ></text>
</g>
<g >
<title>napi_gro_flush (4,954,686 samples, 0.02%)</title><rect x="1129.0" y="1749" width="0.3" height="15.0" fill="rgb(223,115,43)" rx="2" ry="2" />
<text x="1131.99" y="1759.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="853" width="0.2" height="15.0" fill="rgb(214,97,36)" rx="2" ry="2" />
<text x="897.72" y="863.5" ></text>
</g>
<g >
<title>asm_common_interrupt (8,797,338 samples, 0.04%)</title><rect x="611.8" y="1941" width="0.5" height="15.0" fill="rgb(224,192,14)" rx="2" ry="2" />
<text x="614.77" y="1951.5" ></text>
</g>
<g >
<title>established_get_first (3,953,299 samples, 0.02%)</title><rect x="1179.6" y="1669" width="0.2" height="15.0" fill="rgb(229,224,0)" rx="2" ry="2" />
<text x="1182.55" y="1679.5" ></text>
</g>
<g >
<title>ip_list_rcv (4,983,412 samples, 0.02%)</title><rect x="1063.9" y="1765" width="0.3" height="15.0" fill="rgb(208,110,19)" rx="2" ry="2" />
<text x="1066.92" y="1775.5" ></text>
</g>
<g >
<title>fib4_rule_action (1,917,251 samples, 0.01%)</title><rect x="51.4" y="1781" width="0.1" height="15.0" fill="rgb(241,225,40)" rx="2" ry="2" />
<text x="54.39" y="1791.5" ></text>
</g>
<g >
<title>skb_release_data (8,198,101 samples, 0.04%)</title><rect x="1146.7" y="1733" width="0.5" height="15.0" fill="rgb(219,57,3)" rx="2" ry="2" />
<text x="1149.72" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,171,767 samples, 0.03%)</title><rect x="901.9" y="1781" width="0.3" height="15.0" fill="rgb(248,148,37)" rx="2" ry="2" />
<text x="904.85" y="1791.5" ></text>
</g>
<g >
<title>dev_gro_receive (31,113,882 samples, 0.15%)</title><rect x="1020.1" y="1797" width="1.7" height="15.0" fill="rgb(208,29,6)" rx="2" ry="2" />
<text x="1023.05" y="1807.5" ></text>
</g>
<g >
<title>net_tx_action (4,602,015 samples, 0.02%)</title><rect x="58.3" y="1973" width="0.3" height="15.0" fill="rgb(251,108,6)" rx="2" ry="2" />
<text x="61.30" y="1983.5" ></text>
</g>
<g >
<title>[systemd] (2,407,163 samples, 0.01%)</title><rect x="1176.4" y="2021" width="0.2" height="15.0" fill="rgb(254,112,46)" rx="2" ry="2" />
<text x="1179.43" y="2031.5" ></text>
</g>
<g >
<title>read_pages (15,390,128 samples, 0.07%)</title><rect x="942.8" y="1829" width="0.9" height="15.0" fill="rgb(231,199,54)" rx="2" ry="2" />
<text x="945.83" y="1839.5" ></text>
</g>
<g >
<title>dup_mmap (3,321,518 samples, 0.02%)</title><rect x="1178.0" y="1925" width="0.1" height="15.0" fill="rgb(209,147,38)" rx="2" ry="2" />
<text x="1180.95" y="1935.5" ></text>
</g>
<g >
<title>fib4_rule_action (13,372,819 samples, 0.06%)</title><rect x="1024.5" y="1637" width="0.8" height="15.0" fill="rgb(229,111,32)" rx="2" ry="2" />
<text x="1027.53" y="1647.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (8,320,225 samples, 0.04%)</title><rect x="889.2" y="1813" width="0.5" height="15.0" fill="rgb(222,38,9)" rx="2" ry="2" />
<text x="892.20" y="1823.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (1,918,274 samples, 0.01%)</title><rect x="47.0" y="1989" width="0.1" height="15.0" fill="rgb(216,202,36)" rx="2" ry="2" />
<text x="49.98" y="1999.5" ></text>
</g>
<g >
<title>common_interrupt (23,529,461 samples, 0.11%)</title><rect x="925.7" y="1557" width="1.3" height="15.0" fill="rgb(241,95,42)" rx="2" ry="2" />
<text x="928.71" y="1567.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,397,782 samples, 0.03%)</title><rect x="1187.2" y="2005" width="0.3" height="15.0" fill="rgb(224,16,44)" rx="2" ry="2" />
<text x="1190.16" y="2015.5" ></text>
</g>
<g >
<title>[snap] (2,168,339 samples, 0.01%)</title><rect x="904.4" y="2021" width="0.2" height="15.0" fill="rgb(249,165,13)" rx="2" ry="2" />
<text x="907.44" y="2031.5" ></text>
</g>
<g >
<title>[snap-exec] (2,689,814 samples, 0.01%)</title><rect x="874.3" y="1573" width="0.2" height="15.0" fill="rgb(245,36,54)" rx="2" ry="2" />
<text x="877.33" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="661" width="8.8" height="15.0" fill="rgb(226,180,37)" rx="2" ry="2" />
<text x="396.46" y="671.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1317" width="0.3" height="15.0" fill="rgb(248,147,41)" rx="2" ry="2" />
<text x="897.70" y="1327.5" ></text>
</g>
<g >
<title>[snapd] (22,247,320 samples, 0.10%)</title><rect x="974.1" y="1797" width="1.2" height="15.0" fill="rgb(225,31,10)" rx="2" ry="2" />
<text x="977.08" y="1807.5" ></text>
</g>
<g >
<title>net_tx_action (72,345,498 samples, 0.34%)</title><rect x="425.9" y="1925" width="4.0" height="15.0" fill="rgb(233,221,4)" rx="2" ry="2" />
<text x="428.89" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (1,871,164 samples, 0.01%)</title><rect x="17.9" y="2053" width="0.1" height="15.0" fill="rgb(249,210,17)" rx="2" ry="2" />
<text x="20.91" y="2063.5" ></text>
</g>
<g >
<title>[snap] (163,509,063 samples, 0.76%)</title><rect x="879.9" y="2005" width="9.0" height="15.0" fill="rgb(223,49,54)" rx="2" ry="2" />
<text x="882.90" y="2015.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (16,462,393 samples, 0.08%)</title><rect x="1102.1" y="1925" width="0.9" height="15.0" fill="rgb(205,176,0)" rx="2" ry="2" />
<text x="1105.11" y="1935.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1349" width="0.5" height="15.0" fill="rgb(234,90,1)" rx="2" ry="2" />
<text x="18.42" y="1359.5" ></text>
</g>
<g >
<title>common_interrupt (2,286,063 samples, 0.01%)</title><rect x="599.7" y="1909" width="0.1" height="15.0" fill="rgb(235,148,5)" rx="2" ry="2" />
<text x="602.66" y="1919.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,263,811 samples, 0.01%)</title><rect x="602.5" y="1941" width="0.1" height="15.0" fill="rgb(221,135,41)" rx="2" ry="2" />
<text x="605.46" y="1951.5" ></text>
</g>
<g >
<title>squashfs_xz_uncompress (43,702,984 samples, 0.20%)</title><rect x="933.7" y="1685" width="2.5" height="15.0" fill="rgb(238,113,35)" rx="2" ry="2" />
<text x="936.75" y="1695.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (1,872,241 samples, 0.01%)</title><rect x="25.8" y="1893" width="0.1" height="15.0" fill="rgb(247,132,11)" rx="2" ry="2" />
<text x="28.82" y="1903.5" ></text>
</g>
<g >
<title>napi_complete_done (9,896,820 samples, 0.05%)</title><rect x="597.4" y="1717" width="0.5" height="15.0" fill="rgb(242,124,47)" rx="2" ry="2" />
<text x="600.39" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (6,769,739 samples, 0.03%)</title><rect x="546.5" y="1781" width="0.4" height="15.0" fill="rgb(221,69,18)" rx="2" ry="2" />
<text x="549.49" y="1791.5" ></text>
</g>
<g >
<title>qdisc_watchdog (3,837,538 samples, 0.02%)</title><rect x="509.0" y="1941" width="0.2" height="15.0" fill="rgb(215,79,38)" rx="2" ry="2" />
<text x="512.00" y="1951.5" ></text>
</g>
<g >
<title>run_rebalance_domains (18,103,007 samples, 0.08%)</title><rect x="1068.0" y="1877" width="1.0" height="15.0" fill="rgb(220,189,2)" rx="2" ry="2" />
<text x="1071.04" y="1887.5" ></text>
</g>
<g >
<title>common_interrupt (2,870,090 samples, 0.01%)</title><rect x="627.4" y="1861" width="0.2" height="15.0" fill="rgb(231,169,12)" rx="2" ry="2" />
<text x="630.44" y="1871.5" ></text>
</g>
<g >
<title>validate_xmit_vlan (2,596,916 samples, 0.01%)</title><rect x="747.6" y="1669" width="0.1" height="15.0" fill="rgb(218,10,0)" rx="2" ry="2" />
<text x="750.55" y="1679.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (1,915,797 samples, 0.01%)</title><rect x="76.4" y="1925" width="0.1" height="15.0" fill="rgb(223,1,34)" rx="2" ry="2" />
<text x="79.44" y="1935.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,913,765 samples, 0.01%)</title><rect x="567.9" y="1893" width="0.1" height="15.0" fill="rgb(254,201,19)" rx="2" ry="2" />
<text x="570.88" y="1903.5" ></text>
</g>
<g >
<title>nf_hook_slow (6,480,124 samples, 0.03%)</title><rect x="435.7" y="1829" width="0.4" height="15.0" fill="rgb(206,208,4)" rx="2" ry="2" />
<text x="438.73" y="1839.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (8,029,899 samples, 0.04%)</title><rect x="611.8" y="1893" width="0.5" height="15.0" fill="rgb(219,211,17)" rx="2" ry="2" />
<text x="614.81" y="1903.5" ></text>
</g>
<g >
<title>ip_route_input_noref (18,271,762 samples, 0.09%)</title><rect x="407.9" y="1813" width="1.0" height="15.0" fill="rgb(241,211,46)" rx="2" ry="2" />
<text x="410.93" y="1823.5" ></text>
</g>
<g >
<title>napi_complete_done (2,644,893 samples, 0.01%)</title><rect x="574.0" y="1813" width="0.1" height="15.0" fill="rgb(215,210,6)" rx="2" ry="2" />
<text x="577.00" y="1823.5" ></text>
</g>
<g >
<title>ipv6_gro_receive (12,851,659 samples, 0.06%)</title><rect x="549.7" y="1877" width="0.7" height="15.0" fill="rgb(236,213,20)" rx="2" ry="2" />
<text x="552.67" y="1887.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,047,165 samples, 0.02%)</title><rect x="568.7" y="1941" width="0.3" height="15.0" fill="rgb(210,1,33)" rx="2" ry="2" />
<text x="571.75" y="1951.5" ></text>
</g>
<g >
<title>asm_common_interrupt (4,302,220 samples, 0.02%)</title><rect x="1062.3" y="1877" width="0.2" height="15.0" fill="rgb(247,85,51)" rx="2" ry="2" />
<text x="1065.31" y="1887.5" ></text>
</g>
<g >
<title>ip_finish_output2 (2,164,203 samples, 0.01%)</title><rect x="761.1" y="1765" width="0.1" height="15.0" fill="rgb(214,14,23)" rx="2" ry="2" />
<text x="764.12" y="1775.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (1,931,220 samples, 0.01%)</title><rect x="930.5" y="1381" width="0.1" height="15.0" fill="rgb(208,222,43)" rx="2" ry="2" />
<text x="933.47" y="1391.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (6,293,138 samples, 0.03%)</title><rect x="1003.4" y="1557" width="0.4" height="15.0" fill="rgb(222,47,48)" rx="2" ry="2" />
<text x="1006.42" y="1567.5" ></text>
</g>
<g >
<title>ip6_route_input (66,996,912 samples, 0.31%)</title><rect x="673.8" y="1701" width="3.7" height="15.0" fill="rgb(240,7,35)" rx="2" ry="2" />
<text x="676.81" y="1711.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4,897,435 samples, 0.02%)</title><rect x="838.1" y="2021" width="0.2" height="15.0" fill="rgb(223,21,32)" rx="2" ry="2" />
<text x="841.05" y="2031.5" ></text>
</g>
<g >
<title>net_rx_action (5,010,868 samples, 0.02%)</title><rect x="977.7" y="1925" width="0.3" height="15.0" fill="rgb(225,187,17)" rx="2" ry="2" />
<text x="980.73" y="1935.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (58,798,368 samples, 0.27%)</title><rect x="663.7" y="1653" width="3.2" height="15.0" fill="rgb(243,61,48)" rx="2" ry="2" />
<text x="666.70" y="1663.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22,201,898 samples, 0.10%)</title><rect x="847.1" y="2037" width="1.2" height="15.0" fill="rgb(248,126,12)" rx="2" ry="2" />
<text x="850.06" y="2047.5" ></text>
</g>
<g >
<title>do_epoll_wait (2,301,727 samples, 0.01%)</title><rect x="76.4" y="1957" width="0.1" height="15.0" fill="rgb(229,155,21)" rx="2" ry="2" />
<text x="79.42" y="1967.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,246,339 samples, 0.01%)</title><rect x="887.8" y="1861" width="0.1" height="15.0" fill="rgb(219,29,42)" rx="2" ry="2" />
<text x="890.76" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (17,989,182 samples, 0.08%)</title><rect x="1039.4" y="1525" width="1.0" height="15.0" fill="rgb(206,81,47)" rx="2" ry="2" />
<text x="1042.43" y="1535.5" ></text>
</g>
<g >
<title>__alloc_skb (6,521,516 samples, 0.03%)</title><rect x="498.4" y="1877" width="0.4" height="15.0" fill="rgb(234,114,15)" rx="2" ry="2" />
<text x="501.42" y="1887.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (1,915,131 samples, 0.01%)</title><rect x="526.2" y="1941" width="0.1" height="15.0" fill="rgb(250,9,50)" rx="2" ry="2" />
<text x="529.23" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (11,729,216 samples, 0.05%)</title><rect x="1135.8" y="1653" width="0.7" height="15.0" fill="rgb(213,208,47)" rx="2" ry="2" />
<text x="1138.82" y="1663.5" ></text>
</g>
<g >
<title>strncmp (4,010,418 samples, 0.02%)</title><rect x="941.5" y="2037" width="0.2" height="15.0" fill="rgb(221,79,50)" rx="2" ry="2" />
<text x="944.52" y="2047.5" ></text>
</g>
<g >
<title>__ip6_finish_output (2,208,757 samples, 0.01%)</title><rect x="444.0" y="1733" width="0.1" height="15.0" fill="rgb(224,8,42)" rx="2" ry="2" />
<text x="446.98" y="1743.5" ></text>
</g>
<g >
<title>kmalloc_reserve (121,184,551 samples, 0.57%)</title><rect x="633.1" y="1861" width="6.7" height="15.0" fill="rgb(232,114,52)" rx="2" ry="2" />
<text x="636.14" y="1871.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,051,458 samples, 0.01%)</title><rect x="886.9" y="1813" width="0.2" height="15.0" fill="rgb(208,154,37)" rx="2" ry="2" />
<text x="889.90" y="1823.5" ></text>
</g>
<g >
<title>netif_rx_internal (2,253,354 samples, 0.01%)</title><rect x="670.6" y="1589" width="0.1" height="15.0" fill="rgb(217,179,52)" rx="2" ry="2" />
<text x="673.59" y="1599.5" ></text>
</g>
<g >
<title>__x64_sys_access (20,501,242 samples, 0.10%)</title><rect x="68.2" y="1989" width="1.1" height="15.0" fill="rgb(235,6,32)" rx="2" ry="2" />
<text x="71.18" y="1999.5" ></text>
</g>
<g >
<title>exc_page_fault (1,897,793 samples, 0.01%)</title><rect x="885.5" y="1813" width="0.1" height="15.0" fill="rgb(241,136,40)" rx="2" ry="2" />
<text x="888.54" y="1823.5" ></text>
</g>
<g >
<title>do_lookup_x (2,253,753 samples, 0.01%)</title><rect x="1187.0" y="2037" width="0.1" height="15.0" fill="rgb(239,165,14)" rx="2" ry="2" />
<text x="1189.99" y="2047.5" ></text>
</g>
<g >
<title>__do_sys_wait4 (6,404,098 samples, 0.03%)</title><rect x="29.0" y="1989" width="0.4" height="15.0" fill="rgb(209,49,24)" rx="2" ry="2" />
<text x="32.01" y="1999.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (18,849,311 samples, 0.09%)</title><rect x="942.8" y="2053" width="1.0" height="15.0" fill="rgb(224,67,13)" rx="2" ry="2" />
<text x="945.78" y="2063.5" ></text>
</g>
<g >
<title>futex_wake (1,913,791 samples, 0.01%)</title><rect x="886.5" y="1797" width="0.1" height="15.0" fill="rgb(233,104,13)" rx="2" ry="2" />
<text x="889.52" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (9,656,972 samples, 0.05%)</title><rect x="1134.2" y="1637" width="0.5" height="15.0" fill="rgb(235,138,45)" rx="2" ry="2" />
<text x="1137.19" y="1647.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.0 (1,924,965 samples, 0.01%)</title><rect x="876.0" y="1893" width="0.1" height="15.0" fill="rgb(248,147,21)" rx="2" ry="2" />
<text x="879.02" y="1903.5" ></text>
</g>
<g >
<title>squashfs_read_data (491,861,291 samples, 2.30%)</title><rect x="906.6" y="1733" width="27.1" height="15.0" fill="rgb(224,76,49)" rx="2" ry="2" />
<text x="909.62" y="1743.5" >s..</text>
</g>
<g >
<title>free_pgtables (5,756,361 samples, 0.03%)</title><rect x="27.3" y="1829" width="0.3" height="15.0" fill="rgb(236,188,34)" rx="2" ry="2" />
<text x="30.30" y="1839.5" ></text>
</g>
<g >
<title>l3mdev_update_flow (4,934,350 samples, 0.02%)</title><rect x="799.2" y="1701" width="0.3" height="15.0" fill="rgb(249,84,30)" rx="2" ry="2" />
<text x="802.24" y="1711.5" ></text>
</g>
<g >
<title>mmc_blk_mq_issue_rq (3,053,930 samples, 0.01%)</title><rect x="61.7" y="1861" width="0.2" height="15.0" fill="rgb(216,103,37)" rx="2" ry="2" />
<text x="64.73" y="1871.5" ></text>
</g>
<g >
<title>[snap] (93,564,112 samples, 0.44%)</title><rect x="891.7" y="1909" width="5.1" height="15.0" fill="rgb(229,156,5)" rx="2" ry="2" />
<text x="894.67" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (14,570,749 samples, 0.07%)</title><rect x="1132.6" y="1509" width="0.8" height="15.0" fill="rgb(220,169,43)" rx="2" ry="2" />
<text x="1135.61" y="1519.5" ></text>
</g>
<g >
<title>lookup_fast (2,691,519 samples, 0.01%)</title><rect x="841.8" y="1877" width="0.2" height="15.0" fill="rgb(234,160,3)" rx="2" ry="2" />
<text x="844.82" y="1887.5" ></text>
</g>
<g >
<title>nf_hook_slow (5,768,135 samples, 0.03%)</title><rect x="1029.9" y="1669" width="0.3" height="15.0" fill="rgb(247,99,40)" rx="2" ry="2" />
<text x="1032.92" y="1679.5" ></text>
</g>
<g >
<title>irqentry_exit (2,211,375 samples, 0.01%)</title><rect x="561.9" y="2005" width="0.1" height="15.0" fill="rgb(212,22,40)" rx="2" ry="2" />
<text x="564.88" y="2015.5" ></text>
</g>
<g >
<title>squashfs_xz_uncompress (15,008,857 samples, 0.07%)</title><rect x="942.8" y="1717" width="0.9" height="15.0" fill="rgb(206,11,21)" rx="2" ry="2" />
<text x="945.85" y="1727.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,628,765 samples, 0.01%)</title><rect x="534.5" y="1973" width="0.2" height="15.0" fill="rgb(242,178,14)" rx="2" ry="2" />
<text x="537.51" y="1983.5" ></text>
</g>
<g >
<title>ip_route_input_slow (14,079,276 samples, 0.07%)</title><rect x="436.2" y="1797" width="0.8" height="15.0" fill="rgb(238,229,52)" rx="2" ry="2" />
<text x="439.22" y="1807.5" ></text>
</g>
<g >
<title>filemap_fault (15,390,128 samples, 0.07%)</title><rect x="942.8" y="1877" width="0.9" height="15.0" fill="rgb(243,9,41)" rx="2" ry="2" />
<text x="945.83" y="1887.5" ></text>
</g>
<g >
<title>vfs_read (18,857,042 samples, 0.09%)</title><rect x="1179.1" y="1765" width="1.0" height="15.0" fill="rgb(245,37,3)" rx="2" ry="2" />
<text x="1182.09" y="1775.5" ></text>
</g>
<g >
<title>__do_sys_newlstat (1,940,731 samples, 0.01%)</title><rect x="855.7" y="1973" width="0.1" height="15.0" fill="rgb(233,19,45)" rx="2" ry="2" />
<text x="858.74" y="1983.5" ></text>
</g>
<g >
<title>dict_repeat (3,867,975 samples, 0.02%)</title><rect x="934.2" y="1573" width="0.2" height="15.0" fill="rgb(216,121,1)" rx="2" ry="2" />
<text x="937.15" y="1583.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (2,301,653 samples, 0.01%)</title><rect x="941.8" y="1989" width="0.1" height="15.0" fill="rgb(220,113,50)" rx="2" ry="2" />
<text x="944.78" y="1999.5" ></text>
</g>
<g >
<title>__ip6_finish_output (2,982,670 samples, 0.01%)</title><rect x="550.7" y="1749" width="0.2" height="15.0" fill="rgb(252,138,29)" rx="2" ry="2" />
<text x="553.72" y="1759.5" ></text>
</g>
<g >
<title>asm_common_interrupt (8,305,922 samples, 0.04%)</title><rect x="610.1" y="1957" width="0.5" height="15.0" fill="rgb(223,1,9)" rx="2" ry="2" />
<text x="613.12" y="1967.5" ></text>
</g>
<g >
<title>tunnel46_rcv (2,023,179 samples, 0.01%)</title><rect x="1136.5" y="1653" width="0.1" height="15.0" fill="rgb(215,33,1)" rx="2" ry="2" />
<text x="1139.49" y="1663.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="469" width="0.5" height="15.0" fill="rgb(207,10,36)" rx="2" ry="2" />
<text x="18.42" y="479.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (258,689,654 samples, 1.21%)</title><rect x="1000.7" y="1813" width="14.2" height="15.0" fill="rgb(206,30,14)" rx="2" ry="2" />
<text x="1003.68" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (3,764,803 samples, 0.02%)</title><rect x="20.4" y="293" width="0.2" height="15.0" fill="rgb(236,136,7)" rx="2" ry="2" />
<text x="23.41" y="303.5" ></text>
</g>
<g >
<title>ret_from_fork (16,754,806 samples, 0.08%)</title><rect x="60.3" y="2053" width="0.9" height="15.0" fill="rgb(211,85,44)" rx="2" ry="2" />
<text x="63.29" y="2063.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,299,018 samples, 0.01%)</title><rect x="603.1" y="1909" width="0.1" height="15.0" fill="rgb(247,189,40)" rx="2" ry="2" />
<text x="606.07" y="1919.5" ></text>
</g>
<g >
<title>fput_many (4,946,039 samples, 0.02%)</title><rect x="569.1" y="1973" width="0.2" height="15.0" fill="rgb(253,138,25)" rx="2" ry="2" />
<text x="572.08" y="1983.5" ></text>
</g>
<g >
<title>irq_chip_ack_parent (2,428,763 samples, 0.01%)</title><rect x="996.0" y="1893" width="0.2" height="15.0" fill="rgb(211,19,39)" rx="2" ry="2" />
<text x="999.02" y="1903.5" ></text>
</g>
<g >
<title>ipv6_gro_receive (3,440,899 samples, 0.02%)</title><rect x="515.5" y="1861" width="0.2" height="15.0" fill="rgb(214,127,19)" rx="2" ry="2" />
<text x="518.55" y="1871.5" ></text>
</g>
<g >
<title>__siphash_unaligned (28,983,867 samples, 0.14%)</title><rect x="819.8" y="1765" width="1.6" height="15.0" fill="rgb(240,156,32)" rx="2" ry="2" />
<text x="822.83" y="1775.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (3,703,968 samples, 0.02%)</title><rect x="643.1" y="1685" width="0.2" height="15.0" fill="rgb(214,185,52)" rx="2" ry="2" />
<text x="646.05" y="1695.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (10,309,441 samples, 0.05%)</title><rect x="15.3" y="2053" width="0.6" height="15.0" fill="rgb(220,149,0)" rx="2" ry="2" />
<text x="18.33" y="2063.5" ></text>
</g>
<g >
<title>[snap] (53,499,155 samples, 0.25%)</title><rect x="882.8" y="1845" width="2.9" height="15.0" fill="rgb(216,56,40)" rx="2" ry="2" />
<text x="885.76" y="1855.5" ></text>
</g>
<g >
<title>unmap_single_vma (24,466,515 samples, 0.11%)</title><rect x="889.7" y="1813" width="1.4" height="15.0" fill="rgb(245,206,24)" rx="2" ry="2" />
<text x="892.74" y="1823.5" ></text>
</g>
<g >
<title>[snap] (14,405,117 samples, 0.07%)</title><rect x="883.8" y="213" width="0.8" height="15.0" fill="rgb(228,151,30)" rx="2" ry="2" />
<text x="886.77" y="223.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (75,762,244 samples, 0.35%)</title><rect x="1039.1" y="1589" width="4.1" height="15.0" fill="rgb(252,81,48)" rx="2" ry="2" />
<text x="1042.05" y="1599.5" ></text>
</g>
<g >
<title>__napi_poll (2,302,341 samples, 0.01%)</title><rect x="583.3" y="1813" width="0.2" height="15.0" fill="rgb(224,156,54)" rx="2" ry="2" />
<text x="586.34" y="1823.5" ></text>
</g>
<g >
<title>apparmor_file_permission (6,140,609 samples, 0.03%)</title><rect x="830.2" y="1941" width="0.3" height="15.0" fill="rgb(225,19,23)" rx="2" ry="2" />
<text x="833.18" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (4,141,229 samples, 0.02%)</title><rect x="20.4" y="341" width="0.2" height="15.0" fill="rgb(206,201,29)" rx="2" ry="2" />
<text x="23.41" y="351.5" ></text>
</g>
<g >
<title>sch_direct_xmit (2,839,442 samples, 0.01%)</title><rect x="1169.5" y="1557" width="0.2" height="15.0" fill="rgb(249,199,35)" rx="2" ry="2" />
<text x="1172.54" y="1567.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,283,377 samples, 0.02%)</title><rect x="401.5" y="261" width="0.2" height="15.0" fill="rgb(245,39,41)" rx="2" ry="2" />
<text x="404.52" y="271.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (93,956,779 samples, 0.44%)</title><rect x="32.0" y="2037" width="5.2" height="15.0" fill="rgb(247,106,5)" rx="2" ry="2" />
<text x="35.05" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1509" width="0.3" height="15.0" fill="rgb(207,64,51)" rx="2" ry="2" />
<text x="23.41" y="1519.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (44,847,569 samples, 0.21%)</title><rect x="639.8" y="1861" width="2.5" height="15.0" fill="rgb(220,43,30)" rx="2" ry="2" />
<text x="642.81" y="1871.5" ></text>
</g>
<g >
<title>unmap_single_vma (1,923,818 samples, 0.01%)</title><rect x="19.4" y="1909" width="0.1" height="15.0" fill="rgb(249,32,10)" rx="2" ry="2" />
<text x="22.37" y="1919.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1221" width="0.3" height="15.0" fill="rgb(216,193,29)" rx="2" ry="2" />
<text x="897.70" y="1231.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,463,303 samples, 0.02%)</title><rect x="976.7" y="1989" width="0.2" height="15.0" fill="rgb(239,222,37)" rx="2" ry="2" />
<text x="979.68" y="1999.5" ></text>
</g>
<g >
<title>grep (13,717,364 samples, 0.06%)</title><rect x="48.8" y="2069" width="0.7" height="15.0" fill="rgb(236,227,9)" rx="2" ry="2" />
<text x="51.75" y="2079.5" ></text>
</g>
<g >
<title>do_req_filebacked (1,892,010 samples, 0.01%)</title><rect x="64.8" y="1957" width="0.1" height="15.0" fill="rgb(206,194,19)" rx="2" ry="2" />
<text x="67.83" y="1967.5" ></text>
</g>
<g >
<title>balance_pgdat (16,194,971 samples, 0.08%)</title><rect x="60.3" y="2005" width="0.9" height="15.0" fill="rgb(235,108,6)" rx="2" ry="2" />
<text x="63.29" y="2015.5" ></text>
</g>
<g >
<title>ip6_forward (2,306,756 samples, 0.01%)</title><rect x="612.0" y="1749" width="0.1" height="15.0" fill="rgb(249,164,43)" rx="2" ry="2" />
<text x="614.96" y="1759.5" ></text>
</g>
<g >
<title>do_user_addr_fault (11,920,642 samples, 0.06%)</title><rect x="965.8" y="1957" width="0.6" height="15.0" fill="rgb(236,229,35)" rx="2" ry="2" />
<text x="968.76" y="1967.5" ></text>
</g>
<g >
<title>[ndppd] (1,899,618 samples, 0.01%)</title><rect x="70.8" y="2021" width="0.1" height="15.0" fill="rgb(217,209,35)" rx="2" ry="2" />
<text x="73.80" y="2031.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1413" width="0.3" height="15.0" fill="rgb(210,67,35)" rx="2" ry="2" />
<text x="897.70" y="1423.5" ></text>
</g>
<g >
<title>napi_complete_done (4,951,577 samples, 0.02%)</title><rect x="592.0" y="1685" width="0.3" height="15.0" fill="rgb(222,208,11)" rx="2" ry="2" />
<text x="595.02" y="1695.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,160,769 samples, 0.03%)</title><rect x="843.6" y="2021" width="0.3" height="15.0" fill="rgb(209,100,30)" rx="2" ry="2" />
<text x="846.60" y="2031.5" ></text>
</g>
<g >
<title>net_rx_action (2,569,807 samples, 0.01%)</title><rect x="584.9" y="1797" width="0.1" height="15.0" fill="rgb(213,206,36)" rx="2" ry="2" />
<text x="587.86" y="1807.5" ></text>
</g>
<g >
<title>_dl_lookup_symbol_x (13,987,404 samples, 0.07%)</title><rect x="1186.7" y="2053" width="0.8" height="15.0" fill="rgb(246,128,47)" rx="2" ry="2" />
<text x="1189.74" y="2063.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,309,045 samples, 0.01%)</title><rect x="16.7" y="2005" width="0.1" height="15.0" fill="rgb(215,99,25)" rx="2" ry="2" />
<text x="19.67" y="2015.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,669,357 samples, 0.01%)</title><rect x="1185.2" y="1957" width="0.2" height="15.0" fill="rgb(217,77,8)" rx="2" ry="2" />
<text x="1188.22" y="1967.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,288,982 samples, 0.01%)</title><rect x="752.0" y="1541" width="0.1" height="15.0" fill="rgb(239,90,30)" rx="2" ry="2" />
<text x="754.97" y="1551.5" ></text>
</g>
<g >
<title>exit_mm (13,419,102 samples, 0.06%)</title><rect x="40.6" y="1973" width="0.8" height="15.0" fill="rgb(243,28,13)" rx="2" ry="2" />
<text x="43.64" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_openat (2,305,235 samples, 0.01%)</title><rect x="1188.8" y="1973" width="0.1" height="15.0" fill="rgb(214,71,48)" rx="2" ry="2" />
<text x="1191.81" y="1983.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (3,314,673 samples, 0.02%)</title><rect x="495.8" y="1829" width="0.2" height="15.0" fill="rgb(225,127,33)" rx="2" ry="2" />
<text x="498.82" y="1839.5" ></text>
</g>
<g >
<title>napi_schedule_prep (7,425,761 samples, 0.03%)</title><rect x="994.5" y="1829" width="0.5" height="15.0" fill="rgb(253,22,10)" rx="2" ry="2" />
<text x="997.55" y="1839.5" ></text>
</g>
<g >
<title>__skb_gro_checksum_complete (2,628,068 samples, 0.01%)</title><rect x="445.6" y="1781" width="0.2" height="15.0" fill="rgb(217,60,47)" rx="2" ry="2" />
<text x="448.62" y="1791.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,887,183 samples, 0.01%)</title><rect x="400.5" y="165" width="0.1" height="15.0" fill="rgb(209,174,47)" rx="2" ry="2" />
<text x="403.51" y="175.5" ></text>
</g>
<g >
<title>rw_verify_area (35,209,828 samples, 0.16%)</title><rect x="830.1" y="1957" width="2.0" height="15.0" fill="rgb(249,45,29)" rx="2" ry="2" />
<text x="833.11" y="1967.5" ></text>
</g>
<g >
<title>skb_release_data (1,918,691 samples, 0.01%)</title><rect x="53.3" y="1893" width="0.1" height="15.0" fill="rgb(241,174,44)" rx="2" ry="2" />
<text x="56.30" y="1903.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,586,681 samples, 0.01%)</title><rect x="897.0" y="1925" width="0.2" height="15.0" fill="rgb(253,123,21)" rx="2" ry="2" />
<text x="900.03" y="1935.5" ></text>
</g>
<g >
<title>fib_rules_lookup (3,919,961 samples, 0.02%)</title><rect x="1062.7" y="1685" width="0.2" height="15.0" fill="rgb(227,96,54)" rx="2" ry="2" />
<text x="1065.70" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (6,893,445 samples, 0.03%)</title><rect x="10.0" y="2053" width="0.4" height="15.0" fill="rgb(207,57,7)" rx="2" ry="2" />
<text x="13.00" y="2063.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,689,247 samples, 0.01%)</title><rect x="1188.8" y="1989" width="0.2" height="15.0" fill="rgb(250,133,11)" rx="2" ry="2" />
<text x="1191.81" y="1999.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,264,055 samples, 0.01%)</title><rect x="30.8" y="1973" width="0.1" height="15.0" fill="rgb(209,146,43)" rx="2" ry="2" />
<text x="33.75" y="1983.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (124,302,593 samples, 0.58%)</title><rect x="1038.8" y="1637" width="6.8" height="15.0" fill="rgb(208,16,41)" rx="2" ry="2" />
<text x="1041.75" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (165,464,035 samples, 0.77%)</title><rect x="393.4" y="1669" width="9.1" height="15.0" fill="rgb(244,147,52)" rx="2" ry="2" />
<text x="396.36" y="1679.5" ></text>
</g>
<g >
<title>common_interrupt (2,677,961 samples, 0.01%)</title><rect x="606.8" y="1957" width="0.1" height="15.0" fill="rgb(228,3,21)" rx="2" ry="2" />
<text x="609.76" y="1967.5" ></text>
</g>
<g >
<title>fib_rules_lookup (54,966,076 samples, 0.26%)</title><rect x="674.4" y="1669" width="3.0" height="15.0" fill="rgb(221,178,0)" rx="2" ry="2" />
<text x="677.37" y="1679.5" ></text>
</g>
<g >
<title>__napi_poll (31,297,490 samples, 0.15%)</title><rect x="556.5" y="1957" width="1.7" height="15.0" fill="rgb(218,185,5)" rx="2" ry="2" />
<text x="559.51" y="1967.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="661" width="0.5" height="15.0" fill="rgb(240,193,46)" rx="2" ry="2" />
<text x="18.42" y="671.5" ></text>
</g>
<g >
<title>update_process_times (2,304,976 samples, 0.01%)</title><rect x="448.9" y="1893" width="0.1" height="15.0" fill="rgb(241,54,52)" rx="2" ry="2" />
<text x="451.88" y="1903.5" ></text>
</g>
<g >
<title>[libglib-2.0.so.0.6400.6] (3,469,308 samples, 0.02%)</title><rect x="964.0" y="2053" width="0.2" height="15.0" fill="rgb(245,210,18)" rx="2" ry="2" />
<text x="966.97" y="2063.5" ></text>
</g>
<g >
<title>[snap] (19,310,813 samples, 0.09%)</title><rect x="883.8" y="661" width="1.0" height="15.0" fill="rgb(219,171,26)" rx="2" ry="2" />
<text x="886.75" y="671.5" ></text>
</g>
<g >
<title>[snapd] (33,880,101 samples, 0.16%)</title><rect x="973.6" y="2021" width="1.9" height="15.0" fill="rgb(253,100,31)" rx="2" ry="2" />
<text x="976.63" y="2031.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,259,587 samples, 0.01%)</title><rect x="601.2" y="1797" width="0.1" height="15.0" fill="rgb(252,108,54)" rx="2" ry="2" />
<text x="604.17" y="1807.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (4,888,332 samples, 0.02%)</title><rect x="834.8" y="1861" width="0.2" height="15.0" fill="rgb(245,97,27)" rx="2" ry="2" />
<text x="837.77" y="1871.5" ></text>
</g>
<g >
<title>ip_finish_output2 (16,391,715 samples, 0.08%)</title><rect x="535.5" y="1797" width="0.9" height="15.0" fill="rgb(209,134,46)" rx="2" ry="2" />
<text x="538.51" y="1807.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,902,089 samples, 0.01%)</title><rect x="645.6" y="1813" width="0.1" height="15.0" fill="rgb(220,156,33)" rx="2" ry="2" />
<text x="648.57" y="1823.5" ></text>
</g>
<g >
<title>sch_direct_xmit (15,029,296 samples, 0.07%)</title><rect x="1028.8" y="1557" width="0.8" height="15.0" fill="rgb(243,216,32)" rx="2" ry="2" />
<text x="1031.81" y="1567.5" ></text>
</g>
<g >
<title>__qdisc_run (36,865,406 samples, 0.17%)</title><rect x="504.8" y="1941" width="2.0" height="15.0" fill="rgb(237,146,24)" rx="2" ry="2" />
<text x="507.76" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,163,596 samples, 0.01%)</title><rect x="1175.8" y="2037" width="0.1" height="15.0" fill="rgb(224,89,44)" rx="2" ry="2" />
<text x="1178.83" y="2047.5" ></text>
</g>
<g >
<title>packet_rcv (3,806,419 samples, 0.02%)</title><rect x="452.3" y="1845" width="0.2" height="15.0" fill="rgb(223,141,41)" rx="2" ry="2" />
<text x="455.27" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="853" width="8.8" height="15.0" fill="rgb(211,88,49)" rx="2" ry="2" />
<text x="396.46" y="863.5" ></text>
</g>
<g >
<title>handle_edge_irq (43,670,821 samples, 0.20%)</title><rect x="431.6" y="1957" width="2.4" height="15.0" fill="rgb(235,24,28)" rx="2" ry="2" />
<text x="434.56" y="1967.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (4,510,381 samples, 0.02%)</title><rect x="860.7" y="1973" width="0.3" height="15.0" fill="rgb(227,179,49)" rx="2" ry="2" />
<text x="863.75" y="1983.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (2,503,611 samples, 0.01%)</title><rect x="687.4" y="1701" width="0.1" height="15.0" fill="rgb(205,113,6)" rx="2" ry="2" />
<text x="690.38" y="1711.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (4,915,541 samples, 0.02%)</title><rect x="1102.3" y="1765" width="0.3" height="15.0" fill="rgb(249,54,31)" rx="2" ry="2" />
<text x="1105.32" y="1775.5" ></text>
</g>
<g >
<title>cpuidle_select (46,072,271 samples, 0.22%)</title><rect x="1166.2" y="1909" width="2.5" height="15.0" fill="rgb(211,64,20)" rx="2" ry="2" />
<text x="1169.16" y="1919.5" ></text>
</g>
<g >
<title>do_dentry_open (1,863,451 samples, 0.01%)</title><rect x="1177.3" y="1893" width="0.1" height="15.0" fill="rgb(227,12,15)" rx="2" ry="2" />
<text x="1180.28" y="1903.5" ></text>
</g>
<g >
<title>lookup_fast (1,935,149 samples, 0.01%)</title><rect x="969.9" y="1893" width="0.2" height="15.0" fill="rgb(250,103,49)" rx="2" ry="2" />
<text x="972.95" y="1903.5" ></text>
</g>
<g >
<title>ip_finish_output (3,672,500 samples, 0.02%)</title><rect x="705.4" y="1797" width="0.2" height="15.0" fill="rgb(244,152,19)" rx="2" ry="2" />
<text x="708.44" y="1807.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,879,294 samples, 0.01%)</title><rect x="888.8" y="1925" width="0.1" height="15.0" fill="rgb(219,131,20)" rx="2" ry="2" />
<text x="891.79" y="1935.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (2,120,767 samples, 0.01%)</title><rect x="16.0" y="1941" width="0.1" height="15.0" fill="rgb(217,1,52)" rx="2" ry="2" />
<text x="19.02" y="1951.5" ></text>
</g>
<g >
<title>pm_runtime_work (21,011,479 samples, 0.10%)</title><rect x="62.3" y="1989" width="1.1" height="15.0" fill="rgb(240,59,53)" rx="2" ry="2" />
<text x="65.27" y="1999.5" ></text>
</g>
<g >
<title>rtl8169_poll (11,809,624 samples, 0.06%)</title><rect x="597.3" y="1733" width="0.7" height="15.0" fill="rgb(210,144,44)" rx="2" ry="2" />
<text x="600.35" y="1743.5" ></text>
</g>
<g >
<title>__napi_poll (11,773,189 samples, 0.05%)</title><rect x="620.2" y="1813" width="0.6" height="15.0" fill="rgb(221,229,47)" rx="2" ry="2" />
<text x="623.20" y="1823.5" ></text>
</g>
<g >
<title>net_rx_action (14,109,090 samples, 0.07%)</title><rect x="597.2" y="1765" width="0.8" height="15.0" fill="rgb(212,221,48)" rx="2" ry="2" />
<text x="600.22" y="1775.5" ></text>
</g>
<g >
<title>__napi_poll (5,010,868 samples, 0.02%)</title><rect x="977.7" y="1909" width="0.3" height="15.0" fill="rgb(208,222,11)" rx="2" ry="2" />
<text x="980.73" y="1919.5" ></text>
</g>
<g >
<title>skb_release_head_state (1,909,873 samples, 0.01%)</title><rect x="497.2" y="1829" width="0.1" height="15.0" fill="rgb(228,128,53)" rx="2" ry="2" />
<text x="500.17" y="1839.5" ></text>
</g>
<g >
<title>[snap-seccomp] (24,910,036 samples, 0.12%)</title><rect x="876.9" y="2021" width="1.4" height="15.0" fill="rgb(232,227,9)" rx="2" ry="2" />
<text x="879.89" y="2031.5" ></text>
</g>
<g >
<title>dequeue_skb (62,108,389 samples, 0.29%)</title><rect x="516.9" y="1925" width="3.5" height="15.0" fill="rgb(244,13,36)" rx="2" ry="2" />
<text x="519.93" y="1935.5" ></text>
</g>
<g >
<title>__x64_sys_openat (6,930,784 samples, 0.03%)</title><rect x="36.2" y="1989" width="0.4" height="15.0" fill="rgb(222,229,41)" rx="2" ry="2" />
<text x="39.18" y="1999.5" ></text>
</g>
<g >
<title>lzma_main (463,695,928 samples, 2.17%)</title><rect x="908.0" y="1605" width="25.6" height="15.0" fill="rgb(228,88,14)" rx="2" ry="2" />
<text x="911.04" y="1615.5" >l..</text>
</g>
<g >
<title>rtl8169_start_xmit (11,370,330 samples, 0.05%)</title><rect x="1066.9" y="1797" width="0.6" height="15.0" fill="rgb(219,57,20)" rx="2" ry="2" />
<text x="1069.91" y="1807.5" ></text>
</g>
<g >
<title>rest_init (1,038,655,299 samples, 4.85%)</title><rect x="1114.4" y="1973" width="57.2" height="15.0" fill="rgb(212,197,5)" rx="2" ry="2" />
<text x="1117.38" y="1983.5" >rest_i..</text>
</g>
<g >
<title>unmap_single_vma (7,609,095 samples, 0.04%)</title><rect x="857.2" y="1909" width="0.4" height="15.0" fill="rgb(243,171,15)" rx="2" ry="2" />
<text x="860.22" y="1919.5" ></text>
</g>
<g >
<title>nf_hook_slow (215,320,571 samples, 1.01%)</title><rect x="764.3" y="1813" width="11.9" height="15.0" fill="rgb(246,64,50)" rx="2" ry="2" />
<text x="767.31" y="1823.5" ></text>
</g>
<g >
<title>[snap-exec] (9,589,456 samples, 0.04%)</title><rect x="871.9" y="2005" width="0.6" height="15.0" fill="rgb(228,76,12)" rx="2" ry="2" />
<text x="874.94" y="2015.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (52,522,419 samples, 0.25%)</title><rect x="434.7" y="1877" width="2.9" height="15.0" fill="rgb(207,216,28)" rx="2" ry="2" />
<text x="437.72" y="1887.5" ></text>
</g>
<g >
<title>__fib_validate_source (5,295,035 samples, 0.02%)</title><rect x="408.5" y="1733" width="0.3" height="15.0" fill="rgb(210,209,0)" rx="2" ry="2" />
<text x="411.50" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1013" width="8.8" height="15.0" fill="rgb(224,91,42)" rx="2" ry="2" />
<text x="396.46" y="1023.5" ></text>
</g>
<g >
<title>__siphash_unaligned (3,817,665 samples, 0.02%)</title><rect x="744.2" y="1397" width="0.2" height="15.0" fill="rgb(226,115,38)" rx="2" ry="2" />
<text x="747.17" y="1407.5" ></text>
</g>
<g >
<title>acpi_ex_release_global_lock (1,944,817 samples, 0.01%)</title><rect x="62.9" y="1669" width="0.1" height="15.0" fill="rgb(222,83,41)" rx="2" ry="2" />
<text x="65.94" y="1679.5" ></text>
</g>
<g >
<title>ip_forward_finish (47,502,859 samples, 0.22%)</title><rect x="1027.7" y="1701" width="2.6" height="15.0" fill="rgb(237,141,11)" rx="2" ry="2" />
<text x="1030.65" y="1711.5" ></text>
</g>
<g >
<title>__ip_finish_output (3,708,645 samples, 0.02%)</title><rect x="1150.1" y="1653" width="0.2" height="15.0" fill="rgb(236,123,5)" rx="2" ry="2" />
<text x="1153.10" y="1663.5" ></text>
</g>
<g >
<title>[snap-seccomp] (23,765,562 samples, 0.11%)</title><rect x="876.9" y="1989" width="1.3" height="15.0" fill="rgb(222,63,26)" rx="2" ry="2" />
<text x="879.91" y="1999.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (29,276,615 samples, 0.14%)</title><rect x="1060.3" y="1893" width="1.6" height="15.0" fill="rgb(250,183,11)" rx="2" ry="2" />
<text x="1063.27" y="1903.5" ></text>
</g>
<g >
<title>sch_direct_xmit (2,273,423 samples, 0.01%)</title><rect x="598.3" y="1733" width="0.1" height="15.0" fill="rgb(248,38,17)" rx="2" ry="2" />
<text x="601.29" y="1743.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,922,981 samples, 0.01%)</title><rect x="965.6" y="1989" width="0.1" height="15.0" fill="rgb(240,54,34)" rx="2" ry="2" />
<text x="968.63" y="1999.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (2,303,902 samples, 0.01%)</title><rect x="958.2" y="1909" width="0.1" height="15.0" fill="rgb(212,218,21)" rx="2" ry="2" />
<text x="961.21" y="1919.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (6,850,761 samples, 0.03%)</title><rect x="577.9" y="1813" width="0.4" height="15.0" fill="rgb(236,169,9)" rx="2" ry="2" />
<text x="580.94" y="1823.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (76,690,303 samples, 0.36%)</title><rect x="594.2" y="1845" width="4.3" height="15.0" fill="rgb(237,162,18)" rx="2" ry="2" />
<text x="597.23" y="1855.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (8,773,970 samples, 0.04%)</title><rect x="651.1" y="1573" width="0.5" height="15.0" fill="rgb(217,199,10)" rx="2" ry="2" />
<text x="654.10" y="1583.5" ></text>
</g>
<g >
<title>__napi_alloc_skb (9,457,210 samples, 0.04%)</title><rect x="418.2" y="1861" width="0.5" height="15.0" fill="rgb(236,186,39)" rx="2" ry="2" />
<text x="421.19" y="1871.5" ></text>
</g>
<g >
<title>copy_process (1,906,353 samples, 0.01%)</title><rect x="879.5" y="1957" width="0.1" height="15.0" fill="rgb(205,103,53)" rx="2" ry="2" />
<text x="882.47" y="1967.5" ></text>
</g>
<g >
<title>release_task (2,592,280 samples, 0.01%)</title><rect x="29.2" y="1909" width="0.1" height="15.0" fill="rgb(215,169,23)" rx="2" ry="2" />
<text x="32.19" y="1919.5" ></text>
</g>
<g >
<title>dql_completed (6,841,517 samples, 0.03%)</title><rect x="475.2" y="1909" width="0.4" height="15.0" fill="rgb(240,228,10)" rx="2" ry="2" />
<text x="478.21" y="1919.5" ></text>
</g>
<g >
<title>ip6_pol_route (18,381,057 samples, 0.09%)</title><rect x="1138.6" y="1589" width="1.0" height="15.0" fill="rgb(225,61,52)" rx="2" ry="2" />
<text x="1141.59" y="1599.5" ></text>
</g>
<g >
<title>asm_common_interrupt (15,491,908 samples, 0.07%)</title><rect x="597.1" y="1829" width="0.9" height="15.0" fill="rgb(216,38,27)" rx="2" ry="2" />
<text x="600.14" y="1839.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (15,390,128 samples, 0.07%)</title><rect x="942.8" y="1845" width="0.9" height="15.0" fill="rgb(215,60,7)" rx="2" ry="2" />
<text x="945.83" y="1855.5" ></text>
</g>
<g >
<title>net_rx_action (32,606,643 samples, 0.15%)</title><rect x="1150.0" y="1813" width="1.8" height="15.0" fill="rgb(205,160,44)" rx="2" ry="2" />
<text x="1153.03" y="1823.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1301" width="0.5" height="15.0" fill="rgb(252,211,43)" rx="2" ry="2" />
<text x="18.42" y="1311.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv (2,117,236 samples, 0.01%)</title><rect x="446.2" y="1813" width="0.1" height="15.0" fill="rgb(212,184,0)" rx="2" ry="2" />
<text x="449.15" y="1823.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (3,066,617 samples, 0.01%)</title><rect x="430.0" y="1925" width="0.1" height="15.0" fill="rgb(225,161,36)" rx="2" ry="2" />
<text x="432.98" y="1935.5" ></text>
</g>
<g >
<title>do_filp_open (18,446,530 samples, 0.09%)</title><rect x="841.1" y="1941" width="1.0" height="15.0" fill="rgb(247,87,5)" rx="2" ry="2" />
<text x="844.07" y="1951.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (3,858,636 samples, 0.02%)</title><rect x="962.2" y="2037" width="0.2" height="15.0" fill="rgb(243,218,37)" rx="2" ry="2" />
<text x="965.16" y="2047.5" ></text>
</g>
<g >
<title>napi_gro_receive (3,082,699 samples, 0.01%)</title><rect x="23.9" y="1909" width="0.1" height="15.0" fill="rgb(254,34,50)" rx="2" ry="2" />
<text x="26.88" y="1919.5" ></text>
</g>
<g >
<title>exec_binprm (8,076,231 samples, 0.04%)</title><rect x="847.1" y="1941" width="0.4" height="15.0" fill="rgb(221,176,2)" rx="2" ry="2" />
<text x="850.08" y="1951.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,731,432 samples, 0.03%)</title><rect x="869.4" y="2037" width="0.3" height="15.0" fill="rgb(253,181,3)" rx="2" ry="2" />
<text x="872.39" y="2047.5" ></text>
</g>
<g >
<title>__wake_up_common (10,867,201 samples, 0.05%)</title><rect x="1123.2" y="1445" width="0.6" height="15.0" fill="rgb(206,48,36)" rx="2" ry="2" />
<text x="1126.19" y="1455.5" ></text>
</g>
<g >
<title>__ipv6_chk_addr_and_flags (1,875,152 samples, 0.01%)</title><rect x="745.8" y="1573" width="0.1" height="15.0" fill="rgb(213,204,26)" rx="2" ry="2" />
<text x="748.78" y="1583.5" ></text>
</g>
<g >
<title>__get_user_pages_remote (2,309,610 samples, 0.01%)</title><rect x="35.2" y="1909" width="0.2" height="15.0" fill="rgb(211,226,32)" rx="2" ry="2" />
<text x="38.23" y="1919.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,835,646 samples, 0.01%)</title><rect x="896.0" y="1781" width="0.1" height="15.0" fill="rgb(229,141,39)" rx="2" ry="2" />
<text x="899.02" y="1791.5" ></text>
</g>
<g >
<title>[snap] (6,825,832 samples, 0.03%)</title><rect x="894.7" y="1557" width="0.3" height="15.0" fill="rgb(227,121,40)" rx="2" ry="2" />
<text x="897.66" y="1567.5" ></text>
</g>
<g >
<title>do_fault (1,939,552 samples, 0.01%)</title><rect x="856.6" y="1909" width="0.1" height="15.0" fill="rgb(234,149,3)" rx="2" ry="2" />
<text x="859.59" y="1919.5" ></text>
</g>
<g >
<title>napi_consume_skb (8,256,998 samples, 0.04%)</title><rect x="420.3" y="1861" width="0.4" height="15.0" fill="rgb(235,12,2)" rx="2" ry="2" />
<text x="423.25" y="1871.5" ></text>
</g>
<g >
<title>dev_gro_receive (11,412,075 samples, 0.05%)</title><rect x="445.4" y="1861" width="0.7" height="15.0" fill="rgb(239,183,1)" rx="2" ry="2" />
<text x="448.45" y="1871.5" ></text>
</g>
<g >
<title>[snapd] (29,281,373 samples, 0.14%)</title><rect x="973.8" y="1861" width="1.6" height="15.0" fill="rgb(234,35,3)" rx="2" ry="2" />
<text x="976.76" y="1871.5" ></text>
</g>
<g >
<title>sch_direct_xmit (10,236,450 samples, 0.05%)</title><rect x="1044.0" y="1541" width="0.6" height="15.0" fill="rgb(207,88,37)" rx="2" ry="2" />
<text x="1047.01" y="1551.5" ></text>
</g>
<g >
<title>pci_pm_runtime_resume (3,071,869 samples, 0.01%)</title><rect x="64.1" y="1765" width="0.2" height="15.0" fill="rgb(222,97,24)" rx="2" ry="2" />
<text x="67.15" y="1775.5" ></text>
</g>
<g >
<title>mod_lruvec_page_state.constprop.0 (1,922,026 samples, 0.01%)</title><rect x="846.4" y="1893" width="0.1" height="15.0" fill="rgb(239,114,33)" rx="2" ry="2" />
<text x="849.44" y="1903.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (1,859,017 samples, 0.01%)</title><rect x="48.0" y="1877" width="0.1" height="15.0" fill="rgb(213,24,31)" rx="2" ry="2" />
<text x="51.04" y="1887.5" ></text>
</g>
<g >
<title>fib6_node_lookup (2,611,950 samples, 0.01%)</title><rect x="415.5" y="1669" width="0.1" height="15.0" fill="rgb(234,163,19)" rx="2" ry="2" />
<text x="418.48" y="1679.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (19,166,360 samples, 0.09%)</title><rect x="1022.1" y="1765" width="1.1" height="15.0" fill="rgb(238,65,17)" rx="2" ry="2" />
<text x="1025.10" y="1775.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (7,950,929 samples, 0.04%)</title><rect x="15.4" y="277" width="0.5" height="15.0" fill="rgb(252,81,29)" rx="2" ry="2" />
<text x="18.42" y="287.5" ></text>
</g>
<g >
<title>nf_hook_slow (3,418,600 samples, 0.02%)</title><rect x="514.9" y="1829" width="0.2" height="15.0" fill="rgb(238,208,45)" rx="2" ry="2" />
<text x="517.88" y="1839.5" ></text>
</g>
<g >
<title>copy_process (4,574,092 samples, 0.02%)</title><rect x="869.4" y="1957" width="0.3" height="15.0" fill="rgb(239,102,31)" rx="2" ry="2" />
<text x="872.41" y="1967.5" ></text>
</g>
<g >
<title>do_group_exit (1,930,050 samples, 0.01%)</title><rect x="879.1" y="2005" width="0.1" height="15.0" fill="rgb(222,195,31)" rx="2" ry="2" />
<text x="882.11" y="2015.5" ></text>
</g>
<g >
<title>[snapd] (2,467,829 samples, 0.01%)</title><rect x="976.4" y="1925" width="0.1" height="15.0" fill="rgb(209,68,13)" rx="2" ry="2" />
<text x="979.36" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,922,234 samples, 0.01%)</title><rect x="47.5" y="2053" width="0.1" height="15.0" fill="rgb(211,26,37)" rx="2" ry="2" />
<text x="50.48" y="2063.5" ></text>
</g>
<g >
<title>[snapctl] (6,919,009 samples, 0.03%)</title><rect x="946.0" y="1765" width="0.4" height="15.0" fill="rgb(237,144,13)" rx="2" ry="2" />
<text x="949.00" y="1775.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,930,501 samples, 0.01%)</title><rect x="858.4" y="2005" width="0.1" height="15.0" fill="rgb(240,36,17)" rx="2" ry="2" />
<text x="861.37" y="2015.5" ></text>
</g>
<g >
<title>update_process_times (3,793,641 samples, 0.02%)</title><rect x="555.5" y="1925" width="0.2" height="15.0" fill="rgb(242,227,25)" rx="2" ry="2" />
<text x="558.47" y="1935.5" ></text>
</g>
<g >
<title>anon_vma_clone (4,579,663 samples, 0.02%)</title><rect x="25.6" y="1893" width="0.2" height="15.0" fill="rgb(251,15,54)" rx="2" ry="2" />
<text x="28.57" y="1903.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,906,353 samples, 0.01%)</title><rect x="879.5" y="2037" width="0.1" height="15.0" fill="rgb(228,10,16)" rx="2" ry="2" />
<text x="882.47" y="2047.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (1,912,421 samples, 0.01%)</title><rect x="1061.2" y="1781" width="0.1" height="15.0" fill="rgb(213,32,4)" rx="2" ry="2" />
<text x="1064.19" y="1791.5" ></text>
</g>
<g >
<title>__napi_poll (3,738,833 samples, 0.02%)</title><rect x="1112.2" y="1893" width="0.2" height="15.0" fill="rgb(224,138,20)" rx="2" ry="2" />
<text x="1115.19" y="1903.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (2,351,500 samples, 0.01%)</title><rect x="53.8" y="1893" width="0.1" height="15.0" fill="rgb(222,36,6)" rx="2" ry="2" />
<text x="56.80" y="1903.5" ></text>
</g>
<g >
<title>mwait_idle_with_hints.constprop.0 (159,942,870 samples, 0.75%)</title><rect x="1155.5" y="1877" width="8.8" height="15.0" fill="rgb(245,66,9)" rx="2" ry="2" />
<text x="1158.48" y="1887.5" ></text>
</g>
<g >
<title>do_read_fault (11,239,380 samples, 0.05%)</title><rect x="31.4" y="1893" width="0.6" height="15.0" fill="rgb(219,4,34)" rx="2" ry="2" />
<text x="34.41" y="1903.5" ></text>
</g>
<g >
<title>___sys_sendmsg (5,814,609 samples, 0.03%)</title><rect x="45.2" y="1941" width="0.3" height="15.0" fill="rgb(231,214,42)" rx="2" ry="2" />
<text x="48.20" y="1951.5" ></text>
</g>
<g >
<title>ip6_dst_check (6,851,338 samples, 0.03%)</title><rect x="715.3" y="1573" width="0.4" height="15.0" fill="rgb(229,168,35)" rx="2" ry="2" />
<text x="718.35" y="1583.5" ></text>
</g>
<g >
<title>fib4_rule_action (3,060,753 samples, 0.01%)</title><rect x="408.2" y="1733" width="0.1" height="15.0" fill="rgb(220,147,13)" rx="2" ry="2" />
<text x="411.16" y="1743.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (1,906,099 samples, 0.01%)</title><rect x="465.3" y="1877" width="0.1" height="15.0" fill="rgb(248,15,4)" rx="2" ry="2" />
<text x="468.25" y="1887.5" ></text>
</g>
<g >
<title>do_dentry_open (2,316,246 samples, 0.01%)</title><rect x="970.5" y="1893" width="0.1" height="15.0" fill="rgb(206,131,25)" rx="2" ry="2" />
<text x="973.50" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (30,483,233 samples, 0.14%)</title><rect x="1041.4" y="1541" width="1.6" height="15.0" fill="rgb(225,163,51)" rx="2" ry="2" />
<text x="1044.36" y="1551.5" ></text>
</g>
<g >
<title>ret_from_fork (7,686,381 samples, 0.04%)</title><rect x="61.6" y="2053" width="0.5" height="15.0" fill="rgb(223,40,41)" rx="2" ry="2" />
<text x="64.63" y="2063.5" ></text>
</g>
<g >
<title>__rpm_callback (21,011,479 samples, 0.10%)</title><rect x="62.3" y="1941" width="1.1" height="15.0" fill="rgb(227,44,23)" rx="2" ry="2" />
<text x="65.27" y="1951.5" ></text>
</g>
<g >
<title>nf_hook_slow (20,299,053 samples, 0.09%)</title><rect x="1012.1" y="1701" width="1.1" height="15.0" fill="rgb(212,147,12)" rx="2" ry="2" />
<text x="1015.09" y="1711.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,339,180 samples, 0.02%)</title><rect x="941.6" y="2021" width="0.1" height="15.0" fill="rgb(245,78,8)" rx="2" ry="2" />
<text x="944.55" y="2031.5" ></text>
</g>
<g >
<title>[snap] (19,092,723 samples, 0.09%)</title><rect x="894.2" y="1765" width="1.1" height="15.0" fill="rgb(215,138,18)" rx="2" ry="2" />
<text x="897.25" y="1775.5" ></text>
</g>
<g >
<title>rtl8169_poll (2,991,004 samples, 0.01%)</title><rect x="639.3" y="1733" width="0.1" height="15.0" fill="rgb(249,23,37)" rx="2" ry="2" />
<text x="642.27" y="1743.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1285" width="1.1" height="15.0" fill="rgb(240,129,23)" rx="2" ry="2" />
<text x="886.75" y="1295.5" ></text>
</g>
<g >
<title>[unknown] (11,287,538 samples, 0.05%)</title><rect x="1135.8" y="1637" width="0.7" height="15.0" fill="rgb(231,69,3)" rx="2" ry="2" />
<text x="1138.84" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (4,141,229 samples, 0.02%)</title><rect x="20.4" y="325" width="0.2" height="15.0" fill="rgb(223,82,3)" rx="2" ry="2" />
<text x="23.41" y="335.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,914,890 samples, 0.01%)</title><rect x="592.4" y="1765" width="0.1" height="15.0" fill="rgb(253,95,4)" rx="2" ry="2" />
<text x="595.39" y="1775.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (3,871,891 samples, 0.02%)</title><rect x="972.0" y="1909" width="0.2" height="15.0" fill="rgb(254,116,13)" rx="2" ry="2" />
<text x="974.99" y="1919.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,038,838 samples, 0.01%)</title><rect x="593.9" y="1733" width="0.2" height="15.0" fill="rgb(221,88,17)" rx="2" ry="2" />
<text x="596.95" y="1743.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,651,904 samples, 0.01%)</title><rect x="632.7" y="1813" width="0.1" height="15.0" fill="rgb(230,2,4)" rx="2" ry="2" />
<text x="635.70" y="1823.5" ></text>
</g>
<g >
<title>tcp6_gro_receive (4,749,426 samples, 0.02%)</title><rect x="1021.2" y="1765" width="0.3" height="15.0" fill="rgb(210,146,45)" rx="2" ry="2" />
<text x="1024.21" y="1775.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (3,813,748 samples, 0.02%)</title><rect x="541.4" y="1653" width="0.2" height="15.0" fill="rgb(250,36,23)" rx="2" ry="2" />
<text x="544.36" y="1663.5" ></text>
</g>
<g >
<title>[unknown] (13,525,162 samples, 0.06%)</title><rect x="486.0" y="1781" width="0.8" height="15.0" fill="rgb(233,78,52)" rx="2" ry="2" />
<text x="489.02" y="1791.5" ></text>
</g>
<g >
<title>net_tx_action (59,944,197 samples, 0.28%)</title><rect x="1064.6" y="1877" width="3.3" height="15.0" fill="rgb(209,64,39)" rx="2" ry="2" />
<text x="1067.61" y="1887.5" ></text>
</g>
<g >
<title>do_csum (2,614,278 samples, 0.01%)</title><rect x="500.7" y="1765" width="0.2" height="15.0" fill="rgb(230,224,40)" rx="2" ry="2" />
<text x="503.72" y="1775.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (6,491,755 samples, 0.03%)</title><rect x="453.0" y="1893" width="0.4" height="15.0" fill="rgb(205,8,15)" rx="2" ry="2" />
<text x="455.99" y="1903.5" ></text>
</g>
<g >
<title>ip_route_input_slow (4,342,227 samples, 0.02%)</title><rect x="512.7" y="1813" width="0.3" height="15.0" fill="rgb(242,11,5)" rx="2" ry="2" />
<text x="515.74" y="1823.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,608,920 samples, 0.02%)</title><rect x="645.7" y="1861" width="0.3" height="15.0" fill="rgb(245,115,23)" rx="2" ry="2" />
<text x="648.70" y="1871.5" ></text>
</g>
<g >
<title>kernel_wait4 (6,404,098 samples, 0.03%)</title><rect x="29.0" y="1973" width="0.4" height="15.0" fill="rgb(246,116,37)" rx="2" ry="2" />
<text x="32.01" y="1983.5" ></text>
</g>
<g >
<title>tick_program_event (3,317,464 samples, 0.02%)</title><rect x="1152.8" y="1701" width="0.2" height="15.0" fill="rgb(220,56,47)" rx="2" ry="2" />
<text x="1155.83" y="1711.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,287,270 samples, 0.02%)</title><rect x="1105.0" y="1941" width="0.2" height="15.0" fill="rgb(230,53,35)" rx="2" ry="2" />
<text x="1107.98" y="1951.5" ></text>
</g>
<g >
<title>common_interrupt (1,889,737 samples, 0.01%)</title><rect x="582.6" y="1797" width="0.1" height="15.0" fill="rgb(231,58,49)" rx="2" ry="2" />
<text x="585.57" y="1807.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (5,033,560 samples, 0.02%)</title><rect x="851.5" y="1941" width="0.2" height="15.0" fill="rgb(249,25,29)" rx="2" ry="2" />
<text x="854.45" y="1951.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,508,762 samples, 0.04%)</title><rect x="15.4" y="357" width="0.5" height="15.0" fill="rgb(212,68,19)" rx="2" ry="2" />
<text x="18.42" y="367.5" ></text>
</g>
<g >
<title>ip6_output (1,937,738 samples, 0.01%)</title><rect x="958.9" y="1781" width="0.1" height="15.0" fill="rgb(236,216,2)" rx="2" ry="2" />
<text x="961.93" y="1791.5" ></text>
</g>
<g >
<title>handle_mm_fault (15,390,128 samples, 0.07%)</title><rect x="942.8" y="1973" width="0.9" height="15.0" fill="rgb(217,75,4)" rx="2" ry="2" />
<text x="945.83" y="1983.5" ></text>
</g>
<g >
<title>kmalloc_reserve (43,334,717 samples, 0.20%)</title><rect x="1016.7" y="1781" width="2.3" height="15.0" fill="rgb(227,5,12)" rx="2" ry="2" />
<text x="1019.66" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (3,423,006 samples, 0.02%)</title><rect x="412.9" y="1749" width="0.2" height="15.0" fill="rgb(219,158,11)" rx="2" ry="2" />
<text x="415.88" y="1759.5" ></text>
</g>
<g >
<title>ip6_tnl_xmit_ctl (4,518,729 samples, 0.02%)</title><rect x="745.6" y="1605" width="0.3" height="15.0" fill="rgb(211,160,14)" rx="2" ry="2" />
<text x="748.63" y="1615.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (4,597,871 samples, 0.02%)</title><rect x="480.5" y="1653" width="0.2" height="15.0" fill="rgb(218,144,33)" rx="2" ry="2" />
<text x="483.49" y="1663.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (12,900,898 samples, 0.06%)</title><rect x="557.2" y="1893" width="0.7" height="15.0" fill="rgb(206,214,29)" rx="2" ry="2" />
<text x="560.18" y="1903.5" ></text>
</g>
<g >
<title>common_interrupt (3,812,053 samples, 0.02%)</title><rect x="584.8" y="1845" width="0.2" height="15.0" fill="rgb(227,37,3)" rx="2" ry="2" />
<text x="587.81" y="1855.5" ></text>
</g>
<g >
<title>fib_rules_lookup (3,297,686 samples, 0.02%)</title><rect x="687.8" y="1637" width="0.1" height="15.0" fill="rgb(233,180,48)" rx="2" ry="2" />
<text x="690.76" y="1647.5" ></text>
</g>
<g >
<title>fib_lookup_good_nhc (2,299,334 samples, 0.01%)</title><rect x="738.5" y="1509" width="0.1" height="15.0" fill="rgb(247,99,25)" rx="2" ry="2" />
<text x="741.45" y="1519.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,315,962 samples, 0.01%)</title><rect x="33.1" y="1877" width="0.1" height="15.0" fill="rgb(250,149,12)" rx="2" ry="2" />
<text x="36.08" y="1887.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (168,160,462 samples, 0.79%)</title><rect x="589.7" y="1861" width="9.3" height="15.0" fill="rgb(229,187,21)" rx="2" ry="2" />
<text x="592.69" y="1871.5" ></text>
</g>
<g >
<title>[libdbus-1.so.3.19.13] (1,887,988 samples, 0.01%)</title><rect x="19.5" y="2053" width="0.1" height="15.0" fill="rgb(220,102,36)" rx="2" ry="2" />
<text x="22.49" y="2063.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,305,166 samples, 0.01%)</title><rect x="639.5" y="1797" width="0.1" height="15.0" fill="rgb(223,21,50)" rx="2" ry="2" />
<text x="642.46" y="1807.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (36,718,343 samples, 0.17%)</title><rect x="1032.1" y="1733" width="2.0" height="15.0" fill="rgb(231,70,26)" rx="2" ry="2" />
<text x="1035.12" y="1743.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (3,703,968 samples, 0.02%)</title><rect x="643.1" y="1701" width="0.2" height="15.0" fill="rgb(214,88,33)" rx="2" ry="2" />
<text x="646.05" y="1711.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,446,388 samples, 0.02%)</title><rect x="982.0" y="1925" width="0.2" height="15.0" fill="rgb(244,206,44)" rx="2" ry="2" />
<text x="985.04" y="1935.5" ></text>
</g>
<g >
<title>common_interrupt (307,214,845 samples, 1.44%)</title><rect x="431.4" y="1989" width="17.0" height="15.0" fill="rgb(251,39,16)" rx="2" ry="2" />
<text x="434.42" y="1999.5" ></text>
</g>
<g >
<title>tun_sock_write_space (4,225,419 samples, 0.02%)</title><rect x="780.5" y="1813" width="0.2" height="15.0" fill="rgb(248,154,28)" rx="2" ry="2" />
<text x="783.47" y="1823.5" ></text>
</g>
<g >
<title>put_cred_rcu (5,809,938 samples, 0.03%)</title><rect x="968.6" y="1925" width="0.3" height="15.0" fill="rgb(214,136,11)" rx="2" ry="2" />
<text x="971.56" y="1935.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1285" width="0.5" height="15.0" fill="rgb(230,37,9)" rx="2" ry="2" />
<text x="18.42" y="1295.5" ></text>
</g>
<g >
<title>[snapd] (33,880,101 samples, 0.16%)</title><rect x="973.6" y="2005" width="1.9" height="15.0" fill="rgb(225,228,29)" rx="2" ry="2" />
<text x="976.63" y="2015.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (15,686,681 samples, 0.07%)</title><rect x="1099.7" y="1637" width="0.9" height="15.0" fill="rgb(208,36,45)" rx="2" ry="2" />
<text x="1102.74" y="1647.5" ></text>
</g>
<g >
<title>ip_list_rcv (2,229,093 samples, 0.01%)</title><rect x="1101.7" y="1749" width="0.1" height="15.0" fill="rgb(218,38,52)" rx="2" ry="2" />
<text x="1104.66" y="1759.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (1,825,956 samples, 0.01%)</title><rect x="598.8" y="1701" width="0.1" height="15.0" fill="rgb(243,104,52)" rx="2" ry="2" />
<text x="601.77" y="1711.5" ></text>
</g>
<g >
<title>ip_forward_finish (1,069,015,917 samples, 4.99%)</title><rect x="705.2" y="1813" width="58.9" height="15.0" fill="rgb(205,116,19)" rx="2" ry="2" />
<text x="708.15" y="1823.5" >ip_for..</text>
</g>
<g >
<title>packet_rcv (9,556,901 samples, 0.04%)</title><rect x="444.2" y="1845" width="0.5" height="15.0" fill="rgb(249,119,28)" rx="2" ry="2" />
<text x="447.16" y="1855.5" ></text>
</g>
<g >
<title>unmap_vmas (12,727,417 samples, 0.06%)</title><rect x="972.7" y="1925" width="0.7" height="15.0" fill="rgb(248,29,22)" rx="2" ry="2" />
<text x="975.65" y="1935.5" ></text>
</g>
<g >
<title>rcu_core (2,570,612 samples, 0.01%)</title><rect x="54.1" y="1957" width="0.1" height="15.0" fill="rgb(248,185,37)" rx="2" ry="2" />
<text x="57.09" y="1967.5" ></text>
</g>
<g >
<title>dev_queue_xmit (11,041,377 samples, 0.05%)</title><rect x="406.7" y="1717" width="0.6" height="15.0" fill="rgb(210,140,37)" rx="2" ry="2" />
<text x="409.74" y="1727.5" ></text>
</g>
<g >
<title>__check_heap_object (7,211,151 samples, 0.03%)</title><rect x="624.4" y="1861" width="0.4" height="15.0" fill="rgb(206,209,39)" rx="2" ry="2" />
<text x="627.39" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (16,382,547 samples, 0.08%)</title><rect x="40.6" y="2037" width="0.9" height="15.0" fill="rgb(225,95,2)" rx="2" ry="2" />
<text x="43.60" y="2047.5" ></text>
</g>
<g >
<title>[snap-exec] (63,048,273 samples, 0.29%)</title><rect x="872.8" y="2021" width="3.5" height="15.0" fill="rgb(234,54,18)" rx="2" ry="2" />
<text x="875.85" y="2031.5" ></text>
</g>
<g >
<title>rcu_read_unlock_strict (1,896,436 samples, 0.01%)</title><rect x="792.5" y="1749" width="0.1" height="15.0" fill="rgb(228,142,18)" rx="2" ry="2" />
<text x="795.45" y="1759.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (142,887,735 samples, 0.67%)</title><rect x="422.3" y="1973" width="7.9" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="425.29" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="565" width="0.3" height="15.0" fill="rgb(254,162,44)" rx="2" ry="2" />
<text x="23.41" y="575.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,913,635 samples, 0.01%)</title><rect x="625.8" y="1669" width="0.1" height="15.0" fill="rgb(217,163,1)" rx="2" ry="2" />
<text x="628.78" y="1679.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (30,789,015 samples, 0.14%)</title><rect x="513.4" y="1861" width="1.7" height="15.0" fill="rgb(222,17,17)" rx="2" ry="2" />
<text x="516.41" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (17,983,910 samples, 0.08%)</title><rect x="1046.2" y="1653" width="1.0" height="15.0" fill="rgb(241,226,14)" rx="2" ry="2" />
<text x="1049.21" y="1663.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (1,862,507 samples, 0.01%)</title><rect x="777.0" y="1781" width="0.1" height="15.0" fill="rgb(214,53,51)" rx="2" ry="2" />
<text x="780.01" y="1791.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,940,384 samples, 0.01%)</title><rect x="856.2" y="1893" width="0.1" height="15.0" fill="rgb(247,133,51)" rx="2" ry="2" />
<text x="859.19" y="1903.5" ></text>
</g>
<g >
<title>unmap_single_vma (2,193,289 samples, 0.01%)</title><rect x="871.0" y="1909" width="0.1" height="15.0" fill="rgb(237,135,42)" rx="2" ry="2" />
<text x="873.99" y="1919.5" ></text>
</g>
<g >
<title>common_interrupt (13,389,490 samples, 0.06%)</title><rect x="979.6" y="1957" width="0.7" height="15.0" fill="rgb(208,2,37)" rx="2" ry="2" />
<text x="982.60" y="1967.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="805" width="0.2" height="15.0" fill="rgb(211,44,25)" rx="2" ry="2" />
<text x="897.72" y="815.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (2,635,365 samples, 0.01%)</title><rect x="897.5" y="1909" width="0.1" height="15.0" fill="rgb(249,143,11)" rx="2" ry="2" />
<text x="900.46" y="1919.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (4,956,420 samples, 0.02%)</title><rect x="61.7" y="1893" width="0.3" height="15.0" fill="rgb(218,46,47)" rx="2" ry="2" />
<text x="64.69" y="1903.5" ></text>
</g>
<g >
<title>__ip6_local_out (13,473,404 samples, 0.06%)</title><rect x="740.8" y="1589" width="0.7" height="15.0" fill="rgb(214,163,15)" rx="2" ry="2" />
<text x="743.78" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (14,800,366 samples, 0.07%)</title><rect x="652.6" y="1701" width="0.9" height="15.0" fill="rgb(226,209,45)" rx="2" ry="2" />
<text x="655.64" y="1711.5" ></text>
</g>
<g >
<title>task_work_run (2,309,057 samples, 0.01%)</title><rect x="842.5" y="1925" width="0.1" height="15.0" fill="rgb(207,87,3)" rx="2" ry="2" />
<text x="845.47" y="1935.5" ></text>
</g>
<g >
<title>__x64_sys_write (74,975,600 samples, 0.35%)</title><rect x="72.2" y="1893" width="4.1" height="15.0" fill="rgb(210,91,36)" rx="2" ry="2" />
<text x="75.15" y="1903.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1205" width="0.3" height="15.0" fill="rgb(245,80,2)" rx="2" ry="2" />
<text x="897.70" y="1215.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (16,125,748 samples, 0.08%)</title><rect x="24.0" y="2037" width="0.9" height="15.0" fill="rgb(236,54,2)" rx="2" ry="2" />
<text x="27.05" y="2047.5" ></text>
</g>
<g >
<title>net_rx_action (761,440,816 samples, 3.56%)</title><rect x="648.5" y="1845" width="41.9" height="15.0" fill="rgb(246,18,21)" rx="2" ry="2" />
<text x="651.47" y="1855.5" >net..</text>
</g>
<g >
<title>try_to_wake_up (3,061,345 samples, 0.01%)</title><rect x="696.7" y="1829" width="0.1" height="15.0" fill="rgb(254,150,42)" rx="2" ry="2" />
<text x="699.66" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (14,029,477 samples, 0.07%)</title><rect x="1048.1" y="1653" width="0.7" height="15.0" fill="rgb(227,121,35)" rx="2" ry="2" />
<text x="1051.07" y="1663.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,662,726 samples, 0.01%)</title><rect x="50.7" y="1909" width="0.2" height="15.0" fill="rgb(228,205,46)" rx="2" ry="2" />
<text x="53.74" y="1919.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (4,983,412 samples, 0.02%)</title><rect x="1063.9" y="1749" width="0.3" height="15.0" fill="rgb(220,215,16)" rx="2" ry="2" />
<text x="1066.92" y="1759.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (8,745,645 samples, 0.04%)</title><rect x="411.9" y="1653" width="0.4" height="15.0" fill="rgb(245,131,26)" rx="2" ry="2" />
<text x="414.85" y="1663.5" ></text>
</g>
<g >
<title>gro_cells_receive (1,918,834 samples, 0.01%)</title><rect x="413.6" y="1701" width="0.1" height="15.0" fill="rgb(254,8,41)" rx="2" ry="2" />
<text x="416.63" y="1711.5" ></text>
</g>
<g >
<title>schedule (2,376,812 samples, 0.01%)</title><rect x="48.0" y="1909" width="0.2" height="15.0" fill="rgb(206,37,21)" rx="2" ry="2" />
<text x="51.03" y="1919.5" ></text>
</g>
<g >
<title>__napi_poll (5,351,824 samples, 0.02%)</title><rect x="635.3" y="1733" width="0.3" height="15.0" fill="rgb(253,183,23)" rx="2" ry="2" />
<text x="638.31" y="1743.5" ></text>
</g>
<g >
<title>validate_xmit_skb (13,562,903 samples, 0.06%)</title><rect x="747.1" y="1685" width="0.7" height="15.0" fill="rgb(206,186,51)" rx="2" ry="2" />
<text x="750.09" y="1695.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,393,420 samples, 0.03%)</title><rect x="860.7" y="2021" width="0.4" height="15.0" fill="rgb(224,193,2)" rx="2" ry="2" />
<text x="863.74" y="2031.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,158,372 samples, 0.01%)</title><rect x="1173.2" y="2021" width="0.1" height="15.0" fill="rgb(254,159,5)" rx="2" ry="2" />
<text x="1176.21" y="2031.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,472,546 samples, 0.02%)</title><rect x="959.6" y="2037" width="0.2" height="15.0" fill="rgb(241,20,6)" rx="2" ry="2" />
<text x="962.57" y="2047.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (16,000,139 samples, 0.07%)</title><rect x="436.2" y="1845" width="0.9" height="15.0" fill="rgb(210,189,47)" rx="2" ry="2" />
<text x="439.17" y="1855.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,676,969 samples, 0.01%)</title><rect x="16.4" y="2021" width="0.2" height="15.0" fill="rgb(217,177,28)" rx="2" ry="2" />
<text x="19.41" y="2031.5" ></text>
</g>
<g >
<title>exec_mmap (1,927,432 samples, 0.01%)</title><rect x="869.7" y="1877" width="0.1" height="15.0" fill="rgb(243,27,44)" rx="2" ry="2" />
<text x="872.71" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (165,084,151 samples, 0.77%)</title><rect x="393.4" y="1653" width="9.1" height="15.0" fill="rgb(231,178,23)" rx="2" ry="2" />
<text x="396.36" y="1663.5" ></text>
</g>
<g >
<title>thread_group_cputime (5,713,013 samples, 0.03%)</title><rect x="430.4" y="1893" width="0.3" height="15.0" fill="rgb(230,99,18)" rx="2" ry="2" />
<text x="433.39" y="1903.5" ></text>
</g>
<g >
<title>__siphash_unaligned (2,296,053 samples, 0.01%)</title><rect x="546.9" y="1781" width="0.1" height="15.0" fill="rgb(242,136,35)" rx="2" ry="2" />
<text x="549.86" y="1791.5" ></text>
</g>
<g >
<title>packet_rcv (2,976,305 samples, 0.01%)</title><rect x="1001.2" y="1765" width="0.2" height="15.0" fill="rgb(209,27,7)" rx="2" ry="2" />
<text x="1004.19" y="1775.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,695,598 samples, 0.02%)</title><rect x="71.8" y="1957" width="0.2" height="15.0" fill="rgb(213,182,54)" rx="2" ry="2" />
<text x="74.76" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (3,033,108 samples, 0.01%)</title><rect x="629.3" y="1733" width="0.2" height="15.0" fill="rgb(236,151,11)" rx="2" ry="2" />
<text x="632.33" y="1743.5" ></text>
</g>
<g >
<title>___slab_alloc (10,204,903 samples, 0.05%)</title><rect x="640.6" y="1845" width="0.6" height="15.0" fill="rgb(250,54,50)" rx="2" ry="2" />
<text x="643.59" y="1855.5" ></text>
</g>
<g >
<title>ip6_rcv_core (18,954,512 samples, 0.09%)</title><rect x="487.9" y="1829" width="1.1" height="15.0" fill="rgb(243,74,5)" rx="2" ry="2" />
<text x="490.91" y="1839.5" ></text>
</g>
<g >
<title>[snap] (10,852,335 samples, 0.05%)</title><rect x="894.5" y="1669" width="0.6" height="15.0" fill="rgb(226,159,34)" rx="2" ry="2" />
<text x="897.54" y="1679.5" ></text>
</g>
<g >
<title>[unknown] (106,988,608 samples, 0.50%)</title><rect x="393.5" y="85" width="5.9" height="15.0" fill="rgb(207,122,14)" rx="2" ry="2" />
<text x="396.46" y="95.5" ></text>
</g>
<g >
<title>dec_block (484,535,529 samples, 2.26%)</title><rect x="907.0" y="1653" width="26.7" height="15.0" fill="rgb(219,89,46)" rx="2" ry="2" />
<text x="909.98" y="1663.5" >d..</text>
</g>
<g >
<title>rtl8169_start_xmit (16,798,563 samples, 0.08%)</title><rect x="695.1" y="1765" width="0.9" height="15.0" fill="rgb(230,104,17)" rx="2" ry="2" />
<text x="698.06" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (1,914,271 samples, 0.01%)</title><rect x="51.7" y="1829" width="0.1" height="15.0" fill="rgb(224,147,42)" rx="2" ry="2" />
<text x="54.72" y="1839.5" ></text>
</g>
<g >
<title>ip_rcv (9,542,180 samples, 0.04%)</title><rect x="1150.1" y="1733" width="0.5" height="15.0" fill="rgb(224,57,27)" rx="2" ry="2" />
<text x="1153.08" y="1743.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (146,277,871 samples, 0.68%)</title><rect x="422.1" y="1989" width="8.1" height="15.0" fill="rgb(238,73,5)" rx="2" ry="2" />
<text x="425.10" y="1999.5" ></text>
</g>
<g >
<title>__ip_finish_output (971,762,959 samples, 4.54%)</title><rect x="707.5" y="1765" width="53.6" height="15.0" fill="rgb(254,208,39)" rx="2" ry="2" />
<text x="710.53" y="1775.5" >__ip_..</text>
</g>
<g >
<title>unmap_vmas (1,917,226 samples, 0.01%)</title><rect x="10.6" y="1829" width="0.1" height="15.0" fill="rgb(254,204,9)" rx="2" ry="2" />
<text x="13.59" y="1839.5" ></text>
</g>
<g >
<title>cpu_startup_entry (1,038,271,258 samples, 4.85%)</title><rect x="1114.4" y="1957" width="57.2" height="15.0" fill="rgb(209,220,39)" rx="2" ry="2" />
<text x="1117.38" y="1967.5" >cpu_st..</text>
</g>
<g >
<title>ip_forward (26,664,953 samples, 0.12%)</title><rect x="406.4" y="1829" width="1.4" height="15.0" fill="rgb(222,199,27)" rx="2" ry="2" />
<text x="409.38" y="1839.5" ></text>
</g>
<g >
<title>common_interrupt (2,587,190 samples, 0.01%)</title><rect x="771.6" y="1749" width="0.1" height="15.0" fill="rgb(237,141,43)" rx="2" ry="2" />
<text x="774.59" y="1759.5" ></text>
</g>
<g >
<title>__napi_poll (1,937,314 samples, 0.01%)</title><rect x="969.6" y="1765" width="0.1" height="15.0" fill="rgb(217,38,46)" rx="2" ry="2" />
<text x="972.59" y="1775.5" ></text>
</g>
<g >
<title>copy_p4d_range (7,319,529 samples, 0.03%)</title><rect x="25.9" y="1893" width="0.4" height="15.0" fill="rgb(248,228,12)" rx="2" ry="2" />
<text x="28.93" y="1903.5" ></text>
</g>
<g >
<title>skb_clone (3,435,961 samples, 0.02%)</title><rect x="480.2" y="1605" width="0.2" height="15.0" fill="rgb(230,15,13)" rx="2" ry="2" />
<text x="483.18" y="1615.5" ></text>
</g>
<g >
<title>schedule (3,045,623 samples, 0.01%)</title><rect x="61.5" y="2005" width="0.1" height="15.0" fill="rgb(254,8,37)" rx="2" ry="2" />
<text x="64.46" y="2015.5" ></text>
</g>
<g >
<title>snap (1,144,924,265 samples, 5.35%)</title><rect x="879.7" y="2069" width="63.1" height="15.0" fill="rgb(244,207,32)" rx="2" ry="2" />
<text x="882.66" y="2079.5" >snap</text>
</g>
<g >
<title>aa_path_perm (1,935,329 samples, 0.01%)</title><rect x="855.8" y="1845" width="0.2" height="15.0" fill="rgb(239,18,16)" rx="2" ry="2" />
<text x="858.84" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (35,846,158 samples, 0.17%)</title><rect x="678.2" y="1685" width="2.0" height="15.0" fill="rgb(252,206,13)" rx="2" ry="2" />
<text x="681.21" y="1695.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (3,786,978 samples, 0.02%)</title><rect x="1110.9" y="1877" width="0.2" height="15.0" fill="rgb(254,118,47)" rx="2" ry="2" />
<text x="1113.86" y="1887.5" ></text>
</g>
<g >
<title>exc_page_fault (617,503,159 samples, 2.88%)</title><rect x="905.6" y="1973" width="34.1" height="15.0" fill="rgb(218,198,53)" rx="2" ry="2" />
<text x="908.62" y="1983.5" >ex..</text>
</g>
<g >
<title>iov_iter_init (5,591,202 samples, 0.03%)</title><rect x="571.4" y="1957" width="0.3" height="15.0" fill="rgb(250,226,15)" rx="2" ry="2" />
<text x="574.43" y="1967.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (3,002,648 samples, 0.01%)</title><rect x="462.0" y="1941" width="0.1" height="15.0" fill="rgb(218,207,36)" rx="2" ry="2" />
<text x="464.97" y="1951.5" ></text>
</g>
<g >
<title>__x64_sys_openat (5,353,327 samples, 0.03%)</title><rect x="65.4" y="1973" width="0.3" height="15.0" fill="rgb(218,166,23)" rx="2" ry="2" />
<text x="68.40" y="1983.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (174,246,860 samples, 0.81%)</title><rect x="465.2" y="1893" width="9.6" height="15.0" fill="rgb(206,186,33)" rx="2" ry="2" />
<text x="468.19" y="1903.5" ></text>
</g>
<g >
<title>csum_partial (5,109,101 samples, 0.02%)</title><rect x="1145.7" y="1637" width="0.3" height="15.0" fill="rgb(234,98,14)" rx="2" ry="2" />
<text x="1148.70" y="1647.5" ></text>
</g>
<g >
<title>__napi_poll (1,936,551 samples, 0.01%)</title><rect x="1164.7" y="1781" width="0.1" height="15.0" fill="rgb(227,77,24)" rx="2" ry="2" />
<text x="1167.72" y="1791.5" ></text>
</g>
<g >
<title>do_mmap (2,682,682 samples, 0.01%)</title><rect x="941.6" y="1941" width="0.1" height="15.0" fill="rgb(206,41,52)" rx="2" ry="2" />
<text x="944.55" y="1951.5" ></text>
</g>
<g >
<title>lzma_len (16,980,196 samples, 0.08%)</title><rect x="932.7" y="1573" width="0.9" height="15.0" fill="rgb(240,190,7)" rx="2" ry="2" />
<text x="935.66" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (3,435,140 samples, 0.02%)</title><rect x="441.0" y="1749" width="0.2" height="15.0" fill="rgb(249,25,44)" rx="2" ry="2" />
<text x="444.00" y="1759.5" ></text>
</g>
<g >
<title>do_sys_openat2 (7,495,822 samples, 0.04%)</title><rect x="1177.2" y="1973" width="0.4" height="15.0" fill="rgb(211,86,18)" rx="2" ry="2" />
<text x="1180.16" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="581" width="0.3" height="15.0" fill="rgb(236,144,36)" rx="2" ry="2" />
<text x="23.41" y="591.5" ></text>
</g>
<g >
<title>__napi_poll (1,843,881 samples, 0.01%)</title><rect x="72.8" y="1685" width="0.1" height="15.0" fill="rgb(237,6,19)" rx="2" ry="2" />
<text x="75.76" y="1695.5" ></text>
</g>
<g >
<title>nft_do_chain_ipv6 (3,427,023 samples, 0.02%)</title><rect x="484.7" y="1797" width="0.2" height="15.0" fill="rgb(229,99,45)" rx="2" ry="2" />
<text x="487.72" y="1807.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,897,793 samples, 0.01%)</title><rect x="885.5" y="1829" width="0.1" height="15.0" fill="rgb(240,10,5)" rx="2" ry="2" />
<text x="888.54" y="1839.5" ></text>
</g>
<g >
<title>acpi_ps_get_arguments.constprop.0 (2,039,512 samples, 0.01%)</title><rect x="63.2" y="1749" width="0.1" height="15.0" fill="rgb(248,65,37)" rx="2" ry="2" />
<text x="66.22" y="1759.5" ></text>
</g>
<g >
<title>ip6_route_input (31,882,530 samples, 0.15%)</title><rect x="1138.0" y="1669" width="1.8" height="15.0" fill="rgb(236,189,30)" rx="2" ry="2" />
<text x="1141.01" y="1679.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.0 (1,815,572 samples, 0.01%)</title><rect x="903.3" y="1845" width="0.1" height="15.0" fill="rgb(220,180,31)" rx="2" ry="2" />
<text x="906.33" y="1855.5" ></text>
</g>
<g >
<title>__skb_checksum (6,808,448 samples, 0.03%)</title><rect x="686.0" y="1653" width="0.4" height="15.0" fill="rgb(239,118,15)" rx="2" ry="2" />
<text x="689.03" y="1663.5" ></text>
</g>
<g >
<title>mark_buffer_dirty (3,327,860 samples, 0.02%)</title><rect x="74.8" y="1733" width="0.2" height="15.0" fill="rgb(235,225,19)" rx="2" ry="2" />
<text x="77.81" y="1743.5" ></text>
</g>
<g >
<title>dequeue_skb (3,973,220 samples, 0.02%)</title><rect x="1010.7" y="1557" width="0.2" height="15.0" fill="rgb(222,53,35)" rx="2" ry="2" />
<text x="1013.68" y="1567.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (17,152,653 samples, 0.08%)</title><rect x="424.7" y="1845" width="0.9" height="15.0" fill="rgb(232,86,10)" rx="2" ry="2" />
<text x="427.67" y="1855.5" ></text>
</g>
<g >
<title>fib_rules_lookup (1,907,917 samples, 0.01%)</title><rect x="538.2" y="1749" width="0.1" height="15.0" fill="rgb(251,69,23)" rx="2" ry="2" />
<text x="541.17" y="1759.5" ></text>
</g>
<g >
<title>tick_nohz_irq_exit (10,830,478 samples, 0.05%)</title><rect x="1059.1" y="1893" width="0.6" height="15.0" fill="rgb(216,28,35)" rx="2" ry="2" />
<text x="1062.11" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (4,922,806 samples, 0.02%)</title><rect x="437.1" y="1781" width="0.3" height="15.0" fill="rgb(219,227,19)" rx="2" ry="2" />
<text x="440.12" y="1791.5" ></text>
</g>
<g >
<title>handle_irq_event (2,534,267 samples, 0.01%)</title><rect x="556.4" y="1909" width="0.1" height="15.0" fill="rgb(217,31,32)" rx="2" ry="2" />
<text x="559.35" y="1919.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (46,539,265 samples, 0.22%)</title><rect x="840.9" y="2037" width="2.6" height="15.0" fill="rgb(246,201,34)" rx="2" ry="2" />
<text x="843.95" y="2047.5" ></text>
</g>
<g >
<title>tick_program_event (2,056,186 samples, 0.01%)</title><rect x="1040.3" y="1461" width="0.1" height="15.0" fill="rgb(236,142,28)" rx="2" ry="2" />
<text x="1043.26" y="1471.5" ></text>
</g>
<g >
<title>hrtimer_update_next_event (2,684,903 samples, 0.01%)</title><rect x="449.1" y="1941" width="0.1" height="15.0" fill="rgb(221,13,19)" rx="2" ry="2" />
<text x="452.07" y="1951.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (5,764,034 samples, 0.03%)</title><rect x="1188.8" y="2037" width="0.3" height="15.0" fill="rgb(206,78,28)" rx="2" ry="2" />
<text x="1191.77" y="2047.5" ></text>
</g>
<g >
<title>security_cred_free (4,257,109 samples, 0.02%)</title><rect x="852.2" y="1909" width="0.3" height="15.0" fill="rgb(252,198,35)" rx="2" ry="2" />
<text x="855.22" y="1919.5" ></text>
</g>
<g >
<title>napi_complete_done (2,315,962 samples, 0.01%)</title><rect x="33.1" y="1909" width="0.1" height="15.0" fill="rgb(254,219,0)" rx="2" ry="2" />
<text x="36.08" y="1919.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (6,010,326 samples, 0.03%)</title><rect x="1003.4" y="1541" width="0.4" height="15.0" fill="rgb(220,70,27)" rx="2" ry="2" />
<text x="1006.44" y="1551.5" ></text>
</g>
<g >
<title>ext4_block_write_begin (11,754,994 samples, 0.05%)</title><rect x="72.9" y="1765" width="0.6" height="15.0" fill="rgb(212,105,23)" rx="2" ry="2" />
<text x="75.89" y="1775.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (6,912,916 samples, 0.03%)</title><rect x="1169.9" y="1717" width="0.4" height="15.0" fill="rgb(249,16,45)" rx="2" ry="2" />
<text x="1172.90" y="1727.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,055,786 samples, 0.01%)</title><rect x="1185.2" y="1973" width="0.2" height="15.0" fill="rgb(210,171,47)" rx="2" ry="2" />
<text x="1188.20" y="1983.5" ></text>
</g>
<g >
<title>net_rx_action (3,799,036 samples, 0.02%)</title><rect x="574.0" y="1861" width="0.2" height="15.0" fill="rgb(246,18,30)" rx="2" ry="2" />
<text x="576.96" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (9,349,827 samples, 0.04%)</title><rect x="1004.6" y="1717" width="0.5" height="15.0" fill="rgb(239,99,5)" rx="2" ry="2" />
<text x="1007.61" y="1727.5" ></text>
</g>
<g >
<title>fib6_node_lookup (14,104,105 samples, 0.07%)</title><rect x="676.3" y="1589" width="0.7" height="15.0" fill="rgb(212,111,36)" rx="2" ry="2" />
<text x="679.25" y="1599.5" ></text>
</g>
<g >
<title>neigh_connected_output (3,778,045 samples, 0.02%)</title><rect x="1169.5" y="1621" width="0.2" height="15.0" fill="rgb(242,5,11)" rx="2" ry="2" />
<text x="1172.50" y="1631.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,397,591 samples, 0.03%)</title><rect x="962.7" y="1989" width="0.3" height="15.0" fill="rgb(224,192,26)" rx="2" ry="2" />
<text x="965.71" y="1999.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,882,157 samples, 0.01%)</title><rect x="602.5" y="1893" width="0.1" height="15.0" fill="rgb(240,155,10)" rx="2" ry="2" />
<text x="605.48" y="1903.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="789" width="0.2" height="15.0" fill="rgb(247,18,29)" rx="2" ry="2" />
<text x="897.72" y="799.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (501,592,855 samples, 2.34%)</title><rect x="1021.9" y="1781" width="27.7" height="15.0" fill="rgb(208,203,24)" rx="2" ry="2" />
<text x="1024.91" y="1791.5" >_..</text>
</g>
<g >
<title>nf_hook_slow_list (12,847,419 samples, 0.06%)</title><rect x="1004.6" y="1749" width="0.7" height="15.0" fill="rgb(236,18,32)" rx="2" ry="2" />
<text x="1007.58" y="1759.5" ></text>
</g>
<g >
<title>vfs_read (5,927,777 samples, 0.03%)</title><rect x="1175.2" y="1957" width="0.3" height="15.0" fill="rgb(248,119,50)" rx="2" ry="2" />
<text x="1178.22" y="1967.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (2,300,520 samples, 0.01%)</title><rect x="479.3" y="1637" width="0.2" height="15.0" fill="rgb(245,40,50)" rx="2" ry="2" />
<text x="482.33" y="1647.5" ></text>
</g>
<g >
<title>ip_rcv (2,589,226 samples, 0.01%)</title><rect x="621.8" y="1765" width="0.1" height="15.0" fill="rgb(243,102,34)" rx="2" ry="2" />
<text x="624.81" y="1775.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,407,050 samples, 0.02%)</title><rect x="646.6" y="1845" width="0.2" height="15.0" fill="rgb(219,72,31)" rx="2" ry="2" />
<text x="649.61" y="1855.5" ></text>
</g>
<g >
<title>[snap] (64,654,862 samples, 0.30%)</title><rect x="892.6" y="1861" width="3.6" height="15.0" fill="rgb(235,42,42)" rx="2" ry="2" />
<text x="895.65" y="1871.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (3,458,694 samples, 0.02%)</title><rect x="879.2" y="1973" width="0.2" height="15.0" fill="rgb(251,85,1)" rx="2" ry="2" />
<text x="882.21" y="1983.5" ></text>
</g>
<g >
<title>user_path_at_empty (5,770,589 samples, 0.03%)</title><rect x="842.9" y="1941" width="0.3" height="15.0" fill="rgb(205,31,27)" rx="2" ry="2" />
<text x="845.90" y="1951.5" ></text>
</g>
<g >
<title>__x64_sys_execve (22,488,237 samples, 0.11%)</title><rect x="27.3" y="2005" width="1.2" height="15.0" fill="rgb(239,64,10)" rx="2" ry="2" />
<text x="30.26" y="2015.5" ></text>
</g>
<g >
<title>nf_conntrack_tcp_packet (30,505,997 samples, 0.14%)</title><rect x="823.0" y="1765" width="1.7" height="15.0" fill="rgb(231,174,8)" rx="2" ry="2" />
<text x="825.99" y="1775.5" ></text>
</g>
<g >
<title>common_interrupt (2,600,107 samples, 0.01%)</title><rect x="642.1" y="1813" width="0.2" height="15.0" fill="rgb(207,5,19)" rx="2" ry="2" />
<text x="645.12" y="1823.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (4,138,948 samples, 0.02%)</title><rect x="979.8" y="1781" width="0.2" height="15.0" fill="rgb(246,82,24)" rx="2" ry="2" />
<text x="982.77" y="1791.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (10,759,271 samples, 0.05%)</title><rect x="841.5" y="1909" width="0.6" height="15.0" fill="rgb(252,99,14)" rx="2" ry="2" />
<text x="844.48" y="1919.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (6,914,800 samples, 0.03%)</title><rect x="1149.0" y="1813" width="0.3" height="15.0" fill="rgb(239,182,49)" rx="2" ry="2" />
<text x="1151.97" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (63,048,273 samples, 0.29%)</title><rect x="872.8" y="2037" width="3.5" height="15.0" fill="rgb(216,123,15)" rx="2" ry="2" />
<text x="875.85" y="2047.5" ></text>
</g>
<g >
<title>ip_sublist_rcv_finish (2,621,736 samples, 0.01%)</title><rect x="56.9" y="1829" width="0.2" height="15.0" fill="rgb(209,127,13)" rx="2" ry="2" />
<text x="59.95" y="1839.5" ></text>
</g>
<g >
<title>__common_interrupt (1,879,811 samples, 0.01%)</title><rect x="773.2" y="1717" width="0.1" height="15.0" fill="rgb(243,85,36)" rx="2" ry="2" />
<text x="776.18" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="885" width="8.8" height="15.0" fill="rgb(206,155,18)" rx="2" ry="2" />
<text x="396.46" y="895.5" ></text>
</g>
<g >
<title>exc_page_fault (1,930,501 samples, 0.01%)</title><rect x="858.4" y="2021" width="0.1" height="15.0" fill="rgb(213,44,15)" rx="2" ry="2" />
<text x="861.37" y="2031.5" ></text>
</g>
<g >
<title>__ip_rt_update_pmtu (50,153,318 samples, 0.23%)</title><rect x="736.3" y="1589" width="2.8" height="15.0" fill="rgb(215,152,18)" rx="2" ry="2" />
<text x="739.29" y="1599.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,930,365 samples, 0.01%)</title><rect x="902.6" y="1781" width="0.1" height="15.0" fill="rgb(237,57,31)" rx="2" ry="2" />
<text x="905.63" y="1791.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (52,573,842 samples, 0.25%)</title><rect x="34.3" y="2021" width="2.9" height="15.0" fill="rgb(236,113,25)" rx="2" ry="2" />
<text x="37.31" y="2031.5" ></text>
</g>
<g >
<title>__napi_poll (7,294,430 samples, 0.03%)</title><rect x="33.1" y="1941" width="0.4" height="15.0" fill="rgb(214,40,16)" rx="2" ry="2" />
<text x="36.08" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (15,895,308 samples, 0.07%)</title><rect x="546.2" y="1797" width="0.9" height="15.0" fill="rgb(241,5,37)" rx="2" ry="2" />
<text x="549.24" y="1807.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="709" width="0.2" height="15.0" fill="rgb(244,107,19)" rx="2" ry="2" />
<text x="897.72" y="719.5" ></text>
</g>
<g >
<title>clockevents_program_event (2,303,318 samples, 0.01%)</title><rect x="449.3" y="1925" width="0.1" height="15.0" fill="rgb(212,174,49)" rx="2" ry="2" />
<text x="452.28" y="1935.5" ></text>
</g>
<g >
<title>common_interrupt (6,443,963 samples, 0.03%)</title><rect x="639.1" y="1813" width="0.4" height="15.0" fill="rgb(246,100,4)" rx="2" ry="2" />
<text x="642.10" y="1823.5" ></text>
</g>
<g >
<title>do_faccessat (81,226,300 samples, 0.38%)</title><rect x="851.2" y="1973" width="4.5" height="15.0" fill="rgb(221,172,3)" rx="2" ry="2" />
<text x="854.20" y="1983.5" ></text>
</g>
<g >
<title>net_tx_action (159,416,881 samples, 0.74%)</title><rect x="516.1" y="1957" width="8.8" height="15.0" fill="rgb(249,145,47)" rx="2" ry="2" />
<text x="519.12" y="1967.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (3,766,400 samples, 0.02%)</title><rect x="575.6" y="1861" width="0.2" height="15.0" fill="rgb(254,134,4)" rx="2" ry="2" />
<text x="578.56" y="1871.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (4,681,006 samples, 0.02%)</title><rect x="1060.7" y="1861" width="0.2" height="15.0" fill="rgb(242,120,28)" rx="2" ry="2" />
<text x="1063.66" y="1871.5" ></text>
</g>
<g >
<title>ip6_finish_output (3,608,672 samples, 0.02%)</title><rect x="501.9" y="1749" width="0.2" height="15.0" fill="rgb(215,173,4)" rx="2" ry="2" />
<text x="504.87" y="1759.5" ></text>
</g>
<g >
<title>unmap_single_vma (2,703,741 samples, 0.01%)</title><rect x="69.5" y="1909" width="0.2" height="15.0" fill="rgb(248,16,32)" rx="2" ry="2" />
<text x="72.52" y="1919.5" ></text>
</g>
<g >
<title>_dl_sort_maps (23,029,128 samples, 0.11%)</title><rect x="939.7" y="2005" width="1.3" height="15.0" fill="rgb(212,167,24)" rx="2" ry="2" />
<text x="942.72" y="2015.5" ></text>
</g>
<g >
<title>__skb_clone (3,039,518 samples, 0.01%)</title><rect x="672.9" y="1685" width="0.1" height="15.0" fill="rgb(237,88,46)" rx="2" ry="2" />
<text x="675.87" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1045" width="8.8" height="15.0" fill="rgb(224,118,14)" rx="2" ry="2" />
<text x="396.46" y="1055.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (2,410,184 samples, 0.01%)</title><rect x="1063.4" y="1749" width="0.1" height="15.0" fill="rgb(225,125,31)" rx="2" ry="2" />
<text x="1066.40" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (2,207,975 samples, 0.01%)</title><rect x="42.7" y="2053" width="0.2" height="15.0" fill="rgb(247,34,7)" rx="2" ry="2" />
<text x="45.74" y="2063.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1717" width="0.5" height="15.0" fill="rgb(246,136,48)" rx="2" ry="2" />
<text x="18.42" y="1727.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,030,739 samples, 0.01%)</title><rect x="896.7" y="1829" width="0.1" height="15.0" fill="rgb(238,206,4)" rx="2" ry="2" />
<text x="899.66" y="1839.5" ></text>
</g>
<g >
<title>nf_hook_slow (5,293,047 samples, 0.02%)</title><rect x="1011.8" y="1685" width="0.2" height="15.0" fill="rgb(234,4,5)" rx="2" ry="2" />
<text x="1014.76" y="1695.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,883,243 samples, 0.01%)</title><rect x="48.9" y="2021" width="0.1" height="15.0" fill="rgb(239,42,41)" rx="2" ry="2" />
<text x="51.86" y="2031.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,298,305 samples, 0.01%)</title><rect x="888.7" y="1989" width="0.1" height="15.0" fill="rgb(251,183,6)" rx="2" ry="2" />
<text x="891.66" y="1999.5" ></text>
</g>
<g >
<title>csum_partial (2,296,542 samples, 0.01%)</title><rect x="419.2" y="1749" width="0.2" height="15.0" fill="rgb(239,215,8)" rx="2" ry="2" />
<text x="422.23" y="1759.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,299,454 samples, 0.01%)</title><rect x="636.8" y="1813" width="0.1" height="15.0" fill="rgb(216,220,27)" rx="2" ry="2" />
<text x="639.79" y="1823.5" ></text>
</g>
<g >
<title>ip6_output (35,700,317 samples, 0.17%)</title><rect x="410.8" y="1781" width="2.0" height="15.0" fill="rgb(224,37,33)" rx="2" ry="2" />
<text x="413.81" y="1791.5" ></text>
</g>
<g >
<title>dev_queue_xmit (1,923,337 samples, 0.01%)</title><rect x="926.3" y="1253" width="0.1" height="15.0" fill="rgb(227,118,39)" rx="2" ry="2" />
<text x="929.28" y="1263.5" ></text>
</g>
<g >
<title>[snap] (74,878,714 samples, 0.35%)</title><rect x="892.3" y="1877" width="4.1" height="15.0" fill="rgb(219,130,46)" rx="2" ry="2" />
<text x="895.27" y="1887.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (2,208,757 samples, 0.01%)</title><rect x="444.0" y="1717" width="0.1" height="15.0" fill="rgb(251,6,36)" rx="2" ry="2" />
<text x="446.98" y="1727.5" ></text>
</g>
<g >
<title>[snap] (48,257,590 samples, 0.23%)</title><rect x="899.6" y="1797" width="2.6" height="15.0" fill="rgb(231,196,1)" rx="2" ry="2" />
<text x="902.55" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="901" width="8.8" height="15.0" fill="rgb(225,25,47)" rx="2" ry="2" />
<text x="396.46" y="911.5" ></text>
</g>
<g >
<title>[snap-exec] (6,914,662 samples, 0.03%)</title><rect x="872.0" y="1973" width="0.4" height="15.0" fill="rgb(224,84,12)" rx="2" ry="2" />
<text x="874.98" y="1983.5" ></text>
</g>
<g >
<title>consume_skb (4,213,346 samples, 0.02%)</title><rect x="752.0" y="1573" width="0.2" height="15.0" fill="rgb(252,202,40)" rx="2" ry="2" />
<text x="754.97" y="1583.5" ></text>
</g>
<g >
<title>acpi_ps_execute_method (1,885,222 samples, 0.01%)</title><rect x="64.2" y="1653" width="0.1" height="15.0" fill="rgb(240,63,14)" rx="2" ry="2" />
<text x="67.17" y="1663.5" ></text>
</g>
<g >
<title>strncpy (3,065,514 samples, 0.01%)</title><rect x="653.3" y="1685" width="0.2" height="15.0" fill="rgb(219,61,26)" rx="2" ry="2" />
<text x="656.28" y="1695.5" ></text>
</g>
<g >
<title>ip_rcv (2,298,875 samples, 0.01%)</title><rect x="639.1" y="1685" width="0.2" height="15.0" fill="rgb(217,183,30)" rx="2" ry="2" />
<text x="642.15" y="1695.5" ></text>
</g>
<g >
<title>__check_object_size (3,390,161 samples, 0.02%)</title><rect x="617.5" y="1909" width="0.2" height="15.0" fill="rgb(247,26,23)" rx="2" ry="2" />
<text x="620.48" y="1919.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10,018,350 samples, 0.05%)</title><rect x="846.4" y="1973" width="0.6" height="15.0" fill="rgb(242,196,20)" rx="2" ry="2" />
<text x="849.40" y="1983.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (3,447,712 samples, 0.02%)</title><rect x="35.8" y="1893" width="0.2" height="15.0" fill="rgb(226,161,33)" rx="2" ry="2" />
<text x="38.80" y="1903.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="901" width="0.5" height="15.0" fill="rgb(235,147,21)" rx="2" ry="2" />
<text x="18.42" y="911.5" ></text>
</g>
<g >
<title>[unknown] (4,171,240 samples, 0.02%)</title><rect x="1176.4" y="2037" width="0.2" height="15.0" fill="rgb(229,158,25)" rx="2" ry="2" />
<text x="1179.42" y="2047.5" ></text>
</g>
<g >
<title>intel_execute_tuning (2,836,473 samples, 0.01%)</title><rect x="63.8" y="1781" width="0.1" height="15.0" fill="rgb(205,36,32)" rx="2" ry="2" />
<text x="66.78" y="1791.5" ></text>
</g>
<g >
<title>[snap] (13,521,632 samples, 0.06%)</title><rect x="900.5" y="1717" width="0.7" height="15.0" fill="rgb(219,7,7)" rx="2" ry="2" />
<text x="903.46" y="1727.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (19,780,848 samples, 0.09%)</title><rect x="439.0" y="1701" width="1.1" height="15.0" fill="rgb(230,169,47)" rx="2" ry="2" />
<text x="441.97" y="1711.5" ></text>
</g>
<g >
<title>unmap_vmas (10,515,474 samples, 0.05%)</title><rect x="40.8" y="1925" width="0.6" height="15.0" fill="rgb(217,108,2)" rx="2" ry="2" />
<text x="43.80" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (1,843,642,302 samples, 8.61%)</title><rect x="329.4" y="2005" width="101.6" height="15.0" fill="rgb(222,45,12)" rx="2" ry="2" />
<text x="332.42" y="2015.5" >[unknown]</text>
</g>
<g >
<title>fib_rules_lookup (6,690,338 samples, 0.03%)</title><rect x="746.2" y="1557" width="0.3" height="15.0" fill="rgb(254,142,15)" rx="2" ry="2" />
<text x="749.18" y="1567.5" ></text>
</g>
<g >
<title>menu_reflect (6,329,065 samples, 0.03%)</title><rect x="1104.9" y="1957" width="0.3" height="15.0" fill="rgb(218,173,35)" rx="2" ry="2" />
<text x="1107.88" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,591,166 samples, 0.02%)</title><rect x="65.9" y="2005" width="0.3" height="15.0" fill="rgb(222,47,23)" rx="2" ry="2" />
<text x="68.93" y="2015.5" ></text>
</g>
<g >
<title>__skb_checksum (6,790,901 samples, 0.03%)</title><rect x="500.2" y="1765" width="0.4" height="15.0" fill="rgb(247,115,48)" rx="2" ry="2" />
<text x="503.20" y="1775.5" ></text>
</g>
<g >
<title>_copy_to_iter (2,612,575 samples, 0.01%)</title><rect x="589.4" y="1861" width="0.1" height="15.0" fill="rgb(212,28,50)" rx="2" ry="2" />
<text x="592.38" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,460,566 samples, 0.02%)</title><rect x="857.9" y="2005" width="0.2" height="15.0" fill="rgb(244,118,18)" rx="2" ry="2" />
<text x="860.92" y="2015.5" ></text>
</g>
<g >
<title>memory_stat_show (2,302,586 samples, 0.01%)</title><rect x="1175.2" y="1861" width="0.1" height="15.0" fill="rgb(249,138,12)" rx="2" ry="2" />
<text x="1178.22" y="1871.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (198,109,955 samples, 0.93%)</title><rect x="721.7" y="1477" width="10.9" height="15.0" fill="rgb(218,94,46)" rx="2" ry="2" />
<text x="724.72" y="1487.5" ></text>
</g>
<g >
<title>[snap] (18,573,128 samples, 0.09%)</title><rect x="883.8" y="533" width="1.0" height="15.0" fill="rgb(215,186,3)" rx="2" ry="2" />
<text x="886.75" y="543.5" ></text>
</g>
<g >
<title>dev_queue_xmit (2,385,677 samples, 0.01%)</title><rect x="52.1" y="1749" width="0.1" height="15.0" fill="rgb(227,218,0)" rx="2" ry="2" />
<text x="55.09" y="1759.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (7,211,683 samples, 0.03%)</title><rect x="448.6" y="1941" width="0.4" height="15.0" fill="rgb(249,119,44)" rx="2" ry="2" />
<text x="451.63" y="1951.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,702,877 samples, 0.01%)</title><rect x="66.9" y="2037" width="0.2" height="15.0" fill="rgb(234,219,12)" rx="2" ry="2" />
<text x="69.91" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (3,828,731 samples, 0.02%)</title><rect x="10.0" y="2037" width="0.2" height="15.0" fill="rgb(251,172,49)" rx="2" ry="2" />
<text x="13.00" y="2047.5" ></text>
</g>
<g >
<title>__x64_sys_getdents64 (5,798,953 samples, 0.03%)</title><rect x="963.4" y="2005" width="0.4" height="15.0" fill="rgb(219,228,8)" rx="2" ry="2" />
<text x="966.44" y="2015.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (1,905,649 samples, 0.01%)</title><rect x="941.9" y="2005" width="0.1" height="15.0" fill="rgb(215,154,31)" rx="2" ry="2" />
<text x="944.91" y="2015.5" ></text>
</g>
<g >
<title>sch_direct_xmit (5,142,102 samples, 0.02%)</title><rect x="1010.9" y="1557" width="0.3" height="15.0" fill="rgb(254,96,45)" rx="2" ry="2" />
<text x="1013.90" y="1567.5" ></text>
</g>
<g >
<title>copy_pte_range (3,855,596 samples, 0.02%)</title><rect x="26.1" y="1861" width="0.2" height="15.0" fill="rgb(232,88,9)" rx="2" ry="2" />
<text x="29.12" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,339,180 samples, 0.02%)</title><rect x="941.6" y="2005" width="0.1" height="15.0" fill="rgb(246,131,22)" rx="2" ry="2" />
<text x="944.55" y="2015.5" ></text>
</g>
<g >
<title>common_interrupt (8,004,783 samples, 0.04%)</title><rect x="591.8" y="1781" width="0.5" height="15.0" fill="rgb(234,62,51)" rx="2" ry="2" />
<text x="594.85" y="1791.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (4,236,552 samples, 0.02%)</title><rect x="17.0" y="2053" width="0.2" height="15.0" fill="rgb(215,225,32)" rx="2" ry="2" />
<text x="19.97" y="2063.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,939,552 samples, 0.01%)</title><rect x="856.6" y="1957" width="0.1" height="15.0" fill="rgb(238,139,3)" rx="2" ry="2" />
<text x="859.59" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1141" width="8.8" height="15.0" fill="rgb(249,134,51)" rx="2" ry="2" />
<text x="396.46" y="1151.5" ></text>
</g>
<g >
<title>__napi_poll (3,799,036 samples, 0.02%)</title><rect x="574.0" y="1845" width="0.2" height="15.0" fill="rgb(212,209,4)" rx="2" ry="2" />
<text x="576.96" y="1855.5" ></text>
</g>
<g >
<title>exc_page_fault (1,879,294 samples, 0.01%)</title><rect x="888.8" y="1973" width="0.1" height="15.0" fill="rgb(238,220,47)" rx="2" ry="2" />
<text x="891.79" y="1983.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (46,417,568 samples, 0.22%)</title><rect x="654.0" y="1717" width="2.6" height="15.0" fill="rgb(206,225,0)" rx="2" ry="2" />
<text x="657.04" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1061" width="8.8" height="15.0" fill="rgb(217,214,22)" rx="2" ry="2" />
<text x="396.46" y="1071.5" ></text>
</g>
<g >
<title>ip_output (3,365,856 samples, 0.02%)</title><rect x="501.3" y="1765" width="0.2" height="15.0" fill="rgb(212,142,39)" rx="2" ry="2" />
<text x="504.27" y="1775.5" ></text>
</g>
<g >
<title>common_interrupt (2,251,318 samples, 0.01%)</title><rect x="599.0" y="1861" width="0.1" height="15.0" fill="rgb(248,68,19)" rx="2" ry="2" />
<text x="601.96" y="1871.5" ></text>
</g>
<g >
<title>ktime_get (2,182,047 samples, 0.01%)</title><rect x="996.7" y="1877" width="0.1" height="15.0" fill="rgb(229,220,10)" rx="2" ry="2" />
<text x="999.71" y="1887.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,086,720 samples, 0.01%)</title><rect x="901.2" y="1717" width="0.2" height="15.0" fill="rgb(239,27,11)" rx="2" ry="2" />
<text x="904.24" y="1727.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,314,303 samples, 0.01%)</title><rect x="66.9" y="2005" width="0.2" height="15.0" fill="rgb(228,153,20)" rx="2" ry="2" />
<text x="69.93" y="2015.5" ></text>
</g>
<g >
<title>rcu_core (2,313,448 samples, 0.01%)</title><rect x="1067.9" y="1861" width="0.1" height="15.0" fill="rgb(222,94,0)" rx="2" ry="2" />
<text x="1070.91" y="1871.5" ></text>
</g>
<g >
<title>__fdget_pos (20,322,449 samples, 0.09%)</title><rect x="604.8" y="1973" width="1.1" height="15.0" fill="rgb(249,202,42)" rx="2" ry="2" />
<text x="607.79" y="1983.5" ></text>
</g>
<g >
<title>dev_get_by_index_rcu (1,904,404 samples, 0.01%)</title><rect x="714.3" y="1589" width="0.1" height="15.0" fill="rgb(248,34,33)" rx="2" ry="2" />
<text x="717.30" y="1599.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,866,854 samples, 0.02%)</title><rect x="58.8" y="1909" width="0.3" height="15.0" fill="rgb(220,85,49)" rx="2" ry="2" />
<text x="61.83" y="1919.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (2,692,616 samples, 0.01%)</title><rect x="19.3" y="2021" width="0.2" height="15.0" fill="rgb(250,124,4)" rx="2" ry="2" />
<text x="22.34" y="2031.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,828,357 samples, 0.01%)</title><rect x="18.4" y="2037" width="0.1" height="15.0" fill="rgb(251,160,34)" rx="2" ry="2" />
<text x="21.42" y="2047.5" ></text>
</g>
<g >
<title>common_interrupt (2,686,351 samples, 0.01%)</title><rect x="641.6" y="1813" width="0.2" height="15.0" fill="rgb(225,160,37)" rx="2" ry="2" />
<text x="644.62" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (2,672,697 samples, 0.01%)</title><rect x="724.2" y="1413" width="0.1" height="15.0" fill="rgb(208,75,22)" rx="2" ry="2" />
<text x="727.20" y="1423.5" ></text>
</g>
<g >
<title>strncmp (2,665,636 samples, 0.01%)</title><rect x="870.3" y="2037" width="0.2" height="15.0" fill="rgb(239,124,44)" rx="2" ry="2" />
<text x="873.33" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (14,156,396 samples, 0.07%)</title><rect x="473.4" y="1797" width="0.8" height="15.0" fill="rgb(244,76,28)" rx="2" ry="2" />
<text x="476.37" y="1807.5" ></text>
</g>
<g >
<title>arch_cpu_idle_enter (3,673,072 samples, 0.02%)</title><rect x="978.2" y="1989" width="0.2" height="15.0" fill="rgb(246,123,35)" rx="2" ry="2" />
<text x="981.21" y="1999.5" ></text>
</g>
<g >
<title>exc_page_fault (3,796,261 samples, 0.02%)</title><rect x="886.9" y="1861" width="0.2" height="15.0" fill="rgb(235,204,6)" rx="2" ry="2" />
<text x="889.86" y="1871.5" ></text>
</g>
<g >
<title>__update_blocked_fair (10,055,702 samples, 0.05%)</title><rect x="1068.4" y="1845" width="0.6" height="15.0" fill="rgb(231,18,13)" rx="2" ry="2" />
<text x="1071.40" y="1855.5" ></text>
</g>
<g >
<title>__schedule (2,299,777 samples, 0.01%)</title><rect x="430.0" y="1877" width="0.1" height="15.0" fill="rgb(238,166,1)" rx="2" ry="2" />
<text x="433.00" y="1887.5" ></text>
</g>
<g >
<title>neigh_connected_output (30,617,441 samples, 0.14%)</title><rect x="1122.4" y="1621" width="1.7" height="15.0" fill="rgb(251,229,10)" rx="2" ry="2" />
<text x="1125.40" y="1631.5" ></text>
</g>
<g >
<title>rtl8169_poll (36,951,918 samples, 0.17%)</title><rect x="1062.6" y="1845" width="2.0" height="15.0" fill="rgb(237,174,34)" rx="2" ry="2" />
<text x="1065.56" y="1855.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (2,691,240 samples, 0.01%)</title><rect x="70.4" y="2037" width="0.2" height="15.0" fill="rgb(220,183,53)" rx="2" ry="2" />
<text x="73.41" y="2047.5" ></text>
</g>
<g >
<title>nf_hook_slow (3,736,794 samples, 0.02%)</title><rect x="51.7" y="1877" width="0.2" height="15.0" fill="rgb(242,68,10)" rx="2" ry="2" />
<text x="54.66" y="1887.5" ></text>
</g>
<g >
<title>cpuidle_enter (923,741,018 samples, 4.31%)</title><rect x="1115.1" y="1909" width="50.9" height="15.0" fill="rgb(209,187,17)" rx="2" ry="2" />
<text x="1118.07" y="1919.5" >cpuid..</text>
</g>
<g >
<title>sch_direct_xmit (3,391,938 samples, 0.02%)</title><rect x="759.4" y="1653" width="0.2" height="15.0" fill="rgb(205,110,14)" rx="2" ry="2" />
<text x="762.42" y="1663.5" ></text>
</g>
<g >
<title>mmput (13,419,102 samples, 0.06%)</title><rect x="40.6" y="1957" width="0.8" height="15.0" fill="rgb(234,71,17)" rx="2" ry="2" />
<text x="43.64" y="1967.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,081,304 samples, 0.01%)</title><rect x="967.1" y="1973" width="0.1" height="15.0" fill="rgb(215,26,34)" rx="2" ry="2" />
<text x="970.05" y="1983.5" ></text>
</g>
<g >
<title>[snapctl] (35,582,030 samples, 0.17%)</title><rect x="945.1" y="1989" width="2.0" height="15.0" fill="rgb(231,139,15)" rx="2" ry="2" />
<text x="948.15" y="1999.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (1,938,823 samples, 0.01%)</title><rect x="856.4" y="1957" width="0.1" height="15.0" fill="rgb(250,71,54)" rx="2" ry="2" />
<text x="859.38" y="1967.5" ></text>
</g>
<g >
<title>ip_rcv (5,450,989 samples, 0.03%)</title><rect x="1169.5" y="1733" width="0.3" height="15.0" fill="rgb(235,149,11)" rx="2" ry="2" />
<text x="1172.48" y="1743.5" ></text>
</g>
<g >
<title>tick_sched_handle (3,793,641 samples, 0.02%)</title><rect x="555.5" y="1941" width="0.2" height="15.0" fill="rgb(230,175,4)" rx="2" ry="2" />
<text x="558.47" y="1951.5" ></text>
</g>
<g >
<title>skb_checksum (1,897,191 samples, 0.01%)</title><rect x="550.1" y="1829" width="0.1" height="15.0" fill="rgb(239,14,34)" rx="2" ry="2" />
<text x="553.14" y="1839.5" ></text>
</g>
<g >
<title>common_interrupt (1,913,765 samples, 0.01%)</title><rect x="567.9" y="1909" width="0.1" height="15.0" fill="rgb(211,170,9)" rx="2" ry="2" />
<text x="570.88" y="1919.5" ></text>
</g>
<g >
<title>__napi_build_skb (3,881,670 samples, 0.02%)</title><rect x="1144.3" y="1733" width="0.2" height="15.0" fill="rgb(253,66,27)" rx="2" ry="2" />
<text x="1147.27" y="1743.5" ></text>
</g>
<g >
<title>__x64_sys_newstat (2,693,361 samples, 0.01%)</title><rect x="66.0" y="1989" width="0.1" height="15.0" fill="rgb(206,82,39)" rx="2" ry="2" />
<text x="68.95" y="1999.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (2,080,119 samples, 0.01%)</title><rect x="74.2" y="1701" width="0.1" height="15.0" fill="rgb(250,83,3)" rx="2" ry="2" />
<text x="77.23" y="1711.5" ></text>
</g>
<g >
<title>dup_mmap (19,152,937 samples, 0.09%)</title><rect x="25.5" y="1925" width="1.1" height="15.0" fill="rgb(213,85,7)" rx="2" ry="2" />
<text x="28.53" y="1935.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (6,159,308 samples, 0.03%)</title><rect x="15.4" y="69" width="0.4" height="15.0" fill="rgb(251,37,48)" rx="2" ry="2" />
<text x="18.42" y="79.5" ></text>
</g>
<g >
<title>squashfs_get_datablock (43,702,984 samples, 0.20%)</title><rect x="933.7" y="1749" width="2.5" height="15.0" fill="rgb(245,186,2)" rx="2" ry="2" />
<text x="936.75" y="1759.5" ></text>
</g>
<g >
<title>clear_page_erms (4,209,954 samples, 0.02%)</title><rect x="418.5" y="1797" width="0.2" height="15.0" fill="rgb(224,200,38)" rx="2" ry="2" />
<text x="421.46" y="1807.5" ></text>
</g>
<g >
<title>__irqentry_text_start (5,634,453 samples, 0.03%)</title><rect x="455.0" y="2021" width="0.3" height="15.0" fill="rgb(237,5,16)" rx="2" ry="2" />
<text x="457.97" y="2031.5" ></text>
</g>
<g >
<title>[snapctl] (36,171,851 samples, 0.17%)</title><rect x="945.1" y="2005" width="2.0" height="15.0" fill="rgb(246,144,52)" rx="2" ry="2" />
<text x="948.15" y="2015.5" ></text>
</g>
<g >
<title>ip_rcv_core (3,553,695 samples, 0.02%)</title><rect x="1023.2" y="1749" width="0.2" height="15.0" fill="rgb(211,122,53)" rx="2" ry="2" />
<text x="1026.24" y="1759.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,269,074 samples, 0.01%)</title><rect x="887.3" y="1893" width="0.1" height="15.0" fill="rgb(217,147,29)" rx="2" ry="2" />
<text x="890.28" y="1903.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (2,288,171 samples, 0.01%)</title><rect x="440.1" y="1685" width="0.1" height="15.0" fill="rgb(245,162,45)" rx="2" ry="2" />
<text x="443.08" y="1695.5" ></text>
</g>
<g >
<title>strncpy (1,921,792 samples, 0.01%)</title><rect x="435.9" y="1781" width="0.1" height="15.0" fill="rgb(213,86,49)" rx="2" ry="2" />
<text x="438.92" y="1791.5" ></text>
</g>
<g >
<title>consume_skb (12,990,723 samples, 0.06%)</title><rect x="681.8" y="1733" width="0.7" height="15.0" fill="rgb(238,157,47)" rx="2" ry="2" />
<text x="684.78" y="1743.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (4,619,880 samples, 0.02%)</title><rect x="1063.0" y="1653" width="0.2" height="15.0" fill="rgb(227,164,37)" rx="2" ry="2" />
<text x="1065.99" y="1663.5" ></text>
</g>
<g >
<title>__siphash_unaligned (7,533,102 samples, 0.04%)</title><rect x="1042.1" y="1493" width="0.4" height="15.0" fill="rgb(234,180,35)" rx="2" ry="2" />
<text x="1045.08" y="1503.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="709" width="0.3" height="15.0" fill="rgb(229,117,20)" rx="2" ry="2" />
<text x="23.41" y="719.5" ></text>
</g>
<g >
<title>mprotect_fixup (2,696,203 samples, 0.01%)</title><rect x="848.8" y="1925" width="0.1" height="15.0" fill="rgb(247,16,11)" rx="2" ry="2" />
<text x="851.79" y="1935.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,947,939 samples, 0.01%)</title><rect x="1058.6" y="1861" width="0.1" height="15.0" fill="rgb(210,227,52)" rx="2" ry="2" />
<text x="1061.60" y="1871.5" ></text>
</g>
<g >
<title>net_rx_action (1,928,714 samples, 0.01%)</title><rect x="902.5" y="1749" width="0.1" height="15.0" fill="rgb(241,90,26)" rx="2" ry="2" />
<text x="905.48" y="1759.5" ></text>
</g>
<g >
<title>nf_checksum (10,668,008 samples, 0.05%)</title><rect x="823.3" y="1749" width="0.6" height="15.0" fill="rgb(247,227,42)" rx="2" ry="2" />
<text x="826.30" y="1759.5" ></text>
</g>
<g >
<title>exc_page_fault (1,918,822 samples, 0.01%)</title><rect x="1186.2" y="2005" width="0.1" height="15.0" fill="rgb(217,72,41)" rx="2" ry="2" />
<text x="1189.23" y="2015.5" ></text>
</g>
<g >
<title>sch_direct_xmit (5,751,214 samples, 0.03%)</title><rect x="53.8" y="1941" width="0.3" height="15.0" fill="rgb(250,37,2)" rx="2" ry="2" />
<text x="56.78" y="1951.5" ></text>
</g>
<g >
<title>get_cpu_device (2,680,679 samples, 0.01%)</title><rect x="1108.6" y="1941" width="0.1" height="15.0" fill="rgb(244,204,10)" rx="2" ry="2" />
<text x="1111.55" y="1951.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,234,079 samples, 0.01%)</title><rect x="1124.1" y="1669" width="0.1" height="15.0" fill="rgb(247,2,31)" rx="2" ry="2" />
<text x="1127.12" y="1679.5" ></text>
</g>
<g >
<title>_dl_allocate_static_tls (7,639,138 samples, 0.04%)</title><rect x="1186.1" y="2053" width="0.5" height="15.0" fill="rgb(238,157,51)" rx="2" ry="2" />
<text x="1189.13" y="2063.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,565,719 samples, 0.02%)</title><rect x="978.5" y="1957" width="0.2" height="15.0" fill="rgb(206,78,4)" rx="2" ry="2" />
<text x="981.51" y="1967.5" ></text>
</g>
<g >
<title>handle_edge_irq (4,259,068 samples, 0.02%)</title><rect x="957.9" y="1989" width="0.2" height="15.0" fill="rgb(211,4,4)" rx="2" ry="2" />
<text x="960.91" y="1999.5" ></text>
</g>
<g >
<title>[snapctl] (2,307,746 samples, 0.01%)</title><rect x="944.4" y="1909" width="0.1" height="15.0" fill="rgb(231,189,5)" rx="2" ry="2" />
<text x="947.39" y="1919.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (2,677,703 samples, 0.01%)</title><rect x="27.4" y="1813" width="0.1" height="15.0" fill="rgb(214,14,22)" rx="2" ry="2" />
<text x="30.39" y="1823.5" ></text>
</g>
<g >
<title>net_rx_action (2,239,631 samples, 0.01%)</title><rect x="627.7" y="1829" width="0.1" height="15.0" fill="rgb(251,226,18)" rx="2" ry="2" />
<text x="630.71" y="1839.5" ></text>
</g>
<g >
<title>squashfs_xz_uncompress (485,309,257 samples, 2.27%)</title><rect x="907.0" y="1701" width="26.7" height="15.0" fill="rgb(248,32,26)" rx="2" ry="2" />
<text x="909.96" y="1711.5" >s..</text>
</g>
<g >
<title>dev_hard_start_xmit (18,409,305 samples, 0.09%)</title><rect x="1122.8" y="1541" width="1.0" height="15.0" fill="rgb(215,115,31)" rx="2" ry="2" />
<text x="1125.79" y="1551.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,909,786 samples, 0.01%)</title><rect x="831.7" y="1909" width="0.1" height="15.0" fill="rgb(253,202,48)" rx="2" ry="2" />
<text x="834.74" y="1919.5" ></text>
</g>
<g >
<title>gro_cells_receive (1,870,816 samples, 0.01%)</title><rect x="671.1" y="1621" width="0.1" height="15.0" fill="rgb(211,102,34)" rx="2" ry="2" />
<text x="674.09" y="1631.5" ></text>
</g>
<g >
<title>do_fault (2,698,976 samples, 0.01%)</title><rect x="962.8" y="1941" width="0.2" height="15.0" fill="rgb(236,53,26)" rx="2" ry="2" />
<text x="965.84" y="1951.5" ></text>
</g>
<g >
<title>__napi_poll (5,979,009 samples, 0.03%)</title><rect x="629.3" y="1797" width="0.3" height="15.0" fill="rgb(220,193,21)" rx="2" ry="2" />
<text x="632.26" y="1807.5" ></text>
</g>
<g >
<title>handle_irq_event (58,262,213 samples, 0.27%)</title><rect x="1116.9" y="1813" width="3.2" height="15.0" fill="rgb(223,188,0)" rx="2" ry="2" />
<text x="1119.92" y="1823.5" ></text>
</g>
<g >
<title>skb_release_data (13,318,273 samples, 0.06%)</title><rect x="689.3" y="1765" width="0.7" height="15.0" fill="rgb(230,137,35)" rx="2" ry="2" />
<text x="692.31" y="1775.5" ></text>
</g>
<g >
<title>napi_gro_complete.constprop.0.isra.0 (1,853,534 samples, 0.01%)</title><rect x="1129.2" y="1733" width="0.1" height="15.0" fill="rgb(211,119,6)" rx="2" ry="2" />
<text x="1132.16" y="1743.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,282,788 samples, 0.01%)</title><rect x="455.9" y="1973" width="0.1" height="15.0" fill="rgb(233,122,1)" rx="2" ry="2" />
<text x="458.85" y="1983.5" ></text>
</g>
<g >
<title>sock_def_readable (13,722,278 samples, 0.06%)</title><rect x="1123.0" y="1493" width="0.8" height="15.0" fill="rgb(213,154,49)" rx="2" ry="2" />
<text x="1126.05" y="1503.5" ></text>
</g>
<g >
<title>__napi_poll (68,512,886 samples, 0.32%)</title><rect x="512.3" y="1941" width="3.8" height="15.0" fill="rgb(212,215,0)" rx="2" ry="2" />
<text x="515.34" y="1951.5" ></text>
</g>
<g >
<title>get_signal (1,886,621 samples, 0.01%)</title><rect x="942.2" y="1957" width="0.1" height="15.0" fill="rgb(216,27,15)" rx="2" ry="2" />
<text x="945.20" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,843,937 samples, 0.01%)</title><rect x="977.7" y="1845" width="0.2" height="15.0" fill="rgb(235,207,50)" rx="2" ry="2" />
<text x="980.75" y="1855.5" ></text>
</g>
<g >
<title>ip_forward_finish (14,099,491 samples, 0.07%)</title><rect x="435.0" y="1829" width="0.7" height="15.0" fill="rgb(245,8,29)" rx="2" ry="2" />
<text x="437.96" y="1839.5" ></text>
</g>
<g >
<title>__x64_sys_read (673,776,602 samples, 3.15%)</title><rect x="566.3" y="2005" width="37.1" height="15.0" fill="rgb(231,227,2)" rx="2" ry="2" />
<text x="569.27" y="2015.5" >__x..</text>
</g>
<g >
<title>ip6_sublist_rcv (1,901,966 samples, 0.01%)</title><rect x="980.1" y="1781" width="0.2" height="15.0" fill="rgb(212,67,45)" rx="2" ry="2" />
<text x="983.15" y="1791.5" ></text>
</g>
<g >
<title>common_interrupt (3,000,922 samples, 0.01%)</title><rect x="601.1" y="1909" width="0.2" height="15.0" fill="rgb(253,153,32)" rx="2" ry="2" />
<text x="604.13" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="533" width="0.3" height="15.0" fill="rgb(249,36,27)" rx="2" ry="2" />
<text x="23.41" y="543.5" ></text>
</g>
<g >
<title>__siphash_unaligned (2,367,972 samples, 0.01%)</title><rect x="1033.6" y="1653" width="0.2" height="15.0" fill="rgb(227,179,16)" rx="2" ry="2" />
<text x="1036.64" y="1663.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,888,927 samples, 0.01%)</title><rect x="1113.4" y="1909" width="0.1" height="15.0" fill="rgb(213,21,41)" rx="2" ry="2" />
<text x="1116.41" y="1919.5" ></text>
</g>
<g >
<title>common_interrupt (4,302,220 samples, 0.02%)</title><rect x="1062.3" y="1861" width="0.2" height="15.0" fill="rgb(227,64,13)" rx="2" ry="2" />
<text x="1065.31" y="1871.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,605,829 samples, 0.01%)</title><rect x="571.2" y="1829" width="0.1" height="15.0" fill="rgb(210,213,50)" rx="2" ry="2" />
<text x="574.16" y="1839.5" ></text>
</g>
<g >
<title>__fib_lookup (12,369,271 samples, 0.06%)</title><rect x="1125.4" y="1653" width="0.7" height="15.0" fill="rgb(243,67,31)" rx="2" ry="2" />
<text x="1128.40" y="1663.5" ></text>
</g>
<g >
<title>__alloc_skb (2,274,072 samples, 0.01%)</title><rect x="630.5" y="1893" width="0.1" height="15.0" fill="rgb(253,31,37)" rx="2" ry="2" />
<text x="633.48" y="1903.5" ></text>
</g>
<g >
<title>net_rx_action (6,933,929 samples, 0.03%)</title><rect x="1102.3" y="1861" width="0.4" height="15.0" fill="rgb(243,203,51)" rx="2" ry="2" />
<text x="1105.31" y="1871.5" ></text>
</g>
<g >
<title>nf_conntrack_in (8,372,061 samples, 0.04%)</title><rect x="680.3" y="1685" width="0.4" height="15.0" fill="rgb(243,206,28)" rx="2" ry="2" />
<text x="683.27" y="1695.5" ></text>
</g>
<g >
<title>security_file_open (3,467,401 samples, 0.02%)</title><rect x="845.0" y="1861" width="0.2" height="15.0" fill="rgb(223,139,24)" rx="2" ry="2" />
<text x="848.04" y="1871.5" ></text>
</g>
<g >
<title>page_frag_free (12,893,602 samples, 0.06%)</title><rect x="582.2" y="1861" width="0.7" height="15.0" fill="rgb(245,3,14)" rx="2" ry="2" />
<text x="585.18" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (141,673,915 samples, 0.66%)</title><rect x="393.5" y="277" width="7.8" height="15.0" fill="rgb(248,143,16)" rx="2" ry="2" />
<text x="396.46" y="287.5" ></text>
</g>
<g >
<title>schedule_idle (24,150,509 samples, 0.11%)</title><rect x="1112.6" y="1989" width="1.4" height="15.0" fill="rgb(206,148,30)" rx="2" ry="2" />
<text x="1115.63" y="1999.5" ></text>
</g>
<g >
<title>ip6_pol_route_input (2,004,632 samples, 0.01%)</title><rect x="495.3" y="1733" width="0.1" height="15.0" fill="rgb(254,212,21)" rx="2" ry="2" />
<text x="498.27" y="1743.5" ></text>
</g>
<g >
<title>__hrtimer_next_event_base (2,478,388 samples, 0.01%)</title><rect x="1167.7" y="1845" width="0.2" height="15.0" fill="rgb(237,179,23)" rx="2" ry="2" />
<text x="1170.73" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (6,840,034 samples, 0.03%)</title><rect x="437.1" y="1813" width="0.4" height="15.0" fill="rgb(214,104,4)" rx="2" ry="2" />
<text x="440.08" y="1823.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (91,127,482 samples, 0.43%)</title><rect x="753.4" y="1669" width="5.0" height="15.0" fill="rgb(229,94,11)" rx="2" ry="2" />
<text x="756.38" y="1679.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (2,768,590 samples, 0.01%)</title><rect x="1064.2" y="1717" width="0.2" height="15.0" fill="rgb(243,152,41)" rx="2" ry="2" />
<text x="1067.24" y="1727.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,939,552 samples, 0.01%)</title><rect x="856.6" y="1941" width="0.1" height="15.0" fill="rgb(218,46,21)" rx="2" ry="2" />
<text x="859.59" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (3,025,231,711 samples, 14.13%)</title><rect x="287.6" y="2021" width="166.8" height="15.0" fill="rgb(245,108,0)" rx="2" ry="2" />
<text x="290.61" y="2031.5" >[unknown]</text>
</g>
<g >
<title>nf_ip_checksum (4,214,967 samples, 0.02%)</title><rect x="819.6" y="1749" width="0.2" height="15.0" fill="rgb(241,9,26)" rx="2" ry="2" />
<text x="822.60" y="1759.5" ></text>
</g>
<g >
<title>mmap_region (1,925,586 samples, 0.01%)</title><rect x="66.3" y="1941" width="0.1" height="15.0" fill="rgb(239,57,39)" rx="2" ry="2" />
<text x="69.27" y="1951.5" ></text>
</g>
<g >
<title>_copy_from_iter (13,038,180 samples, 0.06%)</title><rect x="627.0" y="1893" width="0.7" height="15.0" fill="rgb(247,96,26)" rx="2" ry="2" />
<text x="629.97" y="1903.5" ></text>
</g>
<g >
<title>[snap] (7,035,424 samples, 0.03%)</title><rect x="894.6" y="1573" width="0.4" height="15.0" fill="rgb(248,223,52)" rx="2" ry="2" />
<text x="897.65" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (51,441,681 samples, 0.24%)</title><rect x="814.0" y="1749" width="2.8" height="15.0" fill="rgb(207,95,51)" rx="2" ry="2" />
<text x="817.01" y="1759.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (17,015,426 samples, 0.08%)</title><rect x="1062.6" y="1813" width="0.9" height="15.0" fill="rgb(212,175,38)" rx="2" ry="2" />
<text x="1065.61" y="1823.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (6,816,717 samples, 0.03%)</title><rect x="51.3" y="1845" width="0.4" height="15.0" fill="rgb(236,136,17)" rx="2" ry="2" />
<text x="54.28" y="1855.5" ></text>
</g>
<g >
<title>unmap_vmas (2,317,547 samples, 0.01%)</title><rect x="859.7" y="1925" width="0.2" height="15.0" fill="rgb(235,116,17)" rx="2" ry="2" />
<text x="862.73" y="1935.5" ></text>
</g>
<g >
<title>rtl8169_poll (22,100,334 samples, 0.10%)</title><rect x="1150.6" y="1781" width="1.2" height="15.0" fill="rgb(247,114,27)" rx="2" ry="2" />
<text x="1153.61" y="1791.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (52,576,312 samples, 0.25%)</title><rect x="693.2" y="1797" width="2.9" height="15.0" fill="rgb(253,54,45)" rx="2" ry="2" />
<text x="696.19" y="1807.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (2,314,105 samples, 0.01%)</title><rect x="1010.1" y="1509" width="0.1" height="15.0" fill="rgb(237,7,8)" rx="2" ry="2" />
<text x="1013.06" y="1519.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,258,761 samples, 0.01%)</title><rect x="609.9" y="1941" width="0.2" height="15.0" fill="rgb(253,3,33)" rx="2" ry="2" />
<text x="612.93" y="1951.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,948,106,516 samples, 23.11%)</title><rect x="565.1" y="2021" width="272.8" height="15.0" fill="rgb(229,37,1)" rx="2" ry="2" />
<text x="568.14" y="2031.5" >do_syscall_64</text>
</g>
<g >
<title>validate_xmit_skb (4,078,136 samples, 0.02%)</title><rect x="561.5" y="1909" width="0.3" height="15.0" fill="rgb(231,210,27)" rx="2" ry="2" />
<text x="564.53" y="1919.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,777,259 samples, 0.01%)</title><rect x="1112.9" y="1813" width="0.2" height="15.0" fill="rgb(232,21,51)" rx="2" ry="2" />
<text x="1115.93" y="1823.5" ></text>
</g>
<g >
<title>check_stack_object (5,661,117 samples, 0.03%)</title><rect x="626.6" y="1877" width="0.3" height="15.0" fill="rgb(228,123,35)" rx="2" ry="2" />
<text x="629.61" y="1887.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (1,825,111 samples, 0.01%)</title><rect x="1042.8" y="1493" width="0.1" height="15.0" fill="rgb(244,48,43)" rx="2" ry="2" />
<text x="1045.83" y="1503.5" ></text>
</g>
<g >
<title>bpf_prog_load (3,849,737 samples, 0.02%)</title><rect x="870.5" y="1973" width="0.3" height="15.0" fill="rgb(236,165,40)" rx="2" ry="2" />
<text x="873.54" y="1983.5" ></text>
</g>
<g >
<title>do_csum (4,574,088 samples, 0.02%)</title><rect x="1145.7" y="1621" width="0.3" height="15.0" fill="rgb(222,58,44)" rx="2" ry="2" />
<text x="1148.73" y="1631.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1269" width="1.1" height="15.0" fill="rgb(244,182,26)" rx="2" ry="2" />
<text x="886.75" y="1279.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (2,973,831 samples, 0.01%)</title><rect x="518.8" y="1845" width="0.2" height="15.0" fill="rgb(240,137,9)" rx="2" ry="2" />
<text x="521.81" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1285" width="0.3" height="15.0" fill="rgb(239,179,26)" rx="2" ry="2" />
<text x="23.41" y="1295.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (10,406,666 samples, 0.05%)</title><rect x="930.1" y="1525" width="0.6" height="15.0" fill="rgb(220,98,36)" rx="2" ry="2" />
<text x="933.11" y="1535.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,911,074 samples, 0.01%)</title><rect x="606.8" y="1877" width="0.1" height="15.0" fill="rgb(208,175,11)" rx="2" ry="2" />
<text x="609.80" y="1887.5" ></text>
</g>
<g >
<title>update_process_times (5,176,527 samples, 0.02%)</title><rect x="1061.1" y="1829" width="0.3" height="15.0" fill="rgb(235,84,37)" rx="2" ry="2" />
<text x="1064.06" y="1839.5" ></text>
</g>
<g >
<title>__do_sys_clone3 (4,119,246 samples, 0.02%)</title><rect x="942.4" y="1989" width="0.2" height="15.0" fill="rgb(219,58,15)" rx="2" ry="2" />
<text x="945.39" y="1999.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (4,618,708 samples, 0.02%)</title><rect x="56.0" y="1829" width="0.3" height="15.0" fill="rgb(222,37,9)" rx="2" ry="2" />
<text x="59.05" y="1839.5" ></text>
</g>
<g >
<title>ip6_output (61,290,405 samples, 0.29%)</title><rect x="1130.7" y="1669" width="3.4" height="15.0" fill="rgb(222,162,10)" rx="2" ry="2" />
<text x="1133.68" y="1679.5" ></text>
</g>
<g >
<title>path_openat (4,237,260 samples, 0.02%)</title><rect x="843.2" y="1941" width="0.2" height="15.0" fill="rgb(229,1,14)" rx="2" ry="2" />
<text x="846.22" y="1951.5" ></text>
</g>
<g >
<title>runtime.mcall (2,683,595 samples, 0.01%)</title><rect x="1178.7" y="1989" width="0.1" height="15.0" fill="rgb(235,90,46)" rx="2" ry="2" />
<text x="1181.65" y="1999.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (42,387,578 samples, 0.20%)</title><rect x="530.9" y="1941" width="2.4" height="15.0" fill="rgb(227,20,17)" rx="2" ry="2" />
<text x="533.94" y="1951.5" ></text>
</g>
<g >
<title>gdbus (71,375,720 samples, 0.33%)</title><rect x="42.9" y="2069" width="3.9" height="15.0" fill="rgb(254,20,14)" rx="2" ry="2" />
<text x="45.86" y="2079.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (154,256,328 samples, 0.72%)</title><rect x="540.1" y="1909" width="8.5" height="15.0" fill="rgb(228,189,50)" rx="2" ry="2" />
<text x="543.10" y="1919.5" ></text>
</g>
<g >
<title>__x64_sys_mprotect (5,410,216 samples, 0.03%)</title><rect x="966.5" y="1957" width="0.3" height="15.0" fill="rgb(218,142,38)" rx="2" ry="2" />
<text x="969.52" y="1967.5" ></text>
</g>
<g >
<title>__do_sys_newstat (6,540,596 samples, 0.03%)</title><rect x="842.9" y="1973" width="0.3" height="15.0" fill="rgb(207,64,48)" rx="2" ry="2" />
<text x="845.86" y="1983.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (7,221,449 samples, 0.03%)</title><rect x="857.2" y="1877" width="0.4" height="15.0" fill="rgb(227,219,54)" rx="2" ry="2" />
<text x="860.25" y="1887.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (33,618,137 samples, 0.16%)</title><rect x="466.5" y="1733" width="1.9" height="15.0" fill="rgb(233,98,19)" rx="2" ry="2" />
<text x="469.52" y="1743.5" ></text>
</g>
<g >
<title>inode_permission (12,774,387 samples, 0.06%)</title><rect x="852.9" y="1893" width="0.7" height="15.0" fill="rgb(211,218,9)" rx="2" ry="2" />
<text x="855.86" y="1903.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1189" width="1.1" height="15.0" fill="rgb(235,31,16)" rx="2" ry="2" />
<text x="886.75" y="1199.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (3,405,827 samples, 0.02%)</title><rect x="48.8" y="2037" width="0.2" height="15.0" fill="rgb(249,70,39)" rx="2" ry="2" />
<text x="51.77" y="2047.5" ></text>
</g>
<g >
<title>rtl8169_poll (2,304,820 samples, 0.01%)</title><rect x="645.8" y="1797" width="0.1" height="15.0" fill="rgb(252,13,45)" rx="2" ry="2" />
<text x="648.80" y="1807.5" ></text>
</g>
<g >
<title>unmap_page_range (2,317,547 samples, 0.01%)</title><rect x="859.7" y="1893" width="0.2" height="15.0" fill="rgb(208,78,50)" rx="2" ry="2" />
<text x="862.73" y="1903.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (4,144,594 samples, 0.02%)</title><rect x="573.9" y="1877" width="0.3" height="15.0" fill="rgb(227,147,44)" rx="2" ry="2" />
<text x="576.94" y="1887.5" ></text>
</g>
<g >
<title>__common_interrupt (129,317,603 samples, 0.60%)</title><rect x="455.5" y="1989" width="7.2" height="15.0" fill="rgb(230,42,4)" rx="2" ry="2" />
<text x="458.53" y="1999.5" ></text>
</g>
<g >
<title>napi_gro_receive (1,871,910 samples, 0.01%)</title><rect x="890.6" y="1541" width="0.1" height="15.0" fill="rgb(205,49,21)" rx="2" ry="2" />
<text x="893.59" y="1551.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (3,383,990 samples, 0.02%)</title><rect x="750.8" y="1605" width="0.2" height="15.0" fill="rgb(227,167,37)" rx="2" ry="2" />
<text x="753.81" y="1615.5" ></text>
</g>
<g >
<title>do_sys_openat2 (1,927,894 samples, 0.01%)</title><rect x="902.3" y="1749" width="0.1" height="15.0" fill="rgb(244,133,24)" rx="2" ry="2" />
<text x="905.34" y="1759.5" ></text>
</g>
<g >
<title>__schedule (3,833,380 samples, 0.02%)</title><rect x="525.6" y="1909" width="0.2" height="15.0" fill="rgb(211,119,44)" rx="2" ry="2" />
<text x="528.63" y="1919.5" ></text>
</g>
<g >
<title>perf_event_mmap_event (2,314,879 samples, 0.01%)</title><rect x="966.6" y="1893" width="0.1" height="15.0" fill="rgb(237,124,11)" rx="2" ry="2" />
<text x="969.56" y="1903.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (2,301,653 samples, 0.01%)</title><rect x="941.8" y="1973" width="0.1" height="15.0" fill="rgb(224,162,29)" rx="2" ry="2" />
<text x="944.78" y="1983.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_wait (2,301,727 samples, 0.01%)</title><rect x="76.4" y="1973" width="0.1" height="15.0" fill="rgb(253,103,17)" rx="2" ry="2" />
<text x="79.42" y="1983.5" ></text>
</g>
<g >
<title>tcp_v6_early_demux (2,450,176 samples, 0.01%)</title><rect x="1139.8" y="1669" width="0.1" height="15.0" fill="rgb(223,31,54)" rx="2" ry="2" />
<text x="1142.81" y="1679.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (2,851,092 samples, 0.01%)</title><rect x="419.5" y="1797" width="0.2" height="15.0" fill="rgb(223,195,38)" rx="2" ry="2" />
<text x="422.52" y="1807.5" ></text>
</g>
<g >
<title>skb_clone (5,294,981 samples, 0.02%)</title><rect x="752.2" y="1589" width="0.3" height="15.0" fill="rgb(217,128,16)" rx="2" ry="2" />
<text x="755.25" y="1599.5" ></text>
</g>
<g >
<title>common_interrupt (430,473,591 samples, 2.01%)</title><rect x="530.2" y="2021" width="23.7" height="15.0" fill="rgb(206,173,33)" rx="2" ry="2" />
<text x="533.19" y="2031.5" >c..</text>
</g>
<g >
<title>__napi_poll (2,268,767 samples, 0.01%)</title><rect x="632.7" y="1781" width="0.1" height="15.0" fill="rgb(243,182,27)" rx="2" ry="2" />
<text x="635.72" y="1791.5" ></text>
</g>
<g >
<title>rtl8169_tx_map (2,268,473 samples, 0.01%)</title><rect x="743.4" y="1381" width="0.1" height="15.0" fill="rgb(244,15,45)" rx="2" ry="2" />
<text x="746.37" y="1391.5" ></text>
</g>
<g >
<title>____sys_recvmsg (3,217,056 samples, 0.02%)</title><rect x="20.0" y="1925" width="0.2" height="15.0" fill="rgb(242,185,46)" rx="2" ry="2" />
<text x="23.01" y="1935.5" ></text>
</g>
<g >
<title>poll_idle (14,597,656 samples, 0.07%)</title><rect x="1164.3" y="1877" width="0.8" height="15.0" fill="rgb(248,228,17)" rx="2" ry="2" />
<text x="1167.30" y="1887.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (38,673,281 samples, 0.18%)</title><rect x="852.6" y="1909" width="2.2" height="15.0" fill="rgb(251,41,52)" rx="2" ry="2" />
<text x="855.62" y="1919.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,676,969 samples, 0.01%)</title><rect x="16.4" y="2005" width="0.2" height="15.0" fill="rgb(215,123,41)" rx="2" ry="2" />
<text x="19.41" y="2015.5" ></text>
</g>
<g >
<title>search_binary_handler (3,833,974 samples, 0.02%)</title><rect x="10.5" y="1925" width="0.2" height="15.0" fill="rgb(245,72,26)" rx="2" ry="2" />
<text x="13.49" y="1935.5" ></text>
</g>
<g >
<title>packet_rcv (15,923,270 samples, 0.07%)</title><rect x="1142.7" y="1717" width="0.8" height="15.0" fill="rgb(218,194,25)" rx="2" ry="2" />
<text x="1145.66" y="1727.5" ></text>
</g>
<g >
<title>do_group_exit (1,839,238 samples, 0.01%)</title><rect x="18.7" y="2005" width="0.1" height="15.0" fill="rgb(208,210,18)" rx="2" ry="2" />
<text x="21.71" y="2015.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,262,194 samples, 0.01%)</title><rect x="549.2" y="1861" width="0.1" height="15.0" fill="rgb(218,25,48)" rx="2" ry="2" />
<text x="552.21" y="1871.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,300,904 samples, 0.01%)</title><rect x="434.2" y="1925" width="0.1" height="15.0" fill="rgb(208,87,44)" rx="2" ry="2" />
<text x="437.22" y="1935.5" ></text>
</g>
<g >
<title>napi_complete_done (3,412,778 samples, 0.02%)</title><rect x="629.3" y="1765" width="0.2" height="15.0" fill="rgb(246,183,22)" rx="2" ry="2" />
<text x="632.30" y="1775.5" ></text>
</g>
<g >
<title>path_openat (7,131,707 samples, 0.03%)</title><rect x="1177.2" y="1941" width="0.4" height="15.0" fill="rgb(213,64,21)" rx="2" ry="2" />
<text x="1180.18" y="1951.5" ></text>
</g>
<g >
<title>nf_hook_slow_list (36,880,178 samples, 0.17%)</title><rect x="1047.5" y="1733" width="2.0" height="15.0" fill="rgb(250,213,19)" rx="2" ry="2" />
<text x="1050.47" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1621" width="0.3" height="15.0" fill="rgb(208,79,38)" rx="2" ry="2" />
<text x="23.41" y="1631.5" ></text>
</g>
<g >
<title>__ip6_finish_output (4,619,880 samples, 0.02%)</title><rect x="1063.0" y="1669" width="0.2" height="15.0" fill="rgb(247,50,18)" rx="2" ry="2" />
<text x="1065.99" y="1679.5" ></text>
</g>
<g >
<title>dev_queue_xmit (25,401,288 samples, 0.12%)</title><rect x="411.0" y="1701" width="1.4" height="15.0" fill="rgb(235,49,48)" rx="2" ry="2" />
<text x="413.98" y="1711.5" ></text>
</g>
<g >
<title>dec_main (21,152,418 samples, 0.10%)</title><rect x="955.6" y="1701" width="1.2" height="15.0" fill="rgb(232,187,30)" rx="2" ry="2" />
<text x="958.60" y="1711.5" ></text>
</g>
<g >
<title>rtl8169_poll (5,226,070 samples, 0.02%)</title><rect x="629.3" y="1781" width="0.3" height="15.0" fill="rgb(235,28,1)" rx="2" ry="2" />
<text x="632.30" y="1791.5" ></text>
</g>
<g >
<title>__x64_sys_openat (3,484,484 samples, 0.02%)</title><rect x="855.8" y="1989" width="0.2" height="15.0" fill="rgb(220,11,0)" rx="2" ry="2" />
<text x="858.84" y="1999.5" ></text>
</g>
<g >
<title>__x64_sys_ppoll (6,009,444 samples, 0.03%)</title><rect x="860.7" y="2005" width="0.4" height="15.0" fill="rgb(213,65,15)" rx="2" ry="2" />
<text x="863.74" y="2015.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_node (6,727,336 samples, 0.03%)</title><rect x="645.0" y="1877" width="0.4" height="15.0" fill="rgb(244,219,2)" rx="2" ry="2" />
<text x="648.03" y="1887.5" ></text>
</g>
<g >
<title>skb_checksum (2,030,073 samples, 0.01%)</title><rect x="1021.3" y="1733" width="0.1" height="15.0" fill="rgb(213,138,54)" rx="2" ry="2" />
<text x="1024.33" y="1743.5" ></text>
</g>
<g >
<title>[snap-exec] (7,317,031 samples, 0.03%)</title><rect x="874.1" y="1669" width="0.4" height="15.0" fill="rgb(230,90,5)" rx="2" ry="2" />
<text x="877.10" y="1679.5" ></text>
</g>
<g >
<title>ip_rcv_core (2,296,789 samples, 0.01%)</title><rect x="653.8" y="1749" width="0.2" height="15.0" fill="rgb(237,177,8)" rx="2" ry="2" />
<text x="656.83" y="1759.5" ></text>
</g>
<g >
<title>process_backlog (2,259,023 samples, 0.01%)</title><rect x="571.0" y="1861" width="0.1" height="15.0" fill="rgb(211,10,39)" rx="2" ry="2" />
<text x="574.01" y="1871.5" ></text>
</g>
<g >
<title>search_binary_handler (1,923,221 samples, 0.01%)</title><rect x="858.5" y="1925" width="0.1" height="15.0" fill="rgb(224,63,4)" rx="2" ry="2" />
<text x="861.49" y="1935.5" ></text>
</g>
<g >
<title>do_exit (2,692,616 samples, 0.01%)</title><rect x="19.3" y="1989" width="0.2" height="15.0" fill="rgb(227,12,35)" rx="2" ry="2" />
<text x="22.34" y="1999.5" ></text>
</g>
<g >
<title>nf_hook_slow (12,111,625 samples, 0.06%)</title><rect x="1004.6" y="1733" width="0.7" height="15.0" fill="rgb(249,78,46)" rx="2" ry="2" />
<text x="1007.61" y="1743.5" ></text>
</g>
<g >
<title>tcp4_gro_receive (8,707,238 samples, 0.04%)</title><rect x="500.1" y="1813" width="0.5" height="15.0" fill="rgb(245,178,21)" rx="2" ry="2" />
<text x="503.13" y="1823.5" ></text>
</g>
<g >
<title>native_sched_clock (3,084,014 samples, 0.01%)</title><rect x="1059.5" y="1829" width="0.2" height="15.0" fill="rgb(213,185,47)" rx="2" ry="2" />
<text x="1062.54" y="1839.5" ></text>
</g>
<g >
<title>sched_clock (3,200,414 samples, 0.01%)</title><rect x="1165.4" y="1861" width="0.2" height="15.0" fill="rgb(215,211,5)" rx="2" ry="2" />
<text x="1168.39" y="1871.5" ></text>
</g>
<g >
<title>neigh_resolve_output (2,672,771 samples, 0.01%)</title><rect x="440.1" y="1733" width="0.1" height="15.0" fill="rgb(216,182,53)" rx="2" ry="2" />
<text x="443.06" y="1743.5" ></text>
</g>
<g >
<title>dql_completed (2,864,126 samples, 0.01%)</title><rect x="1128.1" y="1765" width="0.2" height="15.0" fill="rgb(215,122,24)" rx="2" ry="2" />
<text x="1131.13" y="1775.5" ></text>
</g>
<g >
<title>[unknown] (20,958,283 samples, 0.10%)</title><rect x="1047.9" y="1669" width="1.2" height="15.0" fill="rgb(246,56,54)" rx="2" ry="2" />
<text x="1050.91" y="1679.5" ></text>
</g>
<g >
<title>fib6_rule_action (2,003,253 samples, 0.01%)</title><rect x="55.9" y="1765" width="0.1" height="15.0" fill="rgb(244,92,21)" rx="2" ry="2" />
<text x="58.92" y="1775.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,913,765 samples, 0.01%)</title><rect x="567.9" y="1877" width="0.1" height="15.0" fill="rgb(241,61,38)" rx="2" ry="2" />
<text x="570.88" y="1887.5" ></text>
</g>
<g >
<title>neigh_hh_output (1,915,517 samples, 0.01%)</title><rect x="450.1" y="1733" width="0.1" height="15.0" fill="rgb(234,140,7)" rx="2" ry="2" />
<text x="453.14" y="1743.5" ></text>
</g>
<g >
<title>call_timer_fn (2,068,947 samples, 0.01%)</title><rect x="1069.0" y="1845" width="0.1" height="15.0" fill="rgb(222,132,19)" rx="2" ry="2" />
<text x="1072.03" y="1855.5" ></text>
</g>
<g >
<title>__x64_sys_execve (1,815,572 samples, 0.01%)</title><rect x="903.3" y="1861" width="0.1" height="15.0" fill="rgb(241,25,21)" rx="2" ry="2" />
<text x="906.33" y="1871.5" ></text>
</g>
<g >
<title>__siphash_unaligned (3,279,489 samples, 0.02%)</title><rect x="1009.9" y="1509" width="0.2" height="15.0" fill="rgb(240,185,13)" rx="2" ry="2" />
<text x="1012.87" y="1519.5" ></text>
</g>
<g >
<title>__napi_poll (229,835,400 samples, 1.07%)</title><rect x="434.6" y="1925" width="12.7" height="15.0" fill="rgb(248,63,27)" rx="2" ry="2" />
<text x="437.62" y="1935.5" ></text>
</g>
<g >
<title>__x64_sys_execve (3,833,974 samples, 0.02%)</title><rect x="10.5" y="2005" width="0.2" height="15.0" fill="rgb(247,5,8)" rx="2" ry="2" />
<text x="13.49" y="2015.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,639,415 samples, 0.01%)</title><rect x="888.0" y="1957" width="0.2" height="15.0" fill="rgb(227,213,23)" rx="2" ry="2" />
<text x="891.04" y="1967.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (4,186,126 samples, 0.02%)</title><rect x="71.0" y="1909" width="0.3" height="15.0" fill="rgb(240,199,12)" rx="2" ry="2" />
<text x="74.04" y="1919.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,318,126 samples, 0.01%)</title><rect x="851.0" y="2021" width="0.2" height="15.0" fill="rgb(229,122,42)" rx="2" ry="2" />
<text x="854.03" y="2031.5" ></text>
</g>
<g >
<title>ip_output (3,423,437 samples, 0.02%)</title><rect x="512.4" y="1829" width="0.2" height="15.0" fill="rgb(253,5,34)" rx="2" ry="2" />
<text x="515.44" y="1839.5" ></text>
</g>
<g >
<title>[snapd] (8,895,247 samples, 0.04%)</title><rect x="974.6" y="1669" width="0.5" height="15.0" fill="rgb(220,186,7)" rx="2" ry="2" />
<text x="977.65" y="1679.5" ></text>
</g>
<g >
<title>rtl8169_poll (2,326,520 samples, 0.01%)</title><rect x="853.3" y="1781" width="0.1" height="15.0" fill="rgb(219,33,53)" rx="2" ry="2" />
<text x="856.28" y="1791.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,283,926 samples, 0.01%)</title><rect x="22.3" y="2037" width="0.2" height="15.0" fill="rgb(251,9,42)" rx="2" ry="2" />
<text x="25.33" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="645" width="8.8" height="15.0" fill="rgb(248,2,37)" rx="2" ry="2" />
<text x="396.46" y="655.5" ></text>
</g>
<g >
<title>__mmc_claim_host (3,071,869 samples, 0.01%)</title><rect x="64.1" y="1845" width="0.2" height="15.0" fill="rgb(240,3,25)" rx="2" ry="2" />
<text x="67.15" y="1855.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (3,005,679 samples, 0.01%)</title><rect x="622.5" y="1797" width="0.2" height="15.0" fill="rgb(251,174,30)" rx="2" ry="2" />
<text x="625.54" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (161,795,642 samples, 0.76%)</title><rect x="393.5" y="1525" width="8.9" height="15.0" fill="rgb(246,38,5)" rx="2" ry="2" />
<text x="396.46" y="1535.5" ></text>
</g>
<g >
<title>__schedule (23,440,441 samples, 0.11%)</title><rect x="1112.7" y="1973" width="1.2" height="15.0" fill="rgb(253,215,42)" rx="2" ry="2" />
<text x="1115.65" y="1983.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,903,599 samples, 0.01%)</title><rect x="728.4" y="1461" width="0.1" height="15.0" fill="rgb(222,169,41)" rx="2" ry="2" />
<text x="731.35" y="1471.5" ></text>
</g>
<g >
<title>[unknown] (2,372,744 samples, 0.01%)</title><rect x="1022.8" y="1733" width="0.2" height="15.0" fill="rgb(240,126,33)" rx="2" ry="2" />
<text x="1025.85" y="1743.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (97,605,055 samples, 0.46%)</title><rect x="1149.8" y="1829" width="5.4" height="15.0" fill="rgb(253,48,25)" rx="2" ry="2" />
<text x="1152.84" y="1839.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,430,389 samples, 0.02%)</title><rect x="613.6" y="1925" width="0.2" height="15.0" fill="rgb(246,204,48)" rx="2" ry="2" />
<text x="616.64" y="1935.5" ></text>
</g>
<g >
<title>ip6_route_input (3,311,447 samples, 0.02%)</title><rect x="501.7" y="1781" width="0.1" height="15.0" fill="rgb(239,25,51)" rx="2" ry="2" />
<text x="504.67" y="1791.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (1,904,963 samples, 0.01%)</title><rect x="46.8" y="2021" width="0.1" height="15.0" fill="rgb(205,186,15)" rx="2" ry="2" />
<text x="49.83" y="2031.5" ></text>
</g>
<g >
<title>ext4_dirty_inode (18,651,118 samples, 0.09%)</title><rect x="75.0" y="1733" width="1.0" height="15.0" fill="rgb(237,179,47)" rx="2" ry="2" />
<text x="78.02" y="1743.5" ></text>
</g>
<g >
<title>[snap-exec] (2,689,814 samples, 0.01%)</title><rect x="874.3" y="1589" width="0.2" height="15.0" fill="rgb(207,5,11)" rx="2" ry="2" />
<text x="877.33" y="1599.5" ></text>
</g>
<g >
<title>enqueue_task (3,367,709 samples, 0.02%)</title><rect x="1060.7" y="1797" width="0.2" height="15.0" fill="rgb(216,161,8)" rx="2" ry="2" />
<text x="1063.72" y="1807.5" ></text>
</g>
<g >
<title>cake_dequeue (1,984,383 samples, 0.01%)</title><rect x="1010.8" y="1541" width="0.1" height="15.0" fill="rgb(225,228,25)" rx="2" ry="2" />
<text x="1013.77" y="1551.5" ></text>
</g>
<g >
<title>[snapd] (24,161,924 samples, 0.11%)</title><rect x="975.6" y="2021" width="1.3" height="15.0" fill="rgb(219,5,40)" rx="2" ry="2" />
<text x="978.56" y="2031.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (1,865,329 samples, 0.01%)</title><rect x="1066.5" y="1813" width="0.1" height="15.0" fill="rgb(211,218,10)" rx="2" ry="2" />
<text x="1069.49" y="1823.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (11,012,342 samples, 0.05%)</title><rect x="1069.6" y="1909" width="0.6" height="15.0" fill="rgb(243,48,4)" rx="2" ry="2" />
<text x="1072.58" y="1919.5" ></text>
</g>
<g >
<title>[snap] (92,354,973 samples, 0.43%)</title><rect x="898.3" y="1909" width="5.1" height="15.0" fill="rgb(207,80,53)" rx="2" ry="2" />
<text x="901.34" y="1919.5" ></text>
</g>
<g >
<title>__netlink_request (8,697,138 samples, 0.04%)</title><rect x="70.9" y="2021" width="0.5" height="15.0" fill="rgb(242,59,20)" rx="2" ry="2" />
<text x="73.92" y="2031.5" ></text>
</g>
<g >
<title>net_rx_action (1,919,770 samples, 0.01%)</title><rect x="641.6" y="1765" width="0.1" height="15.0" fill="rgb(232,99,1)" rx="2" ry="2" />
<text x="644.64" y="1775.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (13,586,929 samples, 0.06%)</title><rect x="518.7" y="1893" width="0.8" height="15.0" fill="rgb(239,94,20)" rx="2" ry="2" />
<text x="521.75" y="1903.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,253,168 samples, 0.01%)</title><rect x="564.9" y="1957" width="0.1" height="15.0" fill="rgb(207,125,30)" rx="2" ry="2" />
<text x="567.91" y="1967.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (11,041,377 samples, 0.05%)</title><rect x="406.7" y="1701" width="0.6" height="15.0" fill="rgb(253,207,36)" rx="2" ry="2" />
<text x="409.74" y="1711.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,907,731 samples, 0.01%)</title><rect x="626.1" y="1685" width="0.1" height="15.0" fill="rgb(218,31,9)" rx="2" ry="2" />
<text x="629.09" y="1695.5" ></text>
</g>
<g >
<title>asm_common_interrupt (4,571,926 samples, 0.02%)</title><rect x="593.9" y="1829" width="0.2" height="15.0" fill="rgb(240,79,40)" rx="2" ry="2" />
<text x="596.86" y="1839.5" ></text>
</g>
<g >
<title>squashfs_xz_uncompress (11,239,380 samples, 0.05%)</title><rect x="31.4" y="1701" width="0.6" height="15.0" fill="rgb(222,54,16)" rx="2" ry="2" />
<text x="34.41" y="1711.5" ></text>
</g>
<g >
<title>[libgobject-2.0.so.0.6400.6] (2,312,888 samples, 0.01%)</title><rect x="971.0" y="2037" width="0.2" height="15.0" fill="rgb(210,54,52)" rx="2" ry="2" />
<text x="974.03" y="2047.5" ></text>
</g>
<g >
<title>skb_release_data (51,729,477 samples, 0.24%)</title><rect x="1053.7" y="1797" width="2.9" height="15.0" fill="rgb(221,194,53)" rx="2" ry="2" />
<text x="1056.71" y="1807.5" ></text>
</g>
<g >
<title>ipv4_conntrack_in (5,203,906 samples, 0.02%)</title><rect x="1033.8" y="1701" width="0.3" height="15.0" fill="rgb(247,127,36)" rx="2" ry="2" />
<text x="1036.85" y="1711.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (3,453,094 samples, 0.02%)</title><rect x="612.0" y="1781" width="0.2" height="15.0" fill="rgb(227,207,24)" rx="2" ry="2" />
<text x="614.96" y="1791.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (14,492,699 samples, 0.07%)</title><rect x="63.7" y="1957" width="0.8" height="15.0" fill="rgb(212,125,54)" rx="2" ry="2" />
<text x="66.68" y="1967.5" ></text>
</g>
<g >
<title>[unknown] (17,290,993 samples, 0.08%)</title><rect x="1032.7" y="1653" width="0.9" height="15.0" fill="rgb(238,229,25)" rx="2" ry="2" />
<text x="1035.68" y="1663.5" ></text>
</g>
<g >
<title>__common_interrupt (69,978,166 samples, 0.33%)</title><rect x="1116.5" y="1845" width="3.9" height="15.0" fill="rgb(231,106,16)" rx="2" ry="2" />
<text x="1119.51" y="1855.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (30,813,423 samples, 0.14%)</title><rect x="693.3" y="1765" width="1.7" height="15.0" fill="rgb(254,94,5)" rx="2" ry="2" />
<text x="696.28" y="1775.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,920,421 samples, 0.01%)</title><rect x="854.7" y="1861" width="0.1" height="15.0" fill="rgb(229,202,5)" rx="2" ry="2" />
<text x="857.65" y="1871.5" ></text>
</g>
<g >
<title>__kmalloc_node_track_caller (5,666,445 samples, 0.03%)</title><rect x="485.1" y="1797" width="0.3" height="15.0" fill="rgb(243,69,14)" rx="2" ry="2" />
<text x="488.10" y="1807.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1173" width="0.5" height="15.0" fill="rgb(206,71,12)" rx="2" ry="2" />
<text x="18.42" y="1183.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,213,646 samples, 0.01%)</title><rect x="43.9" y="1973" width="0.2" height="15.0" fill="rgb(247,70,13)" rx="2" ry="2" />
<text x="46.95" y="1983.5" ></text>
</g>
<g >
<title>asm_common_interrupt (4,047,165 samples, 0.02%)</title><rect x="568.7" y="1973" width="0.3" height="15.0" fill="rgb(211,43,26)" rx="2" ry="2" />
<text x="571.75" y="1983.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,371,612 samples, 0.02%)</title><rect x="610.3" y="1861" width="0.2" height="15.0" fill="rgb(208,64,42)" rx="2" ry="2" />
<text x="613.31" y="1871.5" ></text>
</g>
<g >
<title>common_interrupt (3,287,270 samples, 0.02%)</title><rect x="1105.0" y="1925" width="0.2" height="15.0" fill="rgb(220,32,21)" rx="2" ry="2" />
<text x="1107.98" y="1935.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="949" width="1.1" height="15.0" fill="rgb(235,205,10)" rx="2" ry="2" />
<text x="886.75" y="959.5" ></text>
</g>
<g >
<title>[unknown] (3,275,614 samples, 0.02%)</title><rect x="543.9" y="1765" width="0.2" height="15.0" fill="rgb(235,146,41)" rx="2" ry="2" />
<text x="546.94" y="1775.5" ></text>
</g>
<g >
<title>do_csum (1,915,674 samples, 0.01%)</title><rect x="445.7" y="1717" width="0.1" height="15.0" fill="rgb(229,192,42)" rx="2" ry="2" />
<text x="448.65" y="1727.5" ></text>
</g>
<g >
<title>__put_cred (5,809,938 samples, 0.03%)</title><rect x="968.6" y="1941" width="0.3" height="15.0" fill="rgb(246,1,33)" rx="2" ry="2" />
<text x="971.56" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1813" width="0.3" height="15.0" fill="rgb(222,183,5)" rx="2" ry="2" />
<text x="23.41" y="1823.5" ></text>
</g>
<g >
<title>ip6_output (2,050,547 samples, 0.01%)</title><rect x="979.9" y="1733" width="0.1" height="15.0" fill="rgb(216,198,1)" rx="2" ry="2" />
<text x="982.87" y="1743.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (4,997,808 samples, 0.02%)</title><rect x="15.4" y="53" width="0.3" height="15.0" fill="rgb(206,209,54)" rx="2" ry="2" />
<text x="18.42" y="63.5" ></text>
</g>
<g >
<title>netif_rx_internal (1,918,834 samples, 0.01%)</title><rect x="413.6" y="1669" width="0.1" height="15.0" fill="rgb(209,161,46)" rx="2" ry="2" />
<text x="416.63" y="1679.5" ></text>
</g>
<g >
<title>ip6_route_input (16,746,913 samples, 0.08%)</title><rect x="414.8" y="1781" width="0.9" height="15.0" fill="rgb(215,42,28)" rx="2" ry="2" />
<text x="417.80" y="1791.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,832,644 samples, 0.01%)</title><rect x="997.8" y="1829" width="0.1" height="15.0" fill="rgb(212,191,32)" rx="2" ry="2" />
<text x="1000.79" y="1839.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (10,083,372 samples, 0.05%)</title><rect x="687.7" y="1733" width="0.6" height="15.0" fill="rgb(252,189,1)" rx="2" ry="2" />
<text x="690.70" y="1743.5" ></text>
</g>
<g >
<title>irq_exit_rcu (7,626,626 samples, 0.04%)</title><rect x="591.9" y="1765" width="0.4" height="15.0" fill="rgb(219,146,2)" rx="2" ry="2" />
<text x="594.87" y="1775.5" ></text>
</g>
<g >
<title>__ip6_finish_output (1,915,517 samples, 0.01%)</title><rect x="450.1" y="1765" width="0.1" height="15.0" fill="rgb(214,88,33)" rx="2" ry="2" />
<text x="453.14" y="1775.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (2,295,259 samples, 0.01%)</title><rect x="625.8" y="1701" width="0.1" height="15.0" fill="rgb(227,2,11)" rx="2" ry="2" />
<text x="628.78" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (1,868,462 samples, 0.01%)</title><rect x="541.2" y="1669" width="0.1" height="15.0" fill="rgb(242,148,29)" rx="2" ry="2" />
<text x="544.17" y="1679.5" ></text>
</g>
<g >
<title>napi_complete_done (1,910,089 samples, 0.01%)</title><rect x="646.6" y="1765" width="0.1" height="15.0" fill="rgb(251,204,8)" rx="2" ry="2" />
<text x="649.63" y="1775.5" ></text>
</g>
<g >
<title>skb_free_head (10,312,090 samples, 0.05%)</title><rect x="689.5" y="1749" width="0.5" height="15.0" fill="rgb(212,183,20)" rx="2" ry="2" />
<text x="692.47" y="1759.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,896,899 samples, 0.01%)</title><rect x="817.1" y="1701" width="0.1" height="15.0" fill="rgb(222,3,2)" rx="2" ry="2" />
<text x="820.11" y="1711.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,397,591 samples, 0.03%)</title><rect x="962.7" y="1973" width="0.3" height="15.0" fill="rgb(219,187,35)" rx="2" ry="2" />
<text x="965.71" y="1983.5" ></text>
</g>
<g >
<title>rtl_tx (1,926,846 samples, 0.01%)</title><rect x="930.6" y="1461" width="0.1" height="15.0" fill="rgb(235,109,49)" rx="2" ry="2" />
<text x="933.58" y="1471.5" ></text>
</g>
<g >
<title>lzo_uncompress (2,298,416 samples, 0.01%)</title><rect x="955.5" y="1733" width="0.1" height="15.0" fill="rgb(205,56,1)" rx="2" ry="2" />
<text x="958.45" y="1743.5" ></text>
</g>
<g >
<title>common_interrupt (7,294,430 samples, 0.03%)</title><rect x="33.1" y="2005" width="0.4" height="15.0" fill="rgb(226,196,34)" rx="2" ry="2" />
<text x="36.08" y="2015.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,295,209 samples, 0.01%)</title><rect x="57.1" y="1813" width="0.1" height="15.0" fill="rgb(232,88,11)" rx="2" ry="2" />
<text x="60.09" y="1823.5" ></text>
</g>
<g >
<title>nft_meta_get_eval (2,639,599 samples, 0.01%)</title><rect x="776.0" y="1781" width="0.2" height="15.0" fill="rgb(247,21,12)" rx="2" ry="2" />
<text x="779.03" y="1791.5" ></text>
</g>
<g >
<title>rtl8169_poll (5,357,335 samples, 0.03%)</title><rect x="611.9" y="1845" width="0.3" height="15.0" fill="rgb(249,1,36)" rx="2" ry="2" />
<text x="614.94" y="1855.5" ></text>
</g>
<g >
<title>load_elf_binary (3,833,974 samples, 0.02%)</title><rect x="10.5" y="1909" width="0.2" height="15.0" fill="rgb(230,114,7)" rx="2" ry="2" />
<text x="13.49" y="1919.5" ></text>
</g>
<g >
<title>tick_do_update_jiffies64 (1,859,239 samples, 0.01%)</title><rect x="509.3" y="1925" width="0.1" height="15.0" fill="rgb(237,80,22)" rx="2" ry="2" />
<text x="512.31" y="1935.5" ></text>
</g>
<g >
<title>dequeue_skb (21,463,248 samples, 0.10%)</title><rect x="1039.3" y="1541" width="1.2" height="15.0" fill="rgb(226,109,26)" rx="2" ry="2" />
<text x="1042.32" y="1551.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (2,309,057 samples, 0.01%)</title><rect x="842.5" y="1957" width="0.1" height="15.0" fill="rgb(254,46,37)" rx="2" ry="2" />
<text x="845.47" y="1967.5" ></text>
</g>
<g >
<title>generic_write_end (22,361,564 samples, 0.10%)</title><rect x="74.8" y="1765" width="1.2" height="15.0" fill="rgb(237,72,42)" rx="2" ry="2" />
<text x="77.81" y="1775.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="1045" width="1.1" height="15.0" fill="rgb(247,205,18)" rx="2" ry="2" />
<text x="886.75" y="1055.5" ></text>
</g>
<g >
<title>unmap_single_vma (10,515,474 samples, 0.05%)</title><rect x="40.8" y="1909" width="0.6" height="15.0" fill="rgb(228,133,41)" rx="2" ry="2" />
<text x="43.80" y="1919.5" ></text>
</g>
<g >
<title>__check_object_size (2,706,534 samples, 0.01%)</title><rect x="855.4" y="1893" width="0.1" height="15.0" fill="rgb(214,70,14)" rx="2" ry="2" />
<text x="858.37" y="1903.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (52,192,533 samples, 0.24%)</title><rect x="693.2" y="1781" width="2.9" height="15.0" fill="rgb(250,222,34)" rx="2" ry="2" />
<text x="696.21" y="1791.5" ></text>
</g>
<g >
<title>common_interrupt (2,302,503 samples, 0.01%)</title><rect x="580.5" y="1845" width="0.1" height="15.0" fill="rgb(229,28,1)" rx="2" ry="2" />
<text x="583.49" y="1855.5" ></text>
</g>
<g >
<title>[snap-exec] (3,823,862 samples, 0.02%)</title><rect x="872.0" y="1925" width="0.2" height="15.0" fill="rgb(253,103,34)" rx="2" ry="2" />
<text x="875.00" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,699,328 samples, 0.01%)</title><rect x="962.2" y="2005" width="0.1" height="15.0" fill="rgb(212,175,28)" rx="2" ry="2" />
<text x="965.18" y="2015.5" ></text>
</g>
<g >
<title>ip_forward_finish (3,423,437 samples, 0.02%)</title><rect x="512.4" y="1845" width="0.2" height="15.0" fill="rgb(230,133,10)" rx="2" ry="2" />
<text x="515.44" y="1855.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (1,886,621 samples, 0.01%)</title><rect x="942.2" y="1989" width="0.1" height="15.0" fill="rgb(253,39,11)" rx="2" ry="2" />
<text x="945.20" y="1999.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (3,980,387 samples, 0.02%)</title><rect x="71.8" y="1909" width="0.2" height="15.0" fill="rgb(245,104,17)" rx="2" ry="2" />
<text x="74.80" y="1919.5" ></text>
</g>
<g >
<title>common_perm_cond (2,688,421 samples, 0.01%)</title><rect x="35.6" y="1909" width="0.2" height="15.0" fill="rgb(215,142,2)" rx="2" ry="2" />
<text x="38.63" y="1919.5" ></text>
</g>
<g >
<title>dequeue_skb (9,050,215 samples, 0.04%)</title><rect x="664.2" y="1557" width="0.5" height="15.0" fill="rgb(248,162,34)" rx="2" ry="2" />
<text x="667.23" y="1567.5" ></text>
</g>
<g >
<title>skb_release_data (15,833,255 samples, 0.07%)</title><rect x="503.4" y="1877" width="0.8" height="15.0" fill="rgb(219,100,40)" rx="2" ry="2" />
<text x="506.37" y="1887.5" ></text>
</g>
<g >
<title>rpm_callback (3,071,869 samples, 0.01%)</title><rect x="64.1" y="1797" width="0.2" height="15.0" fill="rgb(213,56,44)" rx="2" ry="2" />
<text x="67.15" y="1807.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="917" width="0.2" height="15.0" fill="rgb(249,102,9)" rx="2" ry="2" />
<text x="897.72" y="927.5" ></text>
</g>
<g >
<title>__spawnix (3,449,712 samples, 0.02%)</title><rect x="869.7" y="2053" width="0.2" height="15.0" fill="rgb(225,47,45)" rx="2" ry="2" />
<text x="872.71" y="2063.5" ></text>
</g>
<g >
<title>dup_mm (6,959,086 samples, 0.03%)</title><rect x="963.0" y="1941" width="0.4" height="15.0" fill="rgb(238,86,9)" rx="2" ry="2" />
<text x="966.01" y="1951.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (86,796,251 samples, 0.41%)</title><rect x="478.3" y="1765" width="4.7" height="15.0" fill="rgb(250,76,34)" rx="2" ry="2" />
<text x="481.26" y="1775.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,658,281 samples, 0.01%)</title><rect x="700.5" y="1829" width="0.1" height="15.0" fill="rgb(219,73,25)" rx="2" ry="2" />
<text x="703.50" y="1839.5" ></text>
</g>
<g >
<title>search_binary_handler (8,076,231 samples, 0.04%)</title><rect x="847.1" y="1925" width="0.4" height="15.0" fill="rgb(221,119,23)" rx="2" ry="2" />
<text x="850.08" y="1935.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="869" width="1.1" height="15.0" fill="rgb(224,180,54)" rx="2" ry="2" />
<text x="886.75" y="879.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (262,247,746 samples, 1.22%)</title><rect x="1129.3" y="1749" width="14.4" height="15.0" fill="rgb(234,203,10)" rx="2" ry="2" />
<text x="1132.26" y="1759.5" ></text>
</g>
<g >
<title>kfree_skbmem (58,499,871 samples, 0.27%)</title><rect x="576.1" y="1893" width="3.2" height="15.0" fill="rgb(222,146,24)" rx="2" ry="2" />
<text x="579.12" y="1903.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (2,365,218 samples, 0.01%)</title><rect x="55.9" y="1829" width="0.1" height="15.0" fill="rgb(206,172,50)" rx="2" ry="2" />
<text x="58.92" y="1839.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (2,886,870 samples, 0.01%)</title><rect x="44.4" y="1957" width="0.2" height="15.0" fill="rgb(249,171,33)" rx="2" ry="2" />
<text x="47.45" y="1967.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,304,452 samples, 0.01%)</title><rect x="875.3" y="1797" width="0.2" height="15.0" fill="rgb(206,182,6)" rx="2" ry="2" />
<text x="878.35" y="1807.5" ></text>
</g>
<g >
<title>rtl_tx (15,827,933 samples, 0.07%)</title><rect x="419.9" y="1877" width="0.8" height="15.0" fill="rgb(235,2,29)" rx="2" ry="2" />
<text x="422.88" y="1887.5" ></text>
</g>
<g >
<title>__napi_alloc_skb (4,625,812 samples, 0.02%)</title><rect x="1063.6" y="1813" width="0.2" height="15.0" fill="rgb(250,89,49)" rx="2" ry="2" />
<text x="1066.56" y="1823.5" ></text>
</g>
<g >
<title>asm_common_interrupt (11,218,974 samples, 0.05%)</title><rect x="621.7" y="1909" width="0.6" height="15.0" fill="rgb(254,199,14)" rx="2" ry="2" />
<text x="624.67" y="1919.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,943,241 samples, 0.02%)</title><rect x="620.9" y="1893" width="0.2" height="15.0" fill="rgb(228,192,11)" rx="2" ry="2" />
<text x="623.87" y="1903.5" ></text>
</g>
<g >
<title>do_fault (2,702,241 samples, 0.01%)</title><rect x="30.9" y="1925" width="0.2" height="15.0" fill="rgb(208,51,20)" rx="2" ry="2" />
<text x="33.92" y="1935.5" ></text>
</g>
<g >
<title>squashfs_read_data (1,891,043 samples, 0.01%)</title><rect x="965.9" y="1733" width="0.1" height="15.0" fill="rgb(218,63,45)" rx="2" ry="2" />
<text x="968.88" y="1743.5" ></text>
</g>
<g >
<title>__siphash_unaligned (3,765,782 samples, 0.02%)</title><rect x="493.8" y="1765" width="0.2" height="15.0" fill="rgb(232,117,40)" rx="2" ry="2" />
<text x="496.75" y="1775.5" ></text>
</g>
<g >
<title>__x64_sys_unshare (12,531,450 samples, 0.06%)</title><rect x="864.3" y="1989" width="0.7" height="15.0" fill="rgb(228,80,7)" rx="2" ry="2" />
<text x="867.31" y="1999.5" ></text>
</g>
<g >
<title>irqentry_exit (8,401,012 samples, 0.04%)</title><rect x="525.5" y="1989" width="0.5" height="15.0" fill="rgb(253,131,44)" rx="2" ry="2" />
<text x="528.54" y="1999.5" ></text>
</g>
<g >
<title>find_exception (2,647,533 samples, 0.01%)</title><rect x="800.6" y="1749" width="0.1" height="15.0" fill="rgb(252,139,34)" rx="2" ry="2" />
<text x="803.59" y="1759.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (2,660,259 samples, 0.01%)</title><rect x="1150.8" y="1573" width="0.1" height="15.0" fill="rgb(231,40,5)" rx="2" ry="2" />
<text x="1153.80" y="1583.5" ></text>
</g>
<g >
<title>acpi_evaluate_object (19,748,151 samples, 0.09%)</title><rect x="62.3" y="1829" width="1.1" height="15.0" fill="rgb(232,194,44)" rx="2" ry="2" />
<text x="65.29" y="1839.5" ></text>
</g>
<g >
<title>exec_mmap (21,331,365 samples, 0.10%)</title><rect x="27.3" y="1877" width="1.2" height="15.0" fill="rgb(218,228,19)" rx="2" ry="2" />
<text x="30.28" y="1887.5" ></text>
</g>
<g >
<title>do_read_fault (5,765,561 samples, 0.03%)</title><rect x="938.7" y="1877" width="0.3" height="15.0" fill="rgb(217,41,53)" rx="2" ry="2" />
<text x="941.70" y="1887.5" ></text>
</g>
<g >
<title>wb_do_writeback (4,980,905 samples, 0.02%)</title><rect x="65.0" y="1973" width="0.2" height="15.0" fill="rgb(236,54,13)" rx="2" ry="2" />
<text x="67.95" y="1983.5" ></text>
</g>
<g >
<title>lookup_fast (5,032,216 samples, 0.02%)</title><rect x="854.8" y="1893" width="0.3" height="15.0" fill="rgb(218,156,6)" rx="2" ry="2" />
<text x="857.84" y="1903.5" ></text>
</g>
<g >
<title>rtl8169_tx_map (1,918,176 samples, 0.01%)</title><rect x="506.4" y="1861" width="0.1" height="15.0" fill="rgb(208,46,49)" rx="2" ry="2" />
<text x="509.44" y="1871.5" ></text>
</g>
<g >
<title>__ip_finish_output (12,570,635 samples, 0.06%)</title><rect x="406.7" y="1765" width="0.7" height="15.0" fill="rgb(234,48,26)" rx="2" ry="2" />
<text x="409.67" y="1775.5" ></text>
</g>
<g >
<title>do_sys_openat2 (5,019,179 samples, 0.02%)</title><rect x="970.5" y="1973" width="0.3" height="15.0" fill="rgb(250,158,36)" rx="2" ry="2" />
<text x="973.48" y="1983.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1461" width="0.5" height="15.0" fill="rgb(214,142,26)" rx="2" ry="2" />
<text x="18.42" y="1471.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1957" width="0.5" height="15.0" fill="rgb(242,81,54)" rx="2" ry="2" />
<text x="18.42" y="1967.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (6,244,655 samples, 0.03%)</title><rect x="550.6" y="1829" width="0.4" height="15.0" fill="rgb(235,63,53)" rx="2" ry="2" />
<text x="553.64" y="1839.5" ></text>
</g>
<g >
<title>ksys_write (1,912,723 samples, 0.01%)</title><rect x="46.0" y="1973" width="0.1" height="15.0" fill="rgb(239,130,35)" rx="2" ry="2" />
<text x="48.99" y="1983.5" ></text>
</g>
<g >
<title>[snap] (2,286,061 samples, 0.01%)</title><rect x="894.7" y="629" width="0.1" height="15.0" fill="rgb(233,35,36)" rx="2" ry="2" />
<text x="897.72" y="639.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (1,910,777 samples, 0.01%)</title><rect x="412.1" y="1589" width="0.1" height="15.0" fill="rgb(242,43,37)" rx="2" ry="2" />
<text x="415.10" y="1599.5" ></text>
</g>
<g >
<title>ip6_pol_route_input (30,167,039 samples, 0.14%)</title><rect x="1035.6" y="1637" width="1.6" height="15.0" fill="rgb(237,108,35)" rx="2" ry="2" />
<text x="1038.59" y="1647.5" ></text>
</g>
<g >
<title>timerqueue_add (2,103,640 samples, 0.01%)</title><rect x="1065.9" y="1749" width="0.1" height="15.0" fill="rgb(244,2,47)" rx="2" ry="2" />
<text x="1068.91" y="1759.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,052,125 samples, 0.01%)</title><rect x="833.1" y="1925" width="0.1" height="15.0" fill="rgb(253,178,45)" rx="2" ry="2" />
<text x="836.08" y="1935.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (4,843,574 samples, 0.02%)</title><rect x="733.6" y="1413" width="0.3" height="15.0" fill="rgb(207,35,15)" rx="2" ry="2" />
<text x="736.62" y="1423.5" ></text>
</g>
<g >
<title>napi_complete_done (5,394,419 samples, 0.03%)</title><rect x="926.2" y="1461" width="0.2" height="15.0" fill="rgb(237,126,48)" rx="2" ry="2" />
<text x="929.15" y="1471.5" ></text>
</g>
<g >
<title>rtl_tx (4,683,549 samples, 0.02%)</title><rect x="515.9" y="1909" width="0.2" height="15.0" fill="rgb(214,164,31)" rx="2" ry="2" />
<text x="518.86" y="1919.5" ></text>
</g>
<g >
<title>__ip_finish_output (1,899,425 samples, 0.01%)</title><rect x="50.8" y="1765" width="0.1" height="15.0" fill="rgb(245,74,41)" rx="2" ry="2" />
<text x="53.78" y="1775.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1125" width="0.3" height="15.0" fill="rgb(254,212,23)" rx="2" ry="2" />
<text x="897.70" y="1135.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,642,510 samples, 0.01%)</title><rect x="601.8" y="1845" width="0.2" height="15.0" fill="rgb(226,123,17)" rx="2" ry="2" />
<text x="604.82" y="1855.5" ></text>
</g>
<g >
<title>[libgstreamer-1.0.so.0.2003.0] (3,089,960 samples, 0.01%)</title><rect x="1181.3" y="2005" width="0.2" height="15.0" fill="rgb(208,136,22)" rx="2" ry="2" />
<text x="1184.33" y="2015.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (4,141,825 samples, 0.02%)</title><rect x="553.7" y="1989" width="0.2" height="15.0" fill="rgb(247,193,24)" rx="2" ry="2" />
<text x="556.67" y="1999.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7,694,589 samples, 0.04%)</title><rect x="47.9" y="2021" width="0.4" height="15.0" fill="rgb(242,67,29)" rx="2" ry="2" />
<text x="50.88" y="2031.5" ></text>
</g>
<g >
<title>__skb_checksum (3,073,620 samples, 0.01%)</title><rect x="1145.4" y="1621" width="0.1" height="15.0" fill="rgb(205,120,48)" rx="2" ry="2" />
<text x="1148.36" y="1631.5" ></text>
</g>
<g >
<title>kworker/1:0-mm_ (28,348,179 samples, 0.13%)</title><rect x="62.1" y="2069" width="1.5" height="15.0" fill="rgb(215,115,6)" rx="2" ry="2" />
<text x="65.05" y="2079.5" ></text>
</g>
<g >
<title>common_interrupt (1,815,500 samples, 0.01%)</title><rect x="886.1" y="1845" width="0.1" height="15.0" fill="rgb(237,25,42)" rx="2" ry="2" />
<text x="889.07" y="1855.5" ></text>
</g>
<g >
<title>[snap] (8,737,767 samples, 0.04%)</title><rect x="883.8" y="85" width="0.5" height="15.0" fill="rgb(211,216,44)" rx="2" ry="2" />
<text x="886.77" y="95.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (7,294,430 samples, 0.03%)</title><rect x="33.1" y="1973" width="0.4" height="15.0" fill="rgb(238,73,37)" rx="2" ry="2" />
<text x="36.08" y="1983.5" ></text>
</g>
<g >
<title>rtl_rx (3,083,324 samples, 0.01%)</title><rect x="933.4" y="1445" width="0.2" height="15.0" fill="rgb(249,114,46)" rx="2" ry="2" />
<text x="936.43" y="1455.5" ></text>
</g>
<g >
<title>[snapd] (2,689,009 samples, 0.01%)</title><rect x="974.9" y="1557" width="0.2" height="15.0" fill="rgb(243,228,7)" rx="2" ry="2" />
<text x="977.95" y="1567.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (9,584,611 samples, 0.04%)</title><rect x="1065.8" y="1813" width="0.5" height="15.0" fill="rgb(223,103,48)" rx="2" ry="2" />
<text x="1068.81" y="1823.5" ></text>
</g>
<g >
<title>native_sched_clock (5,419,636 samples, 0.03%)</title><rect x="1103.7" y="1909" width="0.3" height="15.0" fill="rgb(212,205,17)" rx="2" ry="2" />
<text x="1106.71" y="1919.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (51,051,788 samples, 0.24%)</title><rect x="1117.0" y="1781" width="2.8" height="15.0" fill="rgb(248,15,3)" rx="2" ry="2" />
<text x="1120.03" y="1791.5" ></text>
</g>
<g >
<title>memset_erms (4,577,607 samples, 0.02%)</title><rect x="485.6" y="1797" width="0.2" height="15.0" fill="rgb(212,150,21)" rx="2" ry="2" />
<text x="488.56" y="1807.5" ></text>
</g>
<g >
<title>lzo1x_decompress_safe (2,298,416 samples, 0.01%)</title><rect x="955.5" y="1717" width="0.1" height="15.0" fill="rgb(217,30,22)" rx="2" ry="2" />
<text x="958.45" y="1727.5" ></text>
</g>
<g >
<title>ip6_input (13,259,563 samples, 0.06%)</title><rect x="413.5" y="1797" width="0.7" height="15.0" fill="rgb(243,68,42)" rx="2" ry="2" />
<text x="416.47" y="1807.5" ></text>
</g>
<g >
<title>acpi_ns_evaluate (19,359,561 samples, 0.09%)</title><rect x="62.3" y="1813" width="1.1" height="15.0" fill="rgb(215,48,19)" rx="2" ry="2" />
<text x="65.29" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (81,198,480 samples, 0.38%)</title><rect x="753.5" y="1653" width="4.5" height="15.0" fill="rgb(251,54,43)" rx="2" ry="2" />
<text x="756.48" y="1663.5" ></text>
</g>
<g >
<title>new_sync_read (2,096,378 samples, 0.01%)</title><rect x="569.3" y="1973" width="0.2" height="15.0" fill="rgb(228,171,17)" rx="2" ry="2" />
<text x="572.35" y="1983.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,427,958 samples, 0.02%)</title><rect x="833.4" y="2005" width="0.2" height="15.0" fill="rgb(237,174,28)" rx="2" ry="2" />
<text x="836.44" y="2015.5" ></text>
</g>
<g >
<title>[snap-exec] (14,997,643 samples, 0.07%)</title><rect x="873.9" y="1749" width="0.8" height="15.0" fill="rgb(216,175,38)" rx="2" ry="2" />
<text x="876.86" y="1759.5" ></text>
</g>
<g >
<title>exec_binprm (1,923,221 samples, 0.01%)</title><rect x="858.5" y="1941" width="0.1" height="15.0" fill="rgb(233,147,22)" rx="2" ry="2" />
<text x="861.49" y="1951.5" ></text>
</g>
<g >
<title>napi_consume_skb (77,767,898 samples, 0.36%)</title><rect x="1053.2" y="1813" width="4.2" height="15.0" fill="rgb(215,202,46)" rx="2" ry="2" />
<text x="1056.16" y="1823.5" ></text>
</g>
<g >
<title>neigh_hh_output (48,185,262 samples, 0.23%)</title><rect x="663.9" y="1637" width="2.7" height="15.0" fill="rgb(241,28,20)" rx="2" ry="2" />
<text x="666.94" y="1647.5" ></text>
</g>
<g >
<title>skb_checksum (7,939,268 samples, 0.04%)</title><rect x="500.2" y="1781" width="0.4" height="15.0" fill="rgb(224,1,1)" rx="2" ry="2" />
<text x="503.17" y="1791.5" ></text>
</g>
<g >
<title>tsc_verify_tsc_adjust (2,485,631 samples, 0.01%)</title><rect x="978.3" y="1973" width="0.1" height="15.0" fill="rgb(242,88,13)" rx="2" ry="2" />
<text x="981.28" y="1983.5" ></text>
</g>
<g >
<title>do_filp_open (2,311,475 samples, 0.01%)</title><rect x="957.6" y="1957" width="0.1" height="15.0" fill="rgb(230,19,27)" rx="2" ry="2" />
<text x="960.62" y="1967.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (2,309,057 samples, 0.01%)</title><rect x="842.5" y="1941" width="0.1" height="15.0" fill="rgb(213,177,36)" rx="2" ry="2" />
<text x="845.47" y="1951.5" ></text>
</g>
<g >
<title>ip6_finish_output (1,923,337 samples, 0.01%)</title><rect x="926.3" y="1317" width="0.1" height="15.0" fill="rgb(222,2,6)" rx="2" ry="2" />
<text x="929.28" y="1327.5" ></text>
</g>
<g >
<title>handle_pte_fault (11,624,776 samples, 0.05%)</title><rect x="31.4" y="1925" width="0.6" height="15.0" fill="rgb(247,180,10)" rx="2" ry="2" />
<text x="34.41" y="1935.5" ></text>
</g>
<g >
<title>__spawnix (3,833,974 samples, 0.02%)</title><rect x="10.5" y="2053" width="0.2" height="15.0" fill="rgb(212,170,36)" rx="2" ry="2" />
<text x="13.49" y="2063.5" ></text>
</g>
<g >
<title>__napi_alloc_skb (72,261,840 samples, 0.34%)</title><rect x="1015.7" y="1813" width="4.0" height="15.0" fill="rgb(242,149,44)" rx="2" ry="2" />
<text x="1018.70" y="1823.5" ></text>
</g>
<g >
<title>__mkroute_input (2,773,428 samples, 0.01%)</title><rect x="782.5" y="1781" width="0.1" height="15.0" fill="rgb(216,48,51)" rx="2" ry="2" />
<text x="785.47" y="1791.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1269" width="0.5" height="15.0" fill="rgb(241,184,38)" rx="2" ry="2" />
<text x="18.42" y="1279.5" ></text>
</g>
<g >
<title>[unknown] (19,012,800 samples, 0.09%)</title><rect x="473.3" y="1813" width="1.0" height="15.0" fill="rgb(209,217,1)" rx="2" ry="2" />
<text x="476.27" y="1823.5" ></text>
</g>
<g >
<title>napi_gro_receive (28,444,615 samples, 0.13%)</title><rect x="549.4" y="1909" width="1.6" height="15.0" fill="rgb(229,75,39)" rx="2" ry="2" />
<text x="552.44" y="1919.5" ></text>
</g>
<g >
<title>process_backlog (2,972,338 samples, 0.01%)</title><rect x="621.8" y="1813" width="0.1" height="15.0" fill="rgb(235,49,30)" rx="2" ry="2" />
<text x="624.78" y="1823.5" ></text>
</g>
<g >
<title>__inet_lookup_established (1,923,717 samples, 0.01%)</title><rect x="1126.9" y="1685" width="0.2" height="15.0" fill="rgb(214,148,18)" rx="2" ry="2" />
<text x="1129.95" y="1695.5" ></text>
</g>
<g >
<title>[snapctl] (10,187,901 samples, 0.05%)</title><rect x="944.3" y="1989" width="0.6" height="15.0" fill="rgb(208,68,40)" rx="2" ry="2" />
<text x="947.29" y="1999.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,930,365 samples, 0.01%)</title><rect x="902.6" y="1749" width="0.1" height="15.0" fill="rgb(227,95,11)" rx="2" ry="2" />
<text x="905.63" y="1759.5" ></text>
</g>
<g >
<title>zap_pte_range (7,221,449 samples, 0.03%)</title><rect x="857.2" y="1861" width="0.4" height="15.0" fill="rgb(222,141,47)" rx="2" ry="2" />
<text x="860.25" y="1871.5" ></text>
</g>
<g >
<title>tick_program_event (1,889,786 samples, 0.01%)</title><rect x="750.9" y="1573" width="0.1" height="15.0" fill="rgb(219,76,11)" rx="2" ry="2" />
<text x="753.89" y="1583.5" ></text>
</g>
<g >
<title>neigh_hh_output (3,193,829 samples, 0.01%)</title><rect x="495.5" y="1717" width="0.1" height="15.0" fill="rgb(237,161,44)" rx="2" ry="2" />
<text x="498.46" y="1727.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,304,452 samples, 0.01%)</title><rect x="875.3" y="1829" width="0.2" height="15.0" fill="rgb(221,9,47)" rx="2" ry="2" />
<text x="878.35" y="1839.5" ></text>
</g>
<g >
<title>realpath (307,930,136 samples, 1.44%)</title><rect x="840.8" y="2069" width="17.0" height="15.0" fill="rgb(227,8,9)" rx="2" ry="2" />
<text x="843.80" y="2079.5" ></text>
</g>
<g >
<title>netdev_core_pick_tx (2,592,473 samples, 0.01%)</title><rect x="746.8" y="1685" width="0.2" height="15.0" fill="rgb(247,138,41)" rx="2" ry="2" />
<text x="749.81" y="1695.5" ></text>
</g>
<g >
<title>handle_irq_event (3,869,588 samples, 0.02%)</title><rect x="957.9" y="1973" width="0.2" height="15.0" fill="rgb(247,22,21)" rx="2" ry="2" />
<text x="960.91" y="1983.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1109" width="0.5" height="15.0" fill="rgb(221,115,1)" rx="2" ry="2" />
<text x="18.42" y="1119.5" ></text>
</g>
<g >
<title>squashfs_readpage_block (11,239,380 samples, 0.05%)</title><rect x="31.4" y="1781" width="0.6" height="15.0" fill="rgb(228,54,48)" rx="2" ry="2" />
<text x="34.41" y="1791.5" ></text>
</g>
<g >
<title>put_cpu_partial (1,920,248 samples, 0.01%)</title><rect x="420.4" y="1781" width="0.1" height="15.0" fill="rgb(231,1,54)" rx="2" ry="2" />
<text x="423.40" y="1791.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (3,458,694 samples, 0.02%)</title><rect x="879.2" y="2021" width="0.2" height="15.0" fill="rgb(246,4,31)" rx="2" ry="2" />
<text x="882.21" y="2031.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (3,232,722 samples, 0.02%)</title><rect x="1100.4" y="1557" width="0.2" height="15.0" fill="rgb(239,205,21)" rx="2" ry="2" />
<text x="1103.41" y="1567.5" ></text>
</g>
<g >
<title>psi_task_switch (3,224,778 samples, 0.02%)</title><rect x="1113.7" y="1957" width="0.2" height="15.0" fill="rgb(212,133,7)" rx="2" ry="2" />
<text x="1116.75" y="1967.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,661,480 samples, 0.01%)</title><rect x="400.9" y="245" width="0.1" height="15.0" fill="rgb(230,219,52)" rx="2" ry="2" />
<text x="403.85" y="255.5" ></text>
</g>
<g >
<title>virtio_net_hdr_to_skb.constprop.0 (3,059,257 samples, 0.01%)</title><rect x="829.9" y="1925" width="0.2" height="15.0" fill="rgb(218,36,41)" rx="2" ry="2" />
<text x="832.93" y="1935.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,270,566 samples, 0.01%)</title><rect x="816.7" y="1685" width="0.1" height="15.0" fill="rgb(219,88,3)" rx="2" ry="2" />
<text x="819.72" y="1695.5" ></text>
</g>
<g >
<title>nf_conntrack_handle_packet (34,667,266 samples, 0.16%)</title><rect x="822.8" y="1781" width="1.9" height="15.0" fill="rgb(218,61,9)" rx="2" ry="2" />
<text x="825.78" y="1791.5" ></text>
</g>
<g >
<title>[snapctl] (9,804,432 samples, 0.05%)</title><rect x="944.3" y="1973" width="0.6" height="15.0" fill="rgb(210,79,13)" rx="2" ry="2" />
<text x="947.31" y="1983.5" ></text>
</g>
<g >
<title>tcp_seq_start (7,912,261 samples, 0.04%)</title><rect x="1179.6" y="1701" width="0.4" height="15.0" fill="rgb(252,161,7)" rx="2" ry="2" />
<text x="1182.55" y="1711.5" ></text>
</g>
<g >
<title>[snapd] (19,948,391 samples, 0.09%)</title><rect x="974.2" y="1781" width="1.1" height="15.0" fill="rgb(209,133,54)" rx="2" ry="2" />
<text x="977.19" y="1791.5" ></text>
</g>
<g >
<title>l3mdev_update_flow (2,180,571 samples, 0.01%)</title><rect x="738.8" y="1557" width="0.1" height="15.0" fill="rgb(250,55,1)" rx="2" ry="2" />
<text x="741.77" y="1567.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (5,125,895 samples, 0.02%)</title><rect x="979.8" y="1813" width="0.3" height="15.0" fill="rgb(211,88,8)" rx="2" ry="2" />
<text x="982.77" y="1823.5" ></text>
</g>
<g >
<title>ip_rt_update_pmtu (1,901,074 samples, 0.01%)</title><rect x="746.7" y="1621" width="0.1" height="15.0" fill="rgb(212,4,11)" rx="2" ry="2" />
<text x="749.69" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (12,298,306 samples, 0.06%)</title><rect x="43.5" y="2021" width="0.7" height="15.0" fill="rgb(215,69,17)" rx="2" ry="2" />
<text x="46.49" y="2031.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (3,054,364 samples, 0.01%)</title><rect x="821.6" y="1765" width="0.2" height="15.0" fill="rgb(223,12,29)" rx="2" ry="2" />
<text x="824.62" y="1775.5" ></text>
</g>
<g >
<title>handle_irq_event (32,271,413 samples, 0.15%)</title><rect x="403.4" y="1925" width="1.8" height="15.0" fill="rgb(219,221,6)" rx="2" ry="2" />
<text x="406.44" y="1935.5" ></text>
</g>
<g >
<title>do_syscall_64 (28,451,330 samples, 0.13%)</title><rect x="841.0" y="1989" width="1.6" height="15.0" fill="rgb(233,20,44)" rx="2" ry="2" />
<text x="844.03" y="1999.5" ></text>
</g>
<g >
<title>enqueue_task (2,271,655 samples, 0.01%)</title><rect x="526.1" y="1909" width="0.1" height="15.0" fill="rgb(216,12,8)" rx="2" ry="2" />
<text x="529.11" y="1919.5" ></text>
</g>
<g >
<title>__schedule (4,624,531 samples, 0.02%)</title><rect x="840.5" y="1957" width="0.2" height="15.0" fill="rgb(213,7,21)" rx="2" ry="2" />
<text x="843.48" y="1967.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (3,818,749 samples, 0.02%)</title><rect x="33.2" y="1877" width="0.2" height="15.0" fill="rgb(211,218,10)" rx="2" ry="2" />
<text x="36.21" y="1887.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (4,597,722 samples, 0.02%)</title><rect x="522.4" y="1845" width="0.2" height="15.0" fill="rgb(240,121,26)" rx="2" ry="2" />
<text x="525.37" y="1855.5" ></text>
</g>
<g >
<title>do_read_fault (2,299,094 samples, 0.01%)</title><rect x="897.3" y="1845" width="0.1" height="15.0" fill="rgb(226,170,15)" rx="2" ry="2" />
<text x="900.28" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (2,665,609 samples, 0.01%)</title><rect x="1188.3" y="2037" width="0.2" height="15.0" fill="rgb(216,126,48)" rx="2" ry="2" />
<text x="1191.33" y="2047.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,203,132 samples, 0.01%)</title><rect x="897.0" y="1877" width="0.2" height="15.0" fill="rgb(216,221,29)" rx="2" ry="2" />
<text x="900.03" y="1887.5" ></text>
</g>
<g >
<title>ip6_input (31,580,836 samples, 0.15%)</title><rect x="1135.7" y="1685" width="1.7" height="15.0" fill="rgb(225,133,5)" rx="2" ry="2" />
<text x="1138.66" y="1695.5" ></text>
</g>
<g >
<title>update_curr (1,874,821 samples, 0.01%)</title><rect x="430.5" y="1845" width="0.1" height="15.0" fill="rgb(244,112,1)" rx="2" ry="2" />
<text x="433.54" y="1855.5" ></text>
</g>
<g >
<title>shrink_inactive_list (8,896,615 samples, 0.04%)</title><rect x="60.6" y="1941" width="0.5" height="15.0" fill="rgb(234,101,24)" rx="2" ry="2" />
<text x="63.65" y="1951.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (8,071,024 samples, 0.04%)</title><rect x="501.7" y="1813" width="0.4" height="15.0" fill="rgb(223,160,3)" rx="2" ry="2" />
<text x="504.67" y="1823.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (5,268,391 samples, 0.02%)</title><rect x="733.3" y="1397" width="0.2" height="15.0" fill="rgb(245,104,3)" rx="2" ry="2" />
<text x="736.26" y="1407.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,937,314 samples, 0.01%)</title><rect x="969.6" y="1749" width="0.1" height="15.0" fill="rgb(241,146,0)" rx="2" ry="2" />
<text x="972.59" y="1759.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,270,123 samples, 0.01%)</title><rect x="71.6" y="1989" width="0.1" height="15.0" fill="rgb(245,113,50)" rx="2" ry="2" />
<text x="74.58" y="1999.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (31,876,956 samples, 0.15%)</title><rect x="410.9" y="1733" width="1.7" height="15.0" fill="rgb(233,76,26)" rx="2" ry="2" />
<text x="413.87" y="1743.5" ></text>
</g>
<g >
<title>handle_irq_event (103,728,166 samples, 0.48%)</title><rect x="456.4" y="1957" width="5.7" height="15.0" fill="rgb(228,210,0)" rx="2" ry="2" />
<text x="459.42" y="1967.5" ></text>
</g>
<g >
<title>__ip6_finish_output (32,641,260 samples, 0.15%)</title><rect x="410.9" y="1749" width="1.7" height="15.0" fill="rgb(245,133,51)" rx="2" ry="2" />
<text x="413.85" y="1759.5" ></text>
</g>
<g >
<title>path_openat (8,355,751 samples, 0.04%)</title><rect x="1174.7" y="1941" width="0.5" height="15.0" fill="rgb(239,205,46)" rx="2" ry="2" />
<text x="1177.69" y="1951.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="837" width="0.2" height="15.0" fill="rgb(216,132,19)" rx="2" ry="2" />
<text x="897.72" y="847.5" ></text>
</g>
<g >
<title>[snapd] (11,743,693 samples, 0.05%)</title><rect x="974.5" y="1717" width="0.7" height="15.0" fill="rgb(250,123,17)" rx="2" ry="2" />
<text x="977.51" y="1727.5" ></text>
</g>
<g >
<title>napi_consume_skb (10,684,199 samples, 0.05%)</title><rect x="551.7" y="1909" width="0.6" height="15.0" fill="rgb(219,13,26)" rx="2" ry="2" />
<text x="554.71" y="1919.5" ></text>
</g>
<g >
<title>pagecache_get_page (22,443,660 samples, 0.10%)</title><rect x="73.5" y="1749" width="1.3" height="15.0" fill="rgb(254,61,7)" rx="2" ry="2" />
<text x="76.54" y="1759.5" ></text>
</g>
<g >
<title>__inet6_lookup_established (3,062,775 samples, 0.01%)</title><rect x="491.9" y="1781" width="0.2" height="15.0" fill="rgb(205,207,4)" rx="2" ry="2" />
<text x="494.90" y="1791.5" ></text>
</g>
<g >
<title>bprm_execve (1,901,184 samples, 0.01%)</title><rect x="862.6" y="1973" width="0.1" height="15.0" fill="rgb(227,159,30)" rx="2" ry="2" />
<text x="865.57" y="1983.5" ></text>
</g>
<g >
<title>dequeue_skb (42,982,789 samples, 0.20%)</title><rect x="690.8" y="1813" width="2.4" height="15.0" fill="rgb(210,129,0)" rx="2" ry="2" />
<text x="693.78" y="1823.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6,514,487 samples, 0.03%)</title><rect x="525.6" y="1957" width="0.3" height="15.0" fill="rgb(232,221,50)" rx="2" ry="2" />
<text x="528.56" y="1967.5" ></text>
</g>
<g >
<title>dql_completed (3,942,203 samples, 0.02%)</title><rect x="1052.9" y="1813" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1055.94" y="1823.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (5,310,794 samples, 0.02%)</title><rect x="694.7" y="1733" width="0.3" height="15.0" fill="rgb(240,13,6)" rx="2" ry="2" />
<text x="697.66" y="1743.5" ></text>
</g>
<g >
<title>task_sched_runtime (3,406,052 samples, 0.02%)</title><rect x="453.9" y="1893" width="0.2" height="15.0" fill="rgb(221,129,53)" rx="2" ry="2" />
<text x="456.94" y="1903.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,832,644 samples, 0.01%)</title><rect x="997.8" y="1861" width="0.1" height="15.0" fill="rgb(207,5,8)" rx="2" ry="2" />
<text x="1000.79" y="1871.5" ></text>
</g>
<g >
<title>sch_direct_xmit (3,005,679 samples, 0.01%)</title><rect x="622.5" y="1813" width="0.2" height="15.0" fill="rgb(208,217,9)" rx="2" ry="2" />
<text x="625.54" y="1823.5" ></text>
</g>
<g >
<title>kmalloc_reserve (1,847,335 samples, 0.01%)</title><rect x="418.3" y="1829" width="0.1" height="15.0" fill="rgb(247,62,24)" rx="2" ry="2" />
<text x="421.25" y="1839.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1861" width="0.3" height="15.0" fill="rgb(231,30,0)" rx="2" ry="2" />
<text x="23.41" y="1871.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1333" width="0.3" height="15.0" fill="rgb(250,122,10)" rx="2" ry="2" />
<text x="897.70" y="1343.5" ></text>
</g>
<g >
<title>ipv6_gro_receive (17,711,056 samples, 0.08%)</title><rect x="1145.1" y="1717" width="1.0" height="15.0" fill="rgb(216,100,52)" rx="2" ry="2" />
<text x="1148.10" y="1727.5" ></text>
</g>
<g >
<title>__virt_addr_valid (21,979,277 samples, 0.10%)</title><rect x="591.2" y="1813" width="1.2" height="15.0" fill="rgb(238,217,6)" rx="2" ry="2" />
<text x="594.16" y="1823.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (3,417,227 samples, 0.02%)</title><rect x="49.0" y="2053" width="0.2" height="15.0" fill="rgb(230,130,33)" rx="2" ry="2" />
<text x="52.04" y="2063.5" ></text>
</g>
<g >
<title>[snap] (4,570,521 samples, 0.02%)</title><rect x="894.7" y="1109" width="0.3" height="15.0" fill="rgb(248,67,15)" rx="2" ry="2" />
<text x="897.70" y="1119.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (1,921,512 samples, 0.01%)</title><rect x="1147.8" y="1733" width="0.1" height="15.0" fill="rgb(244,109,6)" rx="2" ry="2" />
<text x="1150.81" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,307,764 samples, 0.01%)</title><rect x="69.9" y="2021" width="0.1" height="15.0" fill="rgb(230,69,17)" rx="2" ry="2" />
<text x="72.91" y="2031.5" ></text>
</g>
<g >
<title>__skb_checksum_complete (36,001,967 samples, 0.17%)</title><rect x="817.6" y="1717" width="2.0" height="15.0" fill="rgb(232,23,30)" rx="2" ry="2" />
<text x="820.62" y="1727.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,915,343 samples, 0.01%)</title><rect x="1172.1" y="2005" width="0.1" height="15.0" fill="rgb(221,3,45)" rx="2" ry="2" />
<text x="1175.08" y="2015.5" ></text>
</g>
<g >
<title>skb_release_data (3,060,971 samples, 0.01%)</title><rect x="497.0" y="1829" width="0.2" height="15.0" fill="rgb(237,122,28)" rx="2" ry="2" />
<text x="500.01" y="1839.5" ></text>
</g>
<g >
<title>__skb_flow_dissect (4,215,570 samples, 0.02%)</title><rect x="481.7" y="1621" width="0.3" height="15.0" fill="rgb(244,63,16)" rx="2" ry="2" />
<text x="484.72" y="1631.5" ></text>
</g>
<g >
<title>strncpy (4,650,805 samples, 0.02%)</title><rect x="1031.5" y="1653" width="0.2" height="15.0" fill="rgb(230,166,45)" rx="2" ry="2" />
<text x="1034.48" y="1663.5" ></text>
</g>
<g >
<title>[snapctl] (6,146,010 samples, 0.03%)</title><rect x="946.0" y="1749" width="0.4" height="15.0" fill="rgb(233,7,12)" rx="2" ry="2" />
<text x="949.02" y="1759.5" ></text>
</g>
<g >
<title>[unknown] (18,648,958 samples, 0.09%)</title><rect x="481.0" y="1653" width="1.0" height="15.0" fill="rgb(214,96,25)" rx="2" ry="2" />
<text x="484.01" y="1663.5" ></text>
</g>
<g >
<title>_dl_lookup_symbol_x (4,198,237 samples, 0.02%)</title><rect x="870.3" y="2053" width="0.2" height="15.0" fill="rgb(238,87,19)" rx="2" ry="2" />
<text x="873.25" y="2063.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (2,710,824 samples, 0.01%)</title><rect x="1150.1" y="1541" width="0.2" height="15.0" fill="rgb(246,164,16)" rx="2" ry="2" />
<text x="1153.11" y="1551.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (2,451,179 samples, 0.01%)</title><rect x="1150.8" y="1557" width="0.1" height="15.0" fill="rgb(222,207,11)" rx="2" ry="2" />
<text x="1153.81" y="1567.5" ></text>
</g>
<g >
<title>smpboot_thread_fn (86,154,337 samples, 0.40%)</title><rect x="50.5" y="2021" width="4.8" height="15.0" fill="rgb(238,155,46)" rx="2" ry="2" />
<text x="53.53" y="2031.5" ></text>
</g>
<g >
<title>dev_queue_xmit (29,070,496 samples, 0.14%)</title><rect x="1122.5" y="1605" width="1.6" height="15.0" fill="rgb(216,104,13)" rx="2" ry="2" />
<text x="1125.49" y="1615.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (5,971,317 samples, 0.03%)</title><rect x="559.5" y="1909" width="0.3" height="15.0" fill="rgb(253,163,44)" rx="2" ry="2" />
<text x="562.46" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (161,795,642 samples, 0.76%)</title><rect x="393.5" y="1493" width="8.9" height="15.0" fill="rgb(217,85,47)" rx="2" ry="2" />
<text x="396.46" y="1503.5" ></text>
</g>
<g >
<title>__check_heap_object (4,559,394 samples, 0.02%)</title><rect x="590.9" y="1813" width="0.2" height="15.0" fill="rgb(232,176,31)" rx="2" ry="2" />
<text x="593.89" y="1823.5" ></text>
</g>
<g >
<title>common_interrupt (3,407,050 samples, 0.02%)</title><rect x="646.6" y="1861" width="0.2" height="15.0" fill="rgb(230,184,4)" rx="2" ry="2" />
<text x="649.61" y="1871.5" ></text>
</g>
<g >
<title>unmap_region (1,907,769 samples, 0.01%)</title><rect x="1187.3" y="1893" width="0.1" height="15.0" fill="rgb(233,69,12)" rx="2" ry="2" />
<text x="1190.26" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,238,361 samples, 0.01%)</title><rect x="586.1" y="1893" width="0.2" height="15.0" fill="rgb(229,126,15)" rx="2" ry="2" />
<text x="589.14" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (2,644,400 samples, 0.01%)</title><rect x="514.2" y="1797" width="0.2" height="15.0" fill="rgb(241,203,39)" rx="2" ry="2" />
<text x="517.21" y="1807.5" ></text>
</g>
<g >
<title>[ld-2.31.so] (28,836,121 samples, 0.13%)</title><rect x="841.0" y="2021" width="1.6" height="15.0" fill="rgb(214,159,41)" rx="2" ry="2" />
<text x="844.01" y="2031.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,179,735 samples, 0.02%)</title><rect x="886.8" y="1877" width="0.3" height="15.0" fill="rgb(252,145,20)" rx="2" ry="2" />
<text x="889.84" y="1887.5" ></text>
</g>
<g >
<title>unmap_vmas (2,193,289 samples, 0.01%)</title><rect x="871.0" y="1925" width="0.1" height="15.0" fill="rgb(206,46,36)" rx="2" ry="2" />
<text x="873.99" y="1935.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,886,621 samples, 0.01%)</title><rect x="942.2" y="2053" width="0.1" height="15.0" fill="rgb(222,62,18)" rx="2" ry="2" />
<text x="945.20" y="2063.5" ></text>
</g>
<g >
<title>handle_pte_fault (10,018,350 samples, 0.05%)</title><rect x="846.4" y="1957" width="0.6" height="15.0" fill="rgb(249,5,6)" rx="2" ry="2" />
<text x="849.40" y="1967.5" ></text>
</g>
<g >
<title>process_one_work (2,662,147 samples, 0.01%)</title><rect x="64.6" y="2005" width="0.1" height="15.0" fill="rgb(236,42,50)" rx="2" ry="2" />
<text x="67.56" y="2015.5" ></text>
</g>
<g >
<title>split_vma (1,932,833 samples, 0.01%)</title><rect x="966.7" y="1909" width="0.1" height="15.0" fill="rgb(211,79,5)" rx="2" ry="2" />
<text x="969.69" y="1919.5" ></text>
</g>
<g >
<title>__fdget_pos (13,903,587 samples, 0.06%)</title><rect x="567.4" y="1973" width="0.7" height="15.0" fill="rgb(216,191,14)" rx="2" ry="2" />
<text x="570.38" y="1983.5" ></text>
</g>
<g >
<title>[unknown] (38,092,739 samples, 0.18%)</title><rect x="945.1" y="2037" width="2.1" height="15.0" fill="rgb(240,28,47)" rx="2" ry="2" />
<text x="948.10" y="2047.5" ></text>
</g>
<g >
<title>nf_conntrack_in (4,908,418 samples, 0.02%)</title><rect x="740.9" y="1541" width="0.3" height="15.0" fill="rgb(245,185,41)" rx="2" ry="2" />
<text x="743.88" y="1551.5" ></text>
</g>
<g >
<title>[snap] (41,297,716 samples, 0.19%)</title><rect x="893.5" y="1829" width="2.2" height="15.0" fill="rgb(221,213,40)" rx="2" ry="2" />
<text x="896.46" y="1839.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,928,937 samples, 0.01%)</title><rect x="1151.9" y="1781" width="0.2" height="15.0" fill="rgb(236,34,48)" rx="2" ry="2" />
<text x="1154.90" y="1791.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,993,270 samples, 0.01%)</title><rect x="886.7" y="1845" width="0.1" height="15.0" fill="rgb(241,107,33)" rx="2" ry="2" />
<text x="889.67" y="1855.5" ></text>
</g>
<g >
<title>rtl_rx (3,331,303 samples, 0.02%)</title><rect x="1151.6" y="1765" width="0.2" height="15.0" fill="rgb(235,189,35)" rx="2" ry="2" />
<text x="1154.60" y="1775.5" ></text>
</g>
<g >
<title>fib_rules_lookup (2,003,253 samples, 0.01%)</title><rect x="55.9" y="1781" width="0.1" height="15.0" fill="rgb(235,226,48)" rx="2" ry="2" />
<text x="58.92" y="1791.5" ></text>
</g>
<g >
<title>__napi_poll (3,565,719 samples, 0.02%)</title><rect x="978.5" y="1909" width="0.2" height="15.0" fill="rgb(221,153,28)" rx="2" ry="2" />
<text x="981.51" y="1919.5" ></text>
</g>
<g >
<title>__napi_poll (1,895,661 samples, 0.01%)</title><rect x="30.8" y="1941" width="0.1" height="15.0" fill="rgb(218,176,18)" rx="2" ry="2" />
<text x="33.77" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (40,278,111 samples, 0.19%)</title><rect x="1140.1" y="1669" width="2.2" height="15.0" fill="rgb(207,165,4)" rx="2" ry="2" />
<text x="1143.07" y="1679.5" ></text>
</g>
<g >
<title>asm_common_interrupt (4,617,818 samples, 0.02%)</title><rect x="846.0" y="2037" width="0.3" height="15.0" fill="rgb(236,116,54)" rx="2" ry="2" />
<text x="849.00" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (8,004,078 samples, 0.04%)</title><rect x="439.5" y="1653" width="0.4" height="15.0" fill="rgb(210,68,24)" rx="2" ry="2" />
<text x="442.48" y="1663.5" ></text>
</g>
<g >
<title>__alloc_skb (248,505,363 samples, 1.16%)</title><rect x="630.8" y="1877" width="13.7" height="15.0" fill="rgb(242,59,32)" rx="2" ry="2" />
<text x="633.82" y="1887.5" ></text>
</g>
<g >
<title>ip_route_input_slow (17,120,356 samples, 0.08%)</title><rect x="408.0" y="1781" width="0.9" height="15.0" fill="rgb(252,122,26)" rx="2" ry="2" />
<text x="411.00" y="1791.5" ></text>
</g>
<g >
<title>squashfs_readpage_block (497,269,776 samples, 2.32%)</title><rect x="906.3" y="1781" width="27.4" height="15.0" fill="rgb(214,138,35)" rx="2" ry="2" />
<text x="909.32" y="1791.5" >s..</text>
</g>
<g >
<title>[snap] (18,941,764 samples, 0.09%)</title><rect x="883.8" y="597" width="1.0" height="15.0" fill="rgb(242,205,41)" rx="2" ry="2" />
<text x="886.75" y="607.5" ></text>
</g>
<g >
<title>dequeue_skb (1,911,360 samples, 0.01%)</title><rect x="467.0" y="1685" width="0.1" height="15.0" fill="rgb(225,165,33)" rx="2" ry="2" />
<text x="469.98" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (157,806,102 samples, 0.74%)</title><rect x="393.5" y="421" width="8.7" height="15.0" fill="rgb(226,157,54)" rx="2" ry="2" />
<text x="396.46" y="431.5" ></text>
</g>
<g >
<title>ipv6_rcv (2,290,788 samples, 0.01%)</title><rect x="635.4" y="1637" width="0.1" height="15.0" fill="rgb(226,229,25)" rx="2" ry="2" />
<text x="638.39" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1845" width="0.3" height="15.0" fill="rgb(233,7,40)" rx="2" ry="2" />
<text x="23.41" y="1855.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (12,307,851 samples, 0.06%)</title><rect x="965.7" y="1989" width="0.7" height="15.0" fill="rgb(224,25,0)" rx="2" ry="2" />
<text x="968.74" y="1999.5" ></text>
</g>
<g >
<title>ip_forward_finish (17,724,518 samples, 0.08%)</title><rect x="1003.0" y="1717" width="1.0" height="15.0" fill="rgb(206,67,44)" rx="2" ry="2" />
<text x="1006.01" y="1727.5" ></text>
</g>
<g >
<title>try_to_wake_up (4,681,006 samples, 0.02%)</title><rect x="1060.7" y="1829" width="0.2" height="15.0" fill="rgb(250,62,38)" rx="2" ry="2" />
<text x="1063.66" y="1839.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (4,956,420 samples, 0.02%)</title><rect x="61.7" y="1909" width="0.3" height="15.0" fill="rgb(218,119,44)" rx="2" ry="2" />
<text x="64.69" y="1919.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (58,738,126 samples, 0.27%)</title><rect x="1023.8" y="1701" width="3.3" height="15.0" fill="rgb(231,47,19)" rx="2" ry="2" />
<text x="1026.83" y="1711.5" ></text>
</g>
<g >
<title>put_cpu_partial (2,304,637 samples, 0.01%)</title><rect x="577.8" y="1845" width="0.1" height="15.0" fill="rgb(254,228,39)" rx="2" ry="2" />
<text x="580.78" y="1855.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (3,079,138 samples, 0.01%)</title><rect x="926.2" y="1381" width="0.2" height="15.0" fill="rgb(227,160,5)" rx="2" ry="2" />
<text x="929.24" y="1391.5" ></text>
</g>
<g >
<title>runtime.park_m (2,683,595 samples, 0.01%)</title><rect x="1178.7" y="1973" width="0.1" height="15.0" fill="rgb(215,59,19)" rx="2" ry="2" />
<text x="1181.65" y="1983.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,924,407 samples, 0.01%)</title><rect x="17.5" y="2037" width="0.1" height="15.0" fill="rgb(207,173,37)" rx="2" ry="2" />
<text x="20.48" y="2047.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,205,026 samples, 0.01%)</title><rect x="644.7" y="1861" width="0.1" height="15.0" fill="rgb(215,203,23)" rx="2" ry="2" />
<text x="647.70" y="1871.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,896,120 samples, 0.01%)</title><rect x="613.9" y="1893" width="0.1" height="15.0" fill="rgb(219,28,45)" rx="2" ry="2" />
<text x="616.88" y="1903.5" ></text>
</g>
<g >
<title>exc_page_fault (3,464,877 samples, 0.02%)</title><rect x="869.0" y="2021" width="0.2" height="15.0" fill="rgb(243,48,42)" rx="2" ry="2" />
<text x="871.98" y="2031.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,956,418 samples, 0.01%)</title><rect x="745.1" y="1573" width="0.2" height="15.0" fill="rgb(254,178,38)" rx="2" ry="2" />
<text x="748.14" y="1583.5" ></text>
</g>
<g >
<title>[unknown] (12,093,226 samples, 0.06%)</title><rect x="415.9" y="1765" width="0.7" height="15.0" fill="rgb(232,37,9)" rx="2" ry="2" />
<text x="418.91" y="1775.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (2,672,282 samples, 0.01%)</title><rect x="635.4" y="1653" width="0.1" height="15.0" fill="rgb(240,184,7)" rx="2" ry="2" />
<text x="638.37" y="1663.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (4,117,388 samples, 0.02%)</title><rect x="556.8" y="1845" width="0.3" height="15.0" fill="rgb(216,2,38)" rx="2" ry="2" />
<text x="559.85" y="1855.5" ></text>
</g>
<g >
<title>acpi_ut_trace (1,944,817 samples, 0.01%)</title><rect x="62.9" y="1653" width="0.1" height="15.0" fill="rgb(211,117,22)" rx="2" ry="2" />
<text x="65.94" y="1663.5" ></text>
</g>
<g >
<title>clockevents_program_event (3,026,898 samples, 0.01%)</title><rect x="427.3" y="1797" width="0.1" height="15.0" fill="rgb(237,183,21)" rx="2" ry="2" />
<text x="430.26" y="1807.5" ></text>
</g>
<g >
<title>__siphash_unaligned (2,858,100 samples, 0.01%)</title><rect x="1141.9" y="1621" width="0.2" height="15.0" fill="rgb(220,22,18)" rx="2" ry="2" />
<text x="1144.91" y="1631.5" ></text>
</g>
<g >
<title>skb_release_data (2,280,586 samples, 0.01%)</title><rect x="417.6" y="1797" width="0.1" height="15.0" fill="rgb(247,160,54)" rx="2" ry="2" />
<text x="420.58" y="1807.5" ></text>
</g>
<g >
<title>__common_interrupt (64,698,034 samples, 0.30%)</title><rect x="530.3" y="2005" width="3.6" height="15.0" fill="rgb(216,128,30)" rx="2" ry="2" />
<text x="533.30" y="2015.5" ></text>
</g>
<g >
<title>do_open (5,396,339 samples, 0.03%)</title><rect x="844.9" y="1909" width="0.3" height="15.0" fill="rgb(206,102,51)" rx="2" ry="2" />
<text x="847.94" y="1919.5" ></text>
</g>
<g >
<title>__netif_receive_skb (6,845,786 samples, 0.03%)</title><rect x="449.6" y="1893" width="0.4" height="15.0" fill="rgb(217,96,22)" rx="2" ry="2" />
<text x="452.64" y="1903.5" ></text>
</g>
<g >
<title>cpu_startup_entry (2,482,070,962 samples, 11.59%)</title><rect x="977.5" y="2021" width="136.8" height="15.0" fill="rgb(210,10,6)" rx="2" ry="2" />
<text x="980.53" y="2031.5" >cpu_startup_entry</text>
</g>
<g >
<title>inet_gro_receive (3,802,148 samples, 0.02%)</title><rect x="419.0" y="1797" width="0.2" height="15.0" fill="rgb(223,58,37)" rx="2" ry="2" />
<text x="422.00" y="1807.5" ></text>
</g>
<g >
<title>common_interrupt (1,920,421 samples, 0.01%)</title><rect x="854.7" y="1845" width="0.1" height="15.0" fill="rgb(245,73,26)" rx="2" ry="2" />
<text x="857.65" y="1855.5" ></text>
</g>
<g >
<title>__common_interrupt (218,971,335 samples, 1.02%)</title><rect x="984.1" y="1909" width="12.1" height="15.0" fill="rgb(215,33,31)" rx="2" ry="2" />
<text x="987.09" y="1919.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,460,566 samples, 0.02%)</title><rect x="857.9" y="2021" width="0.2" height="15.0" fill="rgb(248,4,37)" rx="2" ry="2" />
<text x="860.92" y="2031.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,326,520 samples, 0.01%)</title><rect x="853.3" y="1845" width="0.1" height="15.0" fill="rgb(208,154,1)" rx="2" ry="2" />
<text x="856.28" y="1855.5" ></text>
</g>
<g >
<title>kswapd0 (16,754,806 samples, 0.08%)</title><rect x="60.3" y="2069" width="0.9" height="15.0" fill="rgb(209,162,18)" rx="2" ry="2" />
<text x="63.29" y="2079.5" ></text>
</g>
<g >
<title>ipv6_rcv (1,896,014 samples, 0.01%)</title><rect x="401.4" y="101" width="0.1" height="15.0" fill="rgb(231,153,2)" rx="2" ry="2" />
<text x="404.39" y="111.5" ></text>
</g>
<g >
<title>desktop-launch (391,126,121 samples, 1.83%)</title><rect x="21.2" y="2069" width="21.5" height="15.0" fill="rgb(211,168,47)" rx="2" ry="2" />
<text x="24.18" y="2079.5" >d..</text>
</g>
<g >
<title>netif_skb_features (3,001,852 samples, 0.01%)</title><rect x="429.6" y="1845" width="0.1" height="15.0" fill="rgb(209,117,1)" rx="2" ry="2" />
<text x="432.58" y="1855.5" ></text>
</g>
<g >
<title>make_bare_word (1,924,925 samples, 0.01%)</title><rect x="39.3" y="2037" width="0.1" height="15.0" fill="rgb(232,151,51)" rx="2" ry="2" />
<text x="42.27" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1445" width="0.3" height="15.0" fill="rgb(232,48,5)" rx="2" ry="2" />
<text x="23.41" y="1455.5" ></text>
</g>
<g >
<title>____wcstold_l_internal (5,768,720 samples, 0.03%)</title><rect x="868.9" y="2053" width="0.3" height="15.0" fill="rgb(207,67,40)" rx="2" ry="2" />
<text x="871.87" y="2063.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (115,855,003 samples, 0.54%)</title><rect x="410.4" y="1829" width="6.4" height="15.0" fill="rgb(235,197,29)" rx="2" ry="2" />
<text x="413.43" y="1839.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,239,631 samples, 0.01%)</title><rect x="627.7" y="1861" width="0.1" height="15.0" fill="rgb(247,123,18)" rx="2" ry="2" />
<text x="630.71" y="1871.5" ></text>
</g>
<g >
<title>__napi_alloc_skb (6,745,542 samples, 0.03%)</title><rect x="445.0" y="1877" width="0.4" height="15.0" fill="rgb(210,38,4)" rx="2" ry="2" />
<text x="447.99" y="1887.5" ></text>
</g>
<g >
<title>[unknown] (9,924,685 samples, 0.05%)</title><rect x="734.2" y="1429" width="0.5" height="15.0" fill="rgb(239,221,23)" rx="2" ry="2" />
<text x="737.18" y="1439.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (66,861,837 samples, 0.31%)</title><rect x="967.2" y="2037" width="3.7" height="15.0" fill="rgb(217,152,12)" rx="2" ry="2" />
<text x="970.22" y="2047.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1445" width="0.5" height="15.0" fill="rgb(215,226,3)" rx="2" ry="2" />
<text x="18.42" y="1455.5" ></text>
</g>
<g >
<title>ip6_sublist_rcv_finish (2,945,689 samples, 0.01%)</title><rect x="547.7" y="1829" width="0.1" height="15.0" fill="rgb(232,33,0)" rx="2" ry="2" />
<text x="550.66" y="1839.5" ></text>
</g>
<g >
<title>ip6_finish_output2 (3,716,778 samples, 0.02%)</title><rect x="57.5" y="1733" width="0.2" height="15.0" fill="rgb(246,162,14)" rx="2" ry="2" />
<text x="60.51" y="1743.5" ></text>
</g>
<g >
<title>lzma_main (10,850,644 samples, 0.05%)</title><rect x="31.4" y="1605" width="0.6" height="15.0" fill="rgb(225,20,14)" rx="2" ry="2" />
<text x="34.43" y="1615.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (6,055,248 samples, 0.03%)</title><rect x="620.5" y="1765" width="0.3" height="15.0" fill="rgb(245,144,29)" rx="2" ry="2" />
<text x="623.45" y="1775.5" ></text>
</g>
<g >
<title>ip_finish_output (1,899,425 samples, 0.01%)</title><rect x="50.8" y="1781" width="0.1" height="15.0" fill="rgb(227,61,40)" rx="2" ry="2" />
<text x="53.78" y="1791.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1573" width="0.5" height="15.0" fill="rgb(235,49,2)" rx="2" ry="2" />
<text x="18.42" y="1583.5" ></text>
</g>
<g >
<title>__slab_free (2,167,858 samples, 0.01%)</title><rect x="1053.4" y="1765" width="0.1" height="15.0" fill="rgb(224,19,43)" rx="2" ry="2" />
<text x="1056.40" y="1775.5" ></text>
</g>
<g >
<title>napi_complete_done (1,939,067 samples, 0.01%)</title><rect x="853.3" y="1765" width="0.1" height="15.0" fill="rgb(215,10,51)" rx="2" ry="2" />
<text x="856.28" y="1775.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,839,238 samples, 0.01%)</title><rect x="18.7" y="2053" width="0.1" height="15.0" fill="rgb(250,52,16)" rx="2" ry="2" />
<text x="21.71" y="2063.5" ></text>
</g>
<g >
<title>[snapctl] (15,185,201 samples, 0.07%)</title><rect x="944.2" y="2053" width="0.9" height="15.0" fill="rgb(218,81,22)" rx="2" ry="2" />
<text x="947.25" y="2063.5" ></text>
</g>
<g >
<title>do_filp_open (20,374,216 samples, 0.10%)</title><rect x="953.1" y="1941" width="1.1" height="15.0" fill="rgb(251,74,53)" rx="2" ry="2" />
<text x="956.10" y="1951.5" ></text>
</g>
<g >
<title>[snap] (2,671,613 samples, 0.01%)</title><rect x="894.7" y="933" width="0.2" height="15.0" fill="rgb(205,76,2)" rx="2" ry="2" />
<text x="897.72" y="943.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,283,392 samples, 0.01%)</title><rect x="791.0" y="1685" width="0.1" height="15.0" fill="rgb(206,192,8)" rx="2" ry="2" />
<text x="793.97" y="1695.5" ></text>
</g>
<g >
<title>ipxip6_tnl_xmit (122,650,458 samples, 0.57%)</title><rect x="740.1" y="1637" width="6.7" height="15.0" fill="rgb(216,177,47)" rx="2" ry="2" />
<text x="743.05" y="1647.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (17,162,318 samples, 0.08%)</title><rect x="856.8" y="2053" width="1.0" height="15.0" fill="rgb(249,162,23)" rx="2" ry="2" />
<text x="859.83" y="2063.5" ></text>
</g>
<g >
<title>vfs_open (1,926,680 samples, 0.01%)</title><rect x="36.2" y="1909" width="0.2" height="15.0" fill="rgb(215,31,5)" rx="2" ry="2" />
<text x="39.24" y="1919.5" ></text>
</g>
<g >
<title>squashfs_read_metadata (3,482,545 samples, 0.02%)</title><rect x="963.6" y="1957" width="0.2" height="15.0" fill="rgb(249,134,18)" rx="2" ry="2" />
<text x="966.56" y="1967.5" ></text>
</g>
<g >
<title>ip_sublist_rcv (5,860,756 samples, 0.03%)</title><rect x="687.4" y="1717" width="0.3" height="15.0" fill="rgb(228,22,14)" rx="2" ry="2" />
<text x="690.36" y="1727.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (6,856,533 samples, 0.03%)</title><rect x="903.8" y="1941" width="0.3" height="15.0" fill="rgb(240,131,31)" rx="2" ry="2" />
<text x="906.77" y="1951.5" ></text>
</g>
<g >
<title>cake_hash (3,323,781 samples, 0.02%)</title><rect x="1011.4" y="1525" width="0.2" height="15.0" fill="rgb(252,154,24)" rx="2" ry="2" />
<text x="1014.44" y="1535.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,239,187 samples, 0.02%)</title><rect x="66.6" y="2005" width="0.2" height="15.0" fill="rgb(247,83,37)" rx="2" ry="2" />
<text x="69.61" y="2015.5" ></text>
</g>
<g >
<title>__napi_poll (32,342,917 samples, 0.15%)</title><rect x="424.1" y="1909" width="1.8" height="15.0" fill="rgb(205,98,51)" rx="2" ry="2" />
<text x="427.10" y="1919.5" ></text>
</g>
<g >
<title>slab_free_freelist_hook.constprop.0 (2,169,924 samples, 0.01%)</title><rect x="552.1" y="1845" width="0.1" height="15.0" fill="rgb(211,198,9)" rx="2" ry="2" />
<text x="555.12" y="1855.5" ></text>
</g>
<g >
<title>ksoftirqd/0 (88,683,587 samples, 0.41%)</title><rect x="50.4" y="2069" width="4.9" height="15.0" fill="rgb(216,42,36)" rx="2" ry="2" />
<text x="53.39" y="2079.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="965" width="0.3" height="15.0" fill="rgb(220,86,22)" rx="2" ry="2" />
<text x="23.41" y="975.5" ></text>
</g>
<g >
<title>[unknown] (3,387,597 samples, 0.02%)</title><rect x="51.7" y="1861" width="0.1" height="15.0" fill="rgb(244,61,22)" rx="2" ry="2" />
<text x="54.66" y="1871.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,695,598 samples, 0.02%)</title><rect x="71.8" y="1973" width="0.2" height="15.0" fill="rgb(227,114,4)" rx="2" ry="2" />
<text x="74.76" y="1983.5" ></text>
</g>
<g >
<title>__alloc_skb (4,462,062 samples, 0.02%)</title><rect x="1063.6" y="1797" width="0.2" height="15.0" fill="rgb(239,55,10)" rx="2" ry="2" />
<text x="1066.57" y="1807.5" ></text>
</g>
<g >
<title>consume_skb (7,619,634 samples, 0.04%)</title><rect x="417.3" y="1813" width="0.4" height="15.0" fill="rgb(242,128,36)" rx="2" ry="2" />
<text x="420.31" y="1823.5" ></text>
</g>
<g >
<title>__netif_receive_skb (52,522,419 samples, 0.25%)</title><rect x="434.7" y="1893" width="2.9" height="15.0" fill="rgb(235,130,54)" rx="2" ry="2" />
<text x="437.72" y="1903.5" ></text>
</g>
<g >
<title>[libglib-2.0.so.0.7200.4] (2,675,645 samples, 0.01%)</title><rect x="1180.7" y="2037" width="0.1" height="15.0" fill="rgb(215,59,44)" rx="2" ry="2" />
<text x="1183.69" y="2047.5" ></text>
</g>
<g >
<title>tick_program_event (2,674,637 samples, 0.01%)</title><rect x="449.3" y="1941" width="0.1" height="15.0" fill="rgb(212,10,39)" rx="2" ry="2" />
<text x="452.26" y="1951.5" ></text>
</g>
<g >
<title>rtl8169_poll (3,757,722 samples, 0.02%)</title><rect x="571.1" y="1861" width="0.2" height="15.0" fill="rgb(224,23,8)" rx="2" ry="2" />
<text x="574.14" y="1871.5" ></text>
</g>
<g >
<title>handle_mm_fault (11,624,776 samples, 0.05%)</title><rect x="31.4" y="1957" width="0.6" height="15.0" fill="rgb(240,86,6)" rx="2" ry="2" />
<text x="34.41" y="1967.5" ></text>
</g>
<g >
<title>ip6_input (5,598,282 samples, 0.03%)</title><rect x="514.2" y="1829" width="0.3" height="15.0" fill="rgb(252,16,29)" rx="2" ry="2" />
<text x="517.19" y="1839.5" ></text>
</g>
<g >
<title>do_exit (1,839,238 samples, 0.01%)</title><rect x="18.7" y="1989" width="0.1" height="15.0" fill="rgb(222,201,50)" rx="2" ry="2" />
<text x="21.71" y="1999.5" ></text>
</g>
<g >
<title>[unknown] (9,862,274 samples, 0.05%)</title><rect x="538.7" y="1813" width="0.6" height="15.0" fill="rgb(226,126,15)" rx="2" ry="2" />
<text x="541.73" y="1823.5" ></text>
</g>
<g >
<title>__ip_finish_output (44,589,992 samples, 0.21%)</title><rect x="466.0" y="1797" width="2.5" height="15.0" fill="rgb(215,66,17)" rx="2" ry="2" />
<text x="469.02" y="1807.5" ></text>
</g>
<g >
<title>nf_conntrack_in (4,598,149 samples, 0.02%)</title><rect x="547.2" y="1813" width="0.2" height="15.0" fill="rgb(208,194,17)" rx="2" ry="2" />
<text x="550.16" y="1823.5" ></text>
</g>
<g >
<title>security_prepare_creds (1,928,443 samples, 0.01%)</title><rect x="968.5" y="1941" width="0.1" height="15.0" fill="rgb(206,56,48)" rx="2" ry="2" />
<text x="971.46" y="1951.5" ></text>
</g>
<g >
<title>__switch_to (1,826,924 samples, 0.01%)</title><rect x="977.0" y="2053" width="0.1" height="15.0" fill="rgb(210,221,34)" rx="2" ry="2" />
<text x="979.99" y="2063.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,696,259 samples, 0.01%)</title><rect x="967.1" y="1941" width="0.1" height="15.0" fill="rgb(211,33,16)" rx="2" ry="2" />
<text x="970.07" y="1951.5" ></text>
</g>
<g >
<title>squashfs_get_datablock (1,891,043 samples, 0.01%)</title><rect x="965.9" y="1765" width="0.1" height="15.0" fill="rgb(228,67,38)" rx="2" ry="2" />
<text x="968.88" y="1775.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (58,457,415 samples, 0.27%)</title><rect x="469.9" y="1861" width="3.3" height="15.0" fill="rgb(239,80,23)" rx="2" ry="2" />
<text x="472.94" y="1871.5" ></text>
</g>
<g >
<title>irq_enter_rcu (2,400,978 samples, 0.01%)</title><rect x="1061.9" y="1909" width="0.2" height="15.0" fill="rgb(208,6,3)" rx="2" ry="2" />
<text x="1064.92" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (181,022,157 samples, 0.85%)</title><rect x="30.0" y="2053" width="9.9" height="15.0" fill="rgb(233,179,30)" rx="2" ry="2" />
<text x="32.97" y="2063.5" ></text>
</g>
<g >
<title>ip6_protocol_deliver_rcu (6,059,407 samples, 0.03%)</title><rect x="440.9" y="1797" width="0.4" height="15.0" fill="rgb(208,157,10)" rx="2" ry="2" />
<text x="443.92" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="1125" width="0.3" height="15.0" fill="rgb(226,215,40)" rx="2" ry="2" />
<text x="23.41" y="1135.5" ></text>
</g>
<g >
<title>futex_wait (3,065,323 samples, 0.01%)</title><rect x="526.5" y="1957" width="0.2" height="15.0" fill="rgb(249,124,41)" rx="2" ry="2" />
<text x="529.55" y="1967.5" ></text>
</g>
<g >
<title>do_syscall_64 (37,535,914 samples, 0.18%)</title><rect x="889.1" y="2021" width="2.1" height="15.0" fill="rgb(208,97,15)" rx="2" ry="2" />
<text x="892.12" y="2031.5" ></text>
</g>
<g >
<title>rcmd_af (2,676,969 samples, 0.01%)</title><rect x="16.4" y="2037" width="0.2" height="15.0" fill="rgb(236,173,27)" rx="2" ry="2" />
<text x="19.41" y="2047.5" ></text>
</g>
<g >
<title>napi_complete_done (2,270,037 samples, 0.01%)</title><rect x="593.9" y="1717" width="0.2" height="15.0" fill="rgb(237,2,25)" rx="2" ry="2" />
<text x="596.95" y="1727.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (2,081,119 samples, 0.01%)</title><rect x="1175.5" y="1989" width="0.2" height="15.0" fill="rgb(215,164,8)" rx="2" ry="2" />
<text x="1178.54" y="1999.5" ></text>
</g>
<g >
<title>memcpy_erms (11,378,954 samples, 0.05%)</title><rect x="660.1" y="1797" width="0.6" height="15.0" fill="rgb(211,110,23)" rx="2" ry="2" />
<text x="663.07" y="1807.5" ></text>
</g>
<g >
<title>fib6_rule_lookup (3,133,703 samples, 0.01%)</title><rect x="1151.2" y="1653" width="0.2" height="15.0" fill="rgb(250,72,51)" rx="2" ry="2" />
<text x="1154.19" y="1663.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (2,304,820 samples, 0.01%)</title><rect x="645.8" y="1765" width="0.1" height="15.0" fill="rgb(231,40,43)" rx="2" ry="2" />
<text x="648.80" y="1775.5" ></text>
</g>
<g >
<title>do_nanosleep (2,250,550 samples, 0.01%)</title><rect x="897.5" y="1893" width="0.1" height="15.0" fill="rgb(243,149,51)" rx="2" ry="2" />
<text x="900.46" y="1903.5" ></text>
</g>
<g >
<title>ipv6_rcv (125,306,332 samples, 0.59%)</title><rect x="540.6" y="1861" width="6.9" height="15.0" fill="rgb(216,37,30)" rx="2" ry="2" />
<text x="543.59" y="1871.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (2,272,908 samples, 0.01%)</title><rect x="826.9" y="1845" width="0.1" height="15.0" fill="rgb(245,192,27)" rx="2" ry="2" />
<text x="829.91" y="1855.5" ></text>
</g>
<g >
<title>ip6_list_rcv_finish.constprop.0 (4,453,198 samples, 0.02%)</title><rect x="547.6" y="1845" width="0.2" height="15.0" fill="rgb(253,184,43)" rx="2" ry="2" />
<text x="550.58" y="1855.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1301" width="8.8" height="15.0" fill="rgb(225,131,17)" rx="2" ry="2" />
<text x="396.46" y="1311.5" ></text>
</g>
<g >
<title>napi_complete_done (2,662,726 samples, 0.01%)</title><rect x="50.7" y="1925" width="0.2" height="15.0" fill="rgb(229,165,28)" rx="2" ry="2" />
<text x="53.74" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (3,004,006 samples, 0.01%)</title><rect x="51.7" y="1845" width="0.1" height="15.0" fill="rgb(249,203,24)" rx="2" ry="2" />
<text x="54.68" y="1855.5" ></text>
</g>
<g >
<title>[libgio-2.0.so.0.7200.4] (2,154,662 samples, 0.01%)</title><rect x="43.0" y="2053" width="0.1" height="15.0" fill="rgb(229,79,46)" rx="2" ry="2" />
<text x="45.96" y="2063.5" ></text>
</g>
<g >
<title>cake_dequeue (4,149,996 samples, 0.02%)</title><rect x="559.8" y="1925" width="0.2" height="15.0" fill="rgb(211,113,0)" rx="2" ry="2" />
<text x="562.79" y="1935.5" ></text>
</g>
<g >
<title>filemap_map_pages (1,931,620 samples, 0.01%)</title><rect x="30.9" y="1893" width="0.1" height="15.0" fill="rgb(237,163,42)" rx="2" ry="2" />
<text x="33.94" y="1903.5" ></text>
</g>
<g >
<title>ip6_protocol_deliver_rcu (7,423,389 samples, 0.03%)</title><rect x="543.9" y="1829" width="0.4" height="15.0" fill="rgb(214,85,31)" rx="2" ry="2" />
<text x="546.87" y="1839.5" ></text>
</g>
<g >
<title>csum_partial (4,878,160 samples, 0.02%)</title><rect x="500.3" y="1749" width="0.3" height="15.0" fill="rgb(227,3,10)" rx="2" ry="2" />
<text x="503.30" y="1759.5" ></text>
</g>
<g >
<title>__siphash_unaligned (2,496,637 samples, 0.01%)</title><rect x="679.8" y="1653" width="0.2" height="15.0" fill="rgb(253,34,38)" rx="2" ry="2" />
<text x="682.84" y="1663.5" ></text>
</g>
<g >
<title>[snapd] (14,196,476 samples, 0.07%)</title><rect x="974.4" y="1733" width="0.8" height="15.0" fill="rgb(212,164,44)" rx="2" ry="2" />
<text x="977.40" y="1743.5" ></text>
</g>
<g >
<title>[unknown] (8,901,261 samples, 0.04%)</title><rect x="816.1" y="1733" width="0.5" height="15.0" fill="rgb(244,42,54)" rx="2" ry="2" />
<text x="819.12" y="1743.5" ></text>
</g>
<g >
<title>ksize (3,783,621 samples, 0.02%)</title><rect x="777.2" y="1797" width="0.3" height="15.0" fill="rgb(235,8,19)" rx="2" ry="2" />
<text x="780.24" y="1807.5" ></text>
</g>
<g >
<title>acpi_ex_store_object_to_node (3,699,962 samples, 0.02%)</title><rect x="62.7" y="1701" width="0.2" height="15.0" fill="rgb(210,165,47)" rx="2" ry="2" />
<text x="65.68" y="1711.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (1,923,484 samples, 0.01%)</title><rect x="869.9" y="1989" width="0.1" height="15.0" fill="rgb(215,6,20)" rx="2" ry="2" />
<text x="872.92" y="1999.5" ></text>
</g>
<g >
<title>dma_map_page_attrs (2,290,151 samples, 0.01%)</title><rect x="726.9" y="1381" width="0.1" height="15.0" fill="rgb(222,28,10)" rx="2" ry="2" />
<text x="729.88" y="1391.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (3,453,094 samples, 0.02%)</title><rect x="612.0" y="1813" width="0.2" height="15.0" fill="rgb(221,172,18)" rx="2" ry="2" />
<text x="614.96" y="1823.5" ></text>
</g>
<g >
<title>validate_xmit_skb (2,873,719 samples, 0.01%)</title><rect x="1029.5" y="1525" width="0.1" height="15.0" fill="rgb(228,138,41)" rx="2" ry="2" />
<text x="1032.46" y="1535.5" ></text>
</g>
<g >
<title>alloc_pages (1,921,657 samples, 0.01%)</title><rect x="34.4" y="1877" width="0.1" height="15.0" fill="rgb(243,117,12)" rx="2" ry="2" />
<text x="37.41" y="1887.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,686,188 samples, 0.02%)</title><rect x="1164.8" y="1861" width="0.3" height="15.0" fill="rgb(214,193,47)" rx="2" ry="2" />
<text x="1167.84" y="1871.5" ></text>
</g>
<g >
<title>ip_rcv_finish_core.constprop.0 (34,690,715 samples, 0.16%)</title><rect x="1125.2" y="1717" width="1.9" height="15.0" fill="rgb(212,146,52)" rx="2" ry="2" />
<text x="1128.16" y="1727.5" ></text>
</g>
<g >
<title>cat (18,084,929 samples, 0.08%)</title><rect x="16.6" y="2069" width="1.0" height="15.0" fill="rgb(205,52,32)" rx="2" ry="2" />
<text x="19.59" y="2079.5" ></text>
</g>
<g >
<title>do_set_pte (1,922,347 samples, 0.01%)</title><rect x="33.7" y="1877" width="0.1" height="15.0" fill="rgb(232,224,23)" rx="2" ry="2" />
<text x="36.66" y="1887.5" ></text>
</g>
<g >
<title>common_interrupt (4,570,082 samples, 0.02%)</title><rect x="978.5" y="1973" width="0.2" height="15.0" fill="rgb(248,3,32)" rx="2" ry="2" />
<text x="981.45" y="1983.5" ></text>
</g>
<g >
<title>cake_hash (2,672,918 samples, 0.01%)</title><rect x="482.2" y="1637" width="0.2" height="15.0" fill="rgb(211,49,33)" rx="2" ry="2" />
<text x="485.23" y="1647.5" ></text>
</g>
<g >
<title>nf_hook_slow (6,778,053 samples, 0.03%)</title><rect x="441.3" y="1797" width="0.3" height="15.0" fill="rgb(246,126,42)" rx="2" ry="2" />
<text x="444.25" y="1807.5" ></text>
</g>
<g >
<title>ipv6_list_rcv (2,895,642 samples, 0.01%)</title><rect x="419.7" y="1813" width="0.1" height="15.0" fill="rgb(217,77,28)" rx="2" ry="2" />
<text x="422.67" y="1823.5" ></text>
</g>
<g >
<title>[unknown] (20,905,799 samples, 0.10%)</title><rect x="473.2" y="1845" width="1.1" height="15.0" fill="rgb(254,68,6)" rx="2" ry="2" />
<text x="476.16" y="1855.5" ></text>
</g>
<g >
<title>dev_queue_xmit (2,105,429 samples, 0.01%)</title><rect x="688.0" y="1573" width="0.1" height="15.0" fill="rgb(240,142,5)" rx="2" ry="2" />
<text x="690.98" y="1583.5" ></text>
</g>
<g >
<title>common_interrupt (4,384,650 samples, 0.02%)</title><rect x="1112.2" y="1957" width="0.2" height="15.0" fill="rgb(208,221,17)" rx="2" ry="2" />
<text x="1115.16" y="1967.5" ></text>
</g>
<g >
<title>acpi_ex_store (2,875,263 samples, 0.01%)</title><rect x="62.9" y="1717" width="0.2" height="15.0" fill="rgb(206,18,34)" rx="2" ry="2" />
<text x="65.91" y="1727.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (6,837,243 samples, 0.03%)</title><rect x="1044.1" y="1509" width="0.3" height="15.0" fill="rgb(239,184,6)" rx="2" ry="2" />
<text x="1047.05" y="1519.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (1,873,240 samples, 0.01%)</title><rect x="834.6" y="1909" width="0.1" height="15.0" fill="rgb(209,184,5)" rx="2" ry="2" />
<text x="837.62" y="1919.5" ></text>
</g>
<g >
<title>rcu_read_unlock_strict (3,312,292 samples, 0.02%)</title><rect x="792.2" y="1733" width="0.2" height="15.0" fill="rgb(229,67,23)" rx="2" ry="2" />
<text x="795.21" y="1743.5" ></text>
</g>
<g >
<title>[snap] (20,447,016 samples, 0.10%)</title><rect x="883.8" y="965" width="1.1" height="15.0" fill="rgb(210,89,41)" rx="2" ry="2" />
<text x="886.75" y="975.5" ></text>
</g>
<g >
<title>__qdisc_run (3,772,625 samples, 0.02%)</title><rect x="482.7" y="1685" width="0.2" height="15.0" fill="rgb(243,187,26)" rx="2" ry="2" />
<text x="485.67" y="1695.5" ></text>
</g>
<g >
<title>rtl8169_poll (1,911,202 samples, 0.01%)</title><rect x="943.3" y="1493" width="0.1" height="15.0" fill="rgb(243,113,6)" rx="2" ry="2" />
<text x="946.27" y="1503.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (2,734,902 samples, 0.01%)</title><rect x="995.5" y="1861" width="0.1" height="15.0" fill="rgb(224,41,35)" rx="2" ry="2" />
<text x="998.46" y="1871.5" ></text>
</g>
<g >
<title>ip6_forward (94,581,407 samples, 0.44%)</title><rect x="1130.4" y="1685" width="5.3" height="15.0" fill="rgb(205,81,37)" rx="2" ry="2" />
<text x="1133.44" y="1695.5" ></text>
</g>
<g >
<title>nf_conntrack_in (10,260,861 samples, 0.05%)</title><rect x="658.8" y="1717" width="0.6" height="15.0" fill="rgb(229,18,7)" rx="2" ry="2" />
<text x="661.85" y="1727.5" ></text>
</g>
<g >
<title>exec_mmap (4,998,195 samples, 0.02%)</title><rect x="872.5" y="1877" width="0.3" height="15.0" fill="rgb(247,55,19)" rx="2" ry="2" />
<text x="875.55" y="1887.5" ></text>
</g>
<g >
<title>irq_exit_rcu (3,811,012 samples, 0.02%)</title><rect x="626.0" y="1829" width="0.2" height="15.0" fill="rgb(241,83,28)" rx="2" ry="2" />
<text x="629.03" y="1839.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (2,258,761 samples, 0.01%)</title><rect x="609.9" y="1893" width="0.2" height="15.0" fill="rgb(238,86,11)" rx="2" ry="2" />
<text x="612.93" y="1903.5" ></text>
</g>
<g >
<title>[snapctl] (11,724,813 samples, 0.05%)</title><rect x="944.3" y="2005" width="0.6" height="15.0" fill="rgb(229,87,11)" rx="2" ry="2" />
<text x="947.29" y="2015.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (2,317,174 samples, 0.01%)</title><rect x="69.5" y="1877" width="0.2" height="15.0" fill="rgb(253,95,27)" rx="2" ry="2" />
<text x="72.54" y="1887.5" ></text>
</g>
<g >
<title>__ksize (14,517,752 samples, 0.07%)</title><rect x="642.5" y="1845" width="0.8" height="15.0" fill="rgb(247,202,21)" rx="2" ry="2" />
<text x="645.50" y="1855.5" ></text>
</g>
<g >
<title>iptunnel_handle_offloads (1,918,801 samples, 0.01%)</title><rect x="739.7" y="1621" width="0.1" height="15.0" fill="rgb(217,143,11)" rx="2" ry="2" />
<text x="742.69" y="1631.5" ></text>
</g>
<g >
<title>net_rx_action (3,853,040 samples, 0.02%)</title><rect x="913.1" y="1509" width="0.2" height="15.0" fill="rgb(244,145,16)" rx="2" ry="2" />
<text x="916.13" y="1519.5" ></text>
</g>
<g >
<title>[snap] (19,310,813 samples, 0.09%)</title><rect x="883.8" y="613" width="1.0" height="15.0" fill="rgb(244,5,51)" rx="2" ry="2" />
<text x="886.75" y="623.5" ></text>
</g>
<g >
<title>napi_complete_done (18,357,007 samples, 0.09%)</title><rect x="51.9" y="1925" width="1.0" height="15.0" fill="rgb(254,127,26)" rx="2" ry="2" />
<text x="54.90" y="1935.5" ></text>
</g>
<g >
<title>do_faccessat (3,403,640 samples, 0.02%)</title><rect x="25.0" y="1989" width="0.2" height="15.0" fill="rgb(252,146,50)" rx="2" ry="2" />
<text x="27.98" y="1999.5" ></text>
</g>
<g >
<title>ip6_output (77,694,362 samples, 0.36%)</title><rect x="1007.8" y="1701" width="4.3" height="15.0" fill="rgb(226,137,40)" rx="2" ry="2" />
<text x="1010.80" y="1711.5" ></text>
</g>
<g >
<title>rtl8169_poll (6,556,104 samples, 0.03%)</title><rect x="850.7" y="1925" width="0.3" height="15.0" fill="rgb(251,148,2)" rx="2" ry="2" />
<text x="853.66" y="1935.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (25,944,970 samples, 0.12%)</title><rect x="836.0" y="1989" width="1.4" height="15.0" fill="rgb(216,92,29)" rx="2" ry="2" />
<text x="838.96" y="1999.5" ></text>
</g>
<g >
<title>ip_forward (1,910,789 samples, 0.01%)</title><rect x="620.2" y="1733" width="0.1" height="15.0" fill="rgb(246,168,11)" rx="2" ry="2" />
<text x="623.24" y="1743.5" ></text>
</g>
<g >
<title>cake_enqueue (1,855,129 samples, 0.01%)</title><rect x="439.9" y="1653" width="0.1" height="15.0" fill="rgb(243,162,12)" rx="2" ry="2" />
<text x="442.92" y="1663.5" ></text>
</g>
<g >
<title>__ip6_finish_output (15,994,572 samples, 0.07%)</title><rect x="1099.7" y="1653" width="0.9" height="15.0" fill="rgb(230,224,53)" rx="2" ry="2" />
<text x="1102.73" y="1663.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (2,457,444 samples, 0.01%)</title><rect x="495.5" y="1669" width="0.1" height="15.0" fill="rgb(246,51,53)" rx="2" ry="2" />
<text x="498.50" y="1679.5" ></text>
</g>
<g >
<title>bprm_execve (1,922,816 samples, 0.01%)</title><rect x="17.1" y="1973" width="0.1" height="15.0" fill="rgb(218,111,38)" rx="2" ry="2" />
<text x="20.05" y="1983.5" ></text>
</g>
<g >
<title>tun_net_xmit (5,089,287 samples, 0.02%)</title><rect x="1003.5" y="1525" width="0.3" height="15.0" fill="rgb(242,161,37)" rx="2" ry="2" />
<text x="1006.49" y="1535.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (17,499,577 samples, 0.08%)</title><rect x="545.0" y="1845" width="1.0" height="15.0" fill="rgb(254,40,35)" rx="2" ry="2" />
<text x="548.01" y="1855.5" ></text>
</g>
<g >
<title>dev_queue_xmit_nit (5,257,693 samples, 0.02%)</title><rect x="553.0" y="1893" width="0.3" height="15.0" fill="rgb(224,61,5)" rx="2" ry="2" />
<text x="556.00" y="1903.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (3,193,829 samples, 0.01%)</title><rect x="495.5" y="1685" width="0.1" height="15.0" fill="rgb(246,129,54)" rx="2" ry="2" />
<text x="498.46" y="1695.5" ></text>
</g>
<g >
<title>[unknown] (2,224,534 samples, 0.01%)</title><rect x="465.9" y="1813" width="0.1" height="15.0" fill="rgb(220,114,44)" rx="2" ry="2" />
<text x="468.88" y="1823.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (24,208,880 samples, 0.11%)</title><rect x="537.3" y="1845" width="1.3" height="15.0" fill="rgb(218,200,37)" rx="2" ry="2" />
<text x="540.25" y="1855.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (6,969,653 samples, 0.03%)</title><rect x="958.7" y="1893" width="0.4" height="15.0" fill="rgb(216,137,50)" rx="2" ry="2" />
<text x="961.70" y="1903.5" ></text>
</g>
<g >
<title>[unknown] (1,905,890 samples, 0.01%)</title><rect x="57.1" y="1781" width="0.1" height="15.0" fill="rgb(213,150,4)" rx="2" ry="2" />
<text x="60.11" y="1791.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (8,360,421 samples, 0.04%)</title><rect x="406.8" y="1685" width="0.5" height="15.0" fill="rgb(230,87,11)" rx="2" ry="2" />
<text x="409.80" y="1695.5" ></text>
</g>
<g >
<title>skb_release_data (5,998,775 samples, 0.03%)</title><rect x="420.3" y="1845" width="0.3" height="15.0" fill="rgb(233,49,50)" rx="2" ry="2" />
<text x="423.27" y="1855.5" ></text>
</g>
<g >
<title>hrtimer_update_next_event (2,130,761 samples, 0.01%)</title><rect x="1061.4" y="1877" width="0.1" height="15.0" fill="rgb(220,136,38)" rx="2" ry="2" />
<text x="1064.41" y="1887.5" ></text>
</g>
<g >
<title>[snap] (18,573,128 samples, 0.09%)</title><rect x="883.8" y="421" width="1.0" height="15.0" fill="rgb(249,94,7)" rx="2" ry="2" />
<text x="886.75" y="431.5" ></text>
</g>
<g >
<title>acpi_ps_parse_loop (17,777,432 samples, 0.08%)</title><rect x="62.4" y="1765" width="0.9" height="15.0" fill="rgb(237,10,23)" rx="2" ry="2" />
<text x="65.36" y="1775.5" ></text>
</g>
<g >
<title>ip6_output (1,915,517 samples, 0.01%)</title><rect x="450.1" y="1797" width="0.1" height="15.0" fill="rgb(234,197,52)" rx="2" ry="2" />
<text x="453.14" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="949" width="8.8" height="15.0" fill="rgb(224,83,50)" rx="2" ry="2" />
<text x="396.46" y="959.5" ></text>
</g>
<g >
<title>[unknown] (34,448,183 samples, 0.16%)</title><rect x="492.3" y="1813" width="1.9" height="15.0" fill="rgb(246,76,54)" rx="2" ry="2" />
<text x="495.29" y="1823.5" ></text>
</g>
<g >
<title>ipv6_chk_addr_and_flags (6,451,871 samples, 0.03%)</title><rect x="714.4" y="1589" width="0.4" height="15.0" fill="rgb(232,151,4)" rx="2" ry="2" />
<text x="717.44" y="1599.5" ></text>
</g>
<g >
<title>ip6_route_input (5,258,196 samples, 0.02%)</title><rect x="1099.4" y="1701" width="0.2" height="15.0" fill="rgb(240,158,25)" rx="2" ry="2" />
<text x="1102.35" y="1711.5" ></text>
</g>
<g >
<title>rtl8169_start_xmit (5,299,395 samples, 0.02%)</title><rect x="506.3" y="1877" width="0.2" height="15.0" fill="rgb(247,105,4)" rx="2" ry="2" />
<text x="509.25" y="1887.5" ></text>
</g>
<g >
<title>ksys_write (4,160,068,535 samples, 19.43%)</title><rect x="604.0" y="1989" width="229.2" height="15.0" fill="rgb(234,102,33)" rx="2" ry="2" />
<text x="606.95" y="1999.5" >ksys_write</text>
</g>
<g >
<title>lzma_match (3,843,958 samples, 0.02%)</title><rect x="956.4" y="1621" width="0.2" height="15.0" fill="rgb(208,202,11)" rx="2" ry="2" />
<text x="959.39" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (6,030,620 samples, 0.03%)</title><rect x="679.4" y="1637" width="0.4" height="15.0" fill="rgb(242,147,2)" rx="2" ry="2" />
<text x="682.45" y="1647.5" ></text>
</g>
<g >
<title>do_group_exit (5,277,912 samples, 0.02%)</title><rect x="870.8" y="2005" width="0.3" height="15.0" fill="rgb(250,188,44)" rx="2" ry="2" />
<text x="873.84" y="2015.5" ></text>
</g>
<g >
<title>ksize (4,974,763 samples, 0.02%)</title><rect x="645.4" y="1877" width="0.3" height="15.0" fill="rgb(233,217,14)" rx="2" ry="2" />
<text x="648.40" y="1887.5" ></text>
</g>
<g >
<title>__fib_lookup (41,390,915 samples, 0.19%)</title><rect x="736.6" y="1573" width="2.3" height="15.0" fill="rgb(236,32,22)" rx="2" ry="2" />
<text x="739.65" y="1583.5" ></text>
</g>
<g >
<title>common_interrupt (2,309,524 samples, 0.01%)</title><rect x="968.0" y="2005" width="0.1" height="15.0" fill="rgb(224,71,14)" rx="2" ry="2" />
<text x="971.01" y="2015.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (1,868,207 samples, 0.01%)</title><rect x="542.4" y="1733" width="0.1" height="15.0" fill="rgb(208,159,11)" rx="2" ry="2" />
<text x="545.41" y="1743.5" ></text>
</g>
<g >
<title>handle_edge_irq (5,333,522 samples, 0.02%)</title><rect x="1098.8" y="1877" width="0.3" height="15.0" fill="rgb(241,93,34)" rx="2" ry="2" />
<text x="1101.78" y="1887.5" ></text>
</g>
<g >
<title>rcmd_af (2,631,555 samples, 0.01%)</title><rect x="860.0" y="2037" width="0.1" height="15.0" fill="rgb(222,27,17)" rx="2" ry="2" />
<text x="862.96" y="2047.5" ></text>
</g>
<g >
<title>nf_hook_slow (2,020,197 samples, 0.01%)</title><rect x="1150.5" y="1717" width="0.1" height="15.0" fill="rgb(210,107,38)" rx="2" ry="2" />
<text x="1153.49" y="1727.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (4,508,062 samples, 0.02%)</title><rect x="589.8" y="1845" width="0.2" height="15.0" fill="rgb(219,75,2)" rx="2" ry="2" />
<text x="592.75" y="1855.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,306,914 samples, 0.01%)</title><rect x="1189.0" y="2005" width="0.1" height="15.0" fill="rgb(252,100,44)" rx="2" ry="2" />
<text x="1191.96" y="2015.5" ></text>
</g>
<g >
<title>__ip6_finish_output (3,608,672 samples, 0.02%)</title><rect x="501.9" y="1733" width="0.2" height="15.0" fill="rgb(212,171,27)" rx="2" ry="2" />
<text x="504.87" y="1743.5" ></text>
</g>
<g >
<title>aa_dfa_match (2,696,975 samples, 0.01%)</title><rect x="843.3" y="1813" width="0.1" height="15.0" fill="rgb(210,109,38)" rx="2" ry="2" />
<text x="846.26" y="1823.5" ></text>
</g>
<g >
<title>__ip6_finish_output (62,556,111 samples, 0.29%)</title><rect x="741.7" y="1557" width="3.4" height="15.0" fill="rgb(206,170,1)" rx="2" ry="2" />
<text x="744.69" y="1567.5" ></text>
</g>
<g >
<title>[unknown] (7,249,985 samples, 0.03%)</title><rect x="411.9" y="1637" width="0.4" height="15.0" fill="rgb(241,93,24)" rx="2" ry="2" />
<text x="414.87" y="1647.5" ></text>
</g>
<g >
<title>[snap-seccomp] (23,765,562 samples, 0.11%)</title><rect x="876.9" y="1957" width="1.3" height="15.0" fill="rgb(243,71,15)" rx="2" ry="2" />
<text x="879.91" y="1967.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (5,668,748 samples, 0.03%)</title><rect x="835.1" y="1845" width="0.3" height="15.0" fill="rgb(231,79,54)" rx="2" ry="2" />
<text x="838.08" y="1855.5" ></text>
</g>
<g >
<title>__ip6_finish_output (1,923,337 samples, 0.01%)</title><rect x="926.3" y="1301" width="0.1" height="15.0" fill="rgb(238,154,26)" rx="2" ry="2" />
<text x="929.28" y="1311.5" ></text>
</g>
<g >
<title>tty_mode_ioctl (2,470,368 samples, 0.01%)</title><rect x="861.3" y="1941" width="0.1" height="15.0" fill="rgb(239,0,19)" rx="2" ry="2" />
<text x="864.28" y="1951.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,858,459 samples, 0.01%)</title><rect x="24.2" y="1941" width="0.1" height="15.0" fill="rgb(227,158,37)" rx="2" ry="2" />
<text x="27.17" y="1951.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (4,415,081 samples, 0.02%)</title><rect x="1098.8" y="1829" width="0.3" height="15.0" fill="rgb(224,199,4)" rx="2" ry="2" />
<text x="1101.83" y="1839.5" ></text>
</g>
<g >
<title>fuse_mainloop (2,207,975 samples, 0.01%)</title><rect x="42.7" y="2069" width="0.2" height="15.0" fill="rgb(207,16,23)" rx="2" ry="2" />
<text x="45.74" y="2079.5" ></text>
</g>
<g >
<title>ip6_route_input (2,301,322 samples, 0.01%)</title><rect x="425.2" y="1781" width="0.2" height="15.0" fill="rgb(232,222,37)" rx="2" ry="2" />
<text x="428.24" y="1791.5" ></text>
</g>
<g >
<title>__ksize (3,443,504 samples, 0.02%)</title><rect x="631.9" y="1829" width="0.2" height="15.0" fill="rgb(212,34,34)" rx="2" ry="2" />
<text x="634.86" y="1839.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,663,096 samples, 0.01%)</title><rect x="895.9" y="1845" width="0.1" height="15.0" fill="rgb(208,39,28)" rx="2" ry="2" />
<text x="898.88" y="1855.5" ></text>
</g>
<g >
<title>ip6_forward (2,313,252 samples, 0.01%)</title><rect x="979.9" y="1749" width="0.1" height="15.0" fill="rgb(217,82,32)" rx="2" ry="2" />
<text x="982.87" y="1759.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,251,318 samples, 0.01%)</title><rect x="599.0" y="1845" width="0.1" height="15.0" fill="rgb(226,102,9)" rx="2" ry="2" />
<text x="601.96" y="1855.5" ></text>
</g>
<g >
<title>mmap_region (5,007,155 samples, 0.02%)</title><rect x="843.6" y="1941" width="0.3" height="15.0" fill="rgb(246,167,42)" rx="2" ry="2" />
<text x="846.62" y="1951.5" ></text>
</g>
<g >
<title>__dev_xmit_skb (25,149,202 samples, 0.12%)</title><rect x="1122.6" y="1573" width="1.4" height="15.0" fill="rgb(210,118,45)" rx="2" ry="2" />
<text x="1125.61" y="1583.5" ></text>
</g>
<g >
<title>internal/poll.(*FD).Read (19,442,112 samples, 0.09%)</title><rect x="1179.1" y="1893" width="1.0" height="15.0" fill="rgb(205,173,14)" rx="2" ry="2" />
<text x="1182.05" y="1903.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (3,292,697 samples, 0.02%)</title><rect x="1147.8" y="1765" width="0.2" height="15.0" fill="rgb(244,161,22)" rx="2" ry="2" />
<text x="1150.80" y="1775.5" ></text>
</g>
<g >
<title>fib_info_nh_uses_dev (2,676,950 samples, 0.01%)</title><rect x="800.3" y="1733" width="0.2" height="15.0" fill="rgb(239,31,19)" rx="2" ry="2" />
<text x="803.32" y="1743.5" ></text>
</g>
<g >
<title>inet_ehashfn (1,834,615 samples, 0.01%)</title><rect x="805.4" y="1797" width="0.1" height="15.0" fill="rgb(239,4,35)" rx="2" ry="2" />
<text x="808.35" y="1807.5" ></text>
</g>
<g >
<title>exc_page_fault (14,966,638 samples, 0.07%)</title><rect x="24.1" y="2021" width="0.8" height="15.0" fill="rgb(221,172,38)" rx="2" ry="2" />
<text x="27.09" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (160,731,805 samples, 0.75%)</title><rect x="393.5" y="1109" width="8.8" height="15.0" fill="rgb(231,91,26)" rx="2" ry="2" />
<text x="396.46" y="1119.5" ></text>
</g>
<g >
<title>memset_erms (7,249,404 samples, 0.03%)</title><rect x="669.3" y="1685" width="0.4" height="15.0" fill="rgb(223,157,44)" rx="2" ry="2" />
<text x="672.25" y="1695.5" ></text>
</g>
<g >
<title>snapctl (58,898,482 samples, 0.28%)</title><rect x="944.2" y="2069" width="3.3" height="15.0" fill="rgb(244,189,9)" rx="2" ry="2" />
<text x="947.20" y="2079.5" ></text>
</g>
<g >
<title>asm_common_interrupt (21,642,727 samples, 0.10%)</title><rect x="1169.3" y="1877" width="1.2" height="15.0" fill="rgb(245,191,36)" rx="2" ry="2" />
<text x="1172.35" y="1887.5" ></text>
</g>
<g >
<title>__netif_receive_skb_list_core (255,490,007 samples, 1.19%)</title><rect x="1000.8" y="1797" width="14.1" height="15.0" fill="rgb(217,23,5)" rx="2" ry="2" />
<text x="1003.79" y="1807.5" ></text>
</g>
<g >
<title>_copy_to_iter (17,961,175 samples, 0.08%)</title><rect x="593.1" y="1845" width="1.0" height="15.0" fill="rgb(224,129,38)" rx="2" ry="2" />
<text x="596.14" y="1855.5" ></text>
</g>
<g >
<title>[snap-seccomp] (21,851,058 samples, 0.10%)</title><rect x="877.0" y="1941" width="1.2" height="15.0" fill="rgb(254,56,22)" rx="2" ry="2" />
<text x="879.98" y="1951.5" ></text>
</g>
<g >
<title>[snap-exec] (4,933,073 samples, 0.02%)</title><rect x="29.7" y="2053" width="0.3" height="15.0" fill="rgb(250,48,35)" rx="2" ry="2" />
<text x="32.70" y="2063.5" ></text>
</g>
<g >
<title>[unknown] (10,563,753 samples, 0.05%)</title><rect x="416.0" y="1749" width="0.6" height="15.0" fill="rgb(216,86,22)" rx="2" ry="2" />
<text x="418.98" y="1759.5" ></text>
</g>
<g >
<title>nf_hook_slow (45,933,610 samples, 0.21%)</title><rect x="1140.0" y="1685" width="2.5" height="15.0" fill="rgb(243,222,4)" rx="2" ry="2" />
<text x="1142.98" y="1695.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.0 (3,833,974 samples, 0.02%)</title><rect x="10.5" y="1989" width="0.2" height="15.0" fill="rgb(220,56,17)" rx="2" ry="2" />
<text x="13.49" y="1999.5" ></text>
</g>
<g >
<title>rtl8169_interrupt (3,421,261 samples, 0.02%)</title><rect x="1062.3" y="1781" width="0.2" height="15.0" fill="rgb(253,188,48)" rx="2" ry="2" />
<text x="1065.34" y="1791.5" ></text>
</g>
<g >
<title>strncpy (2,561,328 samples, 0.01%)</title><rect x="1124.8" y="1653" width="0.2" height="15.0" fill="rgb(233,179,53)" rx="2" ry="2" />
<text x="1127.85" y="1663.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,906,353 samples, 0.01%)</title><rect x="879.5" y="2021" width="0.1" height="15.0" fill="rgb(224,140,1)" rx="2" ry="2" />
<text x="882.47" y="2031.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1397" width="0.3" height="15.0" fill="rgb(249,217,53)" rx="2" ry="2" />
<text x="23.41" y="1407.5" ></text>
</g>
<g >
<title>ip_route_input_slow (6,816,717 samples, 0.03%)</title><rect x="51.3" y="1829" width="0.4" height="15.0" fill="rgb(212,76,37)" rx="2" ry="2" />
<text x="54.28" y="1839.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,081,304 samples, 0.01%)</title><rect x="967.1" y="2021" width="0.1" height="15.0" fill="rgb(223,125,41)" rx="2" ry="2" />
<text x="970.05" y="2031.5" ></text>
</g>
<g >
<title>fib_rules_lookup (6,119,956 samples, 0.03%)</title><rect x="408.1" y="1749" width="0.3" height="15.0" fill="rgb(222,76,1)" rx="2" ry="2" />
<text x="411.06" y="1759.5" ></text>
</g>
<g >
<title>ip_forward_finish (3,865,228 samples, 0.02%)</title><rect x="1150.1" y="1701" width="0.2" height="15.0" fill="rgb(224,23,38)" rx="2" ry="2" />
<text x="1153.09" y="1711.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="1093" width="0.3" height="15.0" fill="rgb(246,191,4)" rx="2" ry="2" />
<text x="23.41" y="1103.5" ></text>
</g>
<g >
<title>[unknown] (11,631,457 samples, 0.05%)</title><rect x="70.8" y="2037" width="0.6" height="15.0" fill="rgb(209,59,18)" rx="2" ry="2" />
<text x="73.78" y="2047.5" ></text>
</g>
<g >
<title>ip6_input (2,162,648 samples, 0.01%)</title><rect x="1151.0" y="1685" width="0.2" height="15.0" fill="rgb(245,21,33)" rx="2" ry="2" />
<text x="1154.04" y="1695.5" ></text>
</g>
<g >
<title>__cond_resched (2,654,296 samples, 0.01%)</title><rect x="633.3" y="1845" width="0.2" height="15.0" fill="rgb(251,179,11)" rx="2" ry="2" />
<text x="636.32" y="1855.5" ></text>
</g>
<g >
<title>napi_complete_done (12,900,898 samples, 0.06%)</title><rect x="557.2" y="1925" width="0.7" height="15.0" fill="rgb(239,84,10)" rx="2" ry="2" />
<text x="560.18" y="1935.5" ></text>
</g>
<g >
<title>fib6_node_lookup (13,138,822 samples, 0.06%)</title><rect x="1036.3" y="1589" width="0.8" height="15.0" fill="rgb(220,85,53)" rx="2" ry="2" />
<text x="1039.33" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (25,050,603 samples, 0.12%)</title><rect x="975.5" y="2037" width="1.4" height="15.0" fill="rgb(243,37,1)" rx="2" ry="2" />
<text x="978.54" y="2047.5" ></text>
</g>
<g >
<title>__qdisc_run (4,756,424 samples, 0.02%)</title><rect x="1102.7" y="1845" width="0.3" height="15.0" fill="rgb(243,105,37)" rx="2" ry="2" />
<text x="1105.69" y="1855.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,871,910 samples, 0.01%)</title><rect x="890.6" y="1637" width="0.1" height="15.0" fill="rgb(215,133,5)" rx="2" ry="2" />
<text x="893.59" y="1647.5" ></text>
</g>
<g >
<title>irq_enter_rcu (13,313,213 samples, 0.06%)</title><rect x="996.3" y="1909" width="0.7" height="15.0" fill="rgb(211,22,51)" rx="2" ry="2" />
<text x="999.31" y="1919.5" ></text>
</g>
<g >
<title>__fsnotify_parent (4,137,750 samples, 0.02%)</title><rect x="600.4" y="1925" width="0.2" height="15.0" fill="rgb(228,45,47)" rx="2" ry="2" />
<text x="603.41" y="1935.5" ></text>
</g>
<g >
<title>[snap-exec] (20,003,440 samples, 0.09%)</title><rect x="873.7" y="1797" width="1.1" height="15.0" fill="rgb(247,60,28)" rx="2" ry="2" />
<text x="876.69" y="1807.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,900,322 samples, 0.01%)</title><rect x="534.5" y="1925" width="0.1" height="15.0" fill="rgb(226,12,14)" rx="2" ry="2" />
<text x="537.53" y="1935.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,496,904 samples, 0.01%)</title><rect x="1149.9" y="1813" width="0.1" height="15.0" fill="rgb(223,215,54)" rx="2" ry="2" />
<text x="1152.87" y="1823.5" ></text>
</g>
<g >
<title>validate_xmit_skb_list (4,602,659 samples, 0.02%)</title><rect x="1067.6" y="1829" width="0.2" height="15.0" fill="rgb(221,125,10)" rx="2" ry="2" />
<text x="1070.57" y="1839.5" ></text>
</g>
<g >
<title>ttwu_do_activate (1,947,939 samples, 0.01%)</title><rect x="1058.6" y="1845" width="0.1" height="15.0" fill="rgb(229,11,27)" rx="2" ry="2" />
<text x="1061.60" y="1855.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,882,550 samples, 0.01%)</title><rect x="887.5" y="1909" width="0.1" height="15.0" fill="rgb(223,63,51)" rx="2" ry="2" />
<text x="890.53" y="1919.5" ></text>
</g>
<g >
<title>[unknown] (2,302,813 samples, 0.01%)</title><rect x="451.5" y="1877" width="0.1" height="15.0" fill="rgb(213,87,0)" rx="2" ry="2" />
<text x="454.50" y="1887.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,927,803 samples, 0.01%)</title><rect x="903.1" y="1829" width="0.1" height="15.0" fill="rgb(229,160,33)" rx="2" ry="2" />
<text x="906.07" y="1839.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,012,971 samples, 0.02%)</title><rect x="959.3" y="1989" width="0.3" height="15.0" fill="rgb(232,62,47)" rx="2" ry="2" />
<text x="962.28" y="1999.5" ></text>
</g>
<g >
<title>asm_common_interrupt (23,181,950 samples, 0.11%)</title><rect x="957.9" y="2037" width="1.3" height="15.0" fill="rgb(226,191,19)" rx="2" ry="2" />
<text x="960.91" y="2047.5" ></text>
</g>
<g >
<title>do_fault (3,854,648 samples, 0.02%)</title><rect x="959.3" y="1941" width="0.2" height="15.0" fill="rgb(254,199,31)" rx="2" ry="2" />
<text x="962.32" y="1951.5" ></text>
</g>
<g >
<title>common_interrupt (3,262,584 samples, 0.02%)</title><rect x="1111.5" y="1941" width="0.1" height="15.0" fill="rgb(207,222,52)" rx="2" ry="2" />
<text x="1114.47" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="933" width="0.3" height="15.0" fill="rgb(248,169,42)" rx="2" ry="2" />
<text x="23.41" y="943.5" ></text>
</g>
<g >
<title>sock_def_readable (2,360,962 samples, 0.01%)</title><rect x="1003.6" y="1509" width="0.2" height="15.0" fill="rgb(205,97,51)" rx="2" ry="2" />
<text x="1006.64" y="1519.5" ></text>
</g>
<g >
<title>__x64_sys_openat (24,989,141 samples, 0.12%)</title><rect x="841.0" y="1973" width="1.4" height="15.0" fill="rgb(247,26,6)" rx="2" ry="2" />
<text x="844.03" y="1983.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (12,338,866 samples, 0.06%)</title><rect x="972.7" y="1877" width="0.7" height="15.0" fill="rgb(240,126,38)" rx="2" ry="2" />
<text x="975.67" y="1887.5" ></text>
</g>
<g >
<title>[snapd] (5,207,184 samples, 0.02%)</title><rect x="974.8" y="1605" width="0.3" height="15.0" fill="rgb(233,216,29)" rx="2" ry="2" />
<text x="977.83" y="1615.5" ></text>
</g>
<g >
<title>[snapctl] (8,266,421 samples, 0.04%)</title><rect x="944.3" y="1957" width="0.5" height="15.0" fill="rgb(216,110,47)" rx="2" ry="2" />
<text x="947.31" y="1967.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1061" width="0.5" height="15.0" fill="rgb(238,182,6)" rx="2" ry="2" />
<text x="18.42" y="1071.5" ></text>
</g>
<g >
<title>[snap] (14,039,202 samples, 0.07%)</title><rect x="894.4" y="1733" width="0.8" height="15.0" fill="rgb(207,166,39)" rx="2" ry="2" />
<text x="897.43" y="1743.5" ></text>
</g>
<g >
<title>mmput (35,628,538 samples, 0.17%)</title><rect x="889.1" y="1861" width="2.0" height="15.0" fill="rgb(243,55,8)" rx="2" ry="2" />
<text x="892.12" y="1871.5" ></text>
</g>
<g >
<title>filename_lookup (47,955,356 samples, 0.22%)</title><rect x="852.5" y="1941" width="2.6" height="15.0" fill="rgb(211,31,54)" rx="2" ry="2" />
<text x="855.48" y="1951.5" ></text>
</g>
<g >
<title>skb_release_data (1,917,491 samples, 0.01%)</title><rect x="444.5" y="1813" width="0.1" height="15.0" fill="rgb(206,0,18)" rx="2" ry="2" />
<text x="447.52" y="1823.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (900,560,414 samples, 4.21%)</title><rect x="647.5" y="1893" width="49.6" height="15.0" fill="rgb(206,36,21)" rx="2" ry="2" />
<text x="650.46" y="1903.5" >__loc..</text>
</g>
<g >
<title>ip6_output (4,344,376 samples, 0.02%)</title><rect x="687.9" y="1653" width="0.3" height="15.0" fill="rgb(216,166,12)" rx="2" ry="2" />
<text x="690.94" y="1663.5" ></text>
</g>
<g >
<title>[libc-2.31.so] (18,893,345 samples, 0.09%)</title><rect x="66.4" y="2053" width="1.0" height="15.0" fill="rgb(224,7,29)" rx="2" ry="2" />
<text x="69.37" y="2063.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,114,190,479 samples, 5.20%)</title><rect x="997.3" y="1893" width="61.4" height="15.0" fill="rgb(239,85,44)" rx="2" ry="2" />
<text x="1000.30" y="1903.5" >__soft..</text>
</g>
<g >
<title>asm_common_interrupt (1,894,670 samples, 0.01%)</title><rect x="592.7" y="1813" width="0.1" height="15.0" fill="rgb(227,67,53)" rx="2" ry="2" />
<text x="595.73" y="1823.5" ></text>
</g>
<g >
<title>asm_common_interrupt (3,423,356 samples, 0.02%)</title><rect x="401.1" y="261" width="0.1" height="15.0" fill="rgb(209,155,49)" rx="2" ry="2" />
<text x="404.06" y="271.5" ></text>
</g>
<g >
<title>__ip6_finish_output (6,105,122 samples, 0.03%)</title><rect x="513.6" y="1781" width="0.3" height="15.0" fill="rgb(236,102,17)" rx="2" ry="2" />
<text x="516.60" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (2,270,003 samples, 0.01%)</title><rect x="536.5" y="1813" width="0.1" height="15.0" fill="rgb(211,41,3)" rx="2" ry="2" />
<text x="539.45" y="1823.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,750,830 samples, 0.02%)</title><rect x="861.3" y="2021" width="0.2" height="15.0" fill="rgb(228,130,14)" rx="2" ry="2" />
<text x="864.25" y="2031.5" ></text>
</g>
<g >
<title>net_rx_action (3,467,755 samples, 0.02%)</title><rect x="933.4" y="1493" width="0.2" height="15.0" fill="rgb(253,32,29)" rx="2" ry="2" />
<text x="936.41" y="1503.5" ></text>
</g>
<g >
<title>sock_alloc_send_pskb (304,644,254 samples, 1.42%)</title><rect x="630.0" y="1909" width="16.8" height="15.0" fill="rgb(212,162,51)" rx="2" ry="2" />
<text x="633.01" y="1919.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (3,434,880 samples, 0.02%)</title><rect x="649.3" y="1765" width="0.1" height="15.0" fill="rgb(237,117,20)" rx="2" ry="2" />
<text x="652.26" y="1775.5" ></text>
</g>
<g >
<title>seq_read_iter (2,682,137 samples, 0.01%)</title><rect x="1175.2" y="1909" width="0.2" height="15.0" fill="rgb(209,126,6)" rx="2" ry="2" />
<text x="1178.22" y="1919.5" ></text>
</g>
<g >
<title>enqueue_to_backlog (2,295,362 samples, 0.01%)</title><rect x="486.4" y="1685" width="0.1" height="15.0" fill="rgb(238,189,18)" rx="2" ry="2" />
<text x="489.38" y="1695.5" ></text>
</g>
<g >
<title>ipv6_rcv (2,258,527 samples, 0.01%)</title><rect x="574.0" y="1749" width="0.1" height="15.0" fill="rgb(248,164,51)" rx="2" ry="2" />
<text x="577.00" y="1759.5" ></text>
</g>
<g >
<title>xmit_one.constprop.0 (1,820,684 samples, 0.01%)</title><rect x="1102.9" y="1797" width="0.1" height="15.0" fill="rgb(249,44,26)" rx="2" ry="2" />
<text x="1105.86" y="1807.5" ></text>
</g>
<g >
<title>unmap_region (4,225,491 samples, 0.02%)</title><rect x="960.2" y="1909" width="0.3" height="15.0" fill="rgb(232,142,25)" rx="2" ry="2" />
<text x="963.23" y="1919.5" ></text>
</g>
<g >
<title>__fsnotify_parent (10,945,159 samples, 0.05%)</title><rect x="609.5" y="1957" width="0.6" height="15.0" fill="rgb(232,136,6)" rx="2" ry="2" />
<text x="612.50" y="1967.5" ></text>
</g>
<g >
<title>sch_direct_xmit (8,611,469 samples, 0.04%)</title><rect x="553.0" y="1941" width="0.4" height="15.0" fill="rgb(230,102,6)" rx="2" ry="2" />
<text x="555.96" y="1951.5" ></text>
</g>
<g >
<title>hrtimer_get_next_event (2,639,544 samples, 0.01%)</title><rect x="1168.3" y="1829" width="0.2" height="15.0" fill="rgb(220,33,2)" rx="2" ry="2" />
<text x="1171.33" y="1839.5" ></text>
</g>
<g >
<title>ip6_output (77,538,632 samples, 0.36%)</title><rect x="663.4" y="1701" width="4.2" height="15.0" fill="rgb(239,57,18)" rx="2" ry="2" />
<text x="666.37" y="1711.5" ></text>
</g>
<g >
<title>handle_preload_list (665,670,091 samples, 3.11%)</title><rect x="904.6" y="2037" width="36.7" height="15.0" fill="rgb(209,224,41)" rx="2" ry="2" />
<text x="907.56" y="2047.5" >han..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,833,113 samples, 0.03%)</title><rect x="16.0" y="2021" width="0.3" height="15.0" fill="rgb(229,8,9)" rx="2" ry="2" />
<text x="18.95" y="2031.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (4,901,446 samples, 0.02%)</title><rect x="835.1" y="1829" width="0.2" height="15.0" fill="rgb(223,63,16)" rx="2" ry="2" />
<text x="838.08" y="1839.5" ></text>
</g>
<g >
<title>strncpy (1,911,223 samples, 0.01%)</title><rect x="1137.1" y="1621" width="0.1" height="15.0" fill="rgb(254,116,23)" rx="2" ry="2" />
<text x="1140.10" y="1631.5" ></text>
</g>
<g >
<title>[unknown] (5,287,561 samples, 0.02%)</title><rect x="20.4" y="1413" width="0.3" height="15.0" fill="rgb(239,78,34)" rx="2" ry="2" />
<text x="23.41" y="1423.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,355,710 samples, 0.02%)</title><rect x="463.9" y="1957" width="0.2" height="15.0" fill="rgb(211,73,54)" rx="2" ry="2" />
<text x="466.95" y="1967.5" ></text>
</g>
<g >
<title>exit_mm (26,276,812 samples, 0.12%)</title><rect x="971.9" y="1973" width="1.5" height="15.0" fill="rgb(209,67,21)" rx="2" ry="2" />
<text x="974.90" y="1983.5" ></text>
</g>
<g >
<title>exec_binprm (1,922,816 samples, 0.01%)</title><rect x="17.1" y="1941" width="0.1" height="15.0" fill="rgb(227,90,30)" rx="2" ry="2" />
<text x="20.05" y="1951.5" ></text>
</g>
<g >
<title>dequeue_skb (1,895,111 samples, 0.01%)</title><rect x="666.6" y="1557" width="0.1" height="15.0" fill="rgb(221,193,53)" rx="2" ry="2" />
<text x="669.63" y="1567.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="2021" width="0.5" height="15.0" fill="rgb(241,9,42)" rx="2" ry="2" />
<text x="18.42" y="2031.5" ></text>
</g>
<g >
<title>add_interrupt_randomness (1,908,288 samples, 0.01%)</title><rect x="456.3" y="1957" width="0.1" height="15.0" fill="rgb(213,82,48)" rx="2" ry="2" />
<text x="459.27" y="1967.5" ></text>
</g>
<g >
<title>__skb_clone (3,379,964 samples, 0.02%)</title><rect x="488.5" y="1797" width="0.2" height="15.0" fill="rgb(234,105,40)" rx="2" ry="2" />
<text x="491.48" y="1807.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="1077" width="0.3" height="15.0" fill="rgb(224,6,30)" rx="2" ry="2" />
<text x="23.41" y="1087.5" ></text>
</g>
<g >
<title>aa_file_perm (2,476,217 samples, 0.01%)</title><rect x="600.9" y="1909" width="0.1" height="15.0" fill="rgb(238,9,22)" rx="2" ry="2" />
<text x="603.89" y="1919.5" ></text>
</g>
<g >
<title>__netif_receive_skb_core.constprop.0 (9,077,483 samples, 0.04%)</title><rect x="557.2" y="1877" width="0.5" height="15.0" fill="rgb(208,114,19)" rx="2" ry="2" />
<text x="560.22" y="1887.5" ></text>
</g>
<g >
<title>common_interrupt (2,258,761 samples, 0.01%)</title><rect x="609.9" y="1925" width="0.2" height="15.0" fill="rgb(228,221,46)" rx="2" ry="2" />
<text x="612.93" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (3,013,965 samples, 0.01%)</title><rect x="1011.2" y="1557" width="0.2" height="15.0" fill="rgb(222,28,16)" rx="2" ry="2" />
<text x="1014.23" y="1567.5" ></text>
</g>
<g >
<title>cake_dequeue (3,115,116 samples, 0.01%)</title><rect x="1153.1" y="1765" width="0.2" height="15.0" fill="rgb(243,71,17)" rx="2" ry="2" />
<text x="1156.09" y="1775.5" ></text>
</g>
<g >
<title>__netif_receive_skb_one_core (5,835,326 samples, 0.03%)</title><rect x="1169.5" y="1749" width="0.3" height="15.0" fill="rgb(252,170,45)" rx="2" ry="2" />
<text x="1172.46" y="1759.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,922,013 samples, 0.01%)</title><rect x="17.3" y="2005" width="0.1" height="15.0" fill="rgb(251,4,31)" rx="2" ry="2" />
<text x="20.33" y="2015.5" ></text>
</g>
<g >
<title>ip4ip6_rcv (4,553,679 samples, 0.02%)</title><rect x="486.8" y="1781" width="0.3" height="15.0" fill="rgb(215,196,8)" rx="2" ry="2" />
<text x="489.81" y="1791.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (324,984,711 samples, 1.52%)</title><rect x="508.2" y="2005" width="17.9" height="15.0" fill="rgb(210,70,25)" rx="2" ry="2" />
<text x="511.17" y="2015.5" ></text>
</g>
<g >
<title>ip_forward (2,643,142 samples, 0.01%)</title><rect x="700.7" y="1845" width="0.1" height="15.0" fill="rgb(216,186,4)" rx="2" ry="2" />
<text x="703.66" y="1855.5" ></text>
</g>
<g >
<title>[snap] (19,678,493 samples, 0.09%)</title><rect x="883.8" y="805" width="1.0" height="15.0" fill="rgb(210,43,36)" rx="2" ry="2" />
<text x="886.75" y="815.5" ></text>
</g>
<g >
<title>path_openat (4,246,353 samples, 0.02%)</title><rect x="970.5" y="1941" width="0.2" height="15.0" fill="rgb(205,36,38)" rx="2" ry="2" />
<text x="973.48" y="1951.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (7,274,520 samples, 0.03%)</title><rect x="588.1" y="1845" width="0.4" height="15.0" fill="rgb(242,228,32)" rx="2" ry="2" />
<text x="591.15" y="1855.5" ></text>
</g>
<g >
<title>net_rx_action (3,000,922 samples, 0.01%)</title><rect x="601.1" y="1861" width="0.2" height="15.0" fill="rgb(237,70,49)" rx="2" ry="2" />
<text x="604.13" y="1871.5" ></text>
</g>
<g >
<title>process_backlog (188,783,778 samples, 0.88%)</title><rect x="649.1" y="1813" width="10.4" height="15.0" fill="rgb(225,36,43)" rx="2" ry="2" />
<text x="652.11" y="1823.5" ></text>
</g>
<g >
<title>asm_common_interrupt (2,503,276 samples, 0.01%)</title><rect x="1164.7" y="1861" width="0.1" height="15.0" fill="rgb(228,24,43)" rx="2" ry="2" />
<text x="1167.71" y="1871.5" ></text>
</g>
<g >
<title>common_interrupt (2,714,361 samples, 0.01%)</title><rect x="853.3" y="1861" width="0.1" height="15.0" fill="rgb(215,142,36)" rx="2" ry="2" />
<text x="856.26" y="1871.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,035,500 samples, 0.09%)</title><rect x="844.7" y="1989" width="1.1" height="15.0" fill="rgb(218,127,49)" rx="2" ry="2" />
<text x="847.74" y="1999.5" ></text>
</g>
<g >
<title>nft_do_chain (2,660,902 samples, 0.01%)</title><rect x="484.7" y="1781" width="0.2" height="15.0" fill="rgb(219,186,22)" rx="2" ry="2" />
<text x="487.74" y="1791.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (33,046,116 samples, 0.15%)</title><rect x="650.4" y="1621" width="1.8" height="15.0" fill="rgb(236,75,5)" rx="2" ry="2" />
<text x="653.39" y="1631.5" ></text>
</g>
<g >
<title>__netlink_request (6,544,094 samples, 0.03%)</title><rect x="860.7" y="2053" width="0.4" height="15.0" fill="rgb(227,224,47)" rx="2" ry="2" />
<text x="863.73" y="2063.5" ></text>
</g>
<g >
<title>__napi_poll (2,239,631 samples, 0.01%)</title><rect x="627.7" y="1813" width="0.1" height="15.0" fill="rgb(236,125,43)" rx="2" ry="2" />
<text x="630.71" y="1823.5" ></text>
</g>
<g >
<title>apparmor_inode_getattr (2,688,421 samples, 0.01%)</title><rect x="35.6" y="1925" width="0.2" height="15.0" fill="rgb(232,142,15)" rx="2" ry="2" />
<text x="38.63" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (4,904,820 samples, 0.02%)</title><rect x="20.4" y="917" width="0.3" height="15.0" fill="rgb(235,129,4)" rx="2" ry="2" />
<text x="23.41" y="927.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (1,895,429 samples, 0.01%)</title><rect x="441.9" y="1781" width="0.1" height="15.0" fill="rgb(242,169,2)" rx="2" ry="2" />
<text x="444.90" y="1791.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (5,728,413 samples, 0.03%)</title><rect x="411.5" y="1621" width="0.3" height="15.0" fill="rgb(250,195,28)" rx="2" ry="2" />
<text x="414.47" y="1631.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (56,100,067 samples, 0.26%)</title><rect x="741.9" y="1493" width="3.1" height="15.0" fill="rgb(218,212,25)" rx="2" ry="2" />
<text x="744.90" y="1503.5" ></text>
</g>
<g >
<title>do_syscall_64 (21,817,146 samples, 0.10%)</title><rect x="847.1" y="2021" width="1.2" height="15.0" fill="rgb(235,219,11)" rx="2" ry="2" />
<text x="850.08" y="2031.5" ></text>
</g>
<g >
<title>[snap] (17,810,051 samples, 0.08%)</title><rect x="883.8" y="373" width="0.9" height="15.0" fill="rgb(243,73,28)" rx="2" ry="2" />
<text x="886.75" y="383.5" ></text>
</g>
<g >
<title>[unknown] (3,028,166 samples, 0.01%)</title><rect x="513.0" y="1845" width="0.2" height="15.0" fill="rgb(216,23,17)" rx="2" ry="2" />
<text x="516.00" y="1855.5" ></text>
</g>
<g >
<title>nf_hook_slow (3,071,494 samples, 0.01%)</title><rect x="52.7" y="1845" width="0.2" height="15.0" fill="rgb(248,40,38)" rx="2" ry="2" />
<text x="55.70" y="1855.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (273,358,086 samples, 1.28%)</title><rect x="630.6" y="1893" width="15.1" height="15.0" fill="rgb(222,26,30)" rx="2" ry="2" />
<text x="633.61" y="1903.5" ></text>
</g>
<g >
<title>asm_common_interrupt (1,902,089 samples, 0.01%)</title><rect x="645.6" y="1861" width="0.1" height="15.0" fill="rgb(224,144,14)" rx="2" ry="2" />
<text x="648.57" y="1871.5" ></text>
</g>
<g >
<title>__do_munmap (3,437,780 samples, 0.02%)</title><rect x="1187.2" y="1909" width="0.2" height="15.0" fill="rgb(253,141,42)" rx="2" ry="2" />
<text x="1190.18" y="1919.5" ></text>
</g>
<g >
<title>ret_from_fork (87,915,804 samples, 0.41%)</title><rect x="50.4" y="2053" width="4.9" height="15.0" fill="rgb(249,172,9)" rx="2" ry="2" />
<text x="53.43" y="2063.5" ></text>
</g>
<g >
<title>qdisc_watchdog_schedule_range_ns (7,127,829 samples, 0.03%)</title><rect x="427.0" y="1861" width="0.4" height="15.0" fill="rgb(235,194,44)" rx="2" ry="2" />
<text x="430.03" y="1871.5" ></text>
</g>
<g >
<title>[unknown] (3,248,132 samples, 0.02%)</title><rect x="1127.5" y="1637" width="0.2" height="15.0" fill="rgb(240,75,38)" rx="2" ry="2" />
<text x="1130.53" y="1647.5" ></text>
</g>
<g >
<title>mmput (20,946,617 samples, 0.10%)</title><rect x="27.3" y="1861" width="1.1" height="15.0" fill="rgb(242,162,32)" rx="2" ry="2" />
<text x="30.28" y="1871.5" ></text>
</g>
<g >
<title>__entry_text_start (17,015,337 samples, 0.08%)</title><rect x="527.3" y="2037" width="0.9" height="15.0" fill="rgb(253,224,41)" rx="2" ry="2" />
<text x="530.30" y="2047.5" ></text>
</g>
<g >
<title>[unknown] (9,079,708 samples, 0.04%)</title><rect x="443.0" y="1797" width="0.5" height="15.0" fill="rgb(233,1,36)" rx="2" ry="2" />
<text x="445.96" y="1807.5" ></text>
</g>
<g >
<title>__ext4_get_inode_loc (2,419,802 samples, 0.01%)</title><rect x="75.9" y="1669" width="0.1" height="15.0" fill="rgb(239,85,6)" rx="2" ry="2" />
<text x="78.87" y="1679.5" ></text>
</g>
<g >
<title>__fib_lookup (69,765,105 samples, 0.33%)</title><rect x="795.7" y="1717" width="3.8" height="15.0" fill="rgb(211,57,26)" rx="2" ry="2" />
<text x="798.69" y="1727.5" ></text>
</g>
<g >
<title>[unknown] (4,571,632 samples, 0.02%)</title><rect x="440.9" y="1781" width="0.3" height="15.0" fill="rgb(217,27,19)" rx="2" ry="2" />
<text x="443.94" y="1791.5" ></text>
</g>
<g >
<title>[snap-exec] (18,082,440 samples, 0.08%)</title><rect x="873.7" y="1781" width="1.0" height="15.0" fill="rgb(237,211,17)" rx="2" ry="2" />
<text x="876.74" y="1791.5" ></text>
</g>
<g >
<title>[unknown] (3,449,952 samples, 0.02%)</title><rect x="538.9" y="1797" width="0.2" height="15.0" fill="rgb(245,209,17)" rx="2" ry="2" />
<text x="541.90" y="1807.5" ></text>
</g>
<g >
<title>ip_route_input_rcu (391,960,319 samples, 1.83%)</title><rect x="782.0" y="1797" width="21.6" height="15.0" fill="rgb(208,127,35)" rx="2" ry="2" />
<text x="784.99" y="1807.5" >i..</text>
</g>
<g >
<title>cake_classify (9,241,287 samples, 0.04%)</title><rect x="759.9" y="1637" width="0.5" height="15.0" fill="rgb(250,211,26)" rx="2" ry="2" />
<text x="762.85" y="1647.5" ></text>
</g>
<g >
<title>perf (87,521,636 samples, 0.41%)</title><rect x="71.6" y="2069" width="4.8" height="15.0" fill="rgb(248,0,39)" rx="2" ry="2" />
<text x="74.58" y="2079.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (1,929,132 samples, 0.01%)</title><rect x="25.7" y="1877" width="0.1" height="15.0" fill="rgb(218,21,42)" rx="2" ry="2" />
<text x="28.72" y="1887.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,205,026 samples, 0.01%)</title><rect x="644.7" y="1877" width="0.1" height="15.0" fill="rgb(220,125,22)" rx="2" ry="2" />
<text x="647.70" y="1887.5" ></text>
</g>
<g >
<title>do_open (2,682,116 samples, 0.01%)</title><rect x="1174.8" y="1925" width="0.1" height="15.0" fill="rgb(215,193,35)" rx="2" ry="2" />
<text x="1177.77" y="1935.5" ></text>
</g>
<g >
<title>[libavahi-common.so.3.5.4] (8,690,316 samples, 0.04%)</title><rect x="15.4" y="1685" width="0.5" height="15.0" fill="rgb(235,207,29)" rx="2" ry="2" />
<text x="18.42" y="1695.5" ></text>
</g>
<g >
<title>__fib_validate_source (104,249,642 samples, 0.49%)</title><rect x="794.5" y="1733" width="5.7" height="15.0" fill="rgb(231,114,10)" rx="2" ry="2" />
<text x="797.49" y="1743.5" ></text>
</g>
<g >
<title>[snap] (21,207,408 samples, 0.10%)</title><rect x="883.7" y="1509" width="1.2" height="15.0" fill="rgb(241,198,45)" rx="2" ry="2" />
<text x="886.73" y="1519.5" ></text>
</g>
<g >
<title>__dev_queue_xmit (25,018,039 samples, 0.12%)</title><rect x="411.0" y="1685" width="1.4" height="15.0" fill="rgb(238,216,40)" rx="2" ry="2" />
<text x="413.98" y="1695.5" ></text>
</g>
<g >
<title>common_interrupt (1,902,089 samples, 0.01%)</title><rect x="645.6" y="1845" width="0.1" height="15.0" fill="rgb(208,28,51)" rx="2" ry="2" />
<text x="648.57" y="1855.5" ></text>
</g>
<g >
<title>bprm_execve (2,304,923 samples, 0.01%)</title><rect x="869.7" y="1973" width="0.1" height="15.0" fill="rgb(251,95,30)" rx="2" ry="2" />
<text x="872.71" y="1983.5" ></text>
</g>
<g >
<title>ip_forward (21,728,827 samples, 0.10%)</title><rect x="434.9" y="1845" width="1.2" height="15.0" fill="rgb(215,144,21)" rx="2" ry="2" />
<text x="437.89" y="1855.5" ></text>
</g>
<g >
<title>[snap] (115,684,128 samples, 0.54%)</title><rect x="897.8" y="2021" width="6.4" height="15.0" fill="rgb(216,202,2)" rx="2" ry="2" />
<text x="900.81" y="2031.5" ></text>
</g>
<g >
<title>__napi_poll (3,853,040 samples, 0.02%)</title><rect x="913.1" y="1493" width="0.2" height="15.0" fill="rgb(205,132,30)" rx="2" ry="2" />
<text x="916.13" y="1503.5" ></text>
</g>
<g >
<title>dev_qdisc_enqueue (1,903,608 samples, 0.01%)</title><rect x="440.1" y="1669" width="0.1" height="15.0" fill="rgb(231,9,6)" rx="2" ry="2" />
<text x="443.11" y="1679.5" ></text>
</g>
<g >
<title>slab_free_freelist_hook.constprop.0 (1,951,883 samples, 0.01%)</title><rect x="1147.1" y="1685" width="0.1" height="15.0" fill="rgb(246,94,10)" rx="2" ry="2" />
<text x="1150.07" y="1695.5" ></text>
</g>
<g >
<title>common_interrupt (586,855,391 samples, 2.74%)</title><rect x="1116.5" y="1861" width="32.3" height="15.0" fill="rgb(236,70,5)" rx="2" ry="2" />
<text x="1119.46" y="1871.5" >co..</text>
</g>
<g >
<title>[unknown] (5,394,821 samples, 0.03%)</title><rect x="971.6" y="2021" width="0.3" height="15.0" fill="rgb(238,139,43)" rx="2" ry="2" />
<text x="974.59" y="2031.5" ></text>
</g>
<g >
<title>__alloc_pages (19,607,269 samples, 0.09%)</title><rect x="936.9" y="1861" width="1.1" height="15.0" fill="rgb(250,150,12)" rx="2" ry="2" />
<text x="939.90" y="1871.5" ></text>
</g>
<g >
<title>nft_do_chain (4,976,132 samples, 0.02%)</title><rect x="653.5" y="1701" width="0.2" height="15.0" fill="rgb(224,174,0)" rx="2" ry="2" />
<text x="656.47" y="1711.5" ></text>
</g>
<g >
<title>rtl_rx (3,467,574 samples, 0.02%)</title><rect x="23.9" y="1925" width="0.1" height="15.0" fill="rgb(216,18,42)" rx="2" ry="2" />
<text x="26.86" y="1935.5" ></text>
</g>
<g >
<title>[unknown] (1,902,480 samples, 0.01%)</title><rect x="51.2" y="1829" width="0.1" height="15.0" fill="rgb(220,192,34)" rx="2" ry="2" />
<text x="54.17" y="1839.5" ></text>
</g>
<g >
<title>[snap] (209,275,344 samples, 0.98%)</title><rect x="879.7" y="2053" width="11.5" height="15.0" fill="rgb(230,29,9)" rx="2" ry="2" />
<text x="882.66" y="2063.5" ></text>
</g>
<g >
<title>ip_list_rcv (2,662,726 samples, 0.01%)</title><rect x="50.7" y="1877" width="0.2" height="15.0" fill="rgb(253,31,49)" rx="2" ry="2" />
<text x="53.74" y="1887.5" ></text>
</g>
<g >
<title>dec_block (11,239,380 samples, 0.05%)</title><rect x="31.4" y="1653" width="0.6" height="15.0" fill="rgb(219,74,27)" rx="2" ry="2" />
<text x="34.41" y="1663.5" ></text>
</g>
<g >
<title>common_interrupt (1,928,714 samples, 0.01%)</title><rect x="902.5" y="1797" width="0.1" height="15.0" fill="rgb(240,81,22)" rx="2" ry="2" />
<text x="905.48" y="1807.5" ></text>
</g>
<g >
<title>[snap] (40,143,197 samples, 0.19%)</title><rect x="883.2" y="1813" width="2.2" height="15.0" fill="rgb(221,33,48)" rx="2" ry="2" />
<text x="886.15" y="1823.5" ></text>
</g>
<g >
<title>__writeback_inodes_wb (2,123,404 samples, 0.01%)</title><rect x="65.1" y="1941" width="0.1" height="15.0" fill="rgb(251,147,30)" rx="2" ry="2" />
<text x="68.09" y="1951.5" ></text>
</g>
<g >
<title>[unknown] (163,243,959 samples, 0.76%)</title><rect x="393.4" y="1621" width="9.0" height="15.0" fill="rgb(222,102,27)" rx="2" ry="2" />
<text x="396.44" y="1631.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (621,319,977 samples, 2.90%)</title><rect x="905.4" y="1989" width="34.3" height="15.0" fill="rgb(254,97,5)" rx="2" ry="2" />
<text x="908.41" y="1999.5" >as..</text>
</g>
<g >
<title>skb_clone (10,254,012 samples, 0.05%)</title><rect x="488.4" y="1813" width="0.6" height="15.0" fill="rgb(233,97,26)" rx="2" ry="2" />
<text x="491.39" y="1823.5" ></text>
</g>
<g >
<title>inet_gro_receive (11,351,327 samples, 0.05%)</title><rect x="500.0" y="1829" width="0.6" height="15.0" fill="rgb(251,127,22)" rx="2" ry="2" />
<text x="503.01" y="1839.5" ></text>
</g>
<g >
<title>read_tsc (2,301,910 samples, 0.01%)</title><rect x="510.8" y="1957" width="0.1" height="15.0" fill="rgb(206,136,5)" rx="2" ry="2" />
<text x="513.79" y="1967.5" ></text>
</g>
<g >
<title>clear_page_erms (4,978,521 samples, 0.02%)</title><rect x="499.1" y="1829" width="0.3" height="15.0" fill="rgb(227,66,46)" rx="2" ry="2" />
<text x="502.12" y="1839.5" ></text>
</g>
<g >
<title>__alloc_skb (67,316,768 samples, 0.31%)</title><rect x="1015.9" y="1797" width="3.7" height="15.0" fill="rgb(243,218,39)" rx="2" ry="2" />
<text x="1018.93" y="1807.5" ></text>
</g>
<g >
<title>[snap] (28,062,279 samples, 0.13%)</title><rect x="883.5" y="1749" width="1.6" height="15.0" fill="rgb(246,176,30)" rx="2" ry="2" />
<text x="886.52" y="1759.5" ></text>
</g>
<g >
<title>rcmd_af (1,969,788 samples, 0.01%)</title><rect x="48.6" y="2037" width="0.1" height="15.0" fill="rgb(232,35,52)" rx="2" ry="2" />
<text x="51.56" y="2047.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (3,391,938 samples, 0.02%)</title><rect x="759.4" y="1637" width="0.2" height="15.0" fill="rgb(246,50,51)" rx="2" ry="2" />
<text x="762.42" y="1647.5" ></text>
</g>
<g >
<title>net_rx_action (3,000,122 samples, 0.01%)</title><rect x="575.6" y="1845" width="0.2" height="15.0" fill="rgb(216,27,52)" rx="2" ry="2" />
<text x="578.59" y="1855.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,569,597 samples, 0.02%)</title><rect x="417.3" y="1781" width="0.3" height="15.0" fill="rgb(213,196,7)" rx="2" ry="2" />
<text x="420.31" y="1791.5" ></text>
</g>
<g >
<title>__ip_finish_output (3,778,045 samples, 0.02%)</title><rect x="1169.5" y="1653" width="0.2" height="15.0" fill="rgb(208,165,25)" rx="2" ry="2" />
<text x="1172.50" y="1663.5" ></text>
</g>
<g >
<title>task_tick_fair (2,677,627 samples, 0.01%)</title><rect x="423.1" y="1845" width="0.1" height="15.0" fill="rgb(246,189,37)" rx="2" ry="2" />
<text x="426.06" y="1855.5" ></text>
</g>
<g >
<title>packet_rcv (1,918,904 samples, 0.01%)</title><rect x="447.7" y="1845" width="0.1" height="15.0" fill="rgb(229,33,37)" rx="2" ry="2" />
<text x="450.69" y="1855.5" ></text>
</g>
<g >
<title>common_interrupt (2,936,522 samples, 0.01%)</title><rect x="602.3" y="1925" width="0.2" height="15.0" fill="rgb(226,182,13)" rx="2" ry="2" />
<text x="605.30" y="1935.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (2,961,156 samples, 0.01%)</title><rect x="941.0" y="1941" width="0.2" height="15.0" fill="rgb(251,69,51)" rx="2" ry="2" />
<text x="944.03" y="1951.5" ></text>
</g>
<g >
<title>dev_hard_start_xmit (8,976,826 samples, 0.04%)</title><rect x="743.0" y="1429" width="0.5" height="15.0" fill="rgb(238,178,48)" rx="2" ry="2" />
<text x="746.04" y="1439.5" ></text>
</g>
<g >
<title>strncpy (28,150,716 samples, 0.13%)</title><rect x="771.8" y="1765" width="1.6" height="15.0" fill="rgb(227,62,15)" rx="2" ry="2" />
<text x="774.80" y="1775.5" ></text>
</g>
<g >
<title>rtl8169_tx_map (5,276,584 samples, 0.02%)</title><rect x="727.2" y="1381" width="0.3" height="15.0" fill="rgb(224,193,47)" rx="2" ry="2" />
<text x="730.17" y="1391.5" ></text>
</g>
<g >
<title>sock_recvmsg (3,217,056 samples, 0.02%)</title><rect x="20.0" y="1909" width="0.2" height="15.0" fill="rgb(224,84,50)" rx="2" ry="2" />
<text x="23.01" y="1919.5" ></text>
</g>
<g >
<title>[snap] (21,588,101 samples, 0.10%)</title><rect x="883.7" y="1589" width="1.2" height="15.0" fill="rgb(245,228,37)" rx="2" ry="2" />
<text x="886.71" y="1599.5" ></text>
</g>
<g >
<title>common_interrupt (4,571,926 samples, 0.02%)</title><rect x="593.9" y="1813" width="0.2" height="15.0" fill="rgb(245,173,18)" rx="2" ry="2" />
<text x="596.86" y="1823.5" ></text>
</g>
<g >
<title>netif_receive_skb_list_internal (36,259,770 samples, 0.17%)</title><rect x="513.4" y="1893" width="2.0" height="15.0" fill="rgb(211,81,22)" rx="2" ry="2" />
<text x="516.37" y="1903.5" ></text>
</g>
<g >
<title>irq_exit_rcu (1,922,026 samples, 0.01%)</title><rect x="846.4" y="1845" width="0.1" height="15.0" fill="rgb(210,182,18)" rx="2" ry="2" />
<text x="849.44" y="1855.5" ></text>
</g>
<g >
<title>crosscall_amd64 (2,168,339 samples, 0.01%)</title><rect x="904.4" y="2037" width="0.2" height="15.0" fill="rgb(234,219,26)" rx="2" ry="2" />
<text x="907.44" y="2047.5" ></text>
</g>
<g >
<title>ip_route_input_slow (28,196,960 samples, 0.13%)</title><rect x="1125.3" y="1669" width="1.6" height="15.0" fill="rgb(207,23,38)" rx="2" ry="2" />
<text x="1128.35" y="1679.5" ></text>
</g>
<g >
<title>ip4ip6_gro_receive (13,672,843 samples, 0.06%)</title><rect x="685.9" y="1733" width="0.7" height="15.0" fill="rgb(237,154,39)" rx="2" ry="2" />
<text x="688.86" y="1743.5" ></text>
</g>
<g >
<title>security_file_permission (27,539,174 samples, 0.13%)</title><rect x="830.5" y="1941" width="1.6" height="15.0" fill="rgb(237,1,16)" rx="2" ry="2" />
<text x="833.54" y="1951.5" ></text>
</g>
<g >
<title>net_rx_action (2,258,761 samples, 0.01%)</title><rect x="609.9" y="1877" width="0.2" height="15.0" fill="rgb(216,190,52)" rx="2" ry="2" />
<text x="612.93" y="1887.5" ></text>
</g>
<g >
<title>unmap_page_range (2,261,645 samples, 0.01%)</title><rect x="947.3" y="1829" width="0.2" height="15.0" fill="rgb(216,68,42)" rx="2" ry="2" />
<text x="950.33" y="1839.5" ></text>
</g>
<g >
<title>date (12,304,715 samples, 0.06%)</title><rect x="18.8" y="2069" width="0.7" height="15.0" fill="rgb(250,25,48)" rx="2" ry="2" />
<text x="21.81" y="2079.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,844,681 samples, 0.05%)</title><rect x="859.0" y="2021" width="0.6" height="15.0" fill="rgb(229,65,14)" rx="2" ry="2" />
<text x="862.02" y="2031.5" ></text>
</g>
<g >
<title>ip6_rcv_finish_core.constprop.0.isra.0 (78,369,449 samples, 0.37%)</title><rect x="673.5" y="1717" width="4.4" height="15.0" fill="rgb(246,113,32)" rx="2" ry="2" />
<text x="676.54" y="1727.5" ></text>
</g>
<g >
<title>[snapctl] (27,504,944 samples, 0.13%)</title><rect x="945.4" y="1877"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment