Skip to content

Instantly share code, notes, and snippets.

@bobrik
Last active July 18, 2023 22:27
Show Gist options
  • Save bobrik/0e57671c732d9b13ac49fed85a2b2290 to your computer and use it in GitHub Desktop.
Save bobrik/0e57671c732d9b13ac49fed85a2b2290 to your computer and use it in GitHub Desktop.
Calls into skb:kfree_skb

Calls into skb:kfree_skb

As requested in netdev, this gist contains the stacks leading into skb:kfree_skb:

The easiest way to look at the results is the flamegraphs, where reason is the top frame.

The results are from v6.1.38.

Normal (flamegraph.normal.svg + stacks.normal.txt)

We see ~10k calls per second during normal operation on this machine:

$ sudo perf record -a -g --kernel-callchains -e skb:kfree_skb -- sleep 1
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 8.470 MB perf.data (9373 samples) ]
$ sudo perf script | sed -e 's/skb:kfree_skb:.*reason:\(.*\)/\n\tfffff \1 (unknown)/' -e 's/^\(\w\+\)\s\+/kernel /' | /usr/bin/inferno-collapse-perf --all | perl -pe 's/.*?;//' | sed -e 's/.*irq_exit_rcu_\[k\];/irq_exit_rcu_[k];/' | /usr/bin/inferno-flamegraph --truncate-text-right --colors=java --hash --title=normal --width=1440 --minwidth=0.005 > flamegraph.normal.svg
$ sudo /usr/share/bcc/tools/stackcount -s -K -D 1 t:skb:kfree_skb > stacks.normal.txt

Spike (flamegraph.spike.svg + stacks.spike.txt)

Spikes up to 500k calls per second can happen from time to time:

$ sudo perf record -a -g --kernel-callchains -e skb:kfree_skb -- sleep 1
[ perf record: Woken up 172 times to write data ]
Warning:
4 out of order events recorded.
[ perf record: Captured and wrote 124.722 MB perf.data (398819 samples) ]
$ sudo perf script | sed -e 's/skb:kfree_skb:.*reason:\(.*\)/\n\tfffff \1 (unknown)/' -e 's/^\(\w\+\)\s\+/kernel /' | /usr/bin/inferno-collapse-perf --all | perl -pe 's/.*?;//' | sed -e 's/.*irq_exit_rcu_\[k\];/irq_exit_rcu_[k];/' | /usr/bin/inferno-flamegraph --truncate-text-right --colors=java --hash --title=spike --width=1440 --minwidth=0.005 > flamegraph.spike.svg
$ sudo /usr/share/bcc/tools/stackcount -s -K -D 1 t:skb:kfree_skb > stacks.spike.txt
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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="1440" height="694" onload="init(evt)" viewBox="0 0 1440 694" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--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); }
#title { text-anchor:middle; font-size:17px; }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#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[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = false;
var truncate_text_right = true;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
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);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// 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();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
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));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + 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
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, 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];
return;
}
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["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg: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) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *\$/.test(txt) || t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
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, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
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 = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= 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 >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// 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_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
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 = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// 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 = term;
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.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
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 + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="694" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">normal</text><text id="details" x="10" y="677.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1330" y="24.00">Search</text><text id="matched" x="1330" y="677.00"> </text><svg id="frames" x="10" width="1420" total_samples="9373"><g><title>__sys_recvmsg (2 samples, 0.02%)</title><rect x="0.0000%" y="597" width="0.0213%" height="15" fill="rgb(227,127,0)" fg:x="0" fg:w="2"/><text x="0.2083%" y="607.50"></text></g><g><title>___sys_recvmsg (2 samples, 0.02%)</title><rect x="0.0000%" y="581" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="0" fg:w="2"/><text x="0.2083%" y="591.50"></text></g><g><title>____sys_recvmsg (2 samples, 0.02%)</title><rect x="0.0000%" y="565" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="0" fg:w="2"/><text x="0.2083%" y="575.50"></text></g><g><title>inet_recvmsg (2 samples, 0.02%)</title><rect x="0.0000%" y="549" width="0.0213%" height="15" fill="rgb(239,139,0)" fg:x="0" fg:w="2"/><text x="0.2083%" y="559.50"></text></g><g><title>udp_recvmsg (2 samples, 0.02%)</title><rect x="0.0000%" y="533" width="0.0213%" height="15" fill="rgb(234,134,0)" fg:x="0" fg:w="2"/><text x="0.2083%" y="543.50"></text></g><g><title>__consume_stateless_skb (2 samples, 0.02%)</title><rect x="0.0000%" y="517" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="0" fg:w="2"/><text x="0.2083%" y="527.50"></text></g><g><title>skb_release_data (2 samples, 0.02%)</title><rect x="0.0000%" y="501" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="0" fg:w="2"/><text x="0.2083%" y="511.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="0.0000%" y="485" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="0" fg:w="2"/><text x="0.2083%" y="495.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="0.0000%" y="469" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="0" fg:w="2"/><text x="0.2083%" y="479.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="0.0000%" y="453" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="0" fg:w="2"/><text x="0.2083%" y="463.50"></text></g><g><title>__napi_poll (2 samples, 0.02%)</title><rect x="0.0213%" y="357" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="367.50"></text></g><g><title>mlx5e_napi_poll (2 samples, 0.02%)</title><rect x="0.0213%" y="341" width="0.0213%" height="15" fill="rgb(221,121,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="351.50"></text></g><g><title>napi_complete_done (2 samples, 0.02%)</title><rect x="0.0213%" y="325" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="335.50"></text></g><g><title>netif_receive_skb_list_internal (2 samples, 0.02%)</title><rect x="0.0213%" y="309" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="319.50"></text></g><g><title>__netif_receive_skb_list_core (2 samples, 0.02%)</title><rect x="0.0213%" y="293" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="303.50"></text></g><g><title>ip_list_rcv (2 samples, 0.02%)</title><rect x="0.0213%" y="277" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="287.50"></text></g><g><title>ip_sublist_rcv (2 samples, 0.02%)</title><rect x="0.0213%" y="261" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="271.50"></text></g><g><title>ip_sublist_rcv_finish (2 samples, 0.02%)</title><rect x="0.0213%" y="245" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="255.50"></text></g><g><title>ip_local_deliver_finish (2 samples, 0.02%)</title><rect x="0.0213%" y="229" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="239.50"></text></g><g><title>ip_protocol_deliver_rcu (2 samples, 0.02%)</title><rect x="0.0213%" y="213" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="223.50"></text></g><g><title>tcp_v4_rcv (2 samples, 0.02%)</title><rect x="0.0213%" y="197" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="207.50"></text></g><g><title>tcp_v4_do_rcv (2 samples, 0.02%)</title><rect x="0.0213%" y="181" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="191.50"></text></g><g><title>tcp_rcv_established (2 samples, 0.02%)</title><rect x="0.0213%" y="165" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="175.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="0.0213%" y="149" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="159.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="0.0213%" y="133" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2" fg:w="2"/><text x="0.2297%" y="143.50"></text></g><g><title>TCP_OLD_DATA (2 samples, 0.02%)</title><rect x="0.0213%" y="117" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="2" fg:w="2"/><text x="0.2297%" y="127.50"></text></g><g><title>ip_finish_output2 (3 samples, 0.03%)</title><rect x="0.0213%" y="437" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="2" fg:w="3"/><text x="0.2297%" y="447.50"></text></g><g><title>__local_bh_enable_ip (3 samples, 0.03%)</title><rect x="0.0213%" y="421" width="0.0320%" height="15" fill="rgb(233,133,0)" fg:x="2" fg:w="3"/><text x="0.2297%" y="431.50"></text></g><g><title>do_softirq (3 samples, 0.03%)</title><rect x="0.0213%" y="405" width="0.0320%" height="15" fill="rgb(243,143,0)" fg:x="2" fg:w="3"/><text x="0.2297%" y="415.50"></text></g><g><title>__do_softirq (3 samples, 0.03%)</title><rect x="0.0213%" y="389" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="2" fg:w="3"/><text x="0.2297%" y="399.50"></text></g><g><title>net_rx_action (3 samples, 0.03%)</title><rect x="0.0213%" y="373" width="0.0320%" height="15" fill="rgb(244,144,0)" fg:x="2" fg:w="3"/><text x="0.2297%" y="383.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="0.0427%" y="357" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="4" fg:w="1"/><text x="0.2510%" y="367.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="0.0427%" y="341" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="4" fg:w="1"/><text x="0.2510%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.0427%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="4" fg:w="1"/><text x="0.2510%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.0427%" y="309" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="4" fg:w="1"/><text x="0.2510%" y="319.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="0.0427%" y="293" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="4" fg:w="1"/><text x="0.2510%" y="303.50"></text></g><g><title>tcp_sendmsg (5 samples, 0.05%)</title><rect x="0.0213%" y="533" width="0.0533%" height="15" fill="rgb(237,137,0)" fg:x="2" fg:w="5"/><text x="0.2297%" y="543.50"></text></g><g><title>tcp_sendmsg_locked (5 samples, 0.05%)</title><rect x="0.0213%" y="517" width="0.0533%" height="15" fill="rgb(237,137,0)" fg:x="2" fg:w="5"/><text x="0.2297%" y="527.50"></text></g><g><title>__tcp_push_pending_frames (5 samples, 0.05%)</title><rect x="0.0213%" y="501" width="0.0533%" height="15" fill="rgb(226,126,0)" fg:x="2" fg:w="5"/><text x="0.2297%" y="511.50"></text></g><g><title>tcp_write_xmit (5 samples, 0.05%)</title><rect x="0.0213%" y="485" width="0.0533%" height="15" fill="rgb(237,137,0)" fg:x="2" fg:w="5"/><text x="0.2297%" y="495.50"></text></g><g><title>__tcp_transmit_skb (5 samples, 0.05%)</title><rect x="0.0213%" y="469" width="0.0533%" height="15" fill="rgb(226,126,0)" fg:x="2" fg:w="5"/><text x="0.2297%" y="479.50"></text></g><g><title>__ip_queue_xmit (5 samples, 0.05%)</title><rect x="0.0213%" y="453" width="0.0533%" height="15" fill="rgb(225,125,0)" fg:x="2" fg:w="5"/><text x="0.2297%" y="463.50"></text></g><g><title>ip_local_out (2 samples, 0.02%)</title><rect x="0.0533%" y="437" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="447.50"></text></g><g><title>__ip_local_out (2 samples, 0.02%)</title><rect x="0.0533%" y="421" width="0.0213%" height="15" fill="rgb(225,125,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="431.50"></text></g><g><title>nf_hook_slow (2 samples, 0.02%)</title><rect x="0.0533%" y="405" width="0.0213%" height="15" fill="rgb(240,140,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="415.50"></text></g><g><title>iptable_mangle_hook (2 samples, 0.02%)</title><rect x="0.0533%" y="389" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="399.50"></text></g><g><title>ipt_do_table (2 samples, 0.02%)</title><rect x="0.0533%" y="373" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="383.50"></text></g><g><title>__local_bh_enable_ip (2 samples, 0.02%)</title><rect x="0.0533%" y="357" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="367.50"></text></g><g><title>do_softirq (2 samples, 0.02%)</title><rect x="0.0533%" y="341" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="351.50"></text></g><g><title>__do_softirq (2 samples, 0.02%)</title><rect x="0.0533%" y="325" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="335.50"></text></g><g><title>net_rx_action (2 samples, 0.02%)</title><rect x="0.0533%" y="309" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="319.50"></text></g><g><title>napi_consume_skb (2 samples, 0.02%)</title><rect x="0.0533%" y="293" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="303.50"></text></g><g><title>skb_release_data (2 samples, 0.02%)</title><rect x="0.0533%" y="277" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="287.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="0.0533%" y="261" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="271.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="0.0533%" y="245" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="5" fg:w="2"/><text x="0.2617%" y="255.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="0.0533%" y="229" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="5" fg:w="2"/><text x="0.2617%" y="239.50"></text></g><g><title>icmp_rcv (1 samples, 0.01%)</title><rect x="0.0747%" y="213" width="0.0107%" height="15" fill="rgb(242,142,0)" fg:x="7" fg:w="1"/><text x="0.2830%" y="223.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.0747%" y="197" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="7" fg:w="1"/><text x="0.2830%" y="207.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.0747%" y="181" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="7" fg:w="1"/><text x="0.2830%" y="191.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="0.0747%" y="165" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="7" fg:w="1"/><text x="0.2830%" y="175.50"></text></g><g><title>__napi_poll (2 samples, 0.02%)</title><rect x="0.0747%" y="373" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="383.50"></text></g><g><title>mlx5e_napi_poll (2 samples, 0.02%)</title><rect x="0.0747%" y="357" width="0.0213%" height="15" fill="rgb(221,121,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="367.50"></text></g><g><title>napi_complete_done (2 samples, 0.02%)</title><rect x="0.0747%" y="341" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="351.50"></text></g><g><title>netif_receive_skb_list_internal (2 samples, 0.02%)</title><rect x="0.0747%" y="325" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="335.50"></text></g><g><title>__netif_receive_skb_list_core (2 samples, 0.02%)</title><rect x="0.0747%" y="309" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="319.50"></text></g><g><title>ip_list_rcv (2 samples, 0.02%)</title><rect x="0.0747%" y="293" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="303.50"></text></g><g><title>ip_sublist_rcv (2 samples, 0.02%)</title><rect x="0.0747%" y="277" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="287.50"></text></g><g><title>ip_sublist_rcv_finish (2 samples, 0.02%)</title><rect x="0.0747%" y="261" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="271.50"></text></g><g><title>ip_local_deliver_finish (2 samples, 0.02%)</title><rect x="0.0747%" y="245" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="255.50"></text></g><g><title>ip_protocol_deliver_rcu (2 samples, 0.02%)</title><rect x="0.0747%" y="229" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="7" fg:w="2"/><text x="0.2830%" y="239.50"></text></g><g><title>raw_local_deliver (1 samples, 0.01%)</title><rect x="0.0854%" y="213" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="8" fg:w="1"/><text x="0.2937%" y="223.50"></text></g><g><title>raw_rcv (1 samples, 0.01%)</title><rect x="0.0854%" y="197" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="8" fg:w="1"/><text x="0.2937%" y="207.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.0854%" y="181" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="8" fg:w="1"/><text x="0.2937%" y="191.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.0854%" y="165" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="8" fg:w="1"/><text x="0.2937%" y="175.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="0.0854%" y="149" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="8" fg:w="1"/><text x="0.2937%" y="159.50"></text></g><g><title>ipt_do_table (27 samples, 0.29%)</title><rect x="0.0747%" y="453" width="0.2881%" height="15" fill="rgb(233,133,0)" fg:x="7" fg:w="27"/><text x="0.2830%" y="463.50"></text></g><g><title>__local_bh_enable_ip (27 samples, 0.29%)</title><rect x="0.0747%" y="437" width="0.2881%" height="15" fill="rgb(233,133,0)" fg:x="7" fg:w="27"/><text x="0.2830%" y="447.50"></text></g><g><title>do_softirq (27 samples, 0.29%)</title><rect x="0.0747%" y="421" width="0.2881%" height="15" fill="rgb(243,143,0)" fg:x="7" fg:w="27"/><text x="0.2830%" y="431.50"></text></g><g><title>__do_softirq (27 samples, 0.29%)</title><rect x="0.0747%" y="405" width="0.2881%" height="15" fill="rgb(230,130,0)" fg:x="7" fg:w="27"/><text x="0.2830%" y="415.50"></text></g><g><title>net_rx_action (27 samples, 0.29%)</title><rect x="0.0747%" y="389" width="0.2881%" height="15" fill="rgb(244,144,0)" fg:x="7" fg:w="27"/><text x="0.2830%" y="399.50"></text></g><g><title>napi_consume_skb (25 samples, 0.27%)</title><rect x="0.0960%" y="373" width="0.2667%" height="15" fill="rgb(238,138,0)" fg:x="9" fg:w="25"/><text x="0.3044%" y="383.50"></text></g><g><title>skb_release_data (25 samples, 0.27%)</title><rect x="0.0960%" y="357" width="0.2667%" height="15" fill="rgb(230,130,0)" fg:x="9" fg:w="25"/><text x="0.3044%" y="367.50"></text></g><g><title>kfree_skb_reason (25 samples, 0.27%)</title><rect x="0.0960%" y="341" width="0.2667%" height="15" fill="rgb(229,129,0)" fg:x="9" fg:w="25"/><text x="0.3044%" y="351.50"></text></g><g><title>kfree_skb_reason (25 samples, 0.27%)</title><rect x="0.0960%" y="325" width="0.2667%" height="15" fill="rgb(229,129,0)" fg:x="9" fg:w="25"/><text x="0.3044%" y="335.50"></text></g><g><title>NOT_SPECIFIED (25 samples, 0.27%)</title><rect x="0.0960%" y="309" width="0.2667%" height="15" fill="rgb(90,237,90)" fg:x="9" fg:w="25"/><text x="0.3044%" y="319.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="0.3627%" y="357" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="367.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="0.3627%" y="341" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="351.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="0.3627%" y="325" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="335.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="0.3627%" y="309" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="319.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="0.3627%" y="293" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="303.50"></text></g><g><title>ipv6_list_rcv (1 samples, 0.01%)</title><rect x="0.3627%" y="277" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="287.50"></text></g><g><title>ip6_sublist_rcv (1 samples, 0.01%)</title><rect x="0.3627%" y="261" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="271.50"></text></g><g><title>ip6_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="0.3627%" y="245" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="255.50"></text></g><g><title>ip6_input_finish (1 samples, 0.01%)</title><rect x="0.3627%" y="229" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="239.50"></text></g><g><title>ip6_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="0.3627%" y="213" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="223.50"></text></g><g><title>tcp_v6_rcv (1 samples, 0.01%)</title><rect x="0.3627%" y="197" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="207.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="0.3627%" y="181" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="191.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="0.3627%" y="165" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="175.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="0.3627%" y="149" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="159.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.3627%" y="133" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="143.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.3627%" y="117" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="34" fg:w="1"/><text x="0.5711%" y="127.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="0.3627%" y="101" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="34" fg:w="1"/><text x="0.5711%" y="111.50"></text></g><g><title>__ip_local_out (38 samples, 0.41%)</title><rect x="0.0747%" y="485" width="0.4054%" height="15" fill="rgb(225,125,0)" fg:x="7" fg:w="38"/><text x="0.2830%" y="495.50"></text></g><g><title>nf_hook_slow (38 samples, 0.41%)</title><rect x="0.0747%" y="469" width="0.4054%" height="15" fill="rgb(240,140,0)" fg:x="7" fg:w="38"/><text x="0.2830%" y="479.50"></text></g><g><title>iptable_mangle_hook (11 samples, 0.12%)</title><rect x="0.3627%" y="453" width="0.1174%" height="15" fill="rgb(233,133,0)" fg:x="34" fg:w="11"/><text x="0.5711%" y="463.50"></text></g><g><title>ipt_do_table (11 samples, 0.12%)</title><rect x="0.3627%" y="437" width="0.1174%" height="15" fill="rgb(233,133,0)" fg:x="34" fg:w="11"/><text x="0.5711%" y="447.50"></text></g><g><title>__local_bh_enable_ip (11 samples, 0.12%)</title><rect x="0.3627%" y="421" width="0.1174%" height="15" fill="rgb(233,133,0)" fg:x="34" fg:w="11"/><text x="0.5711%" y="431.50"></text></g><g><title>do_softirq (11 samples, 0.12%)</title><rect x="0.3627%" y="405" width="0.1174%" height="15" fill="rgb(243,143,0)" fg:x="34" fg:w="11"/><text x="0.5711%" y="415.50"></text></g><g><title>__do_softirq (11 samples, 0.12%)</title><rect x="0.3627%" y="389" width="0.1174%" height="15" fill="rgb(230,130,0)" fg:x="34" fg:w="11"/><text x="0.5711%" y="399.50"></text></g><g><title>net_rx_action (11 samples, 0.12%)</title><rect x="0.3627%" y="373" width="0.1174%" height="15" fill="rgb(244,144,0)" fg:x="34" fg:w="11"/><text x="0.5711%" y="383.50"></text></g><g><title>napi_consume_skb (10 samples, 0.11%)</title><rect x="0.3734%" y="357" width="0.1067%" height="15" fill="rgb(238,138,0)" fg:x="35" fg:w="10"/><text x="0.5817%" y="367.50"></text></g><g><title>skb_release_data (10 samples, 0.11%)</title><rect x="0.3734%" y="341" width="0.1067%" height="15" fill="rgb(230,130,0)" fg:x="35" fg:w="10"/><text x="0.5817%" y="351.50"></text></g><g><title>kfree_skb_reason (10 samples, 0.11%)</title><rect x="0.3734%" y="325" width="0.1067%" height="15" fill="rgb(229,129,0)" fg:x="35" fg:w="10"/><text x="0.5817%" y="335.50"></text></g><g><title>kfree_skb_reason (10 samples, 0.11%)</title><rect x="0.3734%" y="309" width="0.1067%" height="15" fill="rgb(229,129,0)" fg:x="35" fg:w="10"/><text x="0.5817%" y="319.50"></text></g><g><title>NOT_SPECIFIED (10 samples, 0.11%)</title><rect x="0.3734%" y="293" width="0.1067%" height="15" fill="rgb(90,237,90)" fg:x="35" fg:w="10"/><text x="0.5817%" y="303.50"></text></g><g><title>raw_local_deliver (1 samples, 0.01%)</title><rect x="0.4801%" y="245" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="45" fg:w="1"/><text x="0.6884%" y="255.50"></text></g><g><title>raw_rcv (1 samples, 0.01%)</title><rect x="0.4801%" y="229" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="45" fg:w="1"/><text x="0.6884%" y="239.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.4801%" y="213" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="45" fg:w="1"/><text x="0.6884%" y="223.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.4801%" y="197" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="45" fg:w="1"/><text x="0.6884%" y="207.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="0.4801%" y="181" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="45" fg:w="1"/><text x="0.6884%" y="191.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.4908%" y="229" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="46" fg:w="1"/><text x="0.6991%" y="239.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.4908%" y="213" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="46" fg:w="1"/><text x="0.6991%" y="223.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="0.4908%" y="197" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="46" fg:w="1"/><text x="0.6991%" y="207.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.5014%" y="213" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="47" fg:w="1"/><text x="0.7098%" y="223.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.5014%" y="197" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="47" fg:w="1"/><text x="0.7098%" y="207.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="0.5014%" y="181" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="47" fg:w="1"/><text x="0.7098%" y="191.50"></text></g><g><title>tcp_rcv_established (2 samples, 0.02%)</title><rect x="0.5121%" y="213" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="48" fg:w="2"/><text x="0.7204%" y="223.50"></text></g><g><title>tcp_validate_incoming (2 samples, 0.02%)</title><rect x="0.5121%" y="197" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="48" fg:w="2"/><text x="0.7204%" y="207.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="0.5121%" y="181" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="48" fg:w="2"/><text x="0.7204%" y="191.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="0.5121%" y="165" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="48" fg:w="2"/><text x="0.7204%" y="175.50"></text></g><g><title>TCP_INVALID_SEQUENCE (2 samples, 0.02%)</title><rect x="0.5121%" y="149" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="48" fg:w="2"/><text x="0.7204%" y="159.50"></text></g><g><title>mlx5e_napi_poll (6 samples, 0.06%)</title><rect x="0.4801%" y="389" width="0.0640%" height="15" fill="rgb(221,121,0)" fg:x="45" fg:w="6"/><text x="0.6884%" y="399.50"></text></g><g><title>napi_complete_done (6 samples, 0.06%)</title><rect x="0.4801%" y="373" width="0.0640%" height="15" fill="rgb(238,138,0)" fg:x="45" fg:w="6"/><text x="0.6884%" y="383.50"></text></g><g><title>netif_receive_skb_list_internal (6 samples, 0.06%)</title><rect x="0.4801%" y="357" width="0.0640%" height="15" fill="rgb(244,144,0)" fg:x="45" fg:w="6"/><text x="0.6884%" y="367.50"></text></g><g><title>__netif_receive_skb_list_core (6 samples, 0.06%)</title><rect x="0.4801%" y="341" width="0.0640%" height="15" fill="rgb(231,131,0)" fg:x="45" fg:w="6"/><text x="0.6884%" y="351.50"></text></g><g><title>ip_list_rcv (6 samples, 0.06%)</title><rect x="0.4801%" y="325" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="45" fg:w="6"/><text x="0.6884%" y="335.50"></text></g><g><title>ip_sublist_rcv (6 samples, 0.06%)</title><rect x="0.4801%" y="309" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="45" fg:w="6"/><text x="0.6884%" y="319.50"></text></g><g><title>ip_sublist_rcv_finish (6 samples, 0.06%)</title><rect x="0.4801%" y="293" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="45" fg:w="6"/><text x="0.6884%" y="303.50"></text></g><g><title>ip_local_deliver_finish (6 samples, 0.06%)</title><rect x="0.4801%" y="277" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="45" fg:w="6"/><text x="0.6884%" y="287.50"></text></g><g><title>ip_protocol_deliver_rcu (6 samples, 0.06%)</title><rect x="0.4801%" y="261" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="45" fg:w="6"/><text x="0.6884%" y="271.50"></text></g><g><title>tcp_v4_rcv (5 samples, 0.05%)</title><rect x="0.4908%" y="245" width="0.0533%" height="15" fill="rgb(237,137,0)" fg:x="46" fg:w="5"/><text x="0.6991%" y="255.50"></text></g><g><title>tcp_v4_do_rcv (4 samples, 0.04%)</title><rect x="0.5014%" y="229" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="47" fg:w="4"/><text x="0.7098%" y="239.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="0.5334%" y="213" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="50" fg:w="1"/><text x="0.7418%" y="223.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="0.5334%" y="197" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="50" fg:w="1"/><text x="0.7418%" y="207.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="0.5334%" y="181" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="50" fg:w="1"/><text x="0.7418%" y="191.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="0.5334%" y="165" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="50" fg:w="1"/><text x="0.7418%" y="175.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="0.5334%" y="149" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="50" fg:w="1"/><text x="0.7418%" y="159.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.5334%" y="133" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="50" fg:w="1"/><text x="0.7418%" y="143.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.5334%" y="117" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="50" fg:w="1"/><text x="0.7418%" y="127.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="0.5334%" y="101" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="50" fg:w="1"/><text x="0.7418%" y="111.50"></text></g><g><title>__udp4_lib_rcv (1 samples, 0.01%)</title><rect x="0.5441%" y="325" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="51" fg:w="1"/><text x="0.7524%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.5441%" y="309" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="51" fg:w="1"/><text x="0.7524%" y="319.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.5441%" y="293" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="51" fg:w="1"/><text x="0.7524%" y="303.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="0.5441%" y="277" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="51" fg:w="1"/><text x="0.7524%" y="287.50"></text></g><g><title>__napi_poll (8 samples, 0.09%)</title><rect x="0.4801%" y="405" width="0.0854%" height="15" fill="rgb(231,131,0)" fg:x="45" fg:w="8"/><text x="0.6884%" y="415.50"></text></g><g><title>process_backlog (2 samples, 0.02%)</title><rect x="0.5441%" y="389" width="0.0213%" height="15" fill="rgb(242,142,0)" fg:x="51" fg:w="2"/><text x="0.7524%" y="399.50"></text></g><g><title>__netif_receive_skb_one_core (2 samples, 0.02%)</title><rect x="0.5441%" y="373" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="51" fg:w="2"/><text x="0.7524%" y="383.50"></text></g><g><title>ip_local_deliver_finish (2 samples, 0.02%)</title><rect x="0.5441%" y="357" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="51" fg:w="2"/><text x="0.7524%" y="367.50"></text></g><g><title>ip_protocol_deliver_rcu (2 samples, 0.02%)</title><rect x="0.5441%" y="341" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="51" fg:w="2"/><text x="0.7524%" y="351.50"></text></g><g><title>raw_local_deliver (1 samples, 0.01%)</title><rect x="0.5548%" y="325" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="52" fg:w="1"/><text x="0.7631%" y="335.50"></text></g><g><title>raw_rcv (1 samples, 0.01%)</title><rect x="0.5548%" y="309" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="52" fg:w="1"/><text x="0.7631%" y="319.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.5548%" y="293" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="52" fg:w="1"/><text x="0.7631%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="0.5548%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="52" fg:w="1"/><text x="0.7631%" y="287.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="0.5548%" y="261" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="52" fg:w="1"/><text x="0.7631%" y="271.50"></text></g><g><title>ip_finish_output2 (36 samples, 0.38%)</title><rect x="0.4801%" y="485" width="0.3841%" height="15" fill="rgb(230,130,0)" fg:x="45" fg:w="36"/><text x="0.6884%" y="495.50"></text></g><g><title>__local_bh_enable_ip (36 samples, 0.38%)</title><rect x="0.4801%" y="469" width="0.3841%" height="15" fill="rgb(233,133,0)" fg:x="45" fg:w="36"/><text x="0.6884%" y="479.50"></text></g><g><title>do_softirq (36 samples, 0.38%)</title><rect x="0.4801%" y="453" width="0.3841%" height="15" fill="rgb(243,143,0)" fg:x="45" fg:w="36"/><text x="0.6884%" y="463.50"></text></g><g><title>__do_softirq (36 samples, 0.38%)</title><rect x="0.4801%" y="437" width="0.3841%" height="15" fill="rgb(230,130,0)" fg:x="45" fg:w="36"/><text x="0.6884%" y="447.50"></text></g><g><title>net_rx_action (36 samples, 0.38%)</title><rect x="0.4801%" y="421" width="0.3841%" height="15" fill="rgb(244,144,0)" fg:x="45" fg:w="36"/><text x="0.6884%" y="431.50"></text></g><g><title>napi_consume_skb (28 samples, 0.30%)</title><rect x="0.5655%" y="405" width="0.2987%" height="15" fill="rgb(238,138,0)" fg:x="53" fg:w="28"/><text x="0.7738%" y="415.50"></text></g><g><title>skb_release_data (28 samples, 0.30%)</title><rect x="0.5655%" y="389" width="0.2987%" height="15" fill="rgb(230,130,0)" fg:x="53" fg:w="28"/><text x="0.7738%" y="399.50"></text></g><g><title>kfree_skb_reason (28 samples, 0.30%)</title><rect x="0.5655%" y="373" width="0.2987%" height="15" fill="rgb(229,129,0)" fg:x="53" fg:w="28"/><text x="0.7738%" y="383.50"></text></g><g><title>kfree_skb_reason (28 samples, 0.30%)</title><rect x="0.5655%" y="357" width="0.2987%" height="15" fill="rgb(229,129,0)" fg:x="53" fg:w="28"/><text x="0.7738%" y="367.50"></text></g><g><title>NOT_SPECIFIED (28 samples, 0.30%)</title><rect x="0.5655%" y="341" width="0.2987%" height="15" fill="rgb(90,237,90)" fg:x="53" fg:w="28"/><text x="0.7738%" y="351.50"></text></g><g><title>udp_sendmsg (88 samples, 0.94%)</title><rect x="0.0747%" y="533" width="0.9389%" height="15" fill="rgb(234,134,0)" fg:x="7" fg:w="88"/><text x="0.2830%" y="543.50"></text></g><g><title>udp_send_skb (88 samples, 0.94%)</title><rect x="0.0747%" y="517" width="0.9389%" height="15" fill="rgb(234,134,0)" fg:x="7" fg:w="88"/><text x="0.2830%" y="527.50"></text></g><g><title>ip_send_skb (88 samples, 0.94%)</title><rect x="0.0747%" y="501" width="0.9389%" height="15" fill="rgb(230,130,0)" fg:x="7" fg:w="88"/><text x="0.2830%" y="511.50"></text></g><g><title>ip_output (14 samples, 0.15%)</title><rect x="0.8642%" y="485" width="0.1494%" height="15" fill="rgb(230,130,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="495.50"></text></g><g><title>nf_hook_slow (14 samples, 0.15%)</title><rect x="0.8642%" y="469" width="0.1494%" height="15" fill="rgb(240,140,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="479.50"></text></g><g><title>ipt_do_table (14 samples, 0.15%)</title><rect x="0.8642%" y="453" width="0.1494%" height="15" fill="rgb(233,133,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="463.50"></text></g><g><title>__local_bh_enable_ip (14 samples, 0.15%)</title><rect x="0.8642%" y="437" width="0.1494%" height="15" fill="rgb(233,133,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="447.50"></text></g><g><title>do_softirq (14 samples, 0.15%)</title><rect x="0.8642%" y="421" width="0.1494%" height="15" fill="rgb(243,143,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="431.50"></text></g><g><title>__do_softirq (14 samples, 0.15%)</title><rect x="0.8642%" y="405" width="0.1494%" height="15" fill="rgb(230,130,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="415.50"></text></g><g><title>net_rx_action (14 samples, 0.15%)</title><rect x="0.8642%" y="389" width="0.1494%" height="15" fill="rgb(244,144,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="399.50"></text></g><g><title>napi_consume_skb (14 samples, 0.15%)</title><rect x="0.8642%" y="373" width="0.1494%" height="15" fill="rgb(238,138,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="383.50"></text></g><g><title>skb_release_data (14 samples, 0.15%)</title><rect x="0.8642%" y="357" width="0.1494%" height="15" fill="rgb(230,130,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="367.50"></text></g><g><title>kfree_skb_reason (14 samples, 0.15%)</title><rect x="0.8642%" y="341" width="0.1494%" height="15" fill="rgb(229,129,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="351.50"></text></g><g><title>kfree_skb_reason (14 samples, 0.15%)</title><rect x="0.8642%" y="325" width="0.1494%" height="15" fill="rgb(229,129,0)" fg:x="81" fg:w="14"/><text x="1.0725%" y="335.50"></text></g><g><title>NOT_SPECIFIED (14 samples, 0.15%)</title><rect x="0.8642%" y="309" width="0.1494%" height="15" fill="rgb(90,237,90)" fg:x="81" fg:w="14"/><text x="1.0725%" y="319.50"></text></g><g><title>udp_sendmsg (2 samples, 0.02%)</title><rect x="1.0135%" y="517" width="0.0213%" height="15" fill="rgb(234,134,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="527.50"></text></g><g><title>udp_send_skb (2 samples, 0.02%)</title><rect x="1.0135%" y="501" width="0.0213%" height="15" fill="rgb(234,134,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="511.50"></text></g><g><title>ip_send_skb (2 samples, 0.02%)</title><rect x="1.0135%" y="485" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="495.50"></text></g><g><title>ip_finish_output2 (2 samples, 0.02%)</title><rect x="1.0135%" y="469" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="479.50"></text></g><g><title>__local_bh_enable_ip (2 samples, 0.02%)</title><rect x="1.0135%" y="453" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="463.50"></text></g><g><title>do_softirq (2 samples, 0.02%)</title><rect x="1.0135%" y="437" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="447.50"></text></g><g><title>__do_softirq (2 samples, 0.02%)</title><rect x="1.0135%" y="421" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="431.50"></text></g><g><title>net_rx_action (2 samples, 0.02%)</title><rect x="1.0135%" y="405" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="415.50"></text></g><g><title>napi_consume_skb (2 samples, 0.02%)</title><rect x="1.0135%" y="389" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="399.50"></text></g><g><title>skb_release_data (2 samples, 0.02%)</title><rect x="1.0135%" y="373" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="383.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="1.0135%" y="357" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="367.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="1.0135%" y="341" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="95" fg:w="2"/><text x="1.2219%" y="351.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="1.0135%" y="325" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="95" fg:w="2"/><text x="1.2219%" y="335.50"></text></g><g><title>__udp6_lib_rcv (1 samples, 0.01%)</title><rect x="1.0349%" y="309" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="97" fg:w="1"/><text x="1.2432%" y="319.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="1.0349%" y="293" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="97" fg:w="1"/><text x="1.2432%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="1.0349%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="97" fg:w="1"/><text x="1.2432%" y="287.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="1.0349%" y="261" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="97" fg:w="1"/><text x="1.2432%" y="271.50"></text></g><g><title>icmpv6_rcv (1 samples, 0.01%)</title><rect x="1.0456%" y="309" width="0.0107%" height="15" fill="rgb(242,142,0)" fg:x="98" fg:w="1"/><text x="1.2539%" y="319.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="1.0456%" y="293" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="98" fg:w="1"/><text x="1.2539%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="1.0456%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="98" fg:w="1"/><text x="1.2539%" y="287.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="1.0456%" y="261" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="98" fg:w="1"/><text x="1.2539%" y="271.50"></text></g><g><title>__napi_poll (3 samples, 0.03%)</title><rect x="1.0349%" y="389" width="0.0320%" height="15" fill="rgb(231,131,0)" fg:x="97" fg:w="3"/><text x="1.2432%" y="399.50"></text></g><g><title>process_backlog (3 samples, 0.03%)</title><rect x="1.0349%" y="373" width="0.0320%" height="15" fill="rgb(242,142,0)" fg:x="97" fg:w="3"/><text x="1.2432%" y="383.50"></text></g><g><title>__netif_receive_skb_one_core (3 samples, 0.03%)</title><rect x="1.0349%" y="357" width="0.0320%" height="15" fill="rgb(231,131,0)" fg:x="97" fg:w="3"/><text x="1.2432%" y="367.50"></text></g><g><title>ip6_input_finish (3 samples, 0.03%)</title><rect x="1.0349%" y="341" width="0.0320%" height="15" fill="rgb(235,135,0)" fg:x="97" fg:w="3"/><text x="1.2432%" y="351.50"></text></g><g><title>ip6_protocol_deliver_rcu (3 samples, 0.03%)</title><rect x="1.0349%" y="325" width="0.0320%" height="15" fill="rgb(235,135,0)" fg:x="97" fg:w="3"/><text x="1.2432%" y="335.50"></text></g><g><title>raw6_local_deliver (1 samples, 0.01%)</title><rect x="1.0562%" y="309" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="99" fg:w="1"/><text x="1.2646%" y="319.50"></text></g><g><title>rawv6_rcv (1 samples, 0.01%)</title><rect x="1.0562%" y="293" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="99" fg:w="1"/><text x="1.2646%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="1.0562%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="99" fg:w="1"/><text x="1.2646%" y="287.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="1.0562%" y="261" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="99" fg:w="1"/><text x="1.2646%" y="271.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="1.0562%" y="245" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="99" fg:w="1"/><text x="1.2646%" y="255.50"></text></g><g><title>__local_bh_enable_ip (6 samples, 0.06%)</title><rect x="1.0349%" y="453" width="0.0640%" height="15" fill="rgb(233,133,0)" fg:x="97" fg:w="6"/><text x="1.2432%" y="463.50"></text></g><g><title>do_softirq (6 samples, 0.06%)</title><rect x="1.0349%" y="437" width="0.0640%" height="15" fill="rgb(243,143,0)" fg:x="97" fg:w="6"/><text x="1.2432%" y="447.50"></text></g><g><title>__do_softirq (6 samples, 0.06%)</title><rect x="1.0349%" y="421" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="97" fg:w="6"/><text x="1.2432%" y="431.50"></text></g><g><title>net_rx_action (6 samples, 0.06%)</title><rect x="1.0349%" y="405" width="0.0640%" height="15" fill="rgb(244,144,0)" fg:x="97" fg:w="6"/><text x="1.2432%" y="415.50"></text></g><g><title>napi_consume_skb (3 samples, 0.03%)</title><rect x="1.0669%" y="389" width="0.0320%" height="15" fill="rgb(238,138,0)" fg:x="100" fg:w="3"/><text x="1.2752%" y="399.50"></text></g><g><title>skb_release_data (3 samples, 0.03%)</title><rect x="1.0669%" y="373" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="100" fg:w="3"/><text x="1.2752%" y="383.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="1.0669%" y="357" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="100" fg:w="3"/><text x="1.2752%" y="367.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="1.0669%" y="341" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="100" fg:w="3"/><text x="1.2752%" y="351.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="1.0669%" y="325" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="100" fg:w="3"/><text x="1.2752%" y="335.50"></text></g><g><title>udpv6_sendmsg (9 samples, 0.10%)</title><rect x="1.0135%" y="533" width="0.0960%" height="15" fill="rgb(234,134,0)" fg:x="95" fg:w="9"/><text x="1.2219%" y="543.50"></text></g><g><title>udp_v6_send_skb (7 samples, 0.07%)</title><rect x="1.0349%" y="517" width="0.0747%" height="15" fill="rgb(234,134,0)" fg:x="97" fg:w="7"/><text x="1.2432%" y="527.50"></text></g><g><title>ip6_send_skb (7 samples, 0.07%)</title><rect x="1.0349%" y="501" width="0.0747%" height="15" fill="rgb(235,135,0)" fg:x="97" fg:w="7"/><text x="1.2432%" y="511.50"></text></g><g><title>ip6_finish_output (7 samples, 0.07%)</title><rect x="1.0349%" y="485" width="0.0747%" height="15" fill="rgb(235,135,0)" fg:x="97" fg:w="7"/><text x="1.2432%" y="495.50"></text></g><g><title>ip6_finish_output2 (7 samples, 0.07%)</title><rect x="1.0349%" y="469" width="0.0747%" height="15" fill="rgb(235,135,0)" fg:x="97" fg:w="7"/><text x="1.2432%" y="479.50"></text></g><g><title>lwtunnel_xmit (1 samples, 0.01%)</title><rect x="1.0989%" y="453" width="0.0107%" height="15" fill="rgb(216,116,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="463.50"></text></g><g><title>mpls_xmit (1 samples, 0.01%)</title><rect x="1.0989%" y="437" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="447.50"></text></g><g><title>neigh_xmit (1 samples, 0.01%)</title><rect x="1.0989%" y="421" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="431.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="1.0989%" y="405" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="415.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="1.0989%" y="389" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="399.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="1.0989%" y="373" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="383.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="1.0989%" y="357" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="367.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="1.0989%" y="341" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="351.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="1.0989%" y="325" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="335.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="1.0989%" y="309" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="319.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="1.0989%" y="293" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="303.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="1.0989%" y="277" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="287.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="1.0989%" y="261" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="271.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="1.0989%" y="245" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="255.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="1.0989%" y="229" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="239.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="1.0989%" y="213" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="223.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="1.0989%" y="197" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="207.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="1.0989%" y="181" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="191.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="1.0989%" y="165" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="175.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="1.0989%" y="149" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="159.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="1.0989%" y="133" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="143.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="1.0989%" y="117" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="127.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="1.0989%" y="101" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="111.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="1.0989%" y="85" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="95.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="1.0989%" y="69" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="79.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="1.0989%" y="53" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="103" fg:w="1"/><text x="1.3072%" y="63.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="1.0989%" y="37" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="103" fg:w="1"/><text x="1.3072%" y="47.50"></text></g><g><title>__sys_sendmsg (133 samples, 1.42%)</title><rect x="0.0213%" y="597" width="1.4190%" height="15" fill="rgb(227,127,0)" fg:x="2" fg:w="133"/><text x="0.2297%" y="607.50"></text></g><g><title>___sys_sendmsg (133 samples, 1.42%)</title><rect x="0.0213%" y="581" width="1.4190%" height="15" fill="rgb(223,123,0)" fg:x="2" fg:w="133"/><text x="0.2297%" y="591.50"></text></g><g><title>____sys_sendmsg (133 samples, 1.42%)</title><rect x="0.0213%" y="565" width="1.4190%" height="15" fill="rgb(223,123,0)" fg:x="2" fg:w="133"/><text x="0.2297%" y="575.50"></text></g><g><title>sock_sendmsg (133 samples, 1.42%)</title><rect x="0.0213%" y="549" width="1.4190%" height="15" fill="rgb(239,139,0)" fg:x="2" fg:w="133"/><text x="0.2297%" y="559.50"></text></g><g><title>unix_dgram_sendmsg (31 samples, 0.33%)</title><rect x="1.1096%" y="533" width="0.3307%" height="15" fill="rgb(230,130,0)" fg:x="104" fg:w="31"/><text x="1.3179%" y="543.50"></text></g><g><title>kfree_skb_reason (31 samples, 0.33%)</title><rect x="1.1096%" y="517" width="0.3307%" height="15" fill="rgb(229,129,0)" fg:x="104" fg:w="31"/><text x="1.3179%" y="527.50"></text></g><g><title>kfree_skb_reason (31 samples, 0.33%)</title><rect x="1.1096%" y="501" width="0.3307%" height="15" fill="rgb(229,129,0)" fg:x="104" fg:w="31"/><text x="1.3179%" y="511.50"></text></g><g><title>NOT_SPECIFIED (31 samples, 0.33%)</title><rect x="1.1096%" y="485" width="0.3307%" height="15" fill="rgb(90,237,90)" fg:x="104" fg:w="31"/><text x="1.3179%" y="495.50"></text></g><g><title>inet_stream_connect (2 samples, 0.02%)</title><rect x="1.4403%" y="565" width="0.0213%" height="15" fill="rgb(239,139,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="575.50"></text></g><g><title>release_sock (2 samples, 0.02%)</title><rect x="1.4403%" y="549" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="559.50"></text></g><g><title>__release_sock (2 samples, 0.02%)</title><rect x="1.4403%" y="533" width="0.0213%" height="15" fill="rgb(228,128,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="543.50"></text></g><g><title>tcp_v4_do_rcv (2 samples, 0.02%)</title><rect x="1.4403%" y="517" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="527.50"></text></g><g><title>tcp_rcv_state_process (2 samples, 0.02%)</title><rect x="1.4403%" y="501" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="511.50"></text></g><g><title>__tcp_transmit_skb (2 samples, 0.02%)</title><rect x="1.4403%" y="485" width="0.0213%" height="15" fill="rgb(226,126,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="495.50"></text></g><g><title>__ip_queue_xmit (2 samples, 0.02%)</title><rect x="1.4403%" y="469" width="0.0213%" height="15" fill="rgb(225,125,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="479.50"></text></g><g><title>ip_finish_output2 (2 samples, 0.02%)</title><rect x="1.4403%" y="453" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="463.50"></text></g><g><title>__local_bh_enable_ip (2 samples, 0.02%)</title><rect x="1.4403%" y="437" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="447.50"></text></g><g><title>do_softirq (2 samples, 0.02%)</title><rect x="1.4403%" y="421" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="431.50"></text></g><g><title>__do_softirq (2 samples, 0.02%)</title><rect x="1.4403%" y="405" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="415.50"></text></g><g><title>net_rx_action (2 samples, 0.02%)</title><rect x="1.4403%" y="389" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="399.50"></text></g><g><title>__napi_poll (2 samples, 0.02%)</title><rect x="1.4403%" y="373" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="383.50"></text></g><g><title>process_backlog (2 samples, 0.02%)</title><rect x="1.4403%" y="357" width="0.0213%" height="15" fill="rgb(242,142,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="367.50"></text></g><g><title>__netif_receive_skb_one_core (2 samples, 0.02%)</title><rect x="1.4403%" y="341" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="351.50"></text></g><g><title>ip_local_deliver_finish (2 samples, 0.02%)</title><rect x="1.4403%" y="325" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="335.50"></text></g><g><title>ip_protocol_deliver_rcu (2 samples, 0.02%)</title><rect x="1.4403%" y="309" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="319.50"></text></g><g><title>tcp_v4_rcv (2 samples, 0.02%)</title><rect x="1.4403%" y="293" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="303.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="1.4403%" y="277" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="287.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="1.4403%" y="261" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="135" fg:w="2"/><text x="1.6486%" y="271.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="1.4403%" y="245" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="135" fg:w="2"/><text x="1.6486%" y="255.50"></text></g><g><title>__x64_sys_connect (96 samples, 1.02%)</title><rect x="1.4403%" y="597" width="1.0242%" height="15" fill="rgb(233,133,0)" fg:x="135" fg:w="96"/><text x="1.6486%" y="607.50"></text></g><g><title>__sys_connect (96 samples, 1.02%)</title><rect x="1.4403%" y="581" width="1.0242%" height="15" fill="rgb(227,127,0)" fg:x="135" fg:w="96"/><text x="1.6486%" y="591.50"></text></g><g><title>unix_stream_connect (94 samples, 1.00%)</title><rect x="1.4616%" y="565" width="1.0029%" height="15" fill="rgb(230,130,0)" fg:x="137" fg:w="94"/><text x="1.6700%" y="575.50"></text></g><g><title>kfree_skb_reason (94 samples, 1.00%)</title><rect x="1.4616%" y="549" width="1.0029%" height="15" fill="rgb(229,129,0)" fg:x="137" fg:w="94"/><text x="1.6700%" y="559.50"></text></g><g><title>kfree_skb_reason (94 samples, 1.00%)</title><rect x="1.4616%" y="533" width="1.0029%" height="15" fill="rgb(229,129,0)" fg:x="137" fg:w="94"/><text x="1.6700%" y="543.50"></text></g><g><title>NOT_SPECIFIED (94 samples, 1.00%)</title><rect x="1.4616%" y="517" width="1.0029%" height="15" fill="rgb(90,237,90)" fg:x="137" fg:w="94"/><text x="1.6700%" y="527.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="2.4645%" y="533" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="543.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="2.4645%" y="517" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="527.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="2.4645%" y="501" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="511.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="2.4645%" y="485" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="495.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="2.4645%" y="469" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="479.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="2.4645%" y="453" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="463.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="2.4645%" y="437" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="447.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="2.4645%" y="421" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="431.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="2.4645%" y="405" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="415.50"></text></g><g><title>ipv6_list_rcv (1 samples, 0.01%)</title><rect x="2.4645%" y="389" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="399.50"></text></g><g><title>ip6_sublist_rcv (1 samples, 0.01%)</title><rect x="2.4645%" y="373" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="383.50"></text></g><g><title>ip6_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="2.4645%" y="357" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="367.50"></text></g><g><title>ip6_input_finish (1 samples, 0.01%)</title><rect x="2.4645%" y="341" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="351.50"></text></g><g><title>ip6_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="2.4645%" y="325" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="335.50"></text></g><g><title>tcp_v6_rcv (1 samples, 0.01%)</title><rect x="2.4645%" y="309" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="319.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="2.4645%" y="293" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="303.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="2.4645%" y="277" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="287.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.4645%" y="261" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="271.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.4645%" y="245" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="231" fg:w="1"/><text x="2.6729%" y="255.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="2.4645%" y="229" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="231" fg:w="1"/><text x="2.6729%" y="239.50"></text></g><g><title>__tcp_transmit_skb (1 samples, 0.01%)</title><rect x="2.4752%" y="517" width="0.0107%" height="15" fill="rgb(226,126,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="527.50"></text></g><g><title>inet6_csk_xmit (1 samples, 0.01%)</title><rect x="2.4752%" y="501" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="511.50"></text></g><g><title>ip6_xmit (1 samples, 0.01%)</title><rect x="2.4752%" y="485" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="495.50"></text></g><g><title>ip6_finish_output (1 samples, 0.01%)</title><rect x="2.4752%" y="469" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="479.50"></text></g><g><title>ip6_finish_output2 (1 samples, 0.01%)</title><rect x="2.4752%" y="453" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="463.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="2.4752%" y="437" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="447.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="2.4752%" y="421" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="431.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="2.4752%" y="405" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="415.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="2.4752%" y="389" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="399.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="2.4752%" y="373" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="383.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="2.4752%" y="357" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="367.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="2.4752%" y="341" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="351.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="2.4752%" y="325" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="335.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="2.4752%" y="309" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="319.50"></text></g><g><title>ipv6_list_rcv (1 samples, 0.01%)</title><rect x="2.4752%" y="293" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="303.50"></text></g><g><title>ip6_sublist_rcv (1 samples, 0.01%)</title><rect x="2.4752%" y="277" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="287.50"></text></g><g><title>ip6_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="2.4752%" y="261" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="271.50"></text></g><g><title>ip6_input_finish (1 samples, 0.01%)</title><rect x="2.4752%" y="245" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="255.50"></text></g><g><title>ip6_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="2.4752%" y="229" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="239.50"></text></g><g><title>tcp_v6_rcv (1 samples, 0.01%)</title><rect x="2.4752%" y="213" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="223.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="2.4752%" y="197" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="207.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="2.4752%" y="181" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="191.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="2.4752%" y="165" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="175.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="2.4752%" y="149" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="159.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.4752%" y="133" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="143.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.4752%" y="117" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="232" fg:w="1"/><text x="2.6835%" y="127.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="2.4752%" y="101" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="232" fg:w="1"/><text x="2.6835%" y="111.50"></text></g><g><title>inet6_recvmsg (3 samples, 0.03%)</title><rect x="2.4645%" y="565" width="0.0320%" height="15" fill="rgb(239,139,0)" fg:x="231" fg:w="3"/><text x="2.6729%" y="575.50"></text></g><g><title>tcp_recvmsg (3 samples, 0.03%)</title><rect x="2.4645%" y="549" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="231" fg:w="3"/><text x="2.6729%" y="559.50"></text></g><g><title>tcp_recvmsg_locked (2 samples, 0.02%)</title><rect x="2.4752%" y="533" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="232" fg:w="2"/><text x="2.6835%" y="543.50"></text></g><g><title>skb_attempt_defer_free (1 samples, 0.01%)</title><rect x="2.4859%" y="517" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="233" fg:w="1"/><text x="2.6942%" y="527.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="2.4859%" y="501" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="233" fg:w="1"/><text x="2.6942%" y="511.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.4859%" y="485" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="233" fg:w="1"/><text x="2.6942%" y="495.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.4859%" y="469" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="233" fg:w="1"/><text x="2.6942%" y="479.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="2.4859%" y="453" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="233" fg:w="1"/><text x="2.6942%" y="463.50"></text></g><g><title>__local_bh_enable_ip (2 samples, 0.02%)</title><rect x="2.4965%" y="533" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="234" fg:w="2"/><text x="2.7049%" y="543.50"></text></g><g><title>do_softirq (2 samples, 0.02%)</title><rect x="2.4965%" y="517" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="234" fg:w="2"/><text x="2.7049%" y="527.50"></text></g><g><title>__do_softirq (2 samples, 0.02%)</title><rect x="2.4965%" y="501" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="234" fg:w="2"/><text x="2.7049%" y="511.50"></text></g><g><title>net_rx_action (2 samples, 0.02%)</title><rect x="2.4965%" y="485" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="234" fg:w="2"/><text x="2.7049%" y="495.50"></text></g><g><title>napi_consume_skb (2 samples, 0.02%)</title><rect x="2.4965%" y="469" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="234" fg:w="2"/><text x="2.7049%" y="479.50"></text></g><g><title>skb_release_data (2 samples, 0.02%)</title><rect x="2.4965%" y="453" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="234" fg:w="2"/><text x="2.7049%" y="463.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="2.4965%" y="437" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="234" fg:w="2"/><text x="2.7049%" y="447.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="2.4965%" y="421" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="234" fg:w="2"/><text x="2.7049%" y="431.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="2.4965%" y="405" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="234" fg:w="2"/><text x="2.7049%" y="415.50"></text></g><g><title>__tcp_transmit_skb (1 samples, 0.01%)</title><rect x="2.5179%" y="485" width="0.0107%" height="15" fill="rgb(226,126,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="495.50"></text></g><g><title>__ip_queue_xmit (1 samples, 0.01%)</title><rect x="2.5179%" y="469" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="479.50"></text></g><g><title>ip_output (1 samples, 0.01%)</title><rect x="2.5179%" y="453" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="463.50"></text></g><g><title>nf_hook_slow (1 samples, 0.01%)</title><rect x="2.5179%" y="437" width="0.0107%" height="15" fill="rgb(240,140,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="447.50"></text></g><g><title>ipt_do_table (1 samples, 0.01%)</title><rect x="2.5179%" y="421" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="431.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="2.5179%" y="405" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="415.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="2.5179%" y="389" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="399.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="2.5179%" y="373" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="383.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="2.5179%" y="357" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="367.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="2.5179%" y="341" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="351.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="2.5179%" y="325" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="335.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="2.5179%" y="309" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="319.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="2.5179%" y="293" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="303.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="2.5179%" y="277" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="287.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="2.5179%" y="261" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="271.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="2.5179%" y="245" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="255.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="2.5179%" y="229" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="239.50"></text></g><g><title>ip_local_deliver (1 samples, 0.01%)</title><rect x="2.5179%" y="213" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="223.50"></text></g><g><title>nf_hook_slow (1 samples, 0.01%)</title><rect x="2.5179%" y="197" width="0.0107%" height="15" fill="rgb(240,140,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="207.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.5179%" y="181" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="191.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.5179%" y="165" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="236" fg:w="1"/><text x="2.7262%" y="175.50"></text></g><g><title>NETFILTER_DROP (1 samples, 0.01%)</title><rect x="2.5179%" y="149" width="0.0107%" height="15" fill="rgb(89,236,89)" fg:x="236" fg:w="1"/><text x="2.7262%" y="159.50"></text></g><g><title>release_sock (2 samples, 0.02%)</title><rect x="2.5179%" y="533" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="236" fg:w="2"/><text x="2.7262%" y="543.50"></text></g><g><title>__release_sock (2 samples, 0.02%)</title><rect x="2.5179%" y="517" width="0.0213%" height="15" fill="rgb(228,128,0)" fg:x="236" fg:w="2"/><text x="2.7262%" y="527.50"></text></g><g><title>tcp_v4_do_rcv (2 samples, 0.02%)</title><rect x="2.5179%" y="501" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="236" fg:w="2"/><text x="2.7262%" y="511.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="2.5285%" y="485" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="495.50"></text></g><g><title>__tcp_transmit_skb (1 samples, 0.01%)</title><rect x="2.5285%" y="469" width="0.0107%" height="15" fill="rgb(226,126,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="479.50"></text></g><g><title>__ip_queue_xmit (1 samples, 0.01%)</title><rect x="2.5285%" y="453" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="463.50"></text></g><g><title>ip_local_out (1 samples, 0.01%)</title><rect x="2.5285%" y="437" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="447.50"></text></g><g><title>__ip_local_out (1 samples, 0.01%)</title><rect x="2.5285%" y="421" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="431.50"></text></g><g><title>nf_hook_slow (1 samples, 0.01%)</title><rect x="2.5285%" y="405" width="0.0107%" height="15" fill="rgb(240,140,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="415.50"></text></g><g><title>ipt_do_table (1 samples, 0.01%)</title><rect x="2.5285%" y="389" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="399.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="2.5285%" y="373" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="383.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="2.5285%" y="357" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="367.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="2.5285%" y="341" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="351.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="2.5285%" y="325" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="335.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="2.5285%" y="309" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="319.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="2.5285%" y="293" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.5285%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="287.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.5285%" y="261" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="237" fg:w="1"/><text x="2.7369%" y="271.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="2.5285%" y="245" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="237" fg:w="1"/><text x="2.7369%" y="255.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="2.5392%" y="213" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="238" fg:w="1"/><text x="2.7475%" y="223.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="2.5392%" y="197" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="238" fg:w="1"/><text x="2.7475%" y="207.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.5392%" y="181" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="238" fg:w="1"/><text x="2.7475%" y="191.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.5392%" y="165" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="238" fg:w="1"/><text x="2.7475%" y="175.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="2.5392%" y="149" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="238" fg:w="1"/><text x="2.7475%" y="159.50"></text></g><g><title>__napi_poll (2 samples, 0.02%)</title><rect x="2.5392%" y="405" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="415.50"></text></g><g><title>mlx5e_napi_poll (2 samples, 0.02%)</title><rect x="2.5392%" y="389" width="0.0213%" height="15" fill="rgb(221,121,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="399.50"></text></g><g><title>napi_complete_done (2 samples, 0.02%)</title><rect x="2.5392%" y="373" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="383.50"></text></g><g><title>netif_receive_skb_list_internal (2 samples, 0.02%)</title><rect x="2.5392%" y="357" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="367.50"></text></g><g><title>__netif_receive_skb_list_core (2 samples, 0.02%)</title><rect x="2.5392%" y="341" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="351.50"></text></g><g><title>ip_list_rcv (2 samples, 0.02%)</title><rect x="2.5392%" y="325" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="335.50"></text></g><g><title>ip_sublist_rcv (2 samples, 0.02%)</title><rect x="2.5392%" y="309" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="319.50"></text></g><g><title>ip_sublist_rcv_finish (2 samples, 0.02%)</title><rect x="2.5392%" y="293" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="303.50"></text></g><g><title>ip_local_deliver_finish (2 samples, 0.02%)</title><rect x="2.5392%" y="277" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="287.50"></text></g><g><title>ip_protocol_deliver_rcu (2 samples, 0.02%)</title><rect x="2.5392%" y="261" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="271.50"></text></g><g><title>tcp_v4_rcv (2 samples, 0.02%)</title><rect x="2.5392%" y="245" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="255.50"></text></g><g><title>tcp_v4_do_rcv (2 samples, 0.02%)</title><rect x="2.5392%" y="229" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="238" fg:w="2"/><text x="2.7475%" y="239.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="2.5499%" y="213" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="239" fg:w="1"/><text x="2.7582%" y="223.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="2.5499%" y="197" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="239" fg:w="1"/><text x="2.7582%" y="207.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="2.5499%" y="181" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="239" fg:w="1"/><text x="2.7582%" y="191.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.5499%" y="165" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="239" fg:w="1"/><text x="2.7582%" y="175.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="2.5499%" y="149" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="239" fg:w="1"/><text x="2.7582%" y="159.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="2.5499%" y="133" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="239" fg:w="1"/><text x="2.7582%" y="143.50"></text></g><g><title>ip_finish_output2 (10 samples, 0.11%)</title><rect x="2.5392%" y="485" width="0.1067%" height="15" fill="rgb(230,130,0)" fg:x="238" fg:w="10"/><text x="2.7475%" y="495.50"></text></g><g><title>__local_bh_enable_ip (10 samples, 0.11%)</title><rect x="2.5392%" y="469" width="0.1067%" height="15" fill="rgb(233,133,0)" fg:x="238" fg:w="10"/><text x="2.7475%" y="479.50"></text></g><g><title>do_softirq (10 samples, 0.11%)</title><rect x="2.5392%" y="453" width="0.1067%" height="15" fill="rgb(243,143,0)" fg:x="238" fg:w="10"/><text x="2.7475%" y="463.50"></text></g><g><title>__do_softirq (10 samples, 0.11%)</title><rect x="2.5392%" y="437" width="0.1067%" height="15" fill="rgb(230,130,0)" fg:x="238" fg:w="10"/><text x="2.7475%" y="447.50"></text></g><g><title>net_rx_action (10 samples, 0.11%)</title><rect x="2.5392%" y="421" width="0.1067%" height="15" fill="rgb(244,144,0)" fg:x="238" fg:w="10"/><text x="2.7475%" y="431.50"></text></g><g><title>napi_consume_skb (8 samples, 0.09%)</title><rect x="2.5605%" y="405" width="0.0854%" height="15" fill="rgb(238,138,0)" fg:x="240" fg:w="8"/><text x="2.7689%" y="415.50"></text></g><g><title>skb_release_data (8 samples, 0.09%)</title><rect x="2.5605%" y="389" width="0.0854%" height="15" fill="rgb(230,130,0)" fg:x="240" fg:w="8"/><text x="2.7689%" y="399.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="2.5605%" y="373" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="240" fg:w="8"/><text x="2.7689%" y="383.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="2.5605%" y="357" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="240" fg:w="8"/><text x="2.7689%" y="367.50"></text></g><g><title>NOT_SPECIFIED (8 samples, 0.09%)</title><rect x="2.5605%" y="341" width="0.0854%" height="15" fill="rgb(90,237,90)" fg:x="240" fg:w="8"/><text x="2.7689%" y="351.50"></text></g><g><title>__tcp_transmit_skb (13 samples, 0.14%)</title><rect x="2.5392%" y="517" width="0.1387%" height="15" fill="rgb(226,126,0)" fg:x="238" fg:w="13"/><text x="2.7475%" y="527.50"></text></g><g><title>__ip_queue_xmit (13 samples, 0.14%)</title><rect x="2.5392%" y="501" width="0.1387%" height="15" fill="rgb(225,125,0)" fg:x="238" fg:w="13"/><text x="2.7475%" y="511.50"></text></g><g><title>ip_local_out (3 samples, 0.03%)</title><rect x="2.6459%" y="485" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="495.50"></text></g><g><title>__ip_local_out (3 samples, 0.03%)</title><rect x="2.6459%" y="469" width="0.0320%" height="15" fill="rgb(225,125,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="479.50"></text></g><g><title>nf_hook_slow (3 samples, 0.03%)</title><rect x="2.6459%" y="453" width="0.0320%" height="15" fill="rgb(240,140,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="463.50"></text></g><g><title>ipt_do_table (3 samples, 0.03%)</title><rect x="2.6459%" y="437" width="0.0320%" height="15" fill="rgb(233,133,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="447.50"></text></g><g><title>__local_bh_enable_ip (3 samples, 0.03%)</title><rect x="2.6459%" y="421" width="0.0320%" height="15" fill="rgb(233,133,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="431.50"></text></g><g><title>do_softirq (3 samples, 0.03%)</title><rect x="2.6459%" y="405" width="0.0320%" height="15" fill="rgb(243,143,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="415.50"></text></g><g><title>__do_softirq (3 samples, 0.03%)</title><rect x="2.6459%" y="389" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="399.50"></text></g><g><title>net_rx_action (3 samples, 0.03%)</title><rect x="2.6459%" y="373" width="0.0320%" height="15" fill="rgb(244,144,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="383.50"></text></g><g><title>napi_consume_skb (3 samples, 0.03%)</title><rect x="2.6459%" y="357" width="0.0320%" height="15" fill="rgb(238,138,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="367.50"></text></g><g><title>skb_release_data (3 samples, 0.03%)</title><rect x="2.6459%" y="341" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="351.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="2.6459%" y="325" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="335.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="2.6459%" y="309" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="248" fg:w="3"/><text x="2.8542%" y="319.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="2.6459%" y="293" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="248" fg:w="3"/><text x="2.8542%" y="303.50"></text></g><g><title>tcp_recvmsg (42 samples, 0.45%)</title><rect x="2.4965%" y="549" width="0.4481%" height="15" fill="rgb(237,137,0)" fg:x="234" fg:w="42"/><text x="2.7049%" y="559.50"></text></g><g><title>tcp_recvmsg_locked (38 samples, 0.41%)</title><rect x="2.5392%" y="533" width="0.4054%" height="15" fill="rgb(237,137,0)" fg:x="238" fg:w="38"/><text x="2.7475%" y="543.50"></text></g><g><title>skb_attempt_defer_free (25 samples, 0.27%)</title><rect x="2.6779%" y="517" width="0.2667%" height="15" fill="rgb(230,130,0)" fg:x="251" fg:w="25"/><text x="2.8862%" y="527.50"></text></g><g><title>skb_release_data (25 samples, 0.27%)</title><rect x="2.6779%" y="501" width="0.2667%" height="15" fill="rgb(230,130,0)" fg:x="251" fg:w="25"/><text x="2.8862%" y="511.50"></text></g><g><title>kfree_skb_reason (25 samples, 0.27%)</title><rect x="2.6779%" y="485" width="0.2667%" height="15" fill="rgb(229,129,0)" fg:x="251" fg:w="25"/><text x="2.8862%" y="495.50"></text></g><g><title>kfree_skb_reason (25 samples, 0.27%)</title><rect x="2.6779%" y="469" width="0.2667%" height="15" fill="rgb(229,129,0)" fg:x="251" fg:w="25"/><text x="2.8862%" y="479.50"></text></g><g><title>NOT_SPECIFIED (25 samples, 0.27%)</title><rect x="2.6779%" y="453" width="0.2667%" height="15" fill="rgb(90,237,90)" fg:x="251" fg:w="25"/><text x="2.8862%" y="463.50"></text></g><g><title>__x64_sys_recvfrom (266 samples, 2.84%)</title><rect x="2.4645%" y="597" width="2.8379%" height="15" fill="rgb(233,133,0)" fg:x="231" fg:w="266"/><text x="2.6729%" y="607.50">__x..</text></g><g><title>__sys_recvfrom (266 samples, 2.84%)</title><rect x="2.4645%" y="581" width="2.8379%" height="15" fill="rgb(227,127,0)" fg:x="231" fg:w="266"/><text x="2.6729%" y="591.50">__s..</text></g><g><title>inet_recvmsg (263 samples, 2.81%)</title><rect x="2.4965%" y="565" width="2.8059%" height="15" fill="rgb(239,139,0)" fg:x="234" fg:w="263"/><text x="2.7049%" y="575.50">ine..</text></g><g><title>udp_recvmsg (221 samples, 2.36%)</title><rect x="2.9446%" y="549" width="2.3578%" height="15" fill="rgb(234,134,0)" fg:x="276" fg:w="221"/><text x="3.1530%" y="559.50">ud..</text></g><g><title>__consume_stateless_skb (221 samples, 2.36%)</title><rect x="2.9446%" y="533" width="2.3578%" height="15" fill="rgb(230,130,0)" fg:x="276" fg:w="221"/><text x="3.1530%" y="543.50">__..</text></g><g><title>skb_release_data (221 samples, 2.36%)</title><rect x="2.9446%" y="517" width="2.3578%" height="15" fill="rgb(230,130,0)" fg:x="276" fg:w="221"/><text x="3.1530%" y="527.50">sk..</text></g><g><title>kfree_skb_reason (221 samples, 2.36%)</title><rect x="2.9446%" y="501" width="2.3578%" height="15" fill="rgb(229,129,0)" fg:x="276" fg:w="221"/><text x="3.1530%" y="511.50">kf..</text></g><g><title>kfree_skb_reason (221 samples, 2.36%)</title><rect x="2.9446%" y="485" width="2.3578%" height="15" fill="rgb(229,129,0)" fg:x="276" fg:w="221"/><text x="3.1530%" y="495.50">kf..</text></g><g><title>NOT_SPECIFIED (221 samples, 2.36%)</title><rect x="2.9446%" y="469" width="2.3578%" height="15" fill="rgb(90,237,90)" fg:x="276" fg:w="221"/><text x="3.1530%" y="479.50">NO..</text></g><g><title>__x64_sys_recvmmsg (43 samples, 0.46%)</title><rect x="5.3025%" y="597" width="0.4588%" height="15" fill="rgb(233,133,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="607.50"></text></g><g><title>do_recvmmsg (43 samples, 0.46%)</title><rect x="5.3025%" y="581" width="0.4588%" height="15" fill="rgb(243,143,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="591.50"></text></g><g><title>___sys_recvmsg (43 samples, 0.46%)</title><rect x="5.3025%" y="565" width="0.4588%" height="15" fill="rgb(223,123,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="575.50"></text></g><g><title>____sys_recvmsg (43 samples, 0.46%)</title><rect x="5.3025%" y="549" width="0.4588%" height="15" fill="rgb(223,123,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="559.50"></text></g><g><title>inet_recvmsg (43 samples, 0.46%)</title><rect x="5.3025%" y="533" width="0.4588%" height="15" fill="rgb(239,139,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="543.50"></text></g><g><title>udp_recvmsg (43 samples, 0.46%)</title><rect x="5.3025%" y="517" width="0.4588%" height="15" fill="rgb(234,134,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="527.50"></text></g><g><title>__consume_stateless_skb (43 samples, 0.46%)</title><rect x="5.3025%" y="501" width="0.4588%" height="15" fill="rgb(230,130,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="511.50"></text></g><g><title>skb_release_data (43 samples, 0.46%)</title><rect x="5.3025%" y="485" width="0.4588%" height="15" fill="rgb(230,130,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="495.50"></text></g><g><title>kfree_skb_reason (43 samples, 0.46%)</title><rect x="5.3025%" y="469" width="0.4588%" height="15" fill="rgb(229,129,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="479.50"></text></g><g><title>kfree_skb_reason (43 samples, 0.46%)</title><rect x="5.3025%" y="453" width="0.4588%" height="15" fill="rgb(229,129,0)" fg:x="497" fg:w="43"/><text x="5.5108%" y="463.50"></text></g><g><title>NOT_SPECIFIED (43 samples, 0.46%)</title><rect x="5.3025%" y="437" width="0.4588%" height="15" fill="rgb(90,237,90)" fg:x="497" fg:w="43"/><text x="5.5108%" y="447.50"></text></g><g><title>udp_sendmsg (3 samples, 0.03%)</title><rect x="5.7612%" y="517" width="0.0320%" height="15" fill="rgb(234,134,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="527.50"></text></g><g><title>udp_send_skb (3 samples, 0.03%)</title><rect x="5.7612%" y="501" width="0.0320%" height="15" fill="rgb(234,134,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="511.50"></text></g><g><title>ip_send_skb (3 samples, 0.03%)</title><rect x="5.7612%" y="485" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="495.50"></text></g><g><title>ip_finish_output2 (3 samples, 0.03%)</title><rect x="5.7612%" y="469" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="479.50"></text></g><g><title>__local_bh_enable_ip (3 samples, 0.03%)</title><rect x="5.7612%" y="453" width="0.0320%" height="15" fill="rgb(233,133,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="463.50"></text></g><g><title>do_softirq (3 samples, 0.03%)</title><rect x="5.7612%" y="437" width="0.0320%" height="15" fill="rgb(243,143,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="447.50"></text></g><g><title>__do_softirq (3 samples, 0.03%)</title><rect x="5.7612%" y="421" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="431.50"></text></g><g><title>net_rx_action (3 samples, 0.03%)</title><rect x="5.7612%" y="405" width="0.0320%" height="15" fill="rgb(244,144,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="415.50"></text></g><g><title>napi_consume_skb (3 samples, 0.03%)</title><rect x="5.7612%" y="389" width="0.0320%" height="15" fill="rgb(238,138,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="399.50"></text></g><g><title>skb_release_data (3 samples, 0.03%)</title><rect x="5.7612%" y="373" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="383.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="5.7612%" y="357" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="367.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="5.7612%" y="341" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="540" fg:w="3"/><text x="5.9696%" y="351.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="5.7612%" y="325" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="540" fg:w="3"/><text x="5.9696%" y="335.50"></text></g><g><title>__x64_sys_sendmmsg (4 samples, 0.04%)</title><rect x="5.7612%" y="597" width="0.0427%" height="15" fill="rgb(233,133,0)" fg:x="540" fg:w="4"/><text x="5.9696%" y="607.50"></text></g><g><title>__sys_sendmmsg (4 samples, 0.04%)</title><rect x="5.7612%" y="581" width="0.0427%" height="15" fill="rgb(227,127,0)" fg:x="540" fg:w="4"/><text x="5.9696%" y="591.50"></text></g><g><title>___sys_sendmsg (4 samples, 0.04%)</title><rect x="5.7612%" y="565" width="0.0427%" height="15" fill="rgb(223,123,0)" fg:x="540" fg:w="4"/><text x="5.9696%" y="575.50"></text></g><g><title>____sys_sendmsg (4 samples, 0.04%)</title><rect x="5.7612%" y="549" width="0.0427%" height="15" fill="rgb(223,123,0)" fg:x="540" fg:w="4"/><text x="5.9696%" y="559.50"></text></g><g><title>sock_sendmsg (4 samples, 0.04%)</title><rect x="5.7612%" y="533" width="0.0427%" height="15" fill="rgb(239,139,0)" fg:x="540" fg:w="4"/><text x="5.9696%" y="543.50"></text></g><g><title>udpv6_sendmsg (1 samples, 0.01%)</title><rect x="5.7932%" y="517" width="0.0107%" height="15" fill="rgb(234,134,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="527.50"></text></g><g><title>udp_v6_send_skb (1 samples, 0.01%)</title><rect x="5.7932%" y="501" width="0.0107%" height="15" fill="rgb(234,134,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="511.50"></text></g><g><title>ip6_send_skb (1 samples, 0.01%)</title><rect x="5.7932%" y="485" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="495.50"></text></g><g><title>ip6_finish_output (1 samples, 0.01%)</title><rect x="5.7932%" y="469" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="479.50"></text></g><g><title>ip6_finish_output2 (1 samples, 0.01%)</title><rect x="5.7932%" y="453" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="463.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="5.7932%" y="437" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="447.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="5.7932%" y="421" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="431.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="5.7932%" y="405" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="415.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="5.7932%" y="389" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="399.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="5.7932%" y="373" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="383.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="5.7932%" y="357" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="367.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="5.7932%" y="341" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="5.7932%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="543" fg:w="1"/><text x="6.0016%" y="335.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="5.7932%" y="309" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="543" fg:w="1"/><text x="6.0016%" y="319.50"></text></g><g><title>ping_v4_sendmsg (2 samples, 0.02%)</title><rect x="5.8039%" y="549" width="0.0213%" height="15" fill="rgb(240,140,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="559.50"></text></g><g><title>ip_push_pending_frames (2 samples, 0.02%)</title><rect x="5.8039%" y="533" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="543.50"></text></g><g><title>ip_finish_output2 (2 samples, 0.02%)</title><rect x="5.8039%" y="517" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="527.50"></text></g><g><title>__local_bh_enable_ip (2 samples, 0.02%)</title><rect x="5.8039%" y="501" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="511.50"></text></g><g><title>do_softirq (2 samples, 0.02%)</title><rect x="5.8039%" y="485" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="495.50"></text></g><g><title>__do_softirq (2 samples, 0.02%)</title><rect x="5.8039%" y="469" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="479.50"></text></g><g><title>net_rx_action (2 samples, 0.02%)</title><rect x="5.8039%" y="453" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="463.50"></text></g><g><title>__napi_poll (2 samples, 0.02%)</title><rect x="5.8039%" y="437" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="447.50"></text></g><g><title>process_backlog (2 samples, 0.02%)</title><rect x="5.8039%" y="421" width="0.0213%" height="15" fill="rgb(242,142,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="431.50"></text></g><g><title>__netif_receive_skb_one_core (2 samples, 0.02%)</title><rect x="5.8039%" y="405" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="415.50"></text></g><g><title>ip_local_deliver_finish (2 samples, 0.02%)</title><rect x="5.8039%" y="389" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="399.50"></text></g><g><title>ip_protocol_deliver_rcu (2 samples, 0.02%)</title><rect x="5.8039%" y="373" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="383.50"></text></g><g><title>raw_local_deliver (2 samples, 0.02%)</title><rect x="5.8039%" y="357" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="367.50"></text></g><g><title>raw_rcv (2 samples, 0.02%)</title><rect x="5.8039%" y="341" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="351.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="5.8039%" y="325" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="335.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="5.8039%" y="309" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="544" fg:w="2"/><text x="6.0122%" y="319.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="5.8039%" y="293" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="544" fg:w="2"/><text x="6.0122%" y="303.50"></text></g><g><title>__local_bh_enable_ip (3 samples, 0.03%)</title><rect x="5.8252%" y="533" width="0.0320%" height="15" fill="rgb(233,133,0)" fg:x="546" fg:w="3"/><text x="6.0336%" y="543.50"></text></g><g><title>do_softirq (3 samples, 0.03%)</title><rect x="5.8252%" y="517" width="0.0320%" height="15" fill="rgb(243,143,0)" fg:x="546" fg:w="3"/><text x="6.0336%" y="527.50"></text></g><g><title>__do_softirq (3 samples, 0.03%)</title><rect x="5.8252%" y="501" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="546" fg:w="3"/><text x="6.0336%" y="511.50"></text></g><g><title>net_rx_action (3 samples, 0.03%)</title><rect x="5.8252%" y="485" width="0.0320%" height="15" fill="rgb(244,144,0)" fg:x="546" fg:w="3"/><text x="6.0336%" y="495.50"></text></g><g><title>napi_consume_skb (3 samples, 0.03%)</title><rect x="5.8252%" y="469" width="0.0320%" height="15" fill="rgb(238,138,0)" fg:x="546" fg:w="3"/><text x="6.0336%" y="479.50"></text></g><g><title>skb_release_data (3 samples, 0.03%)</title><rect x="5.8252%" y="453" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="546" fg:w="3"/><text x="6.0336%" y="463.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="5.8252%" y="437" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="546" fg:w="3"/><text x="6.0336%" y="447.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="5.8252%" y="421" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="546" fg:w="3"/><text x="6.0336%" y="431.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="5.8252%" y="405" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="546" fg:w="3"/><text x="6.0336%" y="415.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="5.8572%" y="293" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="303.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="5.8572%" y="277" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="287.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="5.8572%" y="261" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="271.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="5.8572%" y="245" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="255.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="5.8572%" y="229" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="239.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="5.8572%" y="213" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="223.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="5.8572%" y="197" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="207.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="5.8572%" y="181" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="191.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="5.8572%" y="165" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="175.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="5.8572%" y="149" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="159.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="5.8572%" y="133" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="549" fg:w="1"/><text x="6.0656%" y="143.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="5.8572%" y="117" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="549" fg:w="1"/><text x="6.0656%" y="127.50"></text></g><g><title>__napi_poll (2 samples, 0.02%)</title><rect x="5.8572%" y="373" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="549" fg:w="2"/><text x="6.0656%" y="383.50"></text></g><g><title>mlx5e_napi_poll (2 samples, 0.02%)</title><rect x="5.8572%" y="357" width="0.0213%" height="15" fill="rgb(221,121,0)" fg:x="549" fg:w="2"/><text x="6.0656%" y="367.50"></text></g><g><title>napi_complete_done (2 samples, 0.02%)</title><rect x="5.8572%" y="341" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="549" fg:w="2"/><text x="6.0656%" y="351.50"></text></g><g><title>netif_receive_skb_list_internal (2 samples, 0.02%)</title><rect x="5.8572%" y="325" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="549" fg:w="2"/><text x="6.0656%" y="335.50"></text></g><g><title>__netif_receive_skb_list_core (2 samples, 0.02%)</title><rect x="5.8572%" y="309" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="549" fg:w="2"/><text x="6.0656%" y="319.50"></text></g><g><title>ipv6_list_rcv (1 samples, 0.01%)</title><rect x="5.8679%" y="293" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="303.50"></text></g><g><title>ip6_sublist_rcv (1 samples, 0.01%)</title><rect x="5.8679%" y="277" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="287.50"></text></g><g><title>ip6_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="5.8679%" y="261" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="271.50"></text></g><g><title>ip6_input_finish (1 samples, 0.01%)</title><rect x="5.8679%" y="245" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="255.50"></text></g><g><title>ip6_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="5.8679%" y="229" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="239.50"></text></g><g><title>tcp_v6_rcv (1 samples, 0.01%)</title><rect x="5.8679%" y="213" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="223.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="5.8679%" y="197" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="207.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="5.8679%" y="181" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="191.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="5.8679%" y="165" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="175.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="5.8679%" y="149" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="550" fg:w="1"/><text x="6.0763%" y="159.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="5.8679%" y="133" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="550" fg:w="1"/><text x="6.0763%" y="143.50"></text></g><g><title>ip_finish_output2 (22 samples, 0.23%)</title><rect x="5.8572%" y="453" width="0.2347%" height="15" fill="rgb(230,130,0)" fg:x="549" fg:w="22"/><text x="6.0656%" y="463.50"></text></g><g><title>__local_bh_enable_ip (22 samples, 0.23%)</title><rect x="5.8572%" y="437" width="0.2347%" height="15" fill="rgb(233,133,0)" fg:x="549" fg:w="22"/><text x="6.0656%" y="447.50"></text></g><g><title>do_softirq (22 samples, 0.23%)</title><rect x="5.8572%" y="421" width="0.2347%" height="15" fill="rgb(243,143,0)" fg:x="549" fg:w="22"/><text x="6.0656%" y="431.50"></text></g><g><title>__do_softirq (22 samples, 0.23%)</title><rect x="5.8572%" y="405" width="0.2347%" height="15" fill="rgb(230,130,0)" fg:x="549" fg:w="22"/><text x="6.0656%" y="415.50"></text></g><g><title>net_rx_action (22 samples, 0.23%)</title><rect x="5.8572%" y="389" width="0.2347%" height="15" fill="rgb(244,144,0)" fg:x="549" fg:w="22"/><text x="6.0656%" y="399.50"></text></g><g><title>napi_consume_skb (20 samples, 0.21%)</title><rect x="5.8786%" y="373" width="0.2134%" height="15" fill="rgb(238,138,0)" fg:x="551" fg:w="20"/><text x="6.0869%" y="383.50"></text></g><g><title>skb_release_data (20 samples, 0.21%)</title><rect x="5.8786%" y="357" width="0.2134%" height="15" fill="rgb(230,130,0)" fg:x="551" fg:w="20"/><text x="6.0869%" y="367.50"></text></g><g><title>kfree_skb_reason (20 samples, 0.21%)</title><rect x="5.8786%" y="341" width="0.2134%" height="15" fill="rgb(229,129,0)" fg:x="551" fg:w="20"/><text x="6.0869%" y="351.50"></text></g><g><title>kfree_skb_reason (20 samples, 0.21%)</title><rect x="5.8786%" y="325" width="0.2134%" height="15" fill="rgb(229,129,0)" fg:x="551" fg:w="20"/><text x="6.0869%" y="335.50"></text></g><g><title>NOT_SPECIFIED (20 samples, 0.21%)</title><rect x="5.8786%" y="309" width="0.2134%" height="15" fill="rgb(90,237,90)" fg:x="551" fg:w="20"/><text x="6.0869%" y="319.50"></text></g><g><title>iptable_mangle_hook (1 samples, 0.01%)</title><rect x="6.0920%" y="405" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="415.50"></text></g><g><title>ipt_do_table (1 samples, 0.01%)</title><rect x="6.0920%" y="389" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="399.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="6.0920%" y="373" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="383.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="6.0920%" y="357" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="367.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="6.0920%" y="341" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="351.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="6.0920%" y="325" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="335.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="6.0920%" y="309" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="319.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="6.0920%" y="293" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.0920%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="287.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.0920%" y="261" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="571" fg:w="1"/><text x="6.3003%" y="271.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="6.0920%" y="245" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="571" fg:w="1"/><text x="6.3003%" y="255.50"></text></g><g><title>__ip_queue_xmit (25 samples, 0.27%)</title><rect x="5.8572%" y="469" width="0.2667%" height="15" fill="rgb(225,125,0)" fg:x="549" fg:w="25"/><text x="6.0656%" y="479.50"></text></g><g><title>ip_local_out (3 samples, 0.03%)</title><rect x="6.0920%" y="453" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="571" fg:w="3"/><text x="6.3003%" y="463.50"></text></g><g><title>__ip_local_out (3 samples, 0.03%)</title><rect x="6.0920%" y="437" width="0.0320%" height="15" fill="rgb(225,125,0)" fg:x="571" fg:w="3"/><text x="6.3003%" y="447.50"></text></g><g><title>nf_hook_slow (3 samples, 0.03%)</title><rect x="6.0920%" y="421" width="0.0320%" height="15" fill="rgb(240,140,0)" fg:x="571" fg:w="3"/><text x="6.3003%" y="431.50"></text></g><g><title>nf_conntrack_in (2 samples, 0.02%)</title><rect x="6.1026%" y="405" width="0.0213%" height="15" fill="rgb(240,140,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="415.50"></text></g><g><title>nf_conntrack_tcp_packet (2 samples, 0.02%)</title><rect x="6.1026%" y="389" width="0.0213%" height="15" fill="rgb(240,140,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="399.50"></text></g><g><title>__local_bh_enable_ip (2 samples, 0.02%)</title><rect x="6.1026%" y="373" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="383.50"></text></g><g><title>do_softirq (2 samples, 0.02%)</title><rect x="6.1026%" y="357" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="367.50"></text></g><g><title>__do_softirq (2 samples, 0.02%)</title><rect x="6.1026%" y="341" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="351.50"></text></g><g><title>net_rx_action (2 samples, 0.02%)</title><rect x="6.1026%" y="325" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="335.50"></text></g><g><title>napi_consume_skb (2 samples, 0.02%)</title><rect x="6.1026%" y="309" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="319.50"></text></g><g><title>skb_release_data (2 samples, 0.02%)</title><rect x="6.1026%" y="293" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="303.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="6.1026%" y="277" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="287.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="6.1026%" y="261" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="572" fg:w="2"/><text x="6.3110%" y="271.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="6.1026%" y="245" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="572" fg:w="2"/><text x="6.3110%" y="255.50"></text></g><g><title>tcp_sendmsg (29 samples, 0.31%)</title><rect x="5.8252%" y="549" width="0.3094%" height="15" fill="rgb(237,137,0)" fg:x="546" fg:w="29"/><text x="6.0336%" y="559.50"></text></g><g><title>tcp_sendmsg_locked (26 samples, 0.28%)</title><rect x="5.8572%" y="533" width="0.2774%" height="15" fill="rgb(237,137,0)" fg:x="549" fg:w="26"/><text x="6.0656%" y="543.50"></text></g><g><title>__tcp_push_pending_frames (26 samples, 0.28%)</title><rect x="5.8572%" y="517" width="0.2774%" height="15" fill="rgb(226,126,0)" fg:x="549" fg:w="26"/><text x="6.0656%" y="527.50"></text></g><g><title>tcp_write_xmit (26 samples, 0.28%)</title><rect x="5.8572%" y="501" width="0.2774%" height="15" fill="rgb(237,137,0)" fg:x="549" fg:w="26"/><text x="6.0656%" y="511.50"></text></g><g><title>__tcp_transmit_skb (26 samples, 0.28%)</title><rect x="5.8572%" y="485" width="0.2774%" height="15" fill="rgb(226,126,0)" fg:x="549" fg:w="26"/><text x="6.0656%" y="495.50"></text></g><g><title>inet6_csk_xmit (1 samples, 0.01%)</title><rect x="6.1240%" y="469" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="479.50"></text></g><g><title>ip6_xmit (1 samples, 0.01%)</title><rect x="6.1240%" y="453" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="463.50"></text></g><g><title>nf_hook_slow (1 samples, 0.01%)</title><rect x="6.1240%" y="437" width="0.0107%" height="15" fill="rgb(240,140,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="447.50"></text></g><g><title>ip6table_mangle_hook (1 samples, 0.01%)</title><rect x="6.1240%" y="421" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="431.50"></text></g><g><title>ip6t_do_table (1 samples, 0.01%)</title><rect x="6.1240%" y="405" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="415.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="6.1240%" y="389" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="399.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="6.1240%" y="373" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="383.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="6.1240%" y="357" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="367.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="6.1240%" y="341" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="351.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="6.1240%" y="325" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="335.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="6.1240%" y="309" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="319.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="6.1240%" y="293" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="303.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="6.1240%" y="277" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="287.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="6.1240%" y="261" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="271.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="6.1240%" y="245" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="255.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="6.1240%" y="229" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="239.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="6.1240%" y="213" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="223.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="6.1240%" y="197" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="207.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="6.1240%" y="181" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="191.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="6.1240%" y="165" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="175.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="6.1240%" y="149" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="159.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="6.1240%" y="133" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="143.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.1240%" y="117" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="127.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.1240%" y="101" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="574" fg:w="1"/><text x="6.3323%" y="111.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="6.1240%" y="85" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="574" fg:w="1"/><text x="6.3323%" y="95.50"></text></g><g><title>udp_sendmsg (6 samples, 0.06%)</title><rect x="6.1346%" y="549" width="0.0640%" height="15" fill="rgb(234,134,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="559.50"></text></g><g><title>udp_send_skb (6 samples, 0.06%)</title><rect x="6.1346%" y="533" width="0.0640%" height="15" fill="rgb(234,134,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="543.50"></text></g><g><title>ip_send_skb (6 samples, 0.06%)</title><rect x="6.1346%" y="517" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="527.50"></text></g><g><title>ip_finish_output2 (6 samples, 0.06%)</title><rect x="6.1346%" y="501" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="511.50"></text></g><g><title>__local_bh_enable_ip (6 samples, 0.06%)</title><rect x="6.1346%" y="485" width="0.0640%" height="15" fill="rgb(233,133,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="495.50"></text></g><g><title>do_softirq (6 samples, 0.06%)</title><rect x="6.1346%" y="469" width="0.0640%" height="15" fill="rgb(243,143,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="479.50"></text></g><g><title>__do_softirq (6 samples, 0.06%)</title><rect x="6.1346%" y="453" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="463.50"></text></g><g><title>net_rx_action (6 samples, 0.06%)</title><rect x="6.1346%" y="437" width="0.0640%" height="15" fill="rgb(244,144,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="447.50"></text></g><g><title>napi_consume_skb (6 samples, 0.06%)</title><rect x="6.1346%" y="421" width="0.0640%" height="15" fill="rgb(238,138,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="431.50"></text></g><g><title>skb_release_data (6 samples, 0.06%)</title><rect x="6.1346%" y="405" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="415.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="6.1346%" y="389" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="399.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="6.1346%" y="373" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="575" fg:w="6"/><text x="6.3430%" y="383.50"></text></g><g><title>NOT_SPECIFIED (6 samples, 0.06%)</title><rect x="6.1346%" y="357" width="0.0640%" height="15" fill="rgb(90,237,90)" fg:x="575" fg:w="6"/><text x="6.3430%" y="367.50"></text></g><g><title>ip6_finish_output (1 samples, 0.01%)</title><rect x="6.1987%" y="501" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="511.50"></text></g><g><title>ip6_finish_output2 (1 samples, 0.01%)</title><rect x="6.1987%" y="485" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="495.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="6.1987%" y="469" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="479.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="6.1987%" y="453" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="463.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="6.1987%" y="437" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="447.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="6.1987%" y="421" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="431.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="6.1987%" y="405" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="415.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="6.1987%" y="389" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="399.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="6.1987%" y="373" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="383.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="6.1987%" y="357" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="367.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="6.1987%" y="341" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="351.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="6.1987%" y="325" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="335.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="6.1987%" y="309" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="319.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="6.1987%" y="293" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="303.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="6.1987%" y="277" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="287.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="6.1987%" y="261" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="271.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="6.1987%" y="245" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="255.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="6.1987%" y="229" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="239.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="6.1987%" y="213" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="223.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.1987%" y="197" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="207.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.1987%" y="181" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="581" fg:w="1"/><text x="6.4070%" y="191.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="6.1987%" y="165" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="581" fg:w="1"/><text x="6.4070%" y="175.50"></text></g><g><title>__x64_sys_sendto (47 samples, 0.50%)</title><rect x="5.8039%" y="597" width="0.5014%" height="15" fill="rgb(233,133,0)" fg:x="544" fg:w="47"/><text x="6.0122%" y="607.50"></text></g><g><title>__sys_sendto (47 samples, 0.50%)</title><rect x="5.8039%" y="581" width="0.5014%" height="15" fill="rgb(227,127,0)" fg:x="544" fg:w="47"/><text x="6.0122%" y="591.50"></text></g><g><title>sock_sendmsg (47 samples, 0.50%)</title><rect x="5.8039%" y="565" width="0.5014%" height="15" fill="rgb(239,139,0)" fg:x="544" fg:w="47"/><text x="6.0122%" y="575.50"></text></g><g><title>udpv6_sendmsg (10 samples, 0.11%)</title><rect x="6.1987%" y="549" width="0.1067%" height="15" fill="rgb(234,134,0)" fg:x="581" fg:w="10"/><text x="6.4070%" y="559.50"></text></g><g><title>udp_v6_send_skb (10 samples, 0.11%)</title><rect x="6.1987%" y="533" width="0.1067%" height="15" fill="rgb(234,134,0)" fg:x="581" fg:w="10"/><text x="6.4070%" y="543.50"></text></g><g><title>ip6_send_skb (10 samples, 0.11%)</title><rect x="6.1987%" y="517" width="0.1067%" height="15" fill="rgb(235,135,0)" fg:x="581" fg:w="10"/><text x="6.4070%" y="527.50"></text></g><g><title>ip6_local_out (9 samples, 0.10%)</title><rect x="6.2093%" y="501" width="0.0960%" height="15" fill="rgb(235,135,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="511.50"></text></g><g><title>__ip6_local_out (9 samples, 0.10%)</title><rect x="6.2093%" y="485" width="0.0960%" height="15" fill="rgb(225,125,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="495.50"></text></g><g><title>nf_hook_slow (9 samples, 0.10%)</title><rect x="6.2093%" y="469" width="0.0960%" height="15" fill="rgb(240,140,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="479.50"></text></g><g><title>ip6t_do_table (9 samples, 0.10%)</title><rect x="6.2093%" y="453" width="0.0960%" height="15" fill="rgb(235,135,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="463.50"></text></g><g><title>__local_bh_enable_ip (9 samples, 0.10%)</title><rect x="6.2093%" y="437" width="0.0960%" height="15" fill="rgb(233,133,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="447.50"></text></g><g><title>do_softirq (9 samples, 0.10%)</title><rect x="6.2093%" y="421" width="0.0960%" height="15" fill="rgb(243,143,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="431.50"></text></g><g><title>__do_softirq (9 samples, 0.10%)</title><rect x="6.2093%" y="405" width="0.0960%" height="15" fill="rgb(230,130,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="415.50"></text></g><g><title>net_rx_action (9 samples, 0.10%)</title><rect x="6.2093%" y="389" width="0.0960%" height="15" fill="rgb(244,144,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="399.50"></text></g><g><title>napi_consume_skb (9 samples, 0.10%)</title><rect x="6.2093%" y="373" width="0.0960%" height="15" fill="rgb(238,138,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="383.50"></text></g><g><title>skb_release_data (9 samples, 0.10%)</title><rect x="6.2093%" y="357" width="0.0960%" height="15" fill="rgb(230,130,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="367.50"></text></g><g><title>kfree_skb_reason (9 samples, 0.10%)</title><rect x="6.2093%" y="341" width="0.0960%" height="15" fill="rgb(229,129,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="351.50"></text></g><g><title>kfree_skb_reason (9 samples, 0.10%)</title><rect x="6.2093%" y="325" width="0.0960%" height="15" fill="rgb(229,129,0)" fg:x="582" fg:w="9"/><text x="6.4177%" y="335.50"></text></g><g><title>NOT_SPECIFIED (9 samples, 0.10%)</title><rect x="6.2093%" y="309" width="0.0960%" height="15" fill="rgb(90,237,90)" fg:x="582" fg:w="9"/><text x="6.4177%" y="319.50"></text></g><g><title>ip_finish_output2 (1 samples, 0.01%)</title><rect x="6.3053%" y="485" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="495.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="6.3053%" y="469" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="479.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="6.3053%" y="453" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="463.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="6.3053%" y="437" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="447.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="6.3053%" y="421" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="431.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="6.3053%" y="405" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="415.50"></text></g><g><title>process_backlog (1 samples, 0.01%)</title><rect x="6.3053%" y="389" width="0.0107%" height="15" fill="rgb(242,142,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="399.50"></text></g><g><title>__netif_receive_skb_one_core (1 samples, 0.01%)</title><rect x="6.3053%" y="373" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="383.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="6.3053%" y="357" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="367.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="6.3053%" y="341" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="351.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="6.3053%" y="325" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="335.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="6.3053%" y="309" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="319.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="6.3053%" y="293" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="303.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="6.3053%" y="277" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="287.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="6.3053%" y="261" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="271.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="6.3053%" y="245" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="255.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="6.3053%" y="229" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="239.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3053%" y="213" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="223.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3053%" y="197" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="591" fg:w="1"/><text x="6.5137%" y="207.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="6.3053%" y="181" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="591" fg:w="1"/><text x="6.5137%" y="191.50"></text></g><g><title>__ip_queue_xmit (4 samples, 0.04%)</title><rect x="6.3053%" y="501" width="0.0427%" height="15" fill="rgb(225,125,0)" fg:x="591" fg:w="4"/><text x="6.5137%" y="511.50"></text></g><g><title>ip_output (3 samples, 0.03%)</title><rect x="6.3160%" y="485" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="495.50"></text></g><g><title>nf_hook_slow (3 samples, 0.03%)</title><rect x="6.3160%" y="469" width="0.0320%" height="15" fill="rgb(240,140,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="479.50"></text></g><g><title>ipt_do_table (3 samples, 0.03%)</title><rect x="6.3160%" y="453" width="0.0320%" height="15" fill="rgb(233,133,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="463.50"></text></g><g><title>__local_bh_enable_ip (3 samples, 0.03%)</title><rect x="6.3160%" y="437" width="0.0320%" height="15" fill="rgb(233,133,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="447.50"></text></g><g><title>do_softirq (3 samples, 0.03%)</title><rect x="6.3160%" y="421" width="0.0320%" height="15" fill="rgb(243,143,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="431.50"></text></g><g><title>__do_softirq (3 samples, 0.03%)</title><rect x="6.3160%" y="405" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="415.50"></text></g><g><title>net_rx_action (3 samples, 0.03%)</title><rect x="6.3160%" y="389" width="0.0320%" height="15" fill="rgb(244,144,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="399.50"></text></g><g><title>napi_consume_skb (3 samples, 0.03%)</title><rect x="6.3160%" y="373" width="0.0320%" height="15" fill="rgb(238,138,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="383.50"></text></g><g><title>skb_release_data (3 samples, 0.03%)</title><rect x="6.3160%" y="357" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="367.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="6.3160%" y="341" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="351.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="6.3160%" y="325" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="592" fg:w="3"/><text x="6.5243%" y="335.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="6.3160%" y="309" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="592" fg:w="3"/><text x="6.5243%" y="319.50"></text></g><g><title>__x64_sys_shutdown (5 samples, 0.05%)</title><rect x="6.3053%" y="597" width="0.0533%" height="15" fill="rgb(233,133,0)" fg:x="591" fg:w="5"/><text x="6.5137%" y="607.50"></text></g><g><title>__sys_shutdown (5 samples, 0.05%)</title><rect x="6.3053%" y="581" width="0.0533%" height="15" fill="rgb(227,127,0)" fg:x="591" fg:w="5"/><text x="6.5137%" y="591.50"></text></g><g><title>inet_shutdown (5 samples, 0.05%)</title><rect x="6.3053%" y="565" width="0.0533%" height="15" fill="rgb(239,139,0)" fg:x="591" fg:w="5"/><text x="6.5137%" y="575.50"></text></g><g><title>__tcp_push_pending_frames (5 samples, 0.05%)</title><rect x="6.3053%" y="549" width="0.0533%" height="15" fill="rgb(226,126,0)" fg:x="591" fg:w="5"/><text x="6.5137%" y="559.50"></text></g><g><title>tcp_write_xmit (5 samples, 0.05%)</title><rect x="6.3053%" y="533" width="0.0533%" height="15" fill="rgb(237,137,0)" fg:x="591" fg:w="5"/><text x="6.5137%" y="543.50"></text></g><g><title>__tcp_transmit_skb (5 samples, 0.05%)</title><rect x="6.3053%" y="517" width="0.0533%" height="15" fill="rgb(226,126,0)" fg:x="591" fg:w="5"/><text x="6.5137%" y="527.50"></text></g><g><title>inet6_csk_xmit (1 samples, 0.01%)</title><rect x="6.3480%" y="501" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="511.50"></text></g><g><title>ip6_xmit (1 samples, 0.01%)</title><rect x="6.3480%" y="485" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="495.50"></text></g><g><title>ip6_finish_output (1 samples, 0.01%)</title><rect x="6.3480%" y="469" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="479.50"></text></g><g><title>ip6_finish_output2 (1 samples, 0.01%)</title><rect x="6.3480%" y="453" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="463.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="6.3480%" y="437" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="447.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="6.3480%" y="421" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="431.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="6.3480%" y="405" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="415.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="6.3480%" y="389" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="399.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="6.3480%" y="373" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="383.50"></text></g><g><title>process_backlog (1 samples, 0.01%)</title><rect x="6.3480%" y="357" width="0.0107%" height="15" fill="rgb(242,142,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="367.50"></text></g><g><title>__netif_receive_skb_one_core (1 samples, 0.01%)</title><rect x="6.3480%" y="341" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="351.50"></text></g><g><title>ip6_input_finish (1 samples, 0.01%)</title><rect x="6.3480%" y="325" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="335.50"></text></g><g><title>ip6_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="6.3480%" y="309" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="319.50"></text></g><g><title>tcp_v6_rcv (1 samples, 0.01%)</title><rect x="6.3480%" y="293" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="303.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="6.3480%" y="277" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="287.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="6.3480%" y="261" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="271.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="6.3480%" y="245" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="255.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="6.3480%" y="229" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="239.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="6.3480%" y="213" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="223.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="6.3480%" y="197" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="207.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3480%" y="181" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="191.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3480%" y="165" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="595" fg:w="1"/><text x="6.5564%" y="175.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="6.3480%" y="149" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="595" fg:w="1"/><text x="6.5564%" y="159.50"></text></g><g><title>__ip_queue_xmit (1 samples, 0.01%)</title><rect x="6.3587%" y="421" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="431.50"></text></g><g><title>ip_local_out (1 samples, 0.01%)</title><rect x="6.3587%" y="405" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="415.50"></text></g><g><title>__ip_local_out (1 samples, 0.01%)</title><rect x="6.3587%" y="389" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="399.50"></text></g><g><title>nf_hook_slow (1 samples, 0.01%)</title><rect x="6.3587%" y="373" width="0.0107%" height="15" fill="rgb(240,140,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="383.50"></text></g><g><title>ipt_do_table (1 samples, 0.01%)</title><rect x="6.3587%" y="357" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="367.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="6.3587%" y="341" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="351.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="6.3587%" y="325" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="335.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="6.3587%" y="309" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="319.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="6.3587%" y="293" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="303.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="6.3587%" y="277" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="287.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="6.3587%" y="261" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="271.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="6.3587%" y="245" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="255.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="6.3587%" y="229" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="239.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="6.3587%" y="213" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="223.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="6.3587%" y="197" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="207.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="6.3587%" y="181" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="191.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="6.3587%" y="165" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="175.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="6.3587%" y="149" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="159.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="6.3587%" y="133" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="143.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="6.3587%" y="117" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="127.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="6.3587%" y="101" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="111.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="6.3587%" y="85" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="95.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3587%" y="69" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="79.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3587%" y="53" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="596" fg:w="1"/><text x="6.5670%" y="63.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="6.3587%" y="37" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="596" fg:w="1"/><text x="6.5670%" y="47.50"></text></g><g><title>do_writev (2 samples, 0.02%)</title><rect x="6.3587%" y="597" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="607.50"></text></g><g><title>vfs_writev (2 samples, 0.02%)</title><rect x="6.3587%" y="581" width="0.0213%" height="15" fill="rgb(226,126,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="591.50"></text></g><g><title>do_iter_write (2 samples, 0.02%)</title><rect x="6.3587%" y="565" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="575.50"></text></g><g><title>do_iter_readv_writev (2 samples, 0.02%)</title><rect x="6.3587%" y="549" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="559.50"></text></g><g><title>sock_write_iter (2 samples, 0.02%)</title><rect x="6.3587%" y="533" width="0.0213%" height="15" fill="rgb(239,139,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="543.50"></text></g><g><title>sock_sendmsg (2 samples, 0.02%)</title><rect x="6.3587%" y="517" width="0.0213%" height="15" fill="rgb(239,139,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="527.50"></text></g><g><title>tcp_sendmsg (2 samples, 0.02%)</title><rect x="6.3587%" y="501" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="511.50"></text></g><g><title>tcp_sendmsg_locked (2 samples, 0.02%)</title><rect x="6.3587%" y="485" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="495.50"></text></g><g><title>__tcp_push_pending_frames (2 samples, 0.02%)</title><rect x="6.3587%" y="469" width="0.0213%" height="15" fill="rgb(226,126,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="479.50"></text></g><g><title>tcp_write_xmit (2 samples, 0.02%)</title><rect x="6.3587%" y="453" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="463.50"></text></g><g><title>__tcp_transmit_skb (2 samples, 0.02%)</title><rect x="6.3587%" y="437" width="0.0213%" height="15" fill="rgb(226,126,0)" fg:x="596" fg:w="2"/><text x="6.5670%" y="447.50"></text></g><g><title>inet6_csk_xmit (1 samples, 0.01%)</title><rect x="6.3694%" y="421" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="431.50"></text></g><g><title>ip6_xmit (1 samples, 0.01%)</title><rect x="6.3694%" y="405" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="415.50"></text></g><g><title>ip6_finish_output (1 samples, 0.01%)</title><rect x="6.3694%" y="389" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="399.50"></text></g><g><title>ip6_finish_output2 (1 samples, 0.01%)</title><rect x="6.3694%" y="373" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="383.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="6.3694%" y="357" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="367.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="6.3694%" y="341" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="351.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="6.3694%" y="325" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="335.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="6.3694%" y="309" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="319.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="6.3694%" y="293" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="303.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="6.3694%" y="277" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="287.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="6.3694%" y="261" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="271.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="6.3694%" y="245" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="255.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="6.3694%" y="229" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="239.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="6.3694%" y="213" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="223.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="6.3694%" y="197" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="207.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="6.3694%" y="181" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="191.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="6.3694%" y="165" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="175.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="6.3694%" y="149" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="159.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="6.3694%" y="133" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="143.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="6.3694%" y="117" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="127.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="6.3694%" y="101" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="111.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="6.3694%" y="85" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="95.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3694%" y="69" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="79.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3694%" y="53" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="597" fg:w="1"/><text x="6.5777%" y="63.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="6.3694%" y="37" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="597" fg:w="1"/><text x="6.5777%" y="47.50"></text></g><g><title>__ip_queue_xmit (1 samples, 0.01%)</title><rect x="6.3800%" y="485" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="495.50"></text></g><g><title>ip_finish_output2 (1 samples, 0.01%)</title><rect x="6.3800%" y="469" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="479.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="6.3800%" y="453" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="463.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="6.3800%" y="437" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="447.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="6.3800%" y="421" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="431.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="6.3800%" y="405" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="415.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="6.3800%" y="389" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="399.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="6.3800%" y="373" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="383.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3800%" y="357" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="367.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3800%" y="341" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="598" fg:w="1"/><text x="6.5884%" y="351.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="6.3800%" y="325" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="598" fg:w="1"/><text x="6.5884%" y="335.50"></text></g><g><title>__tcp_transmit_skb (2 samples, 0.02%)</title><rect x="6.3800%" y="501" width="0.0213%" height="15" fill="rgb(226,126,0)" fg:x="598" fg:w="2"/><text x="6.5884%" y="511.50"></text></g><g><title>inet6_csk_xmit (1 samples, 0.01%)</title><rect x="6.3907%" y="485" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="495.50"></text></g><g><title>ip6_xmit (1 samples, 0.01%)</title><rect x="6.3907%" y="469" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="479.50"></text></g><g><title>ip6_finish_output (1 samples, 0.01%)</title><rect x="6.3907%" y="453" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="463.50"></text></g><g><title>ip6_finish_output2 (1 samples, 0.01%)</title><rect x="6.3907%" y="437" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="447.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="6.3907%" y="421" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="431.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="6.3907%" y="405" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="415.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="6.3907%" y="389" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="399.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="6.3907%" y="373" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="383.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="6.3907%" y="357" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="367.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="6.3907%" y="341" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="351.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="6.3907%" y="325" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="335.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="6.3907%" y="309" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="319.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="6.3907%" y="293" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="303.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="6.3907%" y="277" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="287.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="6.3907%" y="261" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="271.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="6.3907%" y="245" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="255.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="6.3907%" y="229" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="239.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="6.3907%" y="213" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="223.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="6.3907%" y="197" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="207.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="6.3907%" y="181" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="191.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="6.3907%" y="165" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="175.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="6.3907%" y="149" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="159.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3907%" y="133" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="143.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="6.3907%" y="117" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="599" fg:w="1"/><text x="6.5990%" y="127.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="6.3907%" y="101" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="599" fg:w="1"/><text x="6.5990%" y="111.50"></text></g><g><title>inet6_recvmsg (165 samples, 1.76%)</title><rect x="6.3800%" y="549" width="1.7604%" height="15" fill="rgb(239,139,0)" fg:x="598" fg:w="165"/><text x="6.5884%" y="559.50">i..</text></g><g><title>tcp_recvmsg (165 samples, 1.76%)</title><rect x="6.3800%" y="533" width="1.7604%" height="15" fill="rgb(237,137,0)" fg:x="598" fg:w="165"/><text x="6.5884%" y="543.50">t..</text></g><g><title>tcp_recvmsg_locked (165 samples, 1.76%)</title><rect x="6.3800%" y="517" width="1.7604%" height="15" fill="rgb(237,137,0)" fg:x="598" fg:w="165"/><text x="6.5884%" y="527.50">t..</text></g><g><title>skb_attempt_defer_free (163 samples, 1.74%)</title><rect x="6.4014%" y="501" width="1.7390%" height="15" fill="rgb(230,130,0)" fg:x="600" fg:w="163"/><text x="6.6097%" y="511.50">s..</text></g><g><title>skb_release_data (163 samples, 1.74%)</title><rect x="6.4014%" y="485" width="1.7390%" height="15" fill="rgb(230,130,0)" fg:x="600" fg:w="163"/><text x="6.6097%" y="495.50">s..</text></g><g><title>kfree_skb_reason (163 samples, 1.74%)</title><rect x="6.4014%" y="469" width="1.7390%" height="15" fill="rgb(229,129,0)" fg:x="600" fg:w="163"/><text x="6.6097%" y="479.50">k..</text></g><g><title>kfree_skb_reason (163 samples, 1.74%)</title><rect x="6.4014%" y="453" width="1.7390%" height="15" fill="rgb(229,129,0)" fg:x="600" fg:w="163"/><text x="6.6097%" y="463.50">k..</text></g><g><title>NOT_SPECIFIED (163 samples, 1.74%)</title><rect x="6.4014%" y="437" width="1.7390%" height="15" fill="rgb(90,237,90)" fg:x="600" fg:w="163"/><text x="6.6097%" y="447.50">N..</text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="8.1404%" y="517" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="763" fg:w="1"/><text x="8.3487%" y="527.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="8.1404%" y="501" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="763" fg:w="1"/><text x="8.3487%" y="511.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="8.1404%" y="485" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="763" fg:w="1"/><text x="8.3487%" y="495.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="8.1404%" y="469" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="763" fg:w="1"/><text x="8.3487%" y="479.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="8.1404%" y="453" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="763" fg:w="1"/><text x="8.3487%" y="463.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="8.1404%" y="437" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="763" fg:w="1"/><text x="8.3487%" y="447.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.1404%" y="421" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="763" fg:w="1"/><text x="8.3487%" y="431.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.1404%" y="405" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="763" fg:w="1"/><text x="8.3487%" y="415.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="8.1404%" y="389" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="763" fg:w="1"/><text x="8.3487%" y="399.50"></text></g><g><title>release_sock (3 samples, 0.03%)</title><rect x="8.1511%" y="517" width="0.0320%" height="15" fill="rgb(243,143,0)" fg:x="764" fg:w="3"/><text x="8.3594%" y="527.50"></text></g><g><title>__release_sock (3 samples, 0.03%)</title><rect x="8.1511%" y="501" width="0.0320%" height="15" fill="rgb(228,128,0)" fg:x="764" fg:w="3"/><text x="8.3594%" y="511.50"></text></g><g><title>tcp_v4_do_rcv (3 samples, 0.03%)</title><rect x="8.1511%" y="485" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="764" fg:w="3"/><text x="8.3594%" y="495.50"></text></g><g><title>tcp_rcv_established (3 samples, 0.03%)</title><rect x="8.1511%" y="469" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="764" fg:w="3"/><text x="8.3594%" y="479.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="8.1511%" y="453" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="764" fg:w="3"/><text x="8.3594%" y="463.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="8.1511%" y="437" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="764" fg:w="3"/><text x="8.3594%" y="447.50"></text></g><g><title>TCP_OLD_DATA (3 samples, 0.03%)</title><rect x="8.1511%" y="421" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="764" fg:w="3"/><text x="8.3594%" y="431.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="8.1831%" y="389" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="399.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="8.1831%" y="373" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="383.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="8.1831%" y="357" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="367.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="8.1831%" y="341" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="351.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="8.1831%" y="325" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="335.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="8.1831%" y="309" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="319.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="8.1831%" y="293" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="303.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="8.1831%" y="277" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="287.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="8.1831%" y="261" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="271.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="8.1831%" y="245" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="255.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="8.1831%" y="229" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="239.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.1831%" y="213" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="223.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.1831%" y="197" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="767" fg:w="1"/><text x="8.3914%" y="207.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="8.1831%" y="181" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="767" fg:w="1"/><text x="8.3914%" y="191.50"></text></g><g><title>ip_finish_output2 (7 samples, 0.07%)</title><rect x="8.1831%" y="469" width="0.0747%" height="15" fill="rgb(230,130,0)" fg:x="767" fg:w="7"/><text x="8.3914%" y="479.50"></text></g><g><title>__local_bh_enable_ip (7 samples, 0.07%)</title><rect x="8.1831%" y="453" width="0.0747%" height="15" fill="rgb(233,133,0)" fg:x="767" fg:w="7"/><text x="8.3914%" y="463.50"></text></g><g><title>do_softirq (7 samples, 0.07%)</title><rect x="8.1831%" y="437" width="0.0747%" height="15" fill="rgb(243,143,0)" fg:x="767" fg:w="7"/><text x="8.3914%" y="447.50"></text></g><g><title>__do_softirq (7 samples, 0.07%)</title><rect x="8.1831%" y="421" width="0.0747%" height="15" fill="rgb(230,130,0)" fg:x="767" fg:w="7"/><text x="8.3914%" y="431.50"></text></g><g><title>net_rx_action (7 samples, 0.07%)</title><rect x="8.1831%" y="405" width="0.0747%" height="15" fill="rgb(244,144,0)" fg:x="767" fg:w="7"/><text x="8.3914%" y="415.50"></text></g><g><title>napi_consume_skb (6 samples, 0.06%)</title><rect x="8.1937%" y="389" width="0.0640%" height="15" fill="rgb(238,138,0)" fg:x="768" fg:w="6"/><text x="8.4021%" y="399.50"></text></g><g><title>skb_release_data (6 samples, 0.06%)</title><rect x="8.1937%" y="373" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="768" fg:w="6"/><text x="8.4021%" y="383.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="8.1937%" y="357" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="768" fg:w="6"/><text x="8.4021%" y="367.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="8.1937%" y="341" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="768" fg:w="6"/><text x="8.4021%" y="351.50"></text></g><g><title>NOT_SPECIFIED (6 samples, 0.06%)</title><rect x="8.1937%" y="325" width="0.0640%" height="15" fill="rgb(90,237,90)" fg:x="768" fg:w="6"/><text x="8.4021%" y="335.50"></text></g><g><title>__tcp_transmit_skb (8 samples, 0.09%)</title><rect x="8.1831%" y="501" width="0.0854%" height="15" fill="rgb(226,126,0)" fg:x="767" fg:w="8"/><text x="8.3914%" y="511.50"></text></g><g><title>__ip_queue_xmit (8 samples, 0.09%)</title><rect x="8.1831%" y="485" width="0.0854%" height="15" fill="rgb(225,125,0)" fg:x="767" fg:w="8"/><text x="8.3914%" y="495.50"></text></g><g><title>ip_local_out (1 samples, 0.01%)</title><rect x="8.2578%" y="469" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="479.50"></text></g><g><title>__ip_local_out (1 samples, 0.01%)</title><rect x="8.2578%" y="453" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="463.50"></text></g><g><title>nf_hook_slow (1 samples, 0.01%)</title><rect x="8.2578%" y="437" width="0.0107%" height="15" fill="rgb(240,140,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="447.50"></text></g><g><title>iptable_mangle_hook (1 samples, 0.01%)</title><rect x="8.2578%" y="421" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="431.50"></text></g><g><title>ipt_do_table (1 samples, 0.01%)</title><rect x="8.2578%" y="405" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="415.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="8.2578%" y="389" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="399.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="8.2578%" y="373" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="383.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="8.2578%" y="357" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="367.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="8.2578%" y="341" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="351.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="8.2578%" y="325" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="335.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="8.2578%" y="309" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="319.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="8.2578%" y="293" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="303.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="8.2578%" y="277" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="287.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="8.2578%" y="261" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="271.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="8.2578%" y="245" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="255.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="8.2578%" y="229" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="239.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="8.2578%" y="213" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="223.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="8.2578%" y="197" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="207.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="8.2578%" y="181" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="191.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="8.2578%" y="165" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="175.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="8.2578%" y="149" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="159.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.2578%" y="133" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="143.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.2578%" y="117" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="774" fg:w="1"/><text x="8.4661%" y="127.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="8.2578%" y="101" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="774" fg:w="1"/><text x="8.4661%" y="111.50"></text></g><g><title>ksys_read (187 samples, 2.00%)</title><rect x="6.3800%" y="597" width="1.9951%" height="15" fill="rgb(231,131,0)" fg:x="598" fg:w="187"/><text x="6.5884%" y="607.50">ks..</text></g><g><title>vfs_read (187 samples, 2.00%)</title><rect x="6.3800%" y="581" width="1.9951%" height="15" fill="rgb(226,126,0)" fg:x="598" fg:w="187"/><text x="6.5884%" y="591.50">vf..</text></g><g><title>sock_read_iter (187 samples, 2.00%)</title><rect x="6.3800%" y="565" width="1.9951%" height="15" fill="rgb(239,139,0)" fg:x="598" fg:w="187"/><text x="6.5884%" y="575.50">so..</text></g><g><title>inet_recvmsg (22 samples, 0.23%)</title><rect x="8.1404%" y="549" width="0.2347%" height="15" fill="rgb(239,139,0)" fg:x="763" fg:w="22"/><text x="8.3487%" y="559.50"></text></g><g><title>tcp_recvmsg (22 samples, 0.23%)</title><rect x="8.1404%" y="533" width="0.2347%" height="15" fill="rgb(237,137,0)" fg:x="763" fg:w="22"/><text x="8.3487%" y="543.50"></text></g><g><title>tcp_recvmsg_locked (18 samples, 0.19%)</title><rect x="8.1831%" y="517" width="0.1920%" height="15" fill="rgb(237,137,0)" fg:x="767" fg:w="18"/><text x="8.3914%" y="527.50"></text></g><g><title>skb_attempt_defer_free (10 samples, 0.11%)</title><rect x="8.2684%" y="501" width="0.1067%" height="15" fill="rgb(230,130,0)" fg:x="775" fg:w="10"/><text x="8.4768%" y="511.50"></text></g><g><title>skb_release_data (10 samples, 0.11%)</title><rect x="8.2684%" y="485" width="0.1067%" height="15" fill="rgb(230,130,0)" fg:x="775" fg:w="10"/><text x="8.4768%" y="495.50"></text></g><g><title>kfree_skb_reason (10 samples, 0.11%)</title><rect x="8.2684%" y="469" width="0.1067%" height="15" fill="rgb(229,129,0)" fg:x="775" fg:w="10"/><text x="8.4768%" y="479.50"></text></g><g><title>kfree_skb_reason (10 samples, 0.11%)</title><rect x="8.2684%" y="453" width="0.1067%" height="15" fill="rgb(229,129,0)" fg:x="775" fg:w="10"/><text x="8.4768%" y="463.50"></text></g><g><title>NOT_SPECIFIED (10 samples, 0.11%)</title><rect x="8.2684%" y="437" width="0.1067%" height="15" fill="rgb(90,237,90)" fg:x="775" fg:w="10"/><text x="8.4768%" y="447.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="8.3751%" y="501" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="511.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="8.3751%" y="485" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="495.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="8.3751%" y="469" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="479.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="8.3751%" y="453" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="463.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="8.3751%" y="437" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="447.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="8.3751%" y="421" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="431.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="8.3751%" y="405" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="415.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="8.3751%" y="389" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="399.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="8.3751%" y="373" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="383.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="8.3751%" y="357" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="367.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="8.3751%" y="341" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="351.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="8.3751%" y="325" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="335.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="8.3751%" y="309" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="319.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="8.3751%" y="293" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="303.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="8.3751%" y="277" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="287.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="8.3751%" y="261" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="271.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="8.3751%" y="245" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="255.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="8.3751%" y="229" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="239.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="8.3751%" y="213" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="223.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="8.3751%" y="197" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="207.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="8.3751%" y="181" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="191.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.3751%" y="165" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="175.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.3751%" y="149" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="785" fg:w="1"/><text x="8.5835%" y="159.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="8.3751%" y="133" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="785" fg:w="1"/><text x="8.5835%" y="143.50"></text></g><g><title>packet_sendmsg (4 samples, 0.04%)</title><rect x="8.3751%" y="533" width="0.0427%" height="15" fill="rgb(234,134,0)" fg:x="785" fg:w="4"/><text x="8.5835%" y="543.50"></text></g><g><title>__dev_queue_xmit (4 samples, 0.04%)</title><rect x="8.3751%" y="517" width="0.0427%" height="15" fill="rgb(230,130,0)" fg:x="785" fg:w="4"/><text x="8.5835%" y="527.50"></text></g><g><title>dev_hard_start_xmit (3 samples, 0.03%)</title><rect x="8.3858%" y="501" width="0.0320%" height="15" fill="rgb(243,143,0)" fg:x="786" fg:w="3"/><text x="8.5941%" y="511.50"></text></g><g><title>xfrmi_xmit (3 samples, 0.03%)</title><rect x="8.3858%" y="485" width="0.0320%" height="15" fill="rgb(245,145,0)" fg:x="786" fg:w="3"/><text x="8.5941%" y="495.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="8.3858%" y="469" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="786" fg:w="3"/><text x="8.5941%" y="479.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="8.3858%" y="453" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="786" fg:w="3"/><text x="8.5941%" y="463.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="8.3858%" y="437" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="786" fg:w="3"/><text x="8.5941%" y="447.50"></text></g><g><title>raw_local_deliver (1 samples, 0.01%)</title><rect x="8.4178%" y="293" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="789" fg:w="1"/><text x="8.6261%" y="303.50"></text></g><g><title>raw_rcv (1 samples, 0.01%)</title><rect x="8.4178%" y="277" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="789" fg:w="1"/><text x="8.6261%" y="287.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.4178%" y="261" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="789" fg:w="1"/><text x="8.6261%" y="271.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.4178%" y="245" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="789" fg:w="1"/><text x="8.6261%" y="255.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="8.4178%" y="229" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="789" fg:w="1"/><text x="8.6261%" y="239.50"></text></g><g><title>__local_bh_enable_ip (2 samples, 0.02%)</title><rect x="8.4178%" y="517" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="527.50"></text></g><g><title>do_softirq (2 samples, 0.02%)</title><rect x="8.4178%" y="501" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="511.50"></text></g><g><title>__do_softirq (2 samples, 0.02%)</title><rect x="8.4178%" y="485" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="495.50"></text></g><g><title>net_rx_action (2 samples, 0.02%)</title><rect x="8.4178%" y="469" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="479.50"></text></g><g><title>__napi_poll (2 samples, 0.02%)</title><rect x="8.4178%" y="453" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="463.50"></text></g><g><title>mlx5e_napi_poll (2 samples, 0.02%)</title><rect x="8.4178%" y="437" width="0.0213%" height="15" fill="rgb(221,121,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="447.50"></text></g><g><title>napi_complete_done (2 samples, 0.02%)</title><rect x="8.4178%" y="421" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="431.50"></text></g><g><title>netif_receive_skb_list_internal (2 samples, 0.02%)</title><rect x="8.4178%" y="405" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="415.50"></text></g><g><title>__netif_receive_skb_list_core (2 samples, 0.02%)</title><rect x="8.4178%" y="389" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="399.50"></text></g><g><title>ip_list_rcv (2 samples, 0.02%)</title><rect x="8.4178%" y="373" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="383.50"></text></g><g><title>ip_sublist_rcv (2 samples, 0.02%)</title><rect x="8.4178%" y="357" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="367.50"></text></g><g><title>ip_sublist_rcv_finish (2 samples, 0.02%)</title><rect x="8.4178%" y="341" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="351.50"></text></g><g><title>ip_local_deliver_finish (2 samples, 0.02%)</title><rect x="8.4178%" y="325" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="335.50"></text></g><g><title>ip_protocol_deliver_rcu (2 samples, 0.02%)</title><rect x="8.4178%" y="309" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="789" fg:w="2"/><text x="8.6261%" y="319.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="8.4285%" y="293" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="790" fg:w="1"/><text x="8.6368%" y="303.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="8.4285%" y="277" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="790" fg:w="1"/><text x="8.6368%" y="287.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="8.4285%" y="261" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="790" fg:w="1"/><text x="8.6368%" y="271.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="8.4285%" y="245" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="790" fg:w="1"/><text x="8.6368%" y="255.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.4285%" y="229" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="790" fg:w="1"/><text x="8.6368%" y="239.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.4285%" y="213" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="790" fg:w="1"/><text x="8.6368%" y="223.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="8.4285%" y="197" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="790" fg:w="1"/><text x="8.6368%" y="207.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.4391%" y="149" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="791" fg:w="1"/><text x="8.6475%" y="159.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.4391%" y="133" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="791" fg:w="1"/><text x="8.6475%" y="143.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="8.4391%" y="117" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="791" fg:w="1"/><text x="8.6475%" y="127.50"></text></g><g><title>tcp_rcv_established (3 samples, 0.03%)</title><rect x="8.4391%" y="165" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="791" fg:w="3"/><text x="8.6475%" y="175.50"></text></g><g><title>tcp_validate_incoming (2 samples, 0.02%)</title><rect x="8.4498%" y="149" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="792" fg:w="2"/><text x="8.6581%" y="159.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="8.4498%" y="133" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="792" fg:w="2"/><text x="8.6581%" y="143.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="8.4498%" y="117" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="792" fg:w="2"/><text x="8.6581%" y="127.50"></text></g><g><title>TCP_INVALID_SEQUENCE (2 samples, 0.02%)</title><rect x="8.4498%" y="101" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="792" fg:w="2"/><text x="8.6581%" y="111.50"></text></g><g><title>inet_csk_destroy_sock (2 samples, 0.02%)</title><rect x="8.4711%" y="149" width="0.0213%" height="15" fill="rgb(239,139,0)" fg:x="794" fg:w="2"/><text x="8.6795%" y="159.50"></text></g><g><title>sk_stream_kill_queues (2 samples, 0.02%)</title><rect x="8.4711%" y="133" width="0.0213%" height="15" fill="rgb(222,122,0)" fg:x="794" fg:w="2"/><text x="8.6795%" y="143.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="8.4711%" y="117" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="794" fg:w="2"/><text x="8.6795%" y="127.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="8.4711%" y="101" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="794" fg:w="2"/><text x="8.6795%" y="111.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="8.4711%" y="85" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="794" fg:w="2"/><text x="8.6795%" y="95.50"></text></g><g><title>mlx5e_napi_poll (6 samples, 0.06%)</title><rect x="8.4391%" y="341" width="0.0640%" height="15" fill="rgb(221,121,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="351.50"></text></g><g><title>napi_complete_done (6 samples, 0.06%)</title><rect x="8.4391%" y="325" width="0.0640%" height="15" fill="rgb(238,138,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="335.50"></text></g><g><title>netif_receive_skb_list_internal (6 samples, 0.06%)</title><rect x="8.4391%" y="309" width="0.0640%" height="15" fill="rgb(244,144,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="319.50"></text></g><g><title>__netif_receive_skb_list_core (6 samples, 0.06%)</title><rect x="8.4391%" y="293" width="0.0640%" height="15" fill="rgb(231,131,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="303.50"></text></g><g><title>ip_list_rcv (6 samples, 0.06%)</title><rect x="8.4391%" y="277" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="287.50"></text></g><g><title>ip_sublist_rcv (6 samples, 0.06%)</title><rect x="8.4391%" y="261" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="271.50"></text></g><g><title>ip_sublist_rcv_finish (6 samples, 0.06%)</title><rect x="8.4391%" y="245" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="255.50"></text></g><g><title>ip_local_deliver_finish (6 samples, 0.06%)</title><rect x="8.4391%" y="229" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="239.50"></text></g><g><title>ip_protocol_deliver_rcu (6 samples, 0.06%)</title><rect x="8.4391%" y="213" width="0.0640%" height="15" fill="rgb(230,130,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="223.50"></text></g><g><title>tcp_v4_rcv (6 samples, 0.06%)</title><rect x="8.4391%" y="197" width="0.0640%" height="15" fill="rgb(237,137,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="207.50"></text></g><g><title>tcp_v4_do_rcv (6 samples, 0.06%)</title><rect x="8.4391%" y="181" width="0.0640%" height="15" fill="rgb(237,137,0)" fg:x="791" fg:w="6"/><text x="8.6475%" y="191.50"></text></g><g><title>tcp_rcv_state_process (3 samples, 0.03%)</title><rect x="8.4711%" y="165" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="794" fg:w="3"/><text x="8.6795%" y="175.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="8.4925%" y="149" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="796" fg:w="1"/><text x="8.7008%" y="159.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="8.4925%" y="133" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="796" fg:w="1"/><text x="8.7008%" y="143.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="8.4925%" y="117" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="796" fg:w="1"/><text x="8.7008%" y="127.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="8.4925%" y="101" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="796" fg:w="1"/><text x="8.7008%" y="111.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.4925%" y="85" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="796" fg:w="1"/><text x="8.7008%" y="95.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.4925%" y="69" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="796" fg:w="1"/><text x="8.7008%" y="79.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="8.4925%" y="53" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="796" fg:w="1"/><text x="8.7008%" y="63.50"></text></g><g><title>__napi_poll (10 samples, 0.11%)</title><rect x="8.4391%" y="357" width="0.1067%" height="15" fill="rgb(231,131,0)" fg:x="791" fg:w="10"/><text x="8.6475%" y="367.50"></text></g><g><title>process_backlog (4 samples, 0.04%)</title><rect x="8.5031%" y="341" width="0.0427%" height="15" fill="rgb(242,142,0)" fg:x="797" fg:w="4"/><text x="8.7115%" y="351.50"></text></g><g><title>__netif_receive_skb_one_core (4 samples, 0.04%)</title><rect x="8.5031%" y="325" width="0.0427%" height="15" fill="rgb(231,131,0)" fg:x="797" fg:w="4"/><text x="8.7115%" y="335.50"></text></g><g><title>ip_local_deliver_finish (4 samples, 0.04%)</title><rect x="8.5031%" y="309" width="0.0427%" height="15" fill="rgb(230,130,0)" fg:x="797" fg:w="4"/><text x="8.7115%" y="319.50"></text></g><g><title>ip_protocol_deliver_rcu (4 samples, 0.04%)</title><rect x="8.5031%" y="293" width="0.0427%" height="15" fill="rgb(230,130,0)" fg:x="797" fg:w="4"/><text x="8.7115%" y="303.50"></text></g><g><title>tcp_v4_rcv (4 samples, 0.04%)</title><rect x="8.5031%" y="277" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="797" fg:w="4"/><text x="8.7115%" y="287.50"></text></g><g><title>tcp_v4_do_rcv (4 samples, 0.04%)</title><rect x="8.5031%" y="261" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="797" fg:w="4"/><text x="8.7115%" y="271.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="8.5031%" y="245" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="797" fg:w="4"/><text x="8.7115%" y="255.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="8.5031%" y="229" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="797" fg:w="4"/><text x="8.7115%" y="239.50"></text></g><g><title>NOT_SPECIFIED (4 samples, 0.04%)</title><rect x="8.5031%" y="213" width="0.0427%" height="15" fill="rgb(90,237,90)" fg:x="797" fg:w="4"/><text x="8.7115%" y="223.50"></text></g><g><title>__local_bh_enable_ip (44 samples, 0.47%)</title><rect x="8.4391%" y="421" width="0.4694%" height="15" fill="rgb(233,133,0)" fg:x="791" fg:w="44"/><text x="8.6475%" y="431.50"></text></g><g><title>do_softirq (44 samples, 0.47%)</title><rect x="8.4391%" y="405" width="0.4694%" height="15" fill="rgb(243,143,0)" fg:x="791" fg:w="44"/><text x="8.6475%" y="415.50"></text></g><g><title>__do_softirq (44 samples, 0.47%)</title><rect x="8.4391%" y="389" width="0.4694%" height="15" fill="rgb(230,130,0)" fg:x="791" fg:w="44"/><text x="8.6475%" y="399.50"></text></g><g><title>net_rx_action (44 samples, 0.47%)</title><rect x="8.4391%" y="373" width="0.4694%" height="15" fill="rgb(244,144,0)" fg:x="791" fg:w="44"/><text x="8.6475%" y="383.50"></text></g><g><title>napi_consume_skb (34 samples, 0.36%)</title><rect x="8.5458%" y="357" width="0.3627%" height="15" fill="rgb(238,138,0)" fg:x="801" fg:w="34"/><text x="8.7542%" y="367.50"></text></g><g><title>skb_release_data (34 samples, 0.36%)</title><rect x="8.5458%" y="341" width="0.3627%" height="15" fill="rgb(230,130,0)" fg:x="801" fg:w="34"/><text x="8.7542%" y="351.50"></text></g><g><title>kfree_skb_reason (34 samples, 0.36%)</title><rect x="8.5458%" y="325" width="0.3627%" height="15" fill="rgb(229,129,0)" fg:x="801" fg:w="34"/><text x="8.7542%" y="335.50"></text></g><g><title>kfree_skb_reason (34 samples, 0.36%)</title><rect x="8.5458%" y="309" width="0.3627%" height="15" fill="rgb(229,129,0)" fg:x="801" fg:w="34"/><text x="8.7542%" y="319.50"></text></g><g><title>NOT_SPECIFIED (34 samples, 0.36%)</title><rect x="8.5458%" y="293" width="0.3627%" height="15" fill="rgb(90,237,90)" fg:x="801" fg:w="34"/><text x="8.7542%" y="303.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="8.9086%" y="309" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="319.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="8.9086%" y="293" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="303.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="8.9086%" y="277" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="287.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="8.9086%" y="261" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="271.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="8.9086%" y="245" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="255.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="8.9086%" y="229" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="239.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="8.9086%" y="213" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="223.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="8.9086%" y="197" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="207.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="8.9086%" y="181" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="191.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="8.9086%" y="165" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="175.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="8.9086%" y="149" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="159.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="8.9086%" y="133" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="143.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="8.9086%" y="117" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="127.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.9086%" y="101" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="111.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.9086%" y="85" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="835" fg:w="1"/><text x="9.1169%" y="95.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="8.9086%" y="69" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="835" fg:w="1"/><text x="9.1169%" y="79.50"></text></g><g><title>ip_finish_output2 (49 samples, 0.52%)</title><rect x="8.4391%" y="437" width="0.5228%" height="15" fill="rgb(230,130,0)" fg:x="791" fg:w="49"/><text x="8.6475%" y="447.50"></text></g><g><title>lwtunnel_xmit (5 samples, 0.05%)</title><rect x="8.9086%" y="421" width="0.0533%" height="15" fill="rgb(216,116,0)" fg:x="835" fg:w="5"/><text x="9.1169%" y="431.50"></text></g><g><title>mpls_xmit (5 samples, 0.05%)</title><rect x="8.9086%" y="405" width="0.0533%" height="15" fill="rgb(231,131,0)" fg:x="835" fg:w="5"/><text x="9.1169%" y="415.50"></text></g><g><title>neigh_xmit (5 samples, 0.05%)</title><rect x="8.9086%" y="389" width="0.0533%" height="15" fill="rgb(243,143,0)" fg:x="835" fg:w="5"/><text x="9.1169%" y="399.50"></text></g><g><title>__local_bh_enable_ip (5 samples, 0.05%)</title><rect x="8.9086%" y="373" width="0.0533%" height="15" fill="rgb(233,133,0)" fg:x="835" fg:w="5"/><text x="9.1169%" y="383.50"></text></g><g><title>do_softirq (5 samples, 0.05%)</title><rect x="8.9086%" y="357" width="0.0533%" height="15" fill="rgb(243,143,0)" fg:x="835" fg:w="5"/><text x="9.1169%" y="367.50"></text></g><g><title>__do_softirq (5 samples, 0.05%)</title><rect x="8.9086%" y="341" width="0.0533%" height="15" fill="rgb(230,130,0)" fg:x="835" fg:w="5"/><text x="9.1169%" y="351.50"></text></g><g><title>net_rx_action (5 samples, 0.05%)</title><rect x="8.9086%" y="325" width="0.0533%" height="15" fill="rgb(244,144,0)" fg:x="835" fg:w="5"/><text x="9.1169%" y="335.50"></text></g><g><title>napi_consume_skb (4 samples, 0.04%)</title><rect x="8.9192%" y="309" width="0.0427%" height="15" fill="rgb(238,138,0)" fg:x="836" fg:w="4"/><text x="9.1276%" y="319.50"></text></g><g><title>skb_release_data (4 samples, 0.04%)</title><rect x="8.9192%" y="293" width="0.0427%" height="15" fill="rgb(230,130,0)" fg:x="836" fg:w="4"/><text x="9.1276%" y="303.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="8.9192%" y="277" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="836" fg:w="4"/><text x="9.1276%" y="287.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="8.9192%" y="261" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="836" fg:w="4"/><text x="9.1276%" y="271.50"></text></g><g><title>NOT_SPECIFIED (4 samples, 0.04%)</title><rect x="8.9192%" y="245" width="0.0427%" height="15" fill="rgb(90,237,90)" fg:x="836" fg:w="4"/><text x="9.1276%" y="255.50"></text></g><g><title>ipt_do_table (2 samples, 0.02%)</title><rect x="8.9619%" y="389" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="840" fg:w="2"/><text x="9.1702%" y="399.50"></text></g><g><title>__local_bh_enable_ip (2 samples, 0.02%)</title><rect x="8.9619%" y="373" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="840" fg:w="2"/><text x="9.1702%" y="383.50"></text></g><g><title>do_softirq (2 samples, 0.02%)</title><rect x="8.9619%" y="357" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="840" fg:w="2"/><text x="9.1702%" y="367.50"></text></g><g><title>__do_softirq (2 samples, 0.02%)</title><rect x="8.9619%" y="341" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="840" fg:w="2"/><text x="9.1702%" y="351.50"></text></g><g><title>net_rx_action (2 samples, 0.02%)</title><rect x="8.9619%" y="325" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="840" fg:w="2"/><text x="9.1702%" y="335.50"></text></g><g><title>napi_consume_skb (2 samples, 0.02%)</title><rect x="8.9619%" y="309" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="840" fg:w="2"/><text x="9.1702%" y="319.50"></text></g><g><title>skb_release_data (2 samples, 0.02%)</title><rect x="8.9619%" y="293" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="840" fg:w="2"/><text x="9.1702%" y="303.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="8.9619%" y="277" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="840" fg:w="2"/><text x="9.1702%" y="287.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="8.9619%" y="261" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="840" fg:w="2"/><text x="9.1702%" y="271.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="8.9619%" y="245" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="840" fg:w="2"/><text x="9.1702%" y="255.50"></text></g><g><title>ip_local_out (3 samples, 0.03%)</title><rect x="8.9619%" y="437" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="840" fg:w="3"/><text x="9.1702%" y="447.50"></text></g><g><title>__ip_local_out (3 samples, 0.03%)</title><rect x="8.9619%" y="421" width="0.0320%" height="15" fill="rgb(225,125,0)" fg:x="840" fg:w="3"/><text x="9.1702%" y="431.50"></text></g><g><title>nf_hook_slow (3 samples, 0.03%)</title><rect x="8.9619%" y="405" width="0.0320%" height="15" fill="rgb(240,140,0)" fg:x="840" fg:w="3"/><text x="9.1702%" y="415.50"></text></g><g><title>iptable_mangle_hook (1 samples, 0.01%)</title><rect x="8.9832%" y="389" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="399.50"></text></g><g><title>ipt_do_table (1 samples, 0.01%)</title><rect x="8.9832%" y="373" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="383.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="8.9832%" y="357" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="367.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="8.9832%" y="341" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="351.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="8.9832%" y="325" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="335.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="8.9832%" y="309" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="319.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="8.9832%" y="293" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="303.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="8.9832%" y="277" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="287.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.9832%" y="261" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="271.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.9832%" y="245" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="842" fg:w="1"/><text x="9.1916%" y="255.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="8.9832%" y="229" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="842" fg:w="1"/><text x="9.1916%" y="239.50"></text></g><g><title>__ip_queue_xmit (53 samples, 0.57%)</title><rect x="8.4391%" y="453" width="0.5655%" height="15" fill="rgb(225,125,0)" fg:x="791" fg:w="53"/><text x="8.6475%" y="463.50"></text></g><g><title>ip_output (1 samples, 0.01%)</title><rect x="8.9939%" y="437" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="447.50"></text></g><g><title>nf_hook_slow (1 samples, 0.01%)</title><rect x="8.9939%" y="421" width="0.0107%" height="15" fill="rgb(240,140,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="431.50"></text></g><g><title>ipt_do_table (1 samples, 0.01%)</title><rect x="8.9939%" y="405" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="415.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="8.9939%" y="389" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="399.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="8.9939%" y="373" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="383.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="8.9939%" y="357" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="367.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="8.9939%" y="341" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="351.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="8.9939%" y="325" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="335.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="8.9939%" y="309" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="319.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.9939%" y="293" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="8.9939%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="843" fg:w="1"/><text x="9.2023%" y="287.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="8.9939%" y="261" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="843" fg:w="1"/><text x="9.2023%" y="271.50"></text></g><g><title>tcp_sendmsg (56 samples, 0.60%)</title><rect x="8.4178%" y="533" width="0.5975%" height="15" fill="rgb(237,137,0)" fg:x="789" fg:w="56"/><text x="8.6261%" y="543.50"></text></g><g><title>tcp_sendmsg_locked (54 samples, 0.58%)</title><rect x="8.4391%" y="517" width="0.5761%" height="15" fill="rgb(237,137,0)" fg:x="791" fg:w="54"/><text x="8.6475%" y="527.50"></text></g><g><title>__tcp_push_pending_frames (54 samples, 0.58%)</title><rect x="8.4391%" y="501" width="0.5761%" height="15" fill="rgb(226,126,0)" fg:x="791" fg:w="54"/><text x="8.6475%" y="511.50"></text></g><g><title>tcp_write_xmit (54 samples, 0.58%)</title><rect x="8.4391%" y="485" width="0.5761%" height="15" fill="rgb(237,137,0)" fg:x="791" fg:w="54"/><text x="8.6475%" y="495.50"></text></g><g><title>__tcp_transmit_skb (54 samples, 0.58%)</title><rect x="8.4391%" y="469" width="0.5761%" height="15" fill="rgb(226,126,0)" fg:x="791" fg:w="54"/><text x="8.6475%" y="479.50"></text></g><g><title>inet6_csk_xmit (1 samples, 0.01%)</title><rect x="9.0046%" y="453" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="463.50"></text></g><g><title>ip6_xmit (1 samples, 0.01%)</title><rect x="9.0046%" y="437" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="447.50"></text></g><g><title>ip6_finish_output (1 samples, 0.01%)</title><rect x="9.0046%" y="421" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="431.50"></text></g><g><title>ip6_finish_output2 (1 samples, 0.01%)</title><rect x="9.0046%" y="405" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="415.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="9.0046%" y="389" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="399.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="9.0046%" y="373" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="383.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="9.0046%" y="357" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="367.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="9.0046%" y="341" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="351.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="9.0046%" y="325" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="335.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="9.0046%" y="309" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="319.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.0046%" y="293" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.0046%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="844" fg:w="1"/><text x="9.2129%" y="287.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="9.0046%" y="261" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="844" fg:w="1"/><text x="9.2129%" y="271.50"></text></g><g><title>sock_write_iter (61 samples, 0.65%)</title><rect x="8.3751%" y="565" width="0.6508%" height="15" fill="rgb(239,139,0)" fg:x="785" fg:w="61"/><text x="8.5835%" y="575.50"></text></g><g><title>sock_sendmsg (61 samples, 0.65%)</title><rect x="8.3751%" y="549" width="0.6508%" height="15" fill="rgb(239,139,0)" fg:x="785" fg:w="61"/><text x="8.5835%" y="559.50"></text></g><g><title>unix_stream_sendmsg (1 samples, 0.01%)</title><rect x="9.0153%" y="533" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="845" fg:w="1"/><text x="9.2236%" y="543.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.0153%" y="517" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="845" fg:w="1"/><text x="9.2236%" y="527.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.0153%" y="501" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="845" fg:w="1"/><text x="9.2236%" y="511.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="9.0153%" y="485" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="845" fg:w="1"/><text x="9.2236%" y="495.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="9.0259%" y="261" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="846" fg:w="3"/><text x="9.2343%" y="271.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="9.0259%" y="245" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="846" fg:w="3"/><text x="9.2343%" y="255.50"></text></g><g><title>TCP_OLD_DATA (3 samples, 0.03%)</title><rect x="9.0259%" y="229" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="846" fg:w="3"/><text x="9.2343%" y="239.50"></text></g><g><title>tcp_rcv_established (6 samples, 0.06%)</title><rect x="9.0259%" y="277" width="0.0640%" height="15" fill="rgb(237,137,0)" fg:x="846" fg:w="6"/><text x="9.2343%" y="287.50"></text></g><g><title>tcp_validate_incoming (3 samples, 0.03%)</title><rect x="9.0579%" y="261" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="849" fg:w="3"/><text x="9.2663%" y="271.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="9.0579%" y="245" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="849" fg:w="3"/><text x="9.2663%" y="255.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="9.0579%" y="229" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="849" fg:w="3"/><text x="9.2663%" y="239.50"></text></g><g><title>TCP_INVALID_SEQUENCE (3 samples, 0.03%)</title><rect x="9.0579%" y="213" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="849" fg:w="3"/><text x="9.2663%" y="223.50"></text></g><g><title>ip_list_rcv (7 samples, 0.07%)</title><rect x="9.0259%" y="389" width="0.0747%" height="15" fill="rgb(230,130,0)" fg:x="846" fg:w="7"/><text x="9.2343%" y="399.50"></text></g><g><title>ip_sublist_rcv (7 samples, 0.07%)</title><rect x="9.0259%" y="373" width="0.0747%" height="15" fill="rgb(230,130,0)" fg:x="846" fg:w="7"/><text x="9.2343%" y="383.50"></text></g><g><title>ip_sublist_rcv_finish (7 samples, 0.07%)</title><rect x="9.0259%" y="357" width="0.0747%" height="15" fill="rgb(230,130,0)" fg:x="846" fg:w="7"/><text x="9.2343%" y="367.50"></text></g><g><title>ip_local_deliver_finish (7 samples, 0.07%)</title><rect x="9.0259%" y="341" width="0.0747%" height="15" fill="rgb(230,130,0)" fg:x="846" fg:w="7"/><text x="9.2343%" y="351.50"></text></g><g><title>ip_protocol_deliver_rcu (7 samples, 0.07%)</title><rect x="9.0259%" y="325" width="0.0747%" height="15" fill="rgb(230,130,0)" fg:x="846" fg:w="7"/><text x="9.2343%" y="335.50"></text></g><g><title>tcp_v4_rcv (7 samples, 0.07%)</title><rect x="9.0259%" y="309" width="0.0747%" height="15" fill="rgb(237,137,0)" fg:x="846" fg:w="7"/><text x="9.2343%" y="319.50"></text></g><g><title>tcp_v4_do_rcv (7 samples, 0.07%)</title><rect x="9.0259%" y="293" width="0.0747%" height="15" fill="rgb(237,137,0)" fg:x="846" fg:w="7"/><text x="9.2343%" y="303.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="9.0899%" y="277" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="852" fg:w="1"/><text x="9.2983%" y="287.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="9.0899%" y="261" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="852" fg:w="1"/><text x="9.2983%" y="271.50"></text></g><g><title>tcp_reset (1 samples, 0.01%)</title><rect x="9.0899%" y="245" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="852" fg:w="1"/><text x="9.2983%" y="255.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="9.0899%" y="229" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="852" fg:w="1"/><text x="9.2983%" y="239.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="9.0899%" y="213" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="852" fg:w="1"/><text x="9.2983%" y="223.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.0899%" y="197" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="852" fg:w="1"/><text x="9.2983%" y="207.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.0899%" y="181" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="852" fg:w="1"/><text x="9.2983%" y="191.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="9.0899%" y="165" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="852" fg:w="1"/><text x="9.2983%" y="175.50"></text></g><g><title>__napi_poll (9 samples, 0.10%)</title><rect x="9.0259%" y="469" width="0.0960%" height="15" fill="rgb(231,131,0)" fg:x="846" fg:w="9"/><text x="9.2343%" y="479.50"></text></g><g><title>mlx5e_napi_poll (9 samples, 0.10%)</title><rect x="9.0259%" y="453" width="0.0960%" height="15" fill="rgb(221,121,0)" fg:x="846" fg:w="9"/><text x="9.2343%" y="463.50"></text></g><g><title>napi_complete_done (9 samples, 0.10%)</title><rect x="9.0259%" y="437" width="0.0960%" height="15" fill="rgb(238,138,0)" fg:x="846" fg:w="9"/><text x="9.2343%" y="447.50"></text></g><g><title>netif_receive_skb_list_internal (9 samples, 0.10%)</title><rect x="9.0259%" y="421" width="0.0960%" height="15" fill="rgb(244,144,0)" fg:x="846" fg:w="9"/><text x="9.2343%" y="431.50"></text></g><g><title>__netif_receive_skb_list_core (9 samples, 0.10%)</title><rect x="9.0259%" y="405" width="0.0960%" height="15" fill="rgb(231,131,0)" fg:x="846" fg:w="9"/><text x="9.2343%" y="415.50"></text></g><g><title>ipv6_list_rcv (2 samples, 0.02%)</title><rect x="9.1006%" y="389" width="0.0213%" height="15" fill="rgb(231,131,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="399.50"></text></g><g><title>ip6_sublist_rcv (2 samples, 0.02%)</title><rect x="9.1006%" y="373" width="0.0213%" height="15" fill="rgb(235,135,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="383.50"></text></g><g><title>ip6_sublist_rcv_finish (2 samples, 0.02%)</title><rect x="9.1006%" y="357" width="0.0213%" height="15" fill="rgb(235,135,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="367.50"></text></g><g><title>ip6_input_finish (2 samples, 0.02%)</title><rect x="9.1006%" y="341" width="0.0213%" height="15" fill="rgb(235,135,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="351.50"></text></g><g><title>ip6_protocol_deliver_rcu (2 samples, 0.02%)</title><rect x="9.1006%" y="325" width="0.0213%" height="15" fill="rgb(235,135,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="335.50"></text></g><g><title>tcp_v6_rcv (2 samples, 0.02%)</title><rect x="9.1006%" y="309" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="319.50"></text></g><g><title>tcp_v6_do_rcv (2 samples, 0.02%)</title><rect x="9.1006%" y="293" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="303.50"></text></g><g><title>tcp_rcv_established (2 samples, 0.02%)</title><rect x="9.1006%" y="277" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="287.50"></text></g><g><title>tcp_validate_incoming (2 samples, 0.02%)</title><rect x="9.1006%" y="261" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="271.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="9.1006%" y="245" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="255.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="9.1006%" y="229" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="853" fg:w="2"/><text x="9.3089%" y="239.50"></text></g><g><title>TCP_INVALID_SEQUENCE (2 samples, 0.02%)</title><rect x="9.1006%" y="213" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="853" fg:w="2"/><text x="9.3089%" y="223.50"></text></g><g><title>__local_bh_enable_ip (12 samples, 0.13%)</title><rect x="9.0259%" y="533" width="0.1280%" height="15" fill="rgb(233,133,0)" fg:x="846" fg:w="12"/><text x="9.2343%" y="543.50"></text></g><g><title>do_softirq (12 samples, 0.13%)</title><rect x="9.0259%" y="517" width="0.1280%" height="15" fill="rgb(243,143,0)" fg:x="846" fg:w="12"/><text x="9.2343%" y="527.50"></text></g><g><title>__do_softirq (12 samples, 0.13%)</title><rect x="9.0259%" y="501" width="0.1280%" height="15" fill="rgb(230,130,0)" fg:x="846" fg:w="12"/><text x="9.2343%" y="511.50"></text></g><g><title>net_rx_action (12 samples, 0.13%)</title><rect x="9.0259%" y="485" width="0.1280%" height="15" fill="rgb(244,144,0)" fg:x="846" fg:w="12"/><text x="9.2343%" y="495.50"></text></g><g><title>napi_consume_skb (3 samples, 0.03%)</title><rect x="9.1219%" y="469" width="0.0320%" height="15" fill="rgb(238,138,0)" fg:x="855" fg:w="3"/><text x="9.3303%" y="479.50"></text></g><g><title>skb_release_data (3 samples, 0.03%)</title><rect x="9.1219%" y="453" width="0.0320%" height="15" fill="rgb(230,130,0)" fg:x="855" fg:w="3"/><text x="9.3303%" y="463.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="9.1219%" y="437" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="855" fg:w="3"/><text x="9.3303%" y="447.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="9.1219%" y="421" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="855" fg:w="3"/><text x="9.3303%" y="431.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="9.1219%" y="405" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="855" fg:w="3"/><text x="9.3303%" y="415.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="9.1540%" y="453" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="858" fg:w="8"/><text x="9.3623%" y="463.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="9.1540%" y="437" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="858" fg:w="8"/><text x="9.3623%" y="447.50"></text></g><g><title>NOT_SPECIFIED (8 samples, 0.09%)</title><rect x="9.1540%" y="421" width="0.0854%" height="15" fill="rgb(90,237,90)" fg:x="858" fg:w="8"/><text x="9.3623%" y="431.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.2393%" y="437" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="866" fg:w="1"/><text x="9.4476%" y="447.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.2393%" y="421" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="866" fg:w="1"/><text x="9.4476%" y="431.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="9.2393%" y="405" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="866" fg:w="1"/><text x="9.4476%" y="415.50"></text></g><g><title>kfree_skb_reason (10 samples, 0.11%)</title><rect x="9.2500%" y="421" width="0.1067%" height="15" fill="rgb(229,129,0)" fg:x="867" fg:w="10"/><text x="9.4583%" y="431.50"></text></g><g><title>kfree_skb_reason (10 samples, 0.11%)</title><rect x="9.2500%" y="405" width="0.1067%" height="15" fill="rgb(229,129,0)" fg:x="867" fg:w="10"/><text x="9.4583%" y="415.50"></text></g><g><title>TCP_OLD_DATA (10 samples, 0.11%)</title><rect x="9.2500%" y="389" width="0.1067%" height="15" fill="rgb(93,239,93)" fg:x="867" fg:w="10"/><text x="9.4583%" y="399.50"></text></g><g><title>tcp_data_queue (22 samples, 0.23%)</title><rect x="9.3567%" y="421" width="0.2347%" height="15" fill="rgb(237,137,0)" fg:x="877" fg:w="22"/><text x="9.5650%" y="431.50"></text></g><g><title>kfree_skb_reason (22 samples, 0.23%)</title><rect x="9.3567%" y="405" width="0.2347%" height="15" fill="rgb(229,129,0)" fg:x="877" fg:w="22"/><text x="9.5650%" y="415.50"></text></g><g><title>kfree_skb_reason (22 samples, 0.23%)</title><rect x="9.3567%" y="389" width="0.2347%" height="15" fill="rgb(229,129,0)" fg:x="877" fg:w="22"/><text x="9.5650%" y="399.50"></text></g><g><title>TCP_OFOMERGE (22 samples, 0.23%)</title><rect x="9.3567%" y="373" width="0.2347%" height="15" fill="rgb(93,239,93)" fg:x="877" fg:w="22"/><text x="9.5650%" y="383.50"></text></g><g><title>tcp_rcv_established (47 samples, 0.50%)</title><rect x="9.2500%" y="437" width="0.5014%" height="15" fill="rgb(237,137,0)" fg:x="867" fg:w="47"/><text x="9.4583%" y="447.50"></text></g><g><title>tcp_validate_incoming (15 samples, 0.16%)</title><rect x="9.5914%" y="421" width="0.1600%" height="15" fill="rgb(237,137,0)" fg:x="899" fg:w="15"/><text x="9.7997%" y="431.50"></text></g><g><title>kfree_skb_reason (15 samples, 0.16%)</title><rect x="9.5914%" y="405" width="0.1600%" height="15" fill="rgb(229,129,0)" fg:x="899" fg:w="15"/><text x="9.7997%" y="415.50"></text></g><g><title>kfree_skb_reason (15 samples, 0.16%)</title><rect x="9.5914%" y="389" width="0.1600%" height="15" fill="rgb(229,129,0)" fg:x="899" fg:w="15"/><text x="9.7997%" y="399.50"></text></g><g><title>TCP_INVALID_SEQUENCE (15 samples, 0.16%)</title><rect x="9.5914%" y="373" width="0.1600%" height="15" fill="rgb(93,239,93)" fg:x="899" fg:w="15"/><text x="9.7997%" y="383.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="9.7514%" y="421" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="914" fg:w="1"/><text x="9.9597%" y="431.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="9.7514%" y="405" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="914" fg:w="1"/><text x="9.9597%" y="415.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.7514%" y="389" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="914" fg:w="1"/><text x="9.9597%" y="399.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="9.7514%" y="373" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="914" fg:w="1"/><text x="9.9597%" y="383.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="9.7514%" y="357" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="914" fg:w="1"/><text x="9.9597%" y="367.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="9.7621%" y="389" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="915" fg:w="1"/><text x="9.9704%" y="399.50"></text></g><g><title>TCP_OLD_DATA (2 samples, 0.02%)</title><rect x="9.7728%" y="389" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="916" fg:w="2"/><text x="9.9811%" y="399.50"></text></g><g><title>kfree_skb_reason (200 samples, 2.13%)</title><rect x="9.7621%" y="421" width="2.1338%" height="15" fill="rgb(229,129,0)" fg:x="915" fg:w="200"/><text x="9.9704%" y="431.50">kf..</text></g><g><title>kfree_skb_reason (200 samples, 2.13%)</title><rect x="9.7621%" y="405" width="2.1338%" height="15" fill="rgb(229,129,0)" fg:x="915" fg:w="200"/><text x="9.9704%" y="415.50">kf..</text></g><g><title>TCP_RESET (197 samples, 2.10%)</title><rect x="9.7941%" y="389" width="2.1018%" height="15" fill="rgb(93,239,93)" fg:x="918" fg:w="197"/><text x="10.0024%" y="399.50">TC..</text></g><g><title>ip6_input_finish (268 samples, 2.86%)</title><rect x="9.1540%" y="501" width="2.8593%" height="15" fill="rgb(235,135,0)" fg:x="858" fg:w="268"/><text x="9.3623%" y="511.50">ip6..</text></g><g><title>ip6_protocol_deliver_rcu (268 samples, 2.86%)</title><rect x="9.1540%" y="485" width="2.8593%" height="15" fill="rgb(235,135,0)" fg:x="858" fg:w="268"/><text x="9.3623%" y="495.50">ip6..</text></g><g><title>tcp_v6_rcv (268 samples, 2.86%)</title><rect x="9.1540%" y="469" width="2.8593%" height="15" fill="rgb(237,137,0)" fg:x="858" fg:w="268"/><text x="9.3623%" y="479.50">tcp..</text></g><g><title>tcp_v6_do_rcv (260 samples, 2.77%)</title><rect x="9.2393%" y="453" width="2.7739%" height="15" fill="rgb(237,137,0)" fg:x="866" fg:w="260"/><text x="9.4476%" y="463.50">tcp..</text></g><g><title>tcp_rcv_state_process (212 samples, 2.26%)</title><rect x="9.7514%" y="437" width="2.2618%" height="15" fill="rgb(237,137,0)" fg:x="914" fg:w="212"/><text x="9.9597%" y="447.50">tc..</text></g><g><title>tcp_validate_incoming (11 samples, 0.12%)</title><rect x="11.8959%" y="421" width="0.1174%" height="15" fill="rgb(237,137,0)" fg:x="1115" fg:w="11"/><text x="12.1042%" y="431.50"></text></g><g><title>kfree_skb_reason (11 samples, 0.12%)</title><rect x="11.8959%" y="405" width="0.1174%" height="15" fill="rgb(229,129,0)" fg:x="1115" fg:w="11"/><text x="12.1042%" y="415.50"></text></g><g><title>kfree_skb_reason (11 samples, 0.12%)</title><rect x="11.8959%" y="389" width="0.1174%" height="15" fill="rgb(229,129,0)" fg:x="1115" fg:w="11"/><text x="12.1042%" y="399.50"></text></g><g><title>TCP_INVALID_SEQUENCE (11 samples, 0.12%)</title><rect x="11.8959%" y="373" width="0.1174%" height="15" fill="rgb(93,239,93)" fg:x="1115" fg:w="11"/><text x="12.1042%" y="383.50"></text></g><g><title>kfree_skb_reason (57 samples, 0.61%)</title><rect x="12.0132%" y="453" width="0.6081%" height="15" fill="rgb(229,129,0)" fg:x="1126" fg:w="57"/><text x="12.2216%" y="463.50"></text></g><g><title>kfree_skb_reason (57 samples, 0.61%)</title><rect x="12.0132%" y="437" width="0.6081%" height="15" fill="rgb(229,129,0)" fg:x="1126" fg:w="57"/><text x="12.2216%" y="447.50"></text></g><g><title>NOT_SPECIFIED (57 samples, 0.61%)</title><rect x="12.0132%" y="421" width="0.6081%" height="15" fill="rgb(90,237,90)" fg:x="1126" fg:w="57"/><text x="12.2216%" y="431.50"></text></g><g><title>kfree_skb_reason (11 samples, 0.12%)</title><rect x="12.6214%" y="437" width="0.1174%" height="15" fill="rgb(229,129,0)" fg:x="1183" fg:w="11"/><text x="12.8297%" y="447.50"></text></g><g><title>kfree_skb_reason (11 samples, 0.12%)</title><rect x="12.6214%" y="421" width="0.1174%" height="15" fill="rgb(229,129,0)" fg:x="1183" fg:w="11"/><text x="12.8297%" y="431.50"></text></g><g><title>NOT_SPECIFIED (11 samples, 0.12%)</title><rect x="12.6214%" y="405" width="0.1174%" height="15" fill="rgb(90,237,90)" fg:x="1183" fg:w="11"/><text x="12.8297%" y="415.50"></text></g><g><title>kfree_skb_reason (5 samples, 0.05%)</title><rect x="12.7387%" y="421" width="0.0533%" height="15" fill="rgb(229,129,0)" fg:x="1194" fg:w="5"/><text x="12.9471%" y="431.50"></text></g><g><title>kfree_skb_reason (5 samples, 0.05%)</title><rect x="12.7387%" y="405" width="0.0533%" height="15" fill="rgb(229,129,0)" fg:x="1194" fg:w="5"/><text x="12.9471%" y="415.50"></text></g><g><title>TCP_OLD_DATA (5 samples, 0.05%)</title><rect x="12.7387%" y="389" width="0.0533%" height="15" fill="rgb(93,239,93)" fg:x="1194" fg:w="5"/><text x="12.9471%" y="399.50"></text></g><g><title>tcp_data_queue (2 samples, 0.02%)</title><rect x="12.7921%" y="421" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="1199" fg:w="2"/><text x="13.0004%" y="431.50"></text></g><g><title>tcp_fin (2 samples, 0.02%)</title><rect x="12.7921%" y="405" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="1199" fg:w="2"/><text x="13.0004%" y="415.50"></text></g><g><title>skb_rbtree_purge (2 samples, 0.02%)</title><rect x="12.7921%" y="389" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="1199" fg:w="2"/><text x="13.0004%" y="399.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="12.7921%" y="373" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="1199" fg:w="2"/><text x="13.0004%" y="383.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="12.7921%" y="357" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="1199" fg:w="2"/><text x="13.0004%" y="367.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="12.7921%" y="341" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="1199" fg:w="2"/><text x="13.0004%" y="351.50"></text></g><g><title>tcp_rcv_established (15 samples, 0.16%)</title><rect x="12.7387%" y="437" width="0.1600%" height="15" fill="rgb(237,137,0)" fg:x="1194" fg:w="15"/><text x="12.9471%" y="447.50"></text></g><g><title>tcp_validate_incoming (8 samples, 0.09%)</title><rect x="12.8134%" y="421" width="0.0854%" height="15" fill="rgb(237,137,0)" fg:x="1201" fg:w="8"/><text x="13.0217%" y="431.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="12.8134%" y="405" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="1201" fg:w="8"/><text x="13.0217%" y="415.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="12.8134%" y="389" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="1201" fg:w="8"/><text x="13.0217%" y="399.50"></text></g><g><title>TCP_INVALID_SEQUENCE (8 samples, 0.09%)</title><rect x="12.8134%" y="373" width="0.0854%" height="15" fill="rgb(93,239,93)" fg:x="1201" fg:w="8"/><text x="13.0217%" y="383.50"></text></g><g><title>TCP_OLD_DATA (3 samples, 0.03%)</title><rect x="12.8988%" y="389" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="1209" fg:w="3"/><text x="13.1071%" y="399.50"></text></g><g><title>kfree_skb_reason (78 samples, 0.83%)</title><rect x="12.8988%" y="421" width="0.8322%" height="15" fill="rgb(229,129,0)" fg:x="1209" fg:w="78"/><text x="13.1071%" y="431.50"></text></g><g><title>kfree_skb_reason (78 samples, 0.83%)</title><rect x="12.8988%" y="405" width="0.8322%" height="15" fill="rgb(229,129,0)" fg:x="1209" fg:w="78"/><text x="13.1071%" y="415.50"></text></g><g><title>TCP_RESET (75 samples, 0.80%)</title><rect x="12.9308%" y="389" width="0.8002%" height="15" fill="rgb(93,239,93)" fg:x="1212" fg:w="75"/><text x="13.1391%" y="399.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="13.7309%" y="421" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1287" fg:w="1"/><text x="13.9393%" y="431.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="13.7309%" y="405" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1287" fg:w="1"/><text x="13.9393%" y="415.50"></text></g><g><title>skb_rbtree_purge (1 samples, 0.01%)</title><rect x="13.7309%" y="389" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="1287" fg:w="1"/><text x="13.9393%" y="399.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="13.7309%" y="373" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1287" fg:w="1"/><text x="13.9393%" y="383.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="13.7309%" y="357" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1287" fg:w="1"/><text x="13.9393%" y="367.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="13.7309%" y="341" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="1287" fg:w="1"/><text x="13.9393%" y="351.50"></text></g><g><title>ksys_write (511 samples, 5.45%)</title><rect x="8.3751%" y="597" width="5.4518%" height="15" fill="rgb(231,131,0)" fg:x="785" fg:w="511"/><text x="8.5835%" y="607.50">ksys_write</text></g><g><title>vfs_write (511 samples, 5.45%)</title><rect x="8.3751%" y="581" width="5.4518%" height="15" fill="rgb(226,126,0)" fg:x="785" fg:w="511"/><text x="8.5835%" y="591.50">vfs_write</text></g><g><title>tun_chr_write_iter (450 samples, 4.80%)</title><rect x="9.0259%" y="565" width="4.8010%" height="15" fill="rgb(229,129,0)" fg:x="846" fg:w="450"/><text x="9.2343%" y="575.50">tun_chr..</text></g><g><title>tun_get_user (450 samples, 4.80%)</title><rect x="9.0259%" y="549" width="4.8010%" height="15" fill="rgb(229,129,0)" fg:x="846" fg:w="450"/><text x="9.2343%" y="559.50">tun_get..</text></g><g><title>netif_receive_skb (438 samples, 4.67%)</title><rect x="9.1540%" y="533" width="4.6730%" height="15" fill="rgb(244,144,0)" fg:x="858" fg:w="438"/><text x="9.3623%" y="543.50">netif_r..</text></g><g><title>__netif_receive_skb_one_core (438 samples, 4.67%)</title><rect x="9.1540%" y="517" width="4.6730%" height="15" fill="rgb(231,131,0)" fg:x="858" fg:w="438"/><text x="9.3623%" y="527.50">__netif..</text></g><g><title>ip_local_deliver_finish (170 samples, 1.81%)</title><rect x="12.0132%" y="501" width="1.8137%" height="15" fill="rgb(230,130,0)" fg:x="1126" fg:w="170"/><text x="12.2216%" y="511.50">i..</text></g><g><title>ip_protocol_deliver_rcu (170 samples, 1.81%)</title><rect x="12.0132%" y="485" width="1.8137%" height="15" fill="rgb(230,130,0)" fg:x="1126" fg:w="170"/><text x="12.2216%" y="495.50">i..</text></g><g><title>tcp_v4_rcv (170 samples, 1.81%)</title><rect x="12.0132%" y="469" width="1.8137%" height="15" fill="rgb(237,137,0)" fg:x="1126" fg:w="170"/><text x="12.2216%" y="479.50">t..</text></g><g><title>tcp_v4_do_rcv (113 samples, 1.21%)</title><rect x="12.6214%" y="453" width="1.2056%" height="15" fill="rgb(237,137,0)" fg:x="1183" fg:w="113"/><text x="12.8297%" y="463.50"></text></g><g><title>tcp_rcv_state_process (87 samples, 0.93%)</title><rect x="12.8988%" y="437" width="0.9282%" height="15" fill="rgb(237,137,0)" fg:x="1209" fg:w="87"/><text x="13.1071%" y="447.50"></text></g><g><title>tcp_validate_incoming (8 samples, 0.09%)</title><rect x="13.7416%" y="421" width="0.0854%" height="15" fill="rgb(237,137,0)" fg:x="1288" fg:w="8"/><text x="13.9499%" y="431.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="13.7416%" y="405" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="1288" fg:w="8"/><text x="13.9499%" y="415.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="13.7416%" y="389" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="1288" fg:w="8"/><text x="13.9499%" y="399.50"></text></g><g><title>TCP_INVALID_SEQUENCE (8 samples, 0.09%)</title><rect x="13.7416%" y="373" width="0.0854%" height="15" fill="rgb(93,239,93)" fg:x="1288" fg:w="8"/><text x="13.9499%" y="383.50"></text></g><g><title>__kfree_skb (336 samples, 3.58%)</title><rect x="13.8269%" y="453" width="3.5848%" height="15" fill="rgb(223,123,0)" fg:x="1296" fg:w="336"/><text x="14.0353%" y="463.50">__kfr..</text></g><g><title>skb_release_data (336 samples, 3.58%)</title><rect x="13.8269%" y="437" width="3.5848%" height="15" fill="rgb(230,130,0)" fg:x="1296" fg:w="336"/><text x="14.0353%" y="447.50">skb_r..</text></g><g><title>kfree_skb_reason (336 samples, 3.58%)</title><rect x="13.8269%" y="421" width="3.5848%" height="15" fill="rgb(229,129,0)" fg:x="1296" fg:w="336"/><text x="14.0353%" y="431.50">kfree..</text></g><g><title>kfree_skb_reason (336 samples, 3.58%)</title><rect x="13.8269%" y="405" width="3.5848%" height="15" fill="rgb(229,129,0)" fg:x="1296" fg:w="336"/><text x="14.0353%" y="415.50">kfree..</text></g><g><title>NOT_SPECIFIED (336 samples, 3.58%)</title><rect x="13.8269%" y="389" width="3.5848%" height="15" fill="rgb(90,237,90)" fg:x="1296" fg:w="336"/><text x="14.0353%" y="399.50">NOT_S..</text></g><g><title>__release_sock (1 samples, 0.01%)</title><rect x="17.4117%" y="453" width="0.0107%" height="15" fill="rgb(228,128,0)" fg:x="1632" fg:w="1"/><text x="17.6200%" y="463.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="17.4117%" y="437" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1632" fg:w="1"/><text x="17.6200%" y="447.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="17.4117%" y="421" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1632" fg:w="1"/><text x="17.6200%" y="431.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="17.4117%" y="405" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1632" fg:w="1"/><text x="17.6200%" y="415.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="17.4117%" y="389" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1632" fg:w="1"/><text x="17.6200%" y="399.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="17.4117%" y="373" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1632" fg:w="1"/><text x="17.6200%" y="383.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="17.4117%" y="357" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="1632" fg:w="1"/><text x="17.6200%" y="367.50"></text></g><g><title>__napi_poll (104 samples, 1.11%)</title><rect x="17.4224%" y="309" width="1.1096%" height="15" fill="rgb(231,131,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="319.50"></text></g><g><title>process_backlog (104 samples, 1.11%)</title><rect x="17.4224%" y="293" width="1.1096%" height="15" fill="rgb(242,142,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="303.50"></text></g><g><title>__netif_receive_skb_one_core (104 samples, 1.11%)</title><rect x="17.4224%" y="277" width="1.1096%" height="15" fill="rgb(231,131,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="287.50"></text></g><g><title>ip_local_deliver_finish (104 samples, 1.11%)</title><rect x="17.4224%" y="261" width="1.1096%" height="15" fill="rgb(230,130,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="271.50"></text></g><g><title>ip_protocol_deliver_rcu (104 samples, 1.11%)</title><rect x="17.4224%" y="245" width="1.1096%" height="15" fill="rgb(230,130,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="255.50"></text></g><g><title>tcp_v4_rcv (104 samples, 1.11%)</title><rect x="17.4224%" y="229" width="1.1096%" height="15" fill="rgb(237,137,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="239.50"></text></g><g><title>tcp_v4_do_rcv (104 samples, 1.11%)</title><rect x="17.4224%" y="213" width="1.1096%" height="15" fill="rgb(237,137,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="223.50"></text></g><g><title>tcp_rcv_state_process (104 samples, 1.11%)</title><rect x="17.4224%" y="197" width="1.1096%" height="15" fill="rgb(237,137,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="207.50"></text></g><g><title>tcp_data_queue (104 samples, 1.11%)</title><rect x="17.4224%" y="181" width="1.1096%" height="15" fill="rgb(237,137,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="191.50"></text></g><g><title>tcp_fin (104 samples, 1.11%)</title><rect x="17.4224%" y="165" width="1.1096%" height="15" fill="rgb(237,137,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="175.50"></text></g><g><title>inet_csk_destroy_sock (104 samples, 1.11%)</title><rect x="17.4224%" y="149" width="1.1096%" height="15" fill="rgb(239,139,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="159.50"></text></g><g><title>sk_stream_kill_queues (104 samples, 1.11%)</title><rect x="17.4224%" y="133" width="1.1096%" height="15" fill="rgb(222,122,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="143.50"></text></g><g><title>kfree_skb_reason (104 samples, 1.11%)</title><rect x="17.4224%" y="117" width="1.1096%" height="15" fill="rgb(229,129,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="127.50"></text></g><g><title>kfree_skb_reason (104 samples, 1.11%)</title><rect x="17.4224%" y="101" width="1.1096%" height="15" fill="rgb(229,129,0)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="111.50"></text></g><g><title>NOT_SPECIFIED (104 samples, 1.11%)</title><rect x="17.4224%" y="85" width="1.1096%" height="15" fill="rgb(90,237,90)" fg:x="1633" fg:w="104"/><text x="17.6307%" y="95.50"></text></g><g><title>ip_finish_output2 (106 samples, 1.13%)</title><rect x="17.4224%" y="389" width="1.1309%" height="15" fill="rgb(230,130,0)" fg:x="1633" fg:w="106"/><text x="17.6307%" y="399.50"></text></g><g><title>__local_bh_enable_ip (106 samples, 1.13%)</title><rect x="17.4224%" y="373" width="1.1309%" height="15" fill="rgb(233,133,0)" fg:x="1633" fg:w="106"/><text x="17.6307%" y="383.50"></text></g><g><title>do_softirq (106 samples, 1.13%)</title><rect x="17.4224%" y="357" width="1.1309%" height="15" fill="rgb(243,143,0)" fg:x="1633" fg:w="106"/><text x="17.6307%" y="367.50"></text></g><g><title>__do_softirq (106 samples, 1.13%)</title><rect x="17.4224%" y="341" width="1.1309%" height="15" fill="rgb(230,130,0)" fg:x="1633" fg:w="106"/><text x="17.6307%" y="351.50"></text></g><g><title>net_rx_action (106 samples, 1.13%)</title><rect x="17.4224%" y="325" width="1.1309%" height="15" fill="rgb(244,144,0)" fg:x="1633" fg:w="106"/><text x="17.6307%" y="335.50"></text></g><g><title>napi_consume_skb (2 samples, 0.02%)</title><rect x="18.5320%" y="309" width="0.0213%" height="15" fill="rgb(238,138,0)" fg:x="1737" fg:w="2"/><text x="18.7403%" y="319.50"></text></g><g><title>skb_release_data (2 samples, 0.02%)</title><rect x="18.5320%" y="293" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="1737" fg:w="2"/><text x="18.7403%" y="303.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="18.5320%" y="277" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="1737" fg:w="2"/><text x="18.7403%" y="287.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="18.5320%" y="261" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="1737" fg:w="2"/><text x="18.7403%" y="271.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="18.5320%" y="245" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="1737" fg:w="2"/><text x="18.7403%" y="255.50"></text></g><g><title>__ip_queue_xmit (107 samples, 1.14%)</title><rect x="17.4224%" y="405" width="1.1416%" height="15" fill="rgb(225,125,0)" fg:x="1633" fg:w="107"/><text x="17.6307%" y="415.50"></text></g><g><title>ip_local_out (1 samples, 0.01%)</title><rect x="18.5533%" y="389" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="399.50"></text></g><g><title>__ip_local_out (1 samples, 0.01%)</title><rect x="18.5533%" y="373" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="383.50"></text></g><g><title>nf_hook_slow (1 samples, 0.01%)</title><rect x="18.5533%" y="357" width="0.0107%" height="15" fill="rgb(240,140,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="367.50"></text></g><g><title>ipt_do_table (1 samples, 0.01%)</title><rect x="18.5533%" y="341" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="351.50"></text></g><g><title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="18.5533%" y="325" width="0.0107%" height="15" fill="rgb(233,133,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="335.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="18.5533%" y="309" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="319.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="18.5533%" y="293" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="303.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="18.5533%" y="277" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="287.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="18.5533%" y="261" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="271.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="18.5533%" y="245" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="255.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="18.5533%" y="229" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="239.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="18.5533%" y="213" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="223.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="18.5533%" y="197" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="1739" fg:w="1"/><text x="18.7616%" y="207.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="18.5640%" y="277" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="287.50"></text></g><g><title>process_backlog (1 samples, 0.01%)</title><rect x="18.5640%" y="261" width="0.0107%" height="15" fill="rgb(242,142,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="271.50"></text></g><g><title>__netif_receive_skb_one_core (1 samples, 0.01%)</title><rect x="18.5640%" y="245" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="255.50"></text></g><g><title>ip6_input_finish (1 samples, 0.01%)</title><rect x="18.5640%" y="229" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="239.50"></text></g><g><title>ip6_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="18.5640%" y="213" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="223.50"></text></g><g><title>tcp_v6_rcv (1 samples, 0.01%)</title><rect x="18.5640%" y="197" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="207.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="18.5640%" y="181" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="191.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="18.5640%" y="165" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="175.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="18.5640%" y="149" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="159.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="18.5640%" y="133" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="143.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="18.5640%" y="117" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="127.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="18.5640%" y="101" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="111.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="18.5640%" y="85" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="95.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="18.5640%" y="69" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="79.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="18.5640%" y="53" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="1740" fg:w="1"/><text x="18.7723%" y="63.50"></text></g><g><title>__tcp_push_pending_frames (109 samples, 1.16%)</title><rect x="17.4224%" y="453" width="1.1629%" height="15" fill="rgb(226,126,0)" fg:x="1633" fg:w="109"/><text x="17.6307%" y="463.50"></text></g><g><title>tcp_write_xmit (109 samples, 1.16%)</title><rect x="17.4224%" y="437" width="1.1629%" height="15" fill="rgb(237,137,0)" fg:x="1633" fg:w="109"/><text x="17.6307%" y="447.50"></text></g><g><title>__tcp_transmit_skb (109 samples, 1.16%)</title><rect x="17.4224%" y="421" width="1.1629%" height="15" fill="rgb(226,126,0)" fg:x="1633" fg:w="109"/><text x="17.6307%" y="431.50"></text></g><g><title>inet6_csk_xmit (2 samples, 0.02%)</title><rect x="18.5640%" y="405" width="0.0213%" height="15" fill="rgb(239,139,0)" fg:x="1740" fg:w="2"/><text x="18.7723%" y="415.50"></text></g><g><title>ip6_xmit (2 samples, 0.02%)</title><rect x="18.5640%" y="389" width="0.0213%" height="15" fill="rgb(235,135,0)" fg:x="1740" fg:w="2"/><text x="18.7723%" y="399.50"></text></g><g><title>ip6_finish_output (2 samples, 0.02%)</title><rect x="18.5640%" y="373" width="0.0213%" height="15" fill="rgb(235,135,0)" fg:x="1740" fg:w="2"/><text x="18.7723%" y="383.50"></text></g><g><title>ip6_finish_output2 (2 samples, 0.02%)</title><rect x="18.5640%" y="357" width="0.0213%" height="15" fill="rgb(235,135,0)" fg:x="1740" fg:w="2"/><text x="18.7723%" y="367.50"></text></g><g><title>__local_bh_enable_ip (2 samples, 0.02%)</title><rect x="18.5640%" y="341" width="0.0213%" height="15" fill="rgb(233,133,0)" fg:x="1740" fg:w="2"/><text x="18.7723%" y="351.50"></text></g><g><title>do_softirq (2 samples, 0.02%)</title><rect x="18.5640%" y="325" width="0.0213%" height="15" fill="rgb(243,143,0)" fg:x="1740" fg:w="2"/><text x="18.7723%" y="335.50"></text></g><g><title>__do_softirq (2 samples, 0.02%)</title><rect x="18.5640%" y="309" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="1740" fg:w="2"/><text x="18.7723%" y="319.50"></text></g><g><title>net_rx_action (2 samples, 0.02%)</title><rect x="18.5640%" y="293" width="0.0213%" height="15" fill="rgb(244,144,0)" fg:x="1740" fg:w="2"/><text x="18.7723%" y="303.50"></text></g><g><title>napi_consume_skb (1 samples, 0.01%)</title><rect x="18.5746%" y="277" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="1741" fg:w="1"/><text x="18.7830%" y="287.50"></text></g><g><title>skb_release_data (1 samples, 0.01%)</title><rect x="18.5746%" y="261" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="1741" fg:w="1"/><text x="18.7830%" y="271.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="18.5746%" y="245" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1741" fg:w="1"/><text x="18.7830%" y="255.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="18.5746%" y="229" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="1741" fg:w="1"/><text x="18.7830%" y="239.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="18.5746%" y="213" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="1741" fg:w="1"/><text x="18.7830%" y="223.50"></text></g><g><title>inet_release (448 samples, 4.78%)</title><rect x="13.8269%" y="501" width="4.7797%" height="15" fill="rgb(239,139,0)" fg:x="1296" fg:w="448"/><text x="14.0353%" y="511.50">inet_re..</text></g><g><title>tcp_close (448 samples, 4.78%)</title><rect x="13.8269%" y="485" width="4.7797%" height="15" fill="rgb(237,137,0)" fg:x="1296" fg:w="448"/><text x="14.0353%" y="495.50">tcp_clo..</text></g><g><title>__tcp_close (448 samples, 4.78%)</title><rect x="13.8269%" y="469" width="4.7797%" height="15" fill="rgb(226,126,0)" fg:x="1296" fg:w="448"/><text x="14.0353%" y="479.50">__tcp_c..</text></g><g><title>inet_csk_destroy_sock (2 samples, 0.02%)</title><rect x="18.5853%" y="453" width="0.0213%" height="15" fill="rgb(239,139,0)" fg:x="1742" fg:w="2"/><text x="18.7936%" y="463.50"></text></g><g><title>tcp_v4_destroy_sock (2 samples, 0.02%)</title><rect x="18.5853%" y="437" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="1742" fg:w="2"/><text x="18.7936%" y="447.50"></text></g><g><title>skb_rbtree_purge (2 samples, 0.02%)</title><rect x="18.5853%" y="421" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="1742" fg:w="2"/><text x="18.7936%" y="431.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="18.5853%" y="405" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="1742" fg:w="2"/><text x="18.7936%" y="415.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="18.5853%" y="389" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="1742" fg:w="2"/><text x="18.7936%" y="399.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="18.5853%" y="373" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="1742" fg:w="2"/><text x="18.7936%" y="383.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,191 samples, 23.38%)</title><rect x="0.0000%" y="629" width="23.3757%" height="15" fill="rgb(245,145,0)" fg:x="0" fg:w="2191"/><text x="0.2083%" y="639.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>do_syscall_64 (2,191 samples, 23.38%)</title><rect x="0.0000%" y="613" width="23.3757%" height="15" fill="rgb(243,143,0)" fg:x="0" fg:w="2191"/><text x="0.2083%" y="623.50">do_syscall_64</text></g><g><title>syscall_exit_to_user_mode (895 samples, 9.55%)</title><rect x="13.8269%" y="597" width="9.5487%" height="15" fill="rgb(237,137,0)" fg:x="1296" fg:w="895"/><text x="14.0353%" y="607.50">syscall_exit_to_u..</text></g><g><title>exit_to_user_mode_prepare (895 samples, 9.55%)</title><rect x="13.8269%" y="581" width="9.5487%" height="15" fill="rgb(230,130,0)" fg:x="1296" fg:w="895"/><text x="14.0353%" y="591.50">exit_to_user_mode..</text></g><g><title>task_work_run (895 samples, 9.55%)</title><rect x="13.8269%" y="565" width="9.5487%" height="15" fill="rgb(222,122,0)" fg:x="1296" fg:w="895"/><text x="14.0353%" y="575.50">task_work_run</text></g><g><title>__fput (895 samples, 9.55%)</title><rect x="13.8269%" y="549" width="9.5487%" height="15" fill="rgb(228,128,0)" fg:x="1296" fg:w="895"/><text x="14.0353%" y="559.50">__fput</text></g><g><title>sock_close (895 samples, 9.55%)</title><rect x="13.8269%" y="533" width="9.5487%" height="15" fill="rgb(239,139,0)" fg:x="1296" fg:w="895"/><text x="14.0353%" y="543.50">sock_close</text></g><g><title>__sock_release (895 samples, 9.55%)</title><rect x="13.8269%" y="517" width="9.5487%" height="15" fill="rgb(227,127,0)" fg:x="1296" fg:w="895"/><text x="14.0353%" y="527.50">__sock_release</text></g><g><title>unix_release (447 samples, 4.77%)</title><rect x="18.6066%" y="501" width="4.7690%" height="15" fill="rgb(230,130,0)" fg:x="1744" fg:w="447"/><text x="18.8150%" y="511.50">unix_re..</text></g><g><title>unix_release_sock (447 samples, 4.77%)</title><rect x="18.6066%" y="485" width="4.7690%" height="15" fill="rgb(230,130,0)" fg:x="1744" fg:w="447"/><text x="18.8150%" y="495.50">unix_re..</text></g><g><title>kfree_skb_reason (447 samples, 4.77%)</title><rect x="18.6066%" y="469" width="4.7690%" height="15" fill="rgb(229,129,0)" fg:x="1744" fg:w="447"/><text x="18.8150%" y="479.50">kfree_s..</text></g><g><title>kfree_skb_reason (447 samples, 4.77%)</title><rect x="18.6066%" y="453" width="4.7690%" height="15" fill="rgb(229,129,0)" fg:x="1744" fg:w="447"/><text x="18.8150%" y="463.50">kfree_s..</text></g><g><title>NOT_SPECIFIED (447 samples, 4.77%)</title><rect x="18.6066%" y="437" width="4.7690%" height="15" fill="rgb(90,237,90)" fg:x="1744" fg:w="447"/><text x="18.8150%" y="447.50">NOT_SPE..</text></g><g><title>icmp_rcv (1 samples, 0.01%)</title><rect x="23.3757%" y="357" width="0.0107%" height="15" fill="rgb(242,142,0)" fg:x="2191" fg:w="1"/><text x="23.5840%" y="367.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="23.3757%" y="341" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2191" fg:w="1"/><text x="23.5840%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="23.3757%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2191" fg:w="1"/><text x="23.5840%" y="335.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="23.3757%" y="309" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="2191" fg:w="1"/><text x="23.5840%" y="319.50"></text></g><g><title>raw_local_deliver (2 samples, 0.02%)</title><rect x="23.3863%" y="357" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="2192" fg:w="2"/><text x="23.5947%" y="367.50"></text></g><g><title>raw_rcv (2 samples, 0.02%)</title><rect x="23.3863%" y="341" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="2192" fg:w="2"/><text x="23.5947%" y="351.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="23.3863%" y="325" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2192" fg:w="2"/><text x="23.5947%" y="335.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="23.3863%" y="309" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2192" fg:w="2"/><text x="23.5947%" y="319.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="23.3863%" y="293" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="2192" fg:w="2"/><text x="23.5947%" y="303.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="23.4077%" y="309" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="2194" fg:w="2"/><text x="23.6160%" y="319.50"></text></g><g><title>kfree_skb_reason (5 samples, 0.05%)</title><rect x="23.4077%" y="341" width="0.0533%" height="15" fill="rgb(229,129,0)" fg:x="2194" fg:w="5"/><text x="23.6160%" y="351.50"></text></g><g><title>kfree_skb_reason (5 samples, 0.05%)</title><rect x="23.4077%" y="325" width="0.0533%" height="15" fill="rgb(229,129,0)" fg:x="2194" fg:w="5"/><text x="23.6160%" y="335.50"></text></g><g><title>NO_SOCKET (3 samples, 0.03%)</title><rect x="23.4290%" y="309" width="0.0320%" height="15" fill="rgb(81,228,81)" fg:x="2196" fg:w="3"/><text x="23.6373%" y="319.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="23.4610%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2199" fg:w="1"/><text x="23.6693%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="23.4610%" y="309" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2199" fg:w="1"/><text x="23.6693%" y="319.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="23.4610%" y="293" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="2199" fg:w="1"/><text x="23.6693%" y="303.50"></text></g><g><title>TCP_OLD_DATA (3 samples, 0.03%)</title><rect x="23.4717%" y="277" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="2200" fg:w="3"/><text x="23.6800%" y="287.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="23.4717%" y="309" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="2200" fg:w="4"/><text x="23.6800%" y="319.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="23.4717%" y="293" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="2200" fg:w="4"/><text x="23.6800%" y="303.50"></text></g><g><title>TCP_ZEROWINDOW (1 samples, 0.01%)</title><rect x="23.5037%" y="277" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="2203" fg:w="1"/><text x="23.7120%" y="287.50"></text></g><g><title>tcp_rcv_established (9 samples, 0.10%)</title><rect x="23.4717%" y="325" width="0.0960%" height="15" fill="rgb(237,137,0)" fg:x="2200" fg:w="9"/><text x="23.6800%" y="335.50"></text></g><g><title>tcp_validate_incoming (5 samples, 0.05%)</title><rect x="23.5143%" y="309" width="0.0533%" height="15" fill="rgb(237,137,0)" fg:x="2204" fg:w="5"/><text x="23.7227%" y="319.50"></text></g><g><title>kfree_skb_reason (5 samples, 0.05%)</title><rect x="23.5143%" y="293" width="0.0533%" height="15" fill="rgb(229,129,0)" fg:x="2204" fg:w="5"/><text x="23.7227%" y="303.50"></text></g><g><title>kfree_skb_reason (5 samples, 0.05%)</title><rect x="23.5143%" y="277" width="0.0533%" height="15" fill="rgb(229,129,0)" fg:x="2204" fg:w="5"/><text x="23.7227%" y="287.50"></text></g><g><title>TCP_INVALID_SEQUENCE (5 samples, 0.05%)</title><rect x="23.5143%" y="261" width="0.0533%" height="15" fill="rgb(93,239,93)" fg:x="2204" fg:w="5"/><text x="23.7227%" y="271.50"></text></g><g><title>ip_list_rcv (22 samples, 0.23%)</title><rect x="23.3757%" y="437" width="0.2347%" height="15" fill="rgb(230,130,0)" fg:x="2191" fg:w="22"/><text x="23.5840%" y="447.50"></text></g><g><title>ip_sublist_rcv (22 samples, 0.23%)</title><rect x="23.3757%" y="421" width="0.2347%" height="15" fill="rgb(230,130,0)" fg:x="2191" fg:w="22"/><text x="23.5840%" y="431.50"></text></g><g><title>ip_sublist_rcv_finish (22 samples, 0.23%)</title><rect x="23.3757%" y="405" width="0.2347%" height="15" fill="rgb(230,130,0)" fg:x="2191" fg:w="22"/><text x="23.5840%" y="415.50"></text></g><g><title>ip_local_deliver_finish (22 samples, 0.23%)</title><rect x="23.3757%" y="389" width="0.2347%" height="15" fill="rgb(230,130,0)" fg:x="2191" fg:w="22"/><text x="23.5840%" y="399.50"></text></g><g><title>ip_protocol_deliver_rcu (22 samples, 0.23%)</title><rect x="23.3757%" y="373" width="0.2347%" height="15" fill="rgb(230,130,0)" fg:x="2191" fg:w="22"/><text x="23.5840%" y="383.50"></text></g><g><title>tcp_v4_rcv (19 samples, 0.20%)</title><rect x="23.4077%" y="357" width="0.2027%" height="15" fill="rgb(237,137,0)" fg:x="2194" fg:w="19"/><text x="23.6160%" y="367.50"></text></g><g><title>tcp_v4_do_rcv (14 samples, 0.15%)</title><rect x="23.4610%" y="341" width="0.1494%" height="15" fill="rgb(237,137,0)" fg:x="2199" fg:w="14"/><text x="23.6693%" y="351.50"></text></g><g><title>tcp_rcv_state_process (4 samples, 0.04%)</title><rect x="23.5677%" y="325" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="2209" fg:w="4"/><text x="23.7760%" y="335.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="23.5677%" y="309" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="2209" fg:w="4"/><text x="23.7760%" y="319.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="23.5677%" y="293" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="2209" fg:w="4"/><text x="23.7760%" y="303.50"></text></g><g><title>TCP_RESET (4 samples, 0.04%)</title><rect x="23.5677%" y="277" width="0.0427%" height="15" fill="rgb(93,239,93)" fg:x="2209" fg:w="4"/><text x="23.7760%" y="287.50"></text></g><g><title>dev_gro_receive (25 samples, 0.27%)</title><rect x="23.3757%" y="501" width="0.2667%" height="15" fill="rgb(243,143,0)" fg:x="2191" fg:w="25"/><text x="23.5840%" y="511.50"></text></g><g><title>napi_gro_complete.constprop.0 (25 samples, 0.27%)</title><rect x="23.3757%" y="485" width="0.2667%" height="15" fill="rgb(238,138,0)" fg:x="2191" fg:w="25"/><text x="23.5840%" y="495.50"></text></g><g><title>netif_receive_skb_list_internal (25 samples, 0.27%)</title><rect x="23.3757%" y="469" width="0.2667%" height="15" fill="rgb(244,144,0)" fg:x="2191" fg:w="25"/><text x="23.5840%" y="479.50"></text></g><g><title>__netif_receive_skb_list_core (25 samples, 0.27%)</title><rect x="23.3757%" y="453" width="0.2667%" height="15" fill="rgb(231,131,0)" fg:x="2191" fg:w="25"/><text x="23.5840%" y="463.50"></text></g><g><title>ipv6_list_rcv (3 samples, 0.03%)</title><rect x="23.6104%" y="437" width="0.0320%" height="15" fill="rgb(231,131,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="447.50"></text></g><g><title>ip6_sublist_rcv (3 samples, 0.03%)</title><rect x="23.6104%" y="421" width="0.0320%" height="15" fill="rgb(235,135,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="431.50"></text></g><g><title>ip6_sublist_rcv_finish (3 samples, 0.03%)</title><rect x="23.6104%" y="405" width="0.0320%" height="15" fill="rgb(235,135,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="415.50"></text></g><g><title>ip6_input_finish (3 samples, 0.03%)</title><rect x="23.6104%" y="389" width="0.0320%" height="15" fill="rgb(235,135,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="399.50"></text></g><g><title>ip6_protocol_deliver_rcu (3 samples, 0.03%)</title><rect x="23.6104%" y="373" width="0.0320%" height="15" fill="rgb(235,135,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="383.50"></text></g><g><title>tcp_v6_rcv (3 samples, 0.03%)</title><rect x="23.6104%" y="357" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="367.50"></text></g><g><title>tcp_v6_do_rcv (3 samples, 0.03%)</title><rect x="23.6104%" y="341" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="351.50"></text></g><g><title>tcp_rcv_established (3 samples, 0.03%)</title><rect x="23.6104%" y="325" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="335.50"></text></g><g><title>tcp_validate_incoming (3 samples, 0.03%)</title><rect x="23.6104%" y="309" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="319.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="23.6104%" y="293" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="303.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="23.6104%" y="277" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="287.50"></text></g><g><title>TCP_INVALID_SEQUENCE (3 samples, 0.03%)</title><rect x="23.6104%" y="261" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="2213" fg:w="3"/><text x="23.8187%" y="271.50"></text></g><g><title>ip_local_deliver (32 samples, 0.34%)</title><rect x="23.6424%" y="421" width="0.3414%" height="15" fill="rgb(230,130,0)" fg:x="2216" fg:w="32"/><text x="23.8507%" y="431.50"></text></g><g><title>nf_hook_slow (32 samples, 0.34%)</title><rect x="23.6424%" y="405" width="0.3414%" height="15" fill="rgb(240,140,0)" fg:x="2216" fg:w="32"/><text x="23.8507%" y="415.50"></text></g><g><title>kfree_skb_reason (32 samples, 0.34%)</title><rect x="23.6424%" y="389" width="0.3414%" height="15" fill="rgb(229,129,0)" fg:x="2216" fg:w="32"/><text x="23.8507%" y="399.50"></text></g><g><title>kfree_skb_reason (32 samples, 0.34%)</title><rect x="23.6424%" y="373" width="0.3414%" height="15" fill="rgb(229,129,0)" fg:x="2216" fg:w="32"/><text x="23.8507%" y="383.50"></text></g><g><title>NETFILTER_DROP (32 samples, 0.34%)</title><rect x="23.6424%" y="357" width="0.3414%" height="15" fill="rgb(89,236,89)" fg:x="2216" fg:w="32"/><text x="23.8507%" y="367.50"></text></g><g><title>raw_local_deliver (2 samples, 0.02%)</title><rect x="23.9838%" y="389" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="2248" fg:w="2"/><text x="24.1921%" y="399.50"></text></g><g><title>raw_rcv (2 samples, 0.02%)</title><rect x="23.9838%" y="373" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="2248" fg:w="2"/><text x="24.1921%" y="383.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="23.9838%" y="357" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2248" fg:w="2"/><text x="24.1921%" y="367.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="23.9838%" y="341" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2248" fg:w="2"/><text x="24.1921%" y="351.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="23.9838%" y="325" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="2248" fg:w="2"/><text x="24.1921%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.0051%" y="357" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2250" fg:w="1"/><text x="24.2135%" y="367.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.0051%" y="341" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2250" fg:w="1"/><text x="24.2135%" y="351.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="24.0051%" y="325" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="2250" fg:w="1"/><text x="24.2135%" y="335.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="24.0158%" y="341" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="2251" fg:w="4"/><text x="24.2241%" y="351.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="24.0158%" y="325" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="2251" fg:w="4"/><text x="24.2241%" y="335.50"></text></g><g><title>TCP_OLD_DATA (4 samples, 0.04%)</title><rect x="24.0158%" y="309" width="0.0427%" height="15" fill="rgb(93,239,93)" fg:x="2251" fg:w="4"/><text x="24.2241%" y="319.50"></text></g><g><title>tcp_rcv_established (5 samples, 0.05%)</title><rect x="24.0158%" y="357" width="0.0533%" height="15" fill="rgb(237,137,0)" fg:x="2251" fg:w="5"/><text x="24.2241%" y="367.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="24.0585%" y="341" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="2255" fg:w="1"/><text x="24.2668%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.0585%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2255" fg:w="1"/><text x="24.2668%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.0585%" y="309" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2255" fg:w="1"/><text x="24.2668%" y="319.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="24.0585%" y="293" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="2255" fg:w="1"/><text x="24.2668%" y="303.50"></text></g><g><title>ip_list_rcv (48 samples, 0.51%)</title><rect x="23.6424%" y="469" width="0.5121%" height="15" fill="rgb(230,130,0)" fg:x="2216" fg:w="48"/><text x="23.8507%" y="479.50"></text></g><g><title>ip_sublist_rcv (48 samples, 0.51%)</title><rect x="23.6424%" y="453" width="0.5121%" height="15" fill="rgb(230,130,0)" fg:x="2216" fg:w="48"/><text x="23.8507%" y="463.50"></text></g><g><title>ip_sublist_rcv_finish (48 samples, 0.51%)</title><rect x="23.6424%" y="437" width="0.5121%" height="15" fill="rgb(230,130,0)" fg:x="2216" fg:w="48"/><text x="23.8507%" y="447.50"></text></g><g><title>ip_local_deliver_finish (16 samples, 0.17%)</title><rect x="23.9838%" y="421" width="0.1707%" height="15" fill="rgb(230,130,0)" fg:x="2248" fg:w="16"/><text x="24.1921%" y="431.50"></text></g><g><title>ip_protocol_deliver_rcu (16 samples, 0.17%)</title><rect x="23.9838%" y="405" width="0.1707%" height="15" fill="rgb(230,130,0)" fg:x="2248" fg:w="16"/><text x="24.1921%" y="415.50"></text></g><g><title>tcp_v4_rcv (14 samples, 0.15%)</title><rect x="24.0051%" y="389" width="0.1494%" height="15" fill="rgb(237,137,0)" fg:x="2250" fg:w="14"/><text x="24.2135%" y="399.50"></text></g><g><title>tcp_v4_do_rcv (14 samples, 0.15%)</title><rect x="24.0051%" y="373" width="0.1494%" height="15" fill="rgb(237,137,0)" fg:x="2250" fg:w="14"/><text x="24.2135%" y="383.50"></text></g><g><title>tcp_rcv_state_process (8 samples, 0.09%)</title><rect x="24.0691%" y="357" width="0.0854%" height="15" fill="rgb(237,137,0)" fg:x="2256" fg:w="8"/><text x="24.2775%" y="367.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="24.0691%" y="341" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="2256" fg:w="8"/><text x="24.2775%" y="351.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="24.0691%" y="325" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="2256" fg:w="8"/><text x="24.2775%" y="335.50"></text></g><g><title>TCP_RESET (8 samples, 0.09%)</title><rect x="24.0691%" y="309" width="0.0854%" height="15" fill="rgb(93,239,93)" fg:x="2256" fg:w="8"/><text x="24.2775%" y="319.50"></text></g><g><title>icmpv6_rcv (1 samples, 0.01%)</title><rect x="24.1545%" y="389" width="0.0107%" height="15" fill="rgb(242,142,0)" fg:x="2264" fg:w="1"/><text x="24.3628%" y="399.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.1545%" y="373" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2264" fg:w="1"/><text x="24.3628%" y="383.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.1545%" y="357" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2264" fg:w="1"/><text x="24.3628%" y="367.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="24.1545%" y="341" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="2264" fg:w="1"/><text x="24.3628%" y="351.50"></text></g><g><title>raw6_local_deliver (1 samples, 0.01%)</title><rect x="24.1652%" y="389" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="2265" fg:w="1"/><text x="24.3735%" y="399.50"></text></g><g><title>rawv6_rcv (1 samples, 0.01%)</title><rect x="24.1652%" y="373" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="2265" fg:w="1"/><text x="24.3735%" y="383.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.1652%" y="357" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2265" fg:w="1"/><text x="24.3735%" y="367.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.1652%" y="341" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2265" fg:w="1"/><text x="24.3735%" y="351.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="24.1652%" y="325" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="2265" fg:w="1"/><text x="24.3735%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.1758%" y="373" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2266" fg:w="1"/><text x="24.3842%" y="383.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.1758%" y="357" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2266" fg:w="1"/><text x="24.3842%" y="367.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="24.1758%" y="341" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="2266" fg:w="1"/><text x="24.3842%" y="351.50"></text></g><g><title>mlx5e_poll_rx_cq (77 samples, 0.82%)</title><rect x="23.3757%" y="549" width="0.8215%" height="15" fill="rgb(221,121,0)" fg:x="2191" fg:w="77"/><text x="23.5840%" y="559.50"></text></g><g><title>mlx5e_handle_rx_cqe (77 samples, 0.82%)</title><rect x="23.3757%" y="533" width="0.8215%" height="15" fill="rgb(221,121,0)" fg:x="2191" fg:w="77"/><text x="23.5840%" y="543.50"></text></g><g><title>napi_gro_receive (77 samples, 0.82%)</title><rect x="23.3757%" y="517" width="0.8215%" height="15" fill="rgb(238,138,0)" fg:x="2191" fg:w="77"/><text x="23.5840%" y="527.50"></text></g><g><title>netif_receive_skb_list_internal (52 samples, 0.55%)</title><rect x="23.6424%" y="501" width="0.5548%" height="15" fill="rgb(244,144,0)" fg:x="2216" fg:w="52"/><text x="23.8507%" y="511.50"></text></g><g><title>__netif_receive_skb_list_core (52 samples, 0.55%)</title><rect x="23.6424%" y="485" width="0.5548%" height="15" fill="rgb(231,131,0)" fg:x="2216" fg:w="52"/><text x="23.8507%" y="495.50"></text></g><g><title>ipv6_list_rcv (4 samples, 0.04%)</title><rect x="24.1545%" y="469" width="0.0427%" height="15" fill="rgb(231,131,0)" fg:x="2264" fg:w="4"/><text x="24.3628%" y="479.50"></text></g><g><title>ip6_sublist_rcv (4 samples, 0.04%)</title><rect x="24.1545%" y="453" width="0.0427%" height="15" fill="rgb(235,135,0)" fg:x="2264" fg:w="4"/><text x="24.3628%" y="463.50"></text></g><g><title>ip6_sublist_rcv_finish (4 samples, 0.04%)</title><rect x="24.1545%" y="437" width="0.0427%" height="15" fill="rgb(235,135,0)" fg:x="2264" fg:w="4"/><text x="24.3628%" y="447.50"></text></g><g><title>ip6_input_finish (4 samples, 0.04%)</title><rect x="24.1545%" y="421" width="0.0427%" height="15" fill="rgb(235,135,0)" fg:x="2264" fg:w="4"/><text x="24.3628%" y="431.50"></text></g><g><title>ip6_protocol_deliver_rcu (4 samples, 0.04%)</title><rect x="24.1545%" y="405" width="0.0427%" height="15" fill="rgb(235,135,0)" fg:x="2264" fg:w="4"/><text x="24.3628%" y="415.50"></text></g><g><title>tcp_v6_rcv (2 samples, 0.02%)</title><rect x="24.1758%" y="389" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="2266" fg:w="2"/><text x="24.3842%" y="399.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="24.1865%" y="373" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="2267" fg:w="1"/><text x="24.3948%" y="383.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.1865%" y="357" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2267" fg:w="1"/><text x="24.3948%" y="367.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.1865%" y="341" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2267" fg:w="1"/><text x="24.3948%" y="351.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="24.1865%" y="325" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="2267" fg:w="1"/><text x="24.3948%" y="335.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="24.1972%" y="357" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2268" fg:w="2"/><text x="24.4055%" y="367.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="24.1972%" y="341" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2268" fg:w="2"/><text x="24.4055%" y="351.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="24.1972%" y="325" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="2268" fg:w="2"/><text x="24.4055%" y="335.50"></text></g><g><title>TCP_OLD_DATA (2 samples, 0.02%)</title><rect x="24.2185%" y="309" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="2270" fg:w="2"/><text x="24.4268%" y="319.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="24.2185%" y="341" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="2270" fg:w="3"/><text x="24.4268%" y="351.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="24.2185%" y="325" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="2270" fg:w="3"/><text x="24.4268%" y="335.50"></text></g><g><title>TCP_ZEROWINDOW (1 samples, 0.01%)</title><rect x="24.2398%" y="309" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="2272" fg:w="1"/><text x="24.4482%" y="319.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="24.2505%" y="309" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="2273" fg:w="8"/><text x="24.4588%" y="319.50"></text></g><g><title>TCP_INVALID_SEQUENCE (8 samples, 0.09%)</title><rect x="24.2505%" y="293" width="0.0854%" height="15" fill="rgb(93,239,93)" fg:x="2273" fg:w="8"/><text x="24.4588%" y="303.50"></text></g><g><title>ip_list_rcv (15 samples, 0.16%)</title><rect x="24.1972%" y="469" width="0.1600%" height="15" fill="rgb(230,130,0)" fg:x="2268" fg:w="15"/><text x="24.4055%" y="479.50"></text></g><g><title>ip_sublist_rcv (15 samples, 0.16%)</title><rect x="24.1972%" y="453" width="0.1600%" height="15" fill="rgb(230,130,0)" fg:x="2268" fg:w="15"/><text x="24.4055%" y="463.50"></text></g><g><title>ip_sublist_rcv_finish (15 samples, 0.16%)</title><rect x="24.1972%" y="437" width="0.1600%" height="15" fill="rgb(230,130,0)" fg:x="2268" fg:w="15"/><text x="24.4055%" y="447.50"></text></g><g><title>ip_local_deliver_finish (15 samples, 0.16%)</title><rect x="24.1972%" y="421" width="0.1600%" height="15" fill="rgb(230,130,0)" fg:x="2268" fg:w="15"/><text x="24.4055%" y="431.50"></text></g><g><title>ip_protocol_deliver_rcu (15 samples, 0.16%)</title><rect x="24.1972%" y="405" width="0.1600%" height="15" fill="rgb(230,130,0)" fg:x="2268" fg:w="15"/><text x="24.4055%" y="415.50"></text></g><g><title>tcp_v4_rcv (15 samples, 0.16%)</title><rect x="24.1972%" y="389" width="0.1600%" height="15" fill="rgb(237,137,0)" fg:x="2268" fg:w="15"/><text x="24.4055%" y="399.50"></text></g><g><title>tcp_v4_do_rcv (15 samples, 0.16%)</title><rect x="24.1972%" y="373" width="0.1600%" height="15" fill="rgb(237,137,0)" fg:x="2268" fg:w="15"/><text x="24.4055%" y="383.50"></text></g><g><title>tcp_rcv_established (13 samples, 0.14%)</title><rect x="24.2185%" y="357" width="0.1387%" height="15" fill="rgb(237,137,0)" fg:x="2270" fg:w="13"/><text x="24.4268%" y="367.50"></text></g><g><title>tcp_validate_incoming (10 samples, 0.11%)</title><rect x="24.2505%" y="341" width="0.1067%" height="15" fill="rgb(237,137,0)" fg:x="2273" fg:w="10"/><text x="24.4588%" y="351.50"></text></g><g><title>kfree_skb_reason (10 samples, 0.11%)</title><rect x="24.2505%" y="325" width="0.1067%" height="15" fill="rgb(229,129,0)" fg:x="2273" fg:w="10"/><text x="24.4588%" y="335.50"></text></g><g><title>skb_release_data (2 samples, 0.02%)</title><rect x="24.3359%" y="309" width="0.0213%" height="15" fill="rgb(230,130,0)" fg:x="2281" fg:w="2"/><text x="24.5442%" y="319.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="24.3359%" y="293" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2281" fg:w="2"/><text x="24.5442%" y="303.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="24.3359%" y="277" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="2281" fg:w="2"/><text x="24.5442%" y="287.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="24.3359%" y="261" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="2281" fg:w="2"/><text x="24.5442%" y="271.50"></text></g><g><title>napi_gro_flush (16 samples, 0.17%)</title><rect x="24.1972%" y="533" width="0.1707%" height="15" fill="rgb(238,138,0)" fg:x="2268" fg:w="16"/><text x="24.4055%" y="543.50"></text></g><g><title>napi_gro_complete.constprop.0 (16 samples, 0.17%)</title><rect x="24.1972%" y="517" width="0.1707%" height="15" fill="rgb(238,138,0)" fg:x="2268" fg:w="16"/><text x="24.4055%" y="527.50"></text></g><g><title>netif_receive_skb_list_internal (16 samples, 0.17%)</title><rect x="24.1972%" y="501" width="0.1707%" height="15" fill="rgb(244,144,0)" fg:x="2268" fg:w="16"/><text x="24.4055%" y="511.50"></text></g><g><title>__netif_receive_skb_list_core (16 samples, 0.17%)</title><rect x="24.1972%" y="485" width="0.1707%" height="15" fill="rgb(231,131,0)" fg:x="2268" fg:w="16"/><text x="24.4055%" y="495.50"></text></g><g><title>ipv6_list_rcv (1 samples, 0.01%)</title><rect x="24.3572%" y="469" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="479.50"></text></g><g><title>ip6_sublist_rcv (1 samples, 0.01%)</title><rect x="24.3572%" y="453" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="463.50"></text></g><g><title>ip6_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="24.3572%" y="437" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="447.50"></text></g><g><title>ip6_input_finish (1 samples, 0.01%)</title><rect x="24.3572%" y="421" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="431.50"></text></g><g><title>ip6_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="24.3572%" y="405" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="415.50"></text></g><g><title>tcp_v6_rcv (1 samples, 0.01%)</title><rect x="24.3572%" y="389" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="399.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="24.3572%" y="373" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="383.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="24.3572%" y="357" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="367.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="24.3572%" y="341" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.3572%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="24.3572%" y="309" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="319.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="24.3572%" y="293" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="2283" fg:w="1"/><text x="24.5655%" y="303.50"></text></g><g><title>ip_local_deliver (120 samples, 1.28%)</title><rect x="24.3679%" y="453" width="1.2803%" height="15" fill="rgb(230,130,0)" fg:x="2284" fg:w="120"/><text x="24.5762%" y="463.50"></text></g><g><title>nf_hook_slow (120 samples, 1.28%)</title><rect x="24.3679%" y="437" width="1.2803%" height="15" fill="rgb(240,140,0)" fg:x="2284" fg:w="120"/><text x="24.5762%" y="447.50"></text></g><g><title>kfree_skb_reason (120 samples, 1.28%)</title><rect x="24.3679%" y="421" width="1.2803%" height="15" fill="rgb(229,129,0)" fg:x="2284" fg:w="120"/><text x="24.5762%" y="431.50"></text></g><g><title>kfree_skb_reason (120 samples, 1.28%)</title><rect x="24.3679%" y="405" width="1.2803%" height="15" fill="rgb(229,129,0)" fg:x="2284" fg:w="120"/><text x="24.5762%" y="415.50"></text></g><g><title>NETFILTER_DROP (120 samples, 1.28%)</title><rect x="24.3679%" y="389" width="1.2803%" height="15" fill="rgb(89,236,89)" fg:x="2284" fg:w="120"/><text x="24.5762%" y="399.50"></text></g><g><title>__udp4_lib_rcv (1 samples, 0.01%)</title><rect x="25.6481%" y="421" width="0.0107%" height="15" fill="rgb(225,125,0)" fg:x="2404" fg:w="1"/><text x="25.8565%" y="431.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="25.6481%" y="405" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2404" fg:w="1"/><text x="25.8565%" y="415.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="25.6481%" y="389" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="2404" fg:w="1"/><text x="25.8565%" y="399.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="25.6481%" y="373" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="2404" fg:w="1"/><text x="25.8565%" y="383.50"></text></g><g><title>ICMP_CSUM (1 samples, 0.01%)</title><rect x="25.6588%" y="373" width="0.0107%" height="15" fill="rgb(98,244,98)" fg:x="2405" fg:w="1"/><text x="25.8671%" y="383.50"></text></g><g><title>icmp_rcv (104 samples, 1.11%)</title><rect x="25.6588%" y="421" width="1.1096%" height="15" fill="rgb(242,142,0)" fg:x="2405" fg:w="104"/><text x="25.8671%" y="431.50"></text></g><g><title>kfree_skb_reason (104 samples, 1.11%)</title><rect x="25.6588%" y="405" width="1.1096%" height="15" fill="rgb(229,129,0)" fg:x="2405" fg:w="104"/><text x="25.8671%" y="415.50"></text></g><g><title>kfree_skb_reason (104 samples, 1.11%)</title><rect x="25.6588%" y="389" width="1.1096%" height="15" fill="rgb(229,129,0)" fg:x="2405" fg:w="104"/><text x="25.8671%" y="399.50"></text></g><g><title>NO_SOCKET (103 samples, 1.10%)</title><rect x="25.6695%" y="373" width="1.0989%" height="15" fill="rgb(81,228,81)" fg:x="2406" fg:w="103"/><text x="25.8778%" y="383.50"></text></g><g><title>raw_local_deliver (306 samples, 3.26%)</title><rect x="26.7684%" y="421" width="3.2647%" height="15" fill="rgb(223,123,0)" fg:x="2509" fg:w="306"/><text x="26.9767%" y="431.50">raw_..</text></g><g><title>raw_rcv (306 samples, 3.26%)</title><rect x="26.7684%" y="405" width="3.2647%" height="15" fill="rgb(223,123,0)" fg:x="2509" fg:w="306"/><text x="26.9767%" y="415.50">raw_..</text></g><g><title>kfree_skb_reason (306 samples, 3.26%)</title><rect x="26.7684%" y="389" width="3.2647%" height="15" fill="rgb(229,129,0)" fg:x="2509" fg:w="306"/><text x="26.9767%" y="399.50">kfre..</text></g><g><title>kfree_skb_reason (306 samples, 3.26%)</title><rect x="26.7684%" y="373" width="3.2647%" height="15" fill="rgb(229,129,0)" fg:x="2509" fg:w="306"/><text x="26.9767%" y="383.50">kfre..</text></g><g><title>NOT_SPECIFIED (306 samples, 3.26%)</title><rect x="26.7684%" y="357" width="3.2647%" height="15" fill="rgb(90,237,90)" fg:x="2509" fg:w="306"/><text x="26.9767%" y="367.50">NOT_..</text></g><g><title>NOT_SPECIFIED (91 samples, 0.97%)</title><rect x="30.0331%" y="373" width="0.9709%" height="15" fill="rgb(90,237,90)" fg:x="2815" fg:w="91"/><text x="30.2414%" y="383.50"></text></g><g><title>kfree_skb_reason (151 samples, 1.61%)</title><rect x="30.0331%" y="405" width="1.6110%" height="15" fill="rgb(229,129,0)" fg:x="2815" fg:w="151"/><text x="30.2414%" y="415.50">k..</text></g><g><title>kfree_skb_reason (151 samples, 1.61%)</title><rect x="30.0331%" y="389" width="1.6110%" height="15" fill="rgb(229,129,0)" fg:x="2815" fg:w="151"/><text x="30.2414%" y="399.50">k..</text></g><g><title>NO_SOCKET (60 samples, 0.64%)</title><rect x="31.0039%" y="373" width="0.6401%" height="15" fill="rgb(81,228,81)" fg:x="2906" fg:w="60"/><text x="31.2123%" y="383.50"></text></g><g><title>NOT_SPECIFIED (95 samples, 1.01%)</title><rect x="31.6441%" y="357" width="1.0135%" height="15" fill="rgb(90,237,90)" fg:x="2966" fg:w="95"/><text x="31.8524%" y="367.50"></text></g><g><title>kfree_skb_reason (96 samples, 1.02%)</title><rect x="31.6441%" y="389" width="1.0242%" height="15" fill="rgb(229,129,0)" fg:x="2966" fg:w="96"/><text x="31.8524%" y="399.50"></text></g><g><title>kfree_skb_reason (96 samples, 1.02%)</title><rect x="31.6441%" y="373" width="1.0242%" height="15" fill="rgb(229,129,0)" fg:x="2966" fg:w="96"/><text x="31.8524%" y="383.50"></text></g><g><title>TCP_TOO_OLD_ACK (1 samples, 0.01%)</title><rect x="32.6576%" y="357" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="3061" fg:w="1"/><text x="32.8660%" y="367.50"></text></g><g><title>TCP_OLD_DATA (454 samples, 4.84%)</title><rect x="32.6683%" y="341" width="4.8437%" height="15" fill="rgb(93,239,93)" fg:x="3062" fg:w="454"/><text x="32.8766%" y="351.50">TCP_OLD..</text></g><g><title>kfree_skb_reason (462 samples, 4.93%)</title><rect x="32.6683%" y="373" width="4.9291%" height="15" fill="rgb(229,129,0)" fg:x="3062" fg:w="462"/><text x="32.8766%" y="383.50">kfree_sk..</text></g><g><title>kfree_skb_reason (462 samples, 4.93%)</title><rect x="32.6683%" y="357" width="4.9291%" height="15" fill="rgb(229,129,0)" fg:x="3062" fg:w="462"/><text x="32.8766%" y="367.50">kfree_sk..</text></g><g><title>TCP_ZEROWINDOW (8 samples, 0.09%)</title><rect x="37.5120%" y="341" width="0.0854%" height="15" fill="rgb(93,239,93)" fg:x="3516" fg:w="8"/><text x="37.7203%" y="351.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="37.5974%" y="357" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="3524" fg:w="3"/><text x="37.8057%" y="367.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="37.5974%" y="341" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="3524" fg:w="3"/><text x="37.8057%" y="351.50"></text></g><g><title>TCP_OFO_DROP (3 samples, 0.03%)</title><rect x="37.5974%" y="325" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="3524" fg:w="3"/><text x="37.8057%" y="335.50"></text></g><g><title>tcp_data_queue (4 samples, 0.04%)</title><rect x="37.5974%" y="373" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="3524" fg:w="4"/><text x="37.8057%" y="383.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="37.6294%" y="357" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="3527" fg:w="1"/><text x="37.8377%" y="367.50"></text></g><g><title>skb_rbtree_purge (1 samples, 0.01%)</title><rect x="37.6294%" y="341" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="3527" fg:w="1"/><text x="37.8377%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="37.6294%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="3527" fg:w="1"/><text x="37.8377%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="37.6294%" y="309" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="3527" fg:w="1"/><text x="37.8377%" y="319.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="37.6294%" y="293" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="3527" fg:w="1"/><text x="37.8377%" y="303.50"></text></g><g><title>TCP_INVALID_SEQUENCE (447 samples, 4.77%)</title><rect x="37.6400%" y="325" width="4.7690%" height="15" fill="rgb(93,239,93)" fg:x="3528" fg:w="447"/><text x="37.8484%" y="335.50">TCP_INV..</text></g><g><title>tcp_rcv_established (958 samples, 10.22%)</title><rect x="32.6683%" y="389" width="10.2208%" height="15" fill="rgb(237,137,0)" fg:x="3062" fg:w="958"/><text x="32.8766%" y="399.50">tcp_rcv_established</text></g><g><title>tcp_validate_incoming (492 samples, 5.25%)</title><rect x="37.6400%" y="373" width="5.2491%" height="15" fill="rgb(237,137,0)" fg:x="3528" fg:w="492"/><text x="37.8484%" y="383.50">tcp_vali..</text></g><g><title>kfree_skb_reason (492 samples, 5.25%)</title><rect x="37.6400%" y="357" width="5.2491%" height="15" fill="rgb(229,129,0)" fg:x="3528" fg:w="492"/><text x="37.8484%" y="367.50">kfree_sk..</text></g><g><title>kfree_skb_reason (492 samples, 5.25%)</title><rect x="37.6400%" y="341" width="5.2491%" height="15" fill="rgb(229,129,0)" fg:x="3528" fg:w="492"/><text x="37.8484%" y="351.50">kfree_sk..</text></g><g><title>TCP_RFC7323_PAWS (45 samples, 0.48%)</title><rect x="42.4090%" y="325" width="0.4801%" height="15" fill="rgb(93,239,93)" fg:x="3975" fg:w="45"/><text x="42.6174%" y="335.50"></text></g><g><title>inet_csk_destroy_sock (90 samples, 0.96%)</title><rect x="42.8891%" y="373" width="0.9602%" height="15" fill="rgb(239,139,0)" fg:x="4020" fg:w="90"/><text x="43.0975%" y="383.50"></text></g><g><title>sk_stream_kill_queues (90 samples, 0.96%)</title><rect x="42.8891%" y="357" width="0.9602%" height="15" fill="rgb(222,122,0)" fg:x="4020" fg:w="90"/><text x="43.0975%" y="367.50"></text></g><g><title>kfree_skb_reason (90 samples, 0.96%)</title><rect x="42.8891%" y="341" width="0.9602%" height="15" fill="rgb(229,129,0)" fg:x="4020" fg:w="90"/><text x="43.0975%" y="351.50"></text></g><g><title>kfree_skb_reason (90 samples, 0.96%)</title><rect x="42.8891%" y="325" width="0.9602%" height="15" fill="rgb(229,129,0)" fg:x="4020" fg:w="90"/><text x="43.0975%" y="335.50"></text></g><g><title>NOT_SPECIFIED (90 samples, 0.96%)</title><rect x="42.8891%" y="309" width="0.9602%" height="15" fill="rgb(90,237,90)" fg:x="4020" fg:w="90"/><text x="43.0975%" y="319.50"></text></g><g><title>NOT_SPECIFIED (12 samples, 0.13%)</title><rect x="43.8494%" y="341" width="0.1280%" height="15" fill="rgb(90,237,90)" fg:x="4110" fg:w="12"/><text x="44.0577%" y="351.50"></text></g><g><title>TCP_CLOSE (34 samples, 0.36%)</title><rect x="43.9774%" y="341" width="0.3627%" height="15" fill="rgb(93,239,93)" fg:x="4122" fg:w="34"/><text x="44.1857%" y="351.50"></text></g><g><title>TCP_OLD_ACK (5 samples, 0.05%)</title><rect x="44.3401%" y="341" width="0.0533%" height="15" fill="rgb(93,239,93)" fg:x="4156" fg:w="5"/><text x="44.5485%" y="351.50"></text></g><g><title>TCP_OLD_DATA (28 samples, 0.30%)</title><rect x="44.3935%" y="341" width="0.2987%" height="15" fill="rgb(93,239,93)" fg:x="4161" fg:w="28"/><text x="44.6018%" y="351.50"></text></g><g><title>kfree_skb_reason (166 samples, 1.77%)</title><rect x="43.8494%" y="373" width="1.7710%" height="15" fill="rgb(229,129,0)" fg:x="4110" fg:w="166"/><text x="44.0577%" y="383.50">k..</text></g><g><title>kfree_skb_reason (166 samples, 1.77%)</title><rect x="43.8494%" y="357" width="1.7710%" height="15" fill="rgb(229,129,0)" fg:x="4110" fg:w="166"/><text x="44.0577%" y="367.50">k..</text></g><g><title>TCP_RESET (87 samples, 0.93%)</title><rect x="44.6922%" y="341" width="0.9282%" height="15" fill="rgb(93,239,93)" fg:x="4189" fg:w="87"/><text x="44.9005%" y="351.50"></text></g><g><title>tcp_data_queue (175 samples, 1.87%)</title><rect x="45.6204%" y="373" width="1.8671%" height="15" fill="rgb(237,137,0)" fg:x="4276" fg:w="175"/><text x="45.8287%" y="383.50">t..</text></g><g><title>tcp_fin (175 samples, 1.87%)</title><rect x="45.6204%" y="357" width="1.8671%" height="15" fill="rgb(237,137,0)" fg:x="4276" fg:w="175"/><text x="45.8287%" y="367.50">t..</text></g><g><title>inet_csk_destroy_sock (175 samples, 1.87%)</title><rect x="45.6204%" y="341" width="1.8671%" height="15" fill="rgb(239,139,0)" fg:x="4276" fg:w="175"/><text x="45.8287%" y="351.50">i..</text></g><g><title>sk_stream_kill_queues (175 samples, 1.87%)</title><rect x="45.6204%" y="325" width="1.8671%" height="15" fill="rgb(222,122,0)" fg:x="4276" fg:w="175"/><text x="45.8287%" y="335.50">s..</text></g><g><title>kfree_skb_reason (175 samples, 1.87%)</title><rect x="45.6204%" y="309" width="1.8671%" height="15" fill="rgb(229,129,0)" fg:x="4276" fg:w="175"/><text x="45.8287%" y="319.50">k..</text></g><g><title>kfree_skb_reason (175 samples, 1.87%)</title><rect x="45.6204%" y="293" width="1.8671%" height="15" fill="rgb(229,129,0)" fg:x="4276" fg:w="175"/><text x="45.8287%" y="303.50">k..</text></g><g><title>NOT_SPECIFIED (175 samples, 1.87%)</title><rect x="45.6204%" y="277" width="1.8671%" height="15" fill="rgb(90,237,90)" fg:x="4276" fg:w="175"/><text x="45.8287%" y="287.50">N..</text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="47.4875%" y="357" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="4451" fg:w="3"/><text x="47.6958%" y="367.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="47.4875%" y="341" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="4451" fg:w="3"/><text x="47.6958%" y="351.50"></text></g><g><title>TCP_INVALID_SEQUENCE (3 samples, 0.03%)</title><rect x="47.4875%" y="325" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="4451" fg:w="3"/><text x="47.6958%" y="335.50"></text></g><g><title>ip_list_rcv (2,187 samples, 23.33%)</title><rect x="24.3679%" y="501" width="23.3330%" height="15" fill="rgb(230,130,0)" fg:x="2284" fg:w="2187"/><text x="24.5762%" y="511.50">ip_list_rcv</text></g><g><title>ip_sublist_rcv (2,187 samples, 23.33%)</title><rect x="24.3679%" y="485" width="23.3330%" height="15" fill="rgb(230,130,0)" fg:x="2284" fg:w="2187"/><text x="24.5762%" y="495.50">ip_sublist_rcv</text></g><g><title>ip_sublist_rcv_finish (2,187 samples, 23.33%)</title><rect x="24.3679%" y="469" width="23.3330%" height="15" fill="rgb(230,130,0)" fg:x="2284" fg:w="2187"/><text x="24.5762%" y="479.50">ip_sublist_rcv_finish</text></g><g><title>ip_local_deliver_finish (2,067 samples, 22.05%)</title><rect x="25.6481%" y="453" width="22.0527%" height="15" fill="rgb(230,130,0)" fg:x="2404" fg:w="2067"/><text x="25.8565%" y="463.50">ip_local_deliver_finish</text></g><g><title>ip_protocol_deliver_rcu (2,067 samples, 22.05%)</title><rect x="25.6481%" y="437" width="22.0527%" height="15" fill="rgb(230,130,0)" fg:x="2404" fg:w="2067"/><text x="25.8565%" y="447.50">ip_protocol_deliver_rcu</text></g><g><title>tcp_v4_rcv (1,656 samples, 17.67%)</title><rect x="30.0331%" y="421" width="17.6678%" height="15" fill="rgb(237,137,0)" fg:x="2815" fg:w="1656"/><text x="30.2414%" y="431.50">tcp_v4_rcv</text></g><g><title>tcp_v4_do_rcv (1,505 samples, 16.06%)</title><rect x="31.6441%" y="405" width="16.0568%" height="15" fill="rgb(237,137,0)" fg:x="2966" fg:w="1505"/><text x="31.8524%" y="415.50">tcp_v4_do_rcv</text></g><g><title>tcp_rcv_state_process (451 samples, 4.81%)</title><rect x="42.8891%" y="389" width="4.8117%" height="15" fill="rgb(237,137,0)" fg:x="4020" fg:w="451"/><text x="43.0975%" y="399.50">tcp_rcv..</text></g><g><title>tcp_validate_incoming (20 samples, 0.21%)</title><rect x="47.4875%" y="373" width="0.2134%" height="15" fill="rgb(237,137,0)" fg:x="4451" fg:w="20"/><text x="47.6958%" y="383.50"></text></g><g><title>tcp_reset (17 samples, 0.18%)</title><rect x="47.5195%" y="357" width="0.1814%" height="15" fill="rgb(237,137,0)" fg:x="4454" fg:w="17"/><text x="47.7278%" y="367.50"></text></g><g><title>inet_csk_destroy_sock (17 samples, 0.18%)</title><rect x="47.5195%" y="341" width="0.1814%" height="15" fill="rgb(239,139,0)" fg:x="4454" fg:w="17"/><text x="47.7278%" y="351.50"></text></g><g><title>sk_stream_kill_queues (17 samples, 0.18%)</title><rect x="47.5195%" y="325" width="0.1814%" height="15" fill="rgb(222,122,0)" fg:x="4454" fg:w="17"/><text x="47.7278%" y="335.50"></text></g><g><title>kfree_skb_reason (17 samples, 0.18%)</title><rect x="47.5195%" y="309" width="0.1814%" height="15" fill="rgb(229,129,0)" fg:x="4454" fg:w="17"/><text x="47.7278%" y="319.50"></text></g><g><title>kfree_skb_reason (17 samples, 0.18%)</title><rect x="47.5195%" y="293" width="0.1814%" height="15" fill="rgb(229,129,0)" fg:x="4454" fg:w="17"/><text x="47.7278%" y="303.50"></text></g><g><title>NOT_SPECIFIED (17 samples, 0.18%)</title><rect x="47.5195%" y="277" width="0.1814%" height="15" fill="rgb(90,237,90)" fg:x="4454" fg:w="17"/><text x="47.7278%" y="287.50"></text></g><g><title>ip6_input (9 samples, 0.10%)</title><rect x="47.7008%" y="453" width="0.0960%" height="15" fill="rgb(235,135,0)" fg:x="4471" fg:w="9"/><text x="47.9092%" y="463.50"></text></g><g><title>nf_hook_slow (9 samples, 0.10%)</title><rect x="47.7008%" y="437" width="0.0960%" height="15" fill="rgb(240,140,0)" fg:x="4471" fg:w="9"/><text x="47.9092%" y="447.50"></text></g><g><title>kfree_skb_reason (9 samples, 0.10%)</title><rect x="47.7008%" y="421" width="0.0960%" height="15" fill="rgb(229,129,0)" fg:x="4471" fg:w="9"/><text x="47.9092%" y="431.50"></text></g><g><title>kfree_skb_reason (9 samples, 0.10%)</title><rect x="47.7008%" y="405" width="0.0960%" height="15" fill="rgb(229,129,0)" fg:x="4471" fg:w="9"/><text x="47.9092%" y="415.50"></text></g><g><title>NETFILTER_DROP (9 samples, 0.10%)</title><rect x="47.7008%" y="389" width="0.0960%" height="15" fill="rgb(89,236,89)" fg:x="4471" fg:w="9"/><text x="47.9092%" y="399.50"></text></g><g><title>__udp6_lib_rcv (6 samples, 0.06%)</title><rect x="47.7969%" y="421" width="0.0640%" height="15" fill="rgb(225,125,0)" fg:x="4480" fg:w="6"/><text x="48.0052%" y="431.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="47.7969%" y="405" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="4480" fg:w="6"/><text x="48.0052%" y="415.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="47.7969%" y="389" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="4480" fg:w="6"/><text x="48.0052%" y="399.50"></text></g><g><title>NO_SOCKET (6 samples, 0.06%)</title><rect x="47.7969%" y="373" width="0.0640%" height="15" fill="rgb(81,228,81)" fg:x="4480" fg:w="6"/><text x="48.0052%" y="383.50"></text></g><g><title>icmpv6_rcv (62 samples, 0.66%)</title><rect x="47.8609%" y="421" width="0.6615%" height="15" fill="rgb(242,142,0)" fg:x="4486" fg:w="62"/><text x="48.0692%" y="431.50"></text></g><g><title>kfree_skb_reason (62 samples, 0.66%)</title><rect x="47.8609%" y="405" width="0.6615%" height="15" fill="rgb(229,129,0)" fg:x="4486" fg:w="62"/><text x="48.0692%" y="415.50"></text></g><g><title>kfree_skb_reason (62 samples, 0.66%)</title><rect x="47.8609%" y="389" width="0.6615%" height="15" fill="rgb(229,129,0)" fg:x="4486" fg:w="62"/><text x="48.0692%" y="399.50"></text></g><g><title>NOT_SPECIFIED (62 samples, 0.66%)</title><rect x="47.8609%" y="373" width="0.6615%" height="15" fill="rgb(90,237,90)" fg:x="4486" fg:w="62"/><text x="48.0692%" y="383.50"></text></g><g><title>raw6_local_deliver (62 samples, 0.66%)</title><rect x="48.5224%" y="421" width="0.6615%" height="15" fill="rgb(223,123,0)" fg:x="4548" fg:w="62"/><text x="48.7307%" y="431.50"></text></g><g><title>rawv6_rcv (62 samples, 0.66%)</title><rect x="48.5224%" y="405" width="0.6615%" height="15" fill="rgb(223,123,0)" fg:x="4548" fg:w="62"/><text x="48.7307%" y="415.50"></text></g><g><title>kfree_skb_reason (62 samples, 0.66%)</title><rect x="48.5224%" y="389" width="0.6615%" height="15" fill="rgb(229,129,0)" fg:x="4548" fg:w="62"/><text x="48.7307%" y="399.50"></text></g><g><title>kfree_skb_reason (62 samples, 0.66%)</title><rect x="48.5224%" y="373" width="0.6615%" height="15" fill="rgb(229,129,0)" fg:x="4548" fg:w="62"/><text x="48.7307%" y="383.50"></text></g><g><title>NOT_SPECIFIED (62 samples, 0.66%)</title><rect x="48.5224%" y="357" width="0.6615%" height="15" fill="rgb(90,237,90)" fg:x="4548" fg:w="62"/><text x="48.7307%" y="367.50"></text></g><g><title>NOT_SPECIFIED (21 samples, 0.22%)</title><rect x="49.1838%" y="373" width="0.2240%" height="15" fill="rgb(90,237,90)" fg:x="4610" fg:w="21"/><text x="49.3922%" y="383.50"></text></g><g><title>kfree_skb_reason (42 samples, 0.45%)</title><rect x="49.1838%" y="405" width="0.4481%" height="15" fill="rgb(229,129,0)" fg:x="4610" fg:w="42"/><text x="49.3922%" y="415.50"></text></g><g><title>kfree_skb_reason (42 samples, 0.45%)</title><rect x="49.1838%" y="389" width="0.4481%" height="15" fill="rgb(229,129,0)" fg:x="4610" fg:w="42"/><text x="49.3922%" y="399.50"></text></g><g><title>NO_SOCKET (21 samples, 0.22%)</title><rect x="49.4079%" y="373" width="0.2240%" height="15" fill="rgb(81,228,81)" fg:x="4631" fg:w="21"/><text x="49.6162%" y="383.50"></text></g><g><title>kfree_skb_reason (26 samples, 0.28%)</title><rect x="49.6319%" y="389" width="0.2774%" height="15" fill="rgb(229,129,0)" fg:x="4652" fg:w="26"/><text x="49.8403%" y="399.50"></text></g><g><title>kfree_skb_reason (26 samples, 0.28%)</title><rect x="49.6319%" y="373" width="0.2774%" height="15" fill="rgb(229,129,0)" fg:x="4652" fg:w="26"/><text x="49.8403%" y="383.50"></text></g><g><title>NOT_SPECIFIED (26 samples, 0.28%)</title><rect x="49.6319%" y="357" width="0.2774%" height="15" fill="rgb(90,237,90)" fg:x="4652" fg:w="26"/><text x="49.8403%" y="367.50"></text></g><g><title>TCP_OLD_DATA (64 samples, 0.68%)</title><rect x="49.9093%" y="341" width="0.6828%" height="15" fill="rgb(93,239,93)" fg:x="4678" fg:w="64"/><text x="50.1176%" y="351.50"></text></g><g><title>kfree_skb_reason (70 samples, 0.75%)</title><rect x="49.9093%" y="373" width="0.7468%" height="15" fill="rgb(229,129,0)" fg:x="4678" fg:w="70"/><text x="50.1176%" y="383.50"></text></g><g><title>kfree_skb_reason (70 samples, 0.75%)</title><rect x="49.9093%" y="357" width="0.7468%" height="15" fill="rgb(229,129,0)" fg:x="4678" fg:w="70"/><text x="50.1176%" y="367.50"></text></g><g><title>TCP_ZEROWINDOW (6 samples, 0.06%)</title><rect x="50.5921%" y="341" width="0.0640%" height="15" fill="rgb(93,239,93)" fg:x="4742" fg:w="6"/><text x="50.8005%" y="351.50"></text></g><g><title>tcp_rcv_established (281 samples, 3.00%)</title><rect x="49.9093%" y="389" width="2.9980%" height="15" fill="rgb(237,137,0)" fg:x="4678" fg:w="281"/><text x="50.1176%" y="399.50">tcp_..</text></g><g><title>tcp_validate_incoming (211 samples, 2.25%)</title><rect x="50.6561%" y="373" width="2.2511%" height="15" fill="rgb(237,137,0)" fg:x="4748" fg:w="211"/><text x="50.8645%" y="383.50">tc..</text></g><g><title>kfree_skb_reason (211 samples, 2.25%)</title><rect x="50.6561%" y="357" width="2.2511%" height="15" fill="rgb(229,129,0)" fg:x="4748" fg:w="211"/><text x="50.8645%" y="367.50">kf..</text></g><g><title>kfree_skb_reason (211 samples, 2.25%)</title><rect x="50.6561%" y="341" width="2.2511%" height="15" fill="rgb(229,129,0)" fg:x="4748" fg:w="211"/><text x="50.8645%" y="351.50">kf..</text></g><g><title>TCP_INVALID_SEQUENCE (211 samples, 2.25%)</title><rect x="50.6561%" y="325" width="2.2511%" height="15" fill="rgb(93,239,93)" fg:x="4748" fg:w="211"/><text x="50.8645%" y="335.50">TC..</text></g><g><title>inet_csk_destroy_sock (17 samples, 0.18%)</title><rect x="52.9073%" y="373" width="0.1814%" height="15" fill="rgb(239,139,0)" fg:x="4959" fg:w="17"/><text x="53.1156%" y="383.50"></text></g><g><title>sk_stream_kill_queues (17 samples, 0.18%)</title><rect x="52.9073%" y="357" width="0.1814%" height="15" fill="rgb(222,122,0)" fg:x="4959" fg:w="17"/><text x="53.1156%" y="367.50"></text></g><g><title>kfree_skb_reason (17 samples, 0.18%)</title><rect x="52.9073%" y="341" width="0.1814%" height="15" fill="rgb(229,129,0)" fg:x="4959" fg:w="17"/><text x="53.1156%" y="351.50"></text></g><g><title>kfree_skb_reason (17 samples, 0.18%)</title><rect x="52.9073%" y="325" width="0.1814%" height="15" fill="rgb(229,129,0)" fg:x="4959" fg:w="17"/><text x="53.1156%" y="335.50"></text></g><g><title>NOT_SPECIFIED (17 samples, 0.18%)</title><rect x="52.9073%" y="309" width="0.1814%" height="15" fill="rgb(90,237,90)" fg:x="4959" fg:w="17"/><text x="53.1156%" y="319.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="53.0887%" y="341" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="4976" fg:w="2"/><text x="53.2970%" y="351.50"></text></g><g><title>TCP_CLOSE (7 samples, 0.07%)</title><rect x="53.1100%" y="341" width="0.0747%" height="15" fill="rgb(93,239,93)" fg:x="4978" fg:w="7"/><text x="53.3183%" y="351.50"></text></g><g><title>TCP_OLD_ACK (1 samples, 0.01%)</title><rect x="53.1847%" y="341" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="4985" fg:w="1"/><text x="53.3930%" y="351.50"></text></g><g><title>kfree_skb_reason (16 samples, 0.17%)</title><rect x="53.0887%" y="373" width="0.1707%" height="15" fill="rgb(229,129,0)" fg:x="4976" fg:w="16"/><text x="53.2970%" y="383.50"></text></g><g><title>kfree_skb_reason (16 samples, 0.17%)</title><rect x="53.0887%" y="357" width="0.1707%" height="15" fill="rgb(229,129,0)" fg:x="4976" fg:w="16"/><text x="53.2970%" y="367.50"></text></g><g><title>TCP_RESET (6 samples, 0.06%)</title><rect x="53.1953%" y="341" width="0.0640%" height="15" fill="rgb(93,239,93)" fg:x="4986" fg:w="6"/><text x="53.4037%" y="351.50"></text></g><g><title>tcp_data_queue (22 samples, 0.23%)</title><rect x="53.2594%" y="373" width="0.2347%" height="15" fill="rgb(237,137,0)" fg:x="4992" fg:w="22"/><text x="53.4677%" y="383.50"></text></g><g><title>tcp_fin (22 samples, 0.23%)</title><rect x="53.2594%" y="357" width="0.2347%" height="15" fill="rgb(237,137,0)" fg:x="4992" fg:w="22"/><text x="53.4677%" y="367.50"></text></g><g><title>inet_csk_destroy_sock (22 samples, 0.23%)</title><rect x="53.2594%" y="341" width="0.2347%" height="15" fill="rgb(239,139,0)" fg:x="4992" fg:w="22"/><text x="53.4677%" y="351.50"></text></g><g><title>sk_stream_kill_queues (22 samples, 0.23%)</title><rect x="53.2594%" y="325" width="0.2347%" height="15" fill="rgb(222,122,0)" fg:x="4992" fg:w="22"/><text x="53.4677%" y="335.50"></text></g><g><title>kfree_skb_reason (22 samples, 0.23%)</title><rect x="53.2594%" y="309" width="0.2347%" height="15" fill="rgb(229,129,0)" fg:x="4992" fg:w="22"/><text x="53.4677%" y="319.50"></text></g><g><title>kfree_skb_reason (22 samples, 0.23%)</title><rect x="53.2594%" y="293" width="0.2347%" height="15" fill="rgb(229,129,0)" fg:x="4992" fg:w="22"/><text x="53.4677%" y="303.50"></text></g><g><title>NOT_SPECIFIED (22 samples, 0.23%)</title><rect x="53.2594%" y="277" width="0.2347%" height="15" fill="rgb(90,237,90)" fg:x="4992" fg:w="22"/><text x="53.4677%" y="287.50"></text></g><g><title>TCP_INVALID_SEQUENCE (2 samples, 0.02%)</title><rect x="53.4941%" y="325" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="5014" fg:w="2"/><text x="53.7024%" y="335.50"></text></g><g><title>ipv6_list_rcv (547 samples, 5.84%)</title><rect x="47.7008%" y="501" width="5.8359%" height="15" fill="rgb(231,131,0)" fg:x="4471" fg:w="547"/><text x="47.9092%" y="511.50">ipv6_list..</text></g><g><title>ip6_sublist_rcv (547 samples, 5.84%)</title><rect x="47.7008%" y="485" width="5.8359%" height="15" fill="rgb(235,135,0)" fg:x="4471" fg:w="547"/><text x="47.9092%" y="495.50">ip6_subli..</text></g><g><title>ip6_sublist_rcv_finish (547 samples, 5.84%)</title><rect x="47.7008%" y="469" width="5.8359%" height="15" fill="rgb(235,135,0)" fg:x="4471" fg:w="547"/><text x="47.9092%" y="479.50">ip6_subli..</text></g><g><title>ip6_input_finish (538 samples, 5.74%)</title><rect x="47.7969%" y="453" width="5.7399%" height="15" fill="rgb(235,135,0)" fg:x="4480" fg:w="538"/><text x="48.0052%" y="463.50">ip6_input..</text></g><g><title>ip6_protocol_deliver_rcu (538 samples, 5.74%)</title><rect x="47.7969%" y="437" width="5.7399%" height="15" fill="rgb(235,135,0)" fg:x="4480" fg:w="538"/><text x="48.0052%" y="447.50">ip6_proto..</text></g><g><title>tcp_v6_rcv (408 samples, 4.35%)</title><rect x="49.1838%" y="421" width="4.3529%" height="15" fill="rgb(237,137,0)" fg:x="4610" fg:w="408"/><text x="49.3922%" y="431.50">tcp_v6..</text></g><g><title>tcp_v6_do_rcv (366 samples, 3.90%)</title><rect x="49.6319%" y="405" width="3.9048%" height="15" fill="rgb(237,137,0)" fg:x="4652" fg:w="366"/><text x="49.8403%" y="415.50">tcp_v..</text></g><g><title>tcp_rcv_state_process (59 samples, 0.63%)</title><rect x="52.9073%" y="389" width="0.6295%" height="15" fill="rgb(237,137,0)" fg:x="4959" fg:w="59"/><text x="53.1156%" y="399.50"></text></g><g><title>tcp_validate_incoming (4 samples, 0.04%)</title><rect x="53.4941%" y="373" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="5014" fg:w="4"/><text x="53.7024%" y="383.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="53.4941%" y="357" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="5014" fg:w="4"/><text x="53.7024%" y="367.50"></text></g><g><title>kfree_skb_reason (4 samples, 0.04%)</title><rect x="53.4941%" y="341" width="0.0427%" height="15" fill="rgb(229,129,0)" fg:x="5014" fg:w="4"/><text x="53.7024%" y="351.50"></text></g><g><title>TCP_RESET (2 samples, 0.02%)</title><rect x="53.5154%" y="325" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="5016" fg:w="2"/><text x="53.7237%" y="335.50"></text></g><g><title>mlx5e_napi_poll (2,828 samples, 30.17%)</title><rect x="23.3757%" y="565" width="30.1718%" height="15" fill="rgb(221,121,0)" fg:x="2191" fg:w="2828"/><text x="23.5840%" y="575.50">mlx5e_napi_poll</text></g><g><title>napi_complete_done (2,751 samples, 29.35%)</title><rect x="24.1972%" y="549" width="29.3503%" height="15" fill="rgb(238,138,0)" fg:x="2268" fg:w="2751"/><text x="24.4055%" y="559.50">napi_complete_done</text></g><g><title>netif_receive_skb_list_internal (2,735 samples, 29.18%)</title><rect x="24.3679%" y="533" width="29.1796%" height="15" fill="rgb(244,144,0)" fg:x="2284" fg:w="2735"/><text x="24.5762%" y="543.50">netif_receive_skb_list_internal</text></g><g><title>__netif_receive_skb_list_core (2,735 samples, 29.18%)</title><rect x="24.3679%" y="517" width="29.1796%" height="15" fill="rgb(231,131,0)" fg:x="2284" fg:w="2735"/><text x="24.5762%" y="527.50">__netif_receive_skb_list_core</text></g><g><title>llc_rcv (1 samples, 0.01%)</title><rect x="53.5368%" y="501" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="5018" fg:w="1"/><text x="53.7451%" y="511.50"></text></g><g><title>stp_pdu_rcv (1 samples, 0.01%)</title><rect x="53.5368%" y="485" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="5018" fg:w="1"/><text x="53.7451%" y="495.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="53.5368%" y="469" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="5018" fg:w="1"/><text x="53.7451%" y="479.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="53.5368%" y="453" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="5018" fg:w="1"/><text x="53.7451%" y="463.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="53.5368%" y="437" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="5018" fg:w="1"/><text x="53.7451%" y="447.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="53.5474%" y="565" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="575.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="53.5474%" y="549" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="559.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="53.5474%" y="533" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="543.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="53.5474%" y="517" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="527.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="53.5474%" y="501" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="511.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="53.5474%" y="485" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="495.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="53.5474%" y="469" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="479.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="53.5474%" y="453" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="463.50"></text></g><g><title>tcp_v4_do_rcv (1 samples, 0.01%)</title><rect x="53.5474%" y="437" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="447.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="53.5474%" y="421" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="431.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="53.5474%" y="405" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="415.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="53.5474%" y="389" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="399.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="53.5474%" y="373" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="383.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="53.5474%" y="357" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="5019" fg:w="1"/><text x="53.7558%" y="367.50"></text></g><g><title>ip6_input_finish (1 samples, 0.01%)</title><rect x="53.5581%" y="533" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="5020" fg:w="1"/><text x="53.7664%" y="543.50"></text></g><g><title>ip6_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="53.5581%" y="517" width="0.0107%" height="15" fill="rgb(235,135,0)" fg:x="5020" fg:w="1"/><text x="53.7664%" y="527.50"></text></g><g><title>tcp_v6_rcv (1 samples, 0.01%)</title><rect x="53.5581%" y="501" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5020" fg:w="1"/><text x="53.7664%" y="511.50"></text></g><g><title>tcp_v6_do_rcv (1 samples, 0.01%)</title><rect x="53.5581%" y="485" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5020" fg:w="1"/><text x="53.7664%" y="495.50"></text></g><g><title>tcp_rcv_established (1 samples, 0.01%)</title><rect x="53.5581%" y="469" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5020" fg:w="1"/><text x="53.7664%" y="479.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="53.5581%" y="453" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5020" fg:w="1"/><text x="53.7664%" y="463.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="53.5581%" y="437" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="5020" fg:w="1"/><text x="53.7664%" y="447.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="53.5581%" y="421" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="5020" fg:w="1"/><text x="53.7664%" y="431.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="53.5581%" y="405" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="5020" fg:w="1"/><text x="53.7664%" y="415.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="53.5688%" y="453" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="5021" fg:w="3"/><text x="53.7771%" y="463.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="53.5688%" y="437" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="5021" fg:w="3"/><text x="53.7771%" y="447.50"></text></g><g><title>TCP_OLD_DATA (3 samples, 0.03%)</title><rect x="53.5688%" y="421" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="5021" fg:w="3"/><text x="53.7771%" y="431.50"></text></g><g><title>tcp_rcv_established (13 samples, 0.14%)</title><rect x="53.5688%" y="469" width="0.1387%" height="15" fill="rgb(237,137,0)" fg:x="5021" fg:w="13"/><text x="53.7771%" y="479.50"></text></g><g><title>tcp_validate_incoming (10 samples, 0.11%)</title><rect x="53.6008%" y="453" width="0.1067%" height="15" fill="rgb(237,137,0)" fg:x="5024" fg:w="10"/><text x="53.8091%" y="463.50"></text></g><g><title>kfree_skb_reason (10 samples, 0.11%)</title><rect x="53.6008%" y="437" width="0.1067%" height="15" fill="rgb(229,129,0)" fg:x="5024" fg:w="10"/><text x="53.8091%" y="447.50"></text></g><g><title>kfree_skb_reason (10 samples, 0.11%)</title><rect x="53.6008%" y="421" width="0.1067%" height="15" fill="rgb(229,129,0)" fg:x="5024" fg:w="10"/><text x="53.8091%" y="431.50"></text></g><g><title>TCP_INVALID_SEQUENCE (10 samples, 0.11%)</title><rect x="53.6008%" y="405" width="0.1067%" height="15" fill="rgb(93,239,93)" fg:x="5024" fg:w="10"/><text x="53.8091%" y="415.50"></text></g><g><title>__napi_poll (2,844 samples, 30.34%)</title><rect x="23.3757%" y="581" width="30.3425%" height="15" fill="rgb(231,131,0)" fg:x="2191" fg:w="2844"/><text x="23.5840%" y="591.50">__napi_poll</text></g><g><title>process_backlog (15 samples, 0.16%)</title><rect x="53.5581%" y="565" width="0.1600%" height="15" fill="rgb(242,142,0)" fg:x="5020" fg:w="15"/><text x="53.7664%" y="575.50"></text></g><g><title>__netif_receive_skb_one_core (15 samples, 0.16%)</title><rect x="53.5581%" y="549" width="0.1600%" height="15" fill="rgb(231,131,0)" fg:x="5020" fg:w="15"/><text x="53.7664%" y="559.50"></text></g><g><title>ip_local_deliver_finish (14 samples, 0.15%)</title><rect x="53.5688%" y="533" width="0.1494%" height="15" fill="rgb(230,130,0)" fg:x="5021" fg:w="14"/><text x="53.7771%" y="543.50"></text></g><g><title>ip_protocol_deliver_rcu (14 samples, 0.15%)</title><rect x="53.5688%" y="517" width="0.1494%" height="15" fill="rgb(230,130,0)" fg:x="5021" fg:w="14"/><text x="53.7771%" y="527.50"></text></g><g><title>tcp_v4_rcv (14 samples, 0.15%)</title><rect x="53.5688%" y="501" width="0.1494%" height="15" fill="rgb(237,137,0)" fg:x="5021" fg:w="14"/><text x="53.7771%" y="511.50"></text></g><g><title>tcp_v4_do_rcv (14 samples, 0.15%)</title><rect x="53.5688%" y="485" width="0.1494%" height="15" fill="rgb(237,137,0)" fg:x="5021" fg:w="14"/><text x="53.7771%" y="495.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="53.7075%" y="469" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5034" fg:w="1"/><text x="53.9158%" y="479.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="53.7075%" y="453" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5034" fg:w="1"/><text x="53.9158%" y="463.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="53.7075%" y="437" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="5034" fg:w="1"/><text x="53.9158%" y="447.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="53.7075%" y="421" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="5034" fg:w="1"/><text x="53.9158%" y="431.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="53.7075%" y="405" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="5034" fg:w="1"/><text x="53.9158%" y="415.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="53.7075%" y="389" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="5034" fg:w="1"/><text x="53.9158%" y="399.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="53.7075%" y="373" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="5034" fg:w="1"/><text x="53.9158%" y="383.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="53.7075%" y="357" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="5034" fg:w="1"/><text x="53.9158%" y="367.50"></text></g><g><title>net_rx_action (6,839 samples, 72.96%)</title><rect x="23.3757%" y="597" width="72.9649%" height="15" fill="rgb(244,144,0)" fg:x="2191" fg:w="6839"/><text x="23.5840%" y="607.50">net_rx_action</text></g><g><title>napi_consume_skb (3,995 samples, 42.62%)</title><rect x="53.7181%" y="581" width="42.6224%" height="15" fill="rgb(238,138,0)" fg:x="5035" fg:w="3995"/><text x="53.9265%" y="591.50">napi_consume_skb</text></g><g><title>skb_release_data (3,995 samples, 42.62%)</title><rect x="53.7181%" y="565" width="42.6224%" height="15" fill="rgb(230,130,0)" fg:x="5035" fg:w="3995"/><text x="53.9265%" y="575.50">skb_release_data</text></g><g><title>kfree_skb_reason (3,995 samples, 42.62%)</title><rect x="53.7181%" y="549" width="42.6224%" height="15" fill="rgb(229,129,0)" fg:x="5035" fg:w="3995"/><text x="53.9265%" y="559.50">kfree_skb_reason</text></g><g><title>kfree_skb_reason (3,995 samples, 42.62%)</title><rect x="53.7181%" y="533" width="42.6224%" height="15" fill="rgb(229,129,0)" fg:x="5035" fg:w="3995"/><text x="53.9265%" y="543.50">kfree_skb_reason</text></g><g><title>NOT_SPECIFIED (3,995 samples, 42.62%)</title><rect x="53.7181%" y="517" width="42.6224%" height="15" fill="rgb(90,237,90)" fg:x="5035" fg:w="3995"/><text x="53.9265%" y="527.50">NOT_SPECIFIED</text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="96.3406%" y="501" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="9030" fg:w="1"/><text x="96.5489%" y="511.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.3406%" y="485" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9030" fg:w="1"/><text x="96.5489%" y="495.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.3406%" y="469" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9030" fg:w="1"/><text x="96.5489%" y="479.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="96.3406%" y="453" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="9030" fg:w="1"/><text x="96.5489%" y="463.50"></text></g><g><title>irq_exit_rcu (6,841 samples, 72.99%)</title><rect x="23.3757%" y="629" width="72.9862%" height="15" fill="rgb(233,133,0)" fg:x="2191" fg:w="6841"/><text x="23.5840%" y="639.50">irq_exit_rcu</text></g><g><title>__do_softirq (6,841 samples, 72.99%)</title><rect x="23.3757%" y="613" width="72.9862%" height="15" fill="rgb(230,130,0)" fg:x="2191" fg:w="6841"/><text x="23.5840%" y="623.50">__do_softirq</text></g><g><title>run_timer_softirq (2 samples, 0.02%)</title><rect x="96.3406%" y="597" width="0.0213%" height="15" fill="rgb(234,134,0)" fg:x="9030" fg:w="2"/><text x="96.5489%" y="607.50"></text></g><g><title>__run_timers.part.0 (2 samples, 0.02%)</title><rect x="96.3406%" y="581" width="0.0213%" height="15" fill="rgb(228,128,0)" fg:x="9030" fg:w="2"/><text x="96.5489%" y="591.50"></text></g><g><title>call_timer_fn (2 samples, 0.02%)</title><rect x="96.3406%" y="565" width="0.0213%" height="15" fill="rgb(221,121,0)" fg:x="9030" fg:w="2"/><text x="96.5489%" y="575.50"></text></g><g><title>tcp_write_timer (2 samples, 0.02%)</title><rect x="96.3406%" y="549" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="9030" fg:w="2"/><text x="96.5489%" y="559.50"></text></g><g><title>tcp_retransmit_timer (2 samples, 0.02%)</title><rect x="96.3406%" y="533" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="9030" fg:w="2"/><text x="96.5489%" y="543.50"></text></g><g><title>inet_csk_destroy_sock (2 samples, 0.02%)</title><rect x="96.3406%" y="517" width="0.0213%" height="15" fill="rgb(239,139,0)" fg:x="9030" fg:w="2"/><text x="96.5489%" y="527.50"></text></g><g><title>tcp_v4_destroy_sock (1 samples, 0.01%)</title><rect x="96.3512%" y="501" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9031" fg:w="1"/><text x="96.5596%" y="511.50"></text></g><g><title>skb_rbtree_purge (1 samples, 0.01%)</title><rect x="96.3512%" y="485" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="9031" fg:w="1"/><text x="96.5596%" y="495.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.3512%" y="469" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9031" fg:w="1"/><text x="96.5596%" y="479.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.3512%" y="453" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9031" fg:w="1"/><text x="96.5596%" y="463.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="96.3512%" y="437" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="9031" fg:w="1"/><text x="96.5596%" y="447.50"></text></g><g><title>raw_local_deliver (2 samples, 0.02%)</title><rect x="96.3619%" y="309" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="9032" fg:w="2"/><text x="96.5702%" y="319.50"></text></g><g><title>raw_rcv (2 samples, 0.02%)</title><rect x="96.3619%" y="293" width="0.0213%" height="15" fill="rgb(223,123,0)" fg:x="9032" fg:w="2"/><text x="96.5702%" y="303.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="96.3619%" y="277" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="9032" fg:w="2"/><text x="96.5702%" y="287.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="96.3619%" y="261" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="9032" fg:w="2"/><text x="96.5702%" y="271.50"></text></g><g><title>NOT_SPECIFIED (2 samples, 0.02%)</title><rect x="96.3619%" y="245" width="0.0213%" height="15" fill="rgb(90,237,90)" fg:x="9032" fg:w="2"/><text x="96.5702%" y="255.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.3832%" y="293" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9034" fg:w="1"/><text x="96.5916%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.3832%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9034" fg:w="1"/><text x="96.5916%" y="287.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="96.3832%" y="261" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="9034" fg:w="1"/><text x="96.5916%" y="271.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.3939%" y="261" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9035" fg:w="1"/><text x="96.6022%" y="271.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.3939%" y="245" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9035" fg:w="1"/><text x="96.6022%" y="255.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="96.3939%" y="229" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="9035" fg:w="1"/><text x="96.6022%" y="239.50"></text></g><g><title>dev_gro_receive (5 samples, 0.05%)</title><rect x="96.3619%" y="453" width="0.0533%" height="15" fill="rgb(243,143,0)" fg:x="9032" fg:w="5"/><text x="96.5702%" y="463.50"></text></g><g><title>napi_gro_complete.constprop.0 (5 samples, 0.05%)</title><rect x="96.3619%" y="437" width="0.0533%" height="15" fill="rgb(238,138,0)" fg:x="9032" fg:w="5"/><text x="96.5702%" y="447.50"></text></g><g><title>netif_receive_skb_list_internal (5 samples, 0.05%)</title><rect x="96.3619%" y="421" width="0.0533%" height="15" fill="rgb(244,144,0)" fg:x="9032" fg:w="5"/><text x="96.5702%" y="431.50"></text></g><g><title>__netif_receive_skb_list_core (5 samples, 0.05%)</title><rect x="96.3619%" y="405" width="0.0533%" height="15" fill="rgb(231,131,0)" fg:x="9032" fg:w="5"/><text x="96.5702%" y="415.50"></text></g><g><title>ip_list_rcv (5 samples, 0.05%)</title><rect x="96.3619%" y="389" width="0.0533%" height="15" fill="rgb(230,130,0)" fg:x="9032" fg:w="5"/><text x="96.5702%" y="399.50"></text></g><g><title>ip_sublist_rcv (5 samples, 0.05%)</title><rect x="96.3619%" y="373" width="0.0533%" height="15" fill="rgb(230,130,0)" fg:x="9032" fg:w="5"/><text x="96.5702%" y="383.50"></text></g><g><title>ip_sublist_rcv_finish (5 samples, 0.05%)</title><rect x="96.3619%" y="357" width="0.0533%" height="15" fill="rgb(230,130,0)" fg:x="9032" fg:w="5"/><text x="96.5702%" y="367.50"></text></g><g><title>ip_local_deliver_finish (5 samples, 0.05%)</title><rect x="96.3619%" y="341" width="0.0533%" height="15" fill="rgb(230,130,0)" fg:x="9032" fg:w="5"/><text x="96.5702%" y="351.50"></text></g><g><title>ip_protocol_deliver_rcu (5 samples, 0.05%)</title><rect x="96.3619%" y="325" width="0.0533%" height="15" fill="rgb(230,130,0)" fg:x="9032" fg:w="5"/><text x="96.5702%" y="335.50"></text></g><g><title>tcp_v4_rcv (3 samples, 0.03%)</title><rect x="96.3832%" y="309" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="9034" fg:w="3"/><text x="96.5916%" y="319.50"></text></g><g><title>tcp_v4_do_rcv (2 samples, 0.02%)</title><rect x="96.3939%" y="293" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="9035" fg:w="2"/><text x="96.6022%" y="303.50"></text></g><g><title>tcp_rcv_established (2 samples, 0.02%)</title><rect x="96.3939%" y="277" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="9035" fg:w="2"/><text x="96.6022%" y="287.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="96.4046%" y="261" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9036" fg:w="1"/><text x="96.6129%" y="271.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.4046%" y="245" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9036" fg:w="1"/><text x="96.6129%" y="255.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.4046%" y="229" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9036" fg:w="1"/><text x="96.6129%" y="239.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="96.4046%" y="213" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="9036" fg:w="1"/><text x="96.6129%" y="223.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="96.4152%" y="293" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="9037" fg:w="6"/><text x="96.6236%" y="303.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="96.4152%" y="277" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="9037" fg:w="6"/><text x="96.6236%" y="287.50"></text></g><g><title>TCP_OLD_DATA (6 samples, 0.06%)</title><rect x="96.4152%" y="261" width="0.0640%" height="15" fill="rgb(93,239,93)" fg:x="9037" fg:w="6"/><text x="96.6236%" y="271.50"></text></g><g><title>tcp_rcv_established (7 samples, 0.07%)</title><rect x="96.4152%" y="309" width="0.0747%" height="15" fill="rgb(237,137,0)" fg:x="9037" fg:w="7"/><text x="96.6236%" y="319.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="96.4792%" y="293" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9043" fg:w="1"/><text x="96.6876%" y="303.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.4792%" y="277" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9043" fg:w="1"/><text x="96.6876%" y="287.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.4792%" y="261" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9043" fg:w="1"/><text x="96.6876%" y="271.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="96.4792%" y="245" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="9043" fg:w="1"/><text x="96.6876%" y="255.50"></text></g><g><title>mlx5e_poll_rx_cq (13 samples, 0.14%)</title><rect x="96.3619%" y="501" width="0.1387%" height="15" fill="rgb(221,121,0)" fg:x="9032" fg:w="13"/><text x="96.5702%" y="511.50"></text></g><g><title>mlx5e_handle_rx_cqe (13 samples, 0.14%)</title><rect x="96.3619%" y="485" width="0.1387%" height="15" fill="rgb(221,121,0)" fg:x="9032" fg:w="13"/><text x="96.5702%" y="495.50"></text></g><g><title>napi_gro_receive (13 samples, 0.14%)</title><rect x="96.3619%" y="469" width="0.1387%" height="15" fill="rgb(238,138,0)" fg:x="9032" fg:w="13"/><text x="96.5702%" y="479.50"></text></g><g><title>netif_receive_skb_list_internal (8 samples, 0.09%)</title><rect x="96.4152%" y="453" width="0.0854%" height="15" fill="rgb(244,144,0)" fg:x="9037" fg:w="8"/><text x="96.6236%" y="463.50"></text></g><g><title>__netif_receive_skb_list_core (8 samples, 0.09%)</title><rect x="96.4152%" y="437" width="0.0854%" height="15" fill="rgb(231,131,0)" fg:x="9037" fg:w="8"/><text x="96.6236%" y="447.50"></text></g><g><title>ip_list_rcv (8 samples, 0.09%)</title><rect x="96.4152%" y="421" width="0.0854%" height="15" fill="rgb(230,130,0)" fg:x="9037" fg:w="8"/><text x="96.6236%" y="431.50"></text></g><g><title>ip_sublist_rcv (8 samples, 0.09%)</title><rect x="96.4152%" y="405" width="0.0854%" height="15" fill="rgb(230,130,0)" fg:x="9037" fg:w="8"/><text x="96.6236%" y="415.50"></text></g><g><title>ip_sublist_rcv_finish (8 samples, 0.09%)</title><rect x="96.4152%" y="389" width="0.0854%" height="15" fill="rgb(230,130,0)" fg:x="9037" fg:w="8"/><text x="96.6236%" y="399.50"></text></g><g><title>ip_local_deliver_finish (8 samples, 0.09%)</title><rect x="96.4152%" y="373" width="0.0854%" height="15" fill="rgb(230,130,0)" fg:x="9037" fg:w="8"/><text x="96.6236%" y="383.50"></text></g><g><title>ip_protocol_deliver_rcu (8 samples, 0.09%)</title><rect x="96.4152%" y="357" width="0.0854%" height="15" fill="rgb(230,130,0)" fg:x="9037" fg:w="8"/><text x="96.6236%" y="367.50"></text></g><g><title>tcp_v4_rcv (8 samples, 0.09%)</title><rect x="96.4152%" y="341" width="0.0854%" height="15" fill="rgb(237,137,0)" fg:x="9037" fg:w="8"/><text x="96.6236%" y="351.50"></text></g><g><title>tcp_v4_do_rcv (8 samples, 0.09%)</title><rect x="96.4152%" y="325" width="0.0854%" height="15" fill="rgb(237,137,0)" fg:x="9037" fg:w="8"/><text x="96.6236%" y="335.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="96.4899%" y="309" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9044" fg:w="1"/><text x="96.6983%" y="319.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="96.4899%" y="293" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9044" fg:w="1"/><text x="96.6983%" y="303.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="96.4899%" y="277" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9044" fg:w="1"/><text x="96.6983%" y="287.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="96.4899%" y="261" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="9044" fg:w="1"/><text x="96.6983%" y="271.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="96.4899%" y="245" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="9044" fg:w="1"/><text x="96.6983%" y="255.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.4899%" y="229" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9044" fg:w="1"/><text x="96.6983%" y="239.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.4899%" y="213" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9044" fg:w="1"/><text x="96.6983%" y="223.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="96.4899%" y="197" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="9044" fg:w="1"/><text x="96.6983%" y="207.50"></text></g><g><title>ip_local_deliver (5 samples, 0.05%)</title><rect x="96.5006%" y="405" width="0.0533%" height="15" fill="rgb(230,130,0)" fg:x="9045" fg:w="5"/><text x="96.7089%" y="415.50"></text></g><g><title>nf_hook_slow (5 samples, 0.05%)</title><rect x="96.5006%" y="389" width="0.0533%" height="15" fill="rgb(240,140,0)" fg:x="9045" fg:w="5"/><text x="96.7089%" y="399.50"></text></g><g><title>kfree_skb_reason (5 samples, 0.05%)</title><rect x="96.5006%" y="373" width="0.0533%" height="15" fill="rgb(229,129,0)" fg:x="9045" fg:w="5"/><text x="96.7089%" y="383.50"></text></g><g><title>kfree_skb_reason (5 samples, 0.05%)</title><rect x="96.5006%" y="357" width="0.0533%" height="15" fill="rgb(229,129,0)" fg:x="9045" fg:w="5"/><text x="96.7089%" y="367.50"></text></g><g><title>NETFILTER_DROP (5 samples, 0.05%)</title><rect x="96.5006%" y="341" width="0.0533%" height="15" fill="rgb(89,236,89)" fg:x="9045" fg:w="5"/><text x="96.7089%" y="351.50"></text></g><g><title>icmp_rcv (2 samples, 0.02%)</title><rect x="96.5539%" y="373" width="0.0213%" height="15" fill="rgb(242,142,0)" fg:x="9050" fg:w="2"/><text x="96.7623%" y="383.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="96.5539%" y="357" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="9050" fg:w="2"/><text x="96.7623%" y="367.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="96.5539%" y="341" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="9050" fg:w="2"/><text x="96.7623%" y="351.50"></text></g><g><title>NO_SOCKET (2 samples, 0.02%)</title><rect x="96.5539%" y="325" width="0.0213%" height="15" fill="rgb(81,228,81)" fg:x="9050" fg:w="2"/><text x="96.7623%" y="335.50"></text></g><g><title>raw_local_deliver (6 samples, 0.06%)</title><rect x="96.5753%" y="373" width="0.0640%" height="15" fill="rgb(223,123,0)" fg:x="9052" fg:w="6"/><text x="96.7836%" y="383.50"></text></g><g><title>raw_rcv (6 samples, 0.06%)</title><rect x="96.5753%" y="357" width="0.0640%" height="15" fill="rgb(223,123,0)" fg:x="9052" fg:w="6"/><text x="96.7836%" y="367.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="96.5753%" y="341" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="9052" fg:w="6"/><text x="96.7836%" y="351.50"></text></g><g><title>kfree_skb_reason (6 samples, 0.06%)</title><rect x="96.5753%" y="325" width="0.0640%" height="15" fill="rgb(229,129,0)" fg:x="9052" fg:w="6"/><text x="96.7836%" y="335.50"></text></g><g><title>NOT_SPECIFIED (6 samples, 0.06%)</title><rect x="96.5753%" y="309" width="0.0640%" height="15" fill="rgb(90,237,90)" fg:x="9052" fg:w="6"/><text x="96.7836%" y="319.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="96.6393%" y="325" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="9058" fg:w="1"/><text x="96.8476%" y="335.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="96.6393%" y="357" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="9058" fg:w="8"/><text x="96.8476%" y="367.50"></text></g><g><title>kfree_skb_reason (8 samples, 0.09%)</title><rect x="96.6393%" y="341" width="0.0854%" height="15" fill="rgb(229,129,0)" fg:x="9058" fg:w="8"/><text x="96.8476%" y="351.50"></text></g><g><title>NO_SOCKET (7 samples, 0.07%)</title><rect x="96.6500%" y="325" width="0.0747%" height="15" fill="rgb(81,228,81)" fg:x="9059" fg:w="7"/><text x="96.8583%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.7246%" y="341" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9066" fg:w="1"/><text x="96.9330%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="96.7246%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9066" fg:w="1"/><text x="96.9330%" y="335.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="96.7246%" y="309" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="9066" fg:w="1"/><text x="96.9330%" y="319.50"></text></g><g><title>kfree_skb_reason (9 samples, 0.10%)</title><rect x="96.7353%" y="325" width="0.0960%" height="15" fill="rgb(229,129,0)" fg:x="9067" fg:w="9"/><text x="96.9436%" y="335.50"></text></g><g><title>kfree_skb_reason (9 samples, 0.10%)</title><rect x="96.7353%" y="309" width="0.0960%" height="15" fill="rgb(229,129,0)" fg:x="9067" fg:w="9"/><text x="96.9436%" y="319.50"></text></g><g><title>TCP_OLD_DATA (9 samples, 0.10%)</title><rect x="96.7353%" y="293" width="0.0960%" height="15" fill="rgb(93,239,93)" fg:x="9067" fg:w="9"/><text x="96.9436%" y="303.50"></text></g><g><title>TCP_INVALID_SEQUENCE (12 samples, 0.13%)</title><rect x="96.8313%" y="277" width="0.1280%" height="15" fill="rgb(93,239,93)" fg:x="9076" fg:w="12"/><text x="97.0397%" y="287.50"></text></g><g><title>tcp_rcv_established (23 samples, 0.25%)</title><rect x="96.7353%" y="341" width="0.2454%" height="15" fill="rgb(237,137,0)" fg:x="9067" fg:w="23"/><text x="96.9436%" y="351.50"></text></g><g><title>tcp_validate_incoming (14 samples, 0.15%)</title><rect x="96.8313%" y="325" width="0.1494%" height="15" fill="rgb(237,137,0)" fg:x="9076" fg:w="14"/><text x="97.0397%" y="335.50"></text></g><g><title>kfree_skb_reason (14 samples, 0.15%)</title><rect x="96.8313%" y="309" width="0.1494%" height="15" fill="rgb(229,129,0)" fg:x="9076" fg:w="14"/><text x="97.0397%" y="319.50"></text></g><g><title>kfree_skb_reason (14 samples, 0.15%)</title><rect x="96.8313%" y="293" width="0.1494%" height="15" fill="rgb(229,129,0)" fg:x="9076" fg:w="14"/><text x="97.0397%" y="303.50"></text></g><g><title>TCP_RFC7323_PAWS (2 samples, 0.02%)</title><rect x="96.9594%" y="277" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="9088" fg:w="2"/><text x="97.1677%" y="287.50"></text></g><g><title>inet_csk_destroy_sock (3 samples, 0.03%)</title><rect x="96.9807%" y="325" width="0.0320%" height="15" fill="rgb(239,139,0)" fg:x="9090" fg:w="3"/><text x="97.1890%" y="335.50"></text></g><g><title>sk_stream_kill_queues (3 samples, 0.03%)</title><rect x="96.9807%" y="309" width="0.0320%" height="15" fill="rgb(222,122,0)" fg:x="9090" fg:w="3"/><text x="97.1890%" y="319.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="96.9807%" y="293" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9090" fg:w="3"/><text x="97.1890%" y="303.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="96.9807%" y="277" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9090" fg:w="3"/><text x="97.1890%" y="287.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="96.9807%" y="261" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="9090" fg:w="3"/><text x="97.1890%" y="271.50"></text></g><g><title>ip_list_rcv (49 samples, 0.52%)</title><rect x="96.5006%" y="453" width="0.5228%" height="15" fill="rgb(230,130,0)" fg:x="9045" fg:w="49"/><text x="96.7089%" y="463.50"></text></g><g><title>ip_sublist_rcv (49 samples, 0.52%)</title><rect x="96.5006%" y="437" width="0.5228%" height="15" fill="rgb(230,130,0)" fg:x="9045" fg:w="49"/><text x="96.7089%" y="447.50"></text></g><g><title>ip_sublist_rcv_finish (49 samples, 0.52%)</title><rect x="96.5006%" y="421" width="0.5228%" height="15" fill="rgb(230,130,0)" fg:x="9045" fg:w="49"/><text x="96.7089%" y="431.50"></text></g><g><title>ip_local_deliver_finish (44 samples, 0.47%)</title><rect x="96.5539%" y="405" width="0.4694%" height="15" fill="rgb(230,130,0)" fg:x="9050" fg:w="44"/><text x="96.7623%" y="415.50"></text></g><g><title>ip_protocol_deliver_rcu (44 samples, 0.47%)</title><rect x="96.5539%" y="389" width="0.4694%" height="15" fill="rgb(230,130,0)" fg:x="9050" fg:w="44"/><text x="96.7623%" y="399.50"></text></g><g><title>tcp_v4_rcv (36 samples, 0.38%)</title><rect x="96.6393%" y="373" width="0.3841%" height="15" fill="rgb(237,137,0)" fg:x="9058" fg:w="36"/><text x="96.8476%" y="383.50"></text></g><g><title>tcp_v4_do_rcv (28 samples, 0.30%)</title><rect x="96.7246%" y="357" width="0.2987%" height="15" fill="rgb(237,137,0)" fg:x="9066" fg:w="28"/><text x="96.9330%" y="367.50"></text></g><g><title>tcp_rcv_state_process (4 samples, 0.04%)</title><rect x="96.9807%" y="341" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="9090" fg:w="4"/><text x="97.1890%" y="351.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="97.0127%" y="325" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9093" fg:w="1"/><text x="97.2210%" y="335.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="97.0127%" y="309" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9093" fg:w="1"/><text x="97.2210%" y="319.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="97.0127%" y="293" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="9093" fg:w="1"/><text x="97.2210%" y="303.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="97.0127%" y="277" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="9093" fg:w="1"/><text x="97.2210%" y="287.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.0127%" y="261" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9093" fg:w="1"/><text x="97.2210%" y="271.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.0127%" y="245" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9093" fg:w="1"/><text x="97.2210%" y="255.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="97.0127%" y="229" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="9093" fg:w="1"/><text x="97.2210%" y="239.50"></text></g><g><title>icmpv6_rcv (3 samples, 0.03%)</title><rect x="97.0234%" y="373" width="0.0320%" height="15" fill="rgb(242,142,0)" fg:x="9094" fg:w="3"/><text x="97.2317%" y="383.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.0234%" y="357" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9094" fg:w="3"/><text x="97.2317%" y="367.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.0234%" y="341" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9094" fg:w="3"/><text x="97.2317%" y="351.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="97.0234%" y="325" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="9094" fg:w="3"/><text x="97.2317%" y="335.50"></text></g><g><title>raw6_local_deliver (3 samples, 0.03%)</title><rect x="97.0554%" y="373" width="0.0320%" height="15" fill="rgb(223,123,0)" fg:x="9097" fg:w="3"/><text x="97.2637%" y="383.50"></text></g><g><title>rawv6_rcv (3 samples, 0.03%)</title><rect x="97.0554%" y="357" width="0.0320%" height="15" fill="rgb(223,123,0)" fg:x="9097" fg:w="3"/><text x="97.2637%" y="367.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.0554%" y="341" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9097" fg:w="3"/><text x="97.2637%" y="351.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.0554%" y="325" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9097" fg:w="3"/><text x="97.2637%" y="335.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="97.0554%" y="309" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="9097" fg:w="3"/><text x="97.2637%" y="319.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="97.0874%" y="325" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="9100" fg:w="1"/><text x="97.2957%" y="335.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="97.0874%" y="357" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="9100" fg:w="2"/><text x="97.2957%" y="367.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="97.0874%" y="341" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="9100" fg:w="2"/><text x="97.2957%" y="351.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="97.0980%" y="325" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="9101" fg:w="1"/><text x="97.3064%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.1087%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9102" fg:w="1"/><text x="97.3170%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.1087%" y="309" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9102" fg:w="1"/><text x="97.3170%" y="319.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="97.1087%" y="293" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="9102" fg:w="1"/><text x="97.3170%" y="303.50"></text></g><g><title>tcp_rcv_established (10 samples, 0.11%)</title><rect x="97.1087%" y="341" width="0.1067%" height="15" fill="rgb(237,137,0)" fg:x="9102" fg:w="10"/><text x="97.3170%" y="351.50"></text></g><g><title>tcp_validate_incoming (9 samples, 0.10%)</title><rect x="97.1194%" y="325" width="0.0960%" height="15" fill="rgb(237,137,0)" fg:x="9103" fg:w="9"/><text x="97.3277%" y="335.50"></text></g><g><title>kfree_skb_reason (9 samples, 0.10%)</title><rect x="97.1194%" y="309" width="0.0960%" height="15" fill="rgb(229,129,0)" fg:x="9103" fg:w="9"/><text x="97.3277%" y="319.50"></text></g><g><title>kfree_skb_reason (9 samples, 0.10%)</title><rect x="97.1194%" y="293" width="0.0960%" height="15" fill="rgb(229,129,0)" fg:x="9103" fg:w="9"/><text x="97.3277%" y="303.50"></text></g><g><title>TCP_INVALID_SEQUENCE (9 samples, 0.10%)</title><rect x="97.1194%" y="277" width="0.0960%" height="15" fill="rgb(93,239,93)" fg:x="9103" fg:w="9"/><text x="97.3277%" y="287.50"></text></g><g><title>mlx5e_napi_poll (83 samples, 0.89%)</title><rect x="96.3619%" y="517" width="0.8855%" height="15" fill="rgb(221,121,0)" fg:x="9032" fg:w="83"/><text x="96.5702%" y="527.50"></text></g><g><title>napi_complete_done (70 samples, 0.75%)</title><rect x="96.5006%" y="501" width="0.7468%" height="15" fill="rgb(238,138,0)" fg:x="9045" fg:w="70"/><text x="96.7089%" y="511.50"></text></g><g><title>netif_receive_skb_list_internal (70 samples, 0.75%)</title><rect x="96.5006%" y="485" width="0.7468%" height="15" fill="rgb(244,144,0)" fg:x="9045" fg:w="70"/><text x="96.7089%" y="495.50"></text></g><g><title>__netif_receive_skb_list_core (70 samples, 0.75%)</title><rect x="96.5006%" y="469" width="0.7468%" height="15" fill="rgb(231,131,0)" fg:x="9045" fg:w="70"/><text x="96.7089%" y="479.50"></text></g><g><title>ipv6_list_rcv (21 samples, 0.22%)</title><rect x="97.0234%" y="453" width="0.2240%" height="15" fill="rgb(231,131,0)" fg:x="9094" fg:w="21"/><text x="97.2317%" y="463.50"></text></g><g><title>ip6_sublist_rcv (21 samples, 0.22%)</title><rect x="97.0234%" y="437" width="0.2240%" height="15" fill="rgb(235,135,0)" fg:x="9094" fg:w="21"/><text x="97.2317%" y="447.50"></text></g><g><title>ip6_sublist_rcv_finish (21 samples, 0.22%)</title><rect x="97.0234%" y="421" width="0.2240%" height="15" fill="rgb(235,135,0)" fg:x="9094" fg:w="21"/><text x="97.2317%" y="431.50"></text></g><g><title>ip6_input_finish (21 samples, 0.22%)</title><rect x="97.0234%" y="405" width="0.2240%" height="15" fill="rgb(235,135,0)" fg:x="9094" fg:w="21"/><text x="97.2317%" y="415.50"></text></g><g><title>ip6_protocol_deliver_rcu (21 samples, 0.22%)</title><rect x="97.0234%" y="389" width="0.2240%" height="15" fill="rgb(235,135,0)" fg:x="9094" fg:w="21"/><text x="97.2317%" y="399.50"></text></g><g><title>tcp_v6_rcv (15 samples, 0.16%)</title><rect x="97.0874%" y="373" width="0.1600%" height="15" fill="rgb(237,137,0)" fg:x="9100" fg:w="15"/><text x="97.2957%" y="383.50"></text></g><g><title>tcp_v6_do_rcv (13 samples, 0.14%)</title><rect x="97.1087%" y="357" width="0.1387%" height="15" fill="rgb(237,137,0)" fg:x="9102" fg:w="13"/><text x="97.3170%" y="367.50"></text></g><g><title>tcp_rcv_state_process (3 samples, 0.03%)</title><rect x="97.2154%" y="341" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="9112" fg:w="3"/><text x="97.4237%" y="351.50"></text></g><g><title>inet_csk_destroy_sock (3 samples, 0.03%)</title><rect x="97.2154%" y="325" width="0.0320%" height="15" fill="rgb(239,139,0)" fg:x="9112" fg:w="3"/><text x="97.4237%" y="335.50"></text></g><g><title>sk_stream_kill_queues (3 samples, 0.03%)</title><rect x="97.2154%" y="309" width="0.0320%" height="15" fill="rgb(222,122,0)" fg:x="9112" fg:w="3"/><text x="97.4237%" y="319.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.2154%" y="293" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9112" fg:w="3"/><text x="97.4237%" y="303.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.2154%" y="277" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9112" fg:w="3"/><text x="97.4237%" y="287.50"></text></g><g><title>NOT_SPECIFIED (3 samples, 0.03%)</title><rect x="97.2154%" y="261" width="0.0320%" height="15" fill="rgb(90,237,90)" fg:x="9112" fg:w="3"/><text x="97.4237%" y="271.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.2474%" y="357" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9115" fg:w="3"/><text x="97.4557%" y="367.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.2474%" y="341" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9115" fg:w="3"/><text x="97.4557%" y="351.50"></text></g><g><title>TCP_OLD_DATA (3 samples, 0.03%)</title><rect x="97.2474%" y="325" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="9115" fg:w="3"/><text x="97.4557%" y="335.50"></text></g><g><title>netif_receive_skb_list_internal (4 samples, 0.04%)</title><rect x="97.2474%" y="517" width="0.0427%" height="15" fill="rgb(244,144,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="527.50"></text></g><g><title>__netif_receive_skb_list_core (4 samples, 0.04%)</title><rect x="97.2474%" y="501" width="0.0427%" height="15" fill="rgb(231,131,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="511.50"></text></g><g><title>ip_list_rcv (4 samples, 0.04%)</title><rect x="97.2474%" y="485" width="0.0427%" height="15" fill="rgb(230,130,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="495.50"></text></g><g><title>ip_sublist_rcv (4 samples, 0.04%)</title><rect x="97.2474%" y="469" width="0.0427%" height="15" fill="rgb(230,130,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="479.50"></text></g><g><title>ip_sublist_rcv_finish (4 samples, 0.04%)</title><rect x="97.2474%" y="453" width="0.0427%" height="15" fill="rgb(230,130,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="463.50"></text></g><g><title>ip_local_deliver_finish (4 samples, 0.04%)</title><rect x="97.2474%" y="437" width="0.0427%" height="15" fill="rgb(230,130,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="447.50"></text></g><g><title>ip_protocol_deliver_rcu (4 samples, 0.04%)</title><rect x="97.2474%" y="421" width="0.0427%" height="15" fill="rgb(230,130,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="431.50"></text></g><g><title>tcp_v4_rcv (4 samples, 0.04%)</title><rect x="97.2474%" y="405" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="415.50"></text></g><g><title>tcp_v4_do_rcv (4 samples, 0.04%)</title><rect x="97.2474%" y="389" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="399.50"></text></g><g><title>tcp_rcv_established (4 samples, 0.04%)</title><rect x="97.2474%" y="373" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="9115" fg:w="4"/><text x="97.4557%" y="383.50"></text></g><g><title>tcp_validate_incoming (1 samples, 0.01%)</title><rect x="97.2794%" y="357" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9118" fg:w="1"/><text x="97.4878%" y="367.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.2794%" y="341" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9118" fg:w="1"/><text x="97.4878%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.2794%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9118" fg:w="1"/><text x="97.4878%" y="335.50"></text></g><g><title>TCP_INVALID_SEQUENCE (1 samples, 0.01%)</title><rect x="97.2794%" y="309" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="9118" fg:w="1"/><text x="97.4878%" y="319.50"></text></g><g><title>ip6_input_finish (2 samples, 0.02%)</title><rect x="97.2901%" y="485" width="0.0213%" height="15" fill="rgb(235,135,0)" fg:x="9119" fg:w="2"/><text x="97.4984%" y="495.50"></text></g><g><title>ip6_protocol_deliver_rcu (2 samples, 0.02%)</title><rect x="97.2901%" y="469" width="0.0213%" height="15" fill="rgb(235,135,0)" fg:x="9119" fg:w="2"/><text x="97.4984%" y="479.50"></text></g><g><title>tcp_v6_rcv (2 samples, 0.02%)</title><rect x="97.2901%" y="453" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="9119" fg:w="2"/><text x="97.4984%" y="463.50"></text></g><g><title>tcp_v6_do_rcv (2 samples, 0.02%)</title><rect x="97.2901%" y="437" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="9119" fg:w="2"/><text x="97.4984%" y="447.50"></text></g><g><title>tcp_rcv_established (2 samples, 0.02%)</title><rect x="97.2901%" y="421" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="9119" fg:w="2"/><text x="97.4984%" y="431.50"></text></g><g><title>tcp_validate_incoming (2 samples, 0.02%)</title><rect x="97.2901%" y="405" width="0.0213%" height="15" fill="rgb(237,137,0)" fg:x="9119" fg:w="2"/><text x="97.4984%" y="415.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="97.2901%" y="389" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="9119" fg:w="2"/><text x="97.4984%" y="399.50"></text></g><g><title>kfree_skb_reason (2 samples, 0.02%)</title><rect x="97.2901%" y="373" width="0.0213%" height="15" fill="rgb(229,129,0)" fg:x="9119" fg:w="2"/><text x="97.4984%" y="383.50"></text></g><g><title>TCP_INVALID_SEQUENCE (2 samples, 0.02%)</title><rect x="97.2901%" y="357" width="0.0213%" height="15" fill="rgb(93,239,93)" fg:x="9119" fg:w="2"/><text x="97.4984%" y="367.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.3114%" y="405" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9121" fg:w="1"/><text x="97.5198%" y="415.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.3114%" y="389" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9121" fg:w="1"/><text x="97.5198%" y="399.50"></text></g><g><title>TCP_OLD_DATA (1 samples, 0.01%)</title><rect x="97.3114%" y="373" width="0.0107%" height="15" fill="rgb(93,239,93)" fg:x="9121" fg:w="1"/><text x="97.5198%" y="383.50"></text></g><g><title>tcp_rcv_established (4 samples, 0.04%)</title><rect x="97.3114%" y="421" width="0.0427%" height="15" fill="rgb(237,137,0)" fg:x="9121" fg:w="4"/><text x="97.5198%" y="431.50"></text></g><g><title>tcp_validate_incoming (3 samples, 0.03%)</title><rect x="97.3221%" y="405" width="0.0320%" height="15" fill="rgb(237,137,0)" fg:x="9122" fg:w="3"/><text x="97.5304%" y="415.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.3221%" y="389" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9122" fg:w="3"/><text x="97.5304%" y="399.50"></text></g><g><title>kfree_skb_reason (3 samples, 0.03%)</title><rect x="97.3221%" y="373" width="0.0320%" height="15" fill="rgb(229,129,0)" fg:x="9122" fg:w="3"/><text x="97.5304%" y="383.50"></text></g><g><title>TCP_INVALID_SEQUENCE (3 samples, 0.03%)</title><rect x="97.3221%" y="357" width="0.0320%" height="15" fill="rgb(93,239,93)" fg:x="9122" fg:w="3"/><text x="97.5304%" y="367.50"></text></g><g><title>__napi_poll (94 samples, 1.00%)</title><rect x="96.3619%" y="533" width="1.0029%" height="15" fill="rgb(231,131,0)" fg:x="9032" fg:w="94"/><text x="96.5702%" y="543.50"></text></g><g><title>process_backlog (7 samples, 0.07%)</title><rect x="97.2901%" y="517" width="0.0747%" height="15" fill="rgb(242,142,0)" fg:x="9119" fg:w="7"/><text x="97.4984%" y="527.50"></text></g><g><title>__netif_receive_skb_one_core (7 samples, 0.07%)</title><rect x="97.2901%" y="501" width="0.0747%" height="15" fill="rgb(231,131,0)" fg:x="9119" fg:w="7"/><text x="97.4984%" y="511.50"></text></g><g><title>ip_local_deliver_finish (5 samples, 0.05%)</title><rect x="97.3114%" y="485" width="0.0533%" height="15" fill="rgb(230,130,0)" fg:x="9121" fg:w="5"/><text x="97.5198%" y="495.50"></text></g><g><title>ip_protocol_deliver_rcu (5 samples, 0.05%)</title><rect x="97.3114%" y="469" width="0.0533%" height="15" fill="rgb(230,130,0)" fg:x="9121" fg:w="5"/><text x="97.5198%" y="479.50"></text></g><g><title>tcp_v4_rcv (5 samples, 0.05%)</title><rect x="97.3114%" y="453" width="0.0533%" height="15" fill="rgb(237,137,0)" fg:x="9121" fg:w="5"/><text x="97.5198%" y="463.50"></text></g><g><title>tcp_v4_do_rcv (5 samples, 0.05%)</title><rect x="97.3114%" y="437" width="0.0533%" height="15" fill="rgb(237,137,0)" fg:x="9121" fg:w="5"/><text x="97.5198%" y="447.50"></text></g><g><title>tcp_rcv_state_process (1 samples, 0.01%)</title><rect x="97.3541%" y="421" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9125" fg:w="1"/><text x="97.5624%" y="431.50"></text></g><g><title>tcp_data_queue (1 samples, 0.01%)</title><rect x="97.3541%" y="405" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9125" fg:w="1"/><text x="97.5624%" y="415.50"></text></g><g><title>tcp_fin (1 samples, 0.01%)</title><rect x="97.3541%" y="389" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9125" fg:w="1"/><text x="97.5624%" y="399.50"></text></g><g><title>inet_csk_destroy_sock (1 samples, 0.01%)</title><rect x="97.3541%" y="373" width="0.0107%" height="15" fill="rgb(239,139,0)" fg:x="9125" fg:w="1"/><text x="97.5624%" y="383.50"></text></g><g><title>sk_stream_kill_queues (1 samples, 0.01%)</title><rect x="97.3541%" y="357" width="0.0107%" height="15" fill="rgb(222,122,0)" fg:x="9125" fg:w="1"/><text x="97.5624%" y="367.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.3541%" y="341" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9125" fg:w="1"/><text x="97.5624%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="97.3541%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9125" fg:w="1"/><text x="97.5624%" y="335.50"></text></g><g><title>NOT_SPECIFIED (1 samples, 0.01%)</title><rect x="97.3541%" y="309" width="0.0107%" height="15" fill="rgb(90,237,90)" fg:x="9125" fg:w="1"/><text x="97.5624%" y="319.50"></text></g><g><title>ret_from_fork (340 samples, 3.63%)</title><rect x="96.3619%" y="629" width="3.6274%" height="15" fill="rgb(235,135,0)" fg:x="9032" fg:w="340"/><text x="96.5702%" y="639.50">ret_f..</text></g><g><title>kthread (340 samples, 3.63%)</title><rect x="96.3619%" y="613" width="3.6274%" height="15" fill="rgb(223,123,0)" fg:x="9032" fg:w="340"/><text x="96.5702%" y="623.50">kthre..</text></g><g><title>smpboot_thread_fn (340 samples, 3.63%)</title><rect x="96.3619%" y="597" width="3.6274%" height="15" fill="rgb(225,125,0)" fg:x="9032" fg:w="340"/><text x="96.5702%" y="607.50">smpbo..</text></g><g><title>run_ksoftirqd (340 samples, 3.63%)</title><rect x="96.3619%" y="581" width="3.6274%" height="15" fill="rgb(234,134,0)" fg:x="9032" fg:w="340"/><text x="96.5702%" y="591.50">run_k..</text></g><g><title>__do_softirq (340 samples, 3.63%)</title><rect x="96.3619%" y="565" width="3.6274%" height="15" fill="rgb(230,130,0)" fg:x="9032" fg:w="340"/><text x="96.5702%" y="575.50">__do_..</text></g><g><title>net_rx_action (340 samples, 3.63%)</title><rect x="96.3619%" y="549" width="3.6274%" height="15" fill="rgb(244,144,0)" fg:x="9032" fg:w="340"/><text x="96.5702%" y="559.50">net_r..</text></g><g><title>napi_consume_skb (246 samples, 2.62%)</title><rect x="97.3648%" y="533" width="2.6246%" height="15" fill="rgb(238,138,0)" fg:x="9126" fg:w="246"/><text x="97.5731%" y="543.50">nap..</text></g><g><title>skb_release_data (246 samples, 2.62%)</title><rect x="97.3648%" y="517" width="2.6246%" height="15" fill="rgb(230,130,0)" fg:x="9126" fg:w="246"/><text x="97.5731%" y="527.50">skb..</text></g><g><title>kfree_skb_reason (246 samples, 2.62%)</title><rect x="97.3648%" y="501" width="2.6246%" height="15" fill="rgb(229,129,0)" fg:x="9126" fg:w="246"/><text x="97.5731%" y="511.50">kfr..</text></g><g><title>kfree_skb_reason (246 samples, 2.62%)</title><rect x="97.3648%" y="485" width="2.6246%" height="15" fill="rgb(229,129,0)" fg:x="9126" fg:w="246"/><text x="97.5731%" y="495.50">kfr..</text></g><g><title>NOT_SPECIFIED (246 samples, 2.62%)</title><rect x="97.3648%" y="469" width="2.6246%" height="15" fill="rgb(90,237,90)" fg:x="9126" fg:w="246"/><text x="97.5731%" y="479.50">NOT..</text></g><g><title>all (9,373 samples, 100%)</title><rect x="0.0000%" y="645" width="100.0000%" height="15" fill="rgb(255,130,130)" fg:x="0" fg:w="9373"/><text x="0.2083%" y="655.50"></text></g><g><title>secondary_startup_64_no_verify (1 samples, 0.01%)</title><rect x="99.9893%" y="629" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="639.50"></text></g><g><title>[vmlinux-6.1.38-cloudflare-2023.7.3] (1 samples, 0.01%)</title><rect x="99.9893%" y="613" width="0.0107%" height="15" fill="rgb(240,140,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="623.50"></text></g><g><title>cpu_startup_entry (1 samples, 0.01%)</title><rect x="99.9893%" y="597" width="0.0107%" height="15" fill="rgb(223,123,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="607.50"></text></g><g><title>do_idle (1 samples, 0.01%)</title><rect x="99.9893%" y="581" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="591.50"></text></g><g><title>flush_smp_call_function_queue (1 samples, 0.01%)</title><rect x="99.9893%" y="565" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="575.50"></text></g><g><title>do_softirq (1 samples, 0.01%)</title><rect x="99.9893%" y="549" width="0.0107%" height="15" fill="rgb(243,143,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="559.50"></text></g><g><title>__do_softirq (1 samples, 0.01%)</title><rect x="99.9893%" y="533" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="543.50"></text></g><g><title>net_rx_action (1 samples, 0.01%)</title><rect x="99.9893%" y="517" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="527.50"></text></g><g><title>__napi_poll (1 samples, 0.01%)</title><rect x="99.9893%" y="501" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="511.50"></text></g><g><title>mlx5e_napi_poll (1 samples, 0.01%)</title><rect x="99.9893%" y="485" width="0.0107%" height="15" fill="rgb(221,121,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="495.50"></text></g><g><title>napi_complete_done (1 samples, 0.01%)</title><rect x="99.9893%" y="469" width="0.0107%" height="15" fill="rgb(238,138,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="479.50"></text></g><g><title>netif_receive_skb_list_internal (1 samples, 0.01%)</title><rect x="99.9893%" y="453" width="0.0107%" height="15" fill="rgb(244,144,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="463.50"></text></g><g><title>__netif_receive_skb_list_core (1 samples, 0.01%)</title><rect x="99.9893%" y="437" width="0.0107%" height="15" fill="rgb(231,131,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="447.50"></text></g><g><title>ip_list_rcv (1 samples, 0.01%)</title><rect x="99.9893%" y="421" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="431.50"></text></g><g><title>ip_sublist_rcv (1 samples, 0.01%)</title><rect x="99.9893%" y="405" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="415.50"></text></g><g><title>ip_sublist_rcv_finish (1 samples, 0.01%)</title><rect x="99.9893%" y="389" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="399.50"></text></g><g><title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="99.9893%" y="373" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="383.50"></text></g><g><title>ip_protocol_deliver_rcu (1 samples, 0.01%)</title><rect x="99.9893%" y="357" width="0.0107%" height="15" fill="rgb(230,130,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="367.50"></text></g><g><title>tcp_v4_rcv (1 samples, 0.01%)</title><rect x="99.9893%" y="341" width="0.0107%" height="15" fill="rgb(237,137,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="351.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="99.9893%" y="325" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="335.50"></text></g><g><title>kfree_skb_reason (1 samples, 0.01%)</title><rect x="99.9893%" y="309" width="0.0107%" height="15" fill="rgb(229,129,0)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="319.50"></text></g><g><title>NO_SOCKET (1 samples, 0.01%)</title><rect x="99.9893%" y="293" width="0.0107%" height="15" fill="rgb(81,228,81)" fg:x="9372" fg:w="1"/><text x="100.1977%" y="303.50"></text></g></svg></svg>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment