Skip to content

Instantly share code, notes, and snippets.

@misha354
Created January 22, 2019 17:14
Show Gist options
  • Save misha354/6c4200d709af921412ea51bc9ab2d982 to your computer and use it in GitHub Desktop.
Save misha354/6c4200d709af921412ea51bc9ab2d982 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
<?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="710" onload="init(evt)" viewBox="0 0 1200 710" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs >
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
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.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.style["opacity"] = "1.0";
searchbtn.firstChild.nodeValue = "Reset Search"
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="710.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="693" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="693" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mod_timer_pending (1 samples, 0.01%)</title><rect x="454.8" y="165" width="0.1" height="15.0" fill="rgb(210,151,42)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>socket_send (28 samples, 0.31%)</title><rect x="446.5" y="533" width="3.7" height="15.0" fill="rgb(232,73,16)" rx="2" ry="2" />
<text text-anchor="" x="449.46" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_interrupt (1 samples, 0.01%)</title><rect x="581.8" y="501" width="0.1" height="15.0" fill="rgb(237,208,15)" rx="2" ry="2" />
<text text-anchor="" x="584.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_timer_detach (15 samples, 0.17%)</title><rect x="413.5" y="549" width="2.0" height="15.0" fill="rgb(238,145,16)" rx="2" ry="2" />
<text text-anchor="" x="416.49" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.01%)</title><rect x="75.3" y="453" width="0.1" height="15.0" fill="rgb(218,174,11)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatasetiter_current (2 samples, 0.02%)</title><rect x="53.4" y="613" width="0.3" height="15.0" fill="rgb(211,105,44)" rx="2" ry="2" />
<text text-anchor="" x="56.43" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_towire (1 samples, 0.01%)</title><rect x="441.4" y="485" width="0.2" height="15.0" fill="rgb(242,67,51)" rx="2" ry="2" />
<text text-anchor="" x="444.43" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatatype_ismeta (1 samples, 0.01%)</title><rect x="53.7" y="613" width="0.1" height="15.0" fill="rgb(248,164,1)" rx="2" ry="2" />
<text text-anchor="" x="56.70" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_order_find (2 samples, 0.02%)</title><rect x="497.7" y="549" width="0.3" height="15.0" fill="rgb(210,66,21)" rx="2" ry="2" />
<text text-anchor="" x="500.71" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (13 samples, 0.15%)</title><rect x="117.4" y="469" width="1.7" height="15.0" fill="rgb(216,72,36)" rx="2" ry="2" />
<text text-anchor="" x="120.39" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="258.4" y="501" width="0.2" height="15.0" fill="rgb(247,79,2)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_enable (1 samples, 0.01%)</title><rect x="341.6" y="437" width="0.1" height="15.0" fill="rgb(209,72,29)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_ctl (130 samples, 1.46%)</title><rect x="20.2" y="597" width="17.2" height="15.0" fill="rgb(217,105,41)" rx="2" ry="2" />
<text text-anchor="" x="23.20" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_sendmsg (57 samples, 0.64%)</title><rect x="1112.1" y="517" width="7.6" height="15.0" fill="rgb(223,119,45)" rx="2" ry="2" />
<text text-anchor="" x="1115.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (1 samples, 0.01%)</title><rect x="454.8" y="277" width="0.1" height="15.0" fill="rgb(225,81,40)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_bts_enable_local (102 samples, 1.14%)</title><rect x="723.7" y="293" width="13.6" height="15.0" fill="rgb(246,26,43)" rx="2" ry="2" />
<text text-anchor="" x="726.75" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="318.7" y="469" width="0.1" height="15.0" fill="rgb(229,77,24)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_match_v3 (1 samples, 0.01%)</title><rect x="893.0" y="213" width="0.1" height="15.0" fill="rgb(239,42,54)" rx="2" ry="2" />
<text text-anchor="" x="895.98" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (6 samples, 0.07%)</title><rect x="892.3" y="309" width="0.8" height="15.0" fill="rgb(231,60,17)" rx="2" ry="2" />
<text text-anchor="" x="895.32" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (4 samples, 0.04%)</title><rect x="342.9" y="517" width="0.5" height="15.0" fill="rgb(213,178,24)" rx="2" ry="2" />
<text text-anchor="" x="345.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (11 samples, 0.12%)</title><rect x="37.5" y="549" width="1.5" height="15.0" fill="rgb(211,27,42)" rx="2" ry="2" />
<text text-anchor="" x="40.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="1140.1" y="149" width="0.1" height="15.0" fill="rgb(236,148,12)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="1108.8" y="501" width="0.2" height="15.0" fill="rgb(217,168,19)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_check (190 samples, 2.13%)</title><rect x="291.8" y="533" width="25.2" height="15.0" fill="rgb(209,62,36)" rx="2" ry="2" />
<text text-anchor="" x="294.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>socket_log.constprop.19 (1 samples, 0.01%)</title><rect x="75.7" y="613" width="0.1" height="15.0" fill="rgb(207,98,28)" rx="2" ry="2" />
<text text-anchor="" x="78.68" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendmsg (1 samples, 0.01%)</title><rect x="454.8" y="469" width="0.1" height="15.0" fill="rgb(211,48,20)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.01%)</title><rect x="97.8" y="325" width="0.1" height="15.0" fill="rgb(247,1,9)" rx="2" ry="2" />
<text text-anchor="" x="100.79" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_copy (1 samples, 0.01%)</title><rect x="48.1" y="613" width="0.2" height="15.0" fill="rgb(206,217,35)" rx="2" ry="2" />
<text text-anchor="" x="51.14" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_add (1 samples, 0.01%)</title><rect x="477.6" y="437" width="0.1" height="15.0" fill="rgb(243,100,53)" rx="2" ry="2" />
<text text-anchor="" x="480.58" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_rcv (3 samples, 0.03%)</title><rect x="892.6" y="261" width="0.4" height="15.0" fill="rgb(213,126,24)" rx="2" ry="2" />
<text text-anchor="" x="895.58" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="309.1" y="277" width="0.2" height="15.0" fill="rgb(209,144,29)" rx="2" ry="2" />
<text text-anchor="" x="312.14" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_init (1 samples, 0.01%)</title><rect x="287.7" y="533" width="0.1" height="15.0" fill="rgb(237,140,18)" rx="2" ry="2" />
<text text-anchor="" x="290.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_map_blocks (1 samples, 0.01%)</title><rect x="325.3" y="357" width="0.1" height="15.0" fill="rgb(221,192,31)" rx="2" ry="2" />
<text text-anchor="" x="328.29" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (4 samples, 0.04%)</title><rect x="57.5" y="533" width="0.6" height="15.0" fill="rgb(212,78,33)" rx="2" ry="2" />
<text text-anchor="" x="60.54" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towiresorted.isra.3 (4 samples, 0.04%)</title><rect x="76.3" y="613" width="0.6" height="15.0" fill="rgb(214,202,39)" rx="2" ry="2" />
<text text-anchor="" x="79.34" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.01%)</title><rect x="1151.6" y="117" width="0.1" height="15.0" fill="rgb(205,59,41)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_remainingregion (1 samples, 0.01%)</title><rect x="405.7" y="533" width="0.1" height="15.0" fill="rgb(221,78,34)" rx="2" ry="2" />
<text text-anchor="" x="408.67" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_wouldlog (4 samples, 0.04%)</title><rect x="392.2" y="549" width="0.5" height="15.0" fill="rgb(240,4,7)" rx="2" ry="2" />
<text text-anchor="" x="395.17" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_dbiterator_current (1 samples, 0.01%)</title><rect x="343.7" y="549" width="0.1" height="15.0" fill="rgb(246,182,15)" rx="2" ry="2" />
<text text-anchor="" x="346.70" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (17 samples, 0.19%)</title><rect x="436.1" y="501" width="2.3" height="15.0" fill="rgb(236,23,39)" rx="2" ry="2" />
<text text-anchor="" x="439.13" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.01%)</title><rect x="279.3" y="373" width="0.2" height="15.0" fill="rgb(208,113,22)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.80 (1 samples, 0.01%)</title><rect x="622.4" y="501" width="0.2" height="15.0" fill="rgb(249,92,36)" rx="2" ry="2" />
<text text-anchor="" x="625.45" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__compute_runnable_contrib (1 samples, 0.01%)</title><rect x="674.8" y="453" width="0.1" height="15.0" fill="rgb(234,209,42)" rx="2" ry="2" />
<text text-anchor="" x="677.75" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.01%)</title><rect x="646.3" y="453" width="0.1" height="15.0" fill="rgb(238,23,9)" rx="2" ry="2" />
<text text-anchor="" x="649.28" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (16 samples, 0.18%)</title><rect x="422.5" y="533" width="2.1" height="15.0" fill="rgb(215,49,50)" rx="2" ry="2" />
<text text-anchor="" x="425.49" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (27 samples, 0.30%)</title><rect x="546.6" y="629" width="3.5" height="15.0" fill="rgb(235,99,43)" rx="2" ry="2" />
<text text-anchor="" x="549.57" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.01%)</title><rect x="481.8" y="261" width="0.1" height="15.0" fill="rgb(249,129,31)" rx="2" ry="2" />
<text text-anchor="" x="484.81" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="886.4" y="469" width="0.1" height="15.0" fill="rgb(222,160,7)" rx="2" ry="2" />
<text text-anchor="" x="889.36" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.01%)</title><rect x="319.2" y="309" width="0.1" height="15.0" fill="rgb(205,195,39)" rx="2" ry="2" />
<text text-anchor="" x="322.20" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_dgram_sendmsg (1 samples, 0.01%)</title><rect x="75.3" y="533" width="0.1" height="15.0" fill="rgb(227,16,18)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (1 samples, 0.01%)</title><rect x="612.6" y="501" width="0.2" height="15.0" fill="rgb(223,156,13)" rx="2" ry="2" />
<text text-anchor="" x="615.65" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mempool_destroy (1 samples, 0.01%)</title><rect x="427.0" y="533" width="0.1" height="15.0" fill="rgb(250,151,24)" rx="2" ry="2" />
<text text-anchor="" x="429.99" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (1 samples, 0.01%)</title><rect x="583.0" y="517" width="0.1" height="15.0" fill="rgb(219,135,24)" rx="2" ry="2" />
<text text-anchor="" x="585.98" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="258.2" y="517" width="0.1" height="15.0" fill="rgb(222,15,12)" rx="2" ry="2" />
<text text-anchor="" x="261.16" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.34 (5 samples, 0.06%)</title><rect x="1127.9" y="309" width="0.7" height="15.0" fill="rgb(236,187,26)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_process_tick (1 samples, 0.01%)</title><rect x="672.9" y="373" width="0.1" height="15.0" fill="rgb(223,193,6)" rx="2" ry="2" />
<text text-anchor="" x="675.90" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_puttempname (3 samples, 0.03%)</title><rect x="315.2" y="501" width="0.4" height="15.0" fill="rgb(232,84,32)" rx="2" ry="2" />
<text text-anchor="" x="318.23" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (54 samples, 0.61%)</title><rect x="302.1" y="357" width="7.2" height="15.0" fill="rgb(207,94,13)" rx="2" ry="2" />
<text text-anchor="" x="305.12" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatatype_questiononly (1 samples, 0.01%)</title><rect x="403.6" y="517" width="0.1" height="15.0" fill="rgb(210,70,53)" rx="2" ry="2" />
<text text-anchor="" x="406.55" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (53 samples, 0.59%)</title><rect x="90.1" y="373" width="7.0" height="15.0" fill="rgb(227,106,5)" rx="2" ry="2" />
<text text-anchor="" x="93.11" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="99.5" y="485" width="0.1" height="15.0" fill="rgb(216,226,18)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (3 samples, 0.03%)</title><rect x="512.7" y="549" width="0.4" height="15.0" fill="rgb(232,197,0)" rx="2" ry="2" />
<text text-anchor="" x="515.67" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.01%)</title><rect x="326.1" y="517" width="0.1" height="15.0" fill="rgb(212,109,29)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.01%)</title><rect x="558.0" y="581" width="0.1" height="15.0" fill="rgb(243,29,11)" rx="2" ry="2" />
<text text-anchor="" x="560.96" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>utimes_common (7 samples, 0.08%)</title><rect x="58.3" y="549" width="1.0" height="15.0" fill="rgb(207,223,37)" rx="2" ry="2" />
<text text-anchor="" x="61.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (1 samples, 0.01%)</title><rect x="359.9" y="469" width="0.1" height="15.0" fill="rgb(217,150,27)" rx="2" ry="2" />
<text text-anchor="" x="362.86" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_usedregion (2 samples, 0.02%)</title><rect x="589.3" y="629" width="0.3" height="15.0" fill="rgb(224,74,20)" rx="2" ry="2" />
<text text-anchor="" x="592.34" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_towire (2 samples, 0.02%)</title><rect x="441.0" y="485" width="0.3" height="15.0" fill="rgb(206,106,28)" rx="2" ry="2" />
<text text-anchor="" x="444.03" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (8 samples, 0.09%)</title><rect x="254.3" y="501" width="1.1" height="15.0" fill="rgb(251,154,51)" rx="2" ry="2" />
<text text-anchor="" x="257.32" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.01%)</title><rect x="98.1" y="389" width="0.1" height="15.0" fill="rgb(229,12,50)" rx="2" ry="2" />
<text text-anchor="" x="101.06" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_totext (158 samples, 1.77%)</title><rect x="513.1" y="613" width="20.9" height="15.0" fill="rgb(216,71,27)" rx="2" ry="2" />
<text text-anchor="" x="516.07" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__qdisc_run (1 samples, 0.01%)</title><rect x="1142.7" y="277" width="0.2" height="15.0" fill="rgb(252,127,16)" rx="2" ry="2" />
<text text-anchor="" x="1145.73" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_sendmsg (1 samples, 0.01%)</title><rect x="454.8" y="389" width="0.1" height="15.0" fill="rgb(218,228,30)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>evict (3 samples, 0.03%)</title><rect x="325.7" y="437" width="0.4" height="15.0" fill="rgb(231,210,49)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mutex_init (1 samples, 0.01%)</title><rect x="438.5" y="533" width="0.1" height="15.0" fill="rgb(231,200,20)" rx="2" ry="2" />
<text text-anchor="" x="441.51" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (1 samples, 0.01%)</title><rect x="447.3" y="293" width="0.1" height="15.0" fill="rgb(251,26,26)" rx="2" ry="2" />
<text text-anchor="" x="450.25" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (3 samples, 0.03%)</title><rect x="888.2" y="437" width="0.4" height="15.0" fill="rgb(212,65,12)" rx="2" ry="2" />
<text text-anchor="" x="891.21" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="375.5" y="453" width="0.1" height="15.0" fill="rgb(224,227,24)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>socket_log.constprop.19 (2 samples, 0.02%)</title><rect x="492.5" y="533" width="0.3" height="15.0" fill="rgb(219,127,43)" rx="2" ry="2" />
<text text-anchor="" x="495.54" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_disassociate (1 samples, 0.01%)</title><rect x="280.0" y="517" width="0.1" height="15.0" fill="rgb(247,158,36)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.45 (1 samples, 0.01%)</title><rect x="176.8" y="309" width="0.2" height="15.0" fill="rgb(233,61,41)" rx="2" ry="2" />
<text text-anchor="" x="179.85" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_fsync (2 samples, 0.02%)</title><rect x="454.9" y="453" width="0.3" height="15.0" fill="rgb(226,137,29)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="546.2" y="533" width="0.1" height="15.0" fill="rgb(225,221,43)" rx="2" ry="2" />
<text text-anchor="" x="549.17" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_checksig (1 samples, 0.01%)</title><rect x="265.8" y="565" width="0.2" height="15.0" fill="rgb(247,27,44)" rx="2" ry="2" />
<text text-anchor="" x="268.84" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.01%)</title><rect x="176.7" y="309" width="0.1" height="15.0" fill="rgb(220,191,24)" rx="2" ry="2" />
<text text-anchor="" x="179.72" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mem_get (1 samples, 0.01%)</title><rect x="422.4" y="549" width="0.1" height="15.0" fill="rgb(233,92,45)" rx="2" ry="2" />
<text text-anchor="" x="425.36" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>recv_length (1 samples, 0.01%)</title><rect x="399.7" y="581" width="0.1" height="15.0" fill="rgb(211,11,15)" rx="2" ry="2" />
<text text-anchor="" x="402.71" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>osq_unlock (1 samples, 0.01%)</title><rect x="389.3" y="405" width="0.1" height="15.0" fill="rgb(217,45,15)" rx="2" ry="2" />
<text text-anchor="" x="392.25" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (1 samples, 0.01%)</title><rect x="310.1" y="357" width="0.1" height="15.0" fill="rgb(217,124,8)" rx="2" ry="2" />
<text text-anchor="" x="313.07" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_flow_dissect (2 samples, 0.02%)</title><rect x="1143.7" y="213" width="0.2" height="15.0" fill="rgb(220,54,21)" rx="2" ry="2" />
<text text-anchor="" x="1146.65" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (2 samples, 0.02%)</title><rect x="628.8" y="309" width="0.3" height="15.0" fill="rgb(213,120,38)" rx="2" ry="2" />
<text text-anchor="" x="631.80" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_q_add (1 samples, 0.01%)</title><rect x="251.9" y="517" width="0.2" height="15.0" fill="rgb(254,5,44)" rx="2" ry="2" />
<text text-anchor="" x="254.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (2 samples, 0.02%)</title><rect x="878.8" y="373" width="0.3" height="15.0" fill="rgb(209,34,5)" rx="2" ry="2" />
<text text-anchor="" x="881.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_equal (1 samples, 0.01%)</title><rect x="490.6" y="533" width="0.1" height="15.0" fill="rgb(211,107,2)" rx="2" ry="2" />
<text text-anchor="" x="493.55" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swiotlb_dma_mapping_error (1 samples, 0.01%)</title><rect x="1117.2" y="213" width="0.1" height="15.0" fill="rgb(238,73,54)" rx="2" ry="2" />
<text text-anchor="" x="1120.17" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run (1,490 samples, 16.72%)</title><rect x="258.8" y="597" width="197.3" height="15.0" fill="rgb(231,153,2)" rx="2" ry="2" />
<text text-anchor="" x="261.82" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (9 samples, 0.10%)</title><rect x="373.0" y="437" width="1.2" height="15.0" fill="rgb(243,9,31)" rx="2" ry="2" />
<text text-anchor="" x="375.96" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>md_make_request (1 samples, 0.01%)</title><rect x="455.1" y="293" width="0.1" height="15.0" fill="rgb(210,18,18)" rx="2" ry="2" />
<text text-anchor="" x="458.07" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (5 samples, 0.06%)</title><rect x="349.0" y="533" width="0.7" height="15.0" fill="rgb(207,216,46)" rx="2" ry="2" />
<text text-anchor="" x="352.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.04%)</title><rect x="246.1" y="597" width="0.5" height="15.0" fill="rgb(215,88,30)" rx="2" ry="2" />
<text text-anchor="" x="249.11" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sprintf (2 samples, 0.02%)</title><rect x="529.4" y="517" width="0.2" height="15.0" fill="rgb(214,1,35)" rx="2" ry="2" />
<text text-anchor="" x="532.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>connect (9 samples, 0.10%)</title><rect x="431.8" y="469" width="1.2" height="15.0" fill="rgb(249,56,15)" rx="2" ry="2" />
<text text-anchor="" x="434.76" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="898.1" y="533" width="0.2" height="15.0" fill="rgb(245,211,32)" rx="2" ry="2" />
<text text-anchor="" x="901.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_recv_datagram (12 samples, 0.13%)</title><rect x="363.7" y="421" width="1.6" height="15.0" fill="rgb(221,140,13)" rx="2" ry="2" />
<text text-anchor="" x="366.70" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (43 samples, 0.48%)</title><rect x="569.7" y="501" width="5.7" height="15.0" fill="rgb(229,212,52)" rx="2" ry="2" />
<text text-anchor="" x="572.74" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_settimer (3 samples, 0.03%)</title><rect x="409.9" y="565" width="0.4" height="15.0" fill="rgb(237,147,24)" rx="2" ry="2" />
<text text-anchor="" x="412.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_sendmsg (2 samples, 0.02%)</title><rect x="40.9" y="613" width="0.2" height="15.0" fill="rgb(220,188,13)" rx="2" ry="2" />
<text text-anchor="" x="43.85" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_sendmsg (23 samples, 0.26%)</title><rect x="447.0" y="389" width="3.0" height="15.0" fill="rgb(229,180,21)" rx="2" ry="2" />
<text text-anchor="" x="449.99" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (3 samples, 0.03%)</title><rect x="1187.1" y="581" width="0.4" height="15.0" fill="rgb(219,198,22)" rx="2" ry="2" />
<text text-anchor="" x="1190.09" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.01%)</title><rect x="75.3" y="597" width="0.1" height="15.0" fill="rgb(244,43,17)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (8 samples, 0.09%)</title><rect x="552.9" y="613" width="1.1" height="15.0" fill="rgb(220,70,26)" rx="2" ry="2" />
<text text-anchor="" x="555.92" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (1 samples, 0.01%)</title><rect x="307.8" y="213" width="0.1" height="15.0" fill="rgb(247,118,38)" rx="2" ry="2" />
<text text-anchor="" x="310.81" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_usedregion (1 samples, 0.01%)</title><rect x="412.0" y="565" width="0.2" height="15.0" fill="rgb(231,100,52)" rx="2" ry="2" />
<text text-anchor="" x="415.03" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_skb (2 samples, 0.02%)</title><rect x="447.3" y="341" width="0.2" height="15.0" fill="rgb(205,69,38)" rx="2" ry="2" />
<text text-anchor="" x="450.25" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_q_add (7 samples, 0.08%)</title><rect x="605.8" y="549" width="0.9" height="15.0" fill="rgb(227,149,34)" rx="2" ry="2" />
<text text-anchor="" x="608.76" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="19.7" y="597" width="0.1" height="15.0" fill="rgb(218,221,36)" rx="2" ry="2" />
<text text-anchor="" x="22.67" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.01%)</title><rect x="385.1" y="293" width="0.2" height="15.0" fill="rgb(245,16,23)" rx="2" ry="2" />
<text text-anchor="" x="388.15" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (32 samples, 0.36%)</title><rect x="627.1" y="485" width="4.2" height="15.0" fill="rgb(249,209,48)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (3 samples, 0.03%)</title><rect x="672.4" y="325" width="0.4" height="15.0" fill="rgb(224,40,42)" rx="2" ry="2" />
<text text-anchor="" x="675.37" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_activeregion (1 samples, 0.01%)</title><rect x="404.5" y="469" width="0.1" height="15.0" fill="rgb(240,126,16)" rx="2" ry="2" />
<text text-anchor="" x="407.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="258.2" y="549" width="0.1" height="15.0" fill="rgb(230,226,46)" rx="2" ry="2" />
<text text-anchor="" x="261.16" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_mempool_destroy (1 samples, 0.01%)</title><rect x="427.0" y="549" width="0.1" height="15.0" fill="rgb(236,53,2)" rx="2" ry="2" />
<text text-anchor="" x="429.99" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_matcheswildcard (2 samples, 0.02%)</title><rect x="497.7" y="533" width="0.3" height="15.0" fill="rgb(246,205,13)" rx="2" ry="2" />
<text text-anchor="" x="500.71" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgresetsigs (2 samples, 0.02%)</title><rect x="280.4" y="533" width="0.3" height="15.0" fill="rgb(215,150,31)" rx="2" ry="2" />
<text text-anchor="" x="283.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdatasetiter_next (10 samples, 0.11%)</title><rect x="545.2" y="597" width="1.4" height="15.0" fill="rgb(221,83,15)" rx="2" ry="2" />
<text text-anchor="" x="548.24" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_towire (4 samples, 0.04%)</title><rect x="440.9" y="517" width="0.5" height="15.0" fill="rgb(234,178,32)" rx="2" ry="2" />
<text text-anchor="" x="443.90" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (2 samples, 0.02%)</title><rect x="643.4" y="597" width="0.2" height="15.0" fill="rgb(227,15,7)" rx="2" ry="2" />
<text text-anchor="" x="646.37" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (4 samples, 0.04%)</title><rect x="443.4" y="485" width="0.5" height="15.0" fill="rgb(224,80,44)" rx="2" ry="2" />
<text text-anchor="" x="446.41" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.11%)</title><rect x="561.8" y="549" width="1.3" height="15.0" fill="rgb(239,189,25)" rx="2" ry="2" />
<text text-anchor="" x="564.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zt_find (8 samples, 0.09%)</title><rect x="496.4" y="501" width="1.0" height="15.0" fill="rgb(222,164,31)" rx="2" ry="2" />
<text text-anchor="" x="499.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_ptable_queue_proc (1 samples, 0.01%)</title><rect x="37.0" y="549" width="0.1" height="15.0" fill="rgb(243,12,6)" rx="2" ry="2" />
<text text-anchor="" x="40.01" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sys_sendmsg (25 samples, 0.28%)</title><rect x="446.9" y="453" width="3.3" height="15.0" fill="rgb(253,109,9)" rx="2" ry="2" />
<text text-anchor="" x="449.86" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.01%)</title><rect x="1125.0" y="437" width="0.1" height="15.0" fill="rgb(252,179,19)" rx="2" ry="2" />
<text text-anchor="" x="1127.98" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (16 samples, 0.18%)</title><rect x="294.6" y="389" width="2.1" height="15.0" fill="rgb(212,93,7)" rx="2" ry="2" />
<text text-anchor="" x="297.57" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="665.9" y="517" width="0.1" height="15.0" fill="rgb(243,184,28)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addrrset (2 samples, 0.02%)</title><rect x="497.7" y="565" width="0.3" height="15.0" fill="rgb(237,85,10)" rx="2" ry="2" />
<text text-anchor="" x="500.71" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (12 samples, 0.13%)</title><rect x="1127.6" y="341" width="1.6" height="15.0" fill="rgb(240,201,43)" rx="2" ry="2" />
<text text-anchor="" x="1130.63" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.01%)</title><rect x="310.5" y="261" width="0.1" height="15.0" fill="rgb(215,135,25)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (9 samples, 0.10%)</title><rect x="559.8" y="565" width="1.2" height="15.0" fill="rgb(215,219,54)" rx="2" ry="2" />
<text text-anchor="" x="562.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_signer (2 samples, 0.02%)</title><rect x="47.5" y="613" width="0.2" height="15.0" fill="rgb(205,17,38)" rx="2" ry="2" />
<text text-anchor="" x="50.48" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="287.2" y="325" width="0.1" height="15.0" fill="rgb(211,167,50)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="471.2" y="453" width="0.2" height="15.0" fill="rgb(225,205,9)" rx="2" ry="2" />
<text text-anchor="" x="474.22" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (4 samples, 0.04%)</title><rect x="557.3" y="565" width="0.5" height="15.0" fill="rgb(222,206,20)" rx="2" ry="2" />
<text text-anchor="" x="560.29" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.01%)</title><rect x="507.8" y="309" width="0.1" height="15.0" fill="rgb(239,30,43)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (4 samples, 0.04%)</title><rect x="889.3" y="485" width="0.5" height="15.0" fill="rgb(245,35,49)" rx="2" ry="2" />
<text text-anchor="" x="892.27" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgreset (3 samples, 0.03%)</title><rect x="1167.6" y="533" width="0.4" height="15.0" fill="rgb(205,87,18)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_disassociate (12 samples, 0.13%)</title><rect x="511.1" y="597" width="1.6" height="15.0" fill="rgb(226,115,24)" rx="2" ry="2" />
<text text-anchor="" x="514.08" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_in (1 samples, 0.01%)</title><rect x="1140.1" y="69" width="0.1" height="15.0" fill="rgb(231,55,26)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (13 samples, 0.15%)</title><rect x="305.0" y="213" width="1.8" height="15.0" fill="rgb(223,100,2)" rx="2" ry="2" />
<text text-anchor="" x="308.03" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_query_start (12 samples, 0.13%)</title><rect x="1170.0" y="581" width="1.6" height="15.0" fill="rgb(225,38,49)" rx="2" ry="2" />
<text text-anchor="" x="1173.00" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_bts_enable_local (21 samples, 0.24%)</title><rect x="132.9" y="277" width="2.8" height="15.0" fill="rgb(243,7,42)" rx="2" ry="2" />
<text text-anchor="" x="135.89" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (1,795 samples, 20.14%)</title><rect x="661.2" y="565" width="237.7" height="15.0" fill="rgb(242,88,41)" rx="2" ry="2" />
<text text-anchor="" x="664.24" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_wait</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_default_xsputn (2 samples, 0.02%)</title><rect x="407.3" y="485" width="0.2" height="15.0" fill="rgb(213,115,14)" rx="2" ry="2" />
<text text-anchor="" x="410.26" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="454.0" y="293" width="0.1" height="15.0" fill="rgb(206,109,51)" rx="2" ry="2" />
<text text-anchor="" x="457.01" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (7 samples, 0.08%)</title><rect x="383.8" y="325" width="1.0" height="15.0" fill="rgb(230,163,1)" rx="2" ry="2" />
<text text-anchor="" x="386.82" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (1 samples, 0.01%)</title><rect x="300.3" y="373" width="0.1" height="15.0" fill="rgb(222,75,12)" rx="2" ry="2" />
<text text-anchor="" x="303.27" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (3 samples, 0.03%)</title><rect x="672.9" y="421" width="0.4" height="15.0" fill="rgb(213,74,36)" rx="2" ry="2" />
<text text-anchor="" x="675.90" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>req_log (1 samples, 0.01%)</title><rect x="445.9" y="533" width="0.2" height="15.0" fill="rgb(239,190,35)" rx="2" ry="2" />
<text text-anchor="" x="448.93" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zone_getqueryacl (1 samples, 0.01%)</title><rect x="1171.5" y="533" width="0.1" height="15.0" fill="rgb(232,223,30)" rx="2" ry="2" />
<text text-anchor="" x="1174.46" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio_clone_bioset (1 samples, 0.01%)</title><rect x="455.1" y="245" width="0.1" height="15.0" fill="rgb(219,113,15)" rx="2" ry="2" />
<text text-anchor="" x="458.07" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (11 samples, 0.12%)</title><rect x="891.9" y="421" width="1.5" height="15.0" fill="rgb(234,168,37)" rx="2" ry="2" />
<text text-anchor="" x="894.92" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (2 samples, 0.02%)</title><rect x="454.9" y="485" width="0.3" height="15.0" fill="rgb(214,214,31)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gettimeofday@plt (2 samples, 0.02%)</title><rect x="57.0" y="613" width="0.3" height="15.0" fill="rgb(246,206,21)" rx="2" ry="2" />
<text text-anchor="" x="60.01" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (1 samples, 0.01%)</title><rect x="587.6" y="613" width="0.2" height="15.0" fill="rgb(248,93,13)" rx="2" ry="2" />
<text text-anchor="" x="590.62" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raid1_unplug (1 samples, 0.01%)</title><rect x="325.2" y="325" width="0.1" height="15.0" fill="rgb(240,114,40)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.01%)</title><rect x="118.5" y="421" width="0.1" height="15.0" fill="rgb(214,152,46)" rx="2" ry="2" />
<text text-anchor="" x="121.45" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strncpy_from_user (2 samples, 0.02%)</title><rect x="58.1" y="517" width="0.2" height="15.0" fill="rgb(249,72,43)" rx="2" ry="2" />
<text text-anchor="" x="61.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.01%)</title><rect x="81.9" y="517" width="0.1" height="15.0" fill="rgb(225,17,24)" rx="2" ry="2" />
<text text-anchor="" x="84.90" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (4 samples, 0.04%)</title><rect x="74.5" y="613" width="0.5" height="15.0" fill="rgb(224,4,8)" rx="2" ry="2" />
<text text-anchor="" x="77.49" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_kfree_skb_any (1 samples, 0.01%)</title><rect x="471.2" y="357" width="0.2" height="15.0" fill="rgb(236,54,42)" rx="2" ry="2" />
<text text-anchor="" x="474.22" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (1 samples, 0.01%)</title><rect x="453.6" y="405" width="0.1" height="15.0" fill="rgb(223,67,17)" rx="2" ry="2" />
<text text-anchor="" x="456.61" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_find_next_bit.part.0 (1 samples, 0.01%)</title><rect x="888.5" y="405" width="0.1" height="15.0" fill="rgb(251,210,15)" rx="2" ry="2" />
<text text-anchor="" x="891.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_mb_find_by_goal (1 samples, 0.01%)</title><rect x="325.3" y="309" width="0.1" height="15.0" fill="rgb(211,118,14)" rx="2" ry="2" />
<text text-anchor="" x="328.29" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="382.9" y="341" width="0.1" height="15.0" fill="rgb(234,8,20)" rx="2" ry="2" />
<text text-anchor="" x="385.90" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_matcheswildcard (3 samples, 0.03%)</title><rect x="320.4" y="501" width="0.4" height="15.0" fill="rgb(240,172,12)" rx="2" ry="2" />
<text text-anchor="" x="323.39" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_isassociated (2 samples, 0.02%)</title><rect x="1168.9" y="469" width="0.3" height="15.0" fill="rgb(240,152,1)" rx="2" ry="2" />
<text text-anchor="" x="1171.95" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="319.2" y="437" width="0.1" height="15.0" fill="rgb(243,11,50)" rx="2" ry="2" />
<text text-anchor="" x="322.20" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="308.9" y="309" width="0.1" height="15.0" fill="rgb(218,206,36)" rx="2" ry="2" />
<text text-anchor="" x="311.87" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="503.4" y="533" width="0.1" height="15.0" fill="rgb(240,85,28)" rx="2" ry="2" />
<text text-anchor="" x="506.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="490.3" y="533" width="0.1" height="15.0" fill="rgb(208,91,9)" rx="2" ry="2" />
<text text-anchor="" x="493.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (2 samples, 0.02%)</title><rect x="40.6" y="613" width="0.3" height="15.0" fill="rgb(249,145,25)" rx="2" ry="2" />
<text text-anchor="" x="43.59" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_sendanddetach (1 samples, 0.01%)</title><rect x="415.7" y="533" width="0.2" height="15.0" fill="rgb(241,132,25)" rx="2" ry="2" />
<text text-anchor="" x="418.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (32 samples, 0.36%)</title><rect x="627.1" y="421" width="4.2" height="15.0" fill="rgb(232,51,3)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (2 samples, 0.02%)</title><rect x="896.4" y="501" width="0.3" height="15.0" fill="rgb(227,139,26)" rx="2" ry="2" />
<text text-anchor="" x="899.42" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.01%)</title><rect x="893.4" y="501" width="0.1" height="15.0" fill="rgb(206,177,14)" rx="2" ry="2" />
<text text-anchor="" x="896.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1 samples, 0.01%)</title><rect x="81.5" y="581" width="0.1" height="15.0" fill="rgb(240,170,16)" rx="2" ry="2" />
<text text-anchor="" x="84.51" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>manager_log.constprop.20 (6 samples, 0.07%)</title><rect x="479.4" y="581" width="0.8" height="15.0" fill="rgb(252,128,16)" rx="2" ry="2" />
<text text-anchor="" x="482.43" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_dispatch_getudp (57 samples, 0.64%)</title><rect x="430.8" y="533" width="7.6" height="15.0" fill="rgb(238,193,49)" rx="2" ry="2" />
<text text-anchor="" x="433.83" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mempool_get (1 samples, 0.01%)</title><rect x="286.9" y="517" width="0.1" height="15.0" fill="rgb(243,2,52)" rx="2" ry="2" />
<text text-anchor="" x="289.89" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1185.1" y="597" width="0.1" height="15.0" fill="rgb(207,119,5)" rx="2" ry="2" />
<text text-anchor="" x="1188.10" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromregion (1 samples, 0.01%)</title><rect x="497.6" y="549" width="0.1" height="15.0" fill="rgb(232,198,29)" rx="2" ry="2" />
<text text-anchor="" x="500.57" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ghes_notify_nmi (1 samples, 0.01%)</title><rect x="685.9" y="341" width="0.1" height="15.0" fill="rgb(218,226,7)" rx="2" ry="2" />
<text text-anchor="" x="688.87" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>random (2 samples, 0.02%)</title><rect x="1189.2" y="565" width="0.3" height="15.0" fill="rgb(238,151,44)" rx="2" ry="2" />
<text text-anchor="" x="1192.21" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_hash_function_reverse (1 samples, 0.01%)</title><rect x="507.6" y="501" width="0.2" height="15.0" fill="rgb(248,64,21)" rx="2" ry="2" />
<text text-anchor="" x="510.64" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="32.8" y="581" width="0.1" height="15.0" fill="rgb(236,216,37)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>place_entity (1 samples, 0.01%)</title><rect x="620.5" y="469" width="0.1" height="15.0" fill="rgb(206,182,53)" rx="2" ry="2" />
<text text-anchor="" x="623.46" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq (1 samples, 0.01%)</title><rect x="506.8" y="501" width="0.2" height="15.0" fill="rgb(219,1,50)" rx="2" ry="2" />
<text text-anchor="" x="509.84" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_pages_nodemask (2 samples, 0.02%)</title><rect x="38.1" y="405" width="0.2" height="15.0" fill="rgb(215,161,8)" rx="2" ry="2" />
<text text-anchor="" x="41.07" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter_iovec (2 samples, 0.02%)</title><rect x="470.7" y="453" width="0.3" height="15.0" fill="rgb(240,24,26)" rx="2" ry="2" />
<text text-anchor="" x="473.69" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="506.8" y="517" width="0.2" height="15.0" fill="rgb(215,64,53)" rx="2" ry="2" />
<text text-anchor="" x="509.84" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="277.2" y="533" width="0.2" height="15.0" fill="rgb(229,28,5)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (3 samples, 0.03%)</title><rect x="19.8" y="597" width="0.4" height="15.0" fill="rgb(240,223,6)" rx="2" ry="2" />
<text text-anchor="" x="22.80" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.01%)</title><rect x="258.4" y="421" width="0.2" height="15.0" fill="rgb(240,185,17)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addadditional2 (61 samples, 0.68%)</title><rect x="1158.7" y="565" width="8.1" height="15.0" fill="rgb(239,209,18)" rx="2" ry="2" />
<text text-anchor="" x="1161.75" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.01%)</title><rect x="279.3" y="389" width="0.2" height="15.0" fill="rgb(211,69,20)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_doit (1 samples, 0.01%)</title><rect x="593.0" y="549" width="0.2" height="15.0" fill="rgb(216,56,10)" rx="2" ry="2" />
<text text-anchor="" x="596.05" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="651.4" y="613" width="0.2" height="15.0" fill="rgb(239,181,50)" rx="2" ry="2" />
<text text-anchor="" x="654.45" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_file_xsputn (1 samples, 0.01%)</title><rect x="482.7" y="597" width="0.2" height="15.0" fill="rgb(244,200,39)" rx="2" ry="2" />
<text text-anchor="" x="485.74" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (2 samples, 0.02%)</title><rect x="257.4" y="485" width="0.2" height="15.0" fill="rgb(233,54,10)" rx="2" ry="2" />
<text text-anchor="" x="260.36" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="886.4" y="453" width="0.1" height="15.0" fill="rgb(219,166,26)" rx="2" ry="2" />
<text text-anchor="" x="889.36" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromregion (1 samples, 0.01%)</title><rect x="287.8" y="501" width="0.2" height="15.0" fill="rgb(236,205,43)" rx="2" ry="2" />
<text text-anchor="" x="290.82" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.01%)</title><rect x="454.8" y="421" width="0.1" height="15.0" fill="rgb(223,226,17)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_bio_bh_io_sync (1 samples, 0.01%)</title><rect x="32.8" y="277" width="0.1" height="15.0" fill="rgb(225,168,50)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__find_get_block (2 samples, 0.02%)</title><rect x="58.9" y="389" width="0.2" height="15.0" fill="rgb(241,169,27)" rx="2" ry="2" />
<text text-anchor="" x="61.86" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_totext2 (1 samples, 0.01%)</title><rect x="50.0" y="613" width="0.1" height="15.0" fill="rgb(249,122,17)" rx="2" ry="2" />
<text text-anchor="" x="52.99" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (52 samples, 0.58%)</title><rect x="1133.9" y="325" width="6.8" height="15.0" fill="rgb(209,8,29)" rx="2" ry="2" />
<text text-anchor="" x="1136.85" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_datagram_locked (5 samples, 0.06%)</title><rect x="362.0" y="437" width="0.6" height="15.0" fill="rgb(213,27,0)" rx="2" ry="2" />
<text text-anchor="" x="364.97" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_udprecv (149 samples, 1.67%)</title><rect x="291.9" y="517" width="19.8" height="15.0" fill="rgb(206,144,14)" rx="2" ry="2" />
<text text-anchor="" x="294.92" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_slowpath (1 samples, 0.01%)</title><rect x="258.4" y="581" width="0.2" height="15.0" fill="rgb(209,64,36)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_irq_work_interrupt (1 samples, 0.01%)</title><rect x="581.8" y="485" width="0.1" height="15.0" fill="rgb(247,156,19)" rx="2" ry="2" />
<text text-anchor="" x="584.79" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (8 samples, 0.09%)</title><rect x="242.3" y="597" width="1.0" height="15.0" fill="rgb(209,163,24)" rx="2" ry="2" />
<text text-anchor="" x="245.27" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (14 samples, 0.16%)</title><rect x="669.2" y="485" width="1.8" height="15.0" fill="rgb(213,3,28)" rx="2" ry="2" />
<text text-anchor="" x="672.19" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>allocate_udp_buffer.isra.8 (3 samples, 0.03%)</title><rect x="452.4" y="549" width="0.4" height="15.0" fill="rgb(222,20,1)" rx="2" ry="2" />
<text text-anchor="" x="455.42" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="1108.8" y="469" width="0.2" height="15.0" fill="rgb(225,67,48)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="481.8" y="341" width="0.1" height="15.0" fill="rgb(228,67,0)" rx="2" ry="2" />
<text text-anchor="" x="484.81" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.01%)</title><rect x="631.4" y="293" width="0.2" height="15.0" fill="rgb(245,165,30)" rx="2" ry="2" />
<text text-anchor="" x="634.45" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_getmethods (1 samples, 0.01%)</title><rect x="508.4" y="629" width="0.2" height="15.0" fill="rgb(228,187,50)" rx="2" ry="2" />
<text text-anchor="" x="511.43" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_finish_plug (1 samples, 0.01%)</title><rect x="326.1" y="357" width="0.1" height="15.0" fill="rgb(248,70,23)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.02%)</title><rect x="426.6" y="517" width="0.3" height="15.0" fill="rgb(240,172,39)" rx="2" ry="2" />
<text text-anchor="" x="429.60" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="81.1" y="469" width="0.1" height="15.0" fill="rgb(205,141,41)" rx="2" ry="2" />
<text text-anchor="" x="84.11" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromregion (1 samples, 0.01%)</title><rect x="1185.5" y="581" width="0.1" height="15.0" fill="rgb(214,165,30)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="1121.8" y="549" width="0.1" height="15.0" fill="rgb(248,0,4)" rx="2" ry="2" />
<text text-anchor="" x="1124.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.01%)</title><rect x="651.6" y="453" width="0.1" height="15.0" fill="rgb(235,209,14)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_sk_classify_flow (1 samples, 0.01%)</title><rect x="1115.2" y="389" width="0.1" height="15.0" fill="rgb(221,73,31)" rx="2" ry="2" />
<text text-anchor="" x="1118.18" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_io_submit (1 samples, 0.01%)</title><rect x="455.1" y="341" width="0.1" height="15.0" fill="rgb(241,12,27)" rx="2" ry="2" />
<text text-anchor="" x="458.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_getcurrenttime (3 samples, 0.03%)</title><rect x="276.8" y="565" width="0.4" height="15.0" fill="rgb(245,169,27)" rx="2" ry="2" />
<text text-anchor="" x="279.83" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (1 samples, 0.01%)</title><rect x="255.0" y="469" width="0.1" height="15.0" fill="rgb(245,228,49)" rx="2" ry="2" />
<text text-anchor="" x="257.98" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>geoip_set_choose_geomap (8 samples, 0.09%)</title><rect x="1186.4" y="597" width="1.1" height="15.0" fill="rgb(215,96,43)" rx="2" ry="2" />
<text text-anchor="" x="1189.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.01%)</title><rect x="1119.4" y="373" width="0.2" height="15.0" fill="rgb(210,225,19)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.03%)</title><rect x="70.8" y="613" width="0.4" height="15.0" fill="rgb(208,20,26)" rx="2" ry="2" />
<text text-anchor="" x="73.78" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.02%)</title><rect x="481.7" y="517" width="0.2" height="15.0" fill="rgb(245,43,33)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.01%)</title><rect x="673.6" y="469" width="0.1" height="15.0" fill="rgb(227,117,2)" rx="2" ry="2" />
<text text-anchor="" x="676.56" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up (18 samples, 0.20%)</title><rect x="176.2" y="389" width="2.4" height="15.0" fill="rgb(205,119,18)" rx="2" ry="2" />
<text text-anchor="" x="179.19" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_from_iter (2 samples, 0.02%)</title><rect x="388.5" y="437" width="0.2" height="15.0" fill="rgb(207,111,49)" rx="2" ry="2" />
<text text-anchor="" x="391.46" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="1108.8" y="533" width="0.2" height="15.0" fill="rgb(247,160,4)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (1 samples, 0.01%)</title><rect x="471.2" y="309" width="0.2" height="15.0" fill="rgb(232,24,5)" rx="2" ry="2" />
<text text-anchor="" x="474.22" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_logv_ex (1 samples, 0.01%)</title><rect x="593.0" y="581" width="0.2" height="15.0" fill="rgb(217,140,28)" rx="2" ry="2" />
<text text-anchor="" x="596.05" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (3 samples, 0.03%)</title><rect x="453.3" y="453" width="0.4" height="15.0" fill="rgb(242,155,34)" rx="2" ry="2" />
<text text-anchor="" x="456.34" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (2 samples, 0.02%)</title><rect x="83.2" y="421" width="0.3" height="15.0" fill="rgb(247,83,29)" rx="2" ry="2" />
<text text-anchor="" x="86.23" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (488 samples, 5.48%)</title><rect x="116.3" y="549" width="64.7" height="15.0" fill="rgb(242,56,9)" rx="2" ry="2" />
<text text-anchor="" x="119.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (2 samples, 0.02%)</title><rect x="599.8" y="581" width="0.3" height="15.0" fill="rgb(239,26,4)" rx="2" ry="2" />
<text text-anchor="" x="602.80" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_findglobal (13 samples, 0.15%)</title><rect x="505.1" y="533" width="1.7" height="15.0" fill="rgb(208,79,35)" rx="2" ry="2" />
<text text-anchor="" x="508.12" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendmsg (1 samples, 0.01%)</title><rect x="1119.6" y="501" width="0.1" height="15.0" fill="rgb(246,138,37)" rx="2" ry="2" />
<text text-anchor="" x="1122.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (1 samples, 0.01%)</title><rect x="1142.7" y="261" width="0.2" height="15.0" fill="rgb(247,197,7)" rx="2" ry="2" />
<text text-anchor="" x="1145.73" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.04%)</title><rect x="328.3" y="517" width="0.6" height="15.0" fill="rgb(220,124,3)" rx="2" ry="2" />
<text text-anchor="" x="331.34" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zt_find (5 samples, 0.06%)</title><rect x="593.2" y="597" width="0.6" height="15.0" fill="rgb(234,156,11)" rx="2" ry="2" />
<text text-anchor="" x="596.18" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (4 samples, 0.04%)</title><rect x="80.7" y="597" width="0.5" height="15.0" fill="rgb(240,99,5)" rx="2" ry="2" />
<text text-anchor="" x="83.71" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (77 samples, 0.86%)</title><rect x="300.0" y="389" width="10.2" height="15.0" fill="rgb(217,183,51)" rx="2" ry="2" />
<text text-anchor="" x="303.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="99.5" y="389" width="0.1" height="15.0" fill="rgb(233,73,54)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (1 samples, 0.01%)</title><rect x="1127.2" y="373" width="0.2" height="15.0" fill="rgb(253,132,28)" rx="2" ry="2" />
<text text-anchor="" x="1130.23" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgresetopt (3 samples, 0.03%)</title><rect x="280.0" y="533" width="0.4" height="15.0" fill="rgb(237,90,21)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="492.4" y="533" width="0.1" height="15.0" fill="rgb(205,177,12)" rx="2" ry="2" />
<text text-anchor="" x="495.41" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (103 samples, 1.16%)</title><rect x="83.6" y="469" width="13.7" height="15.0" fill="rgb(228,52,28)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="280.0" y="453" width="0.1" height="15.0" fill="rgb(243,98,31)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (16 samples, 0.18%)</title><rect x="627.1" y="341" width="2.1" height="15.0" fill="rgb(240,69,36)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (2 samples, 0.02%)</title><rect x="324.5" y="517" width="0.3" height="15.0" fill="rgb(216,96,40)" rx="2" ry="2" />
<text text-anchor="" x="327.50" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="321.9" y="421" width="0.1" height="15.0" fill="rgb(244,172,12)" rx="2" ry="2" />
<text text-anchor="" x="324.85" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="1108.8" y="517" width="0.2" height="15.0" fill="rgb(216,176,11)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.01%)</title><rect x="454.8" y="245" width="0.1" height="15.0" fill="rgb(238,223,38)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>make_tmp_rdataset (1 samples, 0.01%)</title><rect x="324.8" y="517" width="0.1" height="15.0" fill="rgb(224,168,23)" rx="2" ry="2" />
<text text-anchor="" x="327.76" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>got_transfer_quota (1 samples, 0.01%)</title><rect x="350.3" y="581" width="0.2" height="15.0" fill="rgb(243,178,53)" rx="2" ry="2" />
<text text-anchor="" x="353.32" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (694 samples, 7.79%)</title><rect x="684.9" y="389" width="91.9" height="15.0" fill="rgb(211,11,44)" rx="2" ry="2" />
<text text-anchor="" x="687.95" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >end_repeat..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addrrset (12 samples, 0.13%)</title><rect x="1168.0" y="565" width="1.6" height="15.0" fill="rgb(220,84,23)" rx="2" ry="2" />
<text text-anchor="" x="1171.02" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_clear (1 samples, 0.01%)</title><rect x="536.8" y="597" width="0.1" height="15.0" fill="rgb(216,82,31)" rx="2" ry="2" />
<text text-anchor="" x="539.77" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tostruct_dyngeomap (1 samples, 0.01%)</title><rect x="1185.5" y="597" width="0.1" height="15.0" fill="rgb(208,84,21)" rx="2" ry="2" />
<text text-anchor="" x="1188.50" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="507.8" y="501" width="0.1" height="15.0" fill="rgb(246,169,23)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (1 samples, 0.01%)</title><rect x="538.9" y="405" width="0.1" height="15.0" fill="rgb(215,12,29)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>watcher (3 samples, 0.03%)</title><rect x="77.4" y="613" width="0.4" height="15.0" fill="rgb(220,115,18)" rx="2" ry="2" />
<text text-anchor="" x="80.40" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_findext (1 samples, 0.01%)</title><rect x="78.2" y="613" width="0.1" height="15.0" fill="rgb(223,102,4)" rx="2" ry="2" />
<text text-anchor="" x="81.20" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decrement_reference (3 samples, 0.03%)</title><rect x="44.2" y="613" width="0.4" height="15.0" fill="rgb(246,46,37)" rx="2" ry="2" />
<text text-anchor="" x="47.16" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbt_findnode (69 samples, 0.77%)</title><rect x="1175.6" y="613" width="9.1" height="15.0" fill="rgb(250,69,3)" rx="2" ry="2" />
<text text-anchor="" x="1178.57" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_send_skb (16 samples, 0.18%)</title><rect x="447.9" y="373" width="2.1" height="15.0" fill="rgb(220,195,22)" rx="2" ry="2" />
<text text-anchor="" x="450.91" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.01%)</title><rect x="453.5" y="389" width="0.1" height="15.0" fill="rgb(213,132,54)" rx="2" ry="2" />
<text text-anchor="" x="456.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_fast_ctr (3 samples, 0.03%)</title><rect x="382.2" y="405" width="0.4" height="15.0" fill="rgb(216,152,3)" rx="2" ry="2" />
<text text-anchor="" x="385.23" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dql_completed (1 samples, 0.01%)</title><rect x="1141.9" y="213" width="0.2" height="15.0" fill="rgb(225,96,40)" rx="2" ry="2" />
<text text-anchor="" x="1144.93" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (4 samples, 0.04%)</title><rect x="99.6" y="533" width="0.6" height="15.0" fill="rgb(246,62,52)" rx="2" ry="2" />
<text text-anchor="" x="102.65" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pending_event (2 samples, 0.02%)</title><rect x="631.3" y="437" width="0.3" height="15.0" fill="rgb(250,86,37)" rx="2" ry="2" />
<text text-anchor="" x="634.32" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_findtype (1 samples, 0.01%)</title><rect x="402.2" y="549" width="0.2" height="15.0" fill="rgb(236,3,28)" rx="2" ry="2" />
<text text-anchor="" x="405.23" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_copy_check_uvector (4 samples, 0.04%)</title><rect x="359.2" y="437" width="0.5" height="15.0" fill="rgb(221,180,43)" rx="2" ry="2" />
<text text-anchor="" x="362.19" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_findglobal (2 samples, 0.02%)</title><rect x="507.5" y="517" width="0.3" height="15.0" fill="rgb(227,34,39)" rx="2" ry="2" />
<text text-anchor="" x="510.50" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_debuglog (3 samples, 0.03%)</title><rect x="77.8" y="613" width="0.4" height="15.0" fill="rgb(236,3,10)" rx="2" ry="2" />
<text text-anchor="" x="80.80" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.02%)</title><rect x="349.7" y="533" width="0.2" height="15.0" fill="rgb(227,117,48)" rx="2" ry="2" />
<text text-anchor="" x="352.66" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>group_sched_in (1 samples, 0.01%)</title><rect x="341.6" y="421" width="0.1" height="15.0" fill="rgb(220,94,10)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_put (2 samples, 0.02%)</title><rect x="315.2" y="469" width="0.3" height="15.0" fill="rgb(251,64,33)" rx="2" ry="2" />
<text text-anchor="" x="318.23" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_rendersection (2 samples, 0.02%)</title><rect x="441.4" y="533" width="0.3" height="15.0" fill="rgb(219,90,36)" rx="2" ry="2" />
<text text-anchor="" x="444.43" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (4 samples, 0.04%)</title><rect x="469.5" y="437" width="0.5" height="15.0" fill="rgb(249,156,33)" rx="2" ry="2" />
<text text-anchor="" x="472.50" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbtnodechain_next (31 samples, 0.35%)</title><rect x="335.2" y="533" width="4.1" height="15.0" fill="rgb(207,229,48)" rx="2" ry="2" />
<text text-anchor="" x="338.23" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_copy (2 samples, 0.02%)</title><rect x="1181.9" y="597" width="0.3" height="15.0" fill="rgb(234,54,54)" rx="2" ry="2" />
<text text-anchor="" x="1184.92" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="99.5" y="357" width="0.1" height="15.0" fill="rgb(226,182,46)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (8 samples, 0.09%)</title><rect x="545.2" y="581" width="1.1" height="15.0" fill="rgb(241,104,49)" rx="2" ry="2" />
<text text-anchor="" x="548.24" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getname (2 samples, 0.02%)</title><rect x="56.2" y="613" width="0.3" height="15.0" fill="rgb(215,139,13)" rx="2" ry="2" />
<text text-anchor="" x="59.21" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromregion (1 samples, 0.01%)</title><rect x="1188.5" y="565" width="0.2" height="15.0" fill="rgb(217,141,2)" rx="2" ry="2" />
<text text-anchor="" x="1191.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_idents_reserve (1 samples, 0.01%)</title><rect x="1130.1" y="373" width="0.2" height="15.0" fill="rgb(222,214,16)" rx="2" ry="2" />
<text text-anchor="" x="1133.15" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vunmap_page_range (1 samples, 0.01%)</title><rect x="900.8" y="565" width="0.1" height="15.0" fill="rgb(224,28,11)" rx="2" ry="2" />
<text text-anchor="" x="903.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (1 samples, 0.01%)</title><rect x="257.5" y="469" width="0.1" height="15.0" fill="rgb(216,13,30)" rx="2" ry="2" />
<text text-anchor="" x="260.49" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>log_dynchoice (1 samples, 0.01%)</title><rect x="591.1" y="629" width="0.1" height="15.0" fill="rgb(252,133,37)" rx="2" ry="2" />
<text text-anchor="" x="594.06" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (48 samples, 0.54%)</title><rect x="302.5" y="325" width="6.4" height="15.0" fill="rgb(206,96,34)" rx="2" ry="2" />
<text text-anchor="" x="305.52" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>acpi_map_vaddr_lookup (5 samples, 0.06%)</title><rect x="899.3" y="565" width="0.7" height="15.0" fill="rgb(231,106,22)" rx="2" ry="2" />
<text text-anchor="" x="902.34" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="665.9" y="453" width="0.1" height="15.0" fill="rgb(246,55,44)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_vwrite (1 samples, 0.01%)</title><rect x="445.9" y="517" width="0.2" height="15.0" fill="rgb(205,200,31)" rx="2" ry="2" />
<text text-anchor="" x="448.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filemap_write_and_wait_range (4 samples, 0.04%)</title><rect x="325.2" y="421" width="0.5" height="15.0" fill="rgb(244,15,30)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="1121.8" y="469" width="0.1" height="15.0" fill="rgb(248,77,52)" rx="2" ry="2" />
<text text-anchor="" x="1124.80" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (2 samples, 0.02%)</title><rect x="590.5" y="629" width="0.3" height="15.0" fill="rgb(209,65,36)" rx="2" ry="2" />
<text text-anchor="" x="593.53" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (89 samples, 1.00%)</title><rect x="299.6" y="421" width="11.8" height="15.0" fill="rgb(220,8,4)" rx="2" ry="2" />
<text text-anchor="" x="302.60" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addadditional2 (2 samples, 0.02%)</title><rect x="1111.1" y="629" width="0.2" height="15.0" fill="rgb(217,117,51)" rx="2" ry="2" />
<text text-anchor="" x="1114.08" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.01%)</title><rect x="43.0" y="453" width="0.1" height="15.0" fill="rgb(239,129,25)" rx="2" ry="2" />
<text text-anchor="" x="45.97" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__bitmap_intersects (1 samples, 0.01%)</title><rect x="612.2" y="501" width="0.2" height="15.0" fill="rgb(211,141,23)" rx="2" ry="2" />
<text text-anchor="" x="615.25" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (3 samples, 0.03%)</title><rect x="446.1" y="501" width="0.4" height="15.0" fill="rgb(208,33,53)" rx="2" ry="2" />
<text text-anchor="" x="449.06" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_kfree_skb_any (1 samples, 0.01%)</title><rect x="1119.4" y="405" width="0.2" height="15.0" fill="rgb(242,193,21)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_rendersection (63 samples, 0.71%)</title><rect x="499.6" y="613" width="8.3" height="15.0" fill="rgb(212,182,33)" rx="2" ry="2" />
<text text-anchor="" x="502.56" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1,813 samples, 20.35%)</title><rect x="659.3" y="597" width="240.0" height="15.0" fill="rgb(218,176,39)" rx="2" ry="2" />
<text text-anchor="" x="662.26" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_futex</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="507.8" y="357" width="0.1" height="15.0" fill="rgb(222,209,13)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.01%)</title><rect x="471.2" y="325" width="0.2" height="15.0" fill="rgb(236,200,39)" rx="2" ry="2" />
<text text-anchor="" x="474.22" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (4 samples, 0.04%)</title><rect x="1174.0" y="581" width="0.5" height="15.0" fill="rgb(214,90,5)" rx="2" ry="2" />
<text text-anchor="" x="1176.98" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_put (1 samples, 0.01%)</title><rect x="350.1" y="549" width="0.1" height="15.0" fill="rgb(249,19,21)" rx="2" ry="2" />
<text text-anchor="" x="353.06" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="556.9" y="581" width="0.1" height="15.0" fill="rgb(228,119,13)" rx="2" ry="2" />
<text text-anchor="" x="559.90" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (1 samples, 0.01%)</title><rect x="1184.6" y="469" width="0.1" height="15.0" fill="rgb(219,196,24)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decrement_reference (1 samples, 0.01%)</title><rect x="492.8" y="485" width="0.1" height="15.0" fill="rgb(208,18,52)" rx="2" ry="2" />
<text text-anchor="" x="495.81" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="420.0" y="501" width="0.1" height="15.0" fill="rgb(242,215,31)" rx="2" ry="2" />
<text text-anchor="" x="422.97" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (9 samples, 0.10%)</title><rect x="448.7" y="261" width="1.2" height="15.0" fill="rgb(229,13,21)" rx="2" ry="2" />
<text text-anchor="" x="451.71" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_sendmsg (24 samples, 0.27%)</title><rect x="446.9" y="437" width="3.1" height="15.0" fill="rgb(212,56,12)" rx="2" ry="2" />
<text text-anchor="" x="449.86" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (13 samples, 0.15%)</title><rect x="117.4" y="485" width="1.7" height="15.0" fill="rgb(234,199,16)" rx="2" ry="2" />
<text text-anchor="" x="120.39" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_defrag (2 samples, 0.02%)</title><rect x="1133.6" y="325" width="0.3" height="15.0" fill="rgb(234,5,54)" rx="2" ry="2" />
<text text-anchor="" x="1136.59" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (424 samples, 4.76%)</title><rect x="119.5" y="437" width="56.2" height="15.0" fill="rgb(254,30,9)" rx="2" ry="2" />
<text text-anchor="" x="122.51" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.01%)</title><rect x="384.6" y="293" width="0.2" height="15.0" fill="rgb(216,59,47)" rx="2" ry="2" />
<text text-anchor="" x="387.62" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (1 samples, 0.01%)</title><rect x="683.9" y="469" width="0.1" height="15.0" fill="rgb(251,104,32)" rx="2" ry="2" />
<text text-anchor="" x="686.89" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_put (3 samples, 0.03%)</title><rect x="415.9" y="549" width="0.4" height="15.0" fill="rgb(231,229,35)" rx="2" ry="2" />
<text text-anchor="" x="418.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatalist_tordataset (1 samples, 0.01%)</title><rect x="267.8" y="549" width="0.2" height="15.0" fill="rgb(232,24,29)" rx="2" ry="2" />
<text text-anchor="" x="270.82" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_privilege (8 samples, 0.09%)</title><rect x="476.7" y="565" width="1.0" height="15.0" fill="rgb(219,122,3)" rx="2" ry="2" />
<text text-anchor="" x="479.65" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (1 samples, 0.01%)</title><rect x="245.4" y="533" width="0.2" height="15.0" fill="rgb(212,84,14)" rx="2" ry="2" />
<text text-anchor="" x="248.44" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (5 samples, 0.06%)</title><rect x="672.2" y="373" width="0.7" height="15.0" fill="rgb(253,28,41)" rx="2" ry="2" />
<text text-anchor="" x="675.24" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>plist_add (1 samples, 0.01%)</title><rect x="626.4" y="533" width="0.2" height="15.0" fill="rgb(215,217,38)" rx="2" ry="2" />
<text text-anchor="" x="629.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.01%)</title><rect x="255.8" y="453" width="0.1" height="15.0" fill="rgb(254,18,2)" rx="2" ry="2" />
<text text-anchor="" x="258.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_towiresorted (2 samples, 0.02%)</title><rect x="441.4" y="517" width="0.3" height="15.0" fill="rgb(233,100,17)" rx="2" ry="2" />
<text text-anchor="" x="444.43" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="1140.1" y="245" width="0.1" height="15.0" fill="rgb(243,101,45)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_recv (186 samples, 2.09%)</title><rect x="351.2" y="565" width="24.7" height="15.0" fill="rgb(220,202,4)" rx="2" ry="2" />
<text text-anchor="" x="354.25" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_equal (1 samples, 0.01%)</title><rect x="48.3" y="613" width="0.1" height="15.0" fill="rgb(245,205,21)" rx="2" ry="2" />
<text text-anchor="" x="51.27" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="258.2" y="469" width="0.1" height="15.0" fill="rgb(218,188,28)" rx="2" ry="2" />
<text text-anchor="" x="261.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (20 samples, 0.22%)</title><rect x="443.3" y="517" width="2.6" height="15.0" fill="rgb(219,145,9)" rx="2" ry="2" />
<text text-anchor="" x="446.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="1121.8" y="533" width="0.1" height="15.0" fill="rgb(207,51,28)" rx="2" ry="2" />
<text text-anchor="" x="1124.80" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>req_render (1 samples, 0.01%)</title><rect x="1167.4" y="629" width="0.1" height="15.0" fill="rgb(205,178,3)" rx="2" ry="2" />
<text text-anchor="" x="1170.36" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sk_load_byte_positive_offset (2 samples, 0.02%)</title><rect x="1150.1" y="229" width="0.3" height="15.0" fill="rgb(245,186,30)" rx="2" ry="2" />
<text text-anchor="" x="1153.14" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (31 samples, 0.35%)</title><rect x="382.9" y="389" width="4.1" height="15.0" fill="rgb(234,174,37)" rx="2" ry="2" />
<text text-anchor="" x="385.90" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.01%)</title><rect x="279.3" y="453" width="0.2" height="15.0" fill="rgb(247,112,13)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_closeversion (1 samples, 0.01%)</title><rect x="45.9" y="613" width="0.1" height="15.0" fill="rgb(254,127,22)" rx="2" ry="2" />
<text text-anchor="" x="48.89" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (99 samples, 1.11%)</title><rect x="377.6" y="533" width="13.1" height="15.0" fill="rgb(244,87,50)" rx="2" ry="2" />
<text text-anchor="" x="380.60" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_mem_attach (1 samples, 0.01%)</title><rect x="402.1" y="549" width="0.1" height="15.0" fill="rgb(213,100,10)" rx="2" ry="2" />
<text text-anchor="" x="405.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (7 samples, 0.08%)</title><rect x="540.6" y="581" width="0.9" height="15.0" fill="rgb(216,46,23)" rx="2" ry="2" />
<text text-anchor="" x="543.61" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (3 samples, 0.03%)</title><rect x="574.2" y="437" width="0.4" height="15.0" fill="rgb(252,184,22)" rx="2" ry="2" />
<text text-anchor="" x="577.24" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_edge_irq (1 samples, 0.01%)</title><rect x="353.4" y="485" width="0.1" height="15.0" fill="rgb(245,108,3)" rx="2" ry="2" />
<text text-anchor="" x="356.37" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_reset (23 samples, 0.26%)</title><rect x="311.7" y="517" width="3.0" height="15.0" fill="rgb(228,30,25)" rx="2" ry="2" />
<text text-anchor="" x="314.65" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="388.3" y="325" width="0.2" height="15.0" fill="rgb(225,165,53)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (16 samples, 0.18%)</title><rect x="255.5" y="501" width="2.1" height="15.0" fill="rgb(214,183,5)" rx="2" ry="2" />
<text text-anchor="" x="258.51" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullcompare (2 samples, 0.02%)</title><rect x="495.7" y="485" width="0.3" height="15.0" fill="rgb(209,6,40)" rx="2" ry="2" />
<text text-anchor="" x="498.72" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_reset (3 samples, 0.03%)</title><rect x="1167.6" y="549" width="0.4" height="15.0" fill="rgb(224,155,6)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.12 (4 samples, 0.04%)</title><rect x="896.7" y="533" width="0.5" height="15.0" fill="rgb(230,77,20)" rx="2" ry="2" />
<text text-anchor="" x="899.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (1 samples, 0.01%)</title><rect x="501.4" y="533" width="0.1" height="15.0" fill="rgb(238,166,15)" rx="2" ry="2" />
<text text-anchor="" x="504.41" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_log (1 samples, 0.01%)</title><rect x="1112.0" y="549" width="0.1" height="15.0" fill="rgb(225,123,17)" rx="2" ry="2" />
<text text-anchor="" x="1115.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq (1 samples, 0.01%)</title><rect x="1181.8" y="549" width="0.1" height="15.0" fill="rgb(231,38,46)" rx="2" ry="2" />
<text text-anchor="" x="1184.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_renderreserve (2 samples, 0.02%)</title><rect x="509.4" y="629" width="0.2" height="15.0" fill="rgb(254,6,47)" rx="2" ry="2" />
<text text-anchor="" x="512.36" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (1 samples, 0.01%)</title><rect x="358.7" y="437" width="0.1" height="15.0" fill="rgb(221,187,16)" rx="2" ry="2" />
<text text-anchor="" x="361.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_flow_get_ports (1 samples, 0.01%)</title><rect x="1143.8" y="197" width="0.1" height="15.0" fill="rgb(247,84,36)" rx="2" ry="2" />
<text text-anchor="" x="1146.79" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_towiresorted (24 samples, 0.27%)</title><rect x="1155.0" y="565" width="3.2" height="15.0" fill="rgb(225,49,20)" rx="2" ry="2" />
<text text-anchor="" x="1158.04" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>qsort_r (1 samples, 0.01%)</title><rect x="71.6" y="613" width="0.1" height="15.0" fill="rgb(248,32,52)" rx="2" ry="2" />
<text text-anchor="" x="74.58" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (12 samples, 0.13%)</title><rect x="645.1" y="565" width="1.6" height="15.0" fill="rgb(252,90,6)" rx="2" ry="2" />
<text text-anchor="" x="648.09" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_offsets (2 samples, 0.02%)</title><rect x="502.5" y="549" width="0.2" height="15.0" fill="rgb(205,204,1)" rx="2" ry="2" />
<text text-anchor="" x="505.47" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_page_from_freelist (2 samples, 0.02%)</title><rect x="38.1" y="389" width="0.2" height="15.0" fill="rgb(229,219,15)" rx="2" ry="2" />
<text text-anchor="" x="41.07" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (1 samples, 0.01%)</title><rect x="310.5" y="229" width="0.1" height="15.0" fill="rgb(227,145,10)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (1 samples, 0.01%)</title><rect x="1169.6" y="421" width="0.1" height="15.0" fill="rgb(223,180,50)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="375.1" y="485" width="0.1" height="15.0" fill="rgb(246,68,36)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (5 samples, 0.06%)</title><rect x="511.5" y="565" width="0.6" height="15.0" fill="rgb(225,153,43)" rx="2" ry="2" />
<text text-anchor="" x="514.48" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.03%)</title><rect x="273.3" y="517" width="0.3" height="15.0" fill="rgb(233,222,34)" rx="2" ry="2" />
<text text-anchor="" x="276.25" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_pkt_to_tuple (2 samples, 0.02%)</title><rect x="1139.8" y="277" width="0.3" height="15.0" fill="rgb(223,53,25)" rx="2" ry="2" />
<text text-anchor="" x="1142.81" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_matcheswildcard (1 samples, 0.01%)</title><rect x="322.1" y="485" width="0.1" height="15.0" fill="rgb(224,223,50)" rx="2" ry="2" />
<text text-anchor="" x="325.12" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_helper (1 samples, 0.01%)</title><rect x="1151.3" y="325" width="0.2" height="15.0" fill="rgb(222,88,30)" rx="2" ry="2" />
<text text-anchor="" x="1154.33" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run_timer_softirq (2 samples, 0.02%)</title><rect x="671.4" y="437" width="0.3" height="15.0" fill="rgb(233,50,37)" rx="2" ry="2" />
<text text-anchor="" x="674.44" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (4 samples, 0.04%)</title><rect x="254.7" y="485" width="0.5" height="15.0" fill="rgb(214,166,37)" rx="2" ry="2" />
<text text-anchor="" x="257.71" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_request (117 samples, 1.31%)</title><rect x="483.9" y="629" width="15.5" height="15.0" fill="rgb(220,191,43)" rx="2" ry="2" />
<text text-anchor="" x="486.93" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (10 samples, 0.11%)</title><rect x="427.3" y="549" width="1.3" height="15.0" fill="rgb(206,132,4)" rx="2" ry="2" />
<text text-anchor="" x="430.26" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_next_bit (1 samples, 0.01%)</title><rect x="888.5" y="421" width="0.1" height="15.0" fill="rgb(249,130,8)" rx="2" ry="2" />
<text text-anchor="" x="891.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arch_apei_flush_tlb_one (3 samples, 0.03%)</title><rect x="181.0" y="565" width="0.4" height="15.0" fill="rgb(233,161,19)" rx="2" ry="2" />
<text text-anchor="" x="183.95" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_file_underflow (1 samples, 0.01%)</title><rect x="78.6" y="629" width="0.1" height="15.0" fill="rgb(229,12,29)" rx="2" ry="2" />
<text text-anchor="" x="81.59" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@@GLIBC_2.3.2 (3,576 samples, 40.13%)</title><rect x="636.2" y="629" width="473.6" height="15.0" fill="rgb(245,76,26)" rx="2" ry="2" />
<text text-anchor="" x="639.22" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pthread_cond_wait@@GLIBC_2.3.2</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_skb (3 samples, 0.03%)</title><rect x="1113.6" y="357" width="0.4" height="15.0" fill="rgb(232,21,21)" rx="2" ry="2" />
<text text-anchor="" x="1116.59" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sys_sendmsg (2 samples, 0.02%)</title><rect x="1123.4" y="501" width="0.3" height="15.0" fill="rgb(242,34,39)" rx="2" ry="2" />
<text text-anchor="" x="1126.39" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_detach (2 samples, 0.02%)</title><rect x="284.8" y="533" width="0.2" height="15.0" fill="rgb(236,94,26)" rx="2" ry="2" />
<text text-anchor="" x="287.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towiresorted.isra.3 (24 samples, 0.27%)</title><rect x="1155.0" y="549" width="3.2" height="15.0" fill="rgb(207,53,43)" rx="2" ry="2" />
<text text-anchor="" x="1158.04" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (1 samples, 0.01%)</title><rect x="898.9" y="565" width="0.2" height="15.0" fill="rgb(235,7,41)" rx="2" ry="2" />
<text text-anchor="" x="901.94" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.04%)</title><rect x="458.2" y="565" width="0.6" height="15.0" fill="rgb(207,110,40)" rx="2" ry="2" />
<text text-anchor="" x="461.24" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_writepages (1 samples, 0.01%)</title><rect x="326.1" y="373" width="0.1" height="15.0" fill="rgb(239,152,28)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.03%)</title><rect x="432.4" y="373" width="0.4" height="15.0" fill="rgb(254,93,14)" rx="2" ry="2" />
<text text-anchor="" x="435.42" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_towire (1 samples, 0.01%)</title><rect x="441.3" y="485" width="0.1" height="15.0" fill="rgb(229,169,39)" rx="2" ry="2" />
<text text-anchor="" x="444.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_flush_tlb_single (6 samples, 0.07%)</title><rect x="900.0" y="565" width="0.8" height="15.0" fill="rgb(205,182,12)" rx="2" ry="2" />
<text text-anchor="" x="903.00" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.01%)</title><rect x="622.4" y="453" width="0.2" height="15.0" fill="rgb(253,91,4)" rx="2" ry="2" />
<text text-anchor="" x="625.45" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="420.8" y="501" width="0.1" height="15.0" fill="rgb(230,11,2)" rx="2" ry="2" />
<text text-anchor="" x="423.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (4 samples, 0.04%)</title><rect x="123.0" y="293" width="0.5" height="15.0" fill="rgb(254,79,32)" rx="2" ry="2" />
<text text-anchor="" x="125.95" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_puttemprdataset (2 samples, 0.02%)</title><rect x="1168.9" y="485" width="0.3" height="15.0" fill="rgb(226,181,30)" rx="2" ry="2" />
<text text-anchor="" x="1171.95" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (8 samples, 0.09%)</title><rect x="600.1" y="581" width="1.0" height="15.0" fill="rgb(252,183,33)" rx="2" ry="2" />
<text text-anchor="" x="603.07" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_default_xsputn (2 samples, 0.02%)</title><rect x="408.7" y="453" width="0.3" height="15.0" fill="rgb(250,8,42)" rx="2" ry="2" />
<text text-anchor="" x="411.72" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_clone (1 samples, 0.01%)</title><rect x="502.1" y="549" width="0.1" height="15.0" fill="rgb(234,88,29)" rx="2" ry="2" />
<text text-anchor="" x="505.07" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullcompare (7 samples, 0.08%)</title><rect x="1163.8" y="485" width="0.9" height="15.0" fill="rgb(208,12,38)" rx="2" ry="2" />
<text text-anchor="" x="1166.78" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>float_up (1 samples, 0.01%)</title><rect x="393.1" y="565" width="0.1" height="15.0" fill="rgb(252,29,3)" rx="2" ry="2" />
<text text-anchor="" x="396.09" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.01%)</title><rect x="245.8" y="501" width="0.2" height="15.0" fill="rgb(241,125,48)" rx="2" ry="2" />
<text text-anchor="" x="248.84" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (1,808 samples, 20.29%)</title><rect x="659.7" y="581" width="239.4" height="15.0" fill="rgb(252,145,36)" rx="2" ry="2" />
<text text-anchor="" x="662.66" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_write_space (1 samples, 0.01%)</title><rect x="538.9" y="389" width="0.1" height="15.0" fill="rgb(219,174,5)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (10 samples, 0.11%)</title><rect x="892.1" y="405" width="1.3" height="15.0" fill="rgb(209,181,53)" rx="2" ry="2" />
<text text-anchor="" x="895.05" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_recv_datagram (5 samples, 0.06%)</title><rect x="295.0" y="341" width="0.6" height="15.0" fill="rgb(238,60,25)" rx="2" ry="2" />
<text text-anchor="" x="297.97" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="279.3" y="517" width="0.2" height="15.0" fill="rgb(216,96,3)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_issubdomain (24 samples, 0.27%)</title><rect x="526.2" y="549" width="3.2" height="15.0" fill="rgb(237,223,35)" rx="2" ry="2" />
<text text-anchor="" x="529.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (2 samples, 0.02%)</title><rect x="299.3" y="421" width="0.3" height="15.0" fill="rgb(238,222,14)" rx="2" ry="2" />
<text text-anchor="" x="302.34" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="529.2" y="501" width="0.2" height="15.0" fill="rgb(251,224,4)" rx="2" ry="2" />
<text text-anchor="" x="532.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__free_page_frag (6 samples, 0.07%)</title><rect x="367.8" y="373" width="0.8" height="15.0" fill="rgb(240,15,37)" rx="2" ry="2" />
<text text-anchor="" x="370.80" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (2 samples, 0.02%)</title><rect x="481.7" y="405" width="0.2" height="15.0" fill="rgb(245,124,5)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_additionaldata (34 samples, 0.38%)</title><rect x="493.1" y="549" width="4.5" height="15.0" fill="rgb(210,68,15)" rx="2" ry="2" />
<text text-anchor="" x="496.07" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.01%)</title><rect x="358.8" y="437" width="0.1" height="15.0" fill="rgb(242,18,24)" rx="2" ry="2" />
<text text-anchor="" x="361.80" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_sendpkg (1 samples, 0.01%)</title><rect x="43.9" y="613" width="0.1" height="15.0" fill="rgb(209,74,4)" rx="2" ry="2" />
<text text-anchor="" x="46.90" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.02%)</title><rect x="607.2" y="549" width="0.3" height="15.0" fill="rgb(222,199,15)" rx="2" ry="2" />
<text text-anchor="" x="610.22" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (1 samples, 0.01%)</title><rect x="318.4" y="517" width="0.1" height="15.0" fill="rgb(222,45,1)" rx="2" ry="2" />
<text text-anchor="" x="321.41" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>truncate_inode_pages_range (3 samples, 0.03%)</title><rect x="325.7" y="389" width="0.4" height="15.0" fill="rgb(213,62,0)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ghes_read_estatus (15 samples, 0.17%)</title><rect x="899.3" y="613" width="2.0" height="15.0" fill="rgb(214,118,9)" rx="2" ry="2" />
<text text-anchor="" x="902.34" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run (60 samples, 0.67%)</title><rect x="876.8" y="469" width="8.0" height="15.0" fill="rgb(223,61,24)" rx="2" ry="2" />
<text text-anchor="" x="879.83" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="424.6" y="533" width="0.1" height="15.0" fill="rgb(218,189,4)" rx="2" ry="2" />
<text text-anchor="" x="427.61" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="538.9" y="325" width="0.1" height="15.0" fill="rgb(209,42,16)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (2 samples, 0.02%)</title><rect x="441.8" y="517" width="0.3" height="15.0" fill="rgb(231,53,4)" rx="2" ry="2" />
<text text-anchor="" x="444.82" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (425 samples, 4.77%)</title><rect x="119.4" y="469" width="56.3" height="15.0" fill="rgb(242,215,9)" rx="2" ry="2" />
<text text-anchor="" x="122.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__per..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (10 samples, 0.11%)</title><rect x="448.7" y="325" width="1.3" height="15.0" fill="rgb(213,74,4)" rx="2" ry="2" />
<text text-anchor="" x="451.71" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="470.6" y="469" width="0.1" height="15.0" fill="rgb(218,55,10)" rx="2" ry="2" />
<text text-anchor="" x="473.56" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__remove_hrtimer (1 samples, 0.01%)</title><rect x="443.1" y="421" width="0.2" height="15.0" fill="rgb(223,219,15)" rx="2" ry="2" />
<text text-anchor="" x="446.15" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_route_output_key_hash (15 samples, 0.17%)</title><rect x="1130.8" y="389" width="2.0" height="15.0" fill="rgb(238,161,22)" rx="2" ry="2" />
<text text-anchor="" x="1133.81" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="507.8" y="341" width="0.1" height="15.0" fill="rgb(232,99,17)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.15 (1 samples, 0.01%)</title><rect x="374.2" y="341" width="0.1" height="15.0" fill="rgb(244,214,5)" rx="2" ry="2" />
<text text-anchor="" x="377.16" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (4 samples, 0.04%)</title><rect x="603.1" y="565" width="0.5" height="15.0" fill="rgb(222,58,52)" rx="2" ry="2" />
<text text-anchor="" x="606.11" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_prep_fn (1 samples, 0.01%)</title><rect x="325.2" y="197" width="0.1" height="15.0" fill="rgb(206,60,18)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.02%)</title><rect x="316.7" y="453" width="0.3" height="15.0" fill="rgb(217,87,46)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="477.6" y="517" width="0.1" height="15.0" fill="rgb(226,22,14)" rx="2" ry="2" />
<text text-anchor="" x="480.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_disassociate (1 samples, 0.01%)</title><rect x="492.8" y="517" width="0.1" height="15.0" fill="rgb(229,2,53)" rx="2" ry="2" />
<text text-anchor="" x="495.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>megasas_queue_command (1 samples, 0.01%)</title><rect x="326.1" y="261" width="0.1" height="15.0" fill="rgb(240,185,40)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="375.5" y="405" width="0.1" height="15.0" fill="rgb(239,3,19)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_setbuffer (1 samples, 0.01%)</title><rect x="1175.4" y="613" width="0.2" height="15.0" fill="rgb(238,172,41)" rx="2" ry="2" />
<text text-anchor="" x="1178.43" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mempool_setname (5 samples, 0.06%)</title><rect x="424.7" y="549" width="0.7" height="15.0" fill="rgb(224,66,26)" rx="2" ry="2" />
<text text-anchor="" x="427.74" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="546.2" y="517" width="0.1" height="15.0" fill="rgb(207,186,19)" rx="2" ry="2" />
<text text-anchor="" x="549.17" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_disable_all (1 samples, 0.01%)</title><rect x="116.9" y="405" width="0.1" height="15.0" fill="rgb(206,90,47)" rx="2" ry="2" />
<text text-anchor="" x="119.86" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_ext_map_blocks (1 samples, 0.01%)</title><rect x="325.3" y="341" width="0.1" height="15.0" fill="rgb(217,44,18)" rx="2" ry="2" />
<text text-anchor="" x="328.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (1 samples, 0.01%)</title><rect x="582.9" y="517" width="0.1" height="15.0" fill="rgb(252,40,23)" rx="2" ry="2" />
<text text-anchor="" x="585.85" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (3 samples, 0.03%)</title><rect x="383.3" y="325" width="0.4" height="15.0" fill="rgb(218,13,15)" rx="2" ry="2" />
<text text-anchor="" x="386.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_queue_rcv_skb (1 samples, 0.01%)</title><rect x="1158.6" y="309" width="0.1" height="15.0" fill="rgb(219,75,7)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.01%)</title><rect x="669.2" y="453" width="0.1" height="15.0" fill="rgb(244,144,45)" rx="2" ry="2" />
<text text-anchor="" x="672.19" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (3 samples, 0.03%)</title><rect x="568.9" y="485" width="0.4" height="15.0" fill="rgb(217,77,42)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getsection (4 samples, 0.04%)</title><rect x="56.5" y="613" width="0.5" height="15.0" fill="rgb(224,51,39)" rx="2" ry="2" />
<text text-anchor="" x="59.48" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (2 samples, 0.02%)</title><rect x="609.1" y="501" width="0.2" height="15.0" fill="rgb(229,169,29)" rx="2" ry="2" />
<text text-anchor="" x="612.07" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_tsc (1 samples, 0.01%)</title><rect x="449.6" y="197" width="0.2" height="15.0" fill="rgb(241,57,54)" rx="2" ry="2" />
<text text-anchor="" x="452.64" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (5 samples, 0.06%)</title><rect x="374.3" y="469" width="0.7" height="15.0" fill="rgb(236,168,29)" rx="2" ry="2" />
<text text-anchor="" x="377.29" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__filemap_fdatawrite_range (4 samples, 0.04%)</title><rect x="325.2" y="405" width="0.5" height="15.0" fill="rgb(247,167,42)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_put (1 samples, 0.01%)</title><rect x="57.4" y="549" width="0.1" height="15.0" fill="rgb(232,108,47)" rx="2" ry="2" />
<text text-anchor="" x="60.41" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (3 samples, 0.03%)</title><rect x="568.9" y="469" width="0.4" height="15.0" fill="rgb(210,39,23)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_isassociated (1 samples, 0.01%)</title><rect x="53.2" y="613" width="0.1" height="15.0" fill="rgb(241,7,12)" rx="2" ry="2" />
<text text-anchor="" x="56.17" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mnt_want_write (1 samples, 0.01%)</title><rect x="454.4" y="373" width="0.1" height="15.0" fill="rgb(207,4,28)" rx="2" ry="2" />
<text text-anchor="" x="457.40" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_invalidate (4 samples, 0.04%)</title><rect x="1152.9" y="581" width="0.6" height="15.0" fill="rgb(219,102,30)" rx="2" ry="2" />
<text text-anchor="" x="1155.92" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.01%)</title><rect x="574.6" y="453" width="0.2" height="15.0" fill="rgb(240,158,10)" rx="2" ry="2" />
<text text-anchor="" x="577.64" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="1181.8" y="581" width="0.1" height="15.0" fill="rgb(216,176,8)" rx="2" ry="2" />
<text text-anchor="" x="1184.79" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.01%)</title><rect x="574.9" y="469" width="0.1" height="15.0" fill="rgb(238,190,6)" rx="2" ry="2" />
<text text-anchor="" x="577.91" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_sockaddr_getport (1 samples, 0.01%)</title><rect x="431.5" y="501" width="0.1" height="15.0" fill="rgb(252,1,41)" rx="2" ry="2" />
<text text-anchor="" x="434.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_irq_work_interrupt (22 samples, 0.25%)</title><rect x="175.7" y="469" width="2.9" height="15.0" fill="rgb(212,135,2)" rx="2" ry="2" />
<text text-anchor="" x="178.66" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (2 samples, 0.02%)</title><rect x="401.0" y="533" width="0.3" height="15.0" fill="rgb(230,131,48)" rx="2" ry="2" />
<text text-anchor="" x="404.04" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_event_allocate (1 samples, 0.01%)</title><rect x="455.3" y="533" width="0.2" height="15.0" fill="rgb(219,59,49)" rx="2" ry="2" />
<text text-anchor="" x="458.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.01%)</title><rect x="319.2" y="389" width="0.1" height="15.0" fill="rgb(251,164,39)" rx="2" ry="2" />
<text text-anchor="" x="322.20" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__snprintf_chk (3 samples, 0.03%)</title><rect x="512.7" y="581" width="0.4" height="15.0" fill="rgb(217,139,48)" rx="2" ry="2" />
<text text-anchor="" x="515.67" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (222 samples, 2.49%)</title><rect x="554.0" y="613" width="29.4" height="15.0" fill="rgb(217,88,31)" rx="2" ry="2" />
<text text-anchor="" x="556.98" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="898.1" y="453" width="0.2" height="15.0" fill="rgb(223,189,16)" rx="2" ry="2" />
<text text-anchor="" x="901.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prb_fill_curr_block.isra.59 (4 samples, 0.04%)</title><rect x="1149.6" y="229" width="0.5" height="15.0" fill="rgb(210,222,37)" rx="2" ry="2" />
<text text-anchor="" x="1152.61" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (16 samples, 0.18%)</title><rect x="576.9" y="373" width="2.1" height="15.0" fill="rgb(238,37,53)" rx="2" ry="2" />
<text text-anchor="" x="579.89" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.01%)</title><rect x="626.9" y="501" width="0.2" height="15.0" fill="rgb(252,49,51)" rx="2" ry="2" />
<text text-anchor="" x="629.95" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="321.9" y="405" width="0.1" height="15.0" fill="rgb(253,60,25)" rx="2" ry="2" />
<text text-anchor="" x="324.85" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_equal (2 samples, 0.02%)</title><rect x="270.9" y="533" width="0.2" height="15.0" fill="rgb(231,225,46)" rx="2" ry="2" />
<text text-anchor="" x="273.87" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_recvdone_event (7 samples, 0.08%)</title><rect x="390.8" y="565" width="1.0" height="15.0" fill="rgb(247,110,42)" rx="2" ry="2" />
<text text-anchor="" x="393.84" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_put (1 samples, 0.01%)</title><rect x="498.1" y="549" width="0.1" height="15.0" fill="rgb(249,170,22)" rx="2" ry="2" />
<text text-anchor="" x="501.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (1 samples, 0.01%)</title><rect x="388.6" y="421" width="0.1" height="15.0" fill="rgb(234,124,51)" rx="2" ry="2" />
<text text-anchor="" x="391.59" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (2 samples, 0.02%)</title><rect x="643.6" y="533" width="0.3" height="15.0" fill="rgb(252,94,14)" rx="2" ry="2" />
<text text-anchor="" x="646.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_dispatch_cmd (1 samples, 0.01%)</title><rect x="326.1" y="277" width="0.1" height="15.0" fill="rgb(217,45,14)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_concatenate (1 samples, 0.01%)</title><rect x="1184.8" y="597" width="0.2" height="15.0" fill="rgb(231,19,27)" rx="2" ry="2" />
<text text-anchor="" x="1187.84" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.01%)</title><rect x="97.8" y="261" width="0.1" height="15.0" fill="rgb(206,99,16)" rx="2" ry="2" />
<text text-anchor="" x="100.79" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_fromwire (1 samples, 0.01%)</title><rect x="51.6" y="613" width="0.1" height="15.0" fill="rgb(228,172,6)" rx="2" ry="2" />
<text text-anchor="" x="54.58" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.01%)</title><rect x="116.9" y="437" width="0.1" height="15.0" fill="rgb(205,64,53)" rx="2" ry="2" />
<text text-anchor="" x="119.86" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (2 samples, 0.02%)</title><rect x="310.9" y="341" width="0.2" height="15.0" fill="rgb(213,88,35)" rx="2" ry="2" />
<text text-anchor="" x="313.86" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (32 samples, 0.36%)</title><rect x="610.4" y="533" width="4.2" height="15.0" fill="rgb(245,21,8)" rx="2" ry="2" />
<text text-anchor="" x="613.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_error (1 samples, 0.01%)</title><rect x="893.2" y="245" width="0.2" height="15.0" fill="rgb(251,171,33)" rx="2" ry="2" />
<text text-anchor="" x="896.25" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (1 samples, 0.01%)</title><rect x="626.8" y="501" width="0.1" height="15.0" fill="rgb(208,6,54)" rx="2" ry="2" />
<text text-anchor="" x="629.82" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_senddone (2 samples, 0.02%)</title><rect x="1121.3" y="565" width="0.2" height="15.0" fill="rgb(221,51,52)" rx="2" ry="2" />
<text text-anchor="" x="1124.27" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_renderend (1 samples, 0.01%)</title><rect x="592.5" y="581" width="0.2" height="15.0" fill="rgb(250,181,36)" rx="2" ry="2" />
<text text-anchor="" x="595.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (1 samples, 0.01%)</title><rect x="309.5" y="341" width="0.2" height="15.0" fill="rgb(234,24,44)" rx="2" ry="2" />
<text text-anchor="" x="312.54" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="321.9" y="389" width="0.1" height="15.0" fill="rgb(220,119,3)" rx="2" ry="2" />
<text text-anchor="" x="324.85" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_init@plt (1 samples, 0.01%)</title><rect x="1109.9" y="629" width="0.1" height="15.0" fill="rgb(250,44,38)" rx="2" ry="2" />
<text text-anchor="" x="1112.89" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbtnodechain_next (2 samples, 0.02%)</title><rect x="51.1" y="613" width="0.2" height="15.0" fill="rgb(254,214,42)" rx="2" ry="2" />
<text text-anchor="" x="54.05" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_puttempname (1 samples, 0.01%)</title><rect x="498.1" y="565" width="0.1" height="15.0" fill="rgb(227,41,50)" rx="2" ry="2" />
<text text-anchor="" x="501.10" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_cfs_rq_runtime (1 samples, 0.01%)</title><rect x="179.4" y="453" width="0.1" height="15.0" fill="rgb(232,98,36)" rx="2" ry="2" />
<text text-anchor="" x="182.37" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (21 samples, 0.24%)</title><rect x="1116.1" y="325" width="2.8" height="15.0" fill="rgb(221,131,1)" rx="2" ry="2" />
<text text-anchor="" x="1119.11" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_dev_find (2 samples, 0.02%)</title><rect x="1114.8" y="357" width="0.2" height="15.0" fill="rgb(221,3,27)" rx="2" ry="2" />
<text text-anchor="" x="1117.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (32 samples, 0.36%)</title><rect x="627.1" y="501" width="4.2" height="15.0" fill="rgb(240,110,43)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (7 samples, 0.08%)</title><rect x="420.1" y="517" width="0.9" height="15.0" fill="rgb(206,185,42)" rx="2" ry="2" />
<text text-anchor="" x="423.11" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_reply (1 samples, 0.01%)</title><rect x="47.1" y="613" width="0.1" height="15.0" fill="rgb(221,40,11)" rx="2" ry="2" />
<text text-anchor="" x="50.08" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="1184.6" y="517" width="0.1" height="15.0" fill="rgb(213,99,25)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (2 samples, 0.02%)</title><rect x="481.7" y="469" width="0.2" height="15.0" fill="rgb(238,224,35)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_flush_plug_list (1 samples, 0.01%)</title><rect x="454.9" y="325" width="0.2" height="15.0" fill="rgb(206,229,45)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_hash_function_reverse (4 samples, 0.04%)</title><rect x="1183.6" y="597" width="0.6" height="15.0" fill="rgb(254,215,28)" rx="2" ry="2" />
<text text-anchor="" x="1186.64" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_make_skb (36 samples, 0.40%)</title><rect x="1125.9" y="405" width="4.8" height="15.0" fill="rgb(249,114,38)" rx="2" ry="2" />
<text text-anchor="" x="1128.91" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (1 samples, 0.01%)</title><rect x="390.2" y="469" width="0.1" height="15.0" fill="rgb(219,133,15)" rx="2" ry="2" />
<text text-anchor="" x="393.18" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (3 samples, 0.03%)</title><rect x="29.9" y="549" width="0.4" height="15.0" fill="rgb(215,196,52)" rx="2" ry="2" />
<text text-anchor="" x="32.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_towiresorted (1 samples, 0.01%)</title><rect x="53.3" y="613" width="0.1" height="15.0" fill="rgb(244,92,4)" rx="2" ry="2" />
<text text-anchor="" x="56.30" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towiresorted.isra.3 (1 samples, 0.01%)</title><rect x="592.7" y="549" width="0.1" height="15.0" fill="rgb(238,138,5)" rx="2" ry="2" />
<text text-anchor="" x="595.65" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="592.4" y="453" width="0.1" height="15.0" fill="rgb(211,213,49)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="376.4" y="565" width="0.1" height="15.0" fill="rgb(213,30,54)" rx="2" ry="2" />
<text text-anchor="" x="379.41" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.01%)</title><rect x="177.2" y="277" width="0.2" height="15.0" fill="rgb(232,8,54)" rx="2" ry="2" />
<text text-anchor="" x="180.25" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (1 samples, 0.01%)</title><rect x="296.6" y="309" width="0.1" height="15.0" fill="rgb(221,209,30)" rx="2" ry="2" />
<text text-anchor="" x="299.56" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (2 samples, 0.02%)</title><rect x="381.2" y="453" width="0.2" height="15.0" fill="rgb(218,166,20)" rx="2" ry="2" />
<text text-anchor="" x="384.17" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (5 samples, 0.06%)</title><rect x="447.9" y="325" width="0.7" height="15.0" fill="rgb(224,56,45)" rx="2" ry="2" />
<text text-anchor="" x="450.91" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="1140.1" y="229" width="0.1" height="15.0" fill="rgb(236,108,14)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (11 samples, 0.12%)</title><rect x="37.5" y="581" width="1.5" height="15.0" fill="rgb(234,182,37)" rx="2" ry="2" />
<text text-anchor="" x="40.54" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_create (43 samples, 0.48%)</title><rect x="421.3" y="565" width="5.7" height="15.0" fill="rgb(240,129,2)" rx="2" ry="2" />
<text text-anchor="" x="424.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (1 samples, 0.01%)</title><rect x="1118.0" y="197" width="0.1" height="15.0" fill="rgb(241,207,28)" rx="2" ry="2" />
<text text-anchor="" x="1120.96" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_towire (6 samples, 0.07%)</title><rect x="51.8" y="613" width="0.8" height="15.0" fill="rgb(240,31,28)" rx="2" ry="2" />
<text text-anchor="" x="54.84" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sys_sendmsg (1 samples, 0.01%)</title><rect x="454.8" y="453" width="0.1" height="15.0" fill="rgb(233,111,35)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zonecount_count_zone (1 samples, 0.01%)</title><rect x="1189.9" y="629" width="0.1" height="15.0" fill="rgb(236,206,37)" rx="2" ry="2" />
<text text-anchor="" x="1192.87" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="1140.1" y="197" width="0.1" height="15.0" fill="rgb(205,34,3)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_find (327 samples, 3.67%)</title><rect x="281.6" y="549" width="43.3" height="15.0" fill="rgb(223,59,18)" rx="2" ry="2" />
<text text-anchor="" x="284.59" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >quer..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (4 samples, 0.04%)</title><rect x="388.9" y="437" width="0.5" height="15.0" fill="rgb(219,114,24)" rx="2" ry="2" />
<text text-anchor="" x="391.86" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (19 samples, 0.21%)</title><rect x="879.2" y="341" width="2.5" height="15.0" fill="rgb(229,210,25)" rx="2" ry="2" />
<text text-anchor="" x="882.21" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>atime_needs_update (1 samples, 0.01%)</title><rect x="472.1" y="453" width="0.2" height="15.0" fill="rgb(230,165,19)" rx="2" ry="2" />
<text text-anchor="" x="475.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_find (16 samples, 0.18%)</title><rect x="1167.6" y="581" width="2.1" height="15.0" fill="rgb(220,17,31)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (12 samples, 0.13%)</title><rect x="1116.9" y="245" width="1.6" height="15.0" fill="rgb(243,29,51)" rx="2" ry="2" />
<text text-anchor="" x="1119.90" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.80 (1 samples, 0.01%)</title><rect x="454.3" y="261" width="0.1" height="15.0" fill="rgb(215,188,34)" rx="2" ry="2" />
<text text-anchor="" x="457.27" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_detachnode (1 samples, 0.01%)</title><rect x="285.0" y="533" width="0.2" height="15.0" fill="rgb(228,215,36)" rx="2" ry="2" />
<text text-anchor="" x="288.04" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (4 samples, 0.04%)</title><rect x="49.3" y="613" width="0.6" height="15.0" fill="rgb(217,174,9)" rx="2" ry="2" />
<text text-anchor="" x="52.33" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_buffer_getuint16 (1 samples, 0.01%)</title><rect x="275.5" y="549" width="0.1" height="15.0" fill="rgb(225,71,22)" rx="2" ry="2" />
<text text-anchor="" x="278.50" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_offsets (3 samples, 0.03%)</title><rect x="320.4" y="469" width="0.4" height="15.0" fill="rgb(241,120,1)" rx="2" ry="2" />
<text text-anchor="" x="323.39" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (39 samples, 0.44%)</title><rect x="576.6" y="469" width="5.2" height="15.0" fill="rgb(228,149,8)" rx="2" ry="2" />
<text text-anchor="" x="579.63" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dquot_alloc_space (1 samples, 0.01%)</title><rect x="37.7" y="437" width="0.1" height="15.0" fill="rgb(218,26,46)" rx="2" ry="2" />
<text text-anchor="" x="40.68" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.01%)</title><rect x="676.6" y="437" width="0.1" height="15.0" fill="rgb(232,24,52)" rx="2" ry="2" />
<text text-anchor="" x="679.61" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__rdatalist_current (1 samples, 0.01%)</title><rect x="276.7" y="565" width="0.1" height="15.0" fill="rgb(236,15,7)" rx="2" ry="2" />
<text text-anchor="" x="279.70" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpage_map_and_submit_buffers (2 samples, 0.02%)</title><rect x="325.4" y="357" width="0.3" height="15.0" fill="rgb(249,16,5)" rx="2" ry="2" />
<text text-anchor="" x="328.43" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zonecount_count_all_queries (1 samples, 0.01%)</title><rect x="324.9" y="549" width="0.1" height="15.0" fill="rgb(216,130,43)" rx="2" ry="2" />
<text text-anchor="" x="327.90" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="592.4" y="437" width="0.1" height="15.0" fill="rgb(223,114,4)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="279.3" y="533" width="0.2" height="15.0" fill="rgb(238,92,49)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="471.2" y="373" width="0.2" height="15.0" fill="rgb(225,88,50)" rx="2" ry="2" />
<text text-anchor="" x="474.22" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (10 samples, 0.11%)</title><rect x="98.2" y="485" width="1.3" height="15.0" fill="rgb(252,104,23)" rx="2" ry="2" />
<text text-anchor="" x="101.19" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (5 samples, 0.06%)</title><rect x="274.6" y="549" width="0.6" height="15.0" fill="rgb(231,217,53)" rx="2" ry="2" />
<text text-anchor="" x="277.58" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="310.5" y="149" width="0.1" height="15.0" fill="rgb(247,12,35)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zone_log (1 samples, 0.01%)</title><rect x="1189.6" y="581" width="0.1" height="15.0" fill="rgb(209,149,45)" rx="2" ry="2" />
<text text-anchor="" x="1192.60" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (3 samples, 0.03%)</title><rect x="669.3" y="453" width="0.4" height="15.0" fill="rgb(242,182,36)" rx="2" ry="2" />
<text text-anchor="" x="672.32" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_pkt_to_tuple (1 samples, 0.01%)</title><rect x="1140.1" y="37" width="0.1" height="15.0" fill="rgb(241,102,33)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="422.1" y="469" width="0.1" height="15.0" fill="rgb(247,31,36)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="32.8" y="565" width="0.1" height="15.0" fill="rgb(248,52,50)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (423 samples, 4.75%)</title><rect x="119.6" y="405" width="56.1" height="15.0" fill="rgb(225,32,24)" rx="2" ry="2" />
<text text-anchor="" x="122.64" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="428.3" y="533" width="0.1" height="15.0" fill="rgb(210,159,46)" rx="2" ry="2" />
<text text-anchor="" x="431.32" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (2 samples, 0.02%)</title><rect x="97.7" y="373" width="0.2" height="15.0" fill="rgb(226,218,14)" rx="2" ry="2" />
<text text-anchor="" x="100.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__timer_detach (1 samples, 0.01%)</title><rect x="63.6" y="613" width="0.2" height="15.0" fill="rgb(248,7,12)" rx="2" ry="2" />
<text text-anchor="" x="66.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (20 samples, 0.22%)</title><rect x="22.4" y="549" width="2.7" height="15.0" fill="rgb(251,218,39)" rx="2" ry="2" />
<text text-anchor="" x="25.45" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_sockaddr_getport (1 samples, 0.01%)</title><rect x="65.9" y="613" width="0.1" height="15.0" fill="rgb(210,134,43)" rx="2" ry="2" />
<text text-anchor="" x="68.88" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="323.0" y="533" width="0.2" height="15.0" fill="rgb(207,10,27)" rx="2" ry="2" />
<text text-anchor="" x="326.04" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (6 samples, 0.07%)</title><rect x="310.6" y="405" width="0.8" height="15.0" fill="rgb(208,17,19)" rx="2" ry="2" />
<text text-anchor="" x="313.59" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decrement_reference (5 samples, 0.06%)</title><rect x="342.2" y="517" width="0.7" height="15.0" fill="rgb(248,160,16)" rx="2" ry="2" />
<text text-anchor="" x="345.24" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="497.8" y="421" width="0.2" height="15.0" fill="rgb(249,128,45)" rx="2" ry="2" />
<text text-anchor="" x="500.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_send (21 samples, 0.24%)</title><rect x="476.5" y="581" width="2.8" height="15.0" fill="rgb(240,47,38)" rx="2" ry="2" />
<text text-anchor="" x="479.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tostruct_dyncname (1 samples, 0.01%)</title><rect x="76.1" y="613" width="0.1" height="15.0" fill="rgb(241,77,23)" rx="2" ry="2" />
<text text-anchor="" x="79.08" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (64 samples, 0.72%)</title><rect x="137.1" y="293" width="8.5" height="15.0" fill="rgb(206,227,32)" rx="2" ry="2" />
<text text-anchor="" x="140.12" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromwire (2 samples, 0.02%)</title><rect x="271.7" y="517" width="0.2" height="15.0" fill="rgb(205,39,28)" rx="2" ry="2" />
<text text-anchor="" x="274.66" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (31 samples, 0.35%)</title><rect x="293.0" y="469" width="4.1" height="15.0" fill="rgb(209,119,10)" rx="2" ry="2" />
<text text-anchor="" x="295.98" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (3 samples, 0.03%)</title><rect x="572.1" y="453" width="0.4" height="15.0" fill="rgb(252,21,44)" rx="2" ry="2" />
<text text-anchor="" x="575.13" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (3 samples, 0.03%)</title><rect x="448.2" y="277" width="0.4" height="15.0" fill="rgb(214,171,16)" rx="2" ry="2" />
<text text-anchor="" x="451.18" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (6 samples, 0.07%)</title><rect x="890.6" y="501" width="0.8" height="15.0" fill="rgb(244,94,11)" rx="2" ry="2" />
<text text-anchor="" x="893.60" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (686 samples, 7.70%)</title><rect x="686.0" y="341" width="90.8" height="15.0" fill="rgb(232,66,33)" rx="2" ry="2" />
<text text-anchor="" x="689.01" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >nmi_handle</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (15 samples, 0.17%)</title><rect x="373.0" y="485" width="2.0" height="15.0" fill="rgb(238,8,14)" rx="2" ry="2" />
<text text-anchor="" x="375.96" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_log (1 samples, 0.01%)</title><rect x="592.8" y="629" width="0.1" height="15.0" fill="rgb(234,112,33)" rx="2" ry="2" />
<text text-anchor="" x="595.78" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_make_skb (4 samples, 0.04%)</title><rect x="447.1" y="373" width="0.6" height="15.0" fill="rgb(219,105,45)" rx="2" ry="2" />
<text text-anchor="" x="450.12" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>socket_log.constprop.19 (7 samples, 0.08%)</title><rect x="391.8" y="565" width="0.9" height="15.0" fill="rgb(244,16,35)" rx="2" ry="2" />
<text text-anchor="" x="394.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.01%)</title><rect x="257.1" y="437" width="0.1" height="15.0" fill="rgb(223,203,49)" rx="2" ry="2" />
<text text-anchor="" x="260.10" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_process_callbacks (1 samples, 0.01%)</title><rect x="342.8" y="437" width="0.1" height="15.0" fill="rgb(218,205,44)" rx="2" ry="2" />
<text text-anchor="" x="345.77" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_peerlist_peerbyaddr (1 samples, 0.01%)</title><rect x="50.8" y="613" width="0.1" height="15.0" fill="rgb(234,79,4)" rx="2" ry="2" />
<text text-anchor="" x="53.79" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.12 (8 samples, 0.09%)</title><rect x="250.7" y="533" width="1.1" height="15.0" fill="rgb(246,96,33)" rx="2" ry="2" />
<text text-anchor="" x="253.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_next_callback (16 samples, 0.18%)</title><rect x="314.8" y="517" width="2.2" height="15.0" fill="rgb(230,190,18)" rx="2" ry="2" />
<text text-anchor="" x="317.83" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_queue_rcv_skb (1 samples, 0.01%)</title><rect x="665.9" y="229" width="0.1" height="15.0" fill="rgb(216,196,24)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.01%)</title><rect x="177.2" y="245" width="0.2" height="15.0" fill="rgb(222,165,22)" rx="2" ry="2" />
<text text-anchor="" x="180.25" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_free (2 samples, 0.02%)</title><rect x="315.2" y="485" width="0.3" height="15.0" fill="rgb(222,95,48)" rx="2" ry="2" />
<text text-anchor="" x="318.23" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_query_start (5 samples, 0.06%)</title><rect x="593.2" y="629" width="0.6" height="15.0" fill="rgb(251,45,7)" rx="2" ry="2" />
<text text-anchor="" x="596.18" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (38 samples, 0.43%)</title><rect x="884.8" y="501" width="5.0" height="15.0" fill="rgb(213,25,8)" rx="2" ry="2" />
<text text-anchor="" x="887.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (2 samples, 0.02%)</title><rect x="310.2" y="389" width="0.3" height="15.0" fill="rgb(228,3,32)" rx="2" ry="2" />
<text text-anchor="" x="313.20" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_getsockname (8 samples, 0.09%)</title><rect x="431.9" y="437" width="1.1" height="15.0" fill="rgb(227,195,50)" rx="2" ry="2" />
<text text-anchor="" x="434.89" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_validatezonedb (1 samples, 0.01%)</title><rect x="1169.6" y="565" width="0.1" height="15.0" fill="rgb(228,142,43)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>passthru_features_check (2 samples, 0.02%)</title><rect x="1150.8" y="229" width="0.3" height="15.0" fill="rgb(238,79,44)" rx="2" ry="2" />
<text text-anchor="" x="1153.80" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_bts_enable_local (12 samples, 0.13%)</title><rect x="86.3" y="277" width="1.6" height="15.0" fill="rgb(228,116,34)" rx="2" ry="2" />
<text text-anchor="" x="89.27" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skb (1 samples, 0.01%)</title><rect x="1108.8" y="421" width="0.2" height="15.0" fill="rgb(214,45,26)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_interrupt (2 samples, 0.02%)</title><rect x="631.3" y="501" width="0.3" height="15.0" fill="rgb(236,128,3)" rx="2" ry="2" />
<text text-anchor="" x="634.32" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="507.8" y="485" width="0.1" height="15.0" fill="rgb(225,8,5)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__socket_recv2 (2 samples, 0.02%)</title><rect x="292.1" y="501" width="0.2" height="15.0" fill="rgb(228,13,51)" rx="2" ry="2" />
<text text-anchor="" x="295.06" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_repeat_nmi (204 samples, 2.29%)</title><rect x="119.6" y="373" width="27.1" height="15.0" fill="rgb(213,0,50)" rx="2" ry="2" />
<text text-anchor="" x="122.64" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fsync_range (2 samples, 0.02%)</title><rect x="454.9" y="437" width="0.3" height="15.0" fill="rgb(224,19,9)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_gettimeofday (7 samples, 0.08%)</title><rect x="41.9" y="613" width="0.9" height="15.0" fill="rgb(212,210,27)" rx="2" ry="2" />
<text text-anchor="" x="44.91" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.01%)</title><rect x="1151.6" y="133" width="0.1" height="15.0" fill="rgb(236,95,7)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queue_unplugged (1 samples, 0.01%)</title><rect x="325.2" y="261" width="0.1" height="15.0" fill="rgb(245,61,28)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (2 samples, 0.02%)</title><rect x="132.6" y="277" width="0.3" height="15.0" fill="rgb(252,13,31)" rx="2" ry="2" />
<text text-anchor="" x="135.62" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (64 samples, 0.72%)</title><rect x="381.4" y="453" width="8.5" height="15.0" fill="rgb(224,226,36)" rx="2" ry="2" />
<text text-anchor="" x="384.44" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (2 samples, 0.02%)</title><rect x="118.6" y="421" width="0.2" height="15.0" fill="rgb(229,85,49)" rx="2" ry="2" />
<text text-anchor="" x="121.58" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (4 samples, 0.04%)</title><rect x="568.8" y="501" width="0.5" height="15.0" fill="rgb(232,65,30)" rx="2" ry="2" />
<text text-anchor="" x="571.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_decompress_init (1 samples, 0.01%)</title><rect x="267.4" y="549" width="0.2" height="15.0" fill="rgb(245,34,30)" rx="2" ry="2" />
<text text-anchor="" x="270.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (4 samples, 0.04%)</title><rect x="83.0" y="437" width="0.5" height="15.0" fill="rgb(245,201,43)" rx="2" ry="2" />
<text text-anchor="" x="85.96" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="410.8" y="533" width="0.2" height="15.0" fill="rgb(212,125,54)" rx="2" ry="2" />
<text text-anchor="" x="413.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="399.6" y="565" width="0.1" height="15.0" fill="rgb(240,107,46)" rx="2" ry="2" />
<text text-anchor="" x="402.58" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (5 samples, 0.06%)</title><rect x="453.9" y="437" width="0.6" height="15.0" fill="rgb(244,62,28)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="398.7" y="533" width="0.1" height="15.0" fill="rgb(235,109,27)" rx="2" ry="2" />
<text text-anchor="" x="401.65" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_attach (5 samples, 0.06%)</title><rect x="288.7" y="517" width="0.7" height="15.0" fill="rgb(205,123,14)" rx="2" ry="2" />
<text text-anchor="" x="291.75" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_request_createvia4 (155 samples, 1.74%)</title><rect x="429.6" y="565" width="20.6" height="15.0" fill="rgb(213,191,32)" rx="2" ry="2" />
<text text-anchor="" x="432.64" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.01%)</title><rect x="117.7" y="437" width="0.1" height="15.0" fill="rgb(240,210,35)" rx="2" ry="2" />
<text text-anchor="" x="120.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (17 samples, 0.19%)</title><rect x="458.9" y="565" width="2.3" height="15.0" fill="rgb(222,175,47)" rx="2" ry="2" />
<text text-anchor="" x="461.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_once@plt (1 samples, 0.01%)</title><rect x="1110.9" y="629" width="0.2" height="15.0" fill="rgb(236,146,43)" rx="2" ry="2" />
<text text-anchor="" x="1113.94" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_mempool_create (1 samples, 0.01%)</title><rect x="426.9" y="549" width="0.1" height="15.0" fill="rgb(246,211,36)" rx="2" ry="2" />
<text text-anchor="" x="429.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (2 samples, 0.02%)</title><rect x="179.6" y="485" width="0.3" height="15.0" fill="rgb(237,120,51)" rx="2" ry="2" />
<text text-anchor="" x="182.63" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromregion (4 samples, 0.04%)</title><rect x="321.5" y="485" width="0.5" height="15.0" fill="rgb(235,216,18)" rx="2" ry="2" />
<text text-anchor="" x="324.45" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.01%)</title><rect x="592.4" y="373" width="0.1" height="15.0" fill="rgb(218,19,38)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="507.8" y="421" width="0.1" height="15.0" fill="rgb(241,140,46)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.04%)</title><rect x="325.2" y="501" width="0.5" height="15.0" fill="rgb(213,218,29)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.01%)</title><rect x="280.0" y="405" width="0.1" height="15.0" fill="rgb(210,24,37)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (8 samples, 0.09%)</title><rect x="892.3" y="325" width="1.1" height="15.0" fill="rgb(247,168,40)" rx="2" ry="2" />
<text text-anchor="" x="895.32" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (6 samples, 0.07%)</title><rect x="272.9" y="533" width="0.7" height="15.0" fill="rgb(247,103,33)" rx="2" ry="2" />
<text text-anchor="" x="275.85" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_rechecksig (1 samples, 0.01%)</title><rect x="275.9" y="565" width="0.1" height="15.0" fill="rgb(235,210,36)" rx="2" ry="2" />
<text text-anchor="" x="278.90" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_wakeup (60 samples, 0.67%)</title><rect x="876.8" y="421" width="8.0" height="15.0" fill="rgb(215,91,20)" rx="2" ry="2" />
<text text-anchor="" x="879.83" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addadditional (34 samples, 0.38%)</title><rect x="493.1" y="517" width="4.5" height="15.0" fill="rgb(214,185,0)" rx="2" ry="2" />
<text text-anchor="" x="496.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.02%)</title><rect x="258.6" y="597" width="0.2" height="15.0" fill="rgb(242,101,35)" rx="2" ry="2" />
<text text-anchor="" x="261.55" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_create1 (1 samples, 0.01%)</title><rect x="552.4" y="629" width="0.1" height="15.0" fill="rgb(218,49,26)" rx="2" ry="2" />
<text text-anchor="" x="555.39" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="498.0" y="533" width="0.1" height="15.0" fill="rgb(226,43,17)" rx="2" ry="2" />
<text text-anchor="" x="500.97" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.01%)</title><rect x="258.4" y="357" width="0.2" height="15.0" fill="rgb(240,211,12)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_L_cond_lock_1079 (254 samples, 2.85%)</title><rect x="81.4" y="629" width="33.6" height="15.0" fill="rgb(240,123,21)" rx="2" ry="2" />
<text text-anchor="" x="84.37" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_L..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="1108.8" y="453" width="0.2" height="15.0" fill="rgb(229,52,49)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (139 samples, 1.56%)</title><rect x="81.8" y="565" width="18.4" height="15.0" fill="rgb(240,190,18)" rx="2" ry="2" />
<text text-anchor="" x="84.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (1 samples, 0.01%)</title><rect x="1113.5" y="341" width="0.1" height="15.0" fill="rgb(215,132,14)" rx="2" ry="2" />
<text text-anchor="" x="1116.46" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="412.7" y="533" width="0.1" height="15.0" fill="rgb(230,97,5)" rx="2" ry="2" />
<text text-anchor="" x="415.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="115.9" y="565" width="0.2" height="15.0" fill="rgb(216,8,44)" rx="2" ry="2" />
<text text-anchor="" x="118.94" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="544.2" y="581" width="0.1" height="15.0" fill="rgb(219,129,26)" rx="2" ry="2" />
<text text-anchor="" x="547.18" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_invalidatepage (1 samples, 0.01%)</title><rect x="326.0" y="341" width="0.1" height="15.0" fill="rgb(211,118,0)" rx="2" ry="2" />
<text text-anchor="" x="328.96" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset@plt (1 samples, 0.01%)</title><rect x="67.5" y="613" width="0.1" height="15.0" fill="rgb(214,127,24)" rx="2" ry="2" />
<text text-anchor="" x="70.47" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_msix_ring (1 samples, 0.01%)</title><rect x="891.5" y="421" width="0.2" height="15.0" fill="rgb(220,110,50)" rx="2" ry="2" />
<text text-anchor="" x="894.52" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addsoa (4 samples, 0.04%)</title><rect x="1170.1" y="549" width="0.6" height="15.0" fill="rgb(213,90,27)" rx="2" ry="2" />
<text text-anchor="" x="1173.14" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_usedregion (1 samples, 0.01%)</title><rect x="62.6" y="613" width="0.1" height="15.0" fill="rgb(252,142,53)" rx="2" ry="2" />
<text text-anchor="" x="65.57" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>allocate_udp_buffer.isra.8 (1 samples, 0.01%)</title><rect x="483.8" y="629" width="0.1" height="15.0" fill="rgb(206,223,10)" rx="2" ry="2" />
<text text-anchor="" x="486.80" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (2 samples, 0.02%)</title><rect x="343.4" y="517" width="0.3" height="15.0" fill="rgb(222,36,41)" rx="2" ry="2" />
<text text-anchor="" x="346.44" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_peekheader (1 samples, 0.01%)</title><rect x="451.1" y="565" width="0.1" height="15.0" fill="rgb(207,121,12)" rx="2" ry="2" />
<text text-anchor="" x="454.09" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.01%)</title><rect x="1158.6" y="261" width="0.1" height="15.0" fill="rgb(231,168,11)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (2 samples, 0.02%)</title><rect x="386.7" y="293" width="0.3" height="15.0" fill="rgb(230,111,27)" rx="2" ry="2" />
<text text-anchor="" x="389.74" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="430.4" y="501" width="0.2" height="15.0" fill="rgb(221,205,0)" rx="2" ry="2" />
<text text-anchor="" x="433.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="446.2" y="485" width="0.1" height="15.0" fill="rgb(245,180,3)" rx="2" ry="2" />
<text text-anchor="" x="449.19" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sb_start_write (3 samples, 0.03%)</title><rect x="382.2" y="437" width="0.4" height="15.0" fill="rgb(208,95,51)" rx="2" ry="2" />
<text text-anchor="" x="385.23" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.02%)</title><rect x="35.0" y="517" width="0.3" height="15.0" fill="rgb(247,66,37)" rx="2" ry="2" />
<text text-anchor="" x="38.03" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_doit (1 samples, 0.01%)</title><rect x="445.9" y="501" width="0.2" height="15.0" fill="rgb(243,98,3)" rx="2" ry="2" />
<text text-anchor="" x="448.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ext4_journal_start_sb (1 samples, 0.01%)</title><rect x="38.6" y="421" width="0.1" height="15.0" fill="rgb(232,169,4)" rx="2" ry="2" />
<text text-anchor="" x="41.60" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_value_locked (1 samples, 0.01%)</title><rect x="100.0" y="517" width="0.2" height="15.0" fill="rgb(248,137,40)" rx="2" ry="2" />
<text text-anchor="" x="103.05" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.02%)</title><rect x="880.7" y="325" width="0.2" height="15.0" fill="rgb(232,69,26)" rx="2" ry="2" />
<text text-anchor="" x="883.67" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_buffer_getuint16 (1 samples, 0.01%)</title><rect x="277.2" y="565" width="0.2" height="15.0" fill="rgb(240,87,35)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_get_command (1 samples, 0.01%)</title><rect x="325.2" y="181" width="0.1" height="15.0" fill="rgb(251,111,0)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_send_skb (26 samples, 0.29%)</title><rect x="1115.4" y="389" width="3.5" height="15.0" fill="rgb(221,178,34)" rx="2" ry="2" />
<text text-anchor="" x="1118.45" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_caseequal (3 samples, 0.03%)</title><rect x="501.0" y="533" width="0.4" height="15.0" fill="rgb(238,142,41)" rx="2" ry="2" />
<text text-anchor="" x="504.02" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (2 samples, 0.02%)</title><rect x="296.0" y="341" width="0.3" height="15.0" fill="rgb(230,218,48)" rx="2" ry="2" />
<text text-anchor="" x="299.03" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__socket_getsockname (10 samples, 0.11%)</title><rect x="431.6" y="485" width="1.4" height="15.0" fill="rgb(237,151,11)" rx="2" ry="2" />
<text text-anchor="" x="434.63" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (2 samples, 0.02%)</title><rect x="481.7" y="453" width="0.2" height="15.0" fill="rgb(223,107,12)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>attach_entity_load_avg (1 samples, 0.01%)</title><rect x="620.3" y="469" width="0.2" height="15.0" fill="rgb(220,84,51)" rx="2" ry="2" />
<text text-anchor="" x="623.33" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (7 samples, 0.08%)</title><rect x="364.0" y="405" width="0.9" height="15.0" fill="rgb(226,201,52)" rx="2" ry="2" />
<text text-anchor="" x="366.96" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_hot_cold_page (1 samples, 0.01%)</title><rect x="325.7" y="325" width="0.1" height="15.0" fill="rgb(250,43,4)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addadditional (12 samples, 0.13%)</title><rect x="1168.0" y="501" width="1.6" height="15.0" fill="rgb(249,188,8)" rx="2" ry="2" />
<text text-anchor="" x="1171.02" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="610.3" y="485" width="0.1" height="15.0" fill="rgb(206,195,14)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (2 samples, 0.02%)</title><rect x="481.7" y="485" width="0.2" height="15.0" fill="rgb(237,62,4)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.01%)</title><rect x="1154.9" y="485" width="0.1" height="15.0" fill="rgb(210,180,12)" rx="2" ry="2" />
<text text-anchor="" x="1157.91" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (1 samples, 0.01%)</title><rect x="37.4" y="533" width="0.1" height="15.0" fill="rgb(243,49,53)" rx="2" ry="2" />
<text text-anchor="" x="40.41" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run (1 samples, 0.01%)</title><rect x="75.0" y="613" width="0.2" height="15.0" fill="rgb(245,207,39)" rx="2" ry="2" />
<text text-anchor="" x="78.02" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_bh (1 samples, 0.01%)</title><rect x="296.3" y="309" width="0.1" height="15.0" fill="rgb(208,157,19)" rx="2" ry="2" />
<text text-anchor="" x="299.29" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="449.4" y="213" width="0.1" height="15.0" fill="rgb(252,47,40)" rx="2" ry="2" />
<text text-anchor="" x="452.37" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__qdisc_run (1 samples, 0.01%)</title><rect x="448.8" y="245" width="0.2" height="15.0" fill="rgb(224,203,38)" rx="2" ry="2" />
<text text-anchor="" x="451.84" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (2 samples, 0.02%)</title><rect x="896.4" y="517" width="0.3" height="15.0" fill="rgb(243,43,36)" rx="2" ry="2" />
<text text-anchor="" x="899.42" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="277.2" y="421" width="0.2" height="15.0" fill="rgb(249,225,19)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (480 samples, 5.39%)</title><rect x="116.3" y="517" width="63.6" height="15.0" fill="rgb(246,72,5)" rx="2" ry="2" />
<text text-anchor="" x="119.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >schedule</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.01%)</title><rect x="97.8" y="309" width="0.1" height="15.0" fill="rgb(235,145,26)" rx="2" ry="2" />
<text text-anchor="" x="100.79" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ghes_read_estatus (4 samples, 0.04%)</title><rect x="181.0" y="597" width="0.5" height="15.0" fill="rgb(219,98,4)" rx="2" ry="2" />
<text text-anchor="" x="183.95" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop_futex_key_refs.isra.13 (1 samples, 0.01%)</title><rect x="116.2" y="549" width="0.1" height="15.0" fill="rgb(207,163,3)" rx="2" ry="2" />
<text text-anchor="" x="119.20" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_append_data.isra.47 (3 samples, 0.03%)</title><rect x="447.1" y="357" width="0.4" height="15.0" fill="rgb(231,79,50)" rx="2" ry="2" />
<text text-anchor="" x="450.12" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_skb_features (1 samples, 0.01%)</title><rect x="1142.7" y="213" width="0.2" height="15.0" fill="rgb(223,129,30)" rx="2" ry="2" />
<text text-anchor="" x="1145.73" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_socket_recv2 (1 samples, 0.01%)</title><rect x="292.3" y="501" width="0.2" height="15.0" fill="rgb(209,151,2)" rx="2" ry="2" />
<text text-anchor="" x="295.32" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (16 samples, 0.18%)</title><rect x="627.1" y="357" width="2.1" height="15.0" fill="rgb(216,72,50)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (689 samples, 7.73%)</title><rect x="685.6" y="373" width="91.2" height="15.0" fill="rgb(239,45,36)" rx="2" ry="2" />
<text text-anchor="" x="688.61" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_nmi</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="374.2" y="389" width="0.1" height="15.0" fill="rgb(220,59,9)" rx="2" ry="2" />
<text text-anchor="" x="377.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (1,453 samples, 16.31%)</title><rect x="684.4" y="469" width="192.4" height="15.0" fill="rgb(245,96,4)" rx="2" ry="2" />
<text text-anchor="" x="687.42" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_event_context_sched_in</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="1138.1" y="261" width="0.1" height="15.0" fill="rgb(246,152,35)" rx="2" ry="2" />
<text text-anchor="" x="1141.09" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="428.4" y="533" width="0.2" height="15.0" fill="rgb(246,141,5)" rx="2" ry="2" />
<text text-anchor="" x="431.45" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_parse (73 samples, 0.82%)</title><rect x="266.0" y="565" width="9.6" height="15.0" fill="rgb(220,62,37)" rx="2" ry="2" />
<text text-anchor="" x="268.97" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addrrset (1 samples, 0.01%)</title><rect x="1170.3" y="533" width="0.1" height="15.0" fill="rgb(229,214,11)" rx="2" ry="2" />
<text text-anchor="" x="1173.27" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (4 samples, 0.04%)</title><rect x="671.2" y="453" width="0.5" height="15.0" fill="rgb(233,120,37)" rx="2" ry="2" />
<text text-anchor="" x="674.18" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="311.4" y="437" width="0.1" height="15.0" fill="rgb(206,148,40)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (179 samples, 2.01%)</title><rect x="601.3" y="581" width="23.7" height="15.0" fill="rgb(227,75,32)" rx="2" ry="2" />
<text text-anchor="" x="604.26" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__socket_recv2 (1 samples, 0.01%)</title><rect x="452.9" y="549" width="0.2" height="15.0" fill="rgb(231,224,21)" rx="2" ry="2" />
<text text-anchor="" x="455.95" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="1186.3" y="549" width="0.1" height="15.0" fill="rgb(226,119,9)" rx="2" ry="2" />
<text text-anchor="" x="1189.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (3 samples, 0.03%)</title><rect x="672.9" y="389" width="0.4" height="15.0" fill="rgb(236,193,27)" rx="2" ry="2" />
<text text-anchor="" x="675.90" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (2 samples, 0.02%)</title><rect x="1119.2" y="437" width="0.2" height="15.0" fill="rgb(210,172,38)" rx="2" ry="2" />
<text text-anchor="" x="1122.15" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pending_event (60 samples, 0.67%)</title><rect x="876.8" y="437" width="8.0" height="15.0" fill="rgb(247,177,54)" rx="2" ry="2" />
<text text-anchor="" x="879.83" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (1 samples, 0.01%)</title><rect x="454.8" y="229" width="0.1" height="15.0" fill="rgb(232,104,29)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (79 samples, 0.89%)</title><rect x="465.4" y="533" width="10.5" height="15.0" fill="rgb(225,114,34)" rx="2" ry="2" />
<text text-anchor="" x="468.39" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.01%)</title><rect x="454.3" y="245" width="0.1" height="15.0" fill="rgb(207,227,25)" rx="2" ry="2" />
<text text-anchor="" x="457.27" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (13 samples, 0.15%)</title><rect x="255.6" y="485" width="1.8" height="15.0" fill="rgb(236,86,17)" rx="2" ry="2" />
<text text-anchor="" x="258.64" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_towire (1 samples, 0.01%)</title><rect x="592.5" y="565" width="0.2" height="15.0" fill="rgb(209,30,43)" rx="2" ry="2" />
<text text-anchor="" x="595.52" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_kfree_skb_any (1 samples, 0.01%)</title><rect x="74.9" y="517" width="0.1" height="15.0" fill="rgb(206,77,15)" rx="2" ry="2" />
<text text-anchor="" x="77.89" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towire_soa (7 samples, 0.08%)</title><rect x="507.0" y="549" width="0.9" height="15.0" fill="rgb(242,65,17)" rx="2" ry="2" />
<text text-anchor="" x="509.97" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_datagram_locked (10 samples, 0.11%)</title><rect x="367.4" y="421" width="1.3" height="15.0" fill="rgb(208,176,28)" rx="2" ry="2" />
<text text-anchor="" x="370.40" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tpacket_rcv (1 samples, 0.01%)</title><rect x="448.8" y="197" width="0.2" height="15.0" fill="rgb(211,87,28)" rx="2" ry="2" />
<text text-anchor="" x="451.84" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (2 samples, 0.02%)</title><rect x="561.5" y="549" width="0.3" height="15.0" fill="rgb(252,33,18)" rx="2" ry="2" />
<text text-anchor="" x="564.53" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (6 samples, 0.07%)</title><rect x="1109.0" y="613" width="0.8" height="15.0" fill="rgb(211,113,42)" rx="2" ry="2" />
<text text-anchor="" x="1111.96" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detachnode (11 samples, 0.12%)</title><rect x="342.2" y="533" width="1.5" height="15.0" fill="rgb(230,139,7)" rx="2" ry="2" />
<text text-anchor="" x="345.24" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="1141.9" y="261" width="0.2" height="15.0" fill="rgb(226,120,26)" rx="2" ry="2" />
<text text-anchor="" x="1144.93" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_putuint16 (1 samples, 0.01%)</title><rect x="1156.5" y="533" width="0.1" height="15.0" fill="rgb(225,191,36)" rx="2" ry="2" />
<text text-anchor="" x="1159.50" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="350.3" y="517" width="0.2" height="15.0" fill="rgb(210,34,27)" rx="2" ry="2" />
<text text-anchor="" x="353.32" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event (1 samples, 0.01%)</title><rect x="891.5" y="437" width="0.2" height="15.0" fill="rgb(226,119,49)" rx="2" ry="2" />
<text text-anchor="" x="894.52" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iptable_filter_hook (9 samples, 0.10%)</title><rect x="1134.5" y="309" width="1.2" height="15.0" fill="rgb(240,75,42)" rx="2" ry="2" />
<text text-anchor="" x="1137.52" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_puttemprdataset (1 samples, 0.01%)</title><rect x="46.7" y="613" width="0.1" height="15.0" fill="rgb(254,70,1)" rx="2" ry="2" />
<text text-anchor="" x="49.68" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_set_test (1 samples, 0.01%)</title><rect x="893.0" y="197" width="0.1" height="15.0" fill="rgb(252,97,31)" rx="2" ry="2" />
<text text-anchor="" x="895.98" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="1142.9" y="277" width="0.1" height="15.0" fill="rgb(211,149,8)" rx="2" ry="2" />
<text text-anchor="" x="1145.86" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (3 samples, 0.03%)</title><rect x="33.2" y="549" width="0.4" height="15.0" fill="rgb(235,108,9)" rx="2" ry="2" />
<text text-anchor="" x="36.17" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_find_next_bit.part.0 (1 samples, 0.01%)</title><rect x="612.6" y="469" width="0.2" height="15.0" fill="rgb(231,217,10)" rx="2" ry="2" />
<text text-anchor="" x="615.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_random_get (2 samples, 0.02%)</title><rect x="1189.2" y="597" width="0.3" height="15.0" fill="rgb(224,44,52)" rx="2" ry="2" />
<text text-anchor="" x="1192.21" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.01%)</title><rect x="684.7" y="437" width="0.1" height="15.0" fill="rgb(236,119,34)" rx="2" ry="2" />
<text text-anchor="" x="687.68" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_offsets (1 samples, 0.01%)</title><rect x="441.4" y="469" width="0.2" height="15.0" fill="rgb(227,3,7)" rx="2" ry="2" />
<text text-anchor="" x="444.43" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.01%)</title><rect x="293.0" y="453" width="0.1" height="15.0" fill="rgb(239,100,25)" rx="2" ry="2" />
<text text-anchor="" x="295.98" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="375.1" y="405" width="0.1" height="15.0" fill="rgb(214,108,41)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_usedregion (1 samples, 0.01%)</title><rect x="536.9" y="597" width="0.1" height="15.0" fill="rgb(238,77,25)" rx="2" ry="2" />
<text text-anchor="" x="539.90" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (16 samples, 0.18%)</title><rect x="721.6" y="293" width="2.1" height="15.0" fill="rgb(227,12,12)" rx="2" ry="2" />
<text text-anchor="" x="724.63" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullcompare (24 samples, 0.27%)</title><rect x="526.2" y="533" width="3.2" height="15.0" fill="rgb(218,171,38)" rx="2" ry="2" />
<text text-anchor="" x="529.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_with_offset (1 samples, 0.01%)</title><rect x="1147.2" y="245" width="0.2" height="15.0" fill="rgb(235,25,24)" rx="2" ry="2" />
<text text-anchor="" x="1150.23" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run (12 samples, 0.13%)</title><rect x="1170.0" y="613" width="1.6" height="15.0" fill="rgb(244,31,1)" rx="2" ry="2" />
<text text-anchor="" x="1173.00" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (3 samples, 0.03%)</title><rect x="568.9" y="437" width="0.4" height="15.0" fill="rgb(225,60,19)" rx="2" ry="2" />
<text text-anchor="" x="571.95" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (102 samples, 1.14%)</title><rect x="83.6" y="389" width="13.5" height="15.0" fill="rgb(209,55,48)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (4 samples, 0.04%)</title><rect x="1127.9" y="293" width="0.5" height="15.0" fill="rgb(248,139,4)" rx="2" ry="2" />
<text text-anchor="" x="1130.89" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (11 samples, 0.12%)</title><rect x="891.9" y="453" width="1.5" height="15.0" fill="rgb(218,203,28)" rx="2" ry="2" />
<text text-anchor="" x="894.92" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (25 samples, 0.28%)</title><rect x="446.9" y="485" width="3.3" height="15.0" fill="rgb(234,71,54)" rx="2" ry="2" />
<text text-anchor="" x="449.86" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.01%)</title><rect x="1184.6" y="453" width="0.1" height="15.0" fill="rgb(206,88,26)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset (9 samples, 0.10%)</title><rect x="442.1" y="517" width="1.2" height="15.0" fill="rgb(232,83,9)" rx="2" ry="2" />
<text text-anchor="" x="445.09" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (6 samples, 0.07%)</title><rect x="354.0" y="533" width="0.8" height="15.0" fill="rgb(211,204,54)" rx="2" ry="2" />
<text text-anchor="" x="357.03" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_buildopt (14 samples, 0.16%)</title><rect x="419.2" y="549" width="1.8" height="15.0" fill="rgb(213,29,45)" rx="2" ry="2" />
<text text-anchor="" x="422.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.01%)</title><rect x="665.9" y="117" width="0.1" height="15.0" fill="rgb(237,121,2)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_init (1 samples, 0.01%)</title><rect x="1119.7" y="565" width="0.1" height="15.0" fill="rgb(219,204,37)" rx="2" ry="2" />
<text text-anchor="" x="1122.68" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rmqueue.isra.80 (1 samples, 0.01%)</title><rect x="38.2" y="373" width="0.1" height="15.0" fill="rgb(233,211,0)" rx="2" ry="2" />
<text text-anchor="" x="41.21" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arch_apei_flush_tlb_one (12 samples, 0.13%)</title><rect x="899.3" y="581" width="1.6" height="15.0" fill="rgb(224,170,47)" rx="2" ry="2" />
<text text-anchor="" x="902.34" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="1119.4" y="501" width="0.2" height="15.0" fill="rgb(240,13,52)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.80 (1 samples, 0.01%)</title><rect x="257.2" y="469" width="0.2" height="15.0" fill="rgb(253,43,50)" rx="2" ry="2" />
<text text-anchor="" x="260.23" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_renderend (4 samples, 0.04%)</title><rect x="1153.5" y="581" width="0.5" height="15.0" fill="rgb(240,13,41)" rx="2" ry="2" />
<text text-anchor="" x="1156.45" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_bit (1 samples, 0.01%)</title><rect x="325.4" y="293" width="0.2" height="15.0" fill="rgb(241,226,11)" rx="2" ry="2" />
<text text-anchor="" x="328.43" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_flush_tlb_single (1 samples, 0.01%)</title><rect x="181.4" y="565" width="0.1" height="15.0" fill="rgb(214,113,24)" rx="2" ry="2" />
<text text-anchor="" x="184.35" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_hash_function_reverse (4 samples, 0.04%)</title><rect x="501.5" y="533" width="0.6" height="15.0" fill="rgb(239,83,48)" rx="2" ry="2" />
<text text-anchor="" x="504.55" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (11 samples, 0.12%)</title><rect x="123.5" y="293" width="1.4" height="15.0" fill="rgb(243,201,45)" rx="2" ry="2" />
<text text-anchor="" x="126.48" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (103 samples, 1.16%)</title><rect x="83.6" y="453" width="13.7" height="15.0" fill="rgb(234,50,35)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_label_sk_perm (2 samples, 0.02%)</title><rect x="432.2" y="341" width="0.2" height="15.0" fill="rgb(232,42,26)" rx="2" ry="2" />
<text text-anchor="" x="435.16" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__d_free (1 samples, 0.01%)</title><rect x="117.3" y="405" width="0.1" height="15.0" fill="rgb(205,117,7)" rx="2" ry="2" />
<text text-anchor="" x="120.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_attach (1 samples, 0.01%)</title><rect x="438.6" y="517" width="0.2" height="15.0" fill="rgb(228,31,23)" rx="2" ry="2" />
<text text-anchor="" x="441.65" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>catgets (1 samples, 0.01%)</title><rect x="43.2" y="613" width="0.2" height="15.0" fill="rgb(248,173,39)" rx="2" ry="2" />
<text text-anchor="" x="46.24" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="1119.4" y="261" width="0.2" height="15.0" fill="rgb(243,104,45)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="886.4" y="437" width="0.1" height="15.0" fill="rgb(206,216,36)" rx="2" ry="2" />
<text text-anchor="" x="889.36" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (5 samples, 0.06%)</title><rect x="447.9" y="309" width="0.7" height="15.0" fill="rgb(220,220,49)" rx="2" ry="2" />
<text text-anchor="" x="450.91" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.03%)</title><rect x="318.8" y="517" width="0.4" height="15.0" fill="rgb(237,202,33)" rx="2" ry="2" />
<text text-anchor="" x="321.80" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (61 samples, 0.68%)</title><rect x="737.3" y="293" width="8.0" height="15.0" fill="rgb(205,59,52)" rx="2" ry="2" />
<text text-anchor="" x="740.25" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="342.8" y="485" width="0.1" height="15.0" fill="rgb(218,11,29)" rx="2" ry="2" />
<text text-anchor="" x="345.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detachnode (3 samples, 0.03%)</title><rect x="1167.6" y="485" width="0.4" height="15.0" fill="rgb(228,24,9)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>log_dynchoice (1 samples, 0.01%)</title><rect x="1189.5" y="597" width="0.1" height="15.0" fill="rgb(230,212,52)" rx="2" ry="2" />
<text text-anchor="" x="1192.47" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_do_write (1 samples, 0.01%)</title><rect x="81.2" y="597" width="0.2" height="15.0" fill="rgb(229,26,20)" rx="2" ry="2" />
<text text-anchor="" x="84.24" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_bts_enable_local (2 samples, 0.02%)</title><rect x="628.3" y="293" width="0.2" height="15.0" fill="rgb(235,51,10)" rx="2" ry="2" />
<text text-anchor="" x="631.27" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (2 samples, 0.02%)</title><rect x="482.6" y="613" width="0.3" height="15.0" fill="rgb(222,146,22)" rx="2" ry="2" />
<text text-anchor="" x="485.61" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_bh (1 samples, 0.01%)</title><rect x="368.6" y="405" width="0.1" height="15.0" fill="rgb(212,228,53)" rx="2" ry="2" />
<text text-anchor="" x="371.59" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_virtual_current (1 samples, 0.01%)</title><rect x="322.2" y="501" width="0.2" height="15.0" fill="rgb(218,147,53)" rx="2" ry="2" />
<text text-anchor="" x="325.25" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="81.1" y="453" width="0.1" height="15.0" fill="rgb(229,31,28)" rx="2" ry="2" />
<text text-anchor="" x="84.11" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="497.8" y="469" width="0.2" height="15.0" fill="rgb(212,190,34)" rx="2" ry="2" />
<text text-anchor="" x="500.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_clear (1 samples, 0.01%)</title><rect x="61.9" y="613" width="0.1" height="15.0" fill="rgb(232,56,10)" rx="2" ry="2" />
<text text-anchor="" x="64.91" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zone_getqueryonacl (1 samples, 0.01%)</title><rect x="54.4" y="613" width="0.1" height="15.0" fill="rgb(229,124,19)" rx="2" ry="2" />
<text text-anchor="" x="57.36" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (1 samples, 0.01%)</title><rect x="453.5" y="373" width="0.1" height="15.0" fill="rgb(229,122,43)" rx="2" ry="2" />
<text text-anchor="" x="456.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>socket_recv (2 samples, 0.02%)</title><rect x="492.5" y="549" width="0.3" height="15.0" fill="rgb(224,153,23)" rx="2" ry="2" />
<text text-anchor="" x="495.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_edge_irq (1 samples, 0.01%)</title><rect x="556.9" y="549" width="0.1" height="15.0" fill="rgb(225,11,3)" rx="2" ry="2" />
<text text-anchor="" x="559.90" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1 samples, 0.01%)</title><rect x="75.3" y="549" width="0.1" height="15.0" fill="rgb(208,25,32)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_firstname (1 samples, 0.01%)</title><rect x="279.5" y="549" width="0.1" height="15.0" fill="rgb(252,60,11)" rx="2" ry="2" />
<text text-anchor="" x="282.48" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_evict_inode (3 samples, 0.03%)</title><rect x="325.7" y="421" width="0.4" height="15.0" fill="rgb(233,196,51)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_rcv (1 samples, 0.01%)</title><rect x="375.1" y="309" width="0.1" height="15.0" fill="rgb(241,14,46)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (2 samples, 0.02%)</title><rect x="438.9" y="533" width="0.3" height="15.0" fill="rgb(230,72,22)" rx="2" ry="2" />
<text text-anchor="" x="441.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (3 samples, 0.03%)</title><rect x="566.8" y="565" width="0.4" height="15.0" fill="rgb(229,153,37)" rx="2" ry="2" />
<text text-anchor="" x="569.83" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_queue_bio (1 samples, 0.01%)</title><rect x="454.9" y="277" width="0.2" height="15.0" fill="rgb(215,17,32)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>current_fs_time (1 samples, 0.01%)</title><rect x="309.7" y="357" width="0.1" height="15.0" fill="rgb(210,64,16)" rx="2" ry="2" />
<text text-anchor="" x="312.67" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="366.5" y="421" width="0.1" height="15.0" fill="rgb(224,70,16)" rx="2" ry="2" />
<text text-anchor="" x="369.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_isassociated (1 samples, 0.01%)</title><rect x="510.3" y="629" width="0.1" height="15.0" fill="rgb(232,103,1)" rx="2" ry="2" />
<text text-anchor="" x="513.29" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dbiterator_current (23 samples, 0.26%)</title><rect x="328.9" y="549" width="3.0" height="15.0" fill="rgb(235,7,51)" rx="2" ry="2" />
<text text-anchor="" x="331.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (4 samples, 0.04%)</title><rect x="644.2" y="597" width="0.5" height="15.0" fill="rgb(241,181,49)" rx="2" ry="2" />
<text text-anchor="" x="647.16" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (91 samples, 1.02%)</title><rect x="463.8" y="549" width="12.1" height="15.0" fill="rgb(234,138,53)" rx="2" ry="2" />
<text text-anchor="" x="466.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset@plt (1 samples, 0.01%)</title><rect x="591.2" y="629" width="0.1" height="15.0" fill="rgb(220,200,38)" rx="2" ry="2" />
<text text-anchor="" x="594.19" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (135 samples, 1.51%)</title><rect x="81.8" y="533" width="17.8" height="15.0" fill="rgb(223,59,17)" rx="2" ry="2" />
<text text-anchor="" x="84.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="311.4" y="405" width="0.1" height="15.0" fill="rgb(247,120,28)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="1119.4" y="453" width="0.2" height="15.0" fill="rgb(237,166,25)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_virtual_count (1 samples, 0.01%)</title><rect x="1158.1" y="533" width="0.1" height="15.0" fill="rgb(220,6,9)" rx="2" ry="2" />
<text text-anchor="" x="1161.09" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_edge_irq (1 samples, 0.01%)</title><rect x="1181.8" y="533" width="0.1" height="15.0" fill="rgb(249,211,27)" rx="2" ry="2" />
<text text-anchor="" x="1184.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_count (3 samples, 0.03%)</title><rect x="1157.3" y="533" width="0.4" height="15.0" fill="rgb(207,133,9)" rx="2" ry="2" />
<text text-anchor="" x="1160.29" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (48 samples, 0.54%)</title><rect x="83.8" y="309" width="6.3" height="15.0" fill="rgb(235,65,6)" rx="2" ry="2" />
<text text-anchor="" x="86.76" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_logv (1 samples, 0.01%)</title><rect x="593.0" y="597" width="0.2" height="15.0" fill="rgb(222,190,6)" rx="2" ry="2" />
<text text-anchor="" x="596.05" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detachnode (1 samples, 0.01%)</title><rect x="492.8" y="501" width="0.1" height="15.0" fill="rgb(236,107,15)" rx="2" ry="2" />
<text text-anchor="" x="495.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="1151.6" y="261" width="0.1" height="15.0" fill="rgb(250,150,40)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mempool_get (1 samples, 0.01%)</title><rect x="274.2" y="533" width="0.1" height="15.0" fill="rgb(207,86,41)" rx="2" ry="2" />
<text text-anchor="" x="277.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (4 samples, 0.04%)</title><rect x="298.7" y="389" width="0.5" height="15.0" fill="rgb(237,100,44)" rx="2" ry="2" />
<text text-anchor="" x="301.68" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_concatenate (1 samples, 0.01%)</title><rect x="1174.5" y="613" width="0.1" height="15.0" fill="rgb(238,200,47)" rx="2" ry="2" />
<text text-anchor="" x="1177.51" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_choose_geomap (1 samples, 0.01%)</title><rect x="591.5" y="629" width="0.1" height="15.0" fill="rgb(245,70,53)" rx="2" ry="2" />
<text text-anchor="" x="594.46" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (15 samples, 0.17%)</title><rect x="385.0" y="325" width="2.0" height="15.0" fill="rgb(240,195,2)" rx="2" ry="2" />
<text text-anchor="" x="388.02" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (2 samples, 0.02%)</title><rect x="1152.3" y="453" width="0.2" height="15.0" fill="rgb(208,104,10)" rx="2" ry="2" />
<text text-anchor="" x="1155.26" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="176.5" y="277" width="0.1" height="15.0" fill="rgb(237,88,54)" rx="2" ry="2" />
<text text-anchor="" x="179.45" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (2 samples, 0.02%)</title><rect x="367.4" y="373" width="0.3" height="15.0" fill="rgb(249,19,11)" rx="2" ry="2" />
<text text-anchor="" x="370.40" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (2 samples, 0.02%)</title><rect x="1129.2" y="341" width="0.3" height="15.0" fill="rgb(248,50,49)" rx="2" ry="2" />
<text text-anchor="" x="1132.22" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="311.4" y="325" width="0.1" height="15.0" fill="rgb(206,5,23)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (1 samples, 0.01%)</title><rect x="114.9" y="597" width="0.1" height="15.0" fill="rgb(240,219,34)" rx="2" ry="2" />
<text text-anchor="" x="117.88" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_opcodestats_increment (2 samples, 0.02%)</title><rect x="276.3" y="565" width="0.3" height="15.0" fill="rgb(225,181,52)" rx="2" ry="2" />
<text text-anchor="" x="279.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getsockname (4 samples, 0.04%)</title><rect x="431.9" y="389" width="0.5" height="15.0" fill="rgb(218,81,42)" rx="2" ry="2" />
<text text-anchor="" x="434.89" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_resolver_getudpsize (2 samples, 0.02%)</title><rect x="592.1" y="613" width="0.3" height="15.0" fill="rgb(231,70,52)" rx="2" ry="2" />
<text text-anchor="" x="595.12" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (1 samples, 0.01%)</title><rect x="588.3" y="629" width="0.1" height="15.0" fill="rgb(212,54,41)" rx="2" ry="2" />
<text text-anchor="" x="591.28" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="471.2" y="389" width="0.2" height="15.0" fill="rgb(245,97,20)" rx="2" ry="2" />
<text text-anchor="" x="474.22" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.01%)</title><rect x="453.5" y="357" width="0.1" height="15.0" fill="rgb(230,186,40)" rx="2" ry="2" />
<text text-anchor="" x="456.48" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run (2 samples, 0.02%)</title><rect x="631.3" y="469" width="0.3" height="15.0" fill="rgb(243,195,16)" rx="2" ry="2" />
<text text-anchor="" x="634.32" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_poll (30 samples, 0.34%)</title><rect x="33.2" y="565" width="3.9" height="15.0" fill="rgb(244,67,2)" rx="2" ry="2" />
<text text-anchor="" x="36.17" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_wouldlog (1 samples, 0.01%)</title><rect x="1111.5" y="517" width="0.1" height="15.0" fill="rgb(218,201,54)" rx="2" ry="2" />
<text text-anchor="" x="1114.47" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sb_end_write (1 samples, 0.01%)</title><rect x="382.1" y="437" width="0.1" height="15.0" fill="rgb(223,77,47)" rx="2" ry="2" />
<text text-anchor="" x="385.10" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_perform_write (1 samples, 0.01%)</title><rect x="38.9" y="517" width="0.1" height="15.0" fill="rgb(245,142,14)" rx="2" ry="2" />
<text text-anchor="" x="41.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_push (1 samples, 0.01%)</title><rect x="454.8" y="373" width="0.1" height="15.0" fill="rgb(216,33,15)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (3 samples, 0.03%)</title><rect x="177.2" y="309" width="0.4" height="15.0" fill="rgb(238,50,20)" rx="2" ry="2" />
<text text-anchor="" x="180.25" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (2 samples, 0.02%)</title><rect x="316.7" y="469" width="0.3" height="15.0" fill="rgb(247,208,4)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="665.9" y="533" width="0.1" height="15.0" fill="rgb(205,184,8)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="366.5" y="293" width="0.1" height="15.0" fill="rgb(240,132,52)" rx="2" ry="2" />
<text text-anchor="" x="369.48" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.02%)</title><rect x="776.2" y="309" width="0.3" height="15.0" fill="rgb(251,29,42)" rx="2" ry="2" />
<text text-anchor="" x="779.19" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>touch_atime (2 samples, 0.02%)</title><rect x="472.1" y="469" width="0.3" height="15.0" fill="rgb(220,129,26)" rx="2" ry="2" />
<text text-anchor="" x="475.15" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_log (3 samples, 0.03%)</title><rect x="278.5" y="565" width="0.4" height="15.0" fill="rgb(252,174,35)" rx="2" ry="2" />
<text text-anchor="" x="281.55" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (4 samples, 0.04%)</title><rect x="643.6" y="565" width="0.6" height="15.0" fill="rgb(215,153,7)" rx="2" ry="2" />
<text text-anchor="" x="646.63" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_unregister_pollwait.isra.7 (19 samples, 0.21%)</title><rect x="29.1" y="565" width="2.5" height="15.0" fill="rgb(226,168,15)" rx="2" ry="2" />
<text text-anchor="" x="32.07" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inc_stats.isra.3 (3 samples, 0.03%)</title><rect x="317.3" y="533" width="0.4" height="15.0" fill="rgb(234,89,52)" rx="2" ry="2" />
<text text-anchor="" x="320.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.01%)</title><rect x="341.6" y="325" width="0.1" height="15.0" fill="rgb(253,49,15)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (19 samples, 0.21%)</title><rect x="393.8" y="581" width="2.5" height="15.0" fill="rgb(223,106,36)" rx="2" ry="2" />
<text text-anchor="" x="396.75" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="287.2" y="421" width="0.1" height="15.0" fill="rgb(228,5,48)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="1185.1" y="549" width="0.1" height="15.0" fill="rgb(243,39,9)" rx="2" ry="2" />
<text text-anchor="" x="1188.10" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (45 samples, 0.50%)</title><rect x="616.5" y="485" width="5.9" height="15.0" fill="rgb(253,0,34)" rx="2" ry="2" />
<text text-anchor="" x="619.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_mark_inode_dirty (4 samples, 0.04%)</title><rect x="58.6" y="469" width="0.5" height="15.0" fill="rgb(244,119,45)" rx="2" ry="2" />
<text text-anchor="" x="61.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_disassociate (3 samples, 0.03%)</title><rect x="1167.6" y="517" width="0.4" height="15.0" fill="rgb(251,193,10)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_xfrin_create3 (1 samples, 0.01%)</title><rect x="350.3" y="565" width="0.2" height="15.0" fill="rgb(235,48,29)" rx="2" ry="2" />
<text text-anchor="" x="353.32" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>internal_add_timer (1 samples, 0.01%)</title><rect x="454.8" y="149" width="0.1" height="15.0" fill="rgb(251,122,12)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zmgr_resume_xfrs (1 samples, 0.01%)</title><rect x="1189.6" y="613" width="0.1" height="15.0" fill="rgb(244,125,44)" rx="2" ry="2" />
<text text-anchor="" x="1192.60" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fib_table_lookup (1 samples, 0.01%)</title><rect x="375.5" y="325" width="0.1" height="15.0" fill="rgb(250,38,19)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>release_pages (2 samples, 0.02%)</title><rect x="325.7" y="357" width="0.3" height="15.0" fill="rgb(205,200,47)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (21 samples, 0.24%)</title><rect x="293.9" y="405" width="2.8" height="15.0" fill="rgb(222,96,31)" rx="2" ry="2" />
<text text-anchor="" x="296.91" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_error (1 samples, 0.01%)</title><rect x="492.9" y="581" width="0.2" height="15.0" fill="rgb(230,121,49)" rx="2" ry="2" />
<text text-anchor="" x="495.94" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (2 samples, 0.02%)</title><rect x="117.1" y="469" width="0.3" height="15.0" fill="rgb(237,181,17)" rx="2" ry="2" />
<text text-anchor="" x="120.13" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swiotlb_dma_mapping_error (1 samples, 0.01%)</title><rect x="1147.1" y="229" width="0.1" height="15.0" fill="rgb(232,211,27)" rx="2" ry="2" />
<text text-anchor="" x="1150.10" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (16 samples, 0.18%)</title><rect x="622.7" y="517" width="2.1" height="15.0" fill="rgb(224,62,14)" rx="2" ry="2" />
<text text-anchor="" x="625.71" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="353.4" y="517" width="0.1" height="15.0" fill="rgb(247,35,45)" rx="2" ry="2" />
<text text-anchor="" x="356.37" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_free_group (1 samples, 0.01%)</title><rect x="671.3" y="405" width="0.1" height="15.0" fill="rgb(245,123,29)" rx="2" ry="2" />
<text text-anchor="" x="674.31" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_aton (1 samples, 0.01%)</title><rect x="59.7" y="613" width="0.1" height="15.0" fill="rgb(218,206,17)" rx="2" ry="2" />
<text text-anchor="" x="62.66" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.12 (7 samples, 0.08%)</title><rect x="603.6" y="565" width="1.0" height="15.0" fill="rgb(221,136,39)" rx="2" ry="2" />
<text text-anchor="" x="606.64" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_issubdomain (1 samples, 0.01%)</title><rect x="1175.3" y="613" width="0.1" height="15.0" fill="rgb(246,59,25)" rx="2" ry="2" />
<text text-anchor="" x="1178.30" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="412.6" y="533" width="0.1" height="15.0" fill="rgb(248,2,36)" rx="2" ry="2" />
<text text-anchor="" x="415.56" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_ptable_queue_proc (15 samples, 0.17%)</title><rect x="35.0" y="533" width="2.0" height="15.0" fill="rgb(253,201,14)" rx="2" ry="2" />
<text text-anchor="" x="38.03" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (226 samples, 2.54%)</title><rect x="1123.0" y="517" width="29.9" height="15.0" fill="rgb(236,223,40)" rx="2" ry="2" />
<text text-anchor="" x="1126.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SYSC_sendto (1 samples, 0.01%)</title><rect x="75.3" y="565" width="0.1" height="15.0" fill="rgb(214,201,39)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>percpu_down_read_trylock (3 samples, 0.03%)</title><rect x="301.7" y="341" width="0.4" height="15.0" fill="rgb(239,214,2)" rx="2" ry="2" />
<text text-anchor="" x="304.72" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (39 samples, 0.44%)</title><rect x="576.6" y="485" width="5.2" height="15.0" fill="rgb(250,135,26)" rx="2" ry="2" />
<text text-anchor="" x="579.63" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_dispatch_removeresponse (10 samples, 0.11%)</title><rect x="410.7" y="565" width="1.3" height="15.0" fill="rgb(248,157,0)" rx="2" ry="2" />
<text text-anchor="" x="413.70" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbt_findnode (61 samples, 0.68%)</title><rect x="1158.7" y="501" width="8.1" height="15.0" fill="rgb(233,196,2)" rx="2" ry="2" />
<text text-anchor="" x="1161.75" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.01%)</title><rect x="255.4" y="501" width="0.1" height="15.0" fill="rgb(242,57,15)" rx="2" ry="2" />
<text text-anchor="" x="258.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_setup (2 samples, 0.02%)</title><rect x="643.9" y="533" width="0.3" height="15.0" fill="rgb(213,72,45)" rx="2" ry="2" />
<text text-anchor="" x="646.90" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (37 samples, 0.42%)</title><rect x="626.7" y="517" width="4.9" height="15.0" fill="rgb(250,68,17)" rx="2" ry="2" />
<text text-anchor="" x="629.68" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (4 samples, 0.04%)</title><rect x="892.6" y="293" width="0.5" height="15.0" fill="rgb(239,10,0)" rx="2" ry="2" />
<text text-anchor="" x="895.58" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (3 samples, 0.03%)</title><rect x="1152.5" y="453" width="0.4" height="15.0" fill="rgb(209,147,11)" rx="2" ry="2" />
<text text-anchor="" x="1155.52" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.01%)</title><rect x="43.0" y="533" width="0.1" height="15.0" fill="rgb(205,155,16)" rx="2" ry="2" />
<text text-anchor="" x="45.97" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>indent (3 samples, 0.03%)</title><rect x="59.3" y="613" width="0.4" height="15.0" fill="rgb(238,71,27)" rx="2" ry="2" />
<text text-anchor="" x="62.26" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (1 samples, 0.01%)</title><rect x="626.8" y="469" width="0.1" height="15.0" fill="rgb(205,135,2)" rx="2" ry="2" />
<text text-anchor="" x="629.82" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (3 samples, 0.03%)</title><rect x="1167.6" y="469" width="0.4" height="15.0" fill="rgb(216,72,9)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="477.6" y="533" width="0.1" height="15.0" fill="rgb(240,24,22)" rx="2" ry="2" />
<text text-anchor="" x="480.58" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.02%)</title><rect x="659.0" y="597" width="0.3" height="15.0" fill="rgb(253,212,7)" rx="2" ry="2" />
<text text-anchor="" x="661.99" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ghes_notify_nmi (1 samples, 0.01%)</title><rect x="686.0" y="325" width="0.1" height="15.0" fill="rgb(238,170,4)" rx="2" ry="2" />
<text text-anchor="" x="689.01" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.01%)</title><rect x="453.6" y="421" width="0.1" height="15.0" fill="rgb(229,225,46)" rx="2" ry="2" />
<text text-anchor="" x="456.61" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (1 samples, 0.01%)</title><rect x="82.2" y="453" width="0.1" height="15.0" fill="rgb(251,189,0)" rx="2" ry="2" />
<text text-anchor="" x="85.17" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_opt (16 samples, 0.18%)</title><rect x="419.2" y="565" width="2.1" height="15.0" fill="rgb(207,95,14)" rx="2" ry="2" />
<text text-anchor="" x="422.18" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.01%)</title><rect x="454.8" y="213" width="0.1" height="15.0" fill="rgb(245,54,4)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_fsync_range (4 samples, 0.04%)</title><rect x="325.2" y="453" width="0.5" height="15.0" fill="rgb(244,12,4)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event (1 samples, 0.01%)</title><rect x="506.8" y="469" width="0.2" height="15.0" fill="rgb(241,77,42)" rx="2" ry="2" />
<text text-anchor="" x="509.84" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="610.3" y="501" width="0.1" height="15.0" fill="rgb(229,69,9)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_cmsg (1 samples, 0.01%)</title><rect x="365.7" y="389" width="0.1" height="15.0" fill="rgb(222,180,45)" rx="2" ry="2" />
<text text-anchor="" x="368.68" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.01%)</title><rect x="296.7" y="405" width="0.1" height="15.0" fill="rgb(214,154,35)" rx="2" ry="2" />
<text text-anchor="" x="299.69" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getname (2 samples, 0.02%)</title><rect x="587.9" y="629" width="0.2" height="15.0" fill="rgb(238,58,20)" rx="2" ry="2" />
<text text-anchor="" x="590.88" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (1 samples, 0.01%)</title><rect x="360.1" y="469" width="0.2" height="15.0" fill="rgb(209,41,50)" rx="2" ry="2" />
<text text-anchor="" x="363.12" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="492.4" y="389" width="0.1" height="15.0" fill="rgb(250,74,5)" rx="2" ry="2" />
<text text-anchor="" x="495.41" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="1141.9" y="229" width="0.2" height="15.0" fill="rgb(235,190,21)" rx="2" ry="2" />
<text text-anchor="" x="1144.93" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="287.2" y="501" width="0.1" height="15.0" fill="rgb(223,160,43)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (48 samples, 0.54%)</title><rect x="466.1" y="501" width="6.3" height="15.0" fill="rgb(251,148,31)" rx="2" ry="2" />
<text text-anchor="" x="469.06" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run_list (22 samples, 0.25%)</title><rect x="175.7" y="437" width="2.9" height="15.0" fill="rgb(209,72,10)" rx="2" ry="2" />
<text text-anchor="" x="178.66" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (2 samples, 0.02%)</title><rect x="287.3" y="517" width="0.3" height="15.0" fill="rgb(220,3,33)" rx="2" ry="2" />
<text text-anchor="" x="290.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (5 samples, 0.06%)</title><rect x="453.9" y="453" width="0.6" height="15.0" fill="rgb(245,229,28)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_concatenate (18 samples, 0.20%)</title><rect x="329.5" y="533" width="2.4" height="15.0" fill="rgb(253,149,6)" rx="2" ry="2" />
<text text-anchor="" x="332.53" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (7 samples, 0.08%)</title><rect x="306.9" y="213" width="0.9" height="15.0" fill="rgb(240,93,49)" rx="2" ry="2" />
<text text-anchor="" x="309.89" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.01%)</title><rect x="472.9" y="517" width="0.2" height="15.0" fill="rgb(253,77,32)" rx="2" ry="2" />
<text text-anchor="" x="475.94" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="665.9" y="373" width="0.1" height="15.0" fill="rgb(252,33,17)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (5 samples, 0.06%)</title><rect x="449.1" y="229" width="0.7" height="15.0" fill="rgb(231,19,6)" rx="2" ry="2" />
<text text-anchor="" x="452.11" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_irq_work_interrupt (6 samples, 0.07%)</title><rect x="97.4" y="469" width="0.8" height="15.0" fill="rgb(247,41,38)" rx="2" ry="2" />
<text text-anchor="" x="100.40" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_closest_nsec (1 samples, 0.01%)</title><rect x="1185.6" y="613" width="0.2" height="15.0" fill="rgb(253,146,41)" rx="2" ry="2" />
<text text-anchor="" x="1188.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (1 samples, 0.01%)</title><rect x="1170.0" y="517" width="0.1" height="15.0" fill="rgb(220,189,47)" rx="2" ry="2" />
<text text-anchor="" x="1173.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>l3mdev_master_ifindex_rcu (1 samples, 0.01%)</title><rect x="316.8" y="293" width="0.2" height="15.0" fill="rgb(218,140,23)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (2 samples, 0.02%)</title><rect x="545.0" y="581" width="0.2" height="15.0" fill="rgb(247,37,15)" rx="2" ry="2" />
<text text-anchor="" x="547.98" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.03%)</title><rect x="415.9" y="533" width="0.4" height="15.0" fill="rgb(226,204,24)" rx="2" ry="2" />
<text text-anchor="" x="418.87" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>request_log (1 samples, 0.01%)</title><rect x="430.7" y="517" width="0.1" height="15.0" fill="rgb(230,77,11)" rx="2" ry="2" />
<text text-anchor="" x="433.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_addopt (1 samples, 0.01%)</title><rect x="67.7" y="613" width="0.2" height="15.0" fill="rgb(211,208,20)" rx="2" ry="2" />
<text text-anchor="" x="70.74" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_socket_send (1 samples, 0.01%)</title><rect x="454.8" y="549" width="0.1" height="15.0" fill="rgb(223,219,27)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vsnprintf_chk (10 samples, 0.11%)</title><rect x="406.3" y="517" width="1.4" height="15.0" fill="rgb(207,3,49)" rx="2" ry="2" />
<text text-anchor="" x="409.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="309.1" y="341" width="0.2" height="15.0" fill="rgb(211,153,6)" rx="2" ry="2" />
<text text-anchor="" x="312.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>datagram_poll (26 samples, 0.29%)</title><rect x="33.6" y="549" width="3.4" height="15.0" fill="rgb(230,185,18)" rx="2" ry="2" />
<text text-anchor="" x="36.57" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (1 samples, 0.01%)</title><rect x="65.5" y="613" width="0.1" height="15.0" fill="rgb(226,6,0)" rx="2" ry="2" />
<text text-anchor="" x="68.48" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_handle_irq (1 samples, 0.01%)</title><rect x="341.7" y="437" width="0.1" height="15.0" fill="rgb(253,33,29)" rx="2" ry="2" />
<text text-anchor="" x="344.71" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_findext (136 samples, 1.53%)</title><rect x="1171.6" y="629" width="18.0" height="15.0" fill="rgb(225,224,28)" rx="2" ry="2" />
<text text-anchor="" x="1174.59" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_task_send (1 samples, 0.01%)</title><rect x="66.5" y="613" width="0.2" height="15.0" fill="rgb(214,122,42)" rx="2" ry="2" />
<text text-anchor="" x="69.54" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.01%)</title><rect x="388.3" y="213" width="0.2" height="15.0" fill="rgb(226,8,9)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_softirq_own_stack (1 samples, 0.01%)</title><rect x="1141.9" y="277" width="0.2" height="15.0" fill="rgb(228,50,0)" rx="2" ry="2" />
<text text-anchor="" x="1144.93" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (28 samples, 0.31%)</title><rect x="1136.4" y="293" width="3.7" height="15.0" fill="rgb(250,51,28)" rx="2" ry="2" />
<text text-anchor="" x="1139.37" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (3 samples, 0.03%)</title><rect x="310.7" y="373" width="0.4" height="15.0" fill="rgb(211,76,10)" rx="2" ry="2" />
<text text-anchor="" x="313.73" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_fromwire (6 samples, 0.07%)</title><rect x="403.8" y="501" width="0.8" height="15.0" fill="rgb(224,56,34)" rx="2" ry="2" />
<text text-anchor="" x="406.82" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="1121.8" y="517" width="0.1" height="15.0" fill="rgb(244,11,46)" rx="2" ry="2" />
<text text-anchor="" x="1124.80" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="43.0" y="581" width="0.1" height="15.0" fill="rgb(220,126,49)" rx="2" ry="2" />
<text text-anchor="" x="45.97" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (2 samples, 0.02%)</title><rect x="401.4" y="533" width="0.3" height="15.0" fill="rgb(243,153,49)" rx="2" ry="2" />
<text text-anchor="" x="404.44" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_detach (1 samples, 0.01%)</title><rect x="63.2" y="613" width="0.2" height="15.0" fill="rgb(209,73,38)" rx="2" ry="2" />
<text text-anchor="" x="66.23" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_to_iter (1 samples, 0.01%)</title><rect x="367.0" y="405" width="0.1" height="15.0" fill="rgb(205,31,13)" rx="2" ry="2" />
<text text-anchor="" x="370.01" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgresetopt (1 samples, 0.01%)</title><rect x="67.6" y="613" width="0.1" height="15.0" fill="rgb(232,58,38)" rx="2" ry="2" />
<text text-anchor="" x="70.60" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_pages_current (2 samples, 0.02%)</title><rect x="38.1" y="421" width="0.2" height="15.0" fill="rgb(242,141,20)" rx="2" ry="2" />
<text text-anchor="" x="41.07" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (3 samples, 0.03%)</title><rect x="386.3" y="293" width="0.4" height="15.0" fill="rgb(205,205,52)" rx="2" ry="2" />
<text text-anchor="" x="389.34" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="665.9" y="437" width="0.1" height="15.0" fill="rgb(213,17,37)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__socket_sendto2 (2 samples, 0.02%)</title><rect x="1121.7" y="565" width="0.2" height="15.0" fill="rgb(243,130,52)" rx="2" ry="2" />
<text text-anchor="" x="1124.67" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1154.9" y="549" width="0.1" height="15.0" fill="rgb(228,170,16)" rx="2" ry="2" />
<text text-anchor="" x="1157.91" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (5 samples, 0.06%)</title><rect x="453.2" y="517" width="0.7" height="15.0" fill="rgb(241,71,47)" rx="2" ry="2" />
<text text-anchor="" x="456.21" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_send (2 samples, 0.02%)</title><rect x="592.5" y="597" width="0.3" height="15.0" fill="rgb(251,47,8)" rx="2" ry="2" />
<text text-anchor="" x="595.52" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.01%)</title><rect x="177.5" y="293" width="0.1" height="15.0" fill="rgb(251,35,11)" rx="2" ry="2" />
<text text-anchor="" x="180.51" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (9 samples, 0.10%)</title><rect x="474.0" y="469" width="1.2" height="15.0" fill="rgb(245,221,47)" rx="2" ry="2" />
<text text-anchor="" x="477.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (153 samples, 1.72%)</title><rect x="354.8" y="533" width="20.3" height="15.0" fill="rgb(245,82,3)" rx="2" ry="2" />
<text text-anchor="" x="357.82" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (51 samples, 0.57%)</title><rect x="673.7" y="469" width="6.7" height="15.0" fill="rgb(227,220,20)" rx="2" ry="2" />
<text text-anchor="" x="676.69" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (6 samples, 0.07%)</title><rect x="379.3" y="485" width="0.8" height="15.0" fill="rgb(239,21,49)" rx="2" ry="2" />
<text text-anchor="" x="382.32" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (7 samples, 0.08%)</title><rect x="421.4" y="549" width="1.0" height="15.0" fill="rgb(206,137,0)" rx="2" ry="2" />
<text text-anchor="" x="424.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (4 samples, 0.04%)</title><rect x="557.3" y="581" width="0.5" height="15.0" fill="rgb(223,84,8)" rx="2" ry="2" />
<text text-anchor="" x="560.29" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>anon_pipe_buf_release (2 samples, 0.02%)</title><rect x="470.3" y="469" width="0.3" height="15.0" fill="rgb(226,205,0)" rx="2" ry="2" />
<text text-anchor="" x="473.29" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_attach (1 samples, 0.01%)</title><rect x="281.3" y="549" width="0.2" height="15.0" fill="rgb(248,110,42)" rx="2" ry="2" />
<text text-anchor="" x="284.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="279.3" y="485" width="0.2" height="15.0" fill="rgb(244,76,1)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.02%)</title><rect x="680.6" y="437" width="0.2" height="15.0" fill="rgb(224,224,42)" rx="2" ry="2" />
<text text-anchor="" x="683.58" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fromwire_opt.isra.292 (2 samples, 0.02%)</title><rect x="404.3" y="485" width="0.3" height="15.0" fill="rgb(234,23,2)" rx="2" ry="2" />
<text text-anchor="" x="407.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="99.5" y="373" width="0.1" height="15.0" fill="rgb(241,47,37)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_handle_irq (7 samples, 0.08%)</title><rect x="627.9" y="309" width="0.9" height="15.0" fill="rgb(205,183,11)" rx="2" ry="2" />
<text text-anchor="" x="630.87" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_route_output_key_hash (5 samples, 0.06%)</title><rect x="1114.5" y="373" width="0.7" height="15.0" fill="rgb(210,160,20)" rx="2" ry="2" />
<text text-anchor="" x="1117.52" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_with_offset (1 samples, 0.01%)</title><rect x="449.6" y="213" width="0.2" height="15.0" fill="rgb(231,79,44)" rx="2" ry="2" />
<text text-anchor="" x="452.64" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_find (1 samples, 0.01%)</title><rect x="508.7" y="629" width="0.1" height="15.0" fill="rgb(221,67,16)" rx="2" ry="2" />
<text text-anchor="" x="511.70" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock@plt (1 samples, 0.01%)</title><rect x="1110.3" y="629" width="0.1" height="15.0" fill="rgb(236,72,52)" rx="2" ry="2" />
<text text-anchor="" x="1113.28" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_padn (1 samples, 0.01%)</title><rect x="1174.4" y="565" width="0.1" height="15.0" fill="rgb(234,63,32)" rx="2" ry="2" />
<text text-anchor="" x="1177.37" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (1 samples, 0.01%)</title><rect x="245.8" y="485" width="0.2" height="15.0" fill="rgb(221,13,2)" rx="2" ry="2" />
<text text-anchor="" x="248.84" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (15 samples, 0.17%)</title><rect x="644.7" y="597" width="2.0" height="15.0" fill="rgb(223,157,3)" rx="2" ry="2" />
<text text-anchor="" x="647.69" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio_endio (1 samples, 0.01%)</title><rect x="32.8" y="341" width="0.1" height="15.0" fill="rgb(217,208,52)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="446.3" y="485" width="0.2" height="15.0" fill="rgb(211,73,36)" rx="2" ry="2" />
<text text-anchor="" x="449.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc (9 samples, 0.10%)</title><rect x="35.8" y="517" width="1.2" height="15.0" fill="rgb(252,72,5)" rx="2" ry="2" />
<text text-anchor="" x="38.82" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1 samples, 0.01%)</title><rect x="258.4" y="533" width="0.2" height="15.0" fill="rgb(250,108,26)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (1 samples, 0.01%)</title><rect x="1184.6" y="437" width="0.1" height="15.0" fill="rgb(248,3,29)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (1 samples, 0.01%)</title><rect x="458.8" y="565" width="0.1" height="15.0" fill="rgb(219,14,39)" rx="2" ry="2" />
<text text-anchor="" x="461.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_netaddr_fromsockaddr (1 samples, 0.01%)</title><rect x="64.4" y="613" width="0.2" height="15.0" fill="rgb(240,48,50)" rx="2" ry="2" />
<text text-anchor="" x="67.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_interrupt (60 samples, 0.67%)</title><rect x="876.8" y="501" width="8.0" height="15.0" fill="rgb(248,112,16)" rx="2" ry="2" />
<text text-anchor="" x="879.83" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_next_bit (1 samples, 0.01%)</title><rect x="611.9" y="517" width="0.1" height="15.0" fill="rgb(234,73,41)" rx="2" ry="2" />
<text text-anchor="" x="614.85" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (2 samples, 0.02%)</title><rect x="380.1" y="501" width="0.3" height="15.0" fill="rgb(212,191,39)" rx="2" ry="2" />
<text text-anchor="" x="383.12" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (2 samples, 0.02%)</title><rect x="481.7" y="421" width="0.2" height="15.0" fill="rgb(232,16,49)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dump_order_compare (1 samples, 0.01%)</title><rect x="510.8" y="629" width="0.1" height="15.0" fill="rgb(224,120,32)" rx="2" ry="2" />
<text text-anchor="" x="513.81" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (23 samples, 0.26%)</title><rect x="433.1" y="501" width="3.0" height="15.0" fill="rgb(236,199,10)" rx="2" ry="2" />
<text text-anchor="" x="436.08" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="538.9" y="549" width="0.1" height="15.0" fill="rgb(235,32,13)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="1140.1" y="293" width="0.1" height="15.0" fill="rgb(229,67,43)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.01%)</title><rect x="280.0" y="389" width="0.1" height="15.0" fill="rgb(243,77,44)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_setattr (6 samples, 0.07%)</title><rect x="58.3" y="517" width="0.8" height="15.0" fill="rgb(220,40,37)" rx="2" ry="2" />
<text text-anchor="" x="61.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_msghdr_from_user (4 samples, 0.04%)</title><rect x="294.0" y="389" width="0.6" height="15.0" fill="rgb(225,1,39)" rx="2" ry="2" />
<text text-anchor="" x="297.04" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>make_request (1 samples, 0.01%)</title><rect x="455.1" y="277" width="0.1" height="15.0" fill="rgb(209,31,7)" rx="2" ry="2" />
<text text-anchor="" x="458.07" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_current (1 samples, 0.01%)</title><rect x="529.6" y="597" width="0.2" height="15.0" fill="rgb(243,214,15)" rx="2" ry="2" />
<text text-anchor="" x="532.62" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_writepages (4 samples, 0.04%)</title><rect x="325.2" y="389" width="0.5" height="15.0" fill="rgb(222,195,19)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (3 samples, 0.03%)</title><rect x="776.5" y="325" width="0.3" height="15.0" fill="rgb(211,198,43)" rx="2" ry="2" />
<text text-anchor="" x="779.45" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="180.6" y="485" width="0.1" height="15.0" fill="rgb(223,125,52)" rx="2" ry="2" />
<text text-anchor="" x="183.56" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_msgcat_get (1 samples, 0.01%)</title><rect x="479.3" y="581" width="0.1" height="15.0" fill="rgb(232,24,45)" rx="2" ry="2" />
<text text-anchor="" x="482.30" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (493 samples, 5.53%)</title><rect x="115.7" y="597" width="65.3" height="15.0" fill="rgb(225,18,4)" rx="2" ry="2" />
<text text-anchor="" x="118.67" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >entry_S..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_buildopt (3 samples, 0.03%)</title><rect x="591.7" y="613" width="0.4" height="15.0" fill="rgb(245,155,54)" rx="2" ry="2" />
<text text-anchor="" x="594.72" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_buffer_allocate (2 samples, 0.02%)</title><rect x="317.7" y="533" width="0.3" height="15.0" fill="rgb(213,165,14)" rx="2" ry="2" />
<text text-anchor="" x="320.75" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hasmntopt (15 samples, 0.17%)</title><rect x="57.3" y="613" width="2.0" height="15.0" fill="rgb(236,146,44)" rx="2" ry="2" />
<text text-anchor="" x="60.27" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (6 samples, 0.07%)</title><rect x="41.1" y="613" width="0.8" height="15.0" fill="rgb(206,14,30)" rx="2" ry="2" />
<text text-anchor="" x="44.12" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sooner (7 samples, 0.08%)</title><rect x="414.5" y="501" width="1.0" height="15.0" fill="rgb(245,206,32)" rx="2" ry="2" />
<text text-anchor="" x="417.54" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (2 samples, 0.02%)</title><rect x="1133.2" y="373" width="0.3" height="15.0" fill="rgb(234,65,23)" rx="2" ry="2" />
<text text-anchor="" x="1136.19" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="258.2" y="501" width="0.1" height="15.0" fill="rgb(225,185,10)" rx="2" ry="2" />
<text text-anchor="" x="261.16" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (1 samples, 0.01%)</title><rect x="677.7" y="421" width="0.1" height="15.0" fill="rgb(215,40,26)" rx="2" ry="2" />
<text text-anchor="" x="680.66" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (25 samples, 0.28%)</title><rect x="878.4" y="389" width="3.3" height="15.0" fill="rgb(228,46,32)" rx="2" ry="2" />
<text text-anchor="" x="881.41" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.01%)</title><rect x="1151.5" y="325" width="0.1" height="15.0" fill="rgb(254,59,46)" rx="2" ry="2" />
<text text-anchor="" x="1154.47" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_read (4 samples, 0.04%)</title><rect x="472.4" y="501" width="0.5" height="15.0" fill="rgb(225,193,53)" rx="2" ry="2" />
<text text-anchor="" x="475.41" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>source_load (1 samples, 0.01%)</title><rect x="179.2" y="421" width="0.2" height="15.0" fill="rgb(254,199,21)" rx="2" ry="2" />
<text text-anchor="" x="182.23" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.02%)</title><rect x="884.4" y="389" width="0.2" height="15.0" fill="rgb(230,196,38)" rx="2" ry="2" />
<text text-anchor="" x="887.37" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_sendmsg (1 samples, 0.01%)</title><rect x="454.8" y="501" width="0.1" height="15.0" fill="rgb(251,60,30)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_view_attach (1 samples, 0.01%)</title><rect x="276.6" y="565" width="0.1" height="15.0" fill="rgb(235,86,29)" rx="2" ry="2" />
<text text-anchor="" x="279.56" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_tostruct (1 samples, 0.01%)</title><rect x="287.8" y="533" width="0.2" height="15.0" fill="rgb(229,75,8)" rx="2" ry="2" />
<text text-anchor="" x="290.82" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.01%)</title><rect x="622.6" y="517" width="0.1" height="15.0" fill="rgb(206,188,12)" rx="2" ry="2" />
<text text-anchor="" x="625.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epi_rcu_free (1 samples, 0.01%)</title><rect x="1169.6" y="437" width="0.1" height="15.0" fill="rgb(240,13,35)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (138 samples, 1.55%)</title><rect x="606.7" y="565" width="18.3" height="15.0" fill="rgb(230,58,0)" rx="2" ry="2" />
<text text-anchor="" x="609.69" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="683.8" y="469" width="0.1" height="15.0" fill="rgb(214,65,40)" rx="2" ry="2" />
<text text-anchor="" x="686.76" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (9 samples, 0.10%)</title><rect x="448.7" y="293" width="1.2" height="15.0" fill="rgb(223,28,18)" rx="2" ry="2" />
<text text-anchor="" x="451.71" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (140 samples, 1.57%)</title><rect x="81.6" y="581" width="18.6" height="15.0" fill="rgb(249,143,16)" rx="2" ry="2" />
<text text-anchor="" x="84.64" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_wouldlog (1 samples, 0.01%)</title><rect x="281.3" y="517" width="0.2" height="15.0" fill="rgb(214,197,38)" rx="2" ry="2" />
<text text-anchor="" x="284.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>import_iovec (1 samples, 0.01%)</title><rect x="360.0" y="469" width="0.1" height="15.0" fill="rgb(244,204,34)" rx="2" ry="2" />
<text text-anchor="" x="362.99" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.01%)</title><rect x="680.4" y="485" width="0.2" height="15.0" fill="rgb(251,206,47)" rx="2" ry="2" />
<text text-anchor="" x="683.45" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sprintf (7 samples, 0.08%)</title><rect x="408.2" y="501" width="0.9" height="15.0" fill="rgb(205,203,48)" rx="2" ry="2" />
<text text-anchor="" x="411.19" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (15 samples, 0.17%)</title><rect x="627.2" y="325" width="2.0" height="15.0" fill="rgb(210,120,6)" rx="2" ry="2" />
<text text-anchor="" x="630.21" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (142 samples, 1.59%)</title><rect x="356.3" y="517" width="18.8" height="15.0" fill="rgb(234,115,41)" rx="2" ry="2" />
<text text-anchor="" x="359.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="1154.9" y="517" width="0.1" height="15.0" fill="rgb(233,64,13)" rx="2" ry="2" />
<text text-anchor="" x="1157.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_writepages (4 samples, 0.04%)</title><rect x="325.2" y="373" width="0.5" height="15.0" fill="rgb(245,59,21)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>soa_query (254 samples, 2.85%)</title><rect x="416.9" y="581" width="33.7" height="15.0" fill="rgb(226,48,37)" rx="2" ry="2" />
<text text-anchor="" x="419.93" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >so..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_disassociate (1 samples, 0.01%)</title><rect x="312.7" y="469" width="0.1" height="15.0" fill="rgb(215,145,8)" rx="2" ry="2" />
<text text-anchor="" x="315.71" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_init (1 samples, 0.01%)</title><rect x="1166.0" y="485" width="0.2" height="15.0" fill="rgb(234,158,52)" rx="2" ry="2" />
<text text-anchor="" x="1169.03" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (423 samples, 4.75%)</title><rect x="119.6" y="421" width="56.1" height="15.0" fill="rgb(238,73,6)" rx="2" ry="2" />
<text text-anchor="" x="122.64" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >x86_p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq (1 samples, 0.01%)</title><rect x="898.1" y="501" width="0.2" height="15.0" fill="rgb(241,183,26)" rx="2" ry="2" />
<text text-anchor="" x="901.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (2 samples, 0.02%)</title><rect x="497.2" y="485" width="0.2" height="15.0" fill="rgb(225,167,0)" rx="2" ry="2" />
<text text-anchor="" x="500.18" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eth_header_parse (1 samples, 0.01%)</title><rect x="1145.4" y="245" width="0.1" height="15.0" fill="rgb(238,197,35)" rx="2" ry="2" />
<text text-anchor="" x="1148.37" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_choose_geomap (8 samples, 0.09%)</title><rect x="1186.4" y="613" width="1.1" height="15.0" fill="rgb(240,53,13)" rx="2" ry="2" />
<text text-anchor="" x="1189.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (16 samples, 0.18%)</title><rect x="447.9" y="341" width="2.1" height="15.0" fill="rgb(253,68,35)" rx="2" ry="2" />
<text text-anchor="" x="450.91" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (38 samples, 0.43%)</title><rect x="576.8" y="421" width="5.0" height="15.0" fill="rgb(205,42,28)" rx="2" ry="2" />
<text text-anchor="" x="579.76" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (1 samples, 0.01%)</title><rect x="503.9" y="517" width="0.2" height="15.0" fill="rgb(226,129,32)" rx="2" ry="2" />
<text text-anchor="" x="506.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="348.3" y="501" width="0.2" height="15.0" fill="rgb(218,57,9)" rx="2" ry="2" />
<text text-anchor="" x="351.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>allocate_socketevent (3 samples, 0.03%)</title><rect x="446.1" y="533" width="0.4" height="15.0" fill="rgb(246,25,33)" rx="2" ry="2" />
<text text-anchor="" x="449.06" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="366.5" y="373" width="0.1" height="15.0" fill="rgb(246,196,18)" rx="2" ry="2" />
<text text-anchor="" x="369.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="99.5" y="325" width="0.1" height="15.0" fill="rgb(242,222,22)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="81.1" y="565" width="0.1" height="15.0" fill="rgb(225,104,42)" rx="2" ry="2" />
<text text-anchor="" x="84.11" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_flush_tlb_single (2 samples, 0.02%)</title><rect x="181.1" y="549" width="0.3" height="15.0" fill="rgb(247,185,52)" rx="2" ry="2" />
<text text-anchor="" x="184.09" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (4 samples, 0.04%)</title><rect x="307.3" y="197" width="0.5" height="15.0" fill="rgb(229,69,7)" rx="2" ry="2" />
<text text-anchor="" x="310.28" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="422.1" y="517" width="0.1" height="15.0" fill="rgb(250,2,44)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_get_l4proto (1 samples, 0.01%)</title><rect x="1115.8" y="261" width="0.2" height="15.0" fill="rgb(232,4,21)" rx="2" ry="2" />
<text text-anchor="" x="1118.84" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (20 samples, 0.22%)</title><rect x="579.0" y="389" width="2.7" height="15.0" fill="rgb(230,173,49)" rx="2" ry="2" />
<text text-anchor="" x="582.01" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (1 samples, 0.01%)</title><rect x="451.8" y="565" width="0.1" height="15.0" fill="rgb(234,122,21)" rx="2" ry="2" />
<text text-anchor="" x="454.76" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_request (1 samples, 0.01%)</title><rect x="454.9" y="261" width="0.2" height="15.0" fill="rgb(231,49,46)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (5 samples, 0.06%)</title><rect x="419.4" y="517" width="0.7" height="15.0" fill="rgb(235,227,9)" rx="2" ry="2" />
<text text-anchor="" x="422.44" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="375.5" y="533" width="0.1" height="15.0" fill="rgb(217,16,28)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="286.5" y="501" width="0.1" height="15.0" fill="rgb(209,202,17)" rx="2" ry="2" />
<text text-anchor="" x="289.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (8 samples, 0.09%)</title><rect x="385.3" y="293" width="1.0" height="15.0" fill="rgb(250,195,38)" rx="2" ry="2" />
<text text-anchor="" x="388.28" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rand (1 samples, 0.01%)</title><rect x="72.5" y="613" width="0.1" height="15.0" fill="rgb(241,176,40)" rx="2" ry="2" />
<text text-anchor="" x="75.50" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="284.6" y="469" width="0.2" height="15.0" fill="rgb(247,156,31)" rx="2" ry="2" />
<text text-anchor="" x="287.64" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (1 samples, 0.01%)</title><rect x="894.7" y="517" width="0.1" height="15.0" fill="rgb(211,140,15)" rx="2" ry="2" />
<text text-anchor="" x="897.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (5 samples, 0.06%)</title><rect x="412.2" y="549" width="0.6" height="15.0" fill="rgb(219,4,28)" rx="2" ry="2" />
<text text-anchor="" x="415.16" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.01%)</title><rect x="384.4" y="309" width="0.1" height="15.0" fill="rgb(206,84,1)" rx="2" ry="2" />
<text text-anchor="" x="387.35" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="1184.2" y="485" width="0.1" height="15.0" fill="rgb(244,59,8)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (20 samples, 0.22%)</title><rect x="677.8" y="453" width="2.6" height="15.0" fill="rgb(212,188,53)" rx="2" ry="2" />
<text text-anchor="" x="680.80" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (4 samples, 0.04%)</title><rect x="453.3" y="485" width="0.6" height="15.0" fill="rgb(223,208,48)" rx="2" ry="2" />
<text text-anchor="" x="456.34" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_do_update_jiffies64 (1 samples, 0.01%)</title><rect x="1154.9" y="453" width="0.1" height="15.0" fill="rgb(207,66,44)" rx="2" ry="2" />
<text text-anchor="" x="1157.91" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (1 samples, 0.01%)</title><rect x="1169.6" y="405" width="0.1" height="15.0" fill="rgb(239,138,43)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[[ptp]] (1 samples, 0.01%)</title><rect x="1116.9" y="229" width="0.1" height="15.0" fill="rgb(218,190,45)" rx="2" ry="2" />
<text text-anchor="" x="1119.90" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_poke.isra.12 (106 samples, 1.19%)</title><rect x="297.6" y="485" width="14.1" height="15.0" fill="rgb(243,198,35)" rx="2" ry="2" />
<text text-anchor="" x="300.62" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dput (1 samples, 0.01%)</title><rect x="57.4" y="533" width="0.1" height="15.0" fill="rgb(254,1,10)" rx="2" ry="2" />
<text text-anchor="" x="60.41" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tpacket_rcv (1 samples, 0.01%)</title><rect x="311.4" y="277" width="0.1" height="15.0" fill="rgb(229,192,21)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.01%)</title><rect x="538.9" y="341" width="0.1" height="15.0" fill="rgb(241,26,17)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_lock_wait (7 samples, 0.08%)</title><rect x="643.2" y="613" width="1.0" height="15.0" fill="rgb(253,82,37)" rx="2" ry="2" />
<text text-anchor="" x="646.24" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="258.2" y="533" width="0.1" height="15.0" fill="rgb(248,216,14)" rx="2" ry="2" />
<text text-anchor="" x="261.16" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="311.4" y="309" width="0.1" height="15.0" fill="rgb(211,147,21)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_rdata_to_virtual_header_fromregion (1 samples, 0.01%)</title><rect x="1188.0" y="597" width="0.1" height="15.0" fill="rgb(237,219,43)" rx="2" ry="2" />
<text text-anchor="" x="1191.01" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (116 samples, 1.30%)</title><rect x="356.7" y="485" width="15.3" height="15.0" fill="rgb(246,99,14)" rx="2" ry="2" />
<text text-anchor="" x="359.68" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_route_output_flow (2 samples, 0.02%)</title><rect x="447.7" y="373" width="0.2" height="15.0" fill="rgb(215,9,23)" rx="2" ry="2" />
<text text-anchor="" x="450.65" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_tx_hash (2 samples, 0.02%)</title><rect x="1116.6" y="229" width="0.3" height="15.0" fill="rgb(233,182,17)" rx="2" ry="2" />
<text text-anchor="" x="1119.64" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_random_get (3 samples, 0.03%)</title><rect x="1156.9" y="533" width="0.4" height="15.0" fill="rgb(239,175,49)" rx="2" ry="2" />
<text text-anchor="" x="1159.89" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_get_timeouts (2 samples, 0.02%)</title><rect x="1140.5" y="293" width="0.2" height="15.0" fill="rgb(222,118,6)" rx="2" ry="2" />
<text text-anchor="" x="1143.47" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (3 samples, 0.03%)</title><rect x="401.7" y="533" width="0.4" height="15.0" fill="rgb(230,115,46)" rx="2" ry="2" />
<text text-anchor="" x="404.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_send (1 samples, 0.01%)</title><rect x="510.7" y="629" width="0.1" height="15.0" fill="rgb(211,17,36)" rx="2" ry="2" />
<text text-anchor="" x="513.68" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="350.1" y="533" width="0.1" height="15.0" fill="rgb(245,138,13)" rx="2" ry="2" />
<text text-anchor="" x="353.06" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (10 samples, 0.11%)</title><rect x="373.0" y="453" width="1.3" height="15.0" fill="rgb(240,165,23)" rx="2" ry="2" />
<text text-anchor="" x="375.96" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.01%)</title><rect x="97.8" y="277" width="0.1" height="15.0" fill="rgb(235,71,4)" rx="2" ry="2" />
<text text-anchor="" x="100.79" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="179.8" y="453" width="0.1" height="15.0" fill="rgb(249,191,4)" rx="2" ry="2" />
<text text-anchor="" x="182.76" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pollwake (2 samples, 0.02%)</title><rect x="631.3" y="373" width="0.3" height="15.0" fill="rgb(205,77,15)" rx="2" ry="2" />
<text text-anchor="" x="634.32" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (2 samples, 0.02%)</title><rect x="98.6" y="437" width="0.3" height="15.0" fill="rgb(210,71,41)" rx="2" ry="2" />
<text text-anchor="" x="101.59" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_put (2 samples, 0.02%)</title><rect x="280.1" y="517" width="0.3" height="15.0" fill="rgb(234,116,5)" rx="2" ry="2" />
<text text-anchor="" x="283.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>plist_del (1 samples, 0.01%)</title><rect x="605.6" y="533" width="0.2" height="15.0" fill="rgb(253,31,37)" rx="2" ry="2" />
<text text-anchor="" x="608.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_read_msr_safe (1 samples, 0.01%)</title><rect x="671.6" y="389" width="0.1" height="15.0" fill="rgb(234,213,21)" rx="2" ry="2" />
<text text-anchor="" x="674.57" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (13 samples, 0.15%)</title><rect x="480.2" y="581" width="1.7" height="15.0" fill="rgb(252,53,23)" rx="2" ry="2" />
<text text-anchor="" x="483.23" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_getsockopt (1 samples, 0.01%)</title><rect x="37.4" y="597" width="0.1" height="15.0" fill="rgb(232,155,1)" rx="2" ry="2" />
<text text-anchor="" x="40.41" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_log_query (2 samples, 0.02%)</title><rect x="54.6" y="613" width="0.3" height="15.0" fill="rgb(221,107,12)" rx="2" ry="2" />
<text text-anchor="" x="57.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp4_hwcsum (1 samples, 0.01%)</title><rect x="1115.3" y="389" width="0.1" height="15.0" fill="rgb(215,34,8)" rx="2" ry="2" />
<text text-anchor="" x="1118.31" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="1119.4" y="485" width="0.2" height="15.0" fill="rgb(247,15,43)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (1 samples, 0.01%)</title><rect x="325.2" y="245" width="0.1" height="15.0" fill="rgb(251,80,25)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_route_output_flow (5 samples, 0.06%)</title><rect x="1114.5" y="389" width="0.7" height="15.0" fill="rgb(219,167,17)" rx="2" ry="2" />
<text text-anchor="" x="1117.52" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mark_inode_dirty (1 samples, 0.01%)</title><rect x="472.3" y="437" width="0.1" height="15.0" fill="rgb(244,129,38)" rx="2" ry="2" />
<text text-anchor="" x="475.28" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_put (3 samples, 0.03%)</title><rect x="60.8" y="613" width="0.4" height="15.0" fill="rgb(219,92,52)" rx="2" ry="2" />
<text text-anchor="" x="63.85" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_get_pages (1 samples, 0.01%)</title><rect x="325.6" y="325" width="0.1" height="15.0" fill="rgb(220,185,39)" rx="2" ry="2" />
<text text-anchor="" x="328.56" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__generic_file_write_iter (10 samples, 0.11%)</title><rect x="37.5" y="517" width="1.4" height="15.0" fill="rgb(233,205,8)" rx="2" ry="2" />
<text text-anchor="" x="40.54" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="490.2" y="533" width="0.1" height="15.0" fill="rgb(243,54,28)" rx="2" ry="2" />
<text text-anchor="" x="493.16" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="258.4" y="469" width="0.2" height="15.0" fill="rgb(207,82,29)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (4 samples, 0.04%)</title><rect x="672.2" y="357" width="0.6" height="15.0" fill="rgb(221,128,32)" rx="2" ry="2" />
<text text-anchor="" x="675.24" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="388.3" y="293" width="0.2" height="15.0" fill="rgb(228,118,29)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_rename (1 samples, 0.01%)</title><rect x="326.1" y="501" width="0.1" height="15.0" fill="rgb(250,23,36)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_L_unlock_722 (92 samples, 1.03%)</title><rect x="246.6" y="629" width="12.2" height="15.0" fill="rgb(210,169,43)" rx="2" ry="2" />
<text text-anchor="" x="249.64" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mark_wake_futex (2 samples, 0.02%)</title><rect x="251.8" y="533" width="0.3" height="15.0" fill="rgb(207,108,37)" rx="2" ry="2" />
<text text-anchor="" x="254.80" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_recv (35 samples, 0.39%)</title><rect x="292.5" y="485" width="4.6" height="15.0" fill="rgb(209,83,7)" rx="2" ry="2" />
<text text-anchor="" x="295.45" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_mem_attach (2 samples, 0.02%)</title><rect x="440.5" y="533" width="0.3" height="15.0" fill="rgb(227,49,25)" rx="2" ry="2" />
<text text-anchor="" x="443.50" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_queue_bio (1 samples, 0.01%)</title><rect x="325.2" y="293" width="0.1" height="15.0" fill="rgb(241,163,40)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_task_attach (1 samples, 0.01%)</title><rect x="590.9" y="629" width="0.2" height="15.0" fill="rgb(205,177,33)" rx="2" ry="2" />
<text text-anchor="" x="593.93" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (4 samples, 0.04%)</title><rect x="1144.8" y="245" width="0.6" height="15.0" fill="rgb(209,204,11)" rx="2" ry="2" />
<text text-anchor="" x="1147.84" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="366.5" y="277" width="0.1" height="15.0" fill="rgb(239,79,34)" rx="2" ry="2" />
<text text-anchor="" x="369.48" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_first (7 samples, 0.08%)</title><rect x="533.1" y="597" width="0.9" height="15.0" fill="rgb(215,68,17)" rx="2" ry="2" />
<text text-anchor="" x="536.06" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (103 samples, 1.16%)</title><rect x="83.6" y="421" width="13.7" height="15.0" fill="rgb(205,162,23)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="538.9" y="517" width="0.1" height="15.0" fill="rgb(212,224,21)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (1 samples, 0.01%)</title><rect x="341.7" y="453" width="0.1" height="15.0" fill="rgb(224,113,39)" rx="2" ry="2" />
<text text-anchor="" x="344.71" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towiresorted.isra.3 (1 samples, 0.01%)</title><rect x="592.5" y="549" width="0.2" height="15.0" fill="rgb(212,187,22)" rx="2" ry="2" />
<text text-anchor="" x="595.52" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (52 samples, 0.58%)</title><rect x="466.1" y="517" width="6.8" height="15.0" fill="rgb(220,147,21)" rx="2" ry="2" />
<text text-anchor="" x="469.06" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (1 samples, 0.01%)</title><rect x="645.5" y="517" width="0.1" height="15.0" fill="rgb(224,36,14)" rx="2" ry="2" />
<text text-anchor="" x="648.49" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_wakeup (2 samples, 0.02%)</title><rect x="631.3" y="421" width="0.3" height="15.0" fill="rgb(245,125,22)" rx="2" ry="2" />
<text text-anchor="" x="634.32" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_dispatch_addresponse2 (8 samples, 0.09%)</title><rect x="429.8" y="549" width="1.0" height="15.0" fill="rgb(247,207,18)" rx="2" ry="2" />
<text text-anchor="" x="432.77" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.01%)</title><rect x="470.0" y="453" width="0.2" height="15.0" fill="rgb(229,127,51)" rx="2" ry="2" />
<text text-anchor="" x="473.03" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (1,748 samples, 19.62%)</title><rect x="663.4" y="549" width="231.4" height="15.0" fill="rgb(227,180,13)" rx="2" ry="2" />
<text text-anchor="" x="666.36" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_wait_queue_me</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decrement_reference (1 samples, 0.01%)</title><rect x="511.3" y="565" width="0.2" height="15.0" fill="rgb(212,8,37)" rx="2" ry="2" />
<text text-anchor="" x="514.34" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_packet (1 samples, 0.01%)</title><rect x="454.8" y="197" width="0.1" height="15.0" fill="rgb(233,135,54)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>validate_xmit_skb_list (1 samples, 0.01%)</title><rect x="449.8" y="229" width="0.1" height="15.0" fill="rgb(246,62,35)" rx="2" ry="2" />
<text text-anchor="" x="452.77" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (9 samples, 0.10%)</title><rect x="474.0" y="485" width="1.2" height="15.0" fill="rgb(238,113,38)" rx="2" ry="2" />
<text text-anchor="" x="477.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (3 samples, 0.03%)</title><rect x="74.6" y="549" width="0.4" height="15.0" fill="rgb(234,178,21)" rx="2" ry="2" />
<text text-anchor="" x="77.62" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_make_skb (1 samples, 0.01%)</title><rect x="447.5" y="357" width="0.2" height="15.0" fill="rgb(241,62,22)" rx="2" ry="2" />
<text text-anchor="" x="450.52" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>link_path_walk (1 samples, 0.01%)</title><rect x="57.8" y="501" width="0.1" height="15.0" fill="rgb(237,214,36)" rx="2" ry="2" />
<text text-anchor="" x="60.80" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.06%)</title><rect x="609.3" y="533" width="0.7" height="15.0" fill="rgb(224,137,42)" rx="2" ry="2" />
<text text-anchor="" x="612.34" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_init (1 samples, 0.01%)</title><rect x="591.9" y="581" width="0.1" height="15.0" fill="rgb(238,34,25)" rx="2" ry="2" />
<text text-anchor="" x="594.86" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.02%)</title><rect x="348.5" y="501" width="0.2" height="15.0" fill="rgb(230,229,3)" rx="2" ry="2" />
<text text-anchor="" x="351.47" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (38 samples, 0.43%)</title><rect x="626.6" y="533" width="5.0" height="15.0" fill="rgb(218,14,42)" rx="2" ry="2" />
<text text-anchor="" x="629.55" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rename (1 samples, 0.01%)</title><rect x="326.1" y="533" width="0.1" height="15.0" fill="rgb(234,51,37)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_write (1 samples, 0.01%)</title><rect x="1189.6" y="565" width="0.1" height="15.0" fill="rgb(224,76,17)" rx="2" ry="2" />
<text text-anchor="" x="1192.60" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (1 samples, 0.01%)</title><rect x="1110.2" y="629" width="0.1" height="15.0" fill="rgb(252,229,39)" rx="2" ry="2" />
<text text-anchor="" x="1113.15" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (2 samples, 0.02%)</title><rect x="296.4" y="357" width="0.3" height="15.0" fill="rgb(224,216,27)" rx="2" ry="2" />
<text text-anchor="" x="299.43" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (490 samples, 5.50%)</title><rect x="116.1" y="565" width="64.9" height="15.0" fill="rgb(228,201,54)" rx="2" ry="2" />
<text text-anchor="" x="119.07" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do_futex</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_dispatch_getdscp (1 samples, 0.01%)</title><rect x="1111.6" y="549" width="0.1" height="15.0" fill="rgb(251,121,26)" rx="2" ry="2" />
<text text-anchor="" x="1114.61" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (8 samples, 0.09%)</title><rect x="135.7" y="277" width="1.0" height="15.0" fill="rgb(251,210,52)" rx="2" ry="2" />
<text text-anchor="" x="138.67" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (78 samples, 0.88%)</title><rect x="625.9" y="629" width="10.3" height="15.0" fill="rgb(218,138,38)" rx="2" ry="2" />
<text text-anchor="" x="628.89" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (22 samples, 0.25%)</title><rect x="22.2" y="581" width="2.9" height="15.0" fill="rgb(219,99,0)" rx="2" ry="2" />
<text text-anchor="" x="25.18" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (4 samples, 0.04%)</title><rect x="453.9" y="405" width="0.5" height="15.0" fill="rgb(224,13,12)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdatasetiter_next (1 samples, 0.01%)</title><rect x="74.0" y="613" width="0.1" height="15.0" fill="rgb(230,93,12)" rx="2" ry="2" />
<text text-anchor="" x="76.96" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_packet (1 samples, 0.01%)</title><rect x="1139.7" y="277" width="0.1" height="15.0" fill="rgb(248,10,27)" rx="2" ry="2" />
<text text-anchor="" x="1142.68" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (48 samples, 0.54%)</title><rect x="616.1" y="501" width="6.3" height="15.0" fill="rgb(228,210,49)" rx="2" ry="2" />
<text text-anchor="" x="619.09" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="310.5" y="389" width="0.1" height="15.0" fill="rgb(241,219,8)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1156.5" y="517" width="0.1" height="15.0" fill="rgb(241,130,33)" rx="2" ry="2" />
<text text-anchor="" x="1159.50" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (24 samples, 0.27%)</title><rect x="886.0" y="485" width="3.1" height="15.0" fill="rgb(232,217,43)" rx="2" ry="2" />
<text text-anchor="" x="888.96" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (3 samples, 0.03%)</title><rect x="1128.6" y="309" width="0.4" height="15.0" fill="rgb(215,15,20)" rx="2" ry="2" />
<text text-anchor="" x="1131.56" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_current (1 samples, 0.01%)</title><rect x="322.1" y="501" width="0.1" height="15.0" fill="rgb(244,41,35)" rx="2" ry="2" />
<text text-anchor="" x="325.12" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="375.1" y="501" width="0.1" height="15.0" fill="rgb(245,10,51)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_msghdr_from_user (6 samples, 0.07%)</title><rect x="1124.1" y="453" width="0.7" height="15.0" fill="rgb(233,227,49)" rx="2" ry="2" />
<text text-anchor="" x="1127.05" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.01%)</title><rect x="1118.9" y="421" width="0.1" height="15.0" fill="rgb(251,153,16)" rx="2" ry="2" />
<text text-anchor="" x="1121.89" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="296.3" y="277" width="0.1" height="15.0" fill="rgb(246,166,49)" rx="2" ry="2" />
<text text-anchor="" x="299.29" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_route_output_flow (16 samples, 0.18%)</title><rect x="1130.7" y="405" width="2.1" height="15.0" fill="rgb(230,27,21)" rx="2" ry="2" />
<text text-anchor="" x="1133.68" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="610.3" y="421" width="0.1" height="15.0" fill="rgb(218,197,54)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="1119.4" y="437" width="0.2" height="15.0" fill="rgb(239,72,43)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.01%)</title><rect x="886.5" y="437" width="0.1" height="15.0" fill="rgb(241,10,25)" rx="2" ry="2" />
<text text-anchor="" x="889.49" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (2 samples, 0.02%)</title><rect x="1141.3" y="341" width="0.2" height="15.0" fill="rgb(230,60,19)" rx="2" ry="2" />
<text text-anchor="" x="1144.27" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_allocsendbuf (1 samples, 0.01%)</title><rect x="1120.7" y="581" width="0.2" height="15.0" fill="rgb(221,177,27)" rx="2" ry="2" />
<text text-anchor="" x="1123.74" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_put (1 samples, 0.01%)</title><rect x="1189.1" y="597" width="0.1" height="15.0" fill="rgb(205,113,17)" rx="2" ry="2" />
<text text-anchor="" x="1192.07" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (32 samples, 0.36%)</title><rect x="627.1" y="437" width="4.2" height="15.0" fill="rgb(230,14,36)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_disassociate (3 samples, 0.03%)</title><rect x="1167.6" y="501" width="0.4" height="15.0" fill="rgb(211,0,26)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (2 samples, 0.02%)</title><rect x="899.1" y="581" width="0.2" height="15.0" fill="rgb(243,163,38)" rx="2" ry="2" />
<text text-anchor="" x="902.07" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (5 samples, 0.06%)</title><rect x="881.1" y="293" width="0.6" height="15.0" fill="rgb(213,95,31)" rx="2" ry="2" />
<text text-anchor="" x="884.06" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="470.6" y="421" width="0.1" height="15.0" fill="rgb(223,222,50)" rx="2" ry="2" />
<text text-anchor="" x="473.56" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.01%)</title><rect x="575.0" y="469" width="0.2" height="15.0" fill="rgb(230,147,15)" rx="2" ry="2" />
<text text-anchor="" x="578.04" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (2 samples, 0.02%)</title><rect x="248.9" y="581" width="0.3" height="15.0" fill="rgb(219,177,0)" rx="2" ry="2" />
<text text-anchor="" x="251.89" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_gettemprdata (1 samples, 0.01%)</title><rect x="591.9" y="597" width="0.1" height="15.0" fill="rgb(232,137,31)" rx="2" ry="2" />
<text text-anchor="" x="594.86" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (23 samples, 0.26%)</title><rect x="447.0" y="405" width="3.0" height="15.0" fill="rgb(252,74,29)" rx="2" ry="2" />
<text text-anchor="" x="449.99" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>import_iovec (10 samples, 0.11%)</title><rect x="358.4" y="453" width="1.3" height="15.0" fill="rgb(221,51,34)" rx="2" ry="2" />
<text text-anchor="" x="361.40" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_findrdataset (2 samples, 0.02%)</title><rect x="322.8" y="517" width="0.2" height="15.0" fill="rgb(231,86,42)" rx="2" ry="2" />
<text text-anchor="" x="325.78" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run (1 samples, 0.01%)</title><rect x="581.8" y="469" width="0.1" height="15.0" fill="rgb(231,200,31)" rx="2" ry="2" />
<text text-anchor="" x="584.79" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (2 samples, 0.02%)</title><rect x="367.1" y="405" width="0.3" height="15.0" fill="rgb(243,226,38)" rx="2" ry="2" />
<text text-anchor="" x="370.14" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_finish_plug (1 samples, 0.01%)</title><rect x="325.2" y="357" width="0.1" height="15.0" fill="rgb(228,134,41)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="316.8" y="405" width="0.2" height="15.0" fill="rgb(251,50,16)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__timer_reset (2 samples, 0.02%)</title><rect x="455.9" y="549" width="0.2" height="15.0" fill="rgb(244,207,23)" rx="2" ry="2" />
<text text-anchor="" x="458.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (32 samples, 0.36%)</title><rect x="627.1" y="469" width="4.2" height="15.0" fill="rgb(214,193,51)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_wait@plt (5 samples, 0.06%)</title><rect x="68.4" y="613" width="0.7" height="15.0" fill="rgb(232,131,0)" rx="2" ry="2" />
<text text-anchor="" x="71.40" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (17 samples, 0.19%)</title><rect x="675.5" y="453" width="2.3" height="15.0" fill="rgb(253,10,13)" rx="2" ry="2" />
<text text-anchor="" x="678.55" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (5 samples, 0.06%)</title><rect x="615.2" y="533" width="0.6" height="15.0" fill="rgb(238,133,43)" rx="2" ry="2" />
<text text-anchor="" x="618.16" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>megasas_build_and_issue_cmd_fusion (1 samples, 0.01%)</title><rect x="326.1" y="245" width="0.1" height="15.0" fill="rgb(207,32,5)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_blocked_averages (1 samples, 0.01%)</title><rect x="99.4" y="469" width="0.1" height="15.0" fill="rgb(207,62,8)" rx="2" ry="2" />
<text text-anchor="" x="102.38" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (1 samples, 0.01%)</title><rect x="1118.9" y="373" width="0.1" height="15.0" fill="rgb(236,54,42)" rx="2" ry="2" />
<text text-anchor="" x="1121.89" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_task_cpu (1 samples, 0.01%)</title><rect x="177.1" y="309" width="0.1" height="15.0" fill="rgb(247,192,44)" rx="2" ry="2" />
<text text-anchor="" x="180.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_send_IPI_mask_sequence_phys (1 samples, 0.01%)</title><rect x="307.5" y="165" width="0.2" height="15.0" fill="rgb(242,224,17)" rx="2" ry="2" />
<text text-anchor="" x="310.55" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stdtime_get (4 samples, 0.04%)</title><rect x="393.2" y="581" width="0.6" height="15.0" fill="rgb(253,19,50)" rx="2" ry="2" />
<text text-anchor="" x="396.23" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (1 samples, 0.01%)</title><rect x="619.8" y="469" width="0.1" height="15.0" fill="rgb(214,11,23)" rx="2" ry="2" />
<text text-anchor="" x="622.80" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.01%)</title><rect x="308.7" y="309" width="0.2" height="15.0" fill="rgb(210,82,53)" rx="2" ry="2" />
<text text-anchor="" x="311.74" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_tx_hash (1 samples, 0.01%)</title><rect x="1143.9" y="261" width="0.2" height="15.0" fill="rgb(221,100,5)" rx="2" ry="2" />
<text text-anchor="" x="1146.92" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromwire (12 samples, 0.13%)</title><rect x="268.0" y="533" width="1.5" height="15.0" fill="rgb(206,103,47)" rx="2" ry="2" />
<text text-anchor="" x="270.96" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addrrset (61 samples, 0.68%)</title><rect x="1158.7" y="613" width="8.1" height="15.0" fill="rgb(242,58,46)" rx="2" ry="2" />
<text text-anchor="" x="1161.75" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_es_lookup_extent (1 samples, 0.01%)</title><rect x="37.8" y="437" width="0.1" height="15.0" fill="rgb(246,158,33)" rx="2" ry="2" />
<text text-anchor="" x="40.81" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (21 samples, 0.24%)</title><rect x="473.1" y="517" width="2.8" height="15.0" fill="rgb(225,162,32)" rx="2" ry="2" />
<text text-anchor="" x="476.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (43 samples, 0.48%)</title><rect x="626.2" y="581" width="5.6" height="15.0" fill="rgb(252,104,11)" rx="2" ry="2" />
<text text-anchor="" x="629.15" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (12 samples, 0.13%)</title><rect x="294.8" y="373" width="1.6" height="15.0" fill="rgb(246,130,32)" rx="2" ry="2" />
<text text-anchor="" x="297.84" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dump_rdatasets_text (95 samples, 1.07%)</title><rect x="534.0" y="613" width="12.6" height="15.0" fill="rgb(244,49,9)" rx="2" ry="2" />
<text text-anchor="" x="536.99" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (120 samples, 1.35%)</title><rect x="567.2" y="549" width="15.9" height="15.0" fill="rgb(225,75,9)" rx="2" ry="2" />
<text text-anchor="" x="570.23" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="82.3" y="453" width="0.1" height="15.0" fill="rgb(206,31,27)" rx="2" ry="2" />
<text text-anchor="" x="85.30" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.02%)</title><rect x="35.6" y="501" width="0.2" height="15.0" fill="rgb(223,48,30)" rx="2" ry="2" />
<text text-anchor="" x="38.56" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (15 samples, 0.17%)</title><rect x="1116.9" y="261" width="2.0" height="15.0" fill="rgb(213,15,53)" rx="2" ry="2" />
<text text-anchor="" x="1119.90" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (10 samples, 0.11%)</title><rect x="439.2" y="533" width="1.3" height="15.0" fill="rgb(210,180,10)" rx="2" ry="2" />
<text text-anchor="" x="442.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.01%)</title><rect x="256.7" y="437" width="0.1" height="15.0" fill="rgb(243,28,48)" rx="2" ry="2" />
<text text-anchor="" x="259.70" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_get_hash (4 samples, 0.04%)</title><rect x="1143.4" y="229" width="0.5" height="15.0" fill="rgb(233,225,38)" rx="2" ry="2" />
<text text-anchor="" x="1146.39" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="375.5" y="389" width="0.1" height="15.0" fill="rgb(248,147,6)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.01%)</title><rect x="544.2" y="453" width="0.1" height="15.0" fill="rgb(213,42,12)" rx="2" ry="2" />
<text text-anchor="" x="547.18" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.01%)</title><rect x="665.9" y="69" width="0.1" height="15.0" fill="rgb(221,43,13)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="665.9" y="357" width="0.1" height="15.0" fill="rgb(254,162,6)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (6 samples, 0.07%)</title><rect x="291.0" y="517" width="0.8" height="15.0" fill="rgb(224,97,6)" rx="2" ry="2" />
<text text-anchor="" x="294.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_gettemprdataset (1 samples, 0.01%)</title><rect x="1168.8" y="485" width="0.1" height="15.0" fill="rgb(230,66,45)" rx="2" ry="2" />
<text text-anchor="" x="1171.81" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up (3 samples, 0.03%)</title><rect x="97.7" y="389" width="0.4" height="15.0" fill="rgb(237,209,29)" rx="2" ry="2" />
<text text-anchor="" x="100.66" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (1 samples, 0.01%)</title><rect x="453.7" y="453" width="0.2" height="15.0" fill="rgb(211,157,0)" rx="2" ry="2" />
<text text-anchor="" x="456.74" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.01%)</title><rect x="55.2" y="597" width="0.1" height="15.0" fill="rgb(221,110,1)" rx="2" ry="2" />
<text text-anchor="" x="58.16" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (11 samples, 0.12%)</title><rect x="891.9" y="437" width="1.5" height="15.0" fill="rgb(234,145,41)" rx="2" ry="2" />
<text text-anchor="" x="894.92" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (2 samples, 0.02%)</title><rect x="117.1" y="437" width="0.3" height="15.0" fill="rgb(227,18,30)" rx="2" ry="2" />
<text text-anchor="" x="120.13" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_zonecut_callback (1 samples, 0.01%)</title><rect x="1189.7" y="629" width="0.2" height="15.0" fill="rgb(248,128,26)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (2 samples, 0.02%)</title><rect x="482.9" y="613" width="0.2" height="15.0" fill="rgb(225,130,8)" rx="2" ry="2" />
<text text-anchor="" x="485.87" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_request_getresponse (25 samples, 0.28%)</title><rect x="402.5" y="565" width="3.3" height="15.0" fill="rgb(220,213,15)" rx="2" ry="2" />
<text text-anchor="" x="405.49" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__filemap_fdatawrite_range (1 samples, 0.01%)</title><rect x="326.1" y="405" width="0.1" height="15.0" fill="rgb(254,162,17)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.01%)</title><rect x="651.6" y="485" width="0.1" height="15.0" fill="rgb(215,114,22)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (1 samples, 0.01%)</title><rect x="39.1" y="629" width="0.2" height="15.0" fill="rgb(241,209,28)" rx="2" ry="2" />
<text text-anchor="" x="42.13" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="323.0" y="501" width="0.2" height="15.0" fill="rgb(224,88,46)" rx="2" ry="2" />
<text text-anchor="" x="326.04" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>plist_add (3 samples, 0.03%)</title><rect x="665.5" y="533" width="0.4" height="15.0" fill="rgb(221,164,24)" rx="2" ry="2" />
<text text-anchor="" x="668.48" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="366.5" y="325" width="0.1" height="15.0" fill="rgb(235,77,40)" rx="2" ry="2" />
<text text-anchor="" x="369.48" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_resolver_getudpsize (1 samples, 0.01%)</title><rect x="510.5" y="629" width="0.2" height="15.0" fill="rgb(206,191,26)" rx="2" ry="2" />
<text text-anchor="" x="513.55" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (1 samples, 0.01%)</title><rect x="476.0" y="581" width="0.1" height="15.0" fill="rgb(241,63,29)" rx="2" ry="2" />
<text text-anchor="" x="478.99" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullhash (2 samples, 0.02%)</title><rect x="49.1" y="613" width="0.2" height="15.0" fill="rgb(243,142,9)" rx="2" ry="2" />
<text text-anchor="" x="52.06" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (3 samples, 0.03%)</title><rect x="454.0" y="325" width="0.4" height="15.0" fill="rgb(243,95,29)" rx="2" ry="2" />
<text text-anchor="" x="457.01" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_disable (1 samples, 0.01%)</title><rect x="116.9" y="453" width="0.1" height="15.0" fill="rgb(238,136,19)" rx="2" ry="2" />
<text text-anchor="" x="119.86" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="43.0" y="565" width="0.1" height="15.0" fill="rgb(207,104,19)" rx="2" ry="2" />
<text text-anchor="" x="45.97" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific (3 samples, 0.03%)</title><rect x="524.7" y="549" width="0.4" height="15.0" fill="rgb(230,57,36)" rx="2" ry="2" />
<text text-anchor="" x="527.72" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="1116.5" y="261" width="0.1" height="15.0" fill="rgb(221,7,52)" rx="2" ry="2" />
<text text-anchor="" x="1119.51" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (24 samples, 0.27%)</title><rect x="651.7" y="613" width="3.2" height="15.0" fill="rgb(208,151,24)" rx="2" ry="2" />
<text text-anchor="" x="654.71" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_futex (67 samples, 0.75%)</title><rect x="249.4" y="565" width="8.9" height="15.0" fill="rgb(212,106,18)" rx="2" ry="2" />
<text text-anchor="" x="252.42" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (1 samples, 0.01%)</title><rect x="366.1" y="405" width="0.1" height="15.0" fill="rgb(248,66,1)" rx="2" ry="2" />
<text text-anchor="" x="369.08" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="388.3" y="341" width="0.2" height="15.0" fill="rgb(235,4,47)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (4 samples, 0.04%)</title><rect x="448.0" y="293" width="0.6" height="15.0" fill="rgb(228,39,39)" rx="2" ry="2" />
<text text-anchor="" x="451.05" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.15 (1 samples, 0.01%)</title><rect x="544.2" y="485" width="0.1" height="15.0" fill="rgb(213,68,39)" rx="2" ry="2" />
<text text-anchor="" x="547.18" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="492.4" y="469" width="0.1" height="15.0" fill="rgb(236,2,0)" rx="2" ry="2" />
<text text-anchor="" x="495.41" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (3 samples, 0.03%)</title><rect x="286.5" y="517" width="0.4" height="15.0" fill="rgb(208,183,44)" rx="2" ry="2" />
<text text-anchor="" x="289.49" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttlfmt (3 samples, 0.03%)</title><rect x="512.7" y="597" width="0.4" height="15.0" fill="rgb(235,44,47)" rx="2" ry="2" />
<text text-anchor="" x="515.67" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.01%)</title><rect x="450.0" y="421" width="0.2" height="15.0" fill="rgb(221,175,16)" rx="2" ry="2" />
<text text-anchor="" x="453.03" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.01%)</title><rect x="631.4" y="325" width="0.2" height="15.0" fill="rgb(223,131,20)" rx="2" ry="2" />
<text text-anchor="" x="634.45" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_send (232 samples, 2.60%)</title><rect x="1122.2" y="549" width="30.7" height="15.0" fill="rgb(205,35,24)" rx="2" ry="2" />
<text text-anchor="" x="1125.20" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (1 samples, 0.01%)</title><rect x="443.1" y="389" width="0.2" height="15.0" fill="rgb(250,20,10)" rx="2" ry="2" />
<text text-anchor="" x="446.15" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_buffer_getuint32 (1 samples, 0.01%)</title><rect x="274.4" y="533" width="0.2" height="15.0" fill="rgb(227,180,33)" rx="2" ry="2" />
<text text-anchor="" x="277.44" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_current (1 samples, 0.01%)</title><rect x="52.8" y="613" width="0.1" height="15.0" fill="rgb(245,103,47)" rx="2" ry="2" />
<text text-anchor="" x="55.77" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_sockaddr_compare (4 samples, 0.04%)</title><rect x="431.0" y="501" width="0.5" height="15.0" fill="rgb(238,144,18)" rx="2" ry="2" />
<text text-anchor="" x="433.97" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_sendmsg (213 samples, 2.39%)</title><rect x="1123.8" y="469" width="28.2" height="15.0" fill="rgb(216,219,42)" rx="2" ry="2" />
<text text-anchor="" x="1126.79" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromwire (1 samples, 0.01%)</title><rect x="403.7" y="501" width="0.1" height="15.0" fill="rgb(221,154,25)" rx="2" ry="2" />
<text text-anchor="" x="406.69" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (15 samples, 0.17%)</title><rect x="57.3" y="597" width="2.0" height="15.0" fill="rgb(247,223,7)" rx="2" ry="2" />
<text text-anchor="" x="60.27" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inode_reserved_space (1 samples, 0.01%)</title><rect x="37.7" y="421" width="0.1" height="15.0" fill="rgb(218,60,42)" rx="2" ry="2" />
<text text-anchor="" x="40.68" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_queue_rcv_skb (1 samples, 0.01%)</title><rect x="481.8" y="293" width="0.1" height="15.0" fill="rgb(218,208,4)" rx="2" ry="2" />
<text text-anchor="" x="484.81" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (19 samples, 0.21%)</title><rect x="644.2" y="613" width="2.5" height="15.0" fill="rgb(224,55,27)" rx="2" ry="2" />
<text text-anchor="" x="647.16" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (4 samples, 0.04%)</title><rect x="1164.8" y="485" width="0.6" height="15.0" fill="rgb(217,204,29)" rx="2" ry="2" />
<text text-anchor="" x="1167.84" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_next (1 samples, 0.01%)</title><rect x="1158.0" y="533" width="0.1" height="15.0" fill="rgb(237,213,2)" rx="2" ry="2" />
<text text-anchor="" x="1160.95" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="492.4" y="485" width="0.1" height="15.0" fill="rgb(205,121,17)" rx="2" ry="2" />
<text text-anchor="" x="495.41" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>physflat_send_IPI_mask (1 samples, 0.01%)</title><rect x="307.7" y="181" width="0.1" height="15.0" fill="rgb(214,226,39)" rx="2" ry="2" />
<text text-anchor="" x="310.68" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (9 samples, 0.10%)</title><rect x="340.9" y="533" width="1.2" height="15.0" fill="rgb(210,41,1)" rx="2" ry="2" />
<text text-anchor="" x="343.92" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullcompare (1 samples, 0.01%)</title><rect x="1175.3" y="597" width="0.1" height="15.0" fill="rgb(238,139,49)" rx="2" ry="2" />
<text text-anchor="" x="1178.30" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rand (2 samples, 0.02%)</title><rect x="1189.2" y="581" width="0.3" height="15.0" fill="rgb(254,75,1)" rx="2" ry="2" />
<text text-anchor="" x="1192.21" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_ctl (5 samples, 0.06%)</title><rect x="55.2" y="613" width="0.6" height="15.0" fill="rgb(222,77,50)" rx="2" ry="2" />
<text text-anchor="" x="58.16" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>megasas_isr_fusion (1 samples, 0.01%)</title><rect x="277.2" y="405" width="0.2" height="15.0" fill="rgb(250,85,41)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="179.8" y="389" width="0.1" height="15.0" fill="rgb(246,124,7)" rx="2" ry="2" />
<text text-anchor="" x="182.76" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="316.8" y="341" width="0.2" height="15.0" fill="rgb(249,212,29)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_log (1 samples, 0.01%)</title><rect x="281.3" y="533" width="0.2" height="15.0" fill="rgb(225,115,23)" rx="2" ry="2" />
<text text-anchor="" x="284.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (3 samples, 0.03%)</title><rect x="432.4" y="357" width="0.4" height="15.0" fill="rgb(214,26,19)" rx="2" ry="2" />
<text text-anchor="" x="435.42" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.01%)</title><rect x="538.9" y="373" width="0.1" height="15.0" fill="rgb(225,186,43)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_towiresorted (63 samples, 0.71%)</title><rect x="499.6" y="597" width="8.3" height="15.0" fill="rgb(221,141,48)" rx="2" ry="2" />
<text text-anchor="" x="502.56" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="454.0" y="277" width="0.1" height="15.0" fill="rgb(244,170,47)" rx="2" ry="2" />
<text text-anchor="" x="457.01" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="310.5" y="373" width="0.1" height="15.0" fill="rgb(249,78,12)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nohz_balance_exit_idle.part.65 (1 samples, 0.01%)</title><rect x="673.0" y="341" width="0.2" height="15.0" fill="rgb(224,32,44)" rx="2" ry="2" />
<text text-anchor="" x="676.03" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (1 samples, 0.01%)</title><rect x="592.0" y="581" width="0.1" height="15.0" fill="rgb(211,69,49)" rx="2" ry="2" />
<text text-anchor="" x="594.99" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_fromregion (1 samples, 0.01%)</title><rect x="404.2" y="485" width="0.1" height="15.0" fill="rgb(210,163,4)" rx="2" ry="2" />
<text text-anchor="" x="407.22" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>file_update_time (2 samples, 0.02%)</title><rect x="309.8" y="357" width="0.3" height="15.0" fill="rgb(238,98,12)" rx="2" ry="2" />
<text text-anchor="" x="312.80" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendmsg (25 samples, 0.28%)</title><rect x="446.9" y="469" width="3.3" height="15.0" fill="rgb(224,101,24)" rx="2" ry="2" />
<text text-anchor="" x="449.86" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pending_event (1 samples, 0.01%)</title><rect x="581.8" y="437" width="0.1" height="15.0" fill="rgb(224,13,29)" rx="2" ry="2" />
<text text-anchor="" x="584.79" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="81.1" y="485" width="0.1" height="15.0" fill="rgb(240,222,12)" rx="2" ry="2" />
<text text-anchor="" x="84.11" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbtnodechain_init (2 samples, 0.02%)</title><rect x="1185.0" y="613" width="0.2" height="15.0" fill="rgb(230,49,1)" rx="2" ry="2" />
<text text-anchor="" x="1187.97" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>radix_tree_lookup_slot (1 samples, 0.01%)</title><rect x="59.0" y="325" width="0.1" height="15.0" fill="rgb(217,225,30)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>flush_smp_call_function_queue (1 samples, 0.01%)</title><rect x="341.6" y="469" width="0.1" height="15.0" fill="rgb(231,161,4)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="1184.6" y="581" width="0.1" height="15.0" fill="rgb(219,4,5)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="272.7" y="485" width="0.2" height="15.0" fill="rgb(218,24,4)" rx="2" ry="2" />
<text text-anchor="" x="275.72" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run_list (1 samples, 0.01%)</title><rect x="581.8" y="453" width="0.1" height="15.0" fill="rgb(254,1,26)" rx="2" ry="2" />
<text text-anchor="" x="584.79" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_poke.isra.12 (6 samples, 0.07%)</title><rect x="453.9" y="533" width="0.8" height="15.0" fill="rgb(213,34,19)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hash_futex (4 samples, 0.04%)</title><rect x="898.3" y="549" width="0.5" height="15.0" fill="rgb(248,216,45)" rx="2" ry="2" />
<text text-anchor="" x="901.28" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_rename (1 samples, 0.01%)</title><rect x="326.1" y="485" width="0.1" height="15.0" fill="rgb(219,11,32)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (103 samples, 1.16%)</title><rect x="83.6" y="437" width="13.7" height="15.0" fill="rgb(206,192,38)" rx="2" ry="2" />
<text text-anchor="" x="86.63" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>random (3 samples, 0.03%)</title><rect x="1156.9" y="501" width="0.4" height="15.0" fill="rgb(254,137,23)" rx="2" ry="2" />
<text text-anchor="" x="1159.89" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addrrset (34 samples, 0.38%)</title><rect x="493.1" y="581" width="4.5" height="15.0" fill="rgb(247,162,29)" rx="2" ry="2" />
<text text-anchor="" x="496.07" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_request_fn (1 samples, 0.01%)</title><rect x="325.2" y="229" width="0.1" height="15.0" fill="rgb(210,67,38)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (6 samples, 0.07%)</title><rect x="453.9" y="485" width="0.8" height="15.0" fill="rgb(229,80,5)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.01%)</title><rect x="473.9" y="485" width="0.1" height="15.0" fill="rgb(219,4,38)" rx="2" ry="2" />
<text text-anchor="" x="476.87" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="507.8" y="453" width="0.1" height="15.0" fill="rgb(210,45,8)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (100 samples, 1.12%)</title><rect x="298.1" y="453" width="13.3" height="15.0" fill="rgb(235,72,7)" rx="2" ry="2" />
<text text-anchor="" x="301.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (1 samples, 0.01%)</title><rect x="1151.9" y="437" width="0.1" height="15.0" fill="rgb(245,98,0)" rx="2" ry="2" />
<text text-anchor="" x="1154.86" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>datagram_poll (1 samples, 0.01%)</title><rect x="565.2" y="501" width="0.2" height="15.0" fill="rgb(250,48,47)" rx="2" ry="2" />
<text text-anchor="" x="568.24" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_gettempname (10 samples, 0.11%)</title><rect x="427.3" y="565" width="1.3" height="15.0" fill="rgb(245,192,50)" rx="2" ry="2" />
<text text-anchor="" x="430.26" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>closeversion (1 samples, 0.01%)</title><rect x="44.0" y="613" width="0.2" height="15.0" fill="rgb(243,113,4)" rx="2" ry="2" />
<text text-anchor="" x="47.03" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (2 samples, 0.02%)</title><rect x="380.8" y="485" width="0.2" height="15.0" fill="rgb(205,158,31)" rx="2" ry="2" />
<text text-anchor="" x="383.78" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_pick_tx (7 samples, 0.08%)</title><rect x="1143.1" y="277" width="1.0" height="15.0" fill="rgb(214,221,14)" rx="2" ry="2" />
<text text-anchor="" x="1146.12" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_destroy (2 samples, 0.02%)</title><rect x="427.0" y="565" width="0.3" height="15.0" fill="rgb(229,172,41)" rx="2" ry="2" />
<text text-anchor="" x="429.99" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_current (2 samples, 0.02%)</title><rect x="1157.7" y="533" width="0.3" height="15.0" fill="rgb(207,205,52)" rx="2" ry="2" />
<text text-anchor="" x="1160.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (491 samples, 5.51%)</title><rect x="115.9" y="581" width="65.1" height="15.0" fill="rgb(211,219,45)" rx="2" ry="2" />
<text text-anchor="" x="118.94" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sys_futex</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="284.6" y="437" width="0.2" height="15.0" fill="rgb(224,0,46)" rx="2" ry="2" />
<text text-anchor="" x="287.64" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_order_find (1 samples, 0.01%)</title><rect x="50.7" y="613" width="0.1" height="15.0" fill="rgb(246,10,15)" rx="2" ry="2" />
<text text-anchor="" x="53.65" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hash_conntrack_raw (1 samples, 0.01%)</title><rect x="1136.2" y="293" width="0.2" height="15.0" fill="rgb(207,170,6)" rx="2" ry="2" />
<text text-anchor="" x="1139.24" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memmove@plt (1 samples, 0.01%)</title><rect x="66.9" y="613" width="0.2" height="15.0" fill="rgb(236,122,0)" rx="2" ry="2" />
<text text-anchor="" x="69.94" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_buffer_getuint16 (1 samples, 0.01%)</title><rect x="451.1" y="549" width="0.1" height="15.0" fill="rgb(250,227,42)" rx="2" ry="2" />
<text text-anchor="" x="454.09" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (3 samples, 0.03%)</title><rect x="494.1" y="485" width="0.4" height="15.0" fill="rgb(212,203,2)" rx="2" ry="2" />
<text text-anchor="" x="497.13" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_L_unlock_554 (37 samples, 0.42%)</title><rect x="241.7" y="629" width="4.9" height="15.0" fill="rgb(215,173,28)" rx="2" ry="2" />
<text text-anchor="" x="244.74" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__timer_detach (14 samples, 0.16%)</title><rect x="413.6" y="533" width="1.9" height="15.0" fill="rgb(233,33,47)" rx="2" ry="2" />
<text text-anchor="" x="416.62" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.01%)</title><rect x="672.8" y="357" width="0.1" height="15.0" fill="rgb(239,212,46)" rx="2" ry="2" />
<text text-anchor="" x="675.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sock_recv_timestamp (1 samples, 0.01%)</title><rect x="295.6" y="325" width="0.2" height="15.0" fill="rgb(248,3,8)" rx="2" ry="2" />
<text text-anchor="" x="298.63" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (20 samples, 0.22%)</title><rect x="595.2" y="613" width="2.6" height="15.0" fill="rgb(243,0,27)" rx="2" ry="2" />
<text text-anchor="" x="598.17" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_availableregion (2 samples, 0.02%)</title><rect x="532.7" y="597" width="0.2" height="15.0" fill="rgb(229,62,54)" rx="2" ry="2" />
<text text-anchor="" x="535.66" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagecache_get_page (1 samples, 0.01%)</title><rect x="59.0" y="357" width="0.1" height="15.0" fill="rgb(216,175,35)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_dirty_inode (6 samples, 0.07%)</title><rect x="58.3" y="485" width="0.8" height="15.0" fill="rgb(248,74,25)" rx="2" ry="2" />
<text text-anchor="" x="61.33" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (2 samples, 0.02%)</title><rect x="296.4" y="373" width="0.3" height="15.0" fill="rgb(246,115,4)" rx="2" ry="2" />
<text text-anchor="" x="299.43" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stdio_write (1 samples, 0.01%)</title><rect x="66.1" y="613" width="0.2" height="15.0" fill="rgb(254,45,2)" rx="2" ry="2" />
<text text-anchor="" x="69.15" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_findname (1 samples, 0.01%)</title><rect x="46.4" y="613" width="0.1" height="15.0" fill="rgb(226,165,42)" rx="2" ry="2" />
<text text-anchor="" x="49.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.02%)</title><rect x="494.3" y="469" width="0.2" height="15.0" fill="rgb(205,38,7)" rx="2" ry="2" />
<text text-anchor="" x="497.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="1154.9" y="501" width="0.1" height="15.0" fill="rgb(207,227,54)" rx="2" ry="2" />
<text text-anchor="" x="1157.91" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_queue_rcv_skb (2 samples, 0.02%)</title><rect x="892.7" y="229" width="0.3" height="15.0" fill="rgb(231,204,19)" rx="2" ry="2" />
<text text-anchor="" x="895.72" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (1 samples, 0.01%)</title><rect x="341.7" y="501" width="0.1" height="15.0" fill="rgb(205,152,38)" rx="2" ry="2" />
<text text-anchor="" x="344.71" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="258.4" y="485" width="0.2" height="15.0" fill="rgb(247,58,33)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (106 samples, 1.19%)</title><rect x="376.8" y="549" width="14.0" height="15.0" fill="rgb(238,47,4)" rx="2" ry="2" />
<text text-anchor="" x="379.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (9 samples, 0.10%)</title><rect x="645.2" y="549" width="1.2" height="15.0" fill="rgb(205,227,52)" rx="2" ry="2" />
<text text-anchor="" x="648.22" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="1158.6" y="357" width="0.1" height="15.0" fill="rgb(248,228,54)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (16 samples, 0.18%)</title><rect x="671.2" y="501" width="2.1" height="15.0" fill="rgb(237,197,35)" rx="2" ry="2" />
<text text-anchor="" x="674.18" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (12 samples, 0.13%)</title><rect x="88.5" y="293" width="1.6" height="15.0" fill="rgb(234,59,7)" rx="2" ry="2" />
<text text-anchor="" x="91.53" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__compute_runnable_contrib (1 samples, 0.01%)</title><rect x="616.2" y="485" width="0.2" height="15.0" fill="rgb(222,26,30)" rx="2" ry="2" />
<text text-anchor="" x="619.22" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_in (1 samples, 0.01%)</title><rect x="287.2" y="277" width="0.1" height="15.0" fill="rgb(228,35,1)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>socket_log.constprop.19 (3 samples, 0.03%)</title><rect x="482.2" y="581" width="0.4" height="15.0" fill="rgb(240,192,28)" rx="2" ry="2" />
<text text-anchor="" x="485.21" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmpxchg_double_slab.isra.55 (1 samples, 0.01%)</title><rect x="1169.6" y="389" width="0.1" height="15.0" fill="rgb(247,45,0)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_error (2 samples, 0.02%)</title><rect x="592.5" y="629" width="0.3" height="15.0" fill="rgb(250,119,22)" rx="2" ry="2" />
<text text-anchor="" x="595.52" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (1 samples, 0.01%)</title><rect x="179.5" y="485" width="0.1" height="15.0" fill="rgb(228,133,44)" rx="2" ry="2" />
<text text-anchor="" x="182.50" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="665.9" y="405" width="0.1" height="15.0" fill="rgb(214,220,46)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (8 samples, 0.09%)</title><rect x="493.1" y="485" width="1.0" height="15.0" fill="rgb(250,196,27)" rx="2" ry="2" />
<text text-anchor="" x="496.07" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_hash_function_reverse (4 samples, 0.04%)</title><rect x="506.3" y="517" width="0.5" height="15.0" fill="rgb(231,82,27)" rx="2" ry="2" />
<text text-anchor="" x="509.31" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>walk_component (1 samples, 0.01%)</title><rect x="57.9" y="501" width="0.2" height="15.0" fill="rgb(242,79,4)" rx="2" ry="2" />
<text text-anchor="" x="60.94" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="610.3" y="389" width="0.1" height="15.0" fill="rgb(223,210,5)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.01%)</title><rect x="97.1" y="389" width="0.2" height="15.0" fill="rgb(243,91,53)" rx="2" ry="2" />
<text text-anchor="" x="100.13" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="538.9" y="485" width="0.1" height="15.0" fill="rgb(226,193,9)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (3 samples, 0.03%)</title><rect x="10.5" y="613" width="0.4" height="15.0" fill="rgb(243,93,30)" rx="2" ry="2" />
<text text-anchor="" x="13.53" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_recvmsg (2 samples, 0.02%)</title><rect x="356.3" y="501" width="0.2" height="15.0" fill="rgb(209,141,8)" rx="2" ry="2" />
<text text-anchor="" x="359.28" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (480 samples, 5.39%)</title><rect x="116.3" y="501" width="63.6" height="15.0" fill="rgb(233,25,18)" rx="2" ry="2" />
<text text-anchor="" x="119.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__sche..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.01%)</title><rect x="544.2" y="501" width="0.1" height="15.0" fill="rgb(253,66,39)" rx="2" ry="2" />
<text text-anchor="" x="547.18" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>startrecv (18 samples, 0.20%)</title><rect x="452.3" y="565" width="2.4" height="15.0" fill="rgb(254,65,51)" rx="2" ry="2" />
<text text-anchor="" x="455.28" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (1 samples, 0.01%)</title><rect x="295.9" y="325" width="0.1" height="15.0" fill="rgb(223,142,31)" rx="2" ry="2" />
<text text-anchor="" x="298.90" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_q_add (1 samples, 0.01%)</title><rect x="252.1" y="533" width="0.1" height="15.0" fill="rgb(213,208,51)" rx="2" ry="2" />
<text text-anchor="" x="255.06" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait_queue_me (480 samples, 5.39%)</title><rect x="116.3" y="533" width="63.6" height="15.0" fill="rgb(217,202,2)" rx="2" ry="2" />
<text text-anchor="" x="119.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >futex_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zone_detach (1 samples, 0.01%)</title><rect x="496.0" y="501" width="0.1" height="15.0" fill="rgb(244,223,18)" rx="2" ry="2" />
<text text-anchor="" x="498.98" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>truncate_inode_page (1 samples, 0.01%)</title><rect x="326.0" y="373" width="0.1" height="15.0" fill="rgb(246,60,50)" rx="2" ry="2" />
<text text-anchor="" x="328.96" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (2 samples, 0.02%)</title><rect x="294.6" y="373" width="0.2" height="15.0" fill="rgb(241,100,18)" rx="2" ry="2" />
<text text-anchor="" x="297.57" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_commit_txn (1 samples, 0.01%)</title><rect x="341.6" y="405" width="0.1" height="15.0" fill="rgb(230,36,46)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="456.0" y="533" width="0.1" height="15.0" fill="rgb(227,68,35)" rx="2" ry="2" />
<text text-anchor="" x="458.99" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_additionaldata (12 samples, 0.13%)</title><rect x="1168.0" y="549" width="1.6" height="15.0" fill="rgb(251,121,28)" rx="2" ry="2" />
<text text-anchor="" x="1171.02" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_buffer (1 samples, 0.01%)</title><rect x="410.8" y="549" width="0.2" height="15.0" fill="rgb(254,206,35)" rx="2" ry="2" />
<text text-anchor="" x="413.84" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stats_increment (1 samples, 0.01%)</title><rect x="1158.5" y="581" width="0.1" height="15.0" fill="rgb(215,47,17)" rx="2" ry="2" />
<text text-anchor="" x="1161.48" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (2 samples, 0.02%)</title><rect x="116.9" y="469" width="0.2" height="15.0" fill="rgb(230,112,1)" rx="2" ry="2" />
<text text-anchor="" x="119.86" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdatasetiter_first (26 samples, 0.29%)</title><rect x="541.8" y="597" width="3.4" height="15.0" fill="rgb(214,2,24)" rx="2" ry="2" />
<text text-anchor="" x="544.80" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1186.3" y="565" width="0.1" height="15.0" fill="rgb(224,213,7)" rx="2" ry="2" />
<text text-anchor="" x="1189.29" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_puttempname (1 samples, 0.01%)</title><rect x="318.7" y="517" width="0.1" height="15.0" fill="rgb(236,15,41)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_append_data.isra.47 (27 samples, 0.30%)</title><rect x="1125.9" y="389" width="3.6" height="15.0" fill="rgb(227,131,14)" rx="2" ry="2" />
<text text-anchor="" x="1128.91" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stdio_sync (2 samples, 0.02%)</title><rect x="454.9" y="517" width="0.3" height="15.0" fill="rgb(221,35,23)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_unlock_wake (89 samples, 1.00%)</title><rect x="247.0" y="613" width="11.8" height="15.0" fill="rgb(249,195,47)" rx="2" ry="2" />
<text text-anchor="" x="250.03" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_next_callback (2 samples, 0.02%)</title><rect x="72.2" y="613" width="0.3" height="15.0" fill="rgb(253,92,53)" rx="2" ry="2" />
<text text-anchor="" x="75.24" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>clearerr (14 samples, 0.16%)</title><rect x="537.2" y="581" width="1.8" height="15.0" fill="rgb(249,208,7)" rx="2" ry="2" />
<text text-anchor="" x="540.17" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="1158.6" y="501" width="0.1" height="15.0" fill="rgb(221,134,32)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_zonecut_callback (3 samples, 0.03%)</title><rect x="1184.3" y="597" width="0.4" height="15.0" fill="rgb(232,91,39)" rx="2" ry="2" />
<text text-anchor="" x="1187.31" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (5 samples, 0.06%)</title><rect x="881.1" y="325" width="0.6" height="15.0" fill="rgb(237,225,53)" rx="2" ry="2" />
<text text-anchor="" x="884.06" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="179.8" y="405" width="0.1" height="15.0" fill="rgb(212,48,53)" rx="2" ry="2" />
<text text-anchor="" x="182.76" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.01%)</title><rect x="258.4" y="437" width="0.2" height="15.0" fill="rgb(232,57,38)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbt_findnode (5 samples, 0.06%)</title><rect x="593.2" y="565" width="0.6" height="15.0" fill="rgb(225,48,5)" rx="2" ry="2" />
<text text-anchor="" x="596.18" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (204 samples, 2.29%)</title><rect x="119.6" y="341" width="27.1" height="15.0" fill="rgb(235,185,14)" rx="2" ry="2" />
<text text-anchor="" x="122.64" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="610.3" y="469" width="0.1" height="15.0" fill="rgb(228,212,6)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (2 samples, 0.02%)</title><rect x="1119.2" y="421" width="0.2" height="15.0" fill="rgb(246,21,0)" rx="2" ry="2" />
<text text-anchor="" x="1122.15" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.01%)</title><rect x="575.4" y="501" width="0.2" height="15.0" fill="rgb(236,74,5)" rx="2" ry="2" />
<text text-anchor="" x="578.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.01%)</title><rect x="99.5" y="277" width="0.1" height="15.0" fill="rgb(235,195,49)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="563.0" y="517" width="0.1" height="15.0" fill="rgb(213,226,34)" rx="2" ry="2" />
<text text-anchor="" x="565.99" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_task_getcurrenttime (1 samples, 0.01%)</title><rect x="278.4" y="565" width="0.1" height="15.0" fill="rgb(234,122,49)" rx="2" ry="2" />
<text text-anchor="" x="281.42" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_xmit_frame (1 samples, 0.01%)</title><rect x="1118.5" y="245" width="0.1" height="15.0" fill="rgb(247,17,0)" rx="2" ry="2" />
<text text-anchor="" x="1121.49" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="610.3" y="373" width="0.1" height="15.0" fill="rgb(245,90,29)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq (1 samples, 0.01%)</title><rect x="353.4" y="501" width="0.1" height="15.0" fill="rgb(252,163,0)" rx="2" ry="2" />
<text text-anchor="" x="356.37" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (2 samples, 0.02%)</title><rect x="74.8" y="533" width="0.2" height="15.0" fill="rgb(205,211,31)" rx="2" ry="2" />
<text text-anchor="" x="77.75" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (8,911 samples, 100%)</title><rect x="10.0" y="661" width="1180.0" height="15.0" fill="rgb(229,126,39)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send (1 samples, 0.01%)</title><rect x="75.3" y="613" width="0.1" height="15.0" fill="rgb(249,70,39)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_sendmsg (45 samples, 0.50%)</title><rect x="1112.9" y="405" width="6.0" height="15.0" fill="rgb(243,51,38)" rx="2" ry="2" />
<text text-anchor="" x="1115.93" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>closeandrename (7 samples, 0.08%)</title><rect x="325.2" y="565" width="0.9" height="15.0" fill="rgb(252,38,53)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up (2 samples, 0.02%)</title><rect x="631.3" y="405" width="0.3" height="15.0" fill="rgb(232,86,21)" rx="2" ry="2" />
<text text-anchor="" x="634.32" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_to_page_cache_lru (2 samples, 0.02%)</title><rect x="38.3" y="437" width="0.3" height="15.0" fill="rgb(229,43,33)" rx="2" ry="2" />
<text text-anchor="" x="41.34" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (1 samples, 0.01%)</title><rect x="379.2" y="517" width="0.1" height="15.0" fill="rgb(215,3,19)" rx="2" ry="2" />
<text text-anchor="" x="382.19" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_renderheader (1 samples, 0.01%)</title><rect x="1153.5" y="565" width="0.1" height="15.0" fill="rgb(250,200,33)" rx="2" ry="2" />
<text text-anchor="" x="1156.45" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eth_header_parse (1 samples, 0.01%)</title><rect x="1117.0" y="229" width="0.2" height="15.0" fill="rgb(224,21,15)" rx="2" ry="2" />
<text text-anchor="" x="1120.04" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>migrate_task_rq_fair (1 samples, 0.01%)</title><rect x="610.1" y="533" width="0.2" height="15.0" fill="rgb(244,62,37)" rx="2" ry="2" />
<text text-anchor="" x="613.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_setopt (1 samples, 0.01%)</title><rect x="509.6" y="629" width="0.2" height="15.0" fill="rgb(218,121,5)" rx="2" ry="2" />
<text text-anchor="" x="512.62" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.01%)</title><rect x="82.2" y="421" width="0.1" height="15.0" fill="rgb(230,55,4)" rx="2" ry="2" />
<text text-anchor="" x="85.17" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>radix_tree_next_chunk (1 samples, 0.01%)</title><rect x="325.6" y="309" width="0.1" height="15.0" fill="rgb(238,47,27)" rx="2" ry="2" />
<text text-anchor="" x="328.56" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_send_skb (141 samples, 1.58%)</title><rect x="1133.2" y="389" width="18.7" height="15.0" fill="rgb(223,209,42)" rx="2" ry="2" />
<text text-anchor="" x="1136.19" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run_list (60 samples, 0.67%)</title><rect x="876.8" y="453" width="8.0" height="15.0" fill="rgb(215,16,8)" rx="2" ry="2" />
<text text-anchor="" x="879.83" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zone_refresh (4 samples, 0.04%)</title><rect x="455.2" y="565" width="0.5" height="15.0" fill="rgb(228,218,27)" rx="2" ry="2" />
<text text-anchor="" x="458.20" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getoriginnode (1 samples, 0.01%)</title><rect x="317.2" y="533" width="0.1" height="15.0" fill="rgb(223,147,2)" rx="2" ry="2" />
<text text-anchor="" x="320.22" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_offsets (1 samples, 0.01%)</title><rect x="497.6" y="533" width="0.1" height="15.0" fill="rgb(224,92,21)" rx="2" ry="2" />
<text text-anchor="" x="500.57" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_make_request (1 samples, 0.01%)</title><rect x="454.9" y="293" width="0.2" height="15.0" fill="rgb(219,78,38)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="374.2" y="373" width="0.1" height="15.0" fill="rgb(237,62,17)" rx="2" ry="2" />
<text text-anchor="" x="377.16" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (4 samples, 0.04%)</title><rect x="55.3" y="597" width="0.5" height="15.0" fill="rgb(205,108,6)" rx="2" ry="2" />
<text text-anchor="" x="58.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="413.1" y="565" width="0.1" height="15.0" fill="rgb(215,168,47)" rx="2" ry="2" />
<text text-anchor="" x="416.09" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.01%)</title><rect x="572.5" y="453" width="0.2" height="15.0" fill="rgb(245,5,33)" rx="2" ry="2" />
<text text-anchor="" x="575.52" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pending_event (22 samples, 0.25%)</title><rect x="175.7" y="421" width="2.9" height="15.0" fill="rgb(208,151,25)" rx="2" ry="2" />
<text text-anchor="" x="178.66" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.01%)</title><rect x="287.2" y="309" width="0.1" height="15.0" fill="rgb(228,77,18)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="420.9" y="501" width="0.1" height="15.0" fill="rgb(221,168,28)" rx="2" ry="2" />
<text text-anchor="" x="423.90" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="490.3" y="485" width="0.1" height="15.0" fill="rgb(240,196,40)" rx="2" ry="2" />
<text text-anchor="" x="493.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="375.1" y="533" width="0.1" height="15.0" fill="rgb(222,121,17)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.01%)</title><rect x="279.3" y="405" width="0.2" height="15.0" fill="rgb(248,209,48)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_getsockname (4 samples, 0.04%)</title><rect x="431.9" y="405" width="0.5" height="15.0" fill="rgb(225,178,21)" rx="2" ry="2" />
<text text-anchor="" x="434.89" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset (1 samples, 0.01%)</title><rect x="317.9" y="501" width="0.1" height="15.0" fill="rgb(209,88,5)" rx="2" ry="2" />
<text text-anchor="" x="320.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_renderend (1 samples, 0.01%)</title><rect x="499.4" y="613" width="0.2" height="15.0" fill="rgb(209,10,1)" rx="2" ry="2" />
<text text-anchor="" x="502.43" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_setactive (1 samples, 0.01%)</title><rect x="589.2" y="629" width="0.1" height="15.0" fill="rgb(213,97,37)" rx="2" ry="2" />
<text text-anchor="" x="592.21" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (19 samples, 0.21%)</title><rect x="473.3" y="501" width="2.6" height="15.0" fill="rgb(246,160,30)" rx="2" ry="2" />
<text text-anchor="" x="476.34" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_findglobal (2 samples, 0.02%)</title><rect x="441.0" y="469" width="0.3" height="15.0" fill="rgb(221,65,49)" rx="2" ry="2" />
<text text-anchor="" x="444.03" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.01%)</title><rect x="454.1" y="229" width="0.2" height="15.0" fill="rgb(226,177,8)" rx="2" ry="2" />
<text text-anchor="" x="457.14" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.01%)</title><rect x="97.7" y="325" width="0.1" height="15.0" fill="rgb(228,177,21)" rx="2" ry="2" />
<text text-anchor="" x="100.66" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_make_request (1 samples, 0.01%)</title><rect x="455.1" y="309" width="0.1" height="15.0" fill="rgb(220,113,36)" rx="2" ry="2" />
<text text-anchor="" x="458.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (44 samples, 0.49%)</title><rect x="302.6" y="293" width="5.9" height="15.0" fill="rgb(224,138,10)" rx="2" ry="2" />
<text text-anchor="" x="305.65" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_init (1 samples, 0.01%)</title><rect x="1153.8" y="565" width="0.2" height="15.0" fill="rgb(228,39,34)" rx="2" ry="2" />
<text text-anchor="" x="1156.85" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_purgerange (1 samples, 0.01%)</title><rect x="413.6" y="517" width="0.2" height="15.0" fill="rgb(221,21,19)" rx="2" ry="2" />
<text text-anchor="" x="416.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_send (1 samples, 0.01%)</title><rect x="454.8" y="517" width="0.1" height="15.0" fill="rgb(223,154,48)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="375.1" y="421" width="0.1" height="15.0" fill="rgb(226,37,48)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.01%)</title><rect x="321.9" y="373" width="0.1" height="15.0" fill="rgb(229,149,53)" rx="2" ry="2" />
<text text-anchor="" x="324.85" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_concatenate (8 samples, 0.09%)</title><rect x="1180.9" y="597" width="1.0" height="15.0" fill="rgb(214,223,9)" rx="2" ry="2" />
<text text-anchor="" x="1183.86" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detachnode (3 samples, 0.03%)</title><rect x="44.6" y="613" width="0.4" height="15.0" fill="rgb(235,66,31)" rx="2" ry="2" />
<text text-anchor="" x="47.56" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fib_table_lookup (5 samples, 0.06%)</title><rect x="1132.1" y="373" width="0.7" height="15.0" fill="rgb(226,161,20)" rx="2" ry="2" />
<text text-anchor="" x="1135.13" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (4 samples, 0.04%)</title><rect x="400.2" y="549" width="0.6" height="15.0" fill="rgb(240,186,33)" rx="2" ry="2" />
<text text-anchor="" x="403.24" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="81.1" y="533" width="0.1" height="15.0" fill="rgb(207,100,47)" rx="2" ry="2" />
<text text-anchor="" x="84.11" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_pcppages_bulk (1 samples, 0.01%)</title><rect x="325.7" y="309" width="0.1" height="15.0" fill="rgb(244,131,38)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>req_senddone (3 samples, 0.03%)</title><rect x="415.9" y="581" width="0.4" height="15.0" fill="rgb(206,9,33)" rx="2" ry="2" />
<text text-anchor="" x="418.87" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="277.2" y="517" width="0.2" height="15.0" fill="rgb(221,166,30)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (48 samples, 0.54%)</title><rect x="83.8" y="357" width="6.3" height="15.0" fill="rgb(235,114,15)" rx="2" ry="2" />
<text text-anchor="" x="86.76" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (1,475 samples, 16.55%)</title><rect x="681.5" y="501" width="195.3" height="15.0" fill="rgb(213,191,21)" rx="2" ry="2" />
<text text-anchor="" x="684.50" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >finish_task_switch</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="402.0" y="517" width="0.1" height="15.0" fill="rgb(232,193,11)" rx="2" ry="2" />
<text text-anchor="" x="404.96" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="497.8" y="485" width="0.2" height="15.0" fill="rgb(217,174,33)" rx="2" ry="2" />
<text text-anchor="" x="500.84" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="249.3" y="565" width="0.1" height="15.0" fill="rgb(246,216,13)" rx="2" ry="2" />
<text text-anchor="" x="252.28" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_gettempname (6 samples, 0.07%)</title><rect x="286.2" y="533" width="0.8" height="15.0" fill="rgb(251,37,52)" rx="2" ry="2" />
<text text-anchor="" x="289.23" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_out (3 samples, 0.03%)</title><rect x="116.7" y="485" width="0.4" height="15.0" fill="rgb(250,185,1)" rx="2" ry="2" />
<text text-anchor="" x="119.73" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_clone (1 samples, 0.01%)</title><rect x="429.5" y="565" width="0.1" height="15.0" fill="rgb(210,164,49)" rx="2" ry="2" />
<text text-anchor="" x="432.51" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (1 samples, 0.01%)</title><rect x="1119.4" y="341" width="0.2" height="15.0" fill="rgb(211,4,40)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (1 samples, 0.01%)</title><rect x="504.1" y="517" width="0.1" height="15.0" fill="rgb(215,224,40)" rx="2" ry="2" />
<text text-anchor="" x="507.06" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_put (1 samples, 0.01%)</title><rect x="399.3" y="549" width="0.1" height="15.0" fill="rgb(212,155,9)" rx="2" ry="2" />
<text text-anchor="" x="402.32" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (1 samples, 0.01%)</title><rect x="453.3" y="405" width="0.2" height="15.0" fill="rgb(249,23,39)" rx="2" ry="2" />
<text text-anchor="" x="456.34" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="1141.9" y="245" width="0.2" height="15.0" fill="rgb(234,32,32)" rx="2" ry="2" />
<text text-anchor="" x="1144.93" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_reset (1 samples, 0.01%)</title><rect x="510.2" y="629" width="0.1" height="15.0" fill="rgb(227,183,42)" rx="2" ry="2" />
<text text-anchor="" x="513.15" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.01%)</title><rect x="367.0" y="389" width="0.1" height="15.0" fill="rgb(215,162,29)" rx="2" ry="2" />
<text text-anchor="" x="370.01" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="507.8" y="373" width="0.1" height="15.0" fill="rgb(254,64,9)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_setactive (1 samples, 0.01%)</title><rect x="62.4" y="613" width="0.2" height="15.0" fill="rgb(207,79,6)" rx="2" ry="2" />
<text text-anchor="" x="65.44" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dump_quantum (190 samples, 2.13%)</title><rect x="325.2" y="581" width="25.1" height="15.0" fill="rgb(228,179,28)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (5 samples, 0.06%)</title><rect x="310.7" y="389" width="0.7" height="15.0" fill="rgb(252,80,3)" rx="2" ry="2" />
<text text-anchor="" x="313.73" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (2 samples, 0.02%)</title><rect x="454.1" y="293" width="0.3" height="15.0" fill="rgb(232,66,44)" rx="2" ry="2" />
<text text-anchor="" x="457.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (6 samples, 0.07%)</title><rect x="471.4" y="469" width="0.7" height="15.0" fill="rgb(226,82,33)" rx="2" ry="2" />
<text text-anchor="" x="474.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (5 samples, 0.06%)</title><rect x="379.5" y="469" width="0.6" height="15.0" fill="rgb(239,180,37)" rx="2" ry="2" />
<text text-anchor="" x="382.45" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rand (3 samples, 0.03%)</title><rect x="1156.9" y="517" width="0.4" height="15.0" fill="rgb(251,65,51)" rx="2" ry="2" />
<text text-anchor="" x="1159.89" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detachnode (12 samples, 0.13%)</title><rect x="511.1" y="581" width="1.6" height="15.0" fill="rgb(244,0,9)" rx="2" ry="2" />
<text text-anchor="" x="514.08" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (16 samples, 0.18%)</title><rect x="576.9" y="341" width="2.1" height="15.0" fill="rgb(241,48,7)" rx="2" ry="2" />
<text text-anchor="" x="579.89" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.01%)</title><rect x="375.1" y="325" width="0.1" height="15.0" fill="rgb(223,35,49)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event (1 samples, 0.01%)</title><rect x="277.2" y="437" width="0.2" height="15.0" fill="rgb(206,77,47)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_timer (1 samples, 0.01%)</title><rect x="651.6" y="533" width="0.1" height="15.0" fill="rgb(254,182,16)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_file_xsputn (1 samples, 0.01%)</title><rect x="510.8" y="613" width="0.1" height="15.0" fill="rgb(238,56,27)" rx="2" ry="2" />
<text text-anchor="" x="513.81" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rbx (1 samples, 0.01%)</title><rect x="559.7" y="565" width="0.1" height="15.0" fill="rgb(211,16,41)" rx="2" ry="2" />
<text text-anchor="" x="562.68" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="495.6" y="469" width="0.1" height="15.0" fill="rgb(247,81,3)" rx="2" ry="2" />
<text text-anchor="" x="498.59" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___sys_sendmsg (48 samples, 0.54%)</title><rect x="1112.7" y="453" width="6.3" height="15.0" fill="rgb(213,30,17)" rx="2" ry="2" />
<text text-anchor="" x="1115.67" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_sd_lb_stats (17 samples, 0.19%)</title><rect x="886.9" y="453" width="2.2" height="15.0" fill="rgb(215,54,48)" rx="2" ry="2" />
<text text-anchor="" x="889.89" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (1 samples, 0.01%)</title><rect x="631.4" y="261" width="0.2" height="15.0" fill="rgb(249,114,13)" rx="2" ry="2" />
<text text-anchor="" x="634.45" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (1 samples, 0.01%)</title><rect x="32.5" y="565" width="0.1" height="15.0" fill="rgb(212,91,23)" rx="2" ry="2" />
<text text-anchor="" x="35.51" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (38 samples, 0.43%)</title><rect x="576.8" y="453" width="5.0" height="15.0" fill="rgb(229,142,48)" rx="2" ry="2" />
<text text-anchor="" x="579.76" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_sendmsg (25 samples, 0.28%)</title><rect x="446.9" y="501" width="3.3" height="15.0" fill="rgb(219,193,32)" rx="2" ry="2" />
<text text-anchor="" x="449.86" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netdev_pick_tx (1 samples, 0.01%)</title><rect x="1151.2" y="293" width="0.1" height="15.0" fill="rgb(253,191,17)" rx="2" ry="2" />
<text text-anchor="" x="1154.20" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (2 samples, 0.02%)</title><rect x="324.2" y="517" width="0.3" height="15.0" fill="rgb(212,124,14)" rx="2" ry="2" />
<text text-anchor="" x="327.23" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.01%)</title><rect x="507.8" y="325" width="0.1" height="15.0" fill="rgb(216,206,29)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decrement_reference (14 samples, 0.16%)</title><rect x="333.4" y="533" width="1.8" height="15.0" fill="rgb(243,113,36)" rx="2" ry="2" />
<text text-anchor="" x="336.37" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="318.7" y="453" width="0.1" height="15.0" fill="rgb(224,46,2)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.01%)</title><rect x="374.2" y="309" width="0.1" height="15.0" fill="rgb(242,126,45)" rx="2" ry="2" />
<text text-anchor="" x="377.16" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="99.5" y="437" width="0.1" height="15.0" fill="rgb(232,159,54)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_poll (1 samples, 0.01%)</title><rect x="565.2" y="517" width="0.2" height="15.0" fill="rgb(252,98,50)" rx="2" ry="2" />
<text text-anchor="" x="568.24" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="455.5" y="517" width="0.1" height="15.0" fill="rgb(243,118,18)" rx="2" ry="2" />
<text text-anchor="" x="458.46" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (2 samples, 0.02%)</title><rect x="475.2" y="485" width="0.3" height="15.0" fill="rgb(249,5,20)" rx="2" ry="2" />
<text text-anchor="" x="478.19" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_xmit_frame (1 samples, 0.01%)</title><rect x="1117.2" y="229" width="0.1" height="15.0" fill="rgb(228,187,3)" rx="2" ry="2" />
<text text-anchor="" x="1120.17" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="443.1" y="501" width="0.2" height="15.0" fill="rgb(245,10,34)" rx="2" ry="2" />
<text text-anchor="" x="446.15" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="311.4" y="293" width="0.1" height="15.0" fill="rgb(205,84,21)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="287.2" y="341" width="0.1" height="15.0" fill="rgb(227,16,13)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_make_skb (2 samples, 0.02%)</title><rect x="1114.0" y="373" width="0.3" height="15.0" fill="rgb(216,153,10)" rx="2" ry="2" />
<text text-anchor="" x="1116.99" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy_erms (1 samples, 0.01%)</title><rect x="366.5" y="229" width="0.1" height="15.0" fill="rgb(242,7,46)" rx="2" ry="2" />
<text text-anchor="" x="369.48" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (8 samples, 0.09%)</title><rect x="464.1" y="533" width="1.0" height="15.0" fill="rgb(226,60,50)" rx="2" ry="2" />
<text text-anchor="" x="467.07" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (2 samples, 0.02%)</title><rect x="60.1" y="613" width="0.2" height="15.0" fill="rgb(254,156,28)" rx="2" ry="2" />
<text text-anchor="" x="63.05" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.01%)</title><rect x="75.3" y="469" width="0.1" height="15.0" fill="rgb(220,206,25)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="538.9" y="309" width="0.1" height="15.0" fill="rgb(209,56,22)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mempool_create (2 samples, 0.02%)</title><rect x="401.0" y="549" width="0.3" height="15.0" fill="rgb(241,155,7)" rx="2" ry="2" />
<text text-anchor="" x="404.04" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__rdatalist_first (1 samples, 0.01%)</title><rect x="1153.7" y="533" width="0.1" height="15.0" fill="rgb(207,116,11)" rx="2" ry="2" />
<text text-anchor="" x="1156.72" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="1158.6" y="517" width="0.1" height="15.0" fill="rgb(210,83,54)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_handle_irq (384 samples, 4.31%)</title><rect x="698.6" y="309" width="50.8" height="15.0" fill="rgb(249,178,10)" rx="2" ry="2" />
<text text-anchor="" x="701.59" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_handle_irq (33 samples, 0.37%)</title><rect x="84.2" y="293" width="4.3" height="15.0" fill="rgb(205,220,24)" rx="2" ry="2" />
<text text-anchor="" x="87.16" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_putmem (1 samples, 0.01%)</title><rect x="62.2" y="613" width="0.1" height="15.0" fill="rgb(229,18,13)" rx="2" ry="2" />
<text text-anchor="" x="65.17" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.02%)</title><rect x="413.9" y="517" width="0.2" height="15.0" fill="rgb(242,5,0)" rx="2" ry="2" />
<text text-anchor="" x="416.88" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_detachnode (1 samples, 0.01%)</title><rect x="1170.0" y="549" width="0.1" height="15.0" fill="rgb(228,32,31)" rx="2" ry="2" />
<text text-anchor="" x="1173.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_ntop (2 samples, 0.02%)</title><rect x="529.4" y="533" width="0.2" height="15.0" fill="rgb(252,130,41)" rx="2" ry="2" />
<text text-anchor="" x="532.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.02%)</title><rect x="481.9" y="581" width="0.3" height="15.0" fill="rgb(227,211,21)" rx="2" ry="2" />
<text text-anchor="" x="484.95" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (105 samples, 1.18%)</title><rect x="297.7" y="469" width="14.0" height="15.0" fill="rgb(207,105,11)" rx="2" ry="2" />
<text text-anchor="" x="300.75" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="1158.6" y="549" width="0.1" height="15.0" fill="rgb(242,95,47)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (5 samples, 0.06%)</title><rect x="670.0" y="405" width="0.6" height="15.0" fill="rgb(205,224,37)" rx="2" ry="2" />
<text text-anchor="" x="672.98" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_put (1 samples, 0.01%)</title><rect x="318.7" y="485" width="0.1" height="15.0" fill="rgb(243,145,35)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (120 samples, 1.35%)</title><rect x="567.2" y="533" width="15.9" height="15.0" fill="rgb(248,59,53)" rx="2" ry="2" />
<text text-anchor="" x="570.23" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.01%)</title><rect x="607.5" y="549" width="0.1" height="15.0" fill="rgb(240,76,46)" rx="2" ry="2" />
<text text-anchor="" x="610.48" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zt_find (61 samples, 0.68%)</title><rect x="1158.7" y="533" width="8.1" height="15.0" fill="rgb(250,185,17)" rx="2" ry="2" />
<text text-anchor="" x="1161.75" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_packet (1 samples, 0.01%)</title><rect x="287.2" y="245" width="0.1" height="15.0" fill="rgb(246,153,31)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="592.4" y="517" width="0.1" height="15.0" fill="rgb(238,180,44)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (4 samples, 0.04%)</title><rect x="74.5" y="597" width="0.5" height="15.0" fill="rgb(250,145,42)" rx="2" ry="2" />
<text text-anchor="" x="77.49" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_rechecksig (1 samples, 0.01%)</title><rect x="509.1" y="629" width="0.1" height="15.0" fill="rgb(244,104,27)" rx="2" ry="2" />
<text text-anchor="" x="512.09" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (3 samples, 0.03%)</title><rect x="475.5" y="485" width="0.4" height="15.0" fill="rgb(221,124,52)" rx="2" ry="2" />
<text text-anchor="" x="478.46" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="321.9" y="437" width="0.1" height="15.0" fill="rgb(242,26,25)" rx="2" ry="2" />
<text text-anchor="" x="324.85" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>flushandsync (4 samples, 0.04%)</title><rect x="325.2" y="549" width="0.5" height="15.0" fill="rgb(221,19,33)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="1158.6" y="437" width="0.1" height="15.0" fill="rgb(207,25,5)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (54 samples, 0.61%)</title><rect x="1133.6" y="341" width="7.1" height="15.0" fill="rgb(227,146,5)" rx="2" ry="2" />
<text text-anchor="" x="1136.59" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (2 samples, 0.02%)</title><rect x="118.8" y="421" width="0.3" height="15.0" fill="rgb(219,168,12)" rx="2" ry="2" />
<text text-anchor="" x="121.85" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_make_skb (7 samples, 0.08%)</title><rect x="1129.5" y="389" width="0.9" height="15.0" fill="rgb(223,61,16)" rx="2" ry="2" />
<text text-anchor="" x="1132.48" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatatype_ismeta (3 samples, 0.03%)</title><rect x="280.7" y="549" width="0.4" height="15.0" fill="rgb(223,75,42)" rx="2" ry="2" />
<text text-anchor="" x="283.67" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_edge_irq (1 samples, 0.01%)</title><rect x="277.2" y="453" width="0.2" height="15.0" fill="rgb(222,72,15)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="592.4" y="597" width="0.1" height="15.0" fill="rgb(206,60,26)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_towire (5 samples, 0.06%)</title><rect x="507.2" y="533" width="0.7" height="15.0" fill="rgb(247,229,18)" rx="2" ry="2" />
<text text-anchor="" x="510.24" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (3 samples, 0.03%)</title><rect x="310.7" y="357" width="0.4" height="15.0" fill="rgb(224,222,21)" rx="2" ry="2" />
<text text-anchor="" x="313.73" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_disable_all (1 samples, 0.01%)</title><rect x="116.9" y="421" width="0.1" height="15.0" fill="rgb(236,203,17)" rx="2" ry="2" />
<text text-anchor="" x="119.86" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.01%)</title><rect x="1112.1" y="501" width="0.2" height="15.0" fill="rgb(243,29,13)" rx="2" ry="2" />
<text text-anchor="" x="1115.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_helper (1 samples, 0.01%)</title><rect x="1184.2" y="357" width="0.1" height="15.0" fill="rgb(211,161,39)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_hash_function_reverse (2 samples, 0.02%)</title><rect x="492.1" y="533" width="0.3" height="15.0" fill="rgb(224,71,15)" rx="2" ry="2" />
<text text-anchor="" x="495.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="1184.6" y="549" width="0.1" height="15.0" fill="rgb(246,21,28)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbt_findname (5 samples, 0.06%)</title><rect x="593.2" y="581" width="0.6" height="15.0" fill="rgb(252,89,54)" rx="2" ry="2" />
<text text-anchor="" x="596.18" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_netaddr_fromsockaddr (1 samples, 0.01%)</title><rect x="407.7" y="533" width="0.1" height="15.0" fill="rgb(205,185,54)" rx="2" ry="2" />
<text text-anchor="" x="410.66" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_rendersection (1 samples, 0.01%)</title><rect x="592.7" y="581" width="0.1" height="15.0" fill="rgb(207,170,35)" rx="2" ry="2" />
<text text-anchor="" x="595.65" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>attachnode (2 samples, 0.02%)</title><rect x="327.5" y="533" width="0.3" height="15.0" fill="rgb(206,145,15)" rx="2" ry="2" />
<text text-anchor="" x="330.54" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_epoll_wait (199 samples, 2.23%)</title><rect x="557.0" y="597" width="26.4" height="15.0" fill="rgb(224,216,42)" rx="2" ry="2" />
<text text-anchor="" x="560.03" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__clone (1,690 samples, 18.97%)</title><rect x="258.8" y="629" width="223.8" height="15.0" fill="rgb(237,218,45)" rx="2" ry="2" />
<text text-anchor="" x="261.82" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__clone</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_query_start (348 samples, 3.91%)</title><rect x="278.9" y="565" width="46.1" height="15.0" fill="rgb(241,226,6)" rx="2" ry="2" />
<text text-anchor="" x="281.95" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ns_q..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (1 samples, 0.01%)</title><rect x="60.7" y="613" width="0.1" height="15.0" fill="rgb(224,66,20)" rx="2" ry="2" />
<text text-anchor="" x="63.72" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="279.3" y="549" width="0.2" height="15.0" fill="rgb(209,48,22)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_rcu_sched (9 samples, 0.10%)</title><rect x="27.9" y="565" width="1.2" height="15.0" fill="rgb(211,8,15)" rx="2" ry="2" />
<text text-anchor="" x="30.88" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (4 samples, 0.04%)</title><rect x="19.1" y="597" width="0.6" height="15.0" fill="rgb(209,23,3)" rx="2" ry="2" />
<text text-anchor="" x="22.14" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_virtual_disassociate (1 samples, 0.01%)</title><rect x="312.8" y="469" width="0.2" height="15.0" fill="rgb(231,162,34)" rx="2" ry="2" />
<text text-anchor="" x="315.85" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.01%)</title><rect x="1152.0" y="469" width="0.1" height="15.0" fill="rgb(210,229,23)" rx="2" ry="2" />
<text text-anchor="" x="1155.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (1 samples, 0.01%)</title><rect x="84.0" y="293" width="0.2" height="15.0" fill="rgb(231,132,27)" rx="2" ry="2" />
<text text-anchor="" x="87.02" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="388.3" y="309" width="0.2" height="15.0" fill="rgb(225,136,49)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.07%)</title><rect x="387.3" y="421" width="0.8" height="15.0" fill="rgb(205,207,54)" rx="2" ry="2" />
<text text-anchor="" x="390.27" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="879.1" y="341" width="0.1" height="15.0" fill="rgb(231,211,20)" rx="2" ry="2" />
<text text-anchor="" x="882.08" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.01%)</title><rect x="75.3" y="485" width="0.1" height="15.0" fill="rgb(215,11,39)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free (1 samples, 0.01%)</title><rect x="539.3" y="581" width="0.1" height="15.0" fill="rgb(222,41,43)" rx="2" ry="2" />
<text text-anchor="" x="542.29" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="471.2" y="405" width="0.2" height="15.0" fill="rgb(225,144,17)" rx="2" ry="2" />
<text text-anchor="" x="474.22" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="316.8" y="357" width="0.2" height="15.0" fill="rgb(213,170,46)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__blk_run_queue (1 samples, 0.01%)</title><rect x="326.1" y="309" width="0.1" height="15.0" fill="rgb(206,175,45)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="43.0" y="549" width="0.1" height="15.0" fill="rgb(242,109,24)" rx="2" ry="2" />
<text text-anchor="" x="45.97" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (6 samples, 0.07%)</title><rect x="366.6" y="421" width="0.8" height="15.0" fill="rgb(213,9,53)" rx="2" ry="2" />
<text text-anchor="" x="369.61" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_disassociate (1 samples, 0.01%)</title><rect x="492.8" y="533" width="0.1" height="15.0" fill="rgb(219,127,17)" rx="2" ry="2" />
<text text-anchor="" x="495.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (4 samples, 0.04%)</title><rect x="672.2" y="341" width="0.6" height="15.0" fill="rgb(225,47,20)" rx="2" ry="2" />
<text text-anchor="" x="675.24" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatasetiter_destroy (37 samples, 0.42%)</title><rect x="343.8" y="549" width="4.9" height="15.0" fill="rgb(225,59,48)" rx="2" ry="2" />
<text text-anchor="" x="346.83" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>journal_fsync.isra.6 (2 samples, 0.02%)</title><rect x="454.9" y="533" width="0.3" height="15.0" fill="rgb(240,21,2)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.45 (1 samples, 0.01%)</title><rect x="75.3" y="373" width="0.1" height="15.0" fill="rgb(206,228,28)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (3 samples, 0.03%)</title><rect x="674.9" y="453" width="0.4" height="15.0" fill="rgb(240,4,8)" rx="2" ry="2" />
<text text-anchor="" x="677.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_find (419 samples, 4.70%)</title><rect x="1111.3" y="629" width="55.5" height="15.0" fill="rgb(212,212,18)" rx="2" ry="2" />
<text text-anchor="" x="1114.34" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >query..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (25 samples, 0.28%)</title><rect x="304.8" y="245" width="3.3" height="15.0" fill="rgb(234,110,44)" rx="2" ry="2" />
<text text-anchor="" x="307.77" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.01%)</title><rect x="256.6" y="421" width="0.1" height="15.0" fill="rgb(211,210,52)" rx="2" ry="2" />
<text text-anchor="" x="259.57" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="258.4" y="517" width="0.2" height="15.0" fill="rgb(232,220,37)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_offsets (11 samples, 0.12%)</title><rect x="519.7" y="549" width="1.4" height="15.0" fill="rgb(212,131,15)" rx="2" ry="2" />
<text text-anchor="" x="522.69" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.01%)</title><rect x="119.5" y="421" width="0.1" height="15.0" fill="rgb(214,139,6)" rx="2" ry="2" />
<text text-anchor="" x="122.51" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_handle_irq (92 samples, 1.03%)</title><rect x="124.9" y="293" width="12.2" height="15.0" fill="rgb(238,72,35)" rx="2" ry="2" />
<text text-anchor="" x="127.94" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="440.6" y="501" width="0.2" height="15.0" fill="rgb(224,197,2)" rx="2" ry="2" />
<text text-anchor="" x="443.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (7 samples, 0.08%)</title><rect x="449.0" y="245" width="0.9" height="15.0" fill="rgb(219,21,17)" rx="2" ry="2" />
<text text-anchor="" x="451.97" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__block_commit_write.isra.23 (1 samples, 0.01%)</title><rect x="38.7" y="437" width="0.2" height="15.0" fill="rgb(234,71,9)" rx="2" ry="2" />
<text text-anchor="" x="41.74" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (9 samples, 0.10%)</title><rect x="620.6" y="469" width="1.2" height="15.0" fill="rgb(236,196,32)" rx="2" ry="2" />
<text text-anchor="" x="623.59" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="409.1" y="565" width="0.1" height="15.0" fill="rgb(217,194,28)" rx="2" ry="2" />
<text text-anchor="" x="412.12" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_init (2 samples, 0.02%)</title><rect x="271.1" y="533" width="0.3" height="15.0" fill="rgb(226,162,27)" rx="2" ry="2" />
<text text-anchor="" x="274.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (44 samples, 0.49%)</title><rect x="382.6" y="437" width="5.9" height="15.0" fill="rgb(252,1,4)" rx="2" ry="2" />
<text text-anchor="" x="385.63" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="1188.0" y="565" width="0.1" height="15.0" fill="rgb(244,104,33)" rx="2" ry="2" />
<text text-anchor="" x="1191.01" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (11 samples, 0.12%)</title><rect x="891.9" y="469" width="1.5" height="15.0" fill="rgb(239,169,23)" rx="2" ry="2" />
<text text-anchor="" x="894.92" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_disable_asynccancel (11 samples, 0.12%)</title><rect x="646.7" y="613" width="1.4" height="15.0" fill="rgb(224,208,27)" rx="2" ry="2" />
<text text-anchor="" x="649.68" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (1 samples, 0.01%)</title><rect x="665.9" y="309" width="0.1" height="15.0" fill="rgb(231,39,23)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (5 samples, 0.06%)</title><rect x="372.3" y="485" width="0.7" height="15.0" fill="rgb(239,215,24)" rx="2" ry="2" />
<text text-anchor="" x="375.30" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="316.8" y="437" width="0.2" height="15.0" fill="rgb(245,16,43)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>socket_send (57 samples, 0.64%)</title><rect x="1112.1" y="549" width="7.6" height="15.0" fill="rgb(254,40,8)" rx="2" ry="2" />
<text text-anchor="" x="1115.14" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_sendpkg (242 samples, 2.72%)</title><rect x="1120.9" y="581" width="32.0" height="15.0" fill="rgb(252,165,12)" rx="2" ry="2" />
<text text-anchor="" x="1123.88" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cl..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.01%)</title><rect x="631.4" y="341" width="0.2" height="15.0" fill="rgb(238,20,16)" rx="2" ry="2" />
<text text-anchor="" x="634.45" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>req_log (2 samples, 0.02%)</title><rect x="415.5" y="565" width="0.2" height="15.0" fill="rgb(231,7,41)" rx="2" ry="2" />
<text text-anchor="" x="418.47" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_send_skb (26 samples, 0.29%)</title><rect x="1115.4" y="373" width="3.5" height="15.0" fill="rgb(235,227,8)" rx="2" ry="2" />
<text text-anchor="" x="1118.45" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.01%)</title><rect x="310.5" y="197" width="0.1" height="15.0" fill="rgb(237,39,35)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdata_totext (2 samples, 0.02%)</title><rect x="72.8" y="613" width="0.2" height="15.0" fill="rgb(251,88,15)" rx="2" ry="2" />
<text text-anchor="" x="75.77" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (3 samples, 0.03%)</title><rect x="179.0" y="453" width="0.4" height="15.0" fill="rgb(246,19,23)" rx="2" ry="2" />
<text text-anchor="" x="181.97" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="497.8" y="501" width="0.2" height="15.0" fill="rgb(207,61,15)" rx="2" ry="2" />
<text text-anchor="" x="500.84" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free_rdataset_virtual_header (1 samples, 0.01%)</title><rect x="312.8" y="453" width="0.2" height="15.0" fill="rgb(209,145,34)" rx="2" ry="2" />
<text text-anchor="" x="315.85" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (297 samples, 3.33%)</title><rect x="39.3" y="629" width="39.3" height="15.0" fill="rgb(229,144,54)" rx="2" ry="2" />
<text text-anchor="" x="42.26" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[un..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="504.1" y="501" width="0.1" height="15.0" fill="rgb(208,98,15)" rx="2" ry="2" />
<text text-anchor="" x="507.06" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getsection (16 samples, 0.18%)</title><rect x="403.2" y="533" width="2.1" height="15.0" fill="rgb(228,159,40)" rx="2" ry="2" />
<text text-anchor="" x="406.16" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (48 samples, 0.54%)</title><rect x="83.8" y="325" width="6.3" height="15.0" fill="rgb(209,2,20)" rx="2" ry="2" />
<text text-anchor="" x="86.76" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (9 samples, 0.10%)</title><rect x="431.8" y="453" width="1.2" height="15.0" fill="rgb(233,114,41)" rx="2" ry="2" />
<text text-anchor="" x="434.76" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (8 samples, 0.09%)</title><rect x="623.2" y="485" width="1.1" height="15.0" fill="rgb(227,33,27)" rx="2" ry="2" />
<text text-anchor="" x="626.24" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mutex_lock_slowpath (1 samples, 0.01%)</title><rect x="389.3" y="421" width="0.1" height="15.0" fill="rgb(231,136,10)" rx="2" ry="2" />
<text text-anchor="" x="392.25" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (1 samples, 0.01%)</title><rect x="117.3" y="389" width="0.1" height="15.0" fill="rgb(236,11,28)" rx="2" ry="2" />
<text text-anchor="" x="120.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (1 samples, 0.01%)</title><rect x="1128.4" y="293" width="0.2" height="15.0" fill="rgb(246,173,9)" rx="2" ry="2" />
<text text-anchor="" x="1131.42" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>req_render (40 samples, 0.45%)</title><rect x="440.8" y="549" width="5.3" height="15.0" fill="rgb(217,80,7)" rx="2" ry="2" />
<text text-anchor="" x="443.76" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_put (4 samples, 0.04%)</title><rect x="411.0" y="549" width="0.5" height="15.0" fill="rgb(239,136,17)" rx="2" ry="2" />
<text text-anchor="" x="413.97" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (1 samples, 0.01%)</title><rect x="672.6" y="309" width="0.2" height="15.0" fill="rgb(248,164,7)" rx="2" ry="2" />
<text text-anchor="" x="675.63" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sink_down (1 samples, 0.01%)</title><rect x="399.2" y="549" width="0.1" height="15.0" fill="rgb(245,143,23)" rx="2" ry="2" />
<text text-anchor="" x="402.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tostruct_cname (1 samples, 0.01%)</title><rect x="287.8" y="517" width="0.2" height="15.0" fill="rgb(244,41,34)" rx="2" ry="2" />
<text text-anchor="" x="290.82" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="316.8" y="325" width="0.2" height="15.0" fill="rgb(213,196,25)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (2 samples, 0.02%)</title><rect x="680.6" y="453" width="0.2" height="15.0" fill="rgb(207,37,35)" rx="2" ry="2" />
<text text-anchor="" x="683.58" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.01%)</title><rect x="665.9" y="85" width="0.1" height="15.0" fill="rgb(217,174,31)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__rdatalist_disassociate (1 samples, 0.01%)</title><rect x="280.0" y="501" width="0.1" height="15.0" fill="rgb(241,68,49)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="422.1" y="453" width="0.1" height="15.0" fill="rgb(212,83,6)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="407.1" y="485" width="0.2" height="15.0" fill="rgb(207,10,49)" rx="2" ry="2" />
<text text-anchor="" x="410.13" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatatype_totext (4 samples, 0.04%)</title><rect x="529.9" y="597" width="0.5" height="15.0" fill="rgb(240,178,34)" rx="2" ry="2" />
<text text-anchor="" x="532.88" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_confirm (1 samples, 0.01%)</title><rect x="1151.5" y="309" width="0.1" height="15.0" fill="rgb(208,112,22)" rx="2" ry="2" />
<text text-anchor="" x="1154.47" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zt_find (1 samples, 0.01%)</title><rect x="54.5" y="613" width="0.1" height="15.0" fill="rgb(243,29,36)" rx="2" ry="2" />
<text text-anchor="" x="57.49" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="592.4" y="501" width="0.1" height="15.0" fill="rgb(232,65,41)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (1 samples, 0.01%)</title><rect x="529.5" y="485" width="0.1" height="15.0" fill="rgb(220,132,18)" rx="2" ry="2" />
<text text-anchor="" x="532.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_append_data.isra.47 (8 samples, 0.09%)</title><rect x="1112.9" y="373" width="1.1" height="15.0" fill="rgb(237,204,7)" rx="2" ry="2" />
<text text-anchor="" x="1115.93" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pending_event (5 samples, 0.06%)</title><rect x="97.5" y="421" width="0.7" height="15.0" fill="rgb(245,170,48)" rx="2" ry="2" />
<text text-anchor="" x="100.53" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arch_trigger_all_cpu_backtrace_handler (1 samples, 0.01%)</title><rect x="685.7" y="341" width="0.2" height="15.0" fill="rgb(253,131,0)" rx="2" ry="2" />
<text text-anchor="" x="688.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_init (1 samples, 0.01%)</title><rect x="438.5" y="517" width="0.1" height="15.0" fill="rgb(252,1,52)" rx="2" ry="2" />
<text text-anchor="" x="441.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="310.5" y="181" width="0.1" height="15.0" fill="rgb(226,198,34)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="1140.1" y="277" width="0.1" height="15.0" fill="rgb(254,78,32)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_acl_match (9 samples, 0.10%)</title><rect x="498.2" y="549" width="1.2" height="15.0" fill="rgb(243,102,45)" rx="2" ry="2" />
<text text-anchor="" x="501.23" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.01%)</title><rect x="43.0" y="501" width="0.1" height="15.0" fill="rgb(249,175,14)" rx="2" ry="2" />
<text text-anchor="" x="45.97" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fsnotify_parent (1 samples, 0.01%)</title><rect x="299.9" y="405" width="0.1" height="15.0" fill="rgb(250,92,8)" rx="2" ry="2" />
<text text-anchor="" x="302.87" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="451.8" y="549" width="0.1" height="15.0" fill="rgb(245,41,18)" rx="2" ry="2" />
<text text-anchor="" x="454.76" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_mempool_getallocated (1 samples, 0.01%)</title><rect x="314.3" y="485" width="0.1" height="15.0" fill="rgb(244,91,34)" rx="2" ry="2" />
<text text-anchor="" x="317.30" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.04%)</title><rect x="642.7" y="613" width="0.5" height="15.0" fill="rgb(239,122,53)" rx="2" ry="2" />
<text text-anchor="" x="645.71" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_enable_asynccancel (2 samples, 0.02%)</title><rect x="353.8" y="533" width="0.2" height="15.0" fill="rgb(219,178,6)" rx="2" ry="2" />
<text text-anchor="" x="356.76" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_poke.isra.12 (108 samples, 1.21%)</title><rect x="376.5" y="565" width="14.3" height="15.0" fill="rgb(217,10,30)" rx="2" ry="2" />
<text text-anchor="" x="379.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_sample_event_took (2 samples, 0.02%)</title><rect x="146.3" y="293" width="0.2" height="15.0" fill="rgb(239,152,44)" rx="2" ry="2" />
<text text-anchor="" x="149.26" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (423 samples, 4.75%)</title><rect x="119.6" y="389" width="56.1" height="15.0" fill="rgb(252,101,22)" rx="2" ry="2" />
<text text-anchor="" x="122.64" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (2 samples, 0.02%)</title><rect x="583.1" y="581" width="0.3" height="15.0" fill="rgb(227,26,43)" rx="2" ry="2" />
<text text-anchor="" x="586.12" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.01%)</title><rect x="321.9" y="341" width="0.1" height="15.0" fill="rgb(217,23,36)" rx="2" ry="2" />
<text text-anchor="" x="324.85" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.01%)</title><rect x="631.4" y="309" width="0.2" height="15.0" fill="rgb(206,141,26)" rx="2" ry="2" />
<text text-anchor="" x="634.45" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_hrtimer (1 samples, 0.01%)</title><rect x="477.6" y="453" width="0.1" height="15.0" fill="rgb(212,124,1)" rx="2" ry="2" />
<text text-anchor="" x="480.58" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (6 samples, 0.07%)</title><rect x="1152.1" y="469" width="0.8" height="15.0" fill="rgb(254,157,23)" rx="2" ry="2" />
<text text-anchor="" x="1155.13" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.02%)</title><rect x="387.0" y="389" width="0.3" height="15.0" fill="rgb(215,51,29)" rx="2" ry="2" />
<text text-anchor="" x="390.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="651.6" y="549" width="0.1" height="15.0" fill="rgb(232,213,50)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__udp_queue_rcv_skb (1 samples, 0.01%)</title><rect x="665.9" y="245" width="0.1" height="15.0" fill="rgb(216,116,35)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_setquerytsig (1 samples, 0.01%)</title><rect x="47.2" y="613" width="0.1" height="15.0" fill="rgb(219,117,9)" rx="2" ry="2" />
<text text-anchor="" x="50.21" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_sockaddr_format (24 samples, 0.27%)</title><rect x="405.9" y="565" width="3.2" height="15.0" fill="rgb(242,212,35)" rx="2" ry="2" />
<text text-anchor="" x="408.94" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (2 samples, 0.02%)</title><rect x="463.5" y="549" width="0.3" height="15.0" fill="rgb(217,133,44)" rx="2" ry="2" />
<text text-anchor="" x="466.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.01%)</title><rect x="1184.2" y="373" width="0.1" height="15.0" fill="rgb(235,102,12)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.01%)</title><rect x="1140.1" y="85" width="0.1" height="15.0" fill="rgb(210,130,9)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (1 samples, 0.01%)</title><rect x="341.6" y="341" width="0.1" height="15.0" fill="rgb(233,190,34)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (2 samples, 0.02%)</title><rect x="1174.6" y="597" width="0.3" height="15.0" fill="rgb(231,191,34)" rx="2" ry="2" />
<text text-anchor="" x="1177.64" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_detach (1 samples, 0.01%)</title><rect x="315.1" y="501" width="0.1" height="15.0" fill="rgb(237,32,7)" rx="2" ry="2" />
<text text-anchor="" x="318.10" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq (3 samples, 0.03%)</title><rect x="891.5" y="469" width="0.4" height="15.0" fill="rgb(248,148,38)" rx="2" ry="2" />
<text text-anchor="" x="894.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (15 samples, 0.17%)</title><rect x="891.4" y="501" width="2.0" height="15.0" fill="rgb(206,187,23)" rx="2" ry="2" />
<text text-anchor="" x="894.39" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.01%)</title><rect x="507.8" y="293" width="0.1" height="15.0" fill="rgb(212,143,24)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="311.4" y="453" width="0.1" height="15.0" fill="rgb(248,59,23)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="277.2" y="549" width="0.2" height="15.0" fill="rgb(224,176,35)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (2 samples, 0.02%)</title><rect x="569.3" y="501" width="0.3" height="15.0" fill="rgb(239,183,48)" rx="2" ry="2" />
<text text-anchor="" x="572.34" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_towire (28 samples, 0.31%)</title><rect x="503.3" y="549" width="3.7" height="15.0" fill="rgb(231,139,2)" rx="2" ry="2" />
<text text-anchor="" x="506.27" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>r1_bio_write_done (1 samples, 0.01%)</title><rect x="32.8" y="389" width="0.1" height="15.0" fill="rgb(238,191,6)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_current (1 samples, 0.01%)</title><rect x="73.0" y="613" width="0.2" height="15.0" fill="rgb(224,63,16)" rx="2" ry="2" />
<text text-anchor="" x="76.03" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_tostruct (4 samples, 0.04%)</title><rect x="1188.5" y="597" width="0.6" height="15.0" fill="rgb(244,193,8)" rx="2" ry="2" />
<text text-anchor="" x="1191.54" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.01%)</title><rect x="631.4" y="277" width="0.2" height="15.0" fill="rgb(210,208,23)" rx="2" ry="2" />
<text text-anchor="" x="634.45" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_towire (2 samples, 0.02%)</title><rect x="1153.6" y="565" width="0.2" height="15.0" fill="rgb(234,104,1)" rx="2" ry="2" />
<text text-anchor="" x="1156.58" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__snprintf_chk@plt (1 samples, 0.01%)</title><rect x="1189.7" y="613" width="0.2" height="15.0" fill="rgb(245,209,3)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pollwake (9 samples, 0.10%)</title><rect x="176.5" y="357" width="1.1" height="15.0" fill="rgb(232,164,54)" rx="2" ry="2" />
<text text-anchor="" x="179.45" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (5 samples, 0.06%)</title><rect x="145.6" y="293" width="0.7" height="15.0" fill="rgb(227,103,3)" rx="2" ry="2" />
<text text-anchor="" x="148.60" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (1 samples, 0.01%)</title><rect x="37.4" y="565" width="0.1" height="15.0" fill="rgb(224,186,53)" rx="2" ry="2" />
<text text-anchor="" x="40.41" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (12 samples, 0.13%)</title><rect x="671.7" y="453" width="1.6" height="15.0" fill="rgb(254,97,26)" rx="2" ry="2" />
<text text-anchor="" x="674.71" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (83 samples, 0.93%)</title><rect x="1140.7" y="357" width="11.0" height="15.0" fill="rgb(206,92,36)" rx="2" ry="2" />
<text text-anchor="" x="1143.74" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iptable_filter_hook (1 samples, 0.01%)</title><rect x="507.8" y="261" width="0.1" height="15.0" fill="rgb(248,162,35)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_send (68 samples, 0.76%)</title><rect x="1111.3" y="597" width="9.0" height="15.0" fill="rgb(216,144,21)" rx="2" ry="2" />
<text text-anchor="" x="1114.34" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (73 samples, 0.82%)</title><rect x="1141.7" y="325" width="9.6" height="15.0" fill="rgb(214,109,48)" rx="2" ry="2" />
<text text-anchor="" x="1144.67" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (1 samples, 0.01%)</title><rect x="454.8" y="485" width="0.1" height="15.0" fill="rgb(242,161,48)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_interrupt (1 samples, 0.01%)</title><rect x="314.6" y="437" width="0.1" height="15.0" fill="rgb(251,12,16)" rx="2" ry="2" />
<text text-anchor="" x="317.57" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (1 samples, 0.01%)</title><rect x="454.8" y="293" width="0.1" height="15.0" fill="rgb(249,207,31)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (5 samples, 0.06%)</title><rect x="621.8" y="469" width="0.6" height="15.0" fill="rgb(224,219,43)" rx="2" ry="2" />
<text text-anchor="" x="624.78" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (2 samples, 0.02%)</title><rect x="525.9" y="549" width="0.3" height="15.0" fill="rgb(230,208,46)" rx="2" ry="2" />
<text text-anchor="" x="528.91" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_request_destroy (1 samples, 0.01%)</title><rect x="402.4" y="565" width="0.1" height="15.0" fill="rgb(226,0,40)" rx="2" ry="2" />
<text text-anchor="" x="405.36" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.02%)</title><rect x="314.4" y="453" width="0.3" height="15.0" fill="rgb(252,190,12)" rx="2" ry="2" />
<text text-anchor="" x="317.43" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>allrdatasets (19 samples, 0.21%)</title><rect x="326.4" y="549" width="2.5" height="15.0" fill="rgb(252,181,24)" rx="2" ry="2" />
<text text-anchor="" x="329.35" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_attach (1 samples, 0.01%)</title><rect x="67.9" y="613" width="0.1" height="15.0" fill="rgb(237,15,3)" rx="2" ry="2" />
<text text-anchor="" x="70.87" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stats_increment (3 samples, 0.03%)</title><rect x="317.3" y="517" width="0.4" height="15.0" fill="rgb(239,141,11)" rx="2" ry="2" />
<text text-anchor="" x="320.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.01%)</title><rect x="279.3" y="469" width="0.2" height="15.0" fill="rgb(209,122,40)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="601.1" y="533" width="0.2" height="15.0" fill="rgb(225,124,2)" rx="2" ry="2" />
<text text-anchor="" x="604.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.01%)</title><rect x="454.3" y="229" width="0.1" height="15.0" fill="rgb(231,94,8)" rx="2" ry="2" />
<text text-anchor="" x="457.27" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_caseequal (2 samples, 0.02%)</title><rect x="505.7" y="517" width="0.2" height="15.0" fill="rgb(217,160,2)" rx="2" ry="2" />
<text text-anchor="" x="508.65" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="319.2" y="501" width="0.1" height="15.0" fill="rgb(250,72,50)" rx="2" ry="2" />
<text text-anchor="" x="322.20" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_send (1 samples, 0.01%)</title><rect x="55.0" y="613" width="0.2" height="15.0" fill="rgb(250,200,11)" rx="2" ry="2" />
<text text-anchor="" x="58.02" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="592.4" y="469" width="0.1" height="15.0" fill="rgb(217,14,35)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_writepages (2 samples, 0.02%)</title><rect x="454.9" y="357" width="0.3" height="15.0" fill="rgb(245,144,3)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="82.3" y="469" width="0.1" height="15.0" fill="rgb(238,102,54)" rx="2" ry="2" />
<text text-anchor="" x="85.30" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run_list (5 samples, 0.06%)</title><rect x="97.5" y="437" width="0.7" height="15.0" fill="rgb(219,224,0)" rx="2" ry="2" />
<text text-anchor="" x="100.53" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (1 samples, 0.01%)</title><rect x="1113.9" y="325" width="0.1" height="15.0" fill="rgb(230,100,39)" rx="2" ry="2" />
<text text-anchor="" x="1116.86" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (2 samples, 0.02%)</title><rect x="390.3" y="453" width="0.3" height="15.0" fill="rgb(253,169,24)" rx="2" ry="2" />
<text text-anchor="" x="393.31" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.01%)</title><rect x="1184.2" y="389" width="0.1" height="15.0" fill="rgb(228,11,52)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (1 samples, 0.01%)</title><rect x="258.4" y="389" width="0.2" height="15.0" fill="rgb(249,81,0)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>submit_bio (1 samples, 0.01%)</title><rect x="455.1" y="325" width="0.1" height="15.0" fill="rgb(237,95,6)" rx="2" ry="2" />
<text text-anchor="" x="458.07" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_datagram_locked (1 samples, 0.01%)</title><rect x="296.3" y="341" width="0.1" height="15.0" fill="rgb(215,125,40)" rx="2" ry="2" />
<text text-anchor="" x="299.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_sched_out (1 samples, 0.01%)</title><rect x="82.2" y="469" width="0.1" height="15.0" fill="rgb(213,122,9)" rx="2" ry="2" />
<text text-anchor="" x="85.17" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.01%)</title><rect x="592.4" y="421" width="0.1" height="15.0" fill="rgb(224,57,6)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="391.5" y="517" width="0.1" height="15.0" fill="rgb(236,70,9)" rx="2" ry="2" />
<text text-anchor="" x="394.50" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="1151.6" y="245" width="0.1" height="15.0" fill="rgb(214,3,12)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_wakeup (22 samples, 0.25%)</title><rect x="175.7" y="405" width="2.9" height="15.0" fill="rgb(210,224,22)" rx="2" ry="2" />
<text text-anchor="" x="178.66" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (1 samples, 0.01%)</title><rect x="1111.2" y="613" width="0.1" height="15.0" fill="rgb(249,3,37)" rx="2" ry="2" />
<text text-anchor="" x="1114.21" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_entity (1 samples, 0.01%)</title><rect x="99.1" y="469" width="0.2" height="15.0" fill="rgb(213,158,17)" rx="2" ry="2" />
<text text-anchor="" x="102.12" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_task_sched_in (1,456 samples, 16.34%)</title><rect x="684.0" y="485" width="192.8" height="15.0" fill="rgb(217,108,19)" rx="2" ry="2" />
<text text-anchor="" x="687.02" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__perf_event_task_sched_in</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_and (1 samples, 0.01%)</title><rect x="886.6" y="469" width="0.2" height="15.0" fill="rgb(211,224,31)" rx="2" ry="2" />
<text text-anchor="" x="889.62" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_senddone_event (1 samples, 0.01%)</title><rect x="1169.7" y="629" width="0.2" height="15.0" fill="rgb(251,20,42)" rx="2" ry="2" />
<text text-anchor="" x="1172.74" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="375.5" y="469" width="0.1" height="15.0" fill="rgb(250,67,54)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="443.1" y="437" width="0.2" height="15.0" fill="rgb(242,20,24)" rx="2" ry="2" />
<text text-anchor="" x="446.15" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mark_wake_futex (1 samples, 0.01%)</title><rect x="645.4" y="533" width="0.1" height="15.0" fill="rgb(227,164,7)" rx="2" ry="2" />
<text text-anchor="" x="648.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (4 samples, 0.04%)</title><rect x="624.3" y="501" width="0.5" height="15.0" fill="rgb(207,23,48)" rx="2" ry="2" />
<text text-anchor="" x="627.30" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_poll (2 samples, 0.02%)</title><rect x="37.1" y="581" width="0.3" height="15.0" fill="rgb(242,45,26)" rx="2" ry="2" />
<text text-anchor="" x="40.15" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="1188.4" y="549" width="0.1" height="15.0" fill="rgb(208,7,32)" rx="2" ry="2" />
<text text-anchor="" x="1191.41" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_fsync (2 samples, 0.02%)</title><rect x="454.9" y="501" width="0.3" height="15.0" fill="rgb(235,106,54)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (8 samples, 0.09%)</title><rect x="82.4" y="469" width="1.1" height="15.0" fill="rgb(219,206,34)" rx="2" ry="2" />
<text text-anchor="" x="85.43" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (8 samples, 0.09%)</title><rect x="892.3" y="357" width="1.1" height="15.0" fill="rgb(240,130,12)" rx="2" ry="2" />
<text text-anchor="" x="895.32" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (2 samples, 0.02%)</title><rect x="97.7" y="341" width="0.2" height="15.0" fill="rgb(224,114,20)" rx="2" ry="2" />
<text text-anchor="" x="100.66" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (2 samples, 0.02%)</title><rect x="680.6" y="469" width="0.2" height="15.0" fill="rgb(235,212,22)" rx="2" ry="2" />
<text text-anchor="" x="683.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addrrset (22 samples, 0.25%)</title><rect x="319.5" y="533" width="2.9" height="15.0" fill="rgb(224,93,26)" rx="2" ry="2" />
<text text-anchor="" x="322.47" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_softirq_done (1 samples, 0.01%)</title><rect x="32.8" y="501" width="0.1" height="15.0" fill="rgb(215,223,0)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_validatezonedb (7 samples, 0.08%)</title><rect x="1170.7" y="549" width="0.9" height="15.0" fill="rgb(254,209,40)" rx="2" ry="2" />
<text text-anchor="" x="1173.67" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="375.5" y="373" width="0.1" height="15.0" fill="rgb(252,39,36)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="309.1" y="309" width="0.2" height="15.0" fill="rgb(219,194,22)" rx="2" ry="2" />
<text text-anchor="" x="312.14" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (8 samples, 0.09%)</title><rect x="346.3" y="501" width="1.1" height="15.0" fill="rgb(245,28,21)" rx="2" ry="2" />
<text text-anchor="" x="349.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>source_load (1 samples, 0.01%)</title><rect x="255.2" y="485" width="0.2" height="15.0" fill="rgb(226,177,43)" rx="2" ry="2" />
<text text-anchor="" x="258.24" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (1 samples, 0.01%)</title><rect x="399.7" y="565" width="0.1" height="15.0" fill="rgb(214,13,44)" rx="2" ry="2" />
<text text-anchor="" x="402.71" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mpage_submit_page (1 samples, 0.01%)</title><rect x="325.4" y="341" width="0.2" height="15.0" fill="rgb(247,119,20)" rx="2" ry="2" />
<text text-anchor="" x="328.43" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_copy (2 samples, 0.02%)</title><rect x="1174.6" y="613" width="0.3" height="15.0" fill="rgb(220,123,34)" rx="2" ry="2" />
<text text-anchor="" x="1177.64" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_zone_attach (2 samples, 0.02%)</title><rect x="496.5" y="485" width="0.3" height="15.0" fill="rgb(254,132,51)" rx="2" ry="2" />
<text text-anchor="" x="499.51" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__udp_queue_rcv_skb (1 samples, 0.01%)</title><rect x="1158.6" y="293" width="0.1" height="15.0" fill="rgb(251,160,27)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_reset (1 samples, 0.01%)</title><rect x="1156.2" y="533" width="0.2" height="15.0" fill="rgb(220,191,16)" rx="2" ry="2" />
<text text-anchor="" x="1159.23" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (1 samples, 0.01%)</title><rect x="118.5" y="405" width="0.1" height="15.0" fill="rgb(242,18,25)" rx="2" ry="2" />
<text text-anchor="" x="121.45" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (7 samples, 0.08%)</title><rect x="672.0" y="389" width="0.9" height="15.0" fill="rgb(215,69,17)" rx="2" ry="2" />
<text text-anchor="" x="674.97" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.01%)</title><rect x="665.9" y="341" width="0.1" height="15.0" fill="rgb(250,214,30)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="544.2" y="565" width="0.1" height="15.0" fill="rgb(233,44,6)" rx="2" ry="2" />
<text text-anchor="" x="547.18" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_conntrack_find_get (2 samples, 0.02%)</title><rect x="1135.7" y="293" width="0.3" height="15.0" fill="rgb(240,87,9)" rx="2" ry="2" />
<text text-anchor="" x="1138.71" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>block_write_end (1 samples, 0.01%)</title><rect x="38.7" y="453" width="0.2" height="15.0" fill="rgb(221,83,44)" rx="2" ry="2" />
<text text-anchor="" x="41.74" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_flush_plug_list (1 samples, 0.01%)</title><rect x="326.1" y="341" width="0.1" height="15.0" fill="rgb(231,191,2)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_value_locked (7 samples, 0.08%)</title><rect x="897.2" y="533" width="0.9" height="15.0" fill="rgb(213,162,17)" rx="2" ry="2" />
<text text-anchor="" x="900.22" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>migrate_task_rq_fair (1 samples, 0.01%)</title><rect x="383.7" y="325" width="0.1" height="15.0" fill="rgb(215,109,50)" rx="2" ry="2" />
<text text-anchor="" x="386.69" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="582.7" y="517" width="0.2" height="15.0" fill="rgb(243,143,16)" rx="2" ry="2" />
<text text-anchor="" x="585.72" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_buffer_getuint32 (1 samples, 0.01%)</title><rect x="405.1" y="517" width="0.2" height="15.0" fill="rgb(228,189,5)" rx="2" ry="2" />
<text text-anchor="" x="408.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>attach (1 samples, 0.01%)</title><rect x="289.3" y="501" width="0.1" height="15.0" fill="rgb(248,179,15)" rx="2" ry="2" />
<text text-anchor="" x="292.28" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="180.6" y="517" width="0.1" height="15.0" fill="rgb(211,134,23)" rx="2" ry="2" />
<text text-anchor="" x="183.56" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (2 samples, 0.02%)</title><rect x="98.6" y="421" width="0.3" height="15.0" fill="rgb(225,68,9)" rx="2" ry="2" />
<text text-anchor="" x="101.59" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_once (4 samples, 0.04%)</title><rect x="1110.4" y="629" width="0.5" height="15.0" fill="rgb(208,157,7)" rx="2" ry="2" />
<text text-anchor="" x="1113.42" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arch_local_save_flags (1 samples, 0.01%)</title><rect x="32.6" y="565" width="0.2" height="15.0" fill="rgb(238,114,7)" rx="2" ry="2" />
<text text-anchor="" x="35.64" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (4 samples, 0.04%)</title><rect x="315.8" y="485" width="0.5" height="15.0" fill="rgb(233,38,23)" rx="2" ry="2" />
<text text-anchor="" x="318.76" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="258.2" y="485" width="0.1" height="15.0" fill="rgb(208,207,13)" rx="2" ry="2" />
<text text-anchor="" x="261.16" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>transform_dyntype (16 samples, 0.18%)</title><rect x="1187.5" y="613" width="2.1" height="15.0" fill="rgb(223,104,52)" rx="2" ry="2" />
<text text-anchor="" x="1190.48" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_reset (1 samples, 0.01%)</title><rect x="492.8" y="565" width="0.1" height="15.0" fill="rgb(223,215,27)" rx="2" ry="2" />
<text text-anchor="" x="495.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tostruct_in_dynalist (3 samples, 0.03%)</title><rect x="1188.7" y="581" width="0.4" height="15.0" fill="rgb(252,201,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.68" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (54 samples, 0.61%)</title><rect x="1112.3" y="501" width="7.1" height="15.0" fill="rgb(237,190,15)" rx="2" ry="2" />
<text text-anchor="" x="1115.27" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="1140.1" y="117" width="0.1" height="15.0" fill="rgb(245,45,36)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>passthru_features_check (1 samples, 0.01%)</title><rect x="449.8" y="197" width="0.1" height="15.0" fill="rgb(206,7,28)" rx="2" ry="2" />
<text text-anchor="" x="452.77" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_process_callbacks (2 samples, 0.02%)</title><rect x="671.2" y="437" width="0.2" height="15.0" fill="rgb(208,161,32)" rx="2" ry="2" />
<text text-anchor="" x="674.18" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (57 samples, 0.64%)</title><rect x="673.3" y="501" width="7.5" height="15.0" fill="rgb(213,23,52)" rx="2" ry="2" />
<text text-anchor="" x="676.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raid1_unplug (1 samples, 0.01%)</title><rect x="454.9" y="309" width="0.2" height="15.0" fill="rgb(241,120,41)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="287.2" y="373" width="0.1" height="15.0" fill="rgb(244,136,15)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.01%)</title><rect x="886.5" y="421" width="0.1" height="15.0" fill="rgb(253,57,3)" rx="2" ry="2" />
<text text-anchor="" x="889.49" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (5 samples, 0.06%)</title><rect x="1115.4" y="293" width="0.7" height="15.0" fill="rgb(216,226,22)" rx="2" ry="2" />
<text text-anchor="" x="1118.45" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.80 (2 samples, 0.02%)</title><rect x="575.2" y="485" width="0.2" height="15.0" fill="rgb(226,158,20)" rx="2" ry="2" />
<text text-anchor="" x="578.17" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock@plt (5 samples, 0.06%)</title><rect x="70.1" y="613" width="0.7" height="15.0" fill="rgb(206,55,23)" rx="2" ry="2" />
<text text-anchor="" x="73.12" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_get_from_db (4 samples, 0.04%)</title><rect x="409.4" y="565" width="0.5" height="15.0" fill="rgb(208,215,26)" rx="2" ry="2" />
<text text-anchor="" x="412.38" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver (1 samples, 0.01%)</title><rect x="665.9" y="325" width="0.1" height="15.0" fill="rgb(219,153,35)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="180.6" y="501" width="0.1" height="15.0" fill="rgb(218,222,52)" rx="2" ry="2" />
<text text-anchor="" x="183.56" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_local_out (5 samples, 0.06%)</title><rect x="1115.4" y="341" width="0.7" height="15.0" fill="rgb(247,2,3)" rx="2" ry="2" />
<text text-anchor="" x="1118.45" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="310.5" y="357" width="0.1" height="15.0" fill="rgb(227,114,14)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hash_futex (1 samples, 0.01%)</title><rect x="246.0" y="549" width="0.1" height="15.0" fill="rgb(237,143,0)" rx="2" ry="2" />
<text text-anchor="" x="248.97" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_additionaldata (12 samples, 0.13%)</title><rect x="1168.0" y="533" width="1.6" height="15.0" fill="rgb(227,123,50)" rx="2" ry="2" />
<text text-anchor="" x="1171.02" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_puttemprdataset (9 samples, 0.10%)</title><rect x="494.5" y="501" width="1.2" height="15.0" fill="rgb(241,157,10)" rx="2" ry="2" />
<text text-anchor="" x="497.53" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (6 samples, 0.07%)</title><rect x="453.9" y="501" width="0.8" height="15.0" fill="rgb(212,211,54)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detachnode (1 samples, 0.01%)</title><rect x="1170.0" y="533" width="0.1" height="15.0" fill="rgb(215,88,14)" rx="2" ry="2" />
<text text-anchor="" x="1173.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (1 samples, 0.01%)</title><rect x="1122.7" y="533" width="0.2" height="15.0" fill="rgb(221,85,27)" rx="2" ry="2" />
<text text-anchor="" x="1125.73" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ghes_notify_nmi (1 samples, 0.01%)</title><rect x="627.1" y="325" width="0.1" height="15.0" fill="rgb(214,59,12)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>effective_load.isra.45 (4 samples, 0.04%)</title><rect x="611.3" y="517" width="0.6" height="15.0" fill="rgb(233,92,49)" rx="2" ry="2" />
<text text-anchor="" x="614.32" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sock_recv_timestamp (4 samples, 0.04%)</title><rect x="365.3" y="405" width="0.5" height="15.0" fill="rgb(241,193,37)" rx="2" ry="2" />
<text text-anchor="" x="368.28" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (4 samples, 0.04%)</title><rect x="375.9" y="565" width="0.5" height="15.0" fill="rgb(227,128,52)" rx="2" ry="2" />
<text text-anchor="" x="378.88" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (1 samples, 0.01%)</title><rect x="665.9" y="149" width="0.1" height="15.0" fill="rgb(210,152,20)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (86 samples, 0.97%)</title><rect x="360.6" y="469" width="11.4" height="15.0" fill="rgb(205,175,16)" rx="2" ry="2" />
<text text-anchor="" x="363.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="375.1" y="453" width="0.1" height="15.0" fill="rgb(230,163,6)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="492.4" y="517" width="0.1" height="15.0" fill="rgb(223,91,38)" rx="2" ry="2" />
<text text-anchor="" x="495.41" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_validatezonedb (9 samples, 0.10%)</title><rect x="498.2" y="581" width="1.2" height="15.0" fill="rgb(215,224,18)" rx="2" ry="2" />
<text text-anchor="" x="501.23" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="492.4" y="437" width="0.1" height="15.0" fill="rgb(209,220,29)" rx="2" ry="2" />
<text text-anchor="" x="495.41" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="422.1" y="533" width="0.1" height="15.0" fill="rgb(232,210,37)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (7 samples, 0.08%)</title><rect x="464.2" y="517" width="0.9" height="15.0" fill="rgb(239,61,45)" rx="2" ry="2" />
<text text-anchor="" x="467.20" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dump_done (1 samples, 0.01%)</title><rect x="326.1" y="565" width="0.1" height="15.0" fill="rgb(225,8,4)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_msghdr_from_user (20 samples, 0.22%)</title><rect x="357.2" y="469" width="2.7" height="15.0" fill="rgb(249,130,43)" rx="2" ry="2" />
<text text-anchor="" x="360.21" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_disable_all (7 samples, 0.08%)</title><rect x="669.7" y="421" width="0.9" height="15.0" fill="rgb(216,203,48)" rx="2" ry="2" />
<text text-anchor="" x="672.72" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output (73 samples, 0.82%)</title><rect x="1141.7" y="341" width="9.6" height="15.0" fill="rgb(206,94,34)" rx="2" ry="2" />
<text text-anchor="" x="1144.67" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (5 samples, 0.06%)</title><rect x="1185.8" y="613" width="0.6" height="15.0" fill="rgb(218,108,50)" rx="2" ry="2" />
<text text-anchor="" x="1188.76" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_confirm (1 samples, 0.01%)</title><rect x="449.9" y="277" width="0.1" height="15.0" fill="rgb(235,182,53)" rx="2" ry="2" />
<text text-anchor="" x="452.90" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (1 samples, 0.01%)</title><rect x="646.3" y="501" width="0.1" height="15.0" fill="rgb(238,201,10)" rx="2" ry="2" />
<text text-anchor="" x="649.28" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>validate_xmit_skb_list (1 samples, 0.01%)</title><rect x="1142.7" y="245" width="0.2" height="15.0" fill="rgb(227,67,16)" rx="2" ry="2" />
<text text-anchor="" x="1145.73" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (2 samples, 0.02%)</title><rect x="673.0" y="373" width="0.3" height="15.0" fill="rgb(245,87,28)" rx="2" ry="2" />
<text text-anchor="" x="676.03" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (1 samples, 0.01%)</title><rect x="375.0" y="501" width="0.1" height="15.0" fill="rgb(205,11,14)" rx="2" ry="2" />
<text text-anchor="" x="377.95" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1 samples, 0.01%)</title><rect x="341.6" y="357" width="0.1" height="15.0" fill="rgb(210,193,11)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="1151.6" y="181" width="0.1" height="15.0" fill="rgb(242,148,1)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (4 samples, 0.04%)</title><rect x="643.6" y="549" width="0.6" height="15.0" fill="rgb(226,107,14)" rx="2" ry="2" />
<text text-anchor="" x="646.63" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="342.8" y="469" width="0.1" height="15.0" fill="rgb(254,16,33)" rx="2" ry="2" />
<text text-anchor="" x="345.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="497.8" y="453" width="0.2" height="15.0" fill="rgb(233,41,0)" rx="2" ry="2" />
<text text-anchor="" x="500.84" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.15 (1 samples, 0.01%)</title><rect x="651.6" y="517" width="0.1" height="15.0" fill="rgb(237,8,49)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="1121.8" y="485" width="0.1" height="15.0" fill="rgb(238,145,40)" rx="2" ry="2" />
<text text-anchor="" x="1124.80" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.01%)</title><rect x="454.8" y="261" width="0.1" height="15.0" fill="rgb(231,53,25)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="507.8" y="389" width="0.1" height="15.0" fill="rgb(250,55,15)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_write_space (1 samples, 0.01%)</title><rect x="310.5" y="213" width="0.1" height="15.0" fill="rgb(227,144,39)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_findrdataset (1 samples, 0.01%)</title><rect x="319.3" y="517" width="0.2" height="15.0" fill="rgb(242,126,8)" rx="2" ry="2" />
<text text-anchor="" x="322.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipt_do_table (1 samples, 0.01%)</title><rect x="893.0" y="229" width="0.1" height="15.0" fill="rgb(209,73,43)" rx="2" ry="2" />
<text text-anchor="" x="895.98" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1185.1" y="565" width="0.1" height="15.0" fill="rgb(233,218,34)" rx="2" ry="2" />
<text text-anchor="" x="1188.10" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_write_end (2 samples, 0.02%)</title><rect x="38.6" y="469" width="0.3" height="15.0" fill="rgb(235,130,23)" rx="2" ry="2" />
<text text-anchor="" x="41.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_view_detach (1 samples, 0.01%)</title><rect x="314.7" y="517" width="0.1" height="15.0" fill="rgb(212,138,37)" rx="2" ry="2" />
<text text-anchor="" x="317.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wait (139 samples, 1.56%)</title><rect x="81.8" y="549" width="18.4" height="15.0" fill="rgb(244,154,13)" rx="2" ry="2" />
<text text-anchor="" x="84.77" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="440.5" y="501" width="0.1" height="15.0" fill="rgb(211,201,38)" rx="2" ry="2" />
<text text-anchor="" x="443.50" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_netaddr_totext (10 samples, 0.11%)</title><rect x="407.8" y="533" width="1.3" height="15.0" fill="rgb(234,173,36)" rx="2" ry="2" />
<text text-anchor="" x="410.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (3 samples, 0.03%)</title><rect x="432.4" y="389" width="0.4" height="15.0" fill="rgb(237,113,29)" rx="2" ry="2" />
<text text-anchor="" x="435.42" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_findext (7 samples, 0.08%)</title><rect x="285.2" y="533" width="0.9" height="15.0" fill="rgb(225,63,0)" rx="2" ry="2" />
<text text-anchor="" x="288.17" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (4 samples, 0.04%)</title><rect x="643.6" y="597" width="0.6" height="15.0" fill="rgb(229,164,27)" rx="2" ry="2" />
<text text-anchor="" x="646.63" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_file_xsputn (5 samples, 0.06%)</title><rect x="80.7" y="613" width="0.7" height="15.0" fill="rgb(228,113,27)" rx="2" ry="2" />
<text text-anchor="" x="83.71" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (2 samples, 0.02%)</title><rect x="347.4" y="501" width="0.3" height="15.0" fill="rgb(243,181,25)" rx="2" ry="2" />
<text text-anchor="" x="350.41" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_generic_getfrag (2 samples, 0.02%)</title><rect x="1127.0" y="373" width="0.2" height="15.0" fill="rgb(217,187,41)" rx="2" ry="2" />
<text text-anchor="" x="1129.97" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_add (1 samples, 0.01%)</title><rect x="508.3" y="629" width="0.1" height="15.0" fill="rgb(218,6,21)" rx="2" ry="2" />
<text text-anchor="" x="511.30" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="592.4" y="549" width="0.1" height="15.0" fill="rgb(224,6,16)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_handle_irq (8 samples, 0.09%)</title><rect x="577.4" y="309" width="1.1" height="15.0" fill="rgb(209,228,54)" rx="2" ry="2" />
<text text-anchor="" x="580.42" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (77 samples, 0.86%)</title><rect x="380.5" y="501" width="10.2" height="15.0" fill="rgb(214,89,53)" rx="2" ry="2" />
<text text-anchor="" x="383.51" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_event_allocate (2 samples, 0.02%)</title><rect x="438.9" y="549" width="0.3" height="15.0" fill="rgb(225,201,50)" rx="2" ry="2" />
<text text-anchor="" x="441.91" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_output (21 samples, 0.24%)</title><rect x="1116.1" y="341" width="2.8" height="15.0" fill="rgb(217,112,9)" rx="2" ry="2" />
<text text-anchor="" x="1119.11" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__udp_queue_rcv_skb (1 samples, 0.01%)</title><rect x="481.8" y="277" width="0.1" height="15.0" fill="rgb(212,224,52)" rx="2" ry="2" />
<text text-anchor="" x="484.81" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (44 samples, 0.49%)</title><rect x="302.6" y="309" width="5.9" height="15.0" fill="rgb(244,146,48)" rx="2" ry="2" />
<text text-anchor="" x="305.65" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_serial_gt (1 samples, 0.01%)</title><rect x="405.8" y="565" width="0.1" height="15.0" fill="rgb(249,155,34)" rx="2" ry="2" />
<text text-anchor="" x="408.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (2 samples, 0.02%)</title><rect x="452.4" y="533" width="0.3" height="15.0" fill="rgb(254,61,32)" rx="2" ry="2" />
<text text-anchor="" x="455.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate.constprop.90 (68 samples, 0.76%)</title><rect x="615.8" y="533" width="9.0" height="15.0" fill="rgb(225,21,35)" rx="2" ry="2" />
<text text-anchor="" x="618.82" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_time_compare (1 samples, 0.01%)</title><rect x="415.3" y="485" width="0.2" height="15.0" fill="rgb(225,147,26)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_towire (1 samples, 0.01%)</title><rect x="499.4" y="565" width="0.2" height="15.0" fill="rgb(219,165,8)" rx="2" ry="2" />
<text text-anchor="" x="502.43" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>closeversion (11 samples, 0.12%)</title><rect x="344.1" y="517" width="1.5" height="15.0" fill="rgb(210,162,1)" rx="2" ry="2" />
<text text-anchor="" x="347.10" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_init (1 samples, 0.01%)</title><rect x="286.4" y="517" width="0.1" height="15.0" fill="rgb(249,192,37)" rx="2" ry="2" />
<text text-anchor="" x="289.36" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (5 samples, 0.06%)</title><rect x="607.6" y="549" width="0.7" height="15.0" fill="rgb(249,46,45)" rx="2" ry="2" />
<text text-anchor="" x="610.61" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_send (2 samples, 0.02%)</title><rect x="592.5" y="613" width="0.3" height="15.0" fill="rgb(208,182,16)" rx="2" ry="2" />
<text text-anchor="" x="595.52" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio_endio (1 samples, 0.01%)</title><rect x="32.8" y="421" width="0.1" height="15.0" fill="rgb(206,7,37)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (86 samples, 0.97%)</title><rect x="379.3" y="517" width="11.4" height="15.0" fill="rgb(222,153,12)" rx="2" ry="2" />
<text text-anchor="" x="382.32" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (9 samples, 0.10%)</title><rect x="176.5" y="325" width="1.1" height="15.0" fill="rgb(244,114,41)" rx="2" ry="2" />
<text text-anchor="" x="179.45" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_parse (25 samples, 0.28%)</title><rect x="402.5" y="549" width="3.3" height="15.0" fill="rgb(227,46,0)" rx="2" ry="2" />
<text text-anchor="" x="405.49" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="651.6" y="597" width="0.1" height="15.0" fill="rgb(206,59,0)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_gettempname (8 samples, 0.09%)</title><rect x="493.1" y="501" width="1.0" height="15.0" fill="rgb(248,97,53)" rx="2" ry="2" />
<text text-anchor="" x="496.07" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="277.2" y="501" width="0.2" height="15.0" fill="rgb(238,212,33)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="1158.6" y="453" width="0.1" height="15.0" fill="rgb(254,140,5)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (4 samples, 0.04%)</title><rect x="564.8" y="533" width="0.6" height="15.0" fill="rgb(253,177,20)" rx="2" ry="2" />
<text text-anchor="" x="567.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="375.1" y="389" width="0.1" height="15.0" fill="rgb(220,193,11)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (2 samples, 0.02%)</title><rect x="481.7" y="501" width="0.2" height="15.0" fill="rgb(242,14,54)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.01%)</title><rect x="117.8" y="437" width="0.1" height="15.0" fill="rgb(243,166,49)" rx="2" ry="2" />
<text text-anchor="" x="120.79" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_queue_xmit (68 samples, 0.76%)</title><rect x="1142.1" y="293" width="9.0" height="15.0" fill="rgb(240,109,3)" rx="2" ry="2" />
<text text-anchor="" x="1145.06" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ir_ack_apic_edge (1 samples, 0.01%)</title><rect x="1181.8" y="517" width="0.1" height="15.0" fill="rgb(209,200,10)" rx="2" ry="2" />
<text text-anchor="" x="1184.79" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_context_sched_in (424 samples, 4.76%)</title><rect x="119.5" y="453" width="56.2" height="15.0" fill="rgb(237,8,10)" rx="2" ry="2" />
<text text-anchor="" x="122.51" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (751 samples, 8.43%)</title><rect x="777.1" y="389" width="99.5" height="15.0" fill="rgb(219,37,40)" rx="2" ry="2" />
<text text-anchor="" x="780.11" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native_write..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_put (4 samples, 0.04%)</title><rect x="273.6" y="533" width="0.6" height="15.0" fill="rgb(227,152,32)" rx="2" ry="2" />
<text text-anchor="" x="276.65" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>currentversion (3 samples, 0.03%)</title><rect x="1170.8" y="533" width="0.4" height="15.0" fill="rgb(222,215,50)" rx="2" ry="2" />
<text text-anchor="" x="1173.80" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (1 samples, 0.01%)</title><rect x="574.5" y="421" width="0.1" height="15.0" fill="rgb(246,60,5)" rx="2" ry="2" />
<text text-anchor="" x="577.51" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.01%)</title><rect x="669.2" y="437" width="0.1" height="15.0" fill="rgb(254,109,51)" rx="2" ry="2" />
<text text-anchor="" x="672.19" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq (1 samples, 0.01%)</title><rect x="74.5" y="581" width="0.1" height="15.0" fill="rgb(227,106,7)" rx="2" ry="2" />
<text text-anchor="" x="77.49" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (3 samples, 0.03%)</title><rect x="578.1" y="293" width="0.4" height="15.0" fill="rgb(251,15,38)" rx="2" ry="2" />
<text text-anchor="" x="581.08" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getname (2 samples, 0.02%)</title><rect x="402.9" y="533" width="0.3" height="15.0" fill="rgb(225,133,21)" rx="2" ry="2" />
<text text-anchor="" x="405.89" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>validate_xmit_skb.isra.102.part.103 (1 samples, 0.01%)</title><rect x="1142.7" y="229" width="0.2" height="15.0" fill="rgb(227,73,48)" rx="2" ry="2" />
<text text-anchor="" x="1145.73" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_buffer_allocate (5 samples, 0.06%)</title><rect x="412.2" y="565" width="0.6" height="15.0" fill="rgb(212,151,27)" rx="2" ry="2" />
<text text-anchor="" x="415.16" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (2 samples, 0.02%)</title><rect x="1170.4" y="517" width="0.3" height="15.0" fill="rgb(219,144,7)" rx="2" ry="2" />
<text text-anchor="" x="1173.40" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>validate_xmit_skb.isra.102.part.103 (2 samples, 0.02%)</title><rect x="1150.8" y="245" width="0.3" height="15.0" fill="rgb(212,121,1)" rx="2" ry="2" />
<text text-anchor="" x="1153.80" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (14 samples, 0.16%)</title><rect x="304.9" y="229" width="1.9" height="15.0" fill="rgb(211,56,17)" rx="2" ry="2" />
<text text-anchor="" x="307.90" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (6 samples, 0.07%)</title><rect x="453.9" y="517" width="0.8" height="15.0" fill="rgb(222,216,23)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="544.2" y="533" width="0.1" height="15.0" fill="rgb(245,24,13)" rx="2" ry="2" />
<text text-anchor="" x="547.18" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_conntrack_find_get (3 samples, 0.03%)</title><rect x="1115.4" y="261" width="0.4" height="15.0" fill="rgb(248,51,24)" rx="2" ry="2" />
<text text-anchor="" x="1118.45" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_totext2 (25 samples, 0.28%)</title><rect x="521.8" y="565" width="3.3" height="15.0" fill="rgb(233,18,28)" rx="2" ry="2" />
<text text-anchor="" x="524.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_request (470 samples, 5.27%)</title><rect x="262.8" y="581" width="62.2" height="15.0" fill="rgb(206,66,13)" rx="2" ry="2" />
<text text-anchor="" x="265.79" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >client..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_first (1 samples, 0.01%)</title><rect x="1158.4" y="565" width="0.1" height="15.0" fill="rgb(219,135,23)" rx="2" ry="2" />
<text text-anchor="" x="1161.35" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_hash_function_reverse (2 samples, 0.02%)</title><rect x="500.5" y="533" width="0.3" height="15.0" fill="rgb(225,120,25)" rx="2" ry="2" />
<text text-anchor="" x="503.49" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (8 samples, 0.09%)</title><rect x="306.9" y="229" width="1.0" height="15.0" fill="rgb(253,30,48)" rx="2" ry="2" />
<text text-anchor="" x="309.89" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (2 samples, 0.02%)</title><rect x="297.9" y="453" width="0.2" height="15.0" fill="rgb(253,46,23)" rx="2" ry="2" />
<text text-anchor="" x="300.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stdio_sync (4 samples, 0.04%)</title><rect x="325.2" y="533" width="0.5" height="15.0" fill="rgb(242,96,4)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_check (1 samples, 0.01%)</title><rect x="1111.7" y="549" width="0.2" height="15.0" fill="rgb(253,103,47)" rx="2" ry="2" />
<text text-anchor="" x="1114.74" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (3 samples, 0.03%)</title><rect x="74.6" y="565" width="0.4" height="15.0" fill="rgb(233,0,0)" rx="2" ry="2" />
<text text-anchor="" x="77.62" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_qnamereplace (4 samples, 0.04%)</title><rect x="318.7" y="533" width="0.5" height="15.0" fill="rgb(246,148,4)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_sockaddr_compare (2 samples, 0.02%)</title><rect x="65.6" y="613" width="0.3" height="15.0" fill="rgb(239,139,20)" rx="2" ry="2" />
<text text-anchor="" x="68.62" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tpacket_get_timestamp (1 samples, 0.01%)</title><rect x="1148.0" y="245" width="0.2" height="15.0" fill="rgb(229,174,35)" rx="2" ry="2" />
<text text-anchor="" x="1151.02" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="1140.1" y="213" width="0.1" height="15.0" fill="rgb(235,0,5)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbtnodechain_prev (1 samples, 0.01%)</title><rect x="1183.5" y="597" width="0.1" height="15.0" fill="rgb(254,63,53)" rx="2" ry="2" />
<text text-anchor="" x="1186.51" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_fsync (4 samples, 0.04%)</title><rect x="325.2" y="469" width="0.5" height="15.0" fill="rgb(213,73,38)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_init (2 samples, 0.02%)</title><rect x="631.6" y="549" width="0.2" height="15.0" fill="rgb(236,63,46)" rx="2" ry="2" />
<text text-anchor="" x="634.58" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run (22 samples, 0.25%)</title><rect x="175.7" y="453" width="2.9" height="15.0" fill="rgb(252,106,25)" rx="2" ry="2" />
<text text-anchor="" x="178.66" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_to_timespec (1 samples, 0.01%)</title><rect x="1150.5" y="213" width="0.2" height="15.0" fill="rgb(244,7,45)" rx="2" ry="2" />
<text text-anchor="" x="1153.54" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="544.2" y="549" width="0.1" height="15.0" fill="rgb(230,78,49)" rx="2" ry="2" />
<text text-anchor="" x="547.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_sendmsg (227 samples, 2.55%)</title><rect x="1122.9" y="533" width="30.0" height="15.0" fill="rgb(226,68,1)" rx="2" ry="2" />
<text text-anchor="" x="1125.86" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (2 samples, 0.02%)</title><rect x="481.7" y="565" width="0.2" height="15.0" fill="rgb(251,88,44)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.02%)</title><rect x="328.1" y="517" width="0.2" height="15.0" fill="rgb(226,72,29)" rx="2" ry="2" />
<text text-anchor="" x="331.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_towire (39 samples, 0.44%)</title><rect x="502.7" y="565" width="5.2" height="15.0" fill="rgb(227,96,35)" rx="2" ry="2" />
<text text-anchor="" x="505.74" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_event_free (3 samples, 0.03%)</title><rect x="415.9" y="565" width="0.4" height="15.0" fill="rgb(242,30,16)" rx="2" ry="2" />
<text text-anchor="" x="418.87" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timerqueue_del (1 samples, 0.01%)</title><rect x="443.1" y="405" width="0.2" height="15.0" fill="rgb(209,135,1)" rx="2" ry="2" />
<text text-anchor="" x="446.15" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (5 samples, 0.06%)</title><rect x="544.3" y="581" width="0.7" height="15.0" fill="rgb(244,134,39)" rx="2" ry="2" />
<text text-anchor="" x="547.32" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (4 samples, 0.04%)</title><rect x="643.6" y="581" width="0.6" height="15.0" fill="rgb(230,91,22)" rx="2" ry="2" />
<text text-anchor="" x="646.63" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="538.9" y="533" width="0.1" height="15.0" fill="rgb(248,116,11)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_find (5 samples, 0.06%)</title><rect x="593.2" y="613" width="0.6" height="15.0" fill="rgb(236,18,24)" rx="2" ry="2" />
<text text-anchor="" x="596.18" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.01%)</title><rect x="898.8" y="549" width="0.1" height="15.0" fill="rgb(208,81,11)" rx="2" ry="2" />
<text text-anchor="" x="901.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.01%)</title><rect x="893.2" y="261" width="0.2" height="15.0" fill="rgb(215,208,20)" rx="2" ry="2" />
<text text-anchor="" x="896.25" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (4 samples, 0.04%)</title><rect x="557.3" y="549" width="0.5" height="15.0" fill="rgb(250,151,9)" rx="2" ry="2" />
<text text-anchor="" x="560.29" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="592.4" y="485" width="0.1" height="15.0" fill="rgb(238,194,25)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (18 samples, 0.20%)</title><rect x="886.8" y="469" width="2.3" height="15.0" fill="rgb(225,1,28)" rx="2" ry="2" />
<text text-anchor="" x="889.76" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (8 samples, 0.09%)</title><rect x="181.5" y="597" width="1.0" height="15.0" fill="rgb(229,62,35)" rx="2" ry="2" />
<text text-anchor="" x="184.48" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipt_do_table (6 samples, 0.07%)</title><rect x="1134.9" y="293" width="0.8" height="15.0" fill="rgb(248,148,10)" rx="2" ry="2" />
<text text-anchor="" x="1137.91" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="280.0" y="421" width="0.1" height="15.0" fill="rgb(251,148,40)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>migrate_task_rq_fair (1 samples, 0.01%)</title><rect x="177.1" y="293" width="0.1" height="15.0" fill="rgb(244,79,8)" rx="2" ry="2" />
<text text-anchor="" x="180.11" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stats_increment (1 samples, 0.01%)</title><rect x="590.8" y="629" width="0.1" height="15.0" fill="rgb(223,8,46)" rx="2" ry="2" />
<text text-anchor="" x="593.80" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_init (1 samples, 0.01%)</title><rect x="1156.1" y="533" width="0.1" height="15.0" fill="rgb(218,27,43)" rx="2" ry="2" />
<text text-anchor="" x="1159.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="471.2" y="437" width="0.2" height="15.0" fill="rgb(222,120,38)" rx="2" ry="2" />
<text text-anchor="" x="474.22" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="564.6" y="533" width="0.1" height="15.0" fill="rgb(224,126,53)" rx="2" ry="2" />
<text text-anchor="" x="567.58" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_sendmsg (45 samples, 0.50%)</title><rect x="1112.9" y="421" width="6.0" height="15.0" fill="rgb(221,189,49)" rx="2" ry="2" />
<text text-anchor="" x="1115.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (2 samples, 0.02%)</title><rect x="117.1" y="485" width="0.3" height="15.0" fill="rgb(205,67,34)" rx="2" ry="2" />
<text text-anchor="" x="120.13" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drop_futex_key_refs.isra.13 (1 samples, 0.01%)</title><rect x="244.9" y="549" width="0.1" height="15.0" fill="rgb(217,201,52)" rx="2" ry="2" />
<text text-anchor="" x="247.91" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (2 samples, 0.02%)</title><rect x="1119.2" y="405" width="0.2" height="15.0" fill="rgb(227,158,11)" rx="2" ry="2" />
<text text-anchor="" x="1122.15" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.01%)</title><rect x="252.5" y="517" width="0.1" height="15.0" fill="rgb(249,121,37)" rx="2" ry="2" />
<text text-anchor="" x="255.46" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_utimes (15 samples, 0.17%)</title><rect x="57.3" y="565" width="2.0" height="15.0" fill="rgb(226,155,5)" rx="2" ry="2" />
<text text-anchor="" x="60.27" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (2 samples, 0.02%)</title><rect x="241.9" y="597" width="0.2" height="15.0" fill="rgb(210,173,29)" rx="2" ry="2" />
<text text-anchor="" x="244.87" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_concatenate (3 samples, 0.03%)</title><rect x="47.7" y="613" width="0.4" height="15.0" fill="rgb(247,229,50)" rx="2" ry="2" />
<text text-anchor="" x="50.74" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_search (1 samples, 0.01%)</title><rect x="430.2" y="517" width="0.1" height="15.0" fill="rgb(252,128,36)" rx="2" ry="2" />
<text text-anchor="" x="433.17" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_send (27 samples, 0.30%)</title><rect x="446.6" y="517" width="3.6" height="15.0" fill="rgb(215,178,33)" rx="2" ry="2" />
<text text-anchor="" x="449.59" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>move_addr_to_user (2 samples, 0.02%)</title><rect x="360.3" y="469" width="0.2" height="15.0" fill="rgb(254,94,45)" rx="2" ry="2" />
<text text-anchor="" x="363.25" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.01%)</title><rect x="375.1" y="341" width="0.1" height="15.0" fill="rgb(220,0,18)" rx="2" ry="2" />
<text text-anchor="" x="378.08" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.01%)</title><rect x="1140.1" y="101" width="0.1" height="15.0" fill="rgb(216,104,24)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_edge_irq (1 samples, 0.01%)</title><rect x="74.5" y="565" width="0.1" height="15.0" fill="rgb(243,27,7)" rx="2" ry="2" />
<text text-anchor="" x="77.49" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="323.0" y="485" width="0.2" height="15.0" fill="rgb(215,5,8)" rx="2" ry="2" />
<text text-anchor="" x="326.04" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.01%)</title><rect x="115.5" y="597" width="0.2" height="15.0" fill="rgb(216,72,4)" rx="2" ry="2" />
<text text-anchor="" x="118.54" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strchrnul (1 samples, 0.01%)</title><rect x="409.0" y="453" width="0.1" height="15.0" fill="rgb(234,185,52)" rx="2" ry="2" />
<text text-anchor="" x="411.98" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (2 samples, 0.02%)</title><rect x="118.8" y="437" width="0.3" height="15.0" fill="rgb(223,120,23)" rx="2" ry="2" />
<text text-anchor="" x="121.85" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_totext.isra.424 (2 samples, 0.02%)</title><rect x="529.4" y="549" width="0.2" height="15.0" fill="rgb(246,157,2)" rx="2" ry="2" />
<text text-anchor="" x="532.35" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (1 samples, 0.01%)</title><rect x="1151.9" y="421" width="0.1" height="15.0" fill="rgb(213,8,31)" rx="2" ry="2" />
<text text-anchor="" x="1154.86" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ext4_journal_get_write_access (2 samples, 0.02%)</title><rect x="58.6" y="437" width="0.3" height="15.0" fill="rgb(226,93,4)" rx="2" ry="2" />
<text text-anchor="" x="61.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (1 samples, 0.01%)</title><rect x="258.3" y="565" width="0.1" height="15.0" fill="rgb(231,146,23)" rx="2" ry="2" />
<text text-anchor="" x="261.29" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_rfree (4 samples, 0.04%)</title><rect x="368.7" y="421" width="0.6" height="15.0" fill="rgb(248,206,12)" rx="2" ry="2" />
<text text-anchor="" x="371.73" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_settsigkey (1 samples, 0.01%)</title><rect x="47.3" y="613" width="0.2" height="15.0" fill="rgb(233,79,1)" rx="2" ry="2" />
<text text-anchor="" x="50.34" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (39 samples, 0.44%)</title><rect x="570.0" y="485" width="5.2" height="15.0" fill="rgb(244,41,1)" rx="2" ry="2" />
<text text-anchor="" x="573.01" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="569.6" y="501" width="0.1" height="15.0" fill="rgb(234,207,40)" rx="2" ry="2" />
<text text-anchor="" x="572.61" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_vsprintf (7 samples, 0.08%)</title><rect x="408.2" y="485" width="0.9" height="15.0" fill="rgb(224,159,49)" rx="2" ry="2" />
<text text-anchor="" x="411.19" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.01%)</title><rect x="454.1" y="261" width="0.2" height="15.0" fill="rgb(232,83,12)" rx="2" ry="2" />
<text text-anchor="" x="457.14" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_doit (1 samples, 0.01%)</title><rect x="1189.6" y="549" width="0.1" height="15.0" fill="rgb(238,26,31)" rx="2" ry="2" />
<text text-anchor="" x="1192.60" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sock_recv_ts_and_drops (1 samples, 0.01%)</title><rect x="295.6" y="341" width="0.2" height="15.0" fill="rgb(244,11,41)" rx="2" ry="2" />
<text text-anchor="" x="298.63" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_get_entry (1 samples, 0.01%)</title><rect x="59.0" y="341" width="0.1" height="15.0" fill="rgb(247,4,51)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (1 samples, 0.01%)</title><rect x="507.4" y="501" width="0.1" height="15.0" fill="rgb(228,140,44)" rx="2" ry="2" />
<text text-anchor="" x="510.37" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_in (1 samples, 0.01%)</title><rect x="99.5" y="261" width="0.1" height="15.0" fill="rgb(231,37,46)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_allocate (1 samples, 0.01%)</title><rect x="1188.0" y="581" width="0.1" height="15.0" fill="rgb(242,16,14)" rx="2" ry="2" />
<text text-anchor="" x="1191.01" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_fromregion (1 samples, 0.01%)</title><rect x="532.9" y="581" width="0.2" height="15.0" fill="rgb(252,67,53)" rx="2" ry="2" />
<text text-anchor="" x="535.93" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (1 samples, 0.01%)</title><rect x="893.0" y="277" width="0.1" height="15.0" fill="rgb(227,91,10)" rx="2" ry="2" />
<text text-anchor="" x="895.98" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (16 samples, 0.18%)</title><rect x="629.2" y="389" width="2.1" height="15.0" fill="rgb(226,170,32)" rx="2" ry="2" />
<text text-anchor="" x="632.20" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_send_skb (144 samples, 1.62%)</title><rect x="1132.8" y="405" width="19.1" height="15.0" fill="rgb(244,66,39)" rx="2" ry="2" />
<text text-anchor="" x="1135.79" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addadditional2 (34 samples, 0.38%)</title><rect x="493.1" y="533" width="4.5" height="15.0" fill="rgb(211,106,29)" rx="2" ry="2" />
<text text-anchor="" x="496.07" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_recv (6 samples, 0.07%)</title><rect x="453.1" y="533" width="0.8" height="15.0" fill="rgb(242,4,19)" rx="2" ry="2" />
<text text-anchor="" x="456.08" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="391.6" y="517" width="0.2" height="15.0" fill="rgb(222,149,19)" rx="2" ry="2" />
<text text-anchor="" x="394.64" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (1 samples, 0.01%)</title><rect x="1171.1" y="517" width="0.1" height="15.0" fill="rgb(236,169,17)" rx="2" ry="2" />
<text text-anchor="" x="1174.06" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__local_bh_enable_ip (1 samples, 0.01%)</title><rect x="1142.6" y="277" width="0.1" height="15.0" fill="rgb(207,70,52)" rx="2" ry="2" />
<text text-anchor="" x="1145.59" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_add (1 samples, 0.01%)</title><rect x="507.4" y="517" width="0.1" height="15.0" fill="rgb(212,217,39)" rx="2" ry="2" />
<text text-anchor="" x="510.37" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq (1 samples, 0.01%)</title><rect x="318.7" y="437" width="0.1" height="15.0" fill="rgb(247,28,13)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem_cgroup_commit_charge (1 samples, 0.01%)</title><rect x="38.5" y="405" width="0.1" height="15.0" fill="rgb(246,54,24)" rx="2" ry="2" />
<text text-anchor="" x="41.47" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (2 samples, 0.02%)</title><rect x="465.1" y="533" width="0.3" height="15.0" fill="rgb(209,35,14)" rx="2" ry="2" />
<text text-anchor="" x="468.13" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="1184.2" y="437" width="0.1" height="15.0" fill="rgb(221,198,15)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="477.6" y="501" width="0.1" height="15.0" fill="rgb(240,118,21)" rx="2" ry="2" />
<text text-anchor="" x="480.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_rendersection (1 samples, 0.01%)</title><rect x="1120.1" y="565" width="0.1" height="15.0" fill="rgb(235,206,22)" rx="2" ry="2" />
<text text-anchor="" x="1123.08" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="490.3" y="501" width="0.1" height="15.0" fill="rgb(226,208,41)" rx="2" ry="2" />
<text text-anchor="" x="493.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="1184.6" y="533" width="0.1" height="15.0" fill="rgb(205,97,9)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event (1 samples, 0.01%)</title><rect x="898.1" y="469" width="0.2" height="15.0" fill="rgb(244,186,51)" rx="2" ry="2" />
<text text-anchor="" x="901.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.01%)</title><rect x="385.8" y="261" width="0.1" height="15.0" fill="rgb(248,177,2)" rx="2" ry="2" />
<text text-anchor="" x="388.81" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.01%)</title><rect x="257.2" y="453" width="0.2" height="15.0" fill="rgb(254,3,24)" rx="2" ry="2" />
<text text-anchor="" x="260.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__filemap_fdatawrite_range (2 samples, 0.02%)</title><rect x="454.9" y="389" width="0.3" height="15.0" fill="rgb(220,46,44)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_rename (3 samples, 0.03%)</title><rect x="325.7" y="501" width="0.4" height="15.0" fill="rgb(250,196,7)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>epoll_ctl (266 samples, 2.99%)</title><rect x="552.5" y="629" width="35.3" height="15.0" fill="rgb(254,136,38)" rx="2" ry="2" />
<text text-anchor="" x="555.53" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ep..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="319.2" y="485" width="0.1" height="15.0" fill="rgb(234,161,50)" rx="2" ry="2" />
<text text-anchor="" x="322.20" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.01%)</title><rect x="380.4" y="501" width="0.1" height="15.0" fill="rgb(242,103,51)" rx="2" ry="2" />
<text text-anchor="" x="383.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__timer_reset (1 samples, 0.01%)</title><rect x="399.2" y="565" width="0.1" height="15.0" fill="rgb(248,179,6)" rx="2" ry="2" />
<text text-anchor="" x="402.18" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgreset (1 samples, 0.01%)</title><rect x="427.1" y="549" width="0.2" height="15.0" fill="rgb(239,168,49)" rx="2" ry="2" />
<text text-anchor="" x="430.12" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (2 samples, 0.02%)</title><rect x="375.2" y="533" width="0.3" height="15.0" fill="rgb(223,135,34)" rx="2" ry="2" />
<text text-anchor="" x="378.22" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libpthread-2.19.so] (134 samples, 1.50%)</title><rect x="458.2" y="581" width="17.8" height="15.0" fill="rgb(229,57,35)" rx="2" ry="2" />
<text text-anchor="" x="461.24" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_kfree_skb_any (1 samples, 0.01%)</title><rect x="538.9" y="469" width="0.1" height="15.0" fill="rgb(209,108,15)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (2 samples, 0.02%)</title><rect x="177.6" y="373" width="0.3" height="15.0" fill="rgb(208,56,28)" rx="2" ry="2" />
<text text-anchor="" x="180.64" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.06%)</title><rect x="177.9" y="373" width="0.7" height="15.0" fill="rgb(234,69,32)" rx="2" ry="2" />
<text text-anchor="" x="180.91" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mark_inode_dirty (1 samples, 0.01%)</title><rect x="38.6" y="453" width="0.1" height="15.0" fill="rgb(216,89,4)" rx="2" ry="2" />
<text text-anchor="" x="41.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (139 samples, 1.56%)</title><rect x="356.5" y="501" width="18.5" height="15.0" fill="rgb(227,153,40)" rx="2" ry="2" />
<text text-anchor="" x="359.54" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_kfree_skb_any (1 samples, 0.01%)</title><rect x="310.5" y="293" width="0.1" height="15.0" fill="rgb(209,132,15)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_wait_queue (10 samples, 0.11%)</title><rect x="30.3" y="549" width="1.3" height="15.0" fill="rgb(222,200,22)" rx="2" ry="2" />
<text text-anchor="" x="33.26" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stats_increment (2 samples, 0.02%)</title><rect x="281.1" y="549" width="0.2" height="15.0" fill="rgb(219,209,24)" rx="2" ry="2" />
<text text-anchor="" x="284.06" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="388.3" y="277" width="0.2" height="15.0" fill="rgb(237,121,48)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (6 samples, 0.07%)</title><rect x="82.7" y="453" width="0.8" height="15.0" fill="rgb(216,108,1)" rx="2" ry="2" />
<text text-anchor="" x="85.70" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (2 samples, 0.02%)</title><rect x="18.6" y="597" width="0.3" height="15.0" fill="rgb(245,31,32)" rx="2" ry="2" />
<text text-anchor="" x="21.61" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="375.5" y="549" width="0.1" height="15.0" fill="rgb(206,199,13)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (1 samples, 0.01%)</title><rect x="538.9" y="421" width="0.1" height="15.0" fill="rgb(233,58,7)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>user_path_at_empty (6 samples, 0.07%)</title><rect x="57.5" y="549" width="0.8" height="15.0" fill="rgb(254,201,52)" rx="2" ry="2" />
<text text-anchor="" x="60.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="81.1" y="501" width="0.1" height="15.0" fill="rgb(208,96,26)" rx="2" ry="2" />
<text text-anchor="" x="84.11" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mem_get (1 samples, 0.01%)</title><rect x="392.8" y="565" width="0.2" height="15.0" fill="rgb(230,71,33)" rx="2" ry="2" />
<text text-anchor="" x="395.83" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatasetiter_current (1 samples, 0.01%)</title><rect x="510.4" y="629" width="0.1" height="15.0" fill="rgb(206,181,49)" rx="2" ry="2" />
<text text-anchor="" x="513.42" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="309.3" y="357" width="0.1" height="15.0" fill="rgb(230,110,40)" rx="2" ry="2" />
<text text-anchor="" x="312.27" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_pmu_enable (1,450 samples, 16.27%)</title><rect x="684.7" y="453" width="192.0" height="15.0" fill="rgb(216,12,49)" rx="2" ry="2" />
<text text-anchor="" x="687.68" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >perf_pmu_enable</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (2 samples, 0.02%)</title><rect x="389.4" y="437" width="0.2" height="15.0" fill="rgb(219,49,28)" rx="2" ry="2" />
<text text-anchor="" x="392.39" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (7 samples, 0.08%)</title><rect x="117.9" y="437" width="0.9" height="15.0" fill="rgb(214,135,44)" rx="2" ry="2" />
<text text-anchor="" x="120.92" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.01%)</title><rect x="74.9" y="453" width="0.1" height="15.0" fill="rgb(249,67,37)" rx="2" ry="2" />
<text text-anchor="" x="77.89" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_writepages (2 samples, 0.02%)</title><rect x="454.9" y="373" width="0.3" height="15.0" fill="rgb(227,210,34)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (5 samples, 0.06%)</title><rect x="424.7" y="533" width="0.7" height="15.0" fill="rgb(252,90,15)" rx="2" ry="2" />
<text text-anchor="" x="427.74" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_cfs_rq_runtime (1 samples, 0.01%)</title><rect x="890.1" y="469" width="0.1" height="15.0" fill="rgb(234,6,22)" rx="2" ry="2" />
<text text-anchor="" x="893.07" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_recvmsg (50 samples, 0.56%)</title><rect x="362.6" y="437" width="6.7" height="15.0" fill="rgb(228,149,1)" rx="2" ry="2" />
<text text-anchor="" x="365.64" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_getoriginnode (1 samples, 0.01%)</title><rect x="286.1" y="533" width="0.1" height="15.0" fill="rgb(244,63,34)" rx="2" ry="2" />
<text text-anchor="" x="289.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase (1 samples, 0.01%)</title><rect x="31.6" y="565" width="0.1" height="15.0" fill="rgb(229,18,40)" rx="2" ry="2" />
<text text-anchor="" x="34.58" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getname (1 samples, 0.01%)</title><rect x="403.7" y="517" width="0.1" height="15.0" fill="rgb(249,145,17)" rx="2" ry="2" />
<text text-anchor="" x="406.69" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_vwrite (2 samples, 0.02%)</title><rect x="415.5" y="549" width="0.2" height="15.0" fill="rgb(210,101,26)" rx="2" ry="2" />
<text text-anchor="" x="418.47" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inode_permission (1 samples, 0.01%)</title><rect x="57.7" y="501" width="0.1" height="15.0" fill="rgb(213,222,28)" rx="2" ry="2" />
<text text-anchor="" x="60.67" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbt_findname (1 samples, 0.01%)</title><rect x="496.4" y="485" width="0.1" height="15.0" fill="rgb(223,95,6)" rx="2" ry="2" />
<text text-anchor="" x="499.38" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fromwire_opt.isra.292 (3 samples, 0.03%)</title><rect x="272.5" y="501" width="0.4" height="15.0" fill="rgb(236,61,27)" rx="2" ry="2" />
<text text-anchor="" x="275.46" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_put (3 samples, 0.03%)</title><rect x="60.3" y="613" width="0.4" height="15.0" fill="rgb(252,154,30)" rx="2" ry="2" />
<text text-anchor="" x="63.32" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_task_sendanddetach (1 samples, 0.01%)</title><rect x="415.7" y="549" width="0.2" height="15.0" fill="rgb(217,35,41)" rx="2" ry="2" />
<text text-anchor="" x="418.74" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_file_rename (3 samples, 0.03%)</title><rect x="325.7" y="549" width="0.4" height="15.0" fill="rgb(245,63,33)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.01%)</title><rect x="574.6" y="437" width="0.2" height="15.0" fill="rgb(222,149,35)" rx="2" ry="2" />
<text text-anchor="" x="577.64" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__lll_lock_wait (254 samples, 2.85%)</title><rect x="81.4" y="613" width="33.6" height="15.0" fill="rgb(236,15,50)" rx="2" ry="2" />
<text text-anchor="" x="84.37" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_towiresorted (1 samples, 0.01%)</title><rect x="592.7" y="565" width="0.1" height="15.0" fill="rgb(222,43,1)" rx="2" ry="2" />
<text text-anchor="" x="595.65" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>req_send (31 samples, 0.35%)</title><rect x="446.1" y="549" width="4.1" height="15.0" fill="rgb(247,82,29)" rx="2" ry="2" />
<text text-anchor="" x="449.06" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_process_times (1 samples, 0.01%)</title><rect x="544.2" y="469" width="0.1" height="15.0" fill="rgb(247,88,23)" rx="2" ry="2" />
<text text-anchor="" x="547.18" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (1 samples, 0.01%)</title><rect x="350.3" y="549" width="0.2" height="15.0" fill="rgb(244,139,29)" rx="2" ry="2" />
<text text-anchor="" x="353.32" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_cond_signal@@GLIBC_2.3.2 (241 samples, 2.70%)</title><rect x="594.0" y="629" width="31.9" height="15.0" fill="rgb(248,153,49)" rx="2" ry="2" />
<text text-anchor="" x="596.97" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pt..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (3 samples, 0.03%)</title><rect x="893.5" y="517" width="0.4" height="15.0" fill="rgb(217,80,51)" rx="2" ry="2" />
<text text-anchor="" x="896.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_irq_exit (1 samples, 0.01%)</title><rect x="97.4" y="437" width="0.1" height="15.0" fill="rgb(247,207,27)" rx="2" ry="2" />
<text text-anchor="" x="100.40" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_init (1 samples, 0.01%)</title><rect x="1168.8" y="469" width="0.1" height="15.0" fill="rgb(230,4,7)" rx="2" ry="2" />
<text text-anchor="" x="1171.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_send (57 samples, 0.64%)</title><rect x="1112.1" y="533" width="7.6" height="15.0" fill="rgb(206,74,7)" rx="2" ry="2" />
<text text-anchor="" x="1115.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_dirty_inode (1 samples, 0.01%)</title><rect x="38.6" y="437" width="0.1" height="15.0" fill="rgb(234,191,2)" rx="2" ry="2" />
<text text-anchor="" x="41.60" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_local (38 samples, 0.43%)</title><rect x="1135.7" y="309" width="5.0" height="15.0" fill="rgb(224,108,48)" rx="2" ry="2" />
<text text-anchor="" x="1138.71" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_sendmsg (221 samples, 2.48%)</title><rect x="1123.7" y="501" width="29.2" height="15.0" fill="rgb(210,79,37)" rx="2" ry="2" />
<text text-anchor="" x="1126.66" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mmdrop (2 samples, 0.02%)</title><rect x="683.8" y="485" width="0.2" height="15.0" fill="rgb(220,96,16)" rx="2" ry="2" />
<text text-anchor="" x="686.76" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_buffer_allocate (11 samples, 0.12%)</title><rect x="425.4" y="549" width="1.5" height="15.0" fill="rgb(253,210,43)" rx="2" ry="2" />
<text text-anchor="" x="428.40" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_order_find (5 samples, 0.06%)</title><rect x="320.1" y="517" width="0.7" height="15.0" fill="rgb(209,6,29)" rx="2" ry="2" />
<text text-anchor="" x="323.13" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_add (4 samples, 0.04%)</title><rect x="500.2" y="549" width="0.6" height="15.0" fill="rgb(249,27,0)" rx="2" ry="2" />
<text text-anchor="" x="503.22" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_sendanddetach (2 samples, 0.02%)</title><rect x="391.5" y="533" width="0.3" height="15.0" fill="rgb(246,184,0)" rx="2" ry="2" />
<text text-anchor="" x="394.50" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_entity_load_avg (1 samples, 0.01%)</title><rect x="671.3" y="389" width="0.1" height="15.0" fill="rgb(240,80,8)" rx="2" ry="2" />
<text text-anchor="" x="674.31" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="1140.1" y="261" width="0.1" height="15.0" fill="rgb(232,177,33)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_query_start (16 samples, 0.18%)</title><rect x="1167.6" y="597" width="2.1" height="15.0" fill="rgb(236,76,8)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_from_iter (1 samples, 0.01%)</title><rect x="1126.8" y="373" width="0.2" height="15.0" fill="rgb(207,137,30)" rx="2" ry="2" />
<text text-anchor="" x="1129.84" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatasetiter_current (3 samples, 0.03%)</title><rect x="536.1" y="597" width="0.4" height="15.0" fill="rgb(235,46,7)" rx="2" ry="2" />
<text text-anchor="" x="539.11" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="349.9" y="533" width="0.2" height="15.0" fill="rgb(238,138,13)" rx="2" ry="2" />
<text text-anchor="" x="352.92" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="610.3" y="437" width="0.1" height="15.0" fill="rgb(210,109,14)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ghes_copy_tofrom_phys (4 samples, 0.04%)</title><rect x="181.0" y="581" width="0.5" height="15.0" fill="rgb(228,185,30)" rx="2" ry="2" />
<text text-anchor="" x="183.95" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sooner (2 samples, 0.02%)</title><rect x="409.9" y="517" width="0.3" height="15.0" fill="rgb(254,54,27)" rx="2" ry="2" />
<text text-anchor="" x="412.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (67 samples, 0.75%)</title><rect x="381.0" y="485" width="8.9" height="15.0" fill="rgb(206,141,46)" rx="2" ry="2" />
<text text-anchor="" x="384.04" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_timer_reset (1 samples, 0.01%)</title><rect x="410.2" y="549" width="0.1" height="15.0" fill="rgb(225,38,8)" rx="2" ry="2" />
<text text-anchor="" x="413.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_ct_refresh_acct (1 samples, 0.01%)</title><rect x="454.8" y="181" width="0.1" height="15.0" fill="rgb(226,123,40)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key_refs.isra.12 (2 samples, 0.02%)</title><rect x="245.6" y="533" width="0.2" height="15.0" fill="rgb(249,210,11)" rx="2" ry="2" />
<text text-anchor="" x="248.58" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>initialize (2 samples, 0.02%)</title><rect x="59.8" y="613" width="0.3" height="15.0" fill="rgb(229,226,51)" rx="2" ry="2" />
<text text-anchor="" x="62.79" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (1 samples, 0.01%)</title><rect x="75.3" y="421" width="0.1" height="15.0" fill="rgb(206,162,21)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (43 samples, 0.48%)</title><rect x="252.2" y="533" width="5.7" height="15.0" fill="rgb(225,213,25)" rx="2" ry="2" />
<text text-anchor="" x="255.20" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__timer_create (4 samples, 0.04%)</title><rect x="438.4" y="549" width="0.5" height="15.0" fill="rgb(229,158,32)" rx="2" ry="2" />
<text text-anchor="" x="441.38" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (1 samples, 0.01%)</title><rect x="383.0" y="341" width="0.2" height="15.0" fill="rgb(217,213,29)" rx="2" ry="2" />
<text text-anchor="" x="386.03" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (80 samples, 0.90%)</title><rect x="300.0" y="405" width="10.6" height="15.0" fill="rgb(226,72,34)" rx="2" ry="2" />
<text text-anchor="" x="303.00" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_clientinfomethods_init (2 samples, 0.02%)</title><rect x="284.5" y="533" width="0.3" height="15.0" fill="rgb(242,53,50)" rx="2" ry="2" />
<text text-anchor="" x="287.51" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__udp4_lib_rcv (1 samples, 0.01%)</title><rect x="665.9" y="277" width="0.1" height="15.0" fill="rgb(219,134,5)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (1 samples, 0.01%)</title><rect x="1184.4" y="581" width="0.2" height="15.0" fill="rgb(242,32,48)" rx="2" ry="2" />
<text text-anchor="" x="1187.44" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromtext (2 samples, 0.02%)</title><rect x="1174.9" y="613" width="0.3" height="15.0" fill="rgb(218,151,51)" rx="2" ry="2" />
<text text-anchor="" x="1177.90" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="99.5" y="421" width="0.1" height="15.0" fill="rgb(223,59,13)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1 samples, 0.01%)</title><rect x="538.9" y="357" width="0.1" height="15.0" fill="rgb(234,193,52)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_init (2 samples, 0.02%)</title><rect x="491.9" y="533" width="0.2" height="15.0" fill="rgb(248,33,53)" rx="2" ry="2" />
<text text-anchor="" x="494.88" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_from_iter_iovec (1 samples, 0.01%)</title><rect x="309.4" y="341" width="0.1" height="15.0" fill="rgb(226,95,42)" rx="2" ry="2" />
<text text-anchor="" x="312.40" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="1181.8" y="565" width="0.1" height="15.0" fill="rgb(227,137,42)" rx="2" ry="2" />
<text text-anchor="" x="1184.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_log (1 samples, 0.01%)</title><rect x="1111.5" y="533" width="0.1" height="15.0" fill="rgb(248,91,29)" rx="2" ry="2" />
<text text-anchor="" x="1114.47" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="311.4" y="341" width="0.1" height="15.0" fill="rgb(235,142,54)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ext4_journal_start_sb (2 samples, 0.02%)</title><rect x="58.3" y="469" width="0.3" height="15.0" fill="rgb(235,84,22)" rx="2" ry="2" />
<text text-anchor="" x="61.33" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="1151.6" y="325" width="0.1" height="15.0" fill="rgb(234,221,46)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addadditional2 (12 samples, 0.13%)</title><rect x="1168.0" y="517" width="1.6" height="15.0" fill="rgb(228,203,3)" rx="2" ry="2" />
<text text-anchor="" x="1171.02" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_disable (1 samples, 0.01%)</title><rect x="117.0" y="453" width="0.1" height="15.0" fill="rgb(226,35,22)" rx="2" ry="2" />
<text text-anchor="" x="120.00" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (1 samples, 0.01%)</title><rect x="1119.0" y="453" width="0.2" height="15.0" fill="rgb(215,184,5)" rx="2" ry="2" />
<text text-anchor="" x="1122.02" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_check (1 samples, 0.01%)</title><rect x="1121.5" y="565" width="0.2" height="15.0" fill="rgb(246,35,39)" rx="2" ry="2" />
<text text-anchor="" x="1124.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_rename (1 samples, 0.01%)</title><rect x="326.1" y="453" width="0.1" height="15.0" fill="rgb(223,96,34)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixfr_commit (2 samples, 0.02%)</title><rect x="454.9" y="565" width="0.3" height="15.0" fill="rgb(241,16,32)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_copy_check_uvector (1 samples, 0.01%)</title><rect x="359.7" y="453" width="0.2" height="15.0" fill="rgb(225,150,42)" rx="2" ry="2" />
<text text-anchor="" x="362.72" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_da_write_begin (7 samples, 0.08%)</title><rect x="37.7" y="485" width="0.9" height="15.0" fill="rgb(245,90,15)" rx="2" ry="2" />
<text text-anchor="" x="40.68" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (6 samples, 0.07%)</title><rect x="376.8" y="533" width="0.8" height="15.0" fill="rgb(226,126,29)" rx="2" ry="2" />
<text text-anchor="" x="379.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mem_attach (2 samples, 0.02%)</title><rect x="440.5" y="517" width="0.3" height="15.0" fill="rgb(223,211,42)" rx="2" ry="2" />
<text text-anchor="" x="443.50" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_send (1 samples, 0.01%)</title><rect x="319.2" y="517" width="0.1" height="15.0" fill="rgb(238,103,38)" rx="2" ry="2" />
<text text-anchor="" x="322.20" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_error (68 samples, 0.76%)</title><rect x="1111.3" y="613" width="9.0" height="15.0" fill="rgb(215,102,25)" rx="2" ry="2" />
<text text-anchor="" x="1114.34" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tpacket_rcv (19 samples, 0.21%)</title><rect x="1148.2" y="245" width="2.5" height="15.0" fill="rgb(253,191,45)" rx="2" ry="2" />
<text text-anchor="" x="1151.16" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="430.6" y="517" width="0.1" height="15.0" fill="rgb(225,182,23)" rx="2" ry="2" />
<text text-anchor="" x="433.57" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_put (12 samples, 0.13%)</title><rect x="441.7" y="533" width="1.6" height="15.0" fill="rgb(207,87,38)" rx="2" ry="2" />
<text text-anchor="" x="444.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_entity_load_avg (2 samples, 0.02%)</title><rect x="614.6" y="501" width="0.3" height="15.0" fill="rgb(237,26,3)" rx="2" ry="2" />
<text text-anchor="" x="617.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towiresorted.isra.3 (1 samples, 0.01%)</title><rect x="499.4" y="581" width="0.2" height="15.0" fill="rgb(252,100,34)" rx="2" ry="2" />
<text text-anchor="" x="502.43" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="429.4" y="533" width="0.1" height="15.0" fill="rgb(240,202,13)" rx="2" ry="2" />
<text text-anchor="" x="432.38" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_pkt_to_tuple (3 samples, 0.03%)</title><rect x="1138.5" y="277" width="0.4" height="15.0" fill="rgb(213,27,44)" rx="2" ry="2" />
<text text-anchor="" x="1141.49" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_event_allocate (3 samples, 0.03%)</title><rect x="446.1" y="517" width="0.4" height="15.0" fill="rgb(222,141,14)" rx="2" ry="2" />
<text text-anchor="" x="449.06" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_addopt (7 samples, 0.08%)</title><rect x="591.6" y="629" width="0.9" height="15.0" fill="rgb(254,186,9)" rx="2" ry="2" />
<text text-anchor="" x="594.59" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="323.0" y="437" width="0.2" height="15.0" fill="rgb(218,190,48)" rx="2" ry="2" />
<text text-anchor="" x="326.04" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (4 samples, 0.04%)</title><rect x="298.7" y="421" width="0.5" height="15.0" fill="rgb(230,66,52)" rx="2" ry="2" />
<text text-anchor="" x="301.68" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdataset_current (1 samples, 0.01%)</title><rect x="532.9" y="597" width="0.2" height="15.0" fill="rgb(208,117,45)" rx="2" ry="2" />
<text text-anchor="" x="535.93" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (5 samples, 0.06%)</title><rect x="881.1" y="309" width="0.6" height="15.0" fill="rgb(221,177,9)" rx="2" ry="2" />
<text text-anchor="" x="884.06" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (11 samples, 0.12%)</title><rect x="37.5" y="597" width="1.5" height="15.0" fill="rgb(229,218,52)" rx="2" ry="2" />
<text text-anchor="" x="40.54" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_findclosestnsec3 (1 samples, 0.01%)</title><rect x="1166.8" y="629" width="0.2" height="15.0" fill="rgb(233,144,25)" rx="2" ry="2" />
<text text-anchor="" x="1169.83" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fib_table_lookup (1 samples, 0.01%)</title><rect x="892.5" y="293" width="0.1" height="15.0" fill="rgb(231,60,6)" rx="2" ry="2" />
<text text-anchor="" x="895.45" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_detach (1 samples, 0.01%)</title><rect x="1168.5" y="485" width="0.2" height="15.0" fill="rgb(224,28,53)" rx="2" ry="2" />
<text text-anchor="" x="1171.55" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_putuint16 (1 samples, 0.01%)</title><rect x="1153.6" y="533" width="0.1" height="15.0" fill="rgb(208,193,4)" rx="2" ry="2" />
<text text-anchor="" x="1156.58" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (4 samples, 0.04%)</title><rect x="890.1" y="485" width="0.5" height="15.0" fill="rgb(235,170,29)" rx="2" ry="2" />
<text text-anchor="" x="893.07" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (15 samples, 0.17%)</title><rect x="572.7" y="453" width="1.9" height="15.0" fill="rgb(210,223,21)" rx="2" ry="2" />
<text text-anchor="" x="575.66" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="507.8" y="405" width="0.1" height="15.0" fill="rgb(249,92,7)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_gettimeofday (1 samples, 0.01%)</title><rect x="455.7" y="549" width="0.2" height="15.0" fill="rgb(237,225,52)" rx="2" ry="2" />
<text text-anchor="" x="458.73" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detachnode (16 samples, 0.18%)</title><rect x="345.6" y="517" width="2.1" height="15.0" fill="rgb(207,16,18)" rx="2" ry="2" />
<text text-anchor="" x="348.55" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_queue_rcv_skb (1 samples, 0.01%)</title><rect x="1158.6" y="277" width="0.1" height="15.0" fill="rgb(237,36,48)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_additionaldata (61 samples, 0.68%)</title><rect x="1158.7" y="581" width="8.1" height="15.0" fill="rgb(210,138,42)" rx="2" ry="2" />
<text text-anchor="" x="1161.75" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getname (12 samples, 0.13%)</title><rect x="268.0" y="549" width="1.5" height="15.0" fill="rgb(245,155,51)" rx="2" ry="2" />
<text text-anchor="" x="270.96" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_order_find (1 samples, 0.01%)</title><rect x="1170.3" y="517" width="0.1" height="15.0" fill="rgb(254,154,44)" rx="2" ry="2" />
<text text-anchor="" x="1173.27" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>req_response (42 samples, 0.47%)</title><rect x="410.3" y="581" width="5.6" height="15.0" fill="rgb(218,82,53)" rx="2" ry="2" />
<text text-anchor="" x="413.31" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_sendpkg (63 samples, 0.71%)</title><rect x="1111.3" y="565" width="8.4" height="15.0" fill="rgb(241,189,7)" rx="2" ry="2" />
<text text-anchor="" x="1114.34" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (2 samples, 0.02%)</title><rect x="496.1" y="485" width="0.3" height="15.0" fill="rgb(252,33,32)" rx="2" ry="2" />
<text text-anchor="" x="499.12" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (12 samples, 0.13%)</title><rect x="244.5" y="581" width="1.6" height="15.0" fill="rgb(213,78,3)" rx="2" ry="2" />
<text text-anchor="" x="247.52" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.01%)</title><rect x="99.5" y="245" width="0.1" height="15.0" fill="rgb(253,38,41)" rx="2" ry="2" />
<text text-anchor="" x="102.52" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="81.1" y="517" width="0.1" height="15.0" fill="rgb(229,9,45)" rx="2" ry="2" />
<text text-anchor="" x="84.11" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget (2 samples, 0.02%)</title><rect x="1152.3" y="421" width="0.2" height="15.0" fill="rgb(210,4,47)" rx="2" ry="2" />
<text text-anchor="" x="1155.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="405.0" y="501" width="0.1" height="15.0" fill="rgb(225,21,0)" rx="2" ry="2" />
<text text-anchor="" x="408.01" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_forward (1 samples, 0.01%)</title><rect x="62.0" y="613" width="0.2" height="15.0" fill="rgb(225,191,4)" rx="2" ry="2" />
<text text-anchor="" x="65.04" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.01%)</title><rect x="595.0" y="613" width="0.2" height="15.0" fill="rgb(248,36,29)" rx="2" ry="2" />
<text text-anchor="" x="598.03" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1 samples, 0.01%)</title><rect x="1119.4" y="309" width="0.2" height="15.0" fill="rgb(221,65,43)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lookup_fast (1 samples, 0.01%)</title><rect x="57.9" y="485" width="0.2" height="15.0" fill="rgb(217,193,23)" rx="2" ry="2" />
<text text-anchor="" x="60.94" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (6 samples, 0.07%)</title><rect x="41.1" y="597" width="0.8" height="15.0" fill="rgb(219,97,31)" rx="2" ry="2" />
<text text-anchor="" x="44.12" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bio_clone_mddev (1 samples, 0.01%)</title><rect x="455.1" y="261" width="0.1" height="15.0" fill="rgb(232,229,0)" rx="2" ry="2" />
<text text-anchor="" x="458.07" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.01%)</title><rect x="481.8" y="373" width="0.1" height="15.0" fill="rgb(223,200,35)" rx="2" ry="2" />
<text text-anchor="" x="484.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_msix_ring (1 samples, 0.01%)</title><rect x="898.1" y="437" width="0.2" height="15.0" fill="rgb(226,219,36)" rx="2" ry="2" />
<text text-anchor="" x="901.14" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_wouldlog (4 samples, 0.04%)</title><rect x="479.7" y="565" width="0.5" height="15.0" fill="rgb(223,225,30)" rx="2" ry="2" />
<text text-anchor="" x="482.70" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgreset (22 samples, 0.25%)</title><rect x="311.8" y="501" width="2.9" height="15.0" fill="rgb(216,6,40)" rx="2" ry="2" />
<text text-anchor="" x="314.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (1 samples, 0.01%)</title><rect x="117.4" y="453" width="0.1" height="15.0" fill="rgb(248,125,13)" rx="2" ry="2" />
<text text-anchor="" x="120.39" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addsoa (3 samples, 0.03%)</title><rect x="497.6" y="581" width="0.4" height="15.0" fill="rgb(240,16,36)" rx="2" ry="2" />
<text text-anchor="" x="500.57" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (1 samples, 0.01%)</title><rect x="390.4" y="437" width="0.2" height="15.0" fill="rgb(253,175,41)" rx="2" ry="2" />
<text text-anchor="" x="393.44" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_timer_fn (1 samples, 0.01%)</title><rect x="671.6" y="421" width="0.1" height="15.0" fill="rgb(241,86,54)" rx="2" ry="2" />
<text text-anchor="" x="674.57" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_timer (7 samples, 0.08%)</title><rect x="455.2" y="581" width="0.9" height="15.0" fill="rgb(229,167,1)" rx="2" ry="2" />
<text text-anchor="" x="458.20" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_wouldlog (1 samples, 0.01%)</title><rect x="375.7" y="533" width="0.2" height="15.0" fill="rgb(221,93,16)" rx="2" ry="2" />
<text text-anchor="" x="378.75" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_unlock_usercnt (5 samples, 0.06%)</title><rect x="650.8" y="613" width="0.6" height="15.0" fill="rgb(243,205,54)" rx="2" ry="2" />
<text text-anchor="" x="653.78" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="546.2" y="549" width="0.1" height="15.0" fill="rgb(238,47,26)" rx="2" ry="2" />
<text text-anchor="" x="549.17" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.02%)</title><rect x="286.6" y="501" width="0.3" height="15.0" fill="rgb(218,3,36)" rx="2" ry="2" />
<text text-anchor="" x="289.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (1 samples, 0.01%)</title><rect x="341.7" y="485" width="0.1" height="15.0" fill="rgb(240,182,35)" rx="2" ry="2" />
<text text-anchor="" x="344.71" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc (3 samples, 0.03%)</title><rect x="32.4" y="581" width="0.4" height="15.0" fill="rgb(229,59,21)" rx="2" ry="2" />
<text text-anchor="" x="35.38" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__udp4_lib_rcv (3 samples, 0.03%)</title><rect x="892.6" y="245" width="0.4" height="15.0" fill="rgb(222,110,18)" rx="2" ry="2" />
<text text-anchor="" x="895.58" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>path_lookupat (4 samples, 0.04%)</title><rect x="57.5" y="517" width="0.6" height="15.0" fill="rgb(242,82,14)" rx="2" ry="2" />
<text text-anchor="" x="60.54" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_make_request (1 samples, 0.01%)</title><rect x="325.2" y="309" width="0.1" height="15.0" fill="rgb(230,157,44)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_find_next_bit.part.0 (2 samples, 0.02%)</title><rect x="612.4" y="501" width="0.2" height="15.0" fill="rgb(252,175,40)" rx="2" ry="2" />
<text text-anchor="" x="615.38" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__internal_add_timer (1 samples, 0.01%)</title><rect x="454.8" y="133" width="0.1" height="15.0" fill="rgb(231,225,31)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (1 samples, 0.01%)</title><rect x="99.3" y="469" width="0.1" height="15.0" fill="rgb(249,211,25)" rx="2" ry="2" />
<text text-anchor="" x="102.25" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (2 samples, 0.02%)</title><rect x="493.9" y="469" width="0.2" height="15.0" fill="rgb(218,164,4)" rx="2" ry="2" />
<text text-anchor="" x="496.86" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (1 samples, 0.01%)</title><rect x="453.6" y="389" width="0.1" height="15.0" fill="rgb(210,208,18)" rx="2" ry="2" />
<text text-anchor="" x="456.61" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (5 samples, 0.06%)</title><rect x="1115.4" y="325" width="0.7" height="15.0" fill="rgb(215,145,41)" rx="2" ry="2" />
<text text-anchor="" x="1118.45" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_getname (1 samples, 0.01%)</title><rect x="432.8" y="421" width="0.2" height="15.0" fill="rgb(217,1,41)" rx="2" ry="2" />
<text text-anchor="" x="435.82" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_free (1 samples, 0.01%)</title><rect x="312.8" y="437" width="0.2" height="15.0" fill="rgb(249,84,0)" rx="2" ry="2" />
<text text-anchor="" x="315.85" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbd2__journal_start (2 samples, 0.02%)</title><rect x="58.3" y="453" width="0.3" height="15.0" fill="rgb(228,117,20)" rx="2" ry="2" />
<text text-anchor="" x="61.33" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_entity_load_avg (1 samples, 0.01%)</title><rect x="177.1" y="277" width="0.1" height="15.0" fill="rgb(249,6,43)" rx="2" ry="2" />
<text text-anchor="" x="180.11" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfrin_send_request (1 samples, 0.01%)</title><rect x="454.8" y="565" width="0.1" height="15.0" fill="rgb(254,14,30)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_send (4 samples, 0.04%)</title><rect x="398.7" y="565" width="0.5" height="15.0" fill="rgb(254,31,43)" rx="2" ry="2" />
<text text-anchor="" x="401.65" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_conntrack_find_get (8 samples, 0.09%)</title><rect x="1137.2" y="277" width="1.0" height="15.0" fill="rgb(238,114,29)" rx="2" ry="2" />
<text text-anchor="" x="1140.16" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>file_update_time (1 samples, 0.01%)</title><rect x="454.4" y="405" width="0.1" height="15.0" fill="rgb(239,48,23)" rx="2" ry="2" />
<text text-anchor="" x="457.40" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mark_buffer_dirty (1 samples, 0.01%)</title><rect x="38.7" y="421" width="0.2" height="15.0" fill="rgb(214,98,13)" rx="2" ry="2" />
<text text-anchor="" x="41.74" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.isra.9 (6 samples, 0.07%)</title><rect x="693.4" y="309" width="0.8" height="15.0" fill="rgb(205,71,9)" rx="2" ry="2" />
<text text-anchor="" x="696.42" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (1 samples, 0.01%)</title><rect x="471.2" y="293" width="0.2" height="15.0" fill="rgb(236,17,17)" rx="2" ry="2" />
<text text-anchor="" x="474.22" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (1 samples, 0.01%)</title><rect x="74.9" y="485" width="0.1" height="15.0" fill="rgb(240,126,53)" rx="2" ry="2" />
<text text-anchor="" x="77.89" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__udp_queue_rcv_skb (2 samples, 0.02%)</title><rect x="892.7" y="213" width="0.3" height="15.0" fill="rgb(215,175,13)" rx="2" ry="2" />
<text text-anchor="" x="895.72" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_ct_get_tuple (5 samples, 0.06%)</title><rect x="1138.9" y="277" width="0.6" height="15.0" fill="rgb(213,132,20)" rx="2" ry="2" />
<text text-anchor="" x="1141.89" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1169.6" y="501" width="0.1" height="15.0" fill="rgb(212,32,38)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dec_pending (1 samples, 0.01%)</title><rect x="32.8" y="309" width="0.1" height="15.0" fill="rgb(225,28,47)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (40 samples, 0.45%)</title><rect x="302.9" y="277" width="5.3" height="15.0" fill="rgb(242,192,37)" rx="2" ry="2" />
<text text-anchor="" x="305.91" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decrement_reference (6 samples, 0.07%)</title><rect x="345.6" y="501" width="0.7" height="15.0" fill="rgb(222,171,41)" rx="2" ry="2" />
<text text-anchor="" x="348.55" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__napi_schedule (1 samples, 0.01%)</title><rect x="898.1" y="421" width="0.2" height="15.0" fill="rgb(228,27,5)" rx="2" ry="2" />
<text text-anchor="" x="901.14" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfprintf_chk (1 samples, 0.01%)</title><rect x="483.7" y="629" width="0.1" height="15.0" fill="rgb(216,58,26)" rx="2" ry="2" />
<text text-anchor="" x="486.67" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.01%)</title><rect x="388.3" y="229" width="0.2" height="15.0" fill="rgb(237,67,52)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (139 samples, 1.56%)</title><rect x="1133.5" y="373" width="18.4" height="15.0" fill="rgb(221,96,33)" rx="2" ry="2" />
<text text-anchor="" x="1136.46" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (8 samples, 0.09%)</title><rect x="892.3" y="341" width="1.1" height="15.0" fill="rgb(220,229,54)" rx="2" ry="2" />
<text text-anchor="" x="895.32" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromwire (1 samples, 0.01%)</title><rect x="48.7" y="613" width="0.1" height="15.0" fill="rgb(248,153,18)" rx="2" ry="2" />
<text text-anchor="" x="51.67" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_bts_enable_local (2 samples, 0.02%)</title><rect x="577.8" y="293" width="0.3" height="15.0" fill="rgb(215,34,12)" rx="2" ry="2" />
<text text-anchor="" x="580.82" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="1151.6" y="277" width="0.1" height="15.0" fill="rgb(232,177,22)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="1108.8" y="549" width="0.2" height="15.0" fill="rgb(228,40,18)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="280.0" y="485" width="0.1" height="15.0" fill="rgb(212,140,36)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_freestruct (3 samples, 0.03%)</title><rect x="1188.1" y="597" width="0.4" height="15.0" fill="rgb(246,16,4)" rx="2" ry="2" />
<text text-anchor="" x="1191.15" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (204 samples, 2.29%)</title><rect x="119.6" y="357" width="27.1" height="15.0" fill="rgb(241,153,44)" rx="2" ry="2" />
<text text-anchor="" x="122.64" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (445 samples, 4.99%)</title><rect x="182.5" y="597" width="59.0" height="15.0" fill="rgb(227,124,42)" rx="2" ry="2" />
<text text-anchor="" x="185.54" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >native..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_sock_fast (1 samples, 0.01%)</title><rect x="296.3" y="325" width="0.1" height="15.0" fill="rgb(229,172,6)" rx="2" ry="2" />
<text text-anchor="" x="299.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_find (117 samples, 1.31%)</title><rect x="483.9" y="597" width="15.5" height="15.0" fill="rgb(225,46,47)" rx="2" ry="2" />
<text text-anchor="" x="486.93" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mark_wake_futex (16 samples, 0.18%)</title><rect x="604.6" y="565" width="2.1" height="15.0" fill="rgb(239,57,43)" rx="2" ry="2" />
<text text-anchor="" x="607.57" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_get (3 samples, 0.03%)</title><rect x="404.7" y="517" width="0.4" height="15.0" fill="rgb(219,143,24)" rx="2" ry="2" />
<text text-anchor="" x="407.75" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (2 samples, 0.02%)</title><rect x="447.3" y="325" width="0.2" height="15.0" fill="rgb(254,158,28)" rx="2" ry="2" />
<text text-anchor="" x="450.25" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (4 samples, 0.04%)</title><rect x="298.7" y="405" width="0.5" height="15.0" fill="rgb(224,92,14)" rx="2" ry="2" />
<text text-anchor="" x="301.68" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (1 samples, 0.01%)</title><rect x="308.1" y="245" width="0.1" height="15.0" fill="rgb(224,37,20)" rx="2" ry="2" />
<text text-anchor="" x="311.08" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_alloc_da_blocks (1 samples, 0.01%)</title><rect x="326.1" y="437" width="0.1" height="15.0" fill="rgb(238,182,42)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_forward (1 samples, 0.01%)</title><rect x="271.8" y="501" width="0.1" height="15.0" fill="rgb(235,43,12)" rx="2" ry="2" />
<text text-anchor="" x="274.80" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_gettemprdataset (1 samples, 0.01%)</title><rect x="498.0" y="565" width="0.1" height="15.0" fill="rgb(246,140,38)" rx="2" ry="2" />
<text text-anchor="" x="500.97" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color (1 samples, 0.01%)</title><rect x="305.8" y="165" width="0.2" height="15.0" fill="rgb(242,64,4)" rx="2" ry="2" />
<text text-anchor="" x="308.83" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.01%)</title><rect x="1184.2" y="405" width="0.1" height="15.0" fill="rgb(234,72,6)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (1 samples, 0.01%)</title><rect x="296.8" y="405" width="0.2" height="15.0" fill="rgb(241,127,13)" rx="2" ry="2" />
<text text-anchor="" x="299.82" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_conntrack_in (1 samples, 0.01%)</title><rect x="287.2" y="261" width="0.1" height="15.0" fill="rgb(206,89,9)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="891.4" y="469" width="0.1" height="15.0" fill="rgb(229,81,10)" rx="2" ry="2" />
<text text-anchor="" x="894.39" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.02%)</title><rect x="438.9" y="517" width="0.3" height="15.0" fill="rgb(252,226,21)" rx="2" ry="2" />
<text text-anchor="" x="441.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="366.5" y="405" width="0.1" height="15.0" fill="rgb(214,214,37)" rx="2" ry="2" />
<text text-anchor="" x="369.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netdev_pick_tx (2 samples, 0.02%)</title><rect x="1116.6" y="245" width="0.3" height="15.0" fill="rgb(230,7,8)" rx="2" ry="2" />
<text text-anchor="" x="1119.64" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_tick_fair (1 samples, 0.01%)</title><rect x="651.6" y="469" width="0.1" height="15.0" fill="rgb(225,128,21)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (1 samples, 0.01%)</title><rect x="389.9" y="485" width="0.1" height="15.0" fill="rgb(215,54,23)" rx="2" ry="2" />
<text text-anchor="" x="392.91" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_check_callbacks (1 samples, 0.01%)</title><rect x="321.9" y="325" width="0.1" height="15.0" fill="rgb(235,225,5)" rx="2" ry="2" />
<text text-anchor="" x="324.85" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dst_release (1 samples, 0.01%)</title><rect x="1143.0" y="277" width="0.1" height="15.0" fill="rgb(219,209,8)" rx="2" ry="2" />
<text text-anchor="" x="1145.99" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_dispatch_removeresponse (1 samples, 0.01%)</title><rect x="46.2" y="613" width="0.1" height="15.0" fill="rgb(205,59,9)" rx="2" ry="2" />
<text text-anchor="" x="49.15" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hash_futex (2 samples, 0.02%)</title><rect x="646.4" y="549" width="0.3" height="15.0" fill="rgb(215,114,38)" rx="2" ry="2" />
<text text-anchor="" x="649.41" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (2 samples, 0.02%)</title><rect x="10.3" y="613" width="0.2" height="15.0" fill="rgb(223,154,25)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filename_lookup (1 samples, 0.01%)</title><rect x="57.3" y="549" width="0.1" height="15.0" fill="rgb(252,32,35)" rx="2" ry="2" />
<text text-anchor="" x="60.27" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromregion (1 samples, 0.01%)</title><rect x="503.1" y="549" width="0.2" height="15.0" fill="rgb(236,146,47)" rx="2" ry="2" />
<text text-anchor="" x="506.13" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mempool_create (17 samples, 0.19%)</title><rect x="422.5" y="549" width="2.2" height="15.0" fill="rgb(236,40,5)" rx="2" ry="2" />
<text text-anchor="" x="425.49" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>random (1 samples, 0.01%)</title><rect x="72.6" y="613" width="0.2" height="15.0" fill="rgb(236,20,33)" rx="2" ry="2" />
<text text-anchor="" x="75.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_equal (1 samples, 0.01%)</title><rect x="509.8" y="629" width="0.1" height="15.0" fill="rgb(209,12,26)" rx="2" ry="2" />
<text text-anchor="" x="512.76" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="58.3" y="437" width="0.2" height="15.0" fill="rgb(208,98,25)" rx="2" ry="2" />
<text text-anchor="" x="61.33" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.02%)</title><rect x="341.8" y="517" width="0.3" height="15.0" fill="rgb(228,227,50)" rx="2" ry="2" />
<text text-anchor="" x="344.85" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="671.8" y="389" width="0.2" height="15.0" fill="rgb(253,79,54)" rx="2" ry="2" />
<text text-anchor="" x="674.84" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run (5 samples, 0.06%)</title><rect x="97.5" y="453" width="0.7" height="15.0" fill="rgb(221,93,54)" rx="2" ry="2" />
<text text-anchor="" x="100.53" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (1 samples, 0.01%)</title><rect x="82.2" y="437" width="0.1" height="15.0" fill="rgb(253,133,49)" rx="2" ry="2" />
<text text-anchor="" x="85.17" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="546.2" y="565" width="0.1" height="15.0" fill="rgb(209,32,29)" rx="2" ry="2" />
<text text-anchor="" x="549.17" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="1151.6" y="165" width="0.1" height="15.0" fill="rgb(237,209,28)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_event_allocate (1 samples, 0.01%)</title><rect x="392.8" y="581" width="0.2" height="15.0" fill="rgb(210,87,36)" rx="2" ry="2" />
<text text-anchor="" x="395.83" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_rcv (1 samples, 0.01%)</title><rect x="481.8" y="325" width="0.1" height="15.0" fill="rgb(216,193,6)" rx="2" ry="2" />
<text text-anchor="" x="484.81" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filemap_flush (1 samples, 0.01%)</title><rect x="326.1" y="421" width="0.1" height="15.0" fill="rgb(239,60,4)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (3 samples, 0.03%)</title><rect x="304.1" y="245" width="0.4" height="15.0" fill="rgb(207,145,8)" rx="2" ry="2" />
<text text-anchor="" x="307.11" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (3 samples, 0.03%)</title><rect x="253.7" y="485" width="0.4" height="15.0" fill="rgb(216,33,52)" rx="2" ry="2" />
<text text-anchor="" x="256.65" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_fwrite (20 samples, 0.22%)</title><rect x="78.7" y="629" width="2.7" height="15.0" fill="rgb(243,169,44)" rx="2" ry="2" />
<text text-anchor="" x="81.73" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (10 samples, 0.11%)</title><rect x="406.3" y="501" width="1.4" height="15.0" fill="rgb(254,22,48)" rx="2" ry="2" />
<text text-anchor="" x="409.33" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_mtu (1 samples, 0.01%)</title><rect x="1130.3" y="373" width="0.1" height="15.0" fill="rgb(216,204,1)" rx="2" ry="2" />
<text text-anchor="" x="1133.28" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_edge_irq (1 samples, 0.01%)</title><rect x="898.1" y="485" width="0.2" height="15.0" fill="rgb(216,141,49)" rx="2" ry="2" />
<text text-anchor="" x="901.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="310.5" y="165" width="0.1" height="15.0" fill="rgb(231,19,47)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (6 samples, 0.07%)</title><rect x="379.3" y="501" width="0.8" height="15.0" fill="rgb(218,162,43)" rx="2" ry="2" />
<text text-anchor="" x="382.32" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullcompare (6 samples, 0.07%)</title><rect x="525.1" y="533" width="0.8" height="15.0" fill="rgb(220,113,19)" rx="2" ry="2" />
<text text-anchor="" x="528.12" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (2 samples, 0.02%)</title><rect x="384.5" y="309" width="0.3" height="15.0" fill="rgb(251,146,19)" rx="2" ry="2" />
<text text-anchor="" x="387.49" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="81.1" y="549" width="0.1" height="15.0" fill="rgb(232,42,17)" rx="2" ry="2" />
<text text-anchor="" x="84.11" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (5 samples, 0.06%)</title><rect x="39.9" y="613" width="0.7" height="15.0" fill="rgb(207,104,46)" rx="2" ry="2" />
<text text-anchor="" x="42.93" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="242.1" y="597" width="0.2" height="15.0" fill="rgb(247,147,44)" rx="2" ry="2" />
<text text-anchor="" x="245.13" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getrdata (6 samples, 0.07%)</title><rect x="403.8" y="517" width="0.8" height="15.0" fill="rgb(219,206,25)" rx="2" ry="2" />
<text text-anchor="" x="406.82" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (50 samples, 0.56%)</title><rect x="616.0" y="517" width="6.6" height="15.0" fill="rgb(226,189,46)" rx="2" ry="2" />
<text text-anchor="" x="618.96" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="32.8" y="549" width="0.1" height="15.0" fill="rgb(242,215,27)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_getspecific@plt (1 samples, 0.01%)</title><rect x="1109.8" y="629" width="0.1" height="15.0" fill="rgb(208,76,10)" rx="2" ry="2" />
<text text-anchor="" x="1112.75" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (48 samples, 0.54%)</title><rect x="83.8" y="341" width="6.3" height="15.0" fill="rgb(244,46,48)" rx="2" ry="2" />
<text text-anchor="" x="86.76" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towiresorted.isra.3 (4 samples, 0.04%)</title><rect x="440.9" y="501" width="0.5" height="15.0" fill="rgb(218,30,35)" rx="2" ry="2" />
<text text-anchor="" x="443.90" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (1 samples, 0.01%)</title><rect x="1184.6" y="421" width="0.1" height="15.0" fill="rgb(207,176,24)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (4 samples, 0.04%)</title><rect x="453.9" y="357" width="0.5" height="15.0" fill="rgb(208,16,35)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (2 samples, 0.02%)</title><rect x="1113.6" y="325" width="0.3" height="15.0" fill="rgb(205,185,41)" rx="2" ry="2" />
<text text-anchor="" x="1116.59" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="1108.8" y="613" width="0.2" height="15.0" fill="rgb(229,119,9)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="477.6" y="485" width="0.1" height="15.0" fill="rgb(214,166,30)" rx="2" ry="2" />
<text text-anchor="" x="480.58" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="1184.2" y="533" width="0.1" height="15.0" fill="rgb(206,69,40)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (3 samples, 0.03%)</title><rect x="100.2" y="597" width="0.4" height="15.0" fill="rgb(215,41,5)" rx="2" ry="2" />
<text text-anchor="" x="103.18" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (20 samples, 0.22%)</title><rect x="648.1" y="613" width="2.7" height="15.0" fill="rgb(227,195,4)" rx="2" ry="2" />
<text text-anchor="" x="651.13" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="665.9" y="501" width="0.1" height="15.0" fill="rgb(215,71,16)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_msghdr_from_user (1 samples, 0.01%)</title><rect x="372.2" y="485" width="0.1" height="15.0" fill="rgb(218,103,29)" rx="2" ry="2" />
<text text-anchor="" x="375.17" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (3 samples, 0.03%)</title><rect x="411.6" y="549" width="0.4" height="15.0" fill="rgb(249,98,25)" rx="2" ry="2" />
<text text-anchor="" x="414.63" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (1 samples, 0.01%)</title><rect x="1118.0" y="181" width="0.1" height="15.0" fill="rgb(211,56,49)" rx="2" ry="2" />
<text text-anchor="" x="1120.96" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raid_end_bio_io (1 samples, 0.01%)</title><rect x="32.8" y="373" width="0.1" height="15.0" fill="rgb(222,63,43)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="481.7" y="389" width="0.1" height="15.0" fill="rgb(219,159,38)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_hasbuffer (1 samples, 0.01%)</title><rect x="343.7" y="533" width="0.1" height="15.0" fill="rgb(242,118,20)" rx="2" ry="2" />
<text text-anchor="" x="346.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (1 samples, 0.01%)</title><rect x="319.2" y="421" width="0.1" height="15.0" fill="rgb(238,171,51)" rx="2" ry="2" />
<text text-anchor="" x="322.20" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (1 samples, 0.01%)</title><rect x="448.8" y="229" width="0.2" height="15.0" fill="rgb(232,43,28)" rx="2" ry="2" />
<text text-anchor="" x="451.84" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="671.0" y="501" width="0.2" height="15.0" fill="rgb(225,131,36)" rx="2" ry="2" />
<text text-anchor="" x="674.04" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_sendmsg (201 samples, 2.26%)</title><rect x="1125.2" y="421" width="26.7" height="15.0" fill="rgb(205,150,12)" rx="2" ry="2" />
<text text-anchor="" x="1128.25" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="308.9" y="341" width="0.1" height="15.0" fill="rgb(232,228,39)" rx="2" ry="2" />
<text text-anchor="" x="311.87" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="388.3" y="389" width="0.2" height="15.0" fill="rgb(235,155,13)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="592.4" y="533" width="0.1" height="15.0" fill="rgb(213,45,24)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_request (16 samples, 0.18%)</title><rect x="1167.6" y="613" width="2.1" height="15.0" fill="rgb(209,95,49)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_smp_call_function_single_interrupt (1 samples, 0.01%)</title><rect x="341.6" y="485" width="0.1" height="15.0" fill="rgb(207,12,53)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (13 samples, 0.15%)</title><rect x="612.8" y="501" width="1.7" height="15.0" fill="rgb(207,27,28)" rx="2" ry="2" />
<text text-anchor="" x="615.78" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getsection (38 samples, 0.43%)</title><rect x="269.5" y="549" width="5.1" height="15.0" fill="rgb(220,145,40)" rx="2" ry="2" />
<text text-anchor="" x="272.54" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_isassociated (1 samples, 0.01%)</title><rect x="536.4" y="581" width="0.1" height="15.0" fill="rgb(210,138,52)" rx="2" ry="2" />
<text text-anchor="" x="539.37" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="374.2" y="405" width="0.1" height="15.0" fill="rgb(210,30,52)" rx="2" ry="2" />
<text text-anchor="" x="377.16" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>jbd2_journal_get_write_access (2 samples, 0.02%)</title><rect x="58.6" y="421" width="0.3" height="15.0" fill="rgb(254,63,50)" rx="2" ry="2" />
<text text-anchor="" x="61.60" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sys_recvmsg (4 samples, 0.04%)</title><rect x="453.3" y="469" width="0.6" height="15.0" fill="rgb(242,53,19)" rx="2" ry="2" />
<text text-anchor="" x="456.34" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event (1 samples, 0.01%)</title><rect x="74.5" y="549" width="0.1" height="15.0" fill="rgb(210,213,19)" rx="2" ry="2" />
<text text-anchor="" x="77.49" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlink@plt (1 samples, 0.01%)</title><rect x="76.9" y="613" width="0.1" height="15.0" fill="rgb(231,26,0)" rx="2" ry="2" />
<text text-anchor="" x="79.87" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_setopt (2 samples, 0.02%)</title><rect x="421.0" y="549" width="0.3" height="15.0" fill="rgb(207,67,23)" rx="2" ry="2" />
<text text-anchor="" x="424.03" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_putuint32 (2 samples, 0.02%)</title><rect x="1156.6" y="533" width="0.3" height="15.0" fill="rgb(209,208,16)" rx="2" ry="2" />
<text text-anchor="" x="1159.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (21 samples, 0.24%)</title><rect x="243.3" y="597" width="2.8" height="15.0" fill="rgb(247,114,39)" rx="2" ry="2" />
<text text-anchor="" x="246.33" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_gettemprdataset (7 samples, 0.08%)</title><rect x="428.6" y="565" width="0.9" height="15.0" fill="rgb(245,148,16)" rx="2" ry="2" />
<text text-anchor="" x="431.58" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_gettempname (1 samples, 0.01%)</title><rect x="1168.7" y="485" width="0.1" height="15.0" fill="rgb(210,211,20)" rx="2" ry="2" />
<text text-anchor="" x="1171.68" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_send_skb (16 samples, 0.18%)</title><rect x="447.9" y="357" width="2.1" height="15.0" fill="rgb(241,88,23)" rx="2" ry="2" />
<text text-anchor="" x="450.91" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="375.5" y="501" width="0.1" height="15.0" fill="rgb(248,184,46)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_balance (5 samples, 0.06%)</title><rect x="178.7" y="469" width="0.7" height="15.0" fill="rgb(231,70,7)" rx="2" ry="2" />
<text text-anchor="" x="181.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (70 samples, 0.79%)</title><rect x="249.2" y="581" width="9.2" height="15.0" fill="rgb(206,61,16)" rx="2" ry="2" />
<text text-anchor="" x="252.15" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_wouldlog (1 samples, 0.01%)</title><rect x="1112.0" y="533" width="0.1" height="15.0" fill="rgb(228,173,29)" rx="2" ry="2" />
<text text-anchor="" x="1115.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (1 samples, 0.01%)</title><rect x="500.4" y="533" width="0.1" height="15.0" fill="rgb(211,3,28)" rx="2" ry="2" />
<text text-anchor="" x="503.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_from_iter (2 samples, 0.02%)</title><rect x="309.4" y="357" width="0.3" height="15.0" fill="rgb(242,137,51)" rx="2" ry="2" />
<text text-anchor="" x="312.40" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ip_route_output_key_hash (2 samples, 0.02%)</title><rect x="447.7" y="357" width="0.2" height="15.0" fill="rgb(246,6,17)" rx="2" ry="2" />
<text text-anchor="" x="450.65" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (1 samples, 0.01%)</title><rect x="447.3" y="309" width="0.1" height="15.0" fill="rgb(219,41,42)" rx="2" ry="2" />
<text text-anchor="" x="450.25" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_finish_plug (1 samples, 0.01%)</title><rect x="454.9" y="341" width="0.2" height="15.0" fill="rgb(248,14,13)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (6 samples, 0.07%)</title><rect x="352.7" y="549" width="0.8" height="15.0" fill="rgb(245,194,6)" rx="2" ry="2" />
<text text-anchor="" x="355.70" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (219 samples, 2.46%)</title><rect x="146.7" y="373" width="29.0" height="15.0" fill="rgb(211,86,52)" rx="2" ry="2" />
<text text-anchor="" x="149.66" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >na..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="258.4" y="453" width="0.2" height="15.0" fill="rgb(253,211,24)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_renderend (4 samples, 0.04%)</title><rect x="440.9" y="533" width="0.5" height="15.0" fill="rgb(205,7,53)" rx="2" ry="2" />
<text text-anchor="" x="443.90" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_addname (1 samples, 0.01%)</title><rect x="46.3" y="613" width="0.1" height="15.0" fill="rgb(227,98,10)" rx="2" ry="2" />
<text text-anchor="" x="49.28" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="342.8" y="453" width="0.1" height="15.0" fill="rgb(237,165,37)" rx="2" ry="2" />
<text text-anchor="" x="345.77" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_recvmsg (1 samples, 0.01%)</title><rect x="453.5" y="405" width="0.1" height="15.0" fill="rgb(219,71,34)" rx="2" ry="2" />
<text text-anchor="" x="456.48" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>socket_log.constprop.19 (2 samples, 0.02%)</title><rect x="375.6" y="549" width="0.3" height="15.0" fill="rgb(213,209,0)" rx="2" ry="2" />
<text text-anchor="" x="378.61" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (29 samples, 0.33%)</title><rect x="383.2" y="341" width="3.8" height="15.0" fill="rgb(229,37,30)" rx="2" ry="2" />
<text text-anchor="" x="386.16" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sch_direct_xmit (53 samples, 0.59%)</title><rect x="1144.1" y="277" width="7.0" height="15.0" fill="rgb(240,184,44)" rx="2" ry="2" />
<text text-anchor="" x="1147.05" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (1,448 samples, 16.25%)</title><rect x="684.9" y="421" width="191.8" height="15.0" fill="rgb(245,86,18)" rx="2" ry="2" />
<text text-anchor="" x="687.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intel_pmu_enable_all</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (12 samples, 0.13%)</title><rect x="339.3" y="533" width="1.6" height="15.0" fill="rgb(253,24,42)" rx="2" ry="2" />
<text text-anchor="" x="342.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (4 samples, 0.04%)</title><rect x="387.5" y="405" width="0.6" height="15.0" fill="rgb(239,63,29)" rx="2" ry="2" />
<text text-anchor="" x="390.53" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up (50 samples, 0.56%)</title><rect x="878.1" y="405" width="6.7" height="15.0" fill="rgb(237,158,40)" rx="2" ry="2" />
<text text-anchor="" x="881.15" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (2 samples, 0.02%)</title><rect x="609.1" y="517" width="0.2" height="15.0" fill="rgb(246,130,19)" rx="2" ry="2" />
<text text-anchor="" x="612.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mem_get (2 samples, 0.02%)</title><rect x="400.8" y="549" width="0.2" height="15.0" fill="rgb(210,66,54)" rx="2" ry="2" />
<text text-anchor="" x="403.77" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb (1 samples, 0.01%)</title><rect x="1184.2" y="453" width="0.1" height="15.0" fill="rgb(245,7,37)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (200 samples, 2.24%)</title><rect x="749.4" y="309" width="26.5" height="15.0" fill="rgb(231,56,4)" rx="2" ry="2" />
<text text-anchor="" x="752.44" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_additionaldata (9 samples, 0.10%)</title><rect x="320.8" y="501" width="1.2" height="15.0" fill="rgb(234,95,32)" rx="2" ry="2" />
<text text-anchor="" x="323.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_issubdomain (2 samples, 0.02%)</title><rect x="495.7" y="501" width="0.3" height="15.0" fill="rgb(236,162,27)" rx="2" ry="2" />
<text text-anchor="" x="498.72" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_bio_write_page (1 samples, 0.01%)</title><rect x="325.4" y="325" width="0.2" height="15.0" fill="rgb(252,192,37)" rx="2" ry="2" />
<text text-anchor="" x="328.43" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (2 samples, 0.02%)</title><rect x="776.8" y="389" width="0.3" height="15.0" fill="rgb(235,161,17)" rx="2" ry="2" />
<text text-anchor="" x="779.85" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (4 samples, 0.04%)</title><rect x="411.0" y="533" width="0.5" height="15.0" fill="rgb(229,115,29)" rx="2" ry="2" />
<text text-anchor="" x="413.97" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (4 samples, 0.04%)</title><rect x="453.9" y="341" width="0.5" height="15.0" fill="rgb(211,81,40)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__radix_tree_lookup (1 samples, 0.01%)</title><rect x="59.0" y="309" width="0.1" height="15.0" fill="rgb(218,154,28)" rx="2" ry="2" />
<text text-anchor="" x="62.00" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (6 samples, 0.07%)</title><rect x="300.4" y="373" width="0.8" height="15.0" fill="rgb(218,219,4)" rx="2" ry="2" />
<text text-anchor="" x="303.40" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="470.6" y="437" width="0.1" height="15.0" fill="rgb(240,204,14)" rx="2" ry="2" />
<text text-anchor="" x="473.56" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bind_rdataset (1 samples, 0.01%)</title><rect x="43.1" y="613" width="0.1" height="15.0" fill="rgb(239,42,31)" rx="2" ry="2" />
<text text-anchor="" x="46.11" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>filemap_write_and_wait_range (2 samples, 0.02%)</title><rect x="454.9" y="405" width="0.3" height="15.0" fill="rgb(214,87,32)" rx="2" ry="2" />
<text text-anchor="" x="457.93" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>truncate_inode_pages_final (3 samples, 0.03%)</title><rect x="325.7" y="405" width="0.4" height="15.0" fill="rgb(213,94,46)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (15 samples, 0.17%)</title><rect x="891.4" y="485" width="2.0" height="15.0" fill="rgb(229,218,50)" rx="2" ry="2" />
<text text-anchor="" x="894.39" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_wait_queue (4 samples, 0.04%)</title><rect x="35.3" y="517" width="0.5" height="15.0" fill="rgb(229,134,49)" rx="2" ry="2" />
<text text-anchor="" x="38.29" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sk_perm (2 samples, 0.02%)</title><rect x="432.2" y="357" width="0.2" height="15.0" fill="rgb(215,206,5)" rx="2" ry="2" />
<text text-anchor="" x="435.16" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (46 samples, 0.52%)</title><rect x="1112.9" y="437" width="6.1" height="15.0" fill="rgb(236,191,30)" rx="2" ry="2" />
<text text-anchor="" x="1115.93" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.01%)</title><rect x="592.4" y="405" width="0.1" height="15.0" fill="rgb(224,200,22)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="546.2" y="485" width="0.1" height="15.0" fill="rgb(228,0,44)" rx="2" ry="2" />
<text text-anchor="" x="549.17" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (3 samples, 0.03%)</title><rect x="253.7" y="469" width="0.4" height="15.0" fill="rgb(244,100,8)" rx="2" ry="2" />
<text text-anchor="" x="256.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sooner (1 samples, 0.01%)</title><rect x="393.1" y="549" width="0.1" height="15.0" fill="rgb(251,121,33)" rx="2" ry="2" />
<text text-anchor="" x="396.09" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (1 samples, 0.01%)</title><rect x="390.3" y="437" width="0.1" height="15.0" fill="rgb(239,55,48)" rx="2" ry="2" />
<text text-anchor="" x="393.31" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>internal_recv (319 samples, 3.58%)</title><rect x="350.5" y="581" width="42.2" height="15.0" fill="rgb(228,147,34)" rx="2" ry="2" />
<text text-anchor="" x="353.45" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >int..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="507.2" y="517" width="0.2" height="15.0" fill="rgb(234,222,0)" rx="2" ry="2" />
<text text-anchor="" x="510.24" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="309.1" y="293" width="0.2" height="15.0" fill="rgb(224,96,19)" rx="2" ry="2" />
<text text-anchor="" x="312.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mem_attach (1 samples, 0.01%)</title><rect x="402.1" y="533" width="0.1" height="15.0" fill="rgb(228,44,17)" rx="2" ry="2" />
<text text-anchor="" x="405.10" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_nmi_handler (16 samples, 0.18%)</title><rect x="576.9" y="325" width="2.1" height="15.0" fill="rgb(223,46,15)" rx="2" ry="2" />
<text text-anchor="" x="579.89" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (8 samples, 0.09%)</title><rect x="671.8" y="405" width="1.1" height="15.0" fill="rgb(207,217,19)" rx="2" ry="2" />
<text text-anchor="" x="674.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="422.1" y="437" width="0.1" height="15.0" fill="rgb(250,75,13)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_decompress_init (1 samples, 0.01%)</title><rect x="46.0" y="613" width="0.2" height="15.0" fill="rgb(252,223,51)" rx="2" ry="2" />
<text text-anchor="" x="49.02" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_from_iter_iovec (1 samples, 0.01%)</title><rect x="388.7" y="437" width="0.2" height="15.0" fill="rgb(229,117,38)" rx="2" ry="2" />
<text text-anchor="" x="391.72" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (1 samples, 0.01%)</title><rect x="454.1" y="245" width="0.2" height="15.0" fill="rgb(207,204,19)" rx="2" ry="2" />
<text text-anchor="" x="457.14" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_futex (2 samples, 0.02%)</title><rect x="241.5" y="597" width="0.2" height="15.0" fill="rgb(205,123,40)" rx="2" ry="2" />
<text text-anchor="" x="244.47" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mempool_put (1 samples, 0.01%)</title><rect x="315.5" y="485" width="0.1" height="15.0" fill="rgb(223,134,48)" rx="2" ry="2" />
<text text-anchor="" x="318.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_xmit_frame_ring (8 samples, 0.09%)</title><rect x="1146.0" y="229" width="1.1" height="15.0" fill="rgb(240,111,14)" rx="2" ry="2" />
<text text-anchor="" x="1149.04" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>run (16 samples, 0.18%)</title><rect x="1167.6" y="629" width="2.1" height="15.0" fill="rgb(220,66,19)" rx="2" ry="2" />
<text text-anchor="" x="1170.62" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_conntrack_find_get (2 samples, 0.02%)</title><rect x="448.2" y="245" width="0.2" height="15.0" fill="rgb(225,13,5)" rx="2" ry="2" />
<text text-anchor="" x="451.18" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ktime_get_update_offsets_now (1 samples, 0.01%)</title><rect x="490.3" y="469" width="0.1" height="15.0" fill="rgb(216,192,8)" rx="2" ry="2" />
<text text-anchor="" x="493.29" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queued_spin_lock_slowpath (1 samples, 0.01%)</title><rect x="296.3" y="293" width="0.1" height="15.0" fill="rgb(252,91,10)" rx="2" ry="2" />
<text text-anchor="" x="299.29" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_senddone (1 samples, 0.01%)</title><rect x="1111.5" y="549" width="0.1" height="15.0" fill="rgb(249,22,0)" rx="2" ry="2" />
<text text-anchor="" x="1114.47" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (1 samples, 0.01%)</title><rect x="74.9" y="501" width="0.1" height="15.0" fill="rgb(249,194,14)" rx="2" ry="2" />
<text text-anchor="" x="77.89" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="1158.6" y="469" width="0.1" height="15.0" fill="rgb(230,55,40)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stats_increment (1 samples, 0.01%)</title><rect x="66.0" y="613" width="0.1" height="15.0" fill="rgb(228,74,2)" rx="2" ry="2" />
<text text-anchor="" x="69.01" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_flush_plug_list (1 samples, 0.01%)</title><rect x="325.2" y="341" width="0.1" height="15.0" fill="rgb(234,17,46)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="388.3" y="245" width="0.2" height="15.0" fill="rgb(206,224,14)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (8 samples, 0.09%)</title><rect x="69.1" y="613" width="1.0" height="15.0" fill="rgb(252,10,40)" rx="2" ry="2" />
<text text-anchor="" x="72.06" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_irq_work_interrupt (60 samples, 0.67%)</title><rect x="876.8" y="485" width="8.0" height="15.0" fill="rgb(219,199,37)" rx="2" ry="2" />
<text text-anchor="" x="879.83" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_run_list (2 samples, 0.02%)</title><rect x="631.3" y="453" width="0.3" height="15.0" fill="rgb(211,225,7)" rx="2" ry="2" />
<text text-anchor="" x="634.32" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_iterate (1 samples, 0.01%)</title><rect x="449.9" y="293" width="0.1" height="15.0" fill="rgb(240,153,11)" rx="2" ry="2" />
<text text-anchor="" x="452.90" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_wouldlog (2 samples, 0.02%)</title><rect x="482.3" y="565" width="0.3" height="15.0" fill="rgb(250,214,21)" rx="2" ry="2" />
<text text-anchor="" x="485.34" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (1 samples, 0.01%)</title><rect x="83.5" y="485" width="0.1" height="15.0" fill="rgb(224,147,43)" rx="2" ry="2" />
<text text-anchor="" x="86.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (2 samples, 0.02%)</title><rect x="256.8" y="437" width="0.3" height="15.0" fill="rgb(205,180,25)" rx="2" ry="2" />
<text text-anchor="" x="259.83" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.02%)</title><rect x="896.4" y="533" width="0.3" height="15.0" fill="rgb(230,98,25)" rx="2" ry="2" />
<text text-anchor="" x="899.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_checkaclsilent (1 samples, 0.01%)</title><rect x="1169.6" y="549" width="0.1" height="15.0" fill="rgb(230,85,13)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (1 samples, 0.01%)</title><rect x="538.9" y="453" width="0.1" height="15.0" fill="rgb(205,140,35)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>getname (2 samples, 0.02%)</title><rect x="271.7" y="533" width="0.2" height="15.0" fill="rgb(216,49,50)" rx="2" ry="2" />
<text text-anchor="" x="274.66" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mem_get (1 samples, 0.01%)</title><rect x="350.2" y="549" width="0.1" height="15.0" fill="rgb(216,215,1)" rx="2" ry="2" />
<text text-anchor="" x="353.19" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_bts_enable_local (1 samples, 0.01%)</title><rect x="876.6" y="405" width="0.1" height="15.0" fill="rgb(226,168,2)" rx="2" ry="2" />
<text text-anchor="" x="879.56" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_unregister_pollwait.isra.7 (1 samples, 0.01%)</title><rect x="31.7" y="581" width="0.1" height="15.0" fill="rgb(226,85,19)" rx="2" ry="2" />
<text text-anchor="" x="34.72" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_clean_rx_irq (1 samples, 0.01%)</title><rect x="311.4" y="357" width="0.1" height="15.0" fill="rgb(223,57,20)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_sock_fast (2 samples, 0.02%)</title><rect x="366.2" y="421" width="0.3" height="15.0" fill="rgb(226,175,52)" rx="2" ry="2" />
<text text-anchor="" x="369.21" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (2 samples, 0.02%)</title><rect x="775.9" y="309" width="0.3" height="15.0" fill="rgb(228,181,26)" rx="2" ry="2" />
<text text-anchor="" x="778.92" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__set_page_dirty (1 samples, 0.01%)</title><rect x="38.7" y="405" width="0.2" height="15.0" fill="rgb(207,158,48)" rx="2" ry="2" />
<text text-anchor="" x="41.74" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (16 samples, 0.18%)</title><rect x="576.9" y="357" width="2.1" height="15.0" fill="rgb(211,218,29)" rx="2" ry="2" />
<text text-anchor="" x="579.89" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mempool_setfreemax (2 samples, 0.02%)</title><rect x="62.7" y="613" width="0.3" height="15.0" fill="rgb(238,159,50)" rx="2" ry="2" />
<text text-anchor="" x="65.70" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>task_waking_fair (2 samples, 0.02%)</title><rect x="304.5" y="245" width="0.3" height="15.0" fill="rgb(225,150,28)" rx="2" ry="2" />
<text text-anchor="" x="307.50" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>trigger_load_balance (1 samples, 0.01%)</title><rect x="673.0" y="357" width="0.2" height="15.0" fill="rgb(218,197,29)" rx="2" ry="2" />
<text text-anchor="" x="676.03" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.01%)</title><rect x="37.5" y="485" width="0.2" height="15.0" fill="rgb(253,113,13)" rx="2" ry="2" />
<text text-anchor="" x="40.54" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_write_space (1 samples, 0.01%)</title><rect x="1119.4" y="325" width="0.2" height="15.0" fill="rgb(237,194,3)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (1 samples, 0.01%)</title><rect x="643.8" y="485" width="0.1" height="15.0" fill="rgb(220,60,32)" rx="2" ry="2" />
<text text-anchor="" x="646.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (126 samples, 1.41%)</title><rect x="608.3" y="549" width="16.7" height="15.0" fill="rgb(247,164,32)" rx="2" ry="2" />
<text text-anchor="" x="611.28" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_clock (1 samples, 0.01%)</title><rect x="669.2" y="469" width="0.1" height="15.0" fill="rgb(211,172,4)" rx="2" ry="2" />
<text text-anchor="" x="672.19" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_recv (31 samples, 0.35%)</title><rect x="450.6" y="581" width="4.1" height="15.0" fill="rgb(220,5,4)" rx="2" ry="2" />
<text text-anchor="" x="453.56" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1 samples, 0.01%)</title><rect x="552.8" y="613" width="0.1" height="15.0" fill="rgb(217,116,7)" rx="2" ry="2" />
<text text-anchor="" x="555.79" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_init (1 samples, 0.01%)</title><rect x="1175.2" y="613" width="0.1" height="15.0" fill="rgb(246,170,23)" rx="2" ry="2" />
<text text-anchor="" x="1178.17" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="1151.6" y="309" width="0.1" height="15.0" fill="rgb(235,225,16)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromwire (2 samples, 0.02%)</title><rect x="404.0" y="485" width="0.2" height="15.0" fill="rgb(219,70,10)" rx="2" ry="2" />
<text text-anchor="" x="406.95" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_to_timespec (1 samples, 0.01%)</title><rect x="1149.5" y="229" width="0.1" height="15.0" fill="rgb(217,229,44)" rx="2" ry="2" />
<text text-anchor="" x="1152.48" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset (2 samples, 0.02%)</title><rect x="348.1" y="501" width="0.2" height="15.0" fill="rgb(253,168,35)" rx="2" ry="2" />
<text text-anchor="" x="351.07" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_find (2 samples, 0.02%)</title><rect x="72.0" y="613" width="0.2" height="15.0" fill="rgb(213,187,27)" rx="2" ry="2" />
<text text-anchor="" x="74.97" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_ct_deliver_cached_events (1 samples, 0.01%)</title><rect x="1151.5" y="293" width="0.1" height="15.0" fill="rgb(223,37,1)" rx="2" ry="2" />
<text text-anchor="" x="1154.47" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_dispatch_addresponse3 (8 samples, 0.09%)</title><rect x="429.8" y="533" width="1.0" height="15.0" fill="rgb(241,62,46)" rx="2" ry="2" />
<text text-anchor="" x="432.77" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mempool_destroy (1 samples, 0.01%)</title><rect x="325.0" y="549" width="0.2" height="15.0" fill="rgb(247,28,23)" rx="2" ry="2" />
<text text-anchor="" x="328.03" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.04%)</title><rect x="25.4" y="581" width="0.5" height="15.0" fill="rgb(239,7,10)" rx="2" ry="2" />
<text text-anchor="" x="28.36" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_check_events (1 samples, 0.01%)</title><rect x="38.5" y="389" width="0.1" height="15.0" fill="rgb(238,3,33)" rx="2" ry="2" />
<text text-anchor="" x="41.47" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_parse (1 samples, 0.01%)</title><rect x="46.5" y="613" width="0.2" height="15.0" fill="rgb(221,222,27)" rx="2" ry="2" />
<text text-anchor="" x="49.55" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_zonecut_callback (1 samples, 0.01%)</title><rect x="78.5" y="613" width="0.1" height="15.0" fill="rgb(211,164,19)" rx="2" ry="2" />
<text text-anchor="" x="81.46" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_q (1 samples, 0.01%)</title><rect x="245.8" y="533" width="0.2" height="15.0" fill="rgb(212,44,36)" rx="2" ry="2" />
<text text-anchor="" x="248.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="297.5" y="485" width="0.1" height="15.0" fill="rgb(248,37,50)" rx="2" ry="2" />
<text text-anchor="" x="300.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uint32_fromregion.isra.8 (1 samples, 0.01%)</title><rect x="1170.1" y="517" width="0.2" height="15.0" fill="rgb(225,85,10)" rx="2" ry="2" />
<text text-anchor="" x="1173.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_stdtime_get (2 samples, 0.02%)</title><rect x="66.3" y="613" width="0.2" height="15.0" fill="rgb(223,74,44)" rx="2" ry="2" />
<text text-anchor="" x="69.28" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdata_fromwire (7 samples, 0.08%)</title><rect x="271.9" y="517" width="1.0" height="15.0" fill="rgb(209,95,26)" rx="2" ry="2" />
<text text-anchor="" x="274.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>findnodeintree (1 samples, 0.01%)</title><rect x="587.8" y="629" width="0.1" height="15.0" fill="rgb(250,171,36)" rx="2" ry="2" />
<text text-anchor="" x="590.75" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagevec_lookup (1 samples, 0.01%)</title><rect x="325.6" y="341" width="0.1" height="15.0" fill="rgb(234,72,47)" rx="2" ry="2" />
<text text-anchor="" x="328.56" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>socket_recv (145 samples, 1.63%)</title><rect x="292.5" y="501" width="19.2" height="15.0" fill="rgb(237,137,2)" rx="2" ry="2" />
<text text-anchor="" x="295.45" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (16 samples, 0.18%)</title><rect x="1127.4" y="357" width="2.1" height="15.0" fill="rgb(246,178,10)" rx="2" ry="2" />
<text text-anchor="" x="1130.37" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (3 samples, 0.03%)</title><rect x="453.3" y="437" width="0.4" height="15.0" fill="rgb(238,119,30)" rx="2" ry="2" />
<text text-anchor="" x="456.34" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (142 samples, 1.59%)</title><rect x="81.4" y="597" width="18.8" height="15.0" fill="rgb(245,21,4)" rx="2" ry="2" />
<text text-anchor="" x="84.37" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_cmsg_recv_offset (2 samples, 0.02%)</title><rect x="295.8" y="341" width="0.2" height="15.0" fill="rgb(231,51,51)" rx="2" ry="2" />
<text text-anchor="" x="298.76" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towiresorted.isra.3 (2 samples, 0.02%)</title><rect x="441.4" y="501" width="0.3" height="15.0" fill="rgb(226,18,24)" rx="2" ry="2" />
<text text-anchor="" x="444.43" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_additionaldata (34 samples, 0.38%)</title><rect x="493.1" y="565" width="4.5" height="15.0" fill="rgb(245,105,27)" rx="2" ry="2" />
<text text-anchor="" x="496.07" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_call_function_single_interrupt (1 samples, 0.01%)</title><rect x="341.6" y="501" width="0.1" height="15.0" fill="rgb(250,147,30)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_packet (1 samples, 0.01%)</title><rect x="1116.0" y="277" width="0.1" height="15.0" fill="rgb(207,163,11)" rx="2" ry="2" />
<text text-anchor="" x="1118.98" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_apic_mem_write (4 samples, 0.04%)</title><rect x="87.9" y="277" width="0.5" height="15.0" fill="rgb(219,135,25)" rx="2" ry="2" />
<text text-anchor="" x="90.86" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__mempool_setname (3 samples, 0.03%)</title><rect x="401.3" y="549" width="0.4" height="15.0" fill="rgb(220,3,47)" rx="2" ry="2" />
<text text-anchor="" x="404.30" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (1 samples, 0.01%)</title><rect x="453.2" y="501" width="0.1" height="15.0" fill="rgb(230,98,25)" rx="2" ry="2" />
<text text-anchor="" x="456.21" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (4 samples, 0.04%)</title><rect x="893.9" y="517" width="0.5" height="15.0" fill="rgb(231,122,41)" rx="2" ry="2" />
<text text-anchor="" x="896.91" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.01%)</title><rect x="118.3" y="421" width="0.2" height="15.0" fill="rgb(232,152,51)" rx="2" ry="2" />
<text text-anchor="" x="121.32" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="529.4" y="485" width="0.1" height="15.0" fill="rgb(210,105,14)" rx="2" ry="2" />
<text text-anchor="" x="532.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (17 samples, 0.19%)</title><rect x="550.1" y="629" width="2.3" height="15.0" fill="rgb(233,197,34)" rx="2" ry="2" />
<text text-anchor="" x="553.14" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_iswildcard (1 samples, 0.01%)</title><rect x="1170.3" y="501" width="0.1" height="15.0" fill="rgb(218,10,2)" rx="2" ry="2" />
<text text-anchor="" x="1173.27" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipv4_conntrack_in (1 samples, 0.01%)</title><rect x="592.4" y="389" width="0.1" height="15.0" fill="rgb(246,63,32)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_task_send (1 samples, 0.01%)</title><rect x="452.2" y="565" width="0.1" height="15.0" fill="rgb(226,46,41)" rx="2" ry="2" />
<text text-anchor="" x="455.15" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (1 samples, 0.01%)</title><rect x="304.4" y="229" width="0.1" height="15.0" fill="rgb(242,101,50)" rx="2" ry="2" />
<text text-anchor="" x="307.37" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pthread_mutex_cond_lock (1 samples, 0.01%)</title><rect x="626.0" y="613" width="0.2" height="15.0" fill="rgb(224,141,43)" rx="2" ry="2" />
<text text-anchor="" x="629.02" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64 (3 samples, 0.03%)</title><rect x="247.0" y="597" width="0.4" height="15.0" fill="rgb(239,6,6)" rx="2" ry="2" />
<text text-anchor="" x="250.03" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (1 samples, 0.01%)</title><rect x="404.6" y="517" width="0.1" height="15.0" fill="rgb(236,48,44)" rx="2" ry="2" />
<text text-anchor="" x="407.61" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="507.8" y="517" width="0.1" height="15.0" fill="rgb(220,158,14)" rx="2" ry="2" />
<text text-anchor="" x="510.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_function_single_interrupt (1 samples, 0.01%)</title><rect x="341.6" y="517" width="0.1" height="15.0" fill="rgb(231,105,47)" rx="2" ry="2" />
<text text-anchor="" x="344.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="546.2" y="501" width="0.1" height="15.0" fill="rgb(247,208,36)" rx="2" ry="2" />
<text text-anchor="" x="549.17" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_shares (3 samples, 0.03%)</title><rect x="385.9" y="261" width="0.4" height="15.0" fill="rgb(253,16,13)" rx="2" ry="2" />
<text text-anchor="" x="388.94" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (35 samples, 0.39%)</title><rect x="382.6" y="421" width="4.7" height="15.0" fill="rgb(247,39,53)" rx="2" ry="2" />
<text text-anchor="" x="385.63" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="1140.1" y="165" width="0.1" height="15.0" fill="rgb(234,126,41)" rx="2" ry="2" />
<text text-anchor="" x="1143.08" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sink_down (5 samples, 0.06%)</title><rect x="416.3" y="581" width="0.6" height="15.0" fill="rgb(238,204,42)" rx="2" ry="2" />
<text text-anchor="" x="419.27" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_first (1 samples, 0.01%)</title><rect x="421.2" y="533" width="0.1" height="15.0" fill="rgb(254,152,52)" rx="2" ry="2" />
<text text-anchor="" x="424.17" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_value_locked (1 samples, 0.01%)</title><rect x="180.7" y="517" width="0.1" height="15.0" fill="rgb(218,112,0)" rx="2" ry="2" />
<text text-anchor="" x="183.69" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>attach_task (1 samples, 0.01%)</title><rect x="886.5" y="469" width="0.1" height="15.0" fill="rgb(250,61,12)" rx="2" ry="2" />
<text text-anchor="" x="889.49" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_udprecv (2 samples, 0.02%)</title><rect x="492.5" y="565" width="0.3" height="15.0" fill="rgb(244,16,28)" rx="2" ry="2" />
<text text-anchor="" x="495.54" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (38 samples, 0.43%)</title><rect x="576.8" y="437" width="5.0" height="15.0" fill="rgb(219,157,32)" rx="2" ry="2" />
<text text-anchor="" x="579.76" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__socket_sendto2 (1 samples, 0.01%)</title><rect x="63.1" y="613" width="0.1" height="15.0" fill="rgb(221,222,41)" rx="2" ry="2" />
<text text-anchor="" x="66.10" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="375.5" y="437" width="0.1" height="15.0" fill="rgb(247,33,22)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (5 samples, 0.06%)</title><rect x="313.6" y="469" width="0.7" height="15.0" fill="rgb(226,203,11)" rx="2" ry="2" />
<text text-anchor="" x="316.64" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_clone (3 samples, 0.03%)</title><rect x="1147.5" y="229" width="0.4" height="15.0" fill="rgb(226,138,51)" rx="2" ry="2" />
<text text-anchor="" x="1150.49" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (2 samples, 0.02%)</title><rect x="308.2" y="277" width="0.3" height="15.0" fill="rgb(209,92,26)" rx="2" ry="2" />
<text text-anchor="" x="311.21" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nmi_handle (1 samples, 0.01%)</title><rect x="341.7" y="469" width="0.1" height="15.0" fill="rgb(244,198,47)" rx="2" ry="2" />
<text text-anchor="" x="344.71" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (2 samples, 0.02%)</title><rect x="546.3" y="581" width="0.3" height="15.0" fill="rgb(248,190,15)" rx="2" ry="2" />
<text text-anchor="" x="549.30" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (11 samples, 0.12%)</title><rect x="255.8" y="469" width="1.4" height="15.0" fill="rgb(211,0,6)" rx="2" ry="2" />
<text text-anchor="" x="258.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (1 samples, 0.01%)</title><rect x="881.1" y="277" width="0.1" height="15.0" fill="rgb(254,191,41)" rx="2" ry="2" />
<text text-anchor="" x="884.06" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sb_end_write (1 samples, 0.01%)</title><rect x="300.0" y="373" width="0.1" height="15.0" fill="rgb(225,52,37)" rx="2" ry="2" />
<text text-anchor="" x="303.00" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mutex_unlock_slowpath (2 samples, 0.02%)</title><rect x="389.4" y="421" width="0.2" height="15.0" fill="rgb(254,126,15)" rx="2" ry="2" />
<text text-anchor="" x="392.39" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_peek_request (1 samples, 0.01%)</title><rect x="325.2" y="213" width="0.1" height="15.0" fill="rgb(244,202,26)" rx="2" ry="2" />
<text text-anchor="" x="328.16" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scsi_end_request (1 samples, 0.01%)</title><rect x="32.8" y="453" width="0.1" height="15.0" fill="rgb(226,101,8)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_skb (16 samples, 0.18%)</title><rect x="1127.4" y="373" width="2.1" height="15.0" fill="rgb(248,35,30)" rx="2" ry="2" />
<text text-anchor="" x="1130.37" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_write (5 samples, 0.06%)</title><rect x="453.9" y="421" width="0.6" height="15.0" fill="rgb(250,98,53)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sys_sendmsg (1 samples, 0.01%)</title><rect x="1112.4" y="485" width="0.1" height="15.0" fill="rgb(244,94,34)" rx="2" ry="2" />
<text text-anchor="" x="1115.40" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_find_next_bit.part.0 (1 samples, 0.01%)</title><rect x="254.8" y="469" width="0.2" height="15.0" fill="rgb(239,64,13)" rx="2" ry="2" />
<text text-anchor="" x="257.85" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addwildcardproof (2 samples, 0.02%)</title><rect x="498.0" y="581" width="0.2" height="15.0" fill="rgb(221,82,54)" rx="2" ry="2" />
<text text-anchor="" x="500.97" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatatype_attributes (4 samples, 0.04%)</title><rect x="288.2" y="517" width="0.5" height="15.0" fill="rgb(223,100,51)" rx="2" ry="2" />
<text text-anchor="" x="291.22" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rbtnodechain_init (5 samples, 0.06%)</title><rect x="1165.4" y="485" width="0.6" height="15.0" fill="rgb(226,34,21)" rx="2" ry="2" />
<text text-anchor="" x="1168.37" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>percpu_down_read_trylock (2 samples, 0.02%)</title><rect x="389.6" y="437" width="0.3" height="15.0" fill="rgb(219,41,1)" rx="2" ry="2" />
<text text-anchor="" x="392.65" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (9 samples, 0.10%)</title><rect x="176.5" y="341" width="1.1" height="15.0" fill="rgb(224,121,48)" rx="2" ry="2" />
<text text-anchor="" x="179.45" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (3 samples, 0.03%)</title><rect x="325.7" y="517" width="0.4" height="15.0" fill="rgb(222,158,53)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_signer (1 samples, 0.01%)</title><rect x="276.0" y="565" width="0.2" height="15.0" fill="rgb(220,47,22)" rx="2" ry="2" />
<text text-anchor="" x="279.03" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_da_get_block_prep (1 samples, 0.01%)</title><rect x="37.9" y="469" width="0.2" height="15.0" fill="rgb(217,195,26)" rx="2" ry="2" />
<text text-anchor="" x="40.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (2 samples, 0.02%)</title><rect x="505.7" y="501" width="0.2" height="15.0" fill="rgb(212,100,13)" rx="2" ry="2" />
<text text-anchor="" x="508.65" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_findrdataset (1 samples, 0.01%)</title><rect x="497.4" y="501" width="0.2" height="15.0" fill="rgb(222,55,48)" rx="2" ry="2" />
<text text-anchor="" x="500.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="311.4" y="389" width="0.1" height="15.0" fill="rgb(238,66,10)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (1 samples, 0.01%)</title><rect x="177.5" y="277" width="0.1" height="15.0" fill="rgb(244,124,43)" rx="2" ry="2" />
<text text-anchor="" x="180.51" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1169.6" y="517" width="0.1" height="15.0" fill="rgb(236,167,37)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="1180.7" y="597" width="0.2" height="15.0" fill="rgb(218,182,39)" rx="2" ry="2" />
<text text-anchor="" x="1183.73" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1186.3" y="597" width="0.1" height="15.0" fill="rgb(232,172,41)" rx="2" ry="2" />
<text text-anchor="" x="1189.29" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="1108.8" y="565" width="0.2" height="15.0" fill="rgb(244,48,53)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>nf_hook_slow (2 samples, 0.02%)</title><rect x="893.1" y="309" width="0.3" height="15.0" fill="rgb(234,18,48)" rx="2" ry="2" />
<text text-anchor="" x="896.11" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_add (12 samples, 0.13%)</title><rect x="503.5" y="533" width="1.6" height="15.0" fill="rgb(216,181,37)" rx="2" ry="2" />
<text text-anchor="" x="506.53" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (3 samples, 0.03%)</title><rect x="364.9" y="405" width="0.4" height="15.0" fill="rgb(234,163,8)" rx="2" ry="2" />
<text text-anchor="" x="367.89" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (5 samples, 0.06%)</title><rect x="386.3" y="309" width="0.7" height="15.0" fill="rgb(233,1,39)" rx="2" ry="2" />
<text text-anchor="" x="389.34" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (2 samples, 0.02%)</title><rect x="35.3" y="501" width="0.3" height="15.0" fill="rgb(236,177,45)" rx="2" ry="2" />
<text text-anchor="" x="38.29" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="1158.6" y="533" width="0.1" height="15.0" fill="rgb(208,128,25)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_additionaldata (61 samples, 0.68%)</title><rect x="1158.7" y="597" width="8.1" height="15.0" fill="rgb(221,185,24)" rx="2" ry="2" />
<text text-anchor="" x="1161.75" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.01%)</title><rect x="665.9" y="165" width="0.1" height="15.0" fill="rgb(249,89,1)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>portavailable.constprop.24 (11 samples, 0.12%)</title><rect x="431.6" y="501" width="1.5" height="15.0" fill="rgb(248,161,33)" rx="2" ry="2" />
<text text-anchor="" x="434.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (33 samples, 0.37%)</title><rect x="631.8" y="613" width="4.4" height="15.0" fill="rgb(211,15,15)" rx="2" ry="2" />
<text text-anchor="" x="634.85" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.01%)</title><rect x="97.8" y="293" width="0.1" height="15.0" fill="rgb(216,79,51)" rx="2" ry="2" />
<text text-anchor="" x="100.79" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_peekheader (2 samples, 0.02%)</title><rect x="275.6" y="565" width="0.3" height="15.0" fill="rgb(249,56,28)" rx="2" ry="2" />
<text text-anchor="" x="278.64" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq (1 samples, 0.01%)</title><rect x="277.2" y="469" width="0.2" height="15.0" fill="rgb(222,86,20)" rx="2" ry="2" />
<text text-anchor="" x="280.22" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_vsyscall (1 samples, 0.01%)</title><rect x="1154.9" y="421" width="0.1" height="15.0" fill="rgb(219,140,3)" rx="2" ry="2" />
<text text-anchor="" x="1157.91" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>migrate_task_rq_fair (1 samples, 0.01%)</title><rect x="672.0" y="373" width="0.1" height="15.0" fill="rgb(233,101,50)" rx="2" ry="2" />
<text text-anchor="" x="674.97" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_irq_return_iret (1 samples, 0.01%)</title><rect x="591.3" y="629" width="0.2" height="15.0" fill="rgb(239,98,1)" rx="2" ry="2" />
<text text-anchor="" x="594.33" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rdatasetiter_current (18 samples, 0.20%)</title><rect x="539.4" y="597" width="2.4" height="15.0" fill="rgb(223,95,31)" rx="2" ry="2" />
<text text-anchor="" x="542.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1186.3" y="581" width="0.1" height="15.0" fill="rgb(251,174,32)" rx="2" ry="2" />
<text text-anchor="" x="1189.29" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (1 samples, 0.01%)</title><rect x="629.1" y="309" width="0.1" height="15.0" fill="rgb(236,110,42)" rx="2" ry="2" />
<text text-anchor="" x="632.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_dispatch (1 samples, 0.01%)</title><rect x="56.1" y="613" width="0.1" height="15.0" fill="rgb(240,49,38)" rx="2" ry="2" />
<text text-anchor="" x="59.08" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="538.9" y="565" width="0.1" height="15.0" fill="rgb(253,165,27)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_gettimeofday (2 samples, 0.02%)</title><rect x="393.5" y="565" width="0.3" height="15.0" fill="rgb(247,165,39)" rx="2" ry="2" />
<text text-anchor="" x="396.49" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_next (1 samples, 0.01%)</title><rect x="441.6" y="485" width="0.1" height="15.0" fill="rgb(239,153,43)" rx="2" ry="2" />
<text text-anchor="" x="444.56" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="1184.2" y="421" width="0.1" height="15.0" fill="rgb(248,58,41)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_notify_start (1 samples, 0.01%)</title><rect x="593.0" y="629" width="0.2" height="15.0" fill="rgb(239,92,41)" rx="2" ry="2" />
<text text-anchor="" x="596.05" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>percpu_down_read_trylock (3 samples, 0.03%)</title><rect x="382.2" y="421" width="0.4" height="15.0" fill="rgb(245,109,51)" rx="2" ry="2" />
<text text-anchor="" x="385.23" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="287.2" y="469" width="0.1" height="15.0" fill="rgb(249,66,45)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="316.8" y="421" width="0.2" height="15.0" fill="rgb(219,27,39)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_idents_reserve (1 samples, 0.01%)</title><rect x="1114.1" y="341" width="0.2" height="15.0" fill="rgb(235,120,21)" rx="2" ry="2" />
<text text-anchor="" x="1117.12" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_dyn_adjusted_options (2 samples, 0.02%)</title><rect x="317.0" y="533" width="0.2" height="15.0" fill="rgb(236,21,48)" rx="2" ry="2" />
<text text-anchor="" x="319.95" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_conntrack_find_get (1 samples, 0.01%)</title><rect x="592.4" y="357" width="0.1" height="15.0" fill="rgb(227,31,4)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_route_input_noref (1 samples, 0.01%)</title><rect x="375.5" y="341" width="0.1" height="15.0" fill="rgb(250,64,11)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>eth_header_parse (1 samples, 0.01%)</title><rect x="610.3" y="357" width="0.1" height="15.0" fill="rgb(245,116,21)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.01%)</title><rect x="279.3" y="437" width="0.2" height="15.0" fill="rgb(252,178,25)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_heap_element (1 samples, 0.01%)</title><rect x="393.0" y="581" width="0.1" height="15.0" fill="rgb(211,108,0)" rx="2" ry="2" />
<text text-anchor="" x="395.96" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="1184.2" y="517" width="0.1" height="15.0" fill="rgb(248,157,40)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (6 samples, 0.07%)</title><rect x="539.8" y="581" width="0.8" height="15.0" fill="rgb(241,80,9)" rx="2" ry="2" />
<text text-anchor="" x="542.81" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.01%)</title><rect x="557.8" y="581" width="0.2" height="15.0" fill="rgb(251,9,38)" rx="2" ry="2" />
<text text-anchor="" x="560.82" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (2 samples, 0.02%)</title><rect x="670.6" y="421" width="0.3" height="15.0" fill="rgb(249,49,9)" rx="2" ry="2" />
<text text-anchor="" x="673.65" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="414.1" y="517" width="0.2" height="15.0" fill="rgb(252,158,33)" rx="2" ry="2" />
<text text-anchor="" x="417.15" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.80 (1 samples, 0.01%)</title><rect x="307.9" y="229" width="0.2" height="15.0" fill="rgb(245,211,22)" rx="2" ry="2" />
<text text-anchor="" x="310.95" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullcompare (5 samples, 0.06%)</title><rect x="593.2" y="549" width="0.6" height="15.0" fill="rgb(250,222,40)" rx="2" ry="2" />
<text text-anchor="" x="596.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="492.4" y="501" width="0.1" height="15.0" fill="rgb(213,85,22)" rx="2" ry="2" />
<text text-anchor="" x="495.41" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_buffer_allocate (20 samples, 0.22%)</title><rect x="443.3" y="533" width="2.6" height="15.0" fill="rgb(218,145,4)" rx="2" ry="2" />
<text text-anchor="" x="446.28" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_pid (1 samples, 0.01%)</title><rect x="342.8" y="421" width="0.1" height="15.0" fill="rgb(243,202,46)" rx="2" ry="2" />
<text text-anchor="" x="345.77" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="610.3" y="405" width="0.1" height="15.0" fill="rgb(220,25,38)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="280.0" y="469" width="0.1" height="15.0" fill="rgb(210,1,8)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (83 samples, 0.93%)</title><rect x="247.4" y="597" width="11.0" height="15.0" fill="rgb(218,0,49)" rx="2" ry="2" />
<text text-anchor="" x="250.43" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (1 samples, 0.01%)</title><rect x="1127.1" y="357" width="0.1" height="15.0" fill="rgb(207,125,29)" rx="2" ry="2" />
<text text-anchor="" x="1130.10" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (1 samples, 0.01%)</title><rect x="177.4" y="293" width="0.1" height="15.0" fill="rgb(232,64,31)" rx="2" ry="2" />
<text text-anchor="" x="180.38" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_wakeup (8 samples, 0.09%)</title><rect x="671.8" y="421" width="1.1" height="15.0" fill="rgb(218,120,39)" rx="2" ry="2" />
<text text-anchor="" x="674.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_rename2 (1 samples, 0.01%)</title><rect x="326.1" y="469" width="0.1" height="15.0" fill="rgb(224,223,52)" rx="2" ry="2" />
<text text-anchor="" x="329.09" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_busiest_group (2 samples, 0.02%)</title><rect x="98.9" y="453" width="0.2" height="15.0" fill="rgb(215,161,8)" rx="2" ry="2" />
<text text-anchor="" x="101.85" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tpacket_rcv (1 samples, 0.01%)</title><rect x="366.5" y="245" width="0.1" height="15.0" fill="rgb(227,224,3)" rx="2" ry="2" />
<text text-anchor="" x="369.48" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (1 samples, 0.01%)</title><rect x="66.7" y="613" width="0.1" height="15.0" fill="rgb(238,29,46)" rx="2" ry="2" />
<text text-anchor="" x="69.68" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="32.8" y="533" width="0.1" height="15.0" fill="rgb(230,200,46)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (39 samples, 0.44%)</title><rect x="303.0" y="261" width="5.2" height="15.0" fill="rgb(243,124,2)" rx="2" ry="2" />
<text text-anchor="" x="306.05" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="898.1" y="517" width="0.2" height="15.0" fill="rgb(232,43,35)" rx="2" ry="2" />
<text text-anchor="" x="901.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_recvmsg (23 samples, 0.26%)</title><rect x="293.9" y="437" width="3.1" height="15.0" fill="rgb(250,214,16)" rx="2" ry="2" />
<text text-anchor="" x="296.91" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_poll (2 samples, 0.02%)</title><rect x="566.3" y="549" width="0.3" height="15.0" fill="rgb(238,73,0)" rx="2" ry="2" />
<text text-anchor="" x="569.30" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="1114.3" y="373" width="0.1" height="15.0" fill="rgb(222,95,40)" rx="2" ry="2" />
<text text-anchor="" x="1117.26" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="1184.2" y="469" width="0.1" height="15.0" fill="rgb(246,127,41)" rx="2" ry="2" />
<text text-anchor="" x="1187.17" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___slab_alloc (1 samples, 0.01%)</title><rect x="32.5" y="549" width="0.1" height="15.0" fill="rgb(244,126,22)" rx="2" ry="2" />
<text text-anchor="" x="35.51" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="310.5" y="341" width="0.1" height="15.0" fill="rgb(208,165,14)" rx="2" ry="2" />
<text text-anchor="" x="313.46" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.01%)</title><rect x="179.1" y="421" width="0.1" height="15.0" fill="rgb(245,220,32)" rx="2" ry="2" />
<text text-anchor="" x="182.10" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (1 samples, 0.01%)</title><rect x="367.5" y="357" width="0.2" height="15.0" fill="rgb(226,163,36)" rx="2" ry="2" />
<text text-anchor="" x="370.54" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_make_skb (12 samples, 0.13%)</title><rect x="1112.9" y="389" width="1.6" height="15.0" fill="rgb(246,3,5)" rx="2" ry="2" />
<text text-anchor="" x="1115.93" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.80 (1 samples, 0.01%)</title><rect x="673.2" y="357" width="0.1" height="15.0" fill="rgb(223,17,4)" rx="2" ry="2" />
<text text-anchor="" x="676.16" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_fastpath (26 samples, 0.29%)</title><rect x="293.5" y="453" width="3.5" height="15.0" fill="rgb(210,124,22)" rx="2" ry="2" />
<text text-anchor="" x="296.51" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_msix_ring (1 samples, 0.01%)</title><rect x="506.8" y="437" width="0.2" height="15.0" fill="rgb(208,47,33)" rx="2" ry="2" />
<text text-anchor="" x="509.84" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (1 samples, 0.01%)</title><rect x="454.5" y="453" width="0.2" height="15.0" fill="rgb(249,27,38)" rx="2" ry="2" />
<text text-anchor="" x="457.54" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_dispatch_getudp_dup (57 samples, 0.64%)</title><rect x="430.8" y="517" width="7.6" height="15.0" fill="rgb(253,15,26)" rx="2" ry="2" />
<text text-anchor="" x="433.83" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_currentversion (1 samples, 0.01%)</title><rect x="409.4" y="549" width="0.1" height="15.0" fill="rgb(232,208,9)" rx="2" ry="2" />
<text text-anchor="" x="412.38" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlock_page (1 samples, 0.01%)</title><rect x="325.4" y="309" width="0.2" height="15.0" fill="rgb(231,48,23)" rx="2" ry="2" />
<text text-anchor="" x="328.43" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.02%)</title><rect x="398.8" y="549" width="0.3" height="15.0" fill="rgb(244,151,27)" rx="2" ry="2" />
<text text-anchor="" x="401.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_sd_lb_stats (3 samples, 0.03%)</title><rect x="179.0" y="437" width="0.4" height="15.0" fill="rgb(215,151,40)" rx="2" ry="2" />
<text text-anchor="" x="181.97" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (205 samples, 2.30%)</title><rect x="1124.8" y="453" width="27.2" height="15.0" fill="rgb(223,142,13)" rx="2" ry="2" />
<text text-anchor="" x="1127.85" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="651.6" y="565" width="0.1" height="15.0" fill="rgb(246,188,20)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ext4_reserve_inode_write (4 samples, 0.04%)</title><rect x="58.6" y="453" width="0.5" height="15.0" fill="rgb(245,13,48)" rx="2" ry="2" />
<text text-anchor="" x="61.60" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scheduler_tick (1 samples, 0.01%)</title><rect x="43.0" y="485" width="0.1" height="15.0" fill="rgb(241,207,51)" rx="2" ry="2" />
<text text-anchor="" x="45.97" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.01%)</title><rect x="116.9" y="389" width="0.1" height="15.0" fill="rgb(224,177,5)" rx="2" ry="2" />
<text text-anchor="" x="119.86" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_queue_rcv_skb (1 samples, 0.01%)</title><rect x="665.9" y="261" width="0.1" height="15.0" fill="rgb(248,137,6)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__netif_receive_skb_core (1 samples, 0.01%)</title><rect x="388.3" y="261" width="0.2" height="15.0" fill="rgb(235,188,53)" rx="2" ry="2" />
<text text-anchor="" x="391.33" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up (1 samples, 0.01%)</title><rect x="581.8" y="405" width="0.1" height="15.0" fill="rgb(215,191,10)" rx="2" ry="2" />
<text text-anchor="" x="584.79" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__task_send (2 samples, 0.02%)</title><rect x="451.9" y="565" width="0.3" height="15.0" fill="rgb(245,36,38)" rx="2" ry="2" />
<text text-anchor="" x="454.89" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (10 samples, 0.11%)</title><rect x="255.9" y="453" width="1.3" height="15.0" fill="rgb(247,32,50)" rx="2" ry="2" />
<text text-anchor="" x="258.91" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__timer_create (1 samples, 0.01%)</title><rect x="63.5" y="613" width="0.1" height="15.0" fill="rgb(239,105,46)" rx="2" ry="2" />
<text text-anchor="" x="66.50" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (2 samples, 0.02%)</title><rect x="18.9" y="597" width="0.2" height="15.0" fill="rgb(206,193,32)" rx="2" ry="2" />
<text text-anchor="" x="21.87" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_finish_output2 (20 samples, 0.22%)</title><rect x="1116.2" y="309" width="2.7" height="15.0" fill="rgb(238,83,42)" rx="2" ry="2" />
<text text-anchor="" x="1119.24" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dentry_kill (3 samples, 0.03%)</title><rect x="325.7" y="469" width="0.4" height="15.0" fill="rgb(227,21,51)" rx="2" ry="2" />
<text text-anchor="" x="328.69" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vsnprintf_chk (1 samples, 0.01%)</title><rect x="1189.6" y="533" width="0.1" height="15.0" fill="rgb(237,145,4)" rx="2" ry="2" />
<text text-anchor="" x="1192.60" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_towire (4 samples, 0.04%)</title><rect x="50.1" y="613" width="0.6" height="15.0" fill="rgb(236,56,21)" rx="2" ry="2" />
<text text-anchor="" x="53.12" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (2 samples, 0.02%)</title><rect x="388.1" y="421" width="0.2" height="15.0" fill="rgb(216,192,4)" rx="2" ry="2" />
<text text-anchor="" x="391.06" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (3 samples, 0.03%)</title><rect x="316.3" y="485" width="0.4" height="15.0" fill="rgb(233,49,43)" rx="2" ry="2" />
<text text-anchor="" x="319.29" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_getmethods (1 samples, 0.01%)</title><rect x="45.8" y="613" width="0.1" height="15.0" fill="rgb(240,77,25)" rx="2" ry="2" />
<text text-anchor="" x="48.75" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_log_wouldlog (1 samples, 0.01%)</title><rect x="492.7" y="517" width="0.1" height="15.0" fill="rgb(231,25,29)" rx="2" ry="2" />
<text text-anchor="" x="495.67" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (33 samples, 0.37%)</title><rect x="694.2" y="309" width="4.4" height="15.0" fill="rgb(228,113,53)" rx="2" ry="2" />
<text text-anchor="" x="697.22" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_do_nmi (688 samples, 7.72%)</title><rect x="685.7" y="357" width="91.1" height="15.0" fill="rgb(205,93,53)" rx="2" ry="2" />
<text text-anchor="" x="688.74" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >default_do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="323.0" y="469" width="0.2" height="15.0" fill="rgb(209,44,11)" rx="2" ry="2" />
<text text-anchor="" x="326.04" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (1 samples, 0.01%)</title><rect x="280.0" y="373" width="0.1" height="15.0" fill="rgb(241,27,32)" rx="2" ry="2" />
<text text-anchor="" x="283.01" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_disassociate (2 samples, 0.02%)</title><rect x="52.9" y="613" width="0.3" height="15.0" fill="rgb(253,48,43)" rx="2" ry="2" />
<text text-anchor="" x="55.90" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_queue_xmit (18 samples, 0.20%)</title><rect x="1116.5" y="293" width="2.4" height="15.0" fill="rgb(225,185,33)" rx="2" ry="2" />
<text text-anchor="" x="1119.51" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__d_lookup_rcu (1 samples, 0.01%)</title><rect x="57.9" y="469" width="0.2" height="15.0" fill="rgb(239,216,31)" rx="2" ry="2" />
<text text-anchor="" x="60.94" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="601.1" y="581" width="0.2" height="15.0" fill="rgb(250,159,47)" rx="2" ry="2" />
<text text-anchor="" x="604.13" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_renderrelease (2 samples, 0.02%)</title><rect x="46.8" y="613" width="0.3" height="15.0" fill="rgb(210,128,39)" rx="2" ry="2" />
<text text-anchor="" x="49.81" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullcompare (2 samples, 0.02%)</title><rect x="48.8" y="613" width="0.3" height="15.0" fill="rgb(244,228,31)" rx="2" ry="2" />
<text text-anchor="" x="51.80" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dumptostreaminc (95 samples, 1.07%)</title><rect x="534.0" y="629" width="12.6" height="15.0" fill="rgb(225,9,31)" rx="2" ry="2" />
<text text-anchor="" x="536.99" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (8 samples, 0.09%)</title><rect x="385.3" y="277" width="1.0" height="15.0" fill="rgb(227,33,42)" rx="2" ry="2" />
<text text-anchor="" x="388.28" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_ct_refresh_acct (1 samples, 0.01%)</title><rect x="1139.7" y="261" width="0.1" height="15.0" fill="rgb(250,148,48)" rx="2" ry="2" />
<text text-anchor="" x="1142.68" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="610.3" y="533" width="0.1" height="15.0" fill="rgb(245,118,28)" rx="2" ry="2" />
<text text-anchor="" x="613.26" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wake_up_process (1 samples, 0.01%)</title><rect x="319.2" y="405" width="0.1" height="15.0" fill="rgb(241,159,53)" rx="2" ry="2" />
<text text-anchor="" x="322.20" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (1 samples, 0.01%)</title><rect x="447.1" y="341" width="0.2" height="15.0" fill="rgb(205,66,32)" rx="2" ry="2" />
<text text-anchor="" x="450.12" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (7 samples, 0.08%)</title><rect x="367.7" y="389" width="0.9" height="15.0" fill="rgb(234,24,5)" rx="2" ry="2" />
<text text-anchor="" x="370.67" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>validate_xmit_skb_list (1 samples, 0.01%)</title><rect x="1118.8" y="245" width="0.1" height="15.0" fill="rgb(208,14,24)" rx="2" ry="2" />
<text text-anchor="" x="1121.76" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__call_rcu.constprop.76 (9 samples, 0.10%)</title><rect x="27.9" y="549" width="1.2" height="15.0" fill="rgb(217,129,36)" rx="2" ry="2" />
<text text-anchor="" x="30.88" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (1 samples, 0.01%)</title><rect x="447.4" y="309" width="0.1" height="15.0" fill="rgb(232,73,16)" rx="2" ry="2" />
<text text-anchor="" x="450.39" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (18 samples, 0.20%)</title><rect x="396.3" y="581" width="2.4" height="15.0" fill="rgb(224,166,42)" rx="2" ry="2" />
<text text-anchor="" x="399.27" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raid1_end_write_request (1 samples, 0.01%)</title><rect x="32.8" y="405" width="0.1" height="15.0" fill="rgb(242,200,15)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_out (26 samples, 0.29%)</title><rect x="1115.4" y="357" width="3.5" height="15.0" fill="rgb(223,89,51)" rx="2" ry="2" />
<text text-anchor="" x="1118.45" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="1108.8" y="485" width="0.2" height="15.0" fill="rgb(236,5,24)" rx="2" ry="2" />
<text text-anchor="" x="1111.83" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_equal (3 samples, 0.03%)</title><rect x="1163.4" y="485" width="0.4" height="15.0" fill="rgb(239,4,29)" rx="2" ry="2" />
<text text-anchor="" x="1166.38" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_db_closeversion (1 samples, 0.01%)</title><rect x="315.0" y="501" width="0.1" height="15.0" fill="rgb(252,93,39)" rx="2" ry="2" />
<text text-anchor="" x="317.96" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tcp_transmit_skb (1 samples, 0.01%)</title><rect x="454.8" y="325" width="0.1" height="15.0" fill="rgb(248,152,29)" rx="2" ry="2" />
<text text-anchor="" x="457.80" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_clone (1 samples, 0.01%)</title><rect x="490.4" y="533" width="0.2" height="15.0" fill="rgb(210,105,17)" rx="2" ry="2" />
<text text-anchor="" x="493.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="529.2" y="485" width="0.2" height="15.0" fill="rgb(219,126,25)" rx="2" ry="2" />
<text text-anchor="" x="532.22" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="176.5" y="309" width="0.1" height="15.0" fill="rgb(225,210,48)" rx="2" ry="2" />
<text text-anchor="" x="179.45" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>local_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="651.6" y="581" width="0.1" height="15.0" fill="rgb(234,62,10)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="375.5" y="421" width="0.1" height="15.0" fill="rgb(229,208,43)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.04%)</title><rect x="477.2" y="549" width="0.5" height="15.0" fill="rgb(222,3,5)" rx="2" ry="2" />
<text text-anchor="" x="480.18" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (1 samples, 0.01%)</title><rect x="626.8" y="453" width="0.1" height="15.0" fill="rgb(207,86,8)" rx="2" ry="2" />
<text text-anchor="" x="629.82" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lockref_put_return (1 samples, 0.01%)</title><rect x="57.4" y="517" width="0.1" height="15.0" fill="rgb(241,118,24)" rx="2" ry="2" />
<text text-anchor="" x="60.41" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fromregion (13 samples, 0.15%)</title><rect x="519.4" y="565" width="1.7" height="15.0" fill="rgb(205,195,11)" rx="2" ry="2" />
<text text-anchor="" x="522.42" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doio_recv (1 samples, 0.01%)</title><rect x="54.9" y="613" width="0.1" height="15.0" fill="rgb(205,135,32)" rx="2" ry="2" />
<text text-anchor="" x="57.89" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_clone (1 samples, 0.01%)</title><rect x="449.2" y="213" width="0.2" height="15.0" fill="rgb(215,169,49)" rx="2" ry="2" />
<text text-anchor="" x="452.24" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (12 samples, 0.13%)</title><rect x="117.5" y="453" width="1.6" height="15.0" fill="rgb(232,216,19)" rx="2" ry="2" />
<text text-anchor="" x="120.53" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_gettemprdata (6 samples, 0.07%)</title><rect x="419.3" y="533" width="0.8" height="15.0" fill="rgb(232,97,37)" rx="2" ry="2" />
<text text-anchor="" x="422.31" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock.part.80 (2 samples, 0.02%)</title><rect x="680.6" y="485" width="0.2" height="15.0" fill="rgb(233,158,49)" rx="2" ry="2" />
<text text-anchor="" x="683.58" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_add (5 samples, 0.06%)</title><rect x="61.2" y="613" width="0.7" height="15.0" fill="rgb(205,83,18)" rx="2" ry="2" />
<text text-anchor="" x="64.25" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="252.3" y="517" width="0.2" height="15.0" fill="rgb(224,95,11)" rx="2" ry="2" />
<text text-anchor="" x="255.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tick_sched_handle.isra.15 (3 samples, 0.03%)</title><rect x="672.9" y="405" width="0.4" height="15.0" fill="rgb(249,105,37)" rx="2" ry="2" />
<text text-anchor="" x="675.90" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="1184.6" y="565" width="0.1" height="15.0" fill="rgb(211,114,22)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_usedregion (1 samples, 0.01%)</title><rect x="1111.9" y="549" width="0.1" height="15.0" fill="rgb(227,32,9)" rx="2" ry="2" />
<text text-anchor="" x="1114.87" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_buildopt (1 samples, 0.01%)</title><rect x="508.6" y="629" width="0.1" height="15.0" fill="rgb(218,50,43)" rx="2" ry="2" />
<text text-anchor="" x="511.56" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (3 samples, 0.03%)</title><rect x="505.9" y="517" width="0.4" height="15.0" fill="rgb(254,153,36)" rx="2" ry="2" />
<text text-anchor="" x="508.92" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_cmsg (2 samples, 0.02%)</title><rect x="365.8" y="405" width="0.3" height="15.0" fill="rgb(242,210,12)" rx="2" ry="2" />
<text text-anchor="" x="368.81" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>inet_recvmsg (2 samples, 0.02%)</title><rect x="453.3" y="421" width="0.3" height="15.0" fill="rgb(224,170,53)" rx="2" ry="2" />
<text text-anchor="" x="456.34" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_error (1 samples, 0.01%)</title><rect x="448.4" y="245" width="0.2" height="15.0" fill="rgb(249,88,54)" rx="2" ry="2" />
<text text-anchor="" x="451.44" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_countlabels (2 samples, 0.02%)</title><rect x="288.0" y="517" width="0.2" height="15.0" fill="rgb(242,133,52)" rx="2" ry="2" />
<text text-anchor="" x="290.95" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_stat (1 samples, 0.01%)</title><rect x="624.8" y="533" width="0.2" height="15.0" fill="rgb(254,73,3)" rx="2" ry="2" />
<text text-anchor="" x="627.83" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_offsets (1 samples, 0.01%)</title><rect x="526.0" y="533" width="0.2" height="15.0" fill="rgb(235,13,17)" rx="2" ry="2" />
<text text-anchor="" x="529.04" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv (1 samples, 0.01%)</title><rect x="1151.6" y="149" width="0.1" height="15.0" fill="rgb(208,171,49)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="179.8" y="421" width="0.1" height="15.0" fill="rgb(252,121,7)" rx="2" ry="2" />
<text text-anchor="" x="182.76" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towiresorted.isra.3 (2 samples, 0.02%)</title><rect x="1153.6" y="549" width="0.2" height="15.0" fill="rgb(243,129,33)" rx="2" ry="2" />
<text text-anchor="" x="1156.58" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (2 samples, 0.02%)</title><rect x="296.0" y="325" width="0.3" height="15.0" fill="rgb(223,136,11)" rx="2" ry="2" />
<text text-anchor="" x="299.03" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (97 samples, 1.09%)</title><rect x="298.5" y="437" width="12.9" height="15.0" fill="rgb(223,158,46)" rx="2" ry="2" />
<text text-anchor="" x="301.54" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_put (1 samples, 0.01%)</title><rect x="315.6" y="501" width="0.2" height="15.0" fill="rgb(243,213,46)" rx="2" ry="2" />
<text text-anchor="" x="318.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>client_allocsendbuf (1 samples, 0.01%)</title><rect x="43.4" y="613" width="0.1" height="15.0" fill="rgb(245,4,13)" rx="2" ry="2" />
<text text-anchor="" x="46.37" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_unlock (4 samples, 0.04%)</title><rect x="512.1" y="565" width="0.6" height="15.0" fill="rgb(240,98,30)" rx="2" ry="2" />
<text text-anchor="" x="515.14" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_process_callbacks (2 samples, 0.02%)</title><rect x="117.1" y="421" width="0.3" height="15.0" fill="rgb(248,69,33)" rx="2" ry="2" />
<text text-anchor="" x="120.13" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_entity_load_avg (2 samples, 0.02%)</title><rect x="614.9" y="517" width="0.3" height="15.0" fill="rgb(237,154,50)" rx="2" ry="2" />
<text text-anchor="" x="617.90" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="316.8" y="373" width="0.2" height="15.0" fill="rgb(243,16,44)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (2 samples, 0.02%)</title><rect x="316.7" y="485" width="0.3" height="15.0" fill="rgb(215,196,27)" rx="2" ry="2" />
<text text-anchor="" x="319.69" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_events (1 samples, 0.01%)</title><rect x="413.6" y="501" width="0.2" height="15.0" fill="rgb(216,48,27)" rx="2" ry="2" />
<text text-anchor="" x="416.62" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="316.8" y="389" width="0.2" height="15.0" fill="rgb(232,113,2)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (1 samples, 0.01%)</title><rect x="257.6" y="501" width="0.2" height="15.0" fill="rgb(237,184,13)" rx="2" ry="2" />
<text text-anchor="" x="260.63" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.01%)</title><rect x="316.8" y="309" width="0.2" height="15.0" fill="rgb(219,12,5)" rx="2" ry="2" />
<text text-anchor="" x="319.82" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pipe_poll (1 samples, 0.01%)</title><rect x="564.7" y="533" width="0.1" height="15.0" fill="rgb(235,173,10)" rx="2" ry="2" />
<text text-anchor="" x="567.71" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="500.1" y="549" width="0.1" height="15.0" fill="rgb(235,225,29)" rx="2" ry="2" />
<text text-anchor="" x="503.09" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ret_from_intr (1 samples, 0.01%)</title><rect x="284.6" y="517" width="0.2" height="15.0" fill="rgb(242,210,44)" rx="2" ry="2" />
<text text-anchor="" x="287.64" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sooner (5 samples, 0.06%)</title><rect x="416.3" y="565" width="0.6" height="15.0" fill="rgb(238,229,19)" rx="2" ry="2" />
<text text-anchor="" x="419.27" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="470.6" y="453" width="0.1" height="15.0" fill="rgb(209,44,29)" rx="2" ry="2" />
<text text-anchor="" x="473.56" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="303.8" y="245" width="0.2" height="15.0" fill="rgb(219,107,34)" rx="2" ry="2" />
<text text-anchor="" x="306.84" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (1 samples, 0.01%)</title><rect x="360.5" y="469" width="0.1" height="15.0" fill="rgb(249,220,25)" rx="2" ry="2" />
<text text-anchor="" x="363.52" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_acl_match (1 samples, 0.01%)</title><rect x="1169.6" y="533" width="0.1" height="15.0" fill="rgb(253,150,47)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="1151.1" y="293" width="0.1" height="15.0" fill="rgb(222,213,35)" rx="2" ry="2" />
<text text-anchor="" x="1154.07" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_netaddr_fromsockaddr (1 samples, 0.01%)</title><rect x="590.4" y="629" width="0.1" height="15.0" fill="rgb(209,35,13)" rx="2" ry="2" />
<text text-anchor="" x="593.40" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__udp4_lib_rcv (1 samples, 0.01%)</title><rect x="1158.6" y="325" width="0.1" height="15.0" fill="rgb(238,101,44)" rx="2" ry="2" />
<text text-anchor="" x="1161.62" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_task_attach (1 samples, 0.01%)</title><rect x="297.1" y="485" width="0.1" height="15.0" fill="rgb(223,80,21)" rx="2" ry="2" />
<text text-anchor="" x="300.09" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msgreset (1 samples, 0.01%)</title><rect x="492.8" y="549" width="0.1" height="15.0" fill="rgb(229,12,40)" rx="2" ry="2" />
<text text-anchor="" x="495.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dev_hard_start_xmit (46 samples, 0.52%)</title><rect x="1144.6" y="261" width="6.1" height="15.0" fill="rgb(220,219,43)" rx="2" ry="2" />
<text text-anchor="" x="1147.58" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xfrin_connect_done (2 samples, 0.02%)</title><rect x="454.7" y="581" width="0.2" height="15.0" fill="rgb(247,70,51)" rx="2" ry="2" />
<text text-anchor="" x="457.67" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1 samples, 0.01%)</title><rect x="258.4" y="549" width="0.2" height="15.0" fill="rgb(254,109,48)" rx="2" ry="2" />
<text text-anchor="" x="261.42" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="422.1" y="501" width="0.1" height="15.0" fill="rgb(234,172,9)" rx="2" ry="2" />
<text text-anchor="" x="425.09" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (4 samples, 0.04%)</title><rect x="453.9" y="389" width="0.5" height="15.0" fill="rgb(207,74,6)" rx="2" ry="2" />
<text text-anchor="" x="456.87" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (31 samples, 0.35%)</title><rect x="382.9" y="373" width="4.1" height="15.0" fill="rgb(237,181,9)" rx="2" ry="2" />
<text text-anchor="" x="385.90" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="1184.6" y="501" width="0.1" height="15.0" fill="rgb(245,227,24)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (11 samples, 0.12%)</title><rect x="425.4" y="533" width="1.5" height="15.0" fill="rgb(205,120,30)" rx="2" ry="2" />
<text text-anchor="" x="428.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (2 samples, 0.02%)</title><rect x="117.1" y="453" width="0.3" height="15.0" fill="rgb(248,212,3)" rx="2" ry="2" />
<text text-anchor="" x="120.13" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="1154.9" y="565" width="0.1" height="15.0" fill="rgb(219,11,42)" rx="2" ry="2" />
<text text-anchor="" x="1157.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prb_fill_curr_block.isra.59 (3 samples, 0.03%)</title><rect x="1118.1" y="213" width="0.4" height="15.0" fill="rgb(215,202,41)" rx="2" ry="2" />
<text text-anchor="" x="1121.10" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (11 samples, 0.12%)</title><rect x="330.5" y="517" width="1.4" height="15.0" fill="rgb(208,166,44)" rx="2" ry="2" />
<text text-anchor="" x="333.46" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_ratelimiter_enqueue (2 samples, 0.02%)</title><rect x="455.5" y="533" width="0.2" height="15.0" fill="rgb(239,54,13)" rx="2" ry="2" />
<text text-anchor="" x="458.46" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_offsets (1 samples, 0.01%)</title><rect x="75.4" y="613" width="0.1" height="15.0" fill="rgb(225,121,21)" rx="2" ry="2" />
<text text-anchor="" x="78.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (2 samples, 0.02%)</title><rect x="497.7" y="517" width="0.3" height="15.0" fill="rgb(227,124,48)" rx="2" ry="2" />
<text text-anchor="" x="500.71" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_init (5 samples, 0.06%)</title><rect x="521.1" y="565" width="0.7" height="15.0" fill="rgb(210,203,10)" rx="2" ry="2" />
<text text-anchor="" x="524.14" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.02%)</title><rect x="493.6" y="469" width="0.3" height="15.0" fill="rgb(212,84,4)" rx="2" ry="2" />
<text text-anchor="" x="496.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tpacket_rcv (1 samples, 0.01%)</title><rect x="492.4" y="357" width="0.1" height="15.0" fill="rgb(225,10,24)" rx="2" ry="2" />
<text text-anchor="" x="495.41" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (3 samples, 0.03%)</title><rect x="1113.6" y="341" width="0.4" height="15.0" fill="rgb(227,33,0)" rx="2" ry="2" />
<text text-anchor="" x="1116.59" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>attach (2 samples, 0.02%)</title><rect x="1171.2" y="517" width="0.3" height="15.0" fill="rgb(234,190,5)" rx="2" ry="2" />
<text text-anchor="" x="1174.20" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (3 samples, 0.03%)</title><rect x="387.7" y="389" width="0.4" height="15.0" fill="rgb(235,182,24)" rx="2" ry="2" />
<text text-anchor="" x="390.66" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_compress_findglobal (6 samples, 0.07%)</title><rect x="45.0" y="613" width="0.8" height="15.0" fill="rgb(246,175,43)" rx="2" ry="2" />
<text text-anchor="" x="47.96" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_nmi (16 samples, 0.18%)</title><rect x="627.1" y="373" width="2.1" height="15.0" fill="rgb(231,119,26)" rx="2" ry="2" />
<text text-anchor="" x="630.08" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (32 samples, 0.36%)</title><rect x="32.9" y="581" width="4.2" height="15.0" fill="rgb(211,173,4)" rx="2" ry="2" />
<text text-anchor="" x="35.91" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_futex_key (2 samples, 0.02%)</title><rect x="99.8" y="517" width="0.2" height="15.0" fill="rgb(220,55,0)" rx="2" ry="2" />
<text text-anchor="" x="102.78" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>block_invalidatepage (1 samples, 0.01%)</title><rect x="326.0" y="325" width="0.1" height="15.0" fill="rgb(222,205,28)" rx="2" ry="2" />
<text text-anchor="" x="328.96" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (3 samples, 0.03%)</title><rect x="619.9" y="469" width="0.4" height="15.0" fill="rgb(249,217,47)" rx="2" ry="2" />
<text text-anchor="" x="622.93" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_update_time (1 samples, 0.01%)</title><rect x="472.3" y="453" width="0.1" height="15.0" fill="rgb(246,15,8)" rx="2" ry="2" />
<text text-anchor="" x="475.28" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.02%)</title><rect x="404.7" y="501" width="0.3" height="15.0" fill="rgb(229,81,42)" rx="2" ry="2" />
<text text-anchor="" x="407.75" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="280.3" y="501" width="0.1" height="15.0" fill="rgb(246,8,26)" rx="2" ry="2" />
<text text-anchor="" x="283.27" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sys_sendmsg (52 samples, 0.58%)</title><rect x="1112.5" y="469" width="6.9" height="15.0" fill="rgb(219,162,47)" rx="2" ry="2" />
<text text-anchor="" x="1115.53" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdataset_first (1 samples, 0.01%)</title><rect x="529.8" y="597" width="0.1" height="15.0" fill="rgb(212,121,1)" rx="2" ry="2" />
<text text-anchor="" x="532.75" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (4 samples, 0.04%)</title><rect x="31.8" y="581" width="0.6" height="15.0" fill="rgb(254,32,1)" rx="2" ry="2" />
<text text-anchor="" x="34.85" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset (1 samples, 0.01%)</title><rect x="325.0" y="533" width="0.2" height="15.0" fill="rgb(223,229,5)" rx="2" ry="2" />
<text text-anchor="" x="328.03" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>net_rx_action (1 samples, 0.01%)</title><rect x="538.9" y="501" width="0.1" height="15.0" fill="rgb(212,82,54)" rx="2" ry="2" />
<text text-anchor="" x="541.89" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="413.6" y="485" width="0.2" height="15.0" fill="rgb(220,209,28)" rx="2" ry="2" />
<text text-anchor="" x="416.62" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (1 samples, 0.01%)</title><rect x="319.2" y="341" width="0.1" height="15.0" fill="rgb(254,73,54)" rx="2" ry="2" />
<text text-anchor="" x="322.20" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_L_lock_1081 (957 samples, 10.74%)</title><rect x="115.0" y="629" width="126.7" height="15.0" fill="rgb(227,14,14)" rx="2" ry="2" />
<text text-anchor="" x="118.01" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_L_lock_1081</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="592.4" y="581" width="0.1" height="15.0" fill="rgb(221,178,12)" rx="2" ry="2" />
<text text-anchor="" x="595.39" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>napi_gro_receive (1 samples, 0.01%)</title><rect x="287.2" y="389" width="0.1" height="15.0" fill="rgb(236,147,27)" rx="2" ry="2" />
<text text-anchor="" x="290.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dbiterator_current (1 samples, 0.01%)</title><rect x="508.0" y="629" width="0.2" height="15.0" fill="rgb(219,82,4)" rx="2" ry="2" />
<text text-anchor="" x="511.03" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netif_receive_skb_internal (1 samples, 0.01%)</title><rect x="1151.6" y="197" width="0.1" height="15.0" fill="rgb(220,18,7)" rx="2" ry="2" />
<text text-anchor="" x="1154.60" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (1 samples, 0.01%)</title><rect x="37.4" y="549" width="0.1" height="15.0" fill="rgb(243,5,2)" rx="2" ry="2" />
<text text-anchor="" x="40.41" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (16 samples, 0.18%)</title><rect x="671.2" y="485" width="2.1" height="15.0" fill="rgb(245,69,26)" rx="2" ry="2" />
<text text-anchor="" x="674.18" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>query_addadditional (2 samples, 0.02%)</title><rect x="71.7" y="613" width="0.3" height="15.0" fill="rgb(214,46,45)" rx="2" ry="2" />
<text text-anchor="" x="74.71" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>random_r (1 samples, 0.01%)</title><rect x="1157.2" y="485" width="0.1" height="15.0" fill="rgb(210,149,37)" rx="2" ry="2" />
<text text-anchor="" x="1160.16" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (1 samples, 0.01%)</title><rect x="455.3" y="517" width="0.2" height="15.0" fill="rgb(249,139,30)" rx="2" ry="2" />
<text text-anchor="" x="458.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__nf_ct_l4proto_find (2 samples, 0.02%)</title><rect x="1136.0" y="293" width="0.2" height="15.0" fill="rgb(239,86,21)" rx="2" ry="2" />
<text text-anchor="" x="1138.97" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="492.4" y="453" width="0.1" height="15.0" fill="rgb(213,42,4)" rx="2" ry="2" />
<text text-anchor="" x="495.41" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="499.4" y="549" width="0.2" height="15.0" fill="rgb(215,188,2)" rx="2" ry="2" />
<text text-anchor="" x="502.43" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_local_deliver_finish (3 samples, 0.03%)</title><rect x="892.6" y="277" width="0.4" height="15.0" fill="rgb(205,140,9)" rx="2" ry="2" />
<text text-anchor="" x="895.58" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vsprintf_chk (1 samples, 0.01%)</title><rect x="42.8" y="613" width="0.2" height="15.0" fill="rgb(239,26,0)" rx="2" ry="2" />
<text text-anchor="" x="45.84" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_dispatch (57 samples, 0.64%)</title><rect x="430.8" y="549" width="7.6" height="15.0" fill="rgb(207,53,51)" rx="2" ry="2" />
<text text-anchor="" x="433.83" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_client_log (2 samples, 0.02%)</title><rect x="68.0" y="613" width="0.3" height="15.0" fill="rgb(231,143,11)" rx="2" ry="2" />
<text text-anchor="" x="71.00" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (2 samples, 0.02%)</title><rect x="365.4" y="389" width="0.3" height="15.0" fill="rgb(234,229,31)" rx="2" ry="2" />
<text text-anchor="" x="368.42" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="318.7" y="405" width="0.1" height="15.0" fill="rgb(241,89,17)" rx="2" ry="2" />
<text text-anchor="" x="321.67" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (2 samples, 0.02%)</title><rect x="256.4" y="437" width="0.3" height="15.0" fill="rgb(216,217,25)" rx="2" ry="2" />
<text text-anchor="" x="259.43" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (2 samples, 0.02%)</title><rect x="273.8" y="517" width="0.2" height="15.0" fill="rgb(247,103,6)" rx="2" ry="2" />
<text text-anchor="" x="276.78" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>futex_wake (7 samples, 0.08%)</title><rect x="245.0" y="549" width="1.0" height="15.0" fill="rgb(207,57,36)" rx="2" ry="2" />
<text text-anchor="" x="248.05" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_unlock (4 samples, 0.04%)</title><rect x="478.8" y="565" width="0.5" height="15.0" fill="rgb(225,111,53)" rx="2" ry="2" />
<text text-anchor="" x="481.77" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_wall_time (1 samples, 0.01%)</title><rect x="1154.9" y="437" width="0.1" height="15.0" fill="rgb(234,95,47)" rx="2" ry="2" />
<text text-anchor="" x="1157.91" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (1 samples, 0.01%)</title><rect x="591.5" y="613" width="0.1" height="15.0" fill="rgb(213,112,18)" rx="2" ry="2" />
<text text-anchor="" x="594.46" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>towiresorted.isra.3 (63 samples, 0.71%)</title><rect x="499.6" y="581" width="8.3" height="15.0" fill="rgb(229,33,5)" rx="2" ry="2" />
<text text-anchor="" x="502.56" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_hash_function_reverse (7 samples, 0.08%)</title><rect x="504.2" y="517" width="0.9" height="15.0" fill="rgb(220,207,1)" rx="2" ry="2" />
<text text-anchor="" x="507.19" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc___mem_get (9 samples, 0.10%)</title><rect x="348.9" y="549" width="1.2" height="15.0" fill="rgb(245,102,4)" rx="2" ry="2" />
<text text-anchor="" x="351.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (1 samples, 0.01%)</title><rect x="1119.4" y="357" width="0.2" height="15.0" fill="rgb(222,4,25)" rx="2" ry="2" />
<text text-anchor="" x="1122.42" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__do_softirq (1 samples, 0.01%)</title><rect x="665.9" y="485" width="0.1" height="15.0" fill="rgb(221,98,37)" rx="2" ry="2" />
<text text-anchor="" x="668.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pthread_mutex_lock (1 samples, 0.01%)</title><rect x="452.7" y="533" width="0.1" height="15.0" fill="rgb(213,214,7)" rx="2" ry="2" />
<text text-anchor="" x="455.68" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (53 samples, 0.59%)</title><rect x="673.4" y="485" width="7.0" height="15.0" fill="rgb(225,116,45)" rx="2" ry="2" />
<text text-anchor="" x="676.43" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="651.6" y="613" width="0.1" height="15.0" fill="rgb(236,160,4)" rx="2" ry="2" />
<text text-anchor="" x="654.58" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_getlabelsequence (6 samples, 0.07%)</title><rect x="490.7" y="533" width="0.8" height="15.0" fill="rgb(241,187,20)" rx="2" ry="2" />
<text text-anchor="" x="493.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_message_setopt (2 samples, 0.02%)</title><rect x="1158.2" y="581" width="0.3" height="15.0" fill="rgb(254,216,9)" rx="2" ry="2" />
<text text-anchor="" x="1161.22" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="357.1" y="469" width="0.1" height="15.0" fill="rgb(246,25,29)" rx="2" ry="2" />
<text text-anchor="" x="360.07" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ns_to_timeval (1 samples, 0.01%)</title><rect x="295.6" y="309" width="0.2" height="15.0" fill="rgb(242,177,48)" rx="2" ry="2" />
<text text-anchor="" x="298.63" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullhash (1 samples, 0.01%)</title><rect x="1164.7" y="485" width="0.1" height="15.0" fill="rgb(235,169,33)" rx="2" ry="2" />
<text text-anchor="" x="1167.71" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>perf_event_wakeup (5 samples, 0.06%)</title><rect x="97.5" y="405" width="0.7" height="15.0" fill="rgb(211,195,41)" rx="2" ry="2" />
<text text-anchor="" x="100.53" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (3 samples, 0.03%)</title><rect x="31.2" y="533" width="0.4" height="15.0" fill="rgb(224,83,9)" rx="2" ry="2" />
<text text-anchor="" x="34.19" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (2 samples, 0.02%)</title><rect x="481.7" y="549" width="0.2" height="15.0" fill="rgb(211,24,9)" rx="2" ry="2" />
<text text-anchor="" x="484.68" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_IRQ (1 samples, 0.01%)</title><rect x="309.1" y="325" width="0.2" height="15.0" fill="rgb(223,92,36)" rx="2" ry="2" />
<text text-anchor="" x="312.14" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_rcv_finish (1 samples, 0.01%)</title><rect x="375.5" y="357" width="0.1" height="15.0" fill="rgb(211,34,15)" rx="2" ry="2" />
<text text-anchor="" x="378.48" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__dev_kfree_skb_any (1 samples, 0.01%)</title><rect x="1184.6" y="485" width="0.1" height="15.0" fill="rgb(209,26,15)" rx="2" ry="2" />
<text text-anchor="" x="1187.57" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_free (1 samples, 0.01%)</title><rect x="1188.4" y="581" width="0.1" height="15.0" fill="rgb(235,177,52)" rx="2" ry="2" />
<text text-anchor="" x="1191.41" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>start_thread (1,690 samples, 18.97%)</title><rect x="258.8" y="613" width="223.8" height="15.0" fill="rgb(246,63,24)" rx="2" ry="2" />
<text text-anchor="" x="261.82" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >start_thread</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (1 samples, 0.01%)</title><rect x="309.0" y="341" width="0.1" height="15.0" fill="rgb(217,141,36)" rx="2" ry="2" />
<text text-anchor="" x="312.01" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kfree_skb (9 samples, 0.10%)</title><rect x="367.4" y="405" width="1.2" height="15.0" fill="rgb(224,117,9)" rx="2" ry="2" />
<text text-anchor="" x="370.40" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_poll (1 samples, 0.01%)</title><rect x="311.4" y="373" width="0.1" height="15.0" fill="rgb(209,219,12)" rx="2" ry="2" />
<text text-anchor="" x="314.39" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_process_callbacks (1 samples, 0.01%)</title><rect x="601.1" y="517" width="0.2" height="15.0" fill="rgb(230,6,15)" rx="2" ry="2" />
<text text-anchor="" x="604.13" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_exit (1 samples, 0.01%)</title><rect x="1169.6" y="485" width="0.1" height="15.0" fill="rgb(215,64,51)" rx="2" ry="2" />
<text text-anchor="" x="1172.61" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sockfd_lookup_light (2 samples, 0.02%)</title><rect x="1119.2" y="453" width="0.2" height="15.0" fill="rgb(251,95,4)" rx="2" ry="2" />
<text text-anchor="" x="1122.15" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mem_cgroup_page_lruvec (1 samples, 0.01%)</title><rect x="325.8" y="341" width="0.2" height="15.0" fill="rgb(249,76,12)" rx="2" ry="2" />
<text text-anchor="" x="328.82" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr_safe (1 samples, 0.01%)</title><rect x="581.7" y="405" width="0.1" height="15.0" fill="rgb(251,158,40)" rx="2" ry="2" />
<text text-anchor="" x="584.66" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_rax (1 samples, 0.01%)</title><rect x="10.9" y="613" width="0.2" height="15.0" fill="rgb(239,109,19)" rx="2" ry="2" />
<text text-anchor="" x="13.93" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (1 samples, 0.01%)</title><rect x="177.2" y="293" width="0.2" height="15.0" fill="rgb(207,159,26)" rx="2" ry="2" />
<text text-anchor="" x="180.25" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="279.3" y="501" width="0.2" height="15.0" fill="rgb(218,11,3)" rx="2" ry="2" />
<text text-anchor="" x="282.34" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hash_conntrack_raw (2 samples, 0.02%)</title><rect x="1138.2" y="277" width="0.3" height="15.0" fill="rgb(246,95,27)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>udp_recvmsg (1 samples, 0.01%)</title><rect x="371.9" y="453" width="0.1" height="15.0" fill="rgb(240,164,42)" rx="2" ry="2" />
<text text-anchor="" x="374.91" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (2 samples, 0.02%)</title><rect x="296.4" y="341" width="0.3" height="15.0" fill="rgb(246,132,32)" rx="2" ry="2" />
<text text-anchor="" x="299.43" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="315.6" y="485" width="0.2" height="15.0" fill="rgb(230,1,1)" rx="2" ry="2" />
<text text-anchor="" x="318.63" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_idents_reserve (1 samples, 0.01%)</title><rect x="1130.0" y="357" width="0.1" height="15.0" fill="rgb(218,184,44)" rx="2" ry="2" />
<text text-anchor="" x="1133.01" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>blk_update_request (1 samples, 0.01%)</title><rect x="32.8" y="437" width="0.1" height="15.0" fill="rgb(217,53,13)" rx="2" ry="2" />
<text text-anchor="" x="35.78" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1 samples, 0.01%)</title><rect x="75.3" y="517" width="0.1" height="15.0" fill="rgb(249,134,11)" rx="2" ry="2" />
<text text-anchor="" x="78.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="374.2" y="437" width="0.1" height="15.0" fill="rgb(230,87,10)" rx="2" ry="2" />
<text text-anchor="" x="377.16" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>irq_work_interrupt (22 samples, 0.25%)</title><rect x="175.7" y="485" width="2.9" height="15.0" fill="rgb(220,195,22)" rx="2" ry="2" />
<text text-anchor="" x="178.66" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>igb_xmit_frame (13 samples, 0.15%)</title><rect x="1145.5" y="245" width="1.7" height="15.0" fill="rgb(231,63,25)" rx="2" ry="2" />
<text text-anchor="" x="1148.51" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_name_fullcompare (8 samples, 0.09%)</title><rect x="1182.5" y="597" width="1.0" height="15.0" fill="rgb(242,174,43)" rx="2" ry="2" />
<text text-anchor="" x="1185.45" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (1 samples, 0.01%)</title><rect x="255.1" y="469" width="0.1" height="15.0" fill="rgb(251,57,40)" rx="2" ry="2" />
<text text-anchor="" x="258.11" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__skb_get_hash (2 samples, 0.02%)</title><rect x="1116.6" y="213" width="0.3" height="15.0" fill="rgb(236,89,22)" rx="2" ry="2" />
<text text-anchor="" x="1119.64" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_hash_function (1 samples, 0.01%)</title><rect x="63.8" y="613" width="0.1" height="15.0" fill="rgb(232,162,21)" rx="2" ry="2" />
<text text-anchor="" x="66.76" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[libc-2.19.so] (1 samples, 0.01%)</title><rect x="529.4" y="469" width="0.1" height="15.0" fill="rgb(225,126,8)" rx="2" ry="2" />
<text text-anchor="" x="532.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>catgets (2 samples, 0.02%)</title><rect x="476.1" y="581" width="0.3" height="15.0" fill="rgb(232,86,50)" rx="2" ry="2" />
<text text-anchor="" x="479.12" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (31 samples, 0.35%)</title><rect x="382.9" y="357" width="4.1" height="15.0" fill="rgb(249,101,30)" rx="2" ry="2" />
<text text-anchor="" x="385.90" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_page_from_iter_iovec (1 samples, 0.01%)</title><rect x="388.5" y="421" width="0.1" height="15.0" fill="rgb(239,209,36)" rx="2" ry="2" />
<text text-anchor="" x="391.46" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dns_rdatatype_attributes (3 samples, 0.03%)</title><rect x="280.7" y="533" width="0.4" height="15.0" fill="rgb(238,48,7)" rx="2" ry="2" />
<text text-anchor="" x="283.67" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_pipe_buf_confirm (2 samples, 0.02%)</title><rect x="466.6" y="485" width="0.3" height="15.0" fill="rgb(217,147,42)" rx="2" ry="2" />
<text text-anchor="" x="469.59" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc__buffer_putuint16 (1 samples, 0.01%)</title><rect x="1153.5" y="549" width="0.1" height="15.0" fill="rgb(212,209,16)" rx="2" ry="2" />
<text text-anchor="" x="1156.45" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>isc_rwlock_lock (7 samples, 0.08%)</title><rect x="64.6" y="613" width="0.9" height="15.0" fill="rgb(229,51,51)" rx="2" ry="2" />
<text text-anchor="" x="67.56" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>queue_soa_query (3 samples, 0.03%)</title><rect x="455.3" y="549" width="0.4" height="15.0" fill="rgb(219,211,14)" rx="2" ry="2" />
<text text-anchor="" x="458.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (6 samples, 0.07%)</title><rect x="178.6" y="485" width="0.8" height="15.0" fill="rgb(244,60,10)" rx="2" ry="2" />
<text text-anchor="" x="181.57" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment