Page MenuHomeFreeBSD
Authored By
olivier
Feb 14 2017, 7:58 PM
Size
103 KB
Referenced Files
None
Subscribers
None

bench.313730-D5213.svg

<?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="338" onload="init(evt)" viewBox="0 0 1200 338" 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. -->
<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 (func != null)
func = func.replace(/ .*/, "");
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;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
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="338.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="321" 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="321" 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>critical_enter (14 samples, 0.08%)</title><rect x="479.3" y="33" width="0.9" height="15.0" fill="rgb(218,92,3)" rx="2" ry="2" />
<text text-anchor="" x="482.33" y="43.5" font-size="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_fn_rx (74 samples, 0.41%)</title><rect x="1035.4" y="257" width="4.8" height="15.0" fill="rgb(222,13,5)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x40362a (3 samples, 0.02%)</title><rect x="10.2" y="257" width="0.2" height="15.0" fill="rgb(205,20,2)" rx="2" ry="2" />
<text text-anchor="" x="13.19" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_activeclock (2 samples, 0.01%)</title><rect x="1034.2" y="225" width="0.1" height="15.0" fill="rgb(228,204,44)" rx="2" ry="2" />
<text text-anchor="" x="1037.20" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grouptaskqueue_enqueue (2 samples, 0.01%)</title><rect x="1031.4" y="177" width="0.1" height="15.0" fill="rgb(254,51,30)" rx="2" ry="2" />
<text text-anchor="" x="1034.42" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iflib_txq_drain (71 samples, 0.39%)</title><rect x="1035.6" y="65" width="4.6" height="15.0" fill="rgb(239,54,48)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iflib_txq_drain (3,372 samples, 18.50%)</title><rect x="482.1" y="33" width="218.4" height="15.0" fill="rgb(217,94,9)" rx="2" ry="2" />
<text text-anchor="" x="485.12" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >iflib_txq_drain</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cderror (2 samples, 0.01%)</title><rect x="1035.2" y="209" width="0.2" height="15.0" fill="rgb(206,144,6)" rx="2" ry="2" />
<text text-anchor="" x="1038.24" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_input (12,127 samples, 66.55%)</title><rect x="136.0" y="209" width="785.3" height="15.0" fill="rgb(218,112,53)" rx="2" ry="2" />
<text text-anchor="" x="139.01" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ether_input</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>usb_process (4 samples, 0.02%)</title><rect x="1035.0" y="257" width="0.2" height="15.0" fill="rgb(219,82,39)" rx="2" ry="2" />
<text text-anchor="" x="1037.98" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iflib_txq_drain (1,634 samples, 8.97%)</title><rect x="1040.2" y="49" width="105.8" height="15.0" fill="rgb(206,117,0)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >iflib_txq_dr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Xtimerint (8 samples, 0.04%)</title><rect x="19.8" y="273" width="0.6" height="15.0" fill="rgb(214,102,48)" rx="2" ry="2" />
<text text-anchor="" x="22.84" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>if_getsoftc (10 samples, 0.05%)</title><rect x="433.6" y="65" width="0.6" height="15.0" fill="rgb(231,90,11)" rx="2" ry="2" />
<text text-anchor="" x="436.55" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ata_cam_end_transaction (3 samples, 0.02%)</title><rect x="1030.6" y="193" width="0.2" height="15.0" fill="rgb(214,173,24)" rx="2" ry="2" />
<text text-anchor="" x="1033.64" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bzero (141 samples, 0.77%)</title><rect x="859.6" y="65" width="9.2" height="15.0" fill="rgb(247,53,15)" rx="2" ry="2" />
<text text-anchor="" x="862.63" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bcmp (522 samples, 2.86%)</title><rect x="169.9" y="161" width="33.8" height="15.0" fill="rgb(222,72,52)" rx="2" ry="2" />
<text text-anchor="" x="172.94" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bcmp</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ata_begin_transaction (3 samples, 0.02%)</title><rect x="1030.6" y="177" width="0.2" height="15.0" fill="rgb(240,86,46)" rx="2" ry="2" />
<text text-anchor="" x="1033.64" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_input (71 samples, 0.39%)</title><rect x="1035.6" y="241" width="4.6" height="15.0" fill="rgb(206,76,16)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>in_localip (394 samples, 2.16%)</title><rect x="735.7" y="97" width="25.5" height="15.0" fill="rgb(222,12,27)" rx="2" ry="2" />
<text text-anchor="" x="738.69" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pmc_hook_handler (239 samples, 1.31%)</title><rect x="1173.2" y="209" width="15.4" height="15.0" fill="rgb(248,220,27)" rx="2" ry="2" />
<text text-anchor="" x="1176.16" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_iflib_fl_refill (3 samples, 0.02%)</title><rect x="1035.4" y="241" width="0.2" height="15.0" fill="rgb(222,154,45)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="251.5" font-size="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_fn_rx (15,333 samples, 84.14%)</title><rect x="31.6" y="225" width="992.8" height="15.0" fill="rgb(207,100,17)" rx="2" ry="2" />
<text text-anchor="" x="34.56" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_task_fn_rx</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uma_small_alloc (3 samples, 0.02%)</title><rect x="1035.4" y="49" width="0.2" height="15.0" fill="rgb(233,188,41)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_alloc_slab (210 samples, 1.15%)</title><rect x="85.8" y="113" width="13.6" height="15.0" fill="rgb(232,111,11)" rx="2" ry="2" />
<text text-anchor="" x="88.76" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_enter (7 samples, 0.04%)</title><rect x="928.7" y="161" width="0.5" height="15.0" fill="rgb(206,210,7)" rx="2" ry="2" />
<text text-anchor="" x="931.72" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uhub_explore (3 samples, 0.02%)</title><rect x="1035.0" y="225" width="0.2" height="15.0" fill="rgb(241,84,8)" rx="2" ry="2" />
<text text-anchor="" x="1037.98" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lapic_handle_timer (268 samples, 1.47%)</title><rect x="1172.6" y="273" width="17.3" height="15.0" fill="rgb(207,164,25)" rx="2" ry="2" />
<text text-anchor="" x="1175.58" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xpt_done_process (2 samples, 0.01%)</title><rect x="1035.2" y="241" width="0.2" height="15.0" fill="rgb(209,216,47)" rx="2" ry="2" />
<text text-anchor="" x="1038.24" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>usbd_req_get_port_status (2 samples, 0.01%)</title><rect x="1035.0" y="193" width="0.2" height="15.0" fill="rgb(214,109,20)" rx="2" ry="2" />
<text text-anchor="" x="1038.05" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>m_cljget (231 samples, 1.27%)</title><rect x="84.4" y="193" width="15.0" height="15.0" fill="rgb(250,55,7)" rx="2" ry="2" />
<text text-anchor="" x="87.40" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grouptaskqueue_enqueue (293 samples, 1.61%)</title><rect x="1151.2" y="209" width="19.0" height="15.0" fill="rgb(207,123,10)" rx="2" ry="2" />
<text text-anchor="" x="1154.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_fetch_slab (3 samples, 0.02%)</title><rect x="1035.4" y="81" width="0.2" height="15.0" fill="rgb(224,24,17)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_broadcast (12 samples, 0.07%)</title><rect x="1027.2" y="209" width="0.8" height="15.0" fill="rgb(211,121,7)" rx="2" ry="2" />
<text text-anchor="" x="1030.21" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_output (71 samples, 0.39%)</title><rect x="1035.6" y="129" width="4.6" height="15.0" fill="rgb(207,189,35)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>grouptaskqueue_enqueue (137 samples, 0.75%)</title><rect x="921.3" y="209" width="8.8" height="15.0" fill="rgb(212,27,21)" rx="2" ry="2" />
<text text-anchor="" x="924.27" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wakeup_one (2 samples, 0.01%)</title><rect x="1187.6" y="145" width="0.1" height="15.0" fill="rgb(216,26,41)" rx="2" ry="2" />
<text text-anchor="" x="1190.60" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_release (5 samples, 0.03%)</title><rect x="1029.9" y="209" width="0.4" height="15.0" fill="rgb(239,156,39)" rx="2" ry="2" />
<text text-anchor="" x="1032.93" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Xipi_intr_bitmap_handler (2 samples, 0.01%)</title><rect x="19.7" y="273" width="0.1" height="15.0" fill="rgb(253,20,24)" rx="2" ry="2" />
<text text-anchor="" x="22.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ifmp_ring_enqueue (71 samples, 0.39%)</title><rect x="1035.6" y="97" width="4.6" height="15.0" fill="rgb(210,181,30)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netisr_dispatch_src (71 samples, 0.39%)</title><rect x="1035.6" y="225" width="4.6" height="15.0" fill="rgb(206,115,26)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netisr_dispatch (6 samples, 0.03%)</title><rect x="138.7" y="193" width="0.4" height="15.0" fill="rgb(227,180,18)" rx="2" ry="2" />
<text text-anchor="" x="141.66" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ataaction (3 samples, 0.02%)</title><rect x="1031.2" y="113" width="0.2" height="15.0" fill="rgb(219,92,16)" rx="2" ry="2" />
<text text-anchor="" x="1034.16" y="123.5" font-size="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_tryforward (71 samples, 0.39%)</title><rect x="1035.6" y="145" width="4.6" height="15.0" fill="rgb(246,218,4)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (3 samples, 0.02%)</title><rect x="1030.4" y="193" width="0.2" height="15.0" fill="rgb(247,9,3)" rx="2" ry="2" />
<text text-anchor="" x="1033.45" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagezero (2 samples, 0.01%)</title><rect x="1035.4" y="33" width="0.1" height="15.0" fill="rgb(250,102,10)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_release (2 samples, 0.01%)</title><rect x="1169.7" y="177" width="0.1" height="15.0" fill="rgb(217,113,46)" rx="2" ry="2" />
<text text-anchor="" x="1172.67" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_fetch_slab (3 samples, 0.02%)</title><rect x="1035.4" y="161" width="0.2" height="15.0" fill="rgb(249,158,50)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (3 samples, 0.02%)</title><rect x="84.9" y="161" width="0.2" height="15.0" fill="rgb(211,200,17)" rx="2" ry="2" />
<text text-anchor="" x="87.92" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ata_generic_command (3 samples, 0.02%)</title><rect x="1031.2" y="81" width="0.2" height="15.0" fill="rgb(231,220,45)" rx="2" ry="2" />
<text text-anchor="" x="1034.16" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_isc_txd_encap (261 samples, 1.43%)</title><rect x="1112.9" y="33" width="16.9" height="15.0" fill="rgb(207,52,2)" rx="2" ry="2" />
<text text-anchor="" x="1115.88" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netisr_dispatch_src (10,600 samples, 58.17%)</title><rect x="217.7" y="145" width="686.3" height="15.0" fill="rgb(229,77,14)" rx="2" ry="2" />
<text text-anchor="" x="220.66" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >netisr_dispatch_src</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_output (6,999 samples, 38.41%)</title><rect x="282.5" y="97" width="453.2" height="15.0" fill="rgb(240,5,35)" rx="2" ry="2" />
<text text-anchor="" x="285.48" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ether_output</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>if_inc_counter (42 samples, 0.23%)</title><rect x="1056.7" y="33" width="2.8" height="15.0" fill="rgb(215,128,13)" rx="2" ry="2" />
<text text-anchor="" x="1059.74" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>softclock (46 samples, 0.25%)</title><rect x="1030.9" y="225" width="3.0" height="15.0" fill="rgb(220,2,11)" rx="2" ry="2" />
<text text-anchor="" x="1033.90" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xpt_action_default (3 samples, 0.02%)</title><rect x="1031.2" y="145" width="0.2" height="15.0" fill="rgb(237,146,44)" rx="2" ry="2" />
<text text-anchor="" x="1034.16" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netmap_rx_irq (17 samples, 0.09%)</title><rect x="1006.3" y="209" width="1.1" height="15.0" fill="rgb(215,221,18)" rx="2" ry="2" />
<text text-anchor="" x="1009.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (7 samples, 0.04%)</title><rect x="1188.1" y="161" width="0.5" height="15.0" fill="rgb(209,22,40)" rx="2" ry="2" />
<text text-anchor="" x="1191.12" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uma_small_alloc (13 samples, 0.07%)</title><rect x="124.7" y="113" width="0.9" height="15.0" fill="rgb(226,115,45)" rx="2" ry="2" />
<text text-anchor="" x="127.74" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_signal (2 samples, 0.01%)</title><rect x="1031.4" y="145" width="0.1" height="15.0" fill="rgb(227,125,22)" rx="2" ry="2" />
<text text-anchor="" x="1034.42" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_lock (45 samples, 0.25%)</title><rect x="926.3" y="177" width="2.9" height="15.0" fill="rgb(228,198,44)" rx="2" ry="2" />
<text text-anchor="" x="929.26" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gtaskqueue_run_locked (74 samples, 0.41%)</title><rect x="1035.4" y="273" width="4.8" height="15.0" fill="rgb(210,199,33)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_msix_que (32 samples, 0.18%)</title><rect x="1170.2" y="209" width="2.1" height="15.0" fill="rgb(218,27,35)" rx="2" ry="2" />
<text text-anchor="" x="1173.19" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gtaskqueue_thread_loop (15,594 samples, 85.57%)</title><rect x="20.9" y="257" width="1009.7" height="15.0" fill="rgb(228,106,37)" rx="2" ry="2" />
<text text-anchor="" x="23.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gtaskqueue_thread_loop</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mtx_lock_spin_flags (21 samples, 0.12%)</title><rect x="1177.2" y="145" width="1.4" height="15.0" fill="rgb(247,192,20)" rx="2" ry="2" />
<text text-anchor="" x="1180.24" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_signal (5 samples, 0.03%)</title><rect x="929.3" y="177" width="0.3" height="15.0" fill="rgb(208,26,38)" rx="2" ry="2" />
<text text-anchor="" x="932.30" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mtx_lock_sleep (5 samples, 0.03%)</title><rect x="96.3" y="65" width="0.3" height="15.0" fill="rgb(227,97,0)" rx="2" ry="2" />
<text text-anchor="" x="99.32" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_enter (6 samples, 0.03%)</title><rect x="1029.3" y="193" width="0.4" height="15.0" fill="rgb(223,96,33)" rx="2" ry="2" />
<text text-anchor="" x="1032.28" y="203.5" font-size="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_delay (3 samples, 0.02%)</title><rect x="90.1" y="81" width="0.2" height="15.0" fill="rgb(208,221,48)" rx="2" ry="2" />
<text text-anchor="" x="93.10" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cddone (2 samples, 0.01%)</title><rect x="1035.2" y="225" width="0.2" height="15.0" fill="rgb(230,161,9)" rx="2" ry="2" />
<text text-anchor="" x="1038.24" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_enter (12 samples, 0.07%)</title><rect x="1024.7" y="225" width="0.8" height="15.0" fill="rgb(232,227,37)" rx="2" ry="2" />
<text text-anchor="" x="1027.75" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bzero (113 samples, 0.62%)</title><rect x="1047.5" y="33" width="7.3" height="15.0" fill="rgb(239,185,40)" rx="2" ry="2" />
<text text-anchor="" x="1050.48" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fib4_lookup_nh_basic (1,792 samples, 9.83%)</title><rect x="774.3" y="81" width="116.0" height="15.0" fill="rgb(243,59,29)" rx="2" ry="2" />
<text text-anchor="" x="777.28" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fib4_lookup_nh..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_if_queue_intr_enable (6 samples, 0.03%)</title><rect x="931.6" y="209" width="0.4" height="15.0" fill="rgb(240,84,8)" rx="2" ry="2" />
<text text-anchor="" x="934.63" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_demux (10,815 samples, 59.35%)</title><rect x="203.7" y="161" width="700.3" height="15.0" fill="rgb(239,7,52)" rx="2" ry="2" />
<text text-anchor="" x="206.74" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ether_demux</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uma_zfree_arg (192 samples, 1.05%)</title><rect x="1133.5" y="33" width="12.5" height="15.0" fill="rgb(230,50,31)" rx="2" ry="2" />
<text text-anchor="" x="1136.54" y="43.5" font-size="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_input (71 samples, 0.39%)</title><rect x="1035.6" y="161" width="4.6" height="15.0" fill="rgb(218,142,20)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_isc_txd_flush (14 samples, 0.08%)</title><rect x="1129.8" y="33" width="0.9" height="15.0" fill="rgb(244,18,28)" rx="2" ry="2" />
<text text-anchor="" x="1132.78" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_idle (6 samples, 0.03%)</title><rect x="1034.2" y="241" width="0.4" height="15.0" fill="rgb(217,93,15)" rx="2" ry="2" />
<text text-anchor="" x="1037.20" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ata_wait (2 samples, 0.01%)</title><rect x="1030.7" y="145" width="0.1" height="15.0" fill="rgb(227,97,33)" rx="2" ry="2" />
<text text-anchor="" x="1033.71" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intr_execute_handlers (400 samples, 2.20%)</title><rect x="1146.6" y="257" width="25.9" height="15.0" fill="rgb(211,223,50)" rx="2" ry="2" />
<text text-anchor="" x="1149.55" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_output (1,634 samples, 8.97%)</title><rect x="1040.2" y="113" width="105.8" height="15.0" fill="rgb(223,81,40)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ether_output</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intr_event_execute_handlers (51 samples, 0.28%)</title><rect x="1030.6" y="241" width="3.3" height="15.0" fill="rgb(233,164,30)" rx="2" ry="2" />
<text text-anchor="" x="1033.64" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_lock (46 samples, 0.25%)</title><rect x="1166.7" y="177" width="3.0" height="15.0" fill="rgb(215,119,13)" rx="2" ry="2" />
<text text-anchor="" x="1169.69" y="187.5" font-size="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_findroute (1,994 samples, 10.94%)</title><rect x="761.2" y="97" width="129.1" height="15.0" fill="rgb(238,193,4)" rx="2" ry="2" />
<text text-anchor="" x="764.20" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip_findroute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bzero (111 samples, 0.61%)</title><rect x="964.2" y="193" width="7.2" height="15.0" fill="rgb(222,85,32)" rx="2" ry="2" />
<text text-anchor="" x="967.21" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pmc_process_samples (239 samples, 1.31%)</title><rect x="1173.2" y="193" width="15.4" height="15.0" fill="rgb(225,39,31)" rx="2" ry="2" />
<text text-anchor="" x="1176.16" y="203.5" font-size="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_rlock (668 samples, 3.67%)</title><rect x="791.3" y="65" width="43.3" height="15.0" fill="rgb(213,210,8)" rx="2" ry="2" />
<text text-anchor="" x="794.31" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__rw..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VOP_FSYNC_APV (3 samples, 0.02%)</title><rect x="1034.8" y="241" width="0.2" height="15.0" fill="rgb(249,82,25)" rx="2" ry="2" />
<text text-anchor="" x="1037.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mb_ctor_mbuf (76 samples, 0.42%)</title><rect x="119.2" y="177" width="5.0" height="15.0" fill="rgb(226,176,28)" rx="2" ry="2" />
<text text-anchor="" x="122.24" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_nh_input (1,634 samples, 8.97%)</title><rect x="1040.2" y="193" width="105.8" height="15.0" fill="rgb(221,47,12)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ether_nh_input</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_rw_runlock_cookie (317 samples, 1.74%)</title><rect x="362.3" y="65" width="20.5" height="15.0" fill="rgb(217,195,6)" rx="2" ry="2" />
<text text-anchor="" x="365.26" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_demux (71 samples, 0.39%)</title><rect x="1035.6" y="193" width="4.6" height="15.0" fill="rgb(254,20,21)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_write_reg (2 samples, 0.01%)</title><rect x="1172.1" y="193" width="0.2" height="15.0" fill="rgb(239,82,54)" rx="2" ry="2" />
<text text-anchor="" x="1175.13" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wakeup (57 samples, 0.31%)</title><rect x="1027.0" y="225" width="3.6" height="15.0" fill="rgb(245,69,25)" rx="2" ry="2" />
<text text-anchor="" x="1029.95" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cdmediapoll (3 samples, 0.02%)</title><rect x="1031.2" y="193" width="0.2" height="15.0" fill="rgb(245,98,16)" rx="2" ry="2" />
<text text-anchor="" x="1034.16" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uma_zalloc_arg (383 samples, 2.10%)</title><rect x="100.8" y="193" width="24.8" height="15.0" fill="rgb(243,94,44)" rx="2" ry="2" />
<text text-anchor="" x="103.78" y="203.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>critical_enter (5 samples, 0.03%)</title><rect x="1024.4" y="225" width="0.3" height="15.0" fill="rgb(213,159,53)" rx="2" ry="2" />
<text text-anchor="" x="1027.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (4 samples, 0.02%)</title><rect x="1165.9" y="193" width="0.3" height="15.0" fill="rgb(240,59,36)" rx="2" ry="2" />
<text text-anchor="" x="1168.91" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gtaskqueue_run_locked (15,594 samples, 85.57%)</title><rect x="20.9" y="241" width="1009.7" height="15.0" fill="rgb(217,209,51)" rx="2" ry="2" />
<text text-anchor="" x="23.88" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gtaskqueue_run_locked</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_signal (3 samples, 0.02%)</title><rect x="1169.8" y="177" width="0.2" height="15.0" fill="rgb(220,133,1)" rx="2" ry="2" />
<text text-anchor="" x="1172.80" y="187.5" font-size="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_sync (3 samples, 0.02%)</title><rect x="1034.8" y="257" width="0.2" height="15.0" fill="rgb(206,221,32)" rx="2" ry="2" />
<text text-anchor="" x="1037.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>doreti (7 samples, 0.04%)</title><rect x="20.4" y="273" width="0.5" height="15.0" fill="rgb(209,133,41)" rx="2" ry="2" />
<text text-anchor="" x="23.43" y="283.5" font-size="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_import (3 samples, 0.02%)</title><rect x="1035.4" y="193" width="0.2" height="15.0" fill="rgb(226,148,44)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (3 samples, 0.02%)</title><rect x="1189.4" y="209" width="0.2" height="15.0" fill="rgb(205,187,26)" rx="2" ry="2" />
<text text-anchor="" x="1192.42" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (18 samples, 0.10%)</title><rect x="1037.6" y="33" width="1.1" height="15.0" fill="rgb(212,152,5)" rx="2" ry="2" />
<text text-anchor="" x="1040.57" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netisr_dispatch_src (12,080 samples, 66.29%)</title><rect x="139.1" y="193" width="782.2" height="15.0" fill="rgb(234,80,37)" rx="2" ry="2" />
<text text-anchor="" x="142.05" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >netisr_dispatch_src</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netisr_dispatch_src (1,634 samples, 8.97%)</title><rect x="1040.2" y="209" width="105.8" height="15.0" fill="rgb(219,207,17)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >netisr_dispa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>if_getdrvflags (16 samples, 0.09%)</title><rect x="930.1" y="209" width="1.1" height="15.0" fill="rgb(236,87,15)" rx="2" ry="2" />
<text text-anchor="" x="933.14" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (8 samples, 0.04%)</title><rect x="929.6" y="177" width="0.5" height="15.0" fill="rgb(237,150,42)" rx="2" ry="2" />
<text text-anchor="" x="932.63" y="187.5" font-size="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_input (10,503 samples, 57.64%)</title><rect x="223.9" y="129" width="680.1" height="15.0" fill="rgb(217,44,1)" rx="2" ry="2" />
<text text-anchor="" x="226.95" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip_input</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arpresolve (1,605 samples, 8.81%)</title><rect x="309.2" y="81" width="104.0" height="15.0" fill="rgb(238,61,14)" rx="2" ry="2" />
<text text-anchor="" x="312.23" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >arpresolve</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uma_zfree_arg (71 samples, 0.39%)</title><rect x="1035.6" y="49" width="4.6" height="15.0" fill="rgb(244,37,31)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_write_reg (25 samples, 0.14%)</title><rect x="1130.7" y="33" width="1.6" height="15.0" fill="rgb(240,102,14)" rx="2" ry="2" />
<text text-anchor="" x="1133.69" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xpt_run_allocq (3 samples, 0.02%)</title><rect x="1031.2" y="177" width="0.2" height="15.0" fill="rgb(223,95,33)" rx="2" ry="2" />
<text text-anchor="" x="1034.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (5 samples, 0.03%)</title><rect x="1030.3" y="209" width="0.3" height="15.0" fill="rgb(237,198,17)" rx="2" ry="2" />
<text text-anchor="" x="1033.32" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ifmp_ring_enqueue (1,634 samples, 8.97%)</title><rect x="1040.2" y="81" width="105.8" height="15.0" fill="rgb(222,165,15)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ifmp_ring_en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_fetch_slab (3 samples, 0.02%)</title><rect x="1035.4" y="177" width="0.2" height="15.0" fill="rgb(223,56,10)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_write_reg (5 samples, 0.03%)</title><rect x="84.1" y="193" width="0.3" height="15.0" fill="rgb(240,145,43)" rx="2" ry="2" />
<text text-anchor="" x="87.08" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pmclog_process_callchain (198 samples, 1.09%)</title><rect x="1174.9" y="177" width="12.8" height="15.0" fill="rgb(251,226,17)" rx="2" ry="2" />
<text text-anchor="" x="1177.91" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_enter (18 samples, 0.10%)</title><rect x="462.3" y="49" width="1.2" height="15.0" fill="rgb(219,177,51)" rx="2" ry="2" />
<text text-anchor="" x="465.30" y="59.5" font-size="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.01%)</title><rect x="1189.7" y="209" width="0.2" height="15.0" fill="rgb(220,175,9)" rx="2" ry="2" />
<text text-anchor="" x="1192.74" y="219.5" font-size="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_fetch_slab (215 samples, 1.18%)</title><rect x="85.4" y="145" width="14.0" height="15.0" fill="rgb(216,193,53)" rx="2" ry="2" />
<text text-anchor="" x="88.44" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>if_getdrvflags (30 samples, 0.16%)</title><rect x="1054.8" y="33" width="1.9" height="15.0" fill="rgb(218,79,27)" rx="2" ry="2" />
<text text-anchor="" x="1057.80" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ithread_loop (52 samples, 0.29%)</title><rect x="1030.6" y="257" width="3.4" height="15.0" fill="rgb(216,211,26)" rx="2" ry="2" />
<text text-anchor="" x="1033.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bzero (136 samples, 0.75%)</title><rect x="765.5" y="81" width="8.8" height="15.0" fill="rgb(238,6,49)" rx="2" ry="2" />
<text text-anchor="" x="768.48" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_demux (1,634 samples, 8.97%)</title><rect x="1040.2" y="177" width="105.8" height="15.0" fill="rgb(242,89,51)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ether_demux</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ata_begin_transaction (3 samples, 0.02%)</title><rect x="1031.2" y="97" width="0.2" height="15.0" fill="rgb(244,160,36)" rx="2" ry="2" />
<text text-anchor="" x="1034.16" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagezero (9 samples, 0.05%)</title><rect x="124.8" y="97" width="0.6" height="15.0" fill="rgb(207,133,31)" rx="2" ry="2" />
<text text-anchor="" x="127.81" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vn_io_fault (2 samples, 0.01%)</title><rect x="1034.0" y="241" width="0.1" height="15.0" fill="rgb(216,132,51)" rx="2" ry="2" />
<text text-anchor="" x="1037.01" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gtaskqueue_run_locked (1,634 samples, 8.97%)</title><rect x="1040.2" y="257" width="105.8" height="15.0" fill="rgb(220,226,14)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gtaskqueue_r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drain_ring_lockless (71 samples, 0.39%)</title><rect x="1035.6" y="81" width="4.6" height="15.0" fill="rgb(212,32,6)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ffs_write (2 samples, 0.01%)</title><rect x="1034.0" y="193" width="0.1" height="15.0" fill="rgb(212,96,18)" rx="2" ry="2" />
<text text-anchor="" x="1037.01" y="203.5" font-size="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_runlock_cookie (387 samples, 2.12%)</title><rect x="834.6" y="65" width="25.0" height="15.0" fill="rgb(234,72,38)" rx="2" ry="2" />
<text text-anchor="" x="837.57" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xpt_done_td (2 samples, 0.01%)</title><rect x="1035.2" y="257" width="0.2" height="15.0" fill="rgb(211,139,34)" rx="2" ry="2" />
<text text-anchor="" x="1038.24" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_alloc_slab (3 samples, 0.02%)</title><rect x="1035.4" y="145" width="0.2" height="15.0" fill="rgb(218,134,42)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bzero (171 samples, 0.94%)</title><rect x="271.4" y="97" width="11.1" height="15.0" fill="rgb(243,151,35)" rx="2" ry="2" />
<text text-anchor="" x="274.41" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>in_lltable_lookup (57 samples, 0.31%)</title><rect x="409.5" y="65" width="3.7" height="15.0" fill="rgb(210,124,45)" rx="2" ry="2" />
<text text-anchor="" x="412.46" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handleevents (266 samples, 1.46%)</title><rect x="1172.7" y="241" width="17.2" height="15.0" fill="rgb(234,160,30)" rx="2" ry="2" />
<text text-anchor="" x="1175.71" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_update_stats_counters (30 samples, 0.16%)</title><rect x="1031.7" y="161" width="1.9" height="15.0" fill="rgb(250,39,18)" rx="2" ry="2" />
<text text-anchor="" x="1034.68" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_rm_rlock (220 samples, 1.21%)</title><rect x="744.4" y="81" width="14.3" height="15.0" fill="rgb(212,8,14)" rx="2" ry="2" />
<text text-anchor="" x="747.43" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_input (1,634 samples, 8.97%)</title><rect x="1040.2" y="225" width="105.8" height="15.0" fill="rgb(214,25,14)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ether_input</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_import (20 samples, 0.11%)</title><rect x="98.1" y="81" width="1.3" height="15.0" fill="rgb(247,94,37)" rx="2" ry="2" />
<text text-anchor="" x="101.06" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>m_pkthdr_init (146 samples, 0.80%)</title><rect x="961.9" y="209" width="9.5" height="15.0" fill="rgb(223,34,23)" rx="2" ry="2" />
<text text-anchor="" x="964.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vm_phys_alloc_domain_pages (18 samples, 0.10%)</title><rect x="96.7" y="49" width="1.2" height="15.0" fill="rgb(226,125,15)" rx="2" ry="2" />
<text text-anchor="" x="99.70" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mtx_lock_sleep (2 samples, 0.01%)</title><rect x="99.1" y="49" width="0.1" height="15.0" fill="rgb(234,16,12)" rx="2" ry="2" />
<text text-anchor="" x="102.10" y="59.5" font-size="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_fn_rx (1,634 samples, 8.97%)</title><rect x="1040.2" y="241" width="105.8" height="15.0" fill="rgb(236,132,21)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_task_fn_rx</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>usb_bus_explore (4 samples, 0.02%)</title><rect x="1035.0" y="241" width="0.2" height="15.0" fill="rgb(207,196,21)" rx="2" ry="2" />
<text text-anchor="" x="1037.98" y="251.5" font-size="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_import (21 samples, 0.12%)</title><rect x="124.2" y="177" width="1.4" height="15.0" fill="rgb(227,50,3)" rx="2" ry="2" />
<text text-anchor="" x="127.22" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vm_phys_alloc_pages (19 samples, 0.10%)</title><rect x="96.6" y="65" width="1.3" height="15.0" fill="rgb(247,53,15)" rx="2" ry="2" />
<text text-anchor="" x="99.64" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mtx_unlock_spin_flags (2 samples, 0.01%)</title><rect x="1173.5" y="177" width="0.1" height="15.0" fill="rgb(209,93,51)" rx="2" ry="2" />
<text text-anchor="" x="1176.49" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uma_small_alloc (117 samples, 0.64%)</title><rect x="90.3" y="97" width="7.6" height="15.0" fill="rgb(228,66,40)" rx="2" ry="2" />
<text text-anchor="" x="93.29" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wakeup_one (63 samples, 0.35%)</title><rect x="926.1" y="193" width="4.0" height="15.0" fill="rgb(209,128,30)" rx="2" ry="2" />
<text text-anchor="" x="929.07" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_rm_runlock (39 samples, 0.21%)</title><rect x="758.7" y="81" width="2.5" height="15.0" fill="rgb(224,152,15)" rx="2" ry="2" />
<text text-anchor="" x="761.68" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mb_dtor_mbuf (22 samples, 0.12%)</title><rect x="1038.7" y="33" width="1.5" height="15.0" fill="rgb(222,71,12)" rx="2" ry="2" />
<text text-anchor="" x="1041.74" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intr_lookup_source (2 samples, 0.01%)</title><rect x="1172.5" y="257" width="0.1" height="15.0" fill="rgb(253,182,48)" rx="2" ry="2" />
<text text-anchor="" x="1175.45" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mtx_lock_sleep (5 samples, 0.03%)</title><rect x="90.0" y="97" width="0.3" height="15.0" fill="rgb(230,131,0)" rx="2" ry="2" />
<text text-anchor="" x="92.97" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cam_periph_error (2 samples, 0.01%)</title><rect x="1035.2" y="193" width="0.2" height="15.0" fill="rgb(254,58,28)" rx="2" ry="2" />
<text text-anchor="" x="1038.24" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vm_page_alloc (38 samples, 0.21%)</title><rect x="95.4" y="81" width="2.5" height="15.0" fill="rgb(222,141,19)" rx="2" ry="2" />
<text text-anchor="" x="98.41" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vm_page_alloc (3 samples, 0.02%)</title><rect x="125.4" y="97" width="0.2" height="15.0" fill="rgb(224,200,34)" rx="2" ry="2" />
<text text-anchor="" x="128.39" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_enter (40 samples, 0.22%)</title><rect x="114.8" y="177" width="2.6" height="15.0" fill="rgb(209,69,23)" rx="2" ry="2" />
<text text-anchor="" x="117.84" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>taskqueue_thread_enqueue (3 samples, 0.02%)</title><rect x="1166.2" y="193" width="0.2" height="15.0" fill="rgb(238,163,37)" rx="2" ry="2" />
<text text-anchor="" x="1169.17" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_alloc_slab (16 samples, 0.09%)</title><rect x="124.5" y="129" width="1.1" height="15.0" fill="rgb(224,128,19)" rx="2" ry="2" />
<text text-anchor="" x="127.55" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ata_generic_intr (4 samples, 0.02%)</title><rect x="1030.6" y="225" width="0.3" height="15.0" fill="rgb(212,133,1)" rx="2" ry="2" />
<text text-anchor="" x="1033.64" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>timercb (267 samples, 1.47%)</title><rect x="1172.6" y="257" width="17.3" height="15.0" fill="rgb(254,38,28)" rx="2" ry="2" />
<text text-anchor="" x="1175.65" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mtx_lock_spin_flags (2 samples, 0.01%)</title><rect x="1187.3" y="129" width="0.1" height="15.0" fill="rgb(212,154,16)" rx="2" ry="2" />
<text text-anchor="" x="1190.28" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wakeup_one (2 samples, 0.01%)</title><rect x="1031.4" y="161" width="0.1" height="15.0" fill="rgb(244,32,38)" rx="2" ry="2" />
<text text-anchor="" x="1034.42" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>msi_eoi_source (2 samples, 0.01%)</title><rect x="1172.3" y="225" width="0.1" height="15.0" fill="rgb(237,19,14)" rx="2" ry="2" />
<text text-anchor="" x="1175.26" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drain_ring_lockless (3,641 samples, 19.98%)</title><rect x="465.0" y="49" width="235.7" height="15.0" fill="rgb(243,95,6)" rx="2" ry="2" />
<text text-anchor="" x="467.96" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >drain_ring_lockless</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pmclog_loop (2 samples, 0.01%)</title><rect x="1034.0" y="257" width="0.1" height="15.0" fill="rgb(223,108,50)" rx="2" ry="2" />
<text text-anchor="" x="1037.01" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ffs_sync (2 samples, 0.01%)</title><rect x="1034.8" y="209" width="0.1" height="15.0" fill="rgb(243,197,17)" rx="2" ry="2" />
<text text-anchor="" x="1037.79" y="219.5" font-size="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 (472 samples, 2.59%)</title><rect x="705.1" y="81" width="30.6" height="15.0" fill="rgb(211,2,44)" rx="2" ry="2" />
<text text-anchor="" x="708.13" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >me..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>loadtimer (2 samples, 0.01%)</title><rect x="1188.8" y="225" width="0.1" height="15.0" fill="rgb(247,65,40)" rx="2" ry="2" />
<text text-anchor="" x="1191.77" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iflib_if_transmit (71 samples, 0.39%)</title><rect x="1035.6" y="113" width="4.6" height="15.0" fill="rgb(209,57,24)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mac_ifnet_create_mbuf (83 samples, 0.46%)</title><rect x="904.0" y="161" width="5.4" height="15.0" fill="rgb(226,159,20)" rx="2" ry="2" />
<text text-anchor="" x="907.05" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rxd_frag_to_sd (259 samples, 1.42%)</title><rect x="1007.4" y="209" width="16.8" height="15.0" fill="rgb(218,78,37)" rx="2" ry="2" />
<text text-anchor="" x="1010.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_read_reg (30 samples, 0.16%)</title><rect x="1031.7" y="145" width="1.9" height="15.0" fill="rgb(220,85,36)" rx="2" ry="2" />
<text text-anchor="" x="1034.68" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x40233c (2 samples, 0.01%)</title><rect x="10.3" y="241" width="0.1" height="15.0" fill="rgb(225,205,13)" rx="2" ry="2" />
<text text-anchor="" x="13.26" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (5 samples, 0.03%)</title><rect x="1026.6" y="209" width="0.4" height="15.0" fill="rgb(232,82,43)" rx="2" ry="2" />
<text text-anchor="" x="1029.63" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wakeup_one (59 samples, 0.32%)</title><rect x="1166.4" y="193" width="3.8" height="15.0" fill="rgb(206,16,49)" rx="2" ry="2" />
<text text-anchor="" x="1169.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>usbd_do_request_flags (2 samples, 0.01%)</title><rect x="1035.0" y="177" width="0.2" height="15.0" fill="rgb(241,66,40)" rx="2" ry="2" />
<text text-anchor="" x="1038.05" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_lock (2 samples, 0.01%)</title><rect x="1187.6" y="129" width="0.1" height="15.0" fill="rgb(238,216,37)" rx="2" ry="2" />
<text text-anchor="" x="1190.60" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lapic_handle_intr (411 samples, 2.26%)</title><rect x="1146.0" y="273" width="26.6" height="15.0" fill="rgb(248,79,6)" rx="2" ry="2" />
<text text-anchor="" x="1148.97" y="283.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>callout_process (2 samples, 0.01%)</title><rect x="1172.8" y="225" width="0.2" height="15.0" fill="rgb(216,7,41)" rx="2" ry="2" />
<text text-anchor="" x="1175.84" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ata_generic_command (3 samples, 0.02%)</title><rect x="1030.6" y="161" width="0.2" height="15.0" fill="rgb(207,119,23)" rx="2" ry="2" />
<text text-anchor="" x="1033.64" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_isc_rxd_available (134 samples, 0.74%)</title><rect x="932.0" y="209" width="8.7" height="15.0" fill="rgb(223,216,38)" rx="2" ry="2" />
<text text-anchor="" x="935.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_fetch_slab (16 samples, 0.09%)</title><rect x="124.5" y="145" width="1.1" height="15.0" fill="rgb(252,47,33)" rx="2" ry="2" />
<text text-anchor="" x="127.55" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_windup (2 samples, 0.01%)</title><rect x="1188.6" y="193" width="0.2" height="15.0" fill="rgb(211,61,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.64" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ipsec4_capability (212 samples, 1.16%)</title><rect x="890.3" y="113" width="13.7" height="15.0" fill="rgb(212,24,13)" rx="2" ry="2" />
<text text-anchor="" x="893.32" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_enter (7 samples, 0.04%)</title><rect x="924.6" y="193" width="0.5" height="15.0" fill="rgb(230,155,52)" rx="2" ry="2" />
<text text-anchor="" x="927.64" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vn_write (2 samples, 0.01%)</title><rect x="1034.0" y="225" width="0.1" height="15.0" fill="rgb(243,17,49)" rx="2" ry="2" />
<text text-anchor="" x="1037.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cdstart (3 samples, 0.02%)</title><rect x="1031.2" y="161" width="0.2" height="15.0" fill="rgb(207,30,45)" rx="2" ry="2" />
<text text-anchor="" x="1034.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>if_inc_counter (7 samples, 0.04%)</title><rect x="931.2" y="209" width="0.4" height="15.0" fill="rgb(223,20,1)" rx="2" ry="2" />
<text text-anchor="" x="934.18" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x40035f (6 samples, 0.03%)</title><rect x="10.0" y="273" width="0.4" height="15.0" fill="rgb(217,121,30)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iflib_timer (35 samples, 0.19%)</title><rect x="1031.4" y="193" width="2.2" height="15.0" fill="rgb(206,19,6)" rx="2" ry="2" />
<text text-anchor="" x="1034.35" y="203.5" font-size="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 (18,223 samples, 100%)</title><rect x="10.0" y="289" width="1180.0" height="15.0" fill="rgb(228,210,19)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uma_zalloc_arg (229 samples, 1.26%)</title><rect x="84.5" y="177" width="14.9" height="15.0" fill="rgb(242,102,36)" rx="2" ry="2" />
<text text-anchor="" x="87.53" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>softclock_call_cc (46 samples, 0.25%)</title><rect x="1030.9" y="209" width="3.0" height="15.0" fill="rgb(205,68,35)" rx="2" ry="2" />
<text text-anchor="" x="1033.90" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_mtx_lock_spin_cookie (131 samples, 0.72%)</title><rect x="1178.6" y="145" width="8.5" height="15.0" fill="rgb(234,189,41)" rx="2" ry="2" />
<text text-anchor="" x="1181.60" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_lock (30 samples, 0.16%)</title><rect x="1028.0" y="209" width="1.9" height="15.0" fill="rgb(241,207,19)" rx="2" ry="2" />
<text text-anchor="" x="1030.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (7 samples, 0.04%)</title><rect x="925.1" y="193" width="0.4" height="15.0" fill="rgb(244,3,29)" rx="2" ry="2" />
<text text-anchor="" x="928.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_fetch_slab (213 samples, 1.17%)</title><rect x="85.6" y="129" width="13.8" height="15.0" fill="rgb(220,117,52)" rx="2" ry="2" />
<text text-anchor="" x="88.57" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_iflib_fl_refill (868 samples, 4.76%)</title><rect x="69.4" y="209" width="56.2" height="15.0" fill="rgb(230,125,33)" rx="2" ry="2" />
<text text-anchor="" x="72.38" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_ifli..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (3 samples, 0.02%)</title><rect x="1034.4" y="209" width="0.2" height="15.0" fill="rgb(223,87,14)" rx="2" ry="2" />
<text text-anchor="" x="1037.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (23 samples, 0.13%)</title><rect x="463.5" y="49" width="1.5" height="15.0" fill="rgb(242,109,29)" rx="2" ry="2" />
<text text-anchor="" x="466.47" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ifmp_ring_enqueue (4,116 samples, 22.59%)</title><rect x="434.2" y="65" width="266.5" height="15.0" fill="rgb(227,73,3)" rx="2" ry="2" />
<text text-anchor="" x="437.20" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ifmp_ring_enqueue</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_tryforward (9,941 samples, 54.55%)</title><rect x="246.6" y="113" width="643.7" height="15.0" fill="rgb(248,80,9)" rx="2" ry="2" />
<text text-anchor="" x="249.61" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip_tryforward</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_tryforward (1,634 samples, 8.97%)</title><rect x="1040.2" y="129" width="105.8" height="15.0" fill="rgb(208,142,40)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip_tryforward</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>tc_ticktock (2 samples, 0.01%)</title><rect x="1188.6" y="209" width="0.2" height="15.0" fill="rgb(217,123,24)" rx="2" ry="2" />
<text text-anchor="" x="1191.64" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (3 samples, 0.02%)</title><rect x="925.4" y="177" width="0.1" height="15.0" fill="rgb(230,16,37)" rx="2" ry="2" />
<text text-anchor="" x="928.35" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uma_zalloc_arg (3 samples, 0.02%)</title><rect x="1035.4" y="209" width="0.2" height="15.0" fill="rgb(207,156,12)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iflib_get_ifp (19 samples, 0.10%)</title><rect x="960.7" y="193" width="1.2" height="15.0" fill="rgb(215,203,54)" rx="2" ry="2" />
<text text-anchor="" x="963.71" y="203.5" font-size="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_import (220 samples, 1.21%)</title><rect x="85.1" y="161" width="14.3" height="15.0" fill="rgb(253,228,9)" rx="2" ry="2" />
<text text-anchor="" x="88.11" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>m_adj (94 samples, 0.52%)</title><rect x="211.2" y="145" width="6.1" height="15.0" fill="rgb(246,84,14)" rx="2" ry="2" />
<text text-anchor="" x="214.19" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_fetch_slab (2 samples, 0.01%)</title><rect x="99.2" y="49" width="0.2" height="15.0" fill="rgb(241,113,43)" rx="2" ry="2" />
<text text-anchor="" x="102.23" y="59.5" font-size="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_harvest_queue (183 samples, 1.00%)</title><rect x="909.4" y="161" width="11.9" height="15.0" fill="rgb(231,139,34)" rx="2" ry="2" />
<text text-anchor="" x="912.42" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>gtaskqueue_thread_loop (1,634 samples, 8.97%)</title><rect x="1040.2" y="273" width="105.8" height="15.0" fill="rgb(213,81,45)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >gtaskqueue_t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (29 samples, 0.16%)</title><rect x="480.2" y="33" width="1.9" height="15.0" fill="rgb(211,165,33)" rx="2" ry="2" />
<text text-anchor="" x="483.24" y="43.5" font-size="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_input (1,634 samples, 8.97%)</title><rect x="1040.2" y="145" width="105.8" height="15.0" fill="rgb(235,219,37)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip_input</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>atomic_add_int (3 samples, 0.02%)</title><rect x="1187.4" y="129" width="0.2" height="15.0" fill="rgb(242,16,43)" rx="2" ry="2" />
<text text-anchor="" x="1190.41" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_nh_input (71 samples, 0.39%)</title><rect x="1035.6" y="209" width="4.6" height="15.0" fill="rgb(250,60,0)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_isc_rxd_refill (34 samples, 0.19%)</title><rect x="81.9" y="193" width="2.2" height="15.0" fill="rgb(251,54,45)" rx="2" ry="2" />
<text text-anchor="" x="84.88" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_check_mac_link_generic (2 samples, 0.01%)</title><rect x="1031.5" y="161" width="0.2" height="15.0" fill="rgb(253,28,21)" rx="2" ry="2" />
<text text-anchor="" x="1034.55" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mac_mbuf_init (33 samples, 0.18%)</title><rect x="971.4" y="209" width="2.1" height="15.0" fill="rgb(237,41,28)" rx="2" ry="2" />
<text text-anchor="" x="974.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iflib_if_transmit (1,634 samples, 8.97%)</title><rect x="1040.2" y="97" width="105.8" height="15.0" fill="rgb(226,11,45)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >iflib_if_tra..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pmclog_reserve (169 samples, 0.93%)</title><rect x="1176.8" y="161" width="10.9" height="15.0" fill="rgb(211,60,25)" rx="2" ry="2" />
<text text-anchor="" x="1179.79" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_idleclock (3 samples, 0.02%)</title><rect x="1034.4" y="225" width="0.2" height="15.0" fill="rgb(233,24,15)" rx="2" ry="2" />
<text text-anchor="" x="1037.40" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (3 samples, 0.02%)</title><rect x="1170.0" y="177" width="0.2" height="15.0" fill="rgb(212,2,41)" rx="2" ry="2" />
<text text-anchor="" x="1172.99" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pmap_kextract (22 samples, 0.12%)</title><rect x="99.4" y="193" width="1.4" height="15.0" fill="rgb(240,212,35)" rx="2" ry="2" />
<text text-anchor="" x="102.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_isc_txd_credits_update (825 samples, 4.53%)</title><rect x="1059.5" y="33" width="53.4" height="15.0" fill="rgb(237,11,38)" rx="2" ry="2" />
<text text-anchor="" x="1062.46" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ixgbe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>zone_alloc_item (3 samples, 0.02%)</title><rect x="1035.4" y="129" width="0.2" height="15.0" fill="rgb(230,158,28)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bzero (161 samples, 0.88%)</title><rect x="125.6" y="209" width="10.4" height="15.0" fill="rgb(211,154,6)" rx="2" ry="2" />
<text text-anchor="" x="128.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_if_timer (32 samples, 0.18%)</title><rect x="1031.5" y="177" width="2.1" height="15.0" fill="rgb(248,198,53)" rx="2" ry="2" />
<text text-anchor="" x="1034.55" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagezero (79 samples, 0.43%)</title><rect x="90.3" y="81" width="5.1" height="15.0" fill="rgb(245,153,6)" rx="2" ry="2" />
<text text-anchor="" x="93.29" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sbuf_printf (2 samples, 0.01%)</title><rect x="1035.2" y="177" width="0.2" height="15.0" fill="rgb(224,140,23)" rx="2" ry="2" />
<text text-anchor="" x="1038.24" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (12 samples, 0.07%)</title><rect x="1187.8" y="177" width="0.8" height="15.0" fill="rgb(239,186,36)" rx="2" ry="2" />
<text text-anchor="" x="1190.80" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rn_match (296 samples, 1.62%)</title><rect x="868.8" y="65" width="19.1" height="15.0" fill="rgb(251,11,47)" rx="2" ry="2" />
<text text-anchor="" x="871.76" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_enter (31 samples, 0.17%)</title><rect x="1035.6" y="33" width="2.0" height="15.0" fill="rgb(212,86,39)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="43.5" font-size="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_rlock (601 samples, 3.30%)</title><rect x="323.3" y="65" width="39.0" height="15.0" fill="rgb(209,226,1)" rx="2" ry="2" />
<text text-anchor="" x="326.34" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__r..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>DELAY (2 samples, 0.01%)</title><rect x="1030.7" y="129" width="0.1" height="15.0" fill="rgb(254,185,16)" rx="2" ry="2" />
<text text-anchor="" x="1033.71" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fork_exit (15,667 samples, 85.97%)</title><rect x="20.9" y="273" width="1014.5" height="15.0" fill="rgb(222,117,41)" rx="2" ry="2" />
<text text-anchor="" x="23.88" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fork_exit</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mac_ifnet_check_transmit (68 samples, 0.37%)</title><rect x="700.7" y="81" width="4.4" height="15.0" fill="rgb(230,27,42)" rx="2" ry="2" />
<text text-anchor="" x="703.72" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netisr_dispatch (6 samples, 0.03%)</title><rect x="217.3" y="145" width="0.4" height="15.0" fill="rgb(249,63,37)" rx="2" ry="2" />
<text text-anchor="" x="220.28" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>taskqueue_thread_enqueue (8 samples, 0.04%)</title><rect x="925.5" y="193" width="0.6" height="15.0" fill="rgb(241,107,52)" rx="2" ry="2" />
<text text-anchor="" x="928.55" y="203.5" font-size="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_fetch_slab (17 samples, 0.09%)</title><rect x="124.5" y="161" width="1.1" height="15.0" fill="rgb(212,73,41)" rx="2" ry="2" />
<text text-anchor="" x="127.48" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>statclock_cnt (5 samples, 0.03%)</title><rect x="1189.6" y="225" width="0.3" height="15.0" fill="rgb(215,87,18)" rx="2" ry="2" />
<text text-anchor="" x="1192.61" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (28 samples, 0.15%)</title><rect x="117.4" y="177" width="1.8" height="15.0" fill="rgb(231,175,32)" rx="2" ry="2" />
<text text-anchor="" x="120.43" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>uhub_read_port_status (2 samples, 0.01%)</title><rect x="1035.0" y="209" width="0.2" height="15.0" fill="rgb(254,59,48)" rx="2" ry="2" />
<text text-anchor="" x="1038.05" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>drain_ring_lockless (1,634 samples, 8.97%)</title><rect x="1040.2" y="65" width="105.8" height="15.0" fill="rgb(217,215,36)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >drain_ring_l..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_enter (4 samples, 0.02%)</title><rect x="1029.7" y="193" width="0.2" height="15.0" fill="rgb(244,137,2)" rx="2" ry="2" />
<text text-anchor="" x="1032.67" y="203.5" font-size="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 (506 samples, 2.78%)</title><rect x="973.5" y="209" width="32.8" height="15.0" fill="rgb(212,108,10)" rx="2" ry="2" />
<text text-anchor="" x="976.53" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >me..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>m_cljget (3 samples, 0.02%)</title><rect x="1035.4" y="225" width="0.2" height="15.0" fill="rgb(233,213,42)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pmap_kextract (19 samples, 0.10%)</title><rect x="1132.3" y="33" width="1.2" height="15.0" fill="rgb(208,184,27)" rx="2" ry="2" />
<text text-anchor="" x="1135.30" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_alloc_slab (3 samples, 0.02%)</title><rect x="1035.4" y="65" width="0.2" height="15.0" fill="rgb(237,182,6)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_mtx_trylock_flags_ (113 samples, 0.62%)</title><rect x="1040.2" y="33" width="7.3" height="15.0" fill="rgb(217,117,21)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netisr_dispatch_src (1,634 samples, 8.97%)</title><rect x="1040.2" y="161" width="105.8" height="15.0" fill="rgb(226,60,3)" rx="2" ry="2" />
<text text-anchor="" x="1043.16" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >netisr_dispa..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Xapic_isr1 (142 samples, 0.78%)</title><rect x="10.5" y="273" width="9.2" height="15.0" fill="rgb(233,17,30)" rx="2" ry="2" />
<text text-anchor="" x="13.52" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mb_ctor_clust (2 samples, 0.01%)</title><rect x="84.4" y="177" width="0.1" height="15.0" fill="rgb(236,56,53)" rx="2" ry="2" />
<text text-anchor="" x="87.40" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pmclog_get_buffer (7 samples, 0.04%)</title><rect x="1187.2" y="145" width="0.4" height="15.0" fill="rgb(210,168,46)" rx="2" ry="2" />
<text text-anchor="" x="1190.15" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>VOP_WRITE_APV (2 samples, 0.01%)</title><rect x="1034.0" y="209" width="0.1" height="15.0" fill="rgb(217,203,43)" rx="2" ry="2" />
<text text-anchor="" x="1037.01" y="219.5" font-size="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_fetch_slab (3 samples, 0.02%)</title><rect x="1035.4" y="97" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="107.5" font-size="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_fetch_slab (11 samples, 0.06%)</title><rect x="98.6" y="65" width="0.8" height="15.0" fill="rgb(217,1,46)" rx="2" ry="2" />
<text text-anchor="" x="101.65" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ata_interrupt (4 samples, 0.02%)</title><rect x="1030.6" y="209" width="0.3" height="15.0" fill="rgb(219,10,33)" rx="2" ry="2" />
<text text-anchor="" x="1033.64" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sleepq_release (2 samples, 0.01%)</title><rect x="929.2" y="177" width="0.1" height="15.0" fill="rgb(240,130,7)" rx="2" ry="2" />
<text text-anchor="" x="932.17" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rt_tables_get_rnh (37 samples, 0.20%)</title><rect x="887.9" y="65" width="2.4" height="15.0" fill="rgb(233,121,50)" rx="2" ry="2" />
<text text-anchor="" x="890.93" y="75.5" font-size="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_delay (3 samples, 0.02%)</title><rect x="96.4" y="49" width="0.2" height="15.0" fill="rgb(215,35,47)" rx="2" ry="2" />
<text text-anchor="" x="99.45" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intr_event_handle (360 samples, 1.98%)</title><rect x="1149.1" y="241" width="23.4" height="15.0" fill="rgb(241,115,17)" rx="2" ry="2" />
<text text-anchor="" x="1152.14" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lock_delay (2 samples, 0.01%)</title><rect x="99.1" y="33" width="0.1" height="15.0" fill="rgb(252,227,43)" rx="2" ry="2" />
<text text-anchor="" x="102.10" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bcopy (412 samples, 2.26%)</title><rect x="382.8" y="65" width="26.7" height="15.0" fill="rgb(250,33,44)" rx="2" ry="2" />
<text text-anchor="" x="385.78" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >b..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_nh_input (12,010 samples, 65.91%)</title><rect x="143.6" y="177" width="777.7" height="15.0" fill="rgb(251,224,5)" rx="2" ry="2" />
<text text-anchor="" x="146.59" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ether_nh_input</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sync_fsync (3 samples, 0.02%)</title><rect x="1034.8" y="225" width="0.2" height="15.0" fill="rgb(250,107,54)" rx="2" ry="2" />
<text text-anchor="" x="1037.79" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>key_havesp (111 samples, 0.61%)</title><rect x="896.9" y="97" width="7.1" height="15.0" fill="rgb(218,45,35)" rx="2" ry="2" />
<text text-anchor="" x="899.86" y="107.5" font-size="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_import (3 samples, 0.02%)</title><rect x="1035.4" y="113" width="0.2" height="15.0" fill="rgb(211,34,30)" rx="2" ry="2" />
<text text-anchor="" x="1038.37" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (22 samples, 0.12%)</title><rect x="1025.5" y="225" width="1.5" height="15.0" fill="rgb(224,121,53)" rx="2" ry="2" />
<text text-anchor="" x="1028.53" y="235.5" font-size="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_delay (114 samples, 0.63%)</title><rect x="1179.6" y="129" width="7.4" height="15.0" fill="rgb(251,70,54)" rx="2" ry="2" />
<text text-anchor="" x="1182.57" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>atomic_subtract_barr_int (19 samples, 0.10%)</title><rect x="1173.6" y="177" width="1.2" height="15.0" fill="rgb(208,152,11)" rx="2" ry="2" />
<text text-anchor="" x="1176.62" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (4 samples, 0.02%)</title><rect x="1150.1" y="225" width="0.3" height="15.0" fill="rgb(218,142,16)" rx="2" ry="2" />
<text text-anchor="" x="1153.11" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_isc_txd_flush (4 samples, 0.02%)</title><rect x="700.5" y="33" width="0.2" height="15.0" fill="rgb(246,97,5)" rx="2" ry="2" />
<text text-anchor="" x="703.46" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_read_reg (2 samples, 0.01%)</title><rect x="1031.5" y="145" width="0.2" height="15.0" fill="rgb(214,91,7)" rx="2" ry="2" />
<text text-anchor="" x="1034.55" y="155.5" font-size="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_idletd (9 samples, 0.05%)</title><rect x="1034.2" y="257" width="0.6" height="15.0" fill="rgb(230,132,28)" rx="2" ry="2" />
<text text-anchor="" x="1037.20" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iflib_fast_intr (338 samples, 1.85%)</title><rect x="1150.4" y="225" width="21.9" height="15.0" fill="rgb(220,193,4)" rx="2" ry="2" />
<text text-anchor="" x="1153.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >i..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>xpt_run_devq (3 samples, 0.02%)</title><rect x="1031.2" y="129" width="0.2" height="15.0" fill="rgb(207,37,14)" rx="2" ry="2" />
<text text-anchor="" x="1034.16" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (2 samples, 0.01%)</title><rect x="1187.0" y="129" width="0.1" height="15.0" fill="rgb(213,194,53)" rx="2" ry="2" />
<text text-anchor="" x="1189.96" y="139.5" font-size="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_alloc_item (23 samples, 0.13%)</title><rect x="97.9" y="97" width="1.5" height="15.0" fill="rgb(211,190,43)" rx="2" ry="2" />
<text text-anchor="" x="100.87" y="107.5" font-size="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_lro_flush_all (4 samples, 0.02%)</title><rect x="1024.2" y="209" width="0.2" height="15.0" fill="rgb(232,185,4)" rx="2" ry="2" />
<text text-anchor="" x="1027.17" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (11 samples, 0.06%)</title><rect x="1188.9" y="225" width="0.7" height="15.0" fill="rgb(249,167,14)" rx="2" ry="2" />
<text text-anchor="" x="1191.90" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>iflib_if_transmit (4,441 samples, 24.37%)</title><rect x="413.2" y="81" width="287.5" height="15.0" fill="rgb(250,147,8)" rx="2" ry="2" />
<text text-anchor="" x="416.15" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >iflib_if_transmit</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_write_reg (3 samples, 0.02%)</title><rect x="931.8" y="193" width="0.2" height="15.0" fill="rgb(245,202,44)" rx="2" ry="2" />
<text text-anchor="" x="934.83" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hardclock_cnt (244 samples, 1.34%)</title><rect x="1173.0" y="225" width="15.8" height="15.0" fill="rgb(207,152,29)" rx="2" ry="2" />
<text text-anchor="" x="1175.97" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>netisr_dispatch_src (71 samples, 0.39%)</title><rect x="1035.6" y="177" width="4.6" height="15.0" fill="rgb(218,168,31)" rx="2" ry="2" />
<text text-anchor="" x="1038.56" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_isc_rxd_pkt_get (328 samples, 1.80%)</title><rect x="940.7" y="209" width="21.2" height="15.0" fill="rgb(245,40,9)" rx="2" ry="2" />
<text text-anchor="" x="943.70" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
</svg>

File Metadata

Mime Type
image/svg+xml
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
747379
Default Alt Text
bench.313730-D5213.svg (103 KB)

Event Timeline