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
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="694" onload="init(evt)" viewBox="0 0 1200 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:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; 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 = true;
var truncate_text_right = true;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
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");
known_font_width = get_monospace_width(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.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
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 get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
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(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
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 (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;
var to_update_text = [];
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);
to_update_text.push(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);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
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_for_elements(el);
}
// 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" fill="rgb(0,0,0)" x="50.0000%" y="24.00">normal</text><text id="details" fill="rgb(0,0,0)" x="10" y="677.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="677.00"> </text><svg id="frames" x="10" width="1180" 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.2500%" 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.2500%" 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.2500%" 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.2500%" 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.2500%" 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.2500%" 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.2500%" 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.2500%" 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.2500%" 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.2500%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2927%" 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.2927%" 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.2927%" 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.2927%" 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.2927%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3033%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3354%" 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.3354%" 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.3354%" 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.3354%" 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.3354%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3247%" 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.3460%" 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.3460%" 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.3460%" 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.3460%" 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.3460%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.3247%" 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.3247%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6127%" 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.6234%" 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.6234%" 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.6234%" 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.6234%" 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.6234%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.7408%" 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.7408%" 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.7408%" 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.7514%" 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.7514%" 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.7514%" 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.7621%" 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.7621%" 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.7621%" 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.7621%" 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.7621%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.7408%" 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.7514%" 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.7834%" 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.7834%" 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.7834%" 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.7834%" 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.7834%" 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.7834%" 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.7834%" 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.7834%" 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.7941%" 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.7941%" 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.7941%" 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.7941%" 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.7301%" 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.7941%" 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.7941%" 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.7941%" 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.7941%" 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.8048%" 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.8048%" 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.8048%" 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.8048%" 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.8048%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.7301%" 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.8155%" 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.8155%" 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.8155%" 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.8155%" 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.8155%" 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.3247%" 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.3247%" 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.3247%" 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.1142%" 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.1142%" 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.1142%" 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.1142%" 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.1142%" 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.1142%" 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.1142%" 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.1142%" 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.1142%" 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.1142%" 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.1142%" 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.1142%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2635%" 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.2849%" 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.2849%" 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.2849%" 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.2849%" 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.2956%" 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.2956%" 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.2956%" 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.2956%" 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.2849%" 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.2849%" 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.2849%" 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.2849%" 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.2849%" 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.3062%" 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.3062%" 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.3062%" 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.3062%" 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.3062%" 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.2849%" 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.2849%" 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.2849%" 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.2849%" 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.3169%" 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.3169%" 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.3169%" 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.3169%" 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.3169%" 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.2635%" 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.2849%" 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.2849%" 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.2849%" 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.2849%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.3489%" 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.2713%" 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.2713%" 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.2713%" 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.2713%" 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.3596%" 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.3596%" 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.3596%" 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.3596%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.6903%" 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.7116%" 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.7116%" 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.7116%" 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.7116%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7145%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7252%" 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.7145%" 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.7145%" 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.7252%" 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.7359%" 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.7359%" 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.7359%" 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.7359%" 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.7359%" 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.7465%" 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.7465%" 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.7465%" 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.7465%" 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.7465%" 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.7465%" 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.7465%" 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.7465%" 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.7465%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7679%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7785%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7999%" 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.7999%" 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.7999%" 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.7999%" 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.7999%" 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.7999%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.7892%" 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.8105%" 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.8105%" 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.8105%" 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.8105%" 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.8105%" 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.7892%" 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.7892%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.8959%" 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.7465%" 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.7892%" 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.9279%" 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.9279%" 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.9279%" 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.9279%" 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.9279%" 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.7145%" y="607.50">__..</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.7145%" y="591.50">__..</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.7465%" y="575.50">in..</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.1946%" y="559.50">u..</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.1946%" 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.1946%" y="527.50">s..</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.1946%" y="511.50">k..</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.1946%" y="495.50">k..</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.1946%" y="479.50">N..</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.5525%" 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.5525%" 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.5525%" 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.5525%" 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.5525%" 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.5525%" 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.5525%" 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.5525%" 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.5525%" 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.5525%" 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.5525%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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="6.0112%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0432%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0539%" 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.0752%" 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.0752%" 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.0752%" 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.0752%" 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.0752%" 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.0752%" 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.0752%" 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.0752%" 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.0752%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1179%" 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.1179%" 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.1179%" 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.1179%" 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.1179%" 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.1179%" 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.1179%" 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.1179%" 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.1179%" 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.1179%" 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.1179%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.1286%" 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.1286%" 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.1286%" 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.1286%" 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.1286%" 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.3420%" 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.3420%" 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.3420%" 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.3420%" 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.3420%" 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.3420%" 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.3420%" 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.3420%" 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.3420%" 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.3420%" 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.3420%" 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.1072%" 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.3420%" 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.3420%" 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.3420%" 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.3526%" 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.3526%" 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.3526%" 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.3526%" 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.3526%" 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.3526%" 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.3526%" 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.3526%" 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.3526%" 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.3526%" 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.3526%" 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.0752%" 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.1072%" 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.1072%" 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.1072%" 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.1072%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3740%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.3846%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.4487%" 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.0539%" 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.0539%" 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.0539%" 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.4487%" 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.4487%" 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.4487%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.4593%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5660%" 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.5660%" 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.5660%" 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.5660%" 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.5660%" 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.5660%" 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.5660%" 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.5660%" 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.5660%" 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.5660%" 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.5660%" 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.5660%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5553%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.5980%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6087%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6194%" 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.6300%" 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.6300%" 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.6300%" 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.6300%" 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.6300%" 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.6300%" 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.6300%" 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.6300%" 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.6300%" 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.6300%" 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.6300%" 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.6300%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6407%" 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.6300%" y="559.50"></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.6300%" y="543.50"></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.6300%" y="527.50"></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.6514%" y="511.50"></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.6514%" y="495.50"></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.6514%" y="479.50"></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.6514%" y="463.50"></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.6514%" y="447.50"></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.3904%" 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.3904%" 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.3904%" 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.3904%" 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.3904%" 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.3904%" 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.3904%" 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.3904%" 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.3904%" 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.4011%" 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.4011%" 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.4011%" 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.4011%" 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.4011%" 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.4011%" 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.4011%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4331%" 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.4437%" 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.4437%" 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.4437%" 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.4437%" 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.4437%" 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.4331%" 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.4331%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.5078%" 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.6300%" y="607.50">k..</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.6300%" y="591.50">v..</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.6300%" y="575.50">s..</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.3904%" 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.3904%" 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.4331%" 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.5184%" 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.5184%" 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.5184%" 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.5184%" 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.5184%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6251%" 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.6358%" 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.6358%" 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.6358%" 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.6358%" 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.6358%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6678%" 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.6785%" 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.6785%" 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.6785%" 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.6785%" 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.6785%" 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.6785%" 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.6785%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.6998%" 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.6998%" 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.6998%" 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.6998%" 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.7211%" 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.7211%" 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.7211%" 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.7211%" 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.7211%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.7211%" 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.7425%" 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.7425%" 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.7425%" 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.7425%" 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.7425%" 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.7425%" 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.7425%" 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.6891%" 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.7531%" 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.7531%" 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.7531%" 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.7531%" 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.7531%" 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.7531%" 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.7531%" 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.7531%" 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.7531%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.7958%" 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.7958%" 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.7958%" 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.7958%" 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.7958%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.6891%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1586%" 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.1692%" 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.1692%" 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.1692%" 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.1692%" 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.1692%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2119%" 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.2332%" 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.2332%" 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.2332%" 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.2332%" 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.2332%" 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.2332%" 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.2332%" 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.2332%" 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.2332%" 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.2332%" 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.2332%" 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.6891%" 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.2439%" 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.2439%" 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.2439%" 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.2439%" 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.2439%" 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.2439%" 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.2439%" 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.2439%" 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.2439%" 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.2439%" 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.2439%" 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.2439%" 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.6678%" 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.6891%" 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.6891%" 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.6891%" 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.6891%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.2546%" 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.6251%" 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.6251%" 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.2653%" 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.2653%" 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.2653%" 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.2653%" 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.2759%" 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.2759%" 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.2759%" 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.2759%" 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.3079%" 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.3079%" 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.3079%" 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.3079%" 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.2759%" 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.2759%" 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.2759%" 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.2759%" 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.2759%" 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.2759%" 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.2759%" 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.3399%" 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.3399%" 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.3399%" 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.3399%" 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.3399%" 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.3399%" 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.3399%" 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.3399%" 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.2759%" 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.2759%" 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.2759%" 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.2759%" 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.2759%" 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.3506%" 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.3506%" 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.3506%" 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.3506%" 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.3506%" 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.3506%" 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.3506%" 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.3506%" 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.3506%" 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.3506%" 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.3506%" 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.3506%" 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.2759%" 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.2759%" 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.2759%" 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.2759%" 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.3719%" 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.3719%" 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.3719%" 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.3719%" 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.3719%" 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.4040%" 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.4040%" 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.4040%" 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.4893%" 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.4893%" 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.4893%" 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.5000%" 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.5000%" 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.5000%" 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.6067%" 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.6067%" 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.6067%" 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.6067%" 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.5000%" 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.8414%" 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.8414%" 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.8414%" 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.8414%" 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="10.0014%" 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="10.0014%" 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="10.0014%" 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="10.0014%" 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="10.0014%" 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="10.0121%" 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="10.0228%" 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="10.0121%" y="431.50">k..</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="10.0121%" y="415.50">k..</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.0441%" y="399.50">T..</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.4040%" y="511.50">ip..</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.4040%" y="495.50">ip..</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.4040%" y="479.50">tc..</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.4893%" y="463.50">tc..</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="10.0014%" y="447.50">t..</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.1459%" 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.1459%" 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.1459%" 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.1459%" 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.2632%" 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.2632%" 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.2632%" 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.8714%" 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.8714%" 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.8714%" 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.9887%" 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.9887%" 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.9887%" 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.0421%" 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.0421%" 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.0421%" 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.0421%" 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.0421%" 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.0421%" 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.9887%" 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.0634%" 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.0634%" 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.0634%" 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.0634%" 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.1488%" 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.1488%" 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.1488%" 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.1808%" 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.9809%" 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.9809%" 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.9809%" 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.9809%" 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.9809%" 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.9809%" 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.6251%" y="607.50">ksys_wr..</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.6251%" y="591.50">vfs_wri..</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.2759%" y="575.50">tun_ch..</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.2759%" y="559.50">tun_ge..</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.4040%" y="543.50">netif..</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.4040%" y="527.50">__net..</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.2632%" 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.2632%" 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.2632%" 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.8714%" 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.1488%" 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.9916%" 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.9916%" 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.9916%" 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.9916%" 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.0769%" y="463.50">__kf..</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.0769%" y="447.50">skb_..</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.0769%" y="431.50">kfre..</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.0769%" y="415.50">kfre..</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.0769%" y="399.50">NOT_..</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.6617%" 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.6617%" 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.6617%" 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.6617%" 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.6617%" 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.6617%" 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.6617%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.6724%" 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.7820%" 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.7820%" 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.7820%" 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.7820%" 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.7820%" 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.6724%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8033%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.6724%" 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.6724%" 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.6724%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8140%" 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.8246%" 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.8246%" 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.8246%" 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.8246%" 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.8246%" 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.0769%" y="511.50">inet_r..</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.0769%" y="495.50">tcp_cl..</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.0769%" y="479.50">__tcp_..</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.8353%" 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.8353%" 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.8353%" 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.8353%" 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.8353%" 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.8353%" 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.2500%" 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.2500%" 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.0769%" y="607.50">syscall_exit_t..</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.0769%" y="591.50">exit_to_user_m..</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.0769%" 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.0769%" 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.0769%" 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.0769%" 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.8566%" y="511.50">unix_r..</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.8566%" y="495.50">unix_r..</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.8566%" y="479.50">kfree_..</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.8566%" y="463.50">kfree_..</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.8566%" y="447.50">NOT_SP..</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.6257%" 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.6257%" 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.6257%" 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.6257%" 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.6363%" 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.6363%" 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.6363%" 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.6363%" 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.6363%" 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.6577%" 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.6577%" 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.6577%" 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.6790%" 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.7110%" 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.7110%" 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.7110%" 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.7217%" 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.7217%" 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.7217%" 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.7537%" 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.7217%" 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.7643%" 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.7643%" 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.7643%" 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.7643%" 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.6257%" 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.6257%" 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.6257%" 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.6257%" 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.6257%" 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.6577%" 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.7110%" 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.8177%" 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.8177%" 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.8177%" 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.8177%" 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.6257%" 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.6257%" 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.6257%" 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.6257%" 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.8604%" 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.8604%" 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.8604%" 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.8604%" 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.8604%" 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.8604%" 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.8604%" 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.8604%" 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.8604%" 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.8604%" 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.8604%" 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.8604%" 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.8924%" 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.8924%" 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.8924%" 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.8924%" 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.8924%" 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.2338%" 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.2338%" 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.2338%" 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.2338%" 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.2338%" 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.2551%" 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.2551%" 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.2551%" 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.2658%" 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.2658%" 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.2658%" 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.2658%" 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.3085%" 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.3085%" 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.3085%" 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.3085%" 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.8924%" 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.8924%" 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.8924%" 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.2338%" 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.2338%" 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.2551%" 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.2551%" 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.3191%" 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.3191%" 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.3191%" 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.3191%" 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.4045%" 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.4045%" 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.4045%" 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.4045%" 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.4152%" 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.4152%" 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.4152%" 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.4152%" 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.4152%" 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.4258%" 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.4258%" 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.4258%" 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.6257%" 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.6257%" 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.6257%" 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.8924%" 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.8924%" 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.4045%" 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.4045%" 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.4045%" 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.4045%" 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.4045%" 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.4258%" 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.4365%" 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.4365%" 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.4365%" 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.4365%" 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.4472%" 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.4472%" 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.4472%" 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.4685%" 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.4685%" 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.4685%" 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.4898%" 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.5005%" 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.5005%" 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.4472%" 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.4472%" 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.4472%" 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.4472%" 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.4472%" 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.4472%" 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.4472%" 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.4685%" 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.5005%" 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.5005%" 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.5859%" 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.5859%" 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.5859%" 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.5859%" 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.4472%" 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.4472%" 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.4472%" 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.4472%" 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.6072%" 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.6072%" 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.6072%" 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.6072%" 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.6072%" 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.6072%" 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.6072%" 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.6072%" 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.6072%" 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.6072%" 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.6072%" 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.6072%" 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.6179%" 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.6179%" 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.6179%" 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.6179%" 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.6179%" 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.8981%" 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.8981%" 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.8981%" 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.8981%" 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.9088%" 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.9088%" 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.9088%" 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.9088%" 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.9195%" 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="27.0184%" 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="27.0184%" 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="27.0184%" y="399.50">kfr..</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="27.0184%" y="383.50">kfr..</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="27.0184%" 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.2831%" 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.2831%" y="415.50"></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.2831%" y="399.50"></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.2539%" 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.8941%" 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.8941%" 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.8941%" 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.9076%" 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.9183%" y="351.50">TCP_OL..</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.9183%" y="383.50">kfree_..</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.9183%" y="367.50">kfree_..</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.7620%" 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.8474%" 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.8474%" 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.8474%" 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.8474%" 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.8794%" 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.8794%" 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.8794%" 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.8794%" 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.8794%" 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.8900%" y="335.50">TCP_IN..</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.9183%" y="399.50">tcp_rcv_establi..</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.8900%" y="383.50">tcp_va..</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.8900%" y="367.50">kfree_..</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.8900%" y="351.50">kfree_..</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.6590%" 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.1391%" 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.1391%" 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.1391%" 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.1391%" 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.1391%" 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.0994%" 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.2274%" 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.5901%" 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.6435%" 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.0994%" 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.0994%" 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.9422%" 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.8704%" 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.8704%" 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.8704%" 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.8704%" 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.8704%" 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.8704%" 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.8704%" 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.7375%" 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.7375%" 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.7375%" 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.6179%" 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.6179%" 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.6179%" 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.8981%" 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.8981%" 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.2831%" 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.8941%" 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.1391%" y="399.50">tcp_rc..</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.7375%" 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.7695%" 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.7695%" 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.7695%" 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.7695%" 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.7695%" 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.7695%" 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.9508%" 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.9508%" 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.9508%" 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.9508%" 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.9508%" 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.0469%" 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.0469%" 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.0469%" 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.0469%" 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.1109%" 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.1109%" 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.1109%" 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.1109%" 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.7724%" 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.7724%" 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.7724%" 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.7724%" 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.7724%" 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.4338%" 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.4338%" 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.4338%" 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.6579%" 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.8819%" 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.8819%" 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.8819%" 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.1593%" 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.1593%" 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.1593%" 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.8421%" 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.1593%" 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.9061%" y="383.50">t..</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.9061%" y="367.50">k..</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.9061%" y="351.50">k..</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.9061%" y="335.50">T..</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.1573%" 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.1573%" 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.1573%" 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.1573%" 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.1573%" 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.3387%" 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.3600%" 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.4347%" 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.3387%" 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.3387%" 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.4453%" 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.5094%" 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.5094%" 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.5094%" 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.5094%" 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.5094%" 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.5094%" 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.5094%" 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.7441%" 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.9508%" y="511.50">ipv6_li..</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.9508%" y="495.50">ip6_sub..</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.9508%" y="479.50">ip6_sub..</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.0469%" y="463.50">ip6_inp..</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.0469%" y="447.50">ip6_pro..</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.4338%" y="431.50">tcp_v..</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.8819%" y="415.50">tcp_..</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.1573%" 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.7441%" 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.7441%" 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.7441%" 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.7654%" 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.6257%" 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.4472%" 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.6179%" 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.6179%" 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.7868%" 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.7868%" 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.7868%" 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.7868%" 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.7868%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.7974%" 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.8081%" 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.8081%" 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.8081%" 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.8081%" 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.8081%" 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.8081%" 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.8081%" 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.8081%" 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.8081%" 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.8188%" 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.8188%" 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.8188%" 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.8188%" 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.8508%" 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.8508%" 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.8508%" 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.8508%" 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.6257%" 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.8081%" 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.8081%" 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.8188%" 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.8188%" 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.8188%" 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.8188%" 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.9575%" 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.9575%" 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.9575%" 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.9575%" 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.9575%" 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.9575%" 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.9575%" 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.9575%" 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.6257%" 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.9681%" 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.9681%" 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.9681%" 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.9681%" 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.9681%" 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.5906%" 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.5906%" 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.5906%" 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.5906%" 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.6257%" 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.6257%" 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.5906%" 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.5906%" 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.5906%" 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.5906%" 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.5906%" 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.5906%" 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.6012%" 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.6012%" 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.6012%" 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.6012%" 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.6012%" 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.6119%" 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.6119%" 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.6119%" 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.6119%" 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.6119%" 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.6332%" 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.6332%" 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.6332%" 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.6439%" 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.6439%" 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.6439%" 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.6119%" 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.6119%" 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.6119%" 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.6119%" 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.6119%" 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.6119%" 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.6119%" 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.6119%" 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.6119%" 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.6332%" 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.6439%" 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.6439%" 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.6546%" 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.6546%" 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.6546%" 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.6546%" 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.6652%" 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.6652%" 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.6652%" 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.6652%" 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.7292%" 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.7292%" 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.7292%" 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.7292%" 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.6119%" 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.6119%" 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.6119%" 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.6652%" 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.6652%" 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.6652%" 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.6652%" 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.6652%" 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.6652%" 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.6652%" 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.6652%" 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.6652%" 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.7399%" 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.7399%" 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.7399%" 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.7399%" 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.7399%" 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.7399%" 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.7399%" 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.7399%" 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.7506%" 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.7506%" 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.7506%" 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.7506%" 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.7506%" 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.8039%" 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.8039%" 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.8039%" 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.8039%" 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.8253%" 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.8253%" 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.8253%" 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.8253%" 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.8253%" 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.8893%" 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.8893%" 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.8893%" 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.9000%" 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.9746%" 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.9746%" 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.9746%" 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.9853%" 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.9853%" 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.9853%" 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.0813%" 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.9853%" 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.0813%" 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.0813%" 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.0813%" 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.2094%" 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.2307%" 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.2307%" 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.2307%" 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.2307%" 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.2307%" 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.7506%" 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.7506%" 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.7506%" 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.8039%" 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.8039%" 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.8893%" 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.9746%" 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.2307%" 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.2627%" 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.2627%" 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.2627%" 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.2627%" 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.2627%" 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.2627%" 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.2627%" 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.2734%" 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.2734%" 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.2734%" 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.2734%" 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.3054%" 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.3054%" 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.3054%" 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.3054%" 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.3054%" 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.3374%" 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.3374%" 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.3374%" 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.3480%" 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.3587%" 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.3587%" 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.3587%" 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.3587%" 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.3694%" 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.3694%" 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.3694%" 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.3694%" 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.6119%" 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.7506%" 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.7506%" 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.7506%" 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.2734%" 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.2734%" 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.2734%" 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.2734%" 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.2734%" 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.3374%" 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.3587%" 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.4654%" 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.4654%" 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.4654%" 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.4654%" 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.4654%" 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.4654%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.4974%" 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.5294%" 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.5294%" 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.5294%" 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.5294%" 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.5401%" 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.5401%" 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.5401%" 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.5401%" 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.5401%" 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.5401%" 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.5401%" 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.5401%" 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.5401%" 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.5614%" 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.5614%" 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.5614%" 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.5614%" 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.5721%" 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.5721%" 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.5721%" 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.5721%" 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.6119%" 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.5401%" 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.5401%" 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.5614%" 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.5614%" 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.5614%" 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.5614%" 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.6041%" 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.6041%" 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.6041%" 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.6041%" 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.6041%" 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.6041%" 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.6041%" 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.6041%" 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.6119%" y="639.50">ret_..</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.6119%" y="623.50">kthr..</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.6119%" y="607.50">smpb..</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.6119%" y="591.50">run_..</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.6119%" 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.6119%" y="559.50">net_..</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.6148%" y="543.50">na..</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.6148%" y="527.50">sk..</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.6148%" y="511.50">kf..</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.6148%" y="495.50">kf..</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.6148%" y="479.50">NO..</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.2500%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.2393%" 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.
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