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

bench.313730.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>ixgbe_txeof (195 samples, 1.11%)</title><rect x="716.8" y="33" width="13.0" height="15.0" fill="rgb(207,117,29)" rx="2" ry="2" />
<text text-anchor="" x="719.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>pcib_write_config (2 samples, 0.01%)</title><rect x="1109.3" y="161" width="0.2" height="15.0" fill="rgb(240,38,26)" rx="2" ry="2" />
<text text-anchor="" x="1112.34" 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_freem (67 samples, 0.38%)</title><rect x="1149.9" y="33" width="4.4" height="15.0" fill="rgb(233,146,22)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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_refresh_mbufs (196 samples, 1.11%)</title><rect x="1020.3" y="193" width="13.1" height="15.0" fill="rgb(251,58,15)" rx="2" ry="2" />
<text text-anchor="" x="1023.31" 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 (17,642 samples, 100%)</title><rect x="10.0" y="289" width="1180.0" height="15.0" fill="rgb(209,137,41)" 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>handleevents (255 samples, 1.45%)</title><rect x="1172.9" y="241" width="17.1" height="15.0" fill="rgb(207,80,34)" rx="2" ry="2" />
<text text-anchor="" x="1175.94" 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>0x40390f (2 samples, 0.01%)</title><rect x="10.1" y="273" width="0.2" height="15.0" fill="rgb(221,149,44)" rx="2" ry="2" />
<text text-anchor="" x="13.13" 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_txeof (5 samples, 0.03%)</title><rect x="1108.7" y="209" width="0.4" height="15.0" fill="rgb(237,181,19)" rx="2" ry="2" />
<text text-anchor="" x="1111.73" 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,931 samples, 73.30%)</title><rect x="155.4" y="193" width="864.9" height="15.0" fill="rgb(210,152,50)" rx="2" ry="2" />
<text text-anchor="" x="158.41" y="203.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>bounce_bus_dmamap_load_buffer (44 samples, 0.25%)</title><rect x="1169.5" y="49" width="3.0" height="15.0" fill="rgb(251,51,34)" rx="2" ry="2" />
<text text-anchor="" x="1172.53" 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_spin_cookie (124 samples, 0.70%)</title><rect x="1179.4" y="145" width="8.3" height="15.0" fill="rgb(241,182,36)" rx="2" ry="2" />
<text text-anchor="" x="1182.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>timercb (259 samples, 1.47%)</title><rect x="1172.7" y="257" width="17.3" height="15.0" fill="rgb(208,151,41)" rx="2" ry="2" />
<text text-anchor="" x="1175.68" 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>ether_nh_input (124 samples, 0.70%)</title><rect x="1164.2" y="209" width="8.3" height="15.0" fill="rgb(240,74,8)" rx="2" ry="2" />
<text text-anchor="" x="1167.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>ixgbe_xmit (147 samples, 0.83%)</title><rect x="1154.3" y="49" width="9.9" height="15.0" fill="rgb(230,208,37)" rx="2" ry="2" />
<text text-anchor="" x="1157.35" 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_rxeof (16,406 samples, 92.99%)</title><rect x="11.4" y="209" width="1097.3" height="15.0" fill="rgb(239,3,37)" rx="2" ry="2" />
<text text-anchor="" x="14.40" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ixgbe_rxeof</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_alloc_slab (11 samples, 0.06%)</title><rect x="1108.0" y="129" width="0.7" height="15.0" fill="rgb(230,154,32)" rx="2" ry="2" />
<text text-anchor="" x="1111.00" 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>netisr_dispatch_src (527 samples, 2.99%)</title><rect x="1114.6" y="161" width="35.2" height="15.0" fill="rgb(206,58,53)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_output (7,736 samples, 43.85%)</title><rect x="309.3" y="81" width="517.4" height="15.0" fill="rgb(227,30,19)" rx="2" ry="2" />
<text text-anchor="" x="312.31" y="91.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>vn_io_fault (3 samples, 0.02%)</title><rect x="1113.1" y="241" width="0.2" height="15.0" fill="rgb(233,179,41)" rx="2" ry="2" />
<text text-anchor="" x="1116.15" 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_enter (19 samples, 0.11%)</title><rect x="1164.4" y="33" width="1.3" height="15.0" fill="rgb(206,24,34)" rx="2" ry="2" />
<text text-anchor="" x="1167.45" 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>sched_idletd (10 samples, 0.06%)</title><rect x="1113.4" y="257" width="0.7" height="15.0" fill="rgb(250,2,18)" rx="2" ry="2" />
<text text-anchor="" x="1116.42" 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>fib4_lookup_nh_basic (2,052 samples, 11.63%)</title><rect x="869.3" y="65" width="137.3" height="15.0" fill="rgb(238,141,10)" rx="2" ry="2" />
<text text-anchor="" x="872.35" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >fib4_lookup_nh_ba..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>keg_fetch_slab (11 samples, 0.06%)</title><rect x="1108.0" y="145" width="0.7" height="15.0" fill="rgb(248,122,11)" rx="2" ry="2" />
<text text-anchor="" x="1111.00" 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>pmclog_process_callchain (197 samples, 1.12%)</title><rect x="1174.9" y="177" width="13.2" height="15.0" fill="rgb(214,228,32)" rx="2" ry="2" />
<text text-anchor="" x="1177.88" 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>mi_switch (2 samples, 0.01%)</title><rect x="1113.0" y="241" width="0.1" height="15.0" fill="rgb(230,68,10)" rx="2" ry="2" />
<text text-anchor="" x="1116.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>netisr_dispatch (9 samples, 0.05%)</title><rect x="238.2" y="129" width="0.6" height="15.0" fill="rgb(242,83,37)" rx="2" ry="2" />
<text text-anchor="" x="241.21" 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>__rw_rlock (661 samples, 3.75%)</title><rect x="352.8" y="49" width="44.2" height="15.0" fill="rgb(217,107,49)" rx="2" ry="2" />
<text text-anchor="" x="355.79" y="59.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>cdstart (2 samples, 0.01%)</title><rect x="1109.5" y="161" width="0.1" height="15.0" fill="rgb(222,162,54)" rx="2" ry="2" />
<text text-anchor="" x="1112.47" 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>random_harvest_queue (43 samples, 0.24%)</title><rect x="1017.4" y="145" width="2.9" height="15.0" fill="rgb(218,13,48)" rx="2" ry="2" />
<text text-anchor="" x="1020.43" 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>ip_tryforward (527 samples, 2.99%)</title><rect x="1114.6" y="129" width="35.2" height="15.0" fill="rgb(245,4,12)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_mq_start (4,996 samples, 28.32%)</title><rect x="454.8" y="65" width="334.2" height="15.0" fill="rgb(237,213,54)" rx="2" ry="2" />
<text text-anchor="" x="457.79" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ixgbe_mq_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_mq_start_locked (527 samples, 2.99%)</title><rect x="1114.6" y="81" width="35.2" height="15.0" fill="rgb(221,4,40)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ix..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sync_fsync (3 samples, 0.02%)</title><rect x="1114.1" y="225" width="0.2" height="15.0" fill="rgb(248,28,36)" rx="2" ry="2" />
<text text-anchor="" x="1117.08" 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>ether_demux (214 samples, 1.21%)</title><rect x="1149.9" y="161" width="14.3" height="15.0" fill="rgb(228,53,33)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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_zfree_arg (3 samples, 0.02%)</title><rect x="1108.9" y="177" width="0.2" height="15.0" fill="rgb(212,113,24)" rx="2" ry="2" />
<text text-anchor="" x="1111.87" 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_timeout (31 samples, 0.18%)</title><rect x="1110.8" y="193" width="2.1" height="15.0" fill="rgb(252,42,22)" rx="2" ry="2" />
<text text-anchor="" x="1113.81" 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_txeof (80 samples, 0.45%)</title><rect x="1164.2" y="81" width="5.3" height="15.0" fill="rgb(215,195,10)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>VOP_FSYNC_APV (3 samples, 0.02%)</title><rect x="1114.1" y="241" width="0.2" height="15.0" fill="rgb(252,86,36)" rx="2" ry="2" />
<text text-anchor="" x="1117.08" 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>ipsec4_capability (118 samples, 0.67%)</title><rect x="1006.6" y="97" width="7.9" height="15.0" fill="rgb(215,172,22)" rx="2" ry="2" />
<text text-anchor="" x="1009.60" 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 (124 samples, 0.70%)</title><rect x="1164.2" y="177" width="8.3" height="15.0" fill="rgb(211,151,13)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>arpresolve (1,763 samples, 9.99%)</title><rect x="336.9" y="65" width="117.9" height="15.0" fill="rgb(252,23,54)" rx="2" ry="2" />
<text text-anchor="" x="339.87" y="75.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>netisr_dispatch_src (214 samples, 1.21%)</title><rect x="1149.9" y="193" width="14.3" height="15.0" fill="rgb(249,188,40)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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 (2 samples, 0.01%)</title><rect x="1114.0" y="241" width="0.1" height="15.0" fill="rgb(242,21,0)" rx="2" ry="2" />
<text text-anchor="" x="1116.95" 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>cpu_search_highest (2 samples, 0.01%)</title><rect x="1113.8" y="225" width="0.2" height="15.0" fill="rgb(235,137,53)" rx="2" ry="2" />
<text text-anchor="" x="1116.82" 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>zone_fetch_slab (11 samples, 0.06%)</title><rect x="1108.0" y="161" width="0.7" height="15.0" fill="rgb(244,184,1)" rx="2" ry="2" />
<text text-anchor="" x="1111.00" 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>tsc_get_timecount_lfence (2 samples, 0.01%)</title><rect x="1172.8" y="225" width="0.1" height="15.0" fill="rgb(253,104,52)" rx="2" ry="2" />
<text text-anchor="" x="1175.81" 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>usb_proc_msignal (2 samples, 0.01%)</title><rect x="1112.9" y="161" width="0.1" height="15.0" fill="rgb(224,139,14)" rx="2" ry="2" />
<text text-anchor="" x="1115.88" 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>callout_process (3 samples, 0.02%)</title><rect x="1173.3" y="225" width="0.2" height="15.0" fill="rgb(228,173,49)" rx="2" ry="2" />
<text text-anchor="" x="1176.35" 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>ucp_get_config (3 samples, 0.02%)</title><rect x="1188.9" y="177" width="0.2" height="15.0" fill="rgb(208,104,7)" rx="2" ry="2" />
<text text-anchor="" x="1191.86" 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 (44 samples, 0.25%)</title><rect x="1169.5" y="33" width="3.0" height="15.0" fill="rgb(205,198,8)" rx="2" ry="2" />
<text text-anchor="" x="1172.53" 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>zone_import (16 samples, 0.09%)</title><rect x="1107.7" y="177" width="1.0" height="15.0" fill="rgb(253,32,37)" rx="2" ry="2" />
<text text-anchor="" x="1110.66" 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>ffs_sync (2 samples, 0.01%)</title><rect x="1114.1" y="209" width="0.1" height="15.0" fill="rgb(237,149,27)" rx="2" ry="2" />
<text text-anchor="" x="1117.08" 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_local_timer (15 samples, 0.09%)</title><rect x="1109.6" y="193" width="1.0" height="15.0" fill="rgb(251,33,17)" rx="2" ry="2" />
<text text-anchor="" x="1112.60" 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>_bus_dmamap_complete (29 samples, 0.16%)</title><rect x="1129.3" y="33" width="1.9" height="15.0" fill="rgb(228,96,7)" rx="2" ry="2" />
<text text-anchor="" x="1132.27" 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>bzero (193 samples, 1.09%)</title><rect x="969.1" y="49" width="12.9" height="15.0" fill="rgb(238,109,28)" rx="2" ry="2" />
<text text-anchor="" x="972.08" 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>ether_output (124 samples, 0.70%)</title><rect x="1164.2" y="129" width="8.3" height="15.0" fill="rgb(226,164,30)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>ip_input (11,496 samples, 65.16%)</title><rect x="245.6" y="113" width="768.9" height="15.0" fill="rgb(233,221,49)" rx="2" ry="2" />
<text text-anchor="" x="248.57" y="123.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>memcpy (493 samples, 2.79%)</title><rect x="793.8" y="65" width="32.9" height="15.0" fill="rgb(234,106,8)" rx="2" ry="2" />
<text text-anchor="" x="796.77" y="75.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>kbdc_data_ready (3 samples, 0.02%)</title><rect x="1109.1" y="177" width="0.2" height="15.0" fill="rgb(210,163,52)" rx="2" ry="2" />
<text text-anchor="" x="1112.07" 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>netisr_dispatch_src (214 samples, 1.21%)</title><rect x="1149.9" y="145" width="14.3" height="15.0" fill="rgb(231,229,1)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>ether_nh_input (214 samples, 1.21%)</title><rect x="1149.9" y="177" width="14.3" height="15.0" fill="rgb(250,21,51)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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_mq_start_locked (1,205 samples, 6.83%)</title><rect x="708.4" y="49" width="80.6" height="15.0" fill="rgb(212,90,48)" rx="2" ry="2" />
<text text-anchor="" x="711.36" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ixgbe_mq_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_input (214 samples, 1.21%)</title><rect x="1149.9" y="209" width="14.3" height="15.0" fill="rgb(224,209,17)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>bus_dmamap_load_mbuf_sg (307 samples, 1.74%)</title><rect x="1129.3" y="49" width="20.5" height="15.0" fill="rgb(248,124,53)" rx="2" ry="2" />
<text text-anchor="" x="1132.27" 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>softclock_call_cc (59 samples, 0.33%)</title><rect x="1109.1" y="209" width="3.9" height="15.0" fill="rgb(238,207,17)" rx="2" ry="2" />
<text text-anchor="" x="1112.07" 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>tc_windup (5 samples, 0.03%)</title><rect x="1189.1" y="193" width="0.4" height="15.0" fill="rgb(226,70,32)" rx="2" ry="2" />
<text text-anchor="" x="1192.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>__mtx_unlock_spin_flags (2 samples, 0.01%)</title><rect x="1174.1" y="177" width="0.1" height="15.0" fill="rgb(245,163,32)" rx="2" ry="2" />
<text text-anchor="" x="1177.08" 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 (338 samples, 1.92%)</title><rect x="982.0" y="49" width="22.6" height="15.0" fill="rgb(207,71,0)" rx="2" ry="2" />
<text text-anchor="" x="984.99" y="59.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>rt_tables_get_rnh (30 samples, 0.17%)</title><rect x="1004.6" y="49" width="2.0" height="15.0" fill="rgb(230,45,13)" rx="2" ry="2" />
<text text-anchor="" x="1007.59" 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>spinlock_exit (12 samples, 0.07%)</title><rect x="1188.1" y="177" width="0.8" height="15.0" fill="rgb(212,32,3)" rx="2" ry="2" />
<text text-anchor="" x="1191.06" 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>mac_ifnet_create_mbuf (44 samples, 0.25%)</title><rect x="1014.5" y="145" width="2.9" height="15.0" fill="rgb(241,153,31)" rx="2" ry="2" />
<text text-anchor="" x="1017.49" 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>ithread_loop (214 samples, 1.21%)</title><rect x="1149.9" y="273" width="14.3" height="15.0" fill="rgb(217,160,24)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>bounce_bus_dmamap_complete (9 samples, 0.05%)</title><rect x="1131.9" y="33" width="0.6" height="15.0" fill="rgb(231,152,26)" rx="2" ry="2" />
<text text-anchor="" x="1134.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>usb_process (2 samples, 0.01%)</title><rect x="1114.4" y="257" width="0.1" height="15.0" fill="rgb(221,16,13)" rx="2" ry="2" />
<text text-anchor="" x="1117.35" 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_idle (5 samples, 0.03%)</title><rect x="1113.5" y="241" width="0.3" height="15.0" fill="rgb(216,19,11)" rx="2" ry="2" />
<text text-anchor="" x="1116.48" 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_enter (21 samples, 0.12%)</title><rect x="705.0" y="49" width="1.4" height="15.0" fill="rgb(225,135,14)" rx="2" ry="2" />
<text text-anchor="" x="708.01" 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>timekeep_push_vdso (2 samples, 0.01%)</title><rect x="1189.3" y="177" width="0.2" height="15.0" fill="rgb(219,183,34)" rx="2" ry="2" />
<text text-anchor="" x="1192.33" 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>mac_mbuf_init (70 samples, 0.40%)</title><rect x="1102.9" y="161" width="4.7" height="15.0" fill="rgb(219,45,17)" rx="2" ry="2" />
<text text-anchor="" x="1105.91" 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>bzero (159 samples, 0.90%)</title><rect x="858.7" y="65" width="10.6" height="15.0" fill="rgb(226,123,39)" rx="2" ry="2" />
<text text-anchor="" x="861.71" 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>uma_zfree_arg (220 samples, 1.25%)</title><rect x="1114.6" y="33" width="14.7" height="15.0" fill="rgb(248,30,20)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" 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>ata_generic_intr (3 samples, 0.02%)</title><rect x="11.1" y="225" width="0.2" height="15.0" fill="rgb(221,187,23)" rx="2" ry="2" />
<text text-anchor="" x="14.07" 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_enter (2 samples, 0.01%)</title><rect x="1179.0" y="129" width="0.2" height="15.0" fill="rgb(249,167,45)" rx="2" ry="2" />
<text text-anchor="" x="1182.03" 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>_mtx_trylock_flags_ (4 samples, 0.02%)</title><rect x="1164.2" y="33" width="0.2" height="15.0" fill="rgb(236,83,24)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>ata_begin_transaction (2 samples, 0.01%)</title><rect x="1109.5" y="97" width="0.1" height="15.0" fill="rgb(239,96,7)" rx="2" ry="2" />
<text text-anchor="" x="1112.47" 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>ixgbe_xmit (44 samples, 0.25%)</title><rect x="1169.5" y="81" width="3.0" height="15.0" fill="rgb(226,26,25)" rx="2" ry="2" />
<text text-anchor="" x="1172.53" 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>xpt_run_devq (2 samples, 0.01%)</title><rect x="1109.5" y="129" width="0.1" height="15.0" fill="rgb(231,156,32)" rx="2" ry="2" />
<text text-anchor="" x="1112.47" 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>ip_tryforward (214 samples, 1.21%)</title><rect x="1149.9" y="113" width="14.3" height="15.0" fill="rgb(219,199,47)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>ata_generic_command (2 samples, 0.01%)</title><rect x="1109.5" y="81" width="0.1" height="15.0" fill="rgb(219,216,17)" rx="2" ry="2" />
<text text-anchor="" x="1112.47" 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>bzero (181 samples, 1.03%)</title><rect x="1090.8" y="145" width="12.1" height="15.0" fill="rgb(244,174,21)" rx="2" ry="2" />
<text text-anchor="" x="1093.81" 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>ffs_balloc_ufs2 (2 samples, 0.01%)</title><rect x="1113.2" y="177" width="0.1" height="15.0" fill="rgb(212,138,53)" rx="2" ry="2" />
<text text-anchor="" x="1116.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>sys_select (3 samples, 0.02%)</title><rect x="10.7" y="257" width="0.2" height="15.0" fill="rgb(251,53,15)" rx="2" ry="2" />
<text text-anchor="" x="13.67" 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>bus_dmamap_load_mbuf_sg (33 samples, 0.19%)</title><rect x="1030.2" y="177" width="2.2" height="15.0" fill="rgb(252,66,51)" rx="2" ry="2" />
<text text-anchor="" x="1033.21" 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>ffs_write (2 samples, 0.01%)</title><rect x="1113.2" y="193" width="0.1" height="15.0" fill="rgb(234,10,44)" rx="2" ry="2" />
<text text-anchor="" x="1116.22" 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>atomic_subtract_barr_int (9 samples, 0.05%)</title><rect x="1174.3" y="177" width="0.6" height="15.0" fill="rgb(254,39,48)" rx="2" ry="2" />
<text text-anchor="" x="1177.28" 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_spin_flags (21 samples, 0.12%)</title><rect x="1178.0" y="145" width="1.4" height="15.0" fill="rgb(208,58,6)" rx="2" ry="2" />
<text text-anchor="" x="1180.96" 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>ixgbe_txeof (67 samples, 0.38%)</title><rect x="1149.9" y="49" width="4.4" height="15.0" fill="rgb(251,130,14)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>fork_exit (16,498 samples, 93.52%)</title><rect x="11.1" y="273" width="1103.5" height="15.0" fill="rgb(242,162,40)" rx="2" ry="2" />
<text text-anchor="" x="14.07" 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>bounce_bus_dmamap_load_buffer (259 samples, 1.47%)</title><rect x="1132.5" y="33" width="17.3" height="15.0" fill="rgb(221,80,16)" rx="2" ry="2" />
<text text-anchor="" x="1135.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>ip_input (527 samples, 2.99%)</title><rect x="1114.6" y="145" width="35.2" height="15.0" fill="rgb(249,194,49)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ip..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bus_dmamap_load_mbuf_sg (120 samples, 0.68%)</title><rect x="1154.4" y="33" width="8.0" height="15.0" fill="rgb(228,180,21)" rx="2" ry="2" />
<text text-anchor="" x="1157.42" 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>critical_exit (36 samples, 0.20%)</title><rect x="1065.9" y="177" width="2.4" height="15.0" fill="rgb(219,192,46)" rx="2" ry="2" />
<text text-anchor="" x="1068.86" 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>cdmediapoll (2 samples, 0.01%)</title><rect x="1109.5" y="193" width="0.1" height="15.0" fill="rgb(246,47,38)" rx="2" ry="2" />
<text text-anchor="" x="1112.47" 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_freem (80 samples, 0.45%)</title><rect x="1164.2" y="65" width="5.3" height="15.0" fill="rgb(232,194,9)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>bce_pulse (3 samples, 0.02%)</title><rect x="1109.3" y="193" width="0.2" height="15.0" fill="rgb(219,85,20)" rx="2" ry="2" />
<text text-anchor="" x="1112.27" 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_hook_handler (231 samples, 1.31%)</title><rect x="1173.6" y="209" width="15.5" height="15.0" fill="rgb(231,201,28)" rx="2" ry="2" />
<text text-anchor="" x="1176.61" 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_msix_que (16,413 samples, 93.03%)</title><rect x="11.3" y="225" width="1097.8" height="15.0" fill="rgb(239,50,32)" rx="2" ry="2" />
<text text-anchor="" x="14.27" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ixgbe_msix_que</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>critical_exit (29 samples, 0.16%)</title><rect x="706.4" y="49" width="2.0" height="15.0" fill="rgb(225,141,42)" rx="2" ry="2" />
<text text-anchor="" x="709.42" 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>uma_zalloc_arg (1,125 samples, 6.38%)</title><rect x="1033.5" y="193" width="75.2" height="15.0" fill="rgb(241,179,24)" rx="2" ry="2" />
<text text-anchor="" x="1036.49" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >uma_zall..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>spinlock_exit (7 samples, 0.04%)</title><rect x="1189.5" y="225" width="0.5" height="15.0" fill="rgb(229,164,3)" rx="2" ry="2" />
<text text-anchor="" x="1192.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>0x40362a (2 samples, 0.01%)</title><rect x="10.0" y="257" width="0.1" height="15.0" fill="rgb(230,18,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" 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>pmclog_reserve (158 samples, 0.90%)</title><rect x="1177.5" y="161" width="10.6" height="15.0" fill="rgb(212,70,19)" rx="2" ry="2" />
<text text-anchor="" x="1180.49" 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>sleepq_signal (2 samples, 0.01%)</title><rect x="1112.9" y="129" width="0.1" height="15.0" fill="rgb(227,140,36)" rx="2" ry="2" />
<text text-anchor="" x="1115.88" 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>ixgbe_msix_que (214 samples, 1.21%)</title><rect x="1149.9" y="241" width="14.3" height="15.0" fill="rgb(243,140,52)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>bounce_bus_dmamap_load_buffer (5 samples, 0.03%)</title><rect x="1032.1" y="161" width="0.3" height="15.0" fill="rgb(223,130,1)" rx="2" ry="2" />
<text text-anchor="" x="1035.08" 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>lapic_handle_timer (261 samples, 1.48%)</title><rect x="1172.5" y="273" width="17.5" height="15.0" fill="rgb(225,30,46)" rx="2" ry="2" />
<text text-anchor="" x="1175.54" 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_update_stats_counters (15 samples, 0.09%)</title><rect x="1109.6" y="177" width="1.0" height="15.0" fill="rgb(223,32,40)" rx="2" ry="2" />
<text text-anchor="" x="1112.60" 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>intr_event_execute_handlers (527 samples, 2.99%)</title><rect x="1114.6" y="273" width="35.2" height="15.0" fill="rgb(230,27,16)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >in..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_rxeof (214 samples, 1.21%)</title><rect x="1149.9" y="225" width="14.3" height="15.0" fill="rgb(209,41,34)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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 (2 samples, 0.01%)</title><rect x="1109.5" y="145" width="0.1" height="15.0" fill="rgb(219,134,12)" rx="2" ry="2" />
<text text-anchor="" x="1112.47" 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>ixgbe_txeof (220 samples, 1.25%)</title><rect x="1114.6" y="65" width="14.7" height="15.0" fill="rgb(215,52,12)" rx="2" ry="2" />
<text text-anchor="" x="1117.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_interrupt (2 samples, 0.01%)</title><rect x="11.1" y="209" width="0.2" height="15.0" fill="rgb(221,146,12)" rx="2" ry="2" />
<text text-anchor="" x="14.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>ether_input (124 samples, 0.70%)</title><rect x="1164.2" y="241" width="8.3" height="15.0" fill="rgb(227,219,39)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>device_get_parent (2 samples, 0.01%)</title><rect x="1109.3" y="145" width="0.2" height="15.0" fill="rgb(236,183,30)" rx="2" ry="2" />
<text text-anchor="" x="1112.34" 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_event_execute_handlers (16,475 samples, 93.39%)</title><rect x="11.1" y="241" width="1101.9" height="15.0" fill="rgb(249,55,17)" rx="2" ry="2" />
<text text-anchor="" x="14.07" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >intr_event_execute_handlers</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ip_tryforward (10,970 samples, 62.18%)</title><rect x="272.9" y="97" width="733.7" height="15.0" fill="rgb(237,135,17)" rx="2" ry="2" />
<text text-anchor="" x="275.86" y="107.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>key_havesp (53 samples, 0.30%)</title><rect x="1010.9" y="81" width="3.6" height="15.0" fill="rgb(248,84,1)" rx="2" ry="2" />
<text text-anchor="" x="1013.95" 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>atkbd_timeout (3 samples, 0.02%)</title><rect x="1109.1" y="193" width="0.2" height="15.0" fill="rgb(212,39,1)" rx="2" ry="2" />
<text text-anchor="" x="1112.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>keg_timeout (31 samples, 0.18%)</title><rect x="1110.8" y="177" width="2.1" height="15.0" fill="rgb(252,0,9)" rx="2" ry="2" />
<text text-anchor="" x="1113.81" 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>bzero (191 samples, 1.08%)</title><rect x="296.5" y="81" width="12.8" height="15.0" fill="rgb(237,55,40)" rx="2" ry="2" />
<text text-anchor="" x="299.54" 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>spinlock_enter (3 samples, 0.02%)</title><rect x="1179.2" y="129" width="0.2" height="15.0" fill="rgb(209,210,41)" rx="2" ry="2" />
<text text-anchor="" x="1182.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>pmc_process_samples (230 samples, 1.30%)</title><rect x="1173.7" y="193" width="15.4" height="15.0" fill="rgb(236,151,12)" rx="2" ry="2" />
<text text-anchor="" x="1176.68" 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>netisr_dispatch_src (124 samples, 0.70%)</title><rect x="1164.2" y="225" width="8.3" height="15.0" fill="rgb(238,204,40)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>m_freem (4 samples, 0.02%)</title><rect x="1108.8" y="193" width="0.3" height="15.0" fill="rgb(209,51,48)" rx="2" ry="2" />
<text text-anchor="" x="1111.80" 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_small_alloc (8 samples, 0.05%)</title><rect x="1108.2" y="113" width="0.5" height="15.0" fill="rgb(244,128,12)" rx="2" ry="2" />
<text text-anchor="" x="1111.20" 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>cpu_search_highest (2 samples, 0.01%)</title><rect x="1113.8" y="241" width="0.2" height="15.0" fill="rgb(246,91,16)" rx="2" ry="2" />
<text text-anchor="" x="1116.82" 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>_rm_runlock (44 samples, 0.25%)</title><rect x="850.8" y="65" width="3.0" height="15.0" fill="rgb(211,122,10)" rx="2" ry="2" />
<text text-anchor="" x="853.82" 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>kern_select (3 samples, 0.02%)</title><rect x="10.7" y="241" width="0.2" height="15.0" fill="rgb(224,180,4)" rx="2" ry="2" />
<text text-anchor="" x="13.67" 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>Xtimerint (5 samples, 0.03%)</title><rect x="10.3" y="273" width="0.4" height="15.0" fill="rgb(236,15,12)" rx="2" ry="2" />
<text text-anchor="" x="13.33" 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>ether_input (527 samples, 2.99%)</title><rect x="1114.6" y="225" width="35.2" height="15.0" fill="rgb(212,162,37)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >et..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pagezero (7 samples, 0.04%)</title><rect x="1108.2" y="97" width="0.5" height="15.0" fill="rgb(209,155,49)" rx="2" ry="2" />
<text text-anchor="" x="1111.20" 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>ether_nh_input (12,816 samples, 72.64%)</title><rect x="163.1" y="161" width="857.2" height="15.0" fill="rgb(230,139,0)" rx="2" ry="2" />
<text text-anchor="" x="166.10" y="171.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>pmclog_loop (3 samples, 0.02%)</title><rect x="1113.1" y="257" width="0.2" height="15.0" fill="rgb(253,52,30)" rx="2" ry="2" />
<text text-anchor="" x="1116.15" 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>netisr_dispatch_src (11,597 samples, 65.74%)</title><rect x="238.8" y="129" width="775.7" height="15.0" fill="rgb(238,12,19)" rx="2" ry="2" />
<text text-anchor="" x="241.82" y="139.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>ixgbe_msix_que (124 samples, 0.70%)</title><rect x="1164.2" y="273" width="8.3" height="15.0" fill="rgb(216,81,11)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>m_adj (84 samples, 0.48%)</title><rect x="232.6" y="129" width="5.6" height="15.0" fill="rgb(225,21,43)" rx="2" ry="2" />
<text text-anchor="" x="235.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>VOP_WRITE_APV (2 samples, 0.01%)</title><rect x="1113.2" y="209" width="0.1" height="15.0" fill="rgb(250,41,48)" rx="2" ry="2" />
<text text-anchor="" x="1116.22" 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>_rw_runlock_cookie (427 samples, 2.42%)</title><rect x="940.5" y="49" width="28.6" height="15.0" fill="rgb(227,210,5)" rx="2" ry="2" />
<text text-anchor="" x="943.52" y="59.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>ixgbe_xmit (884 samples, 5.01%)</title><rect x="729.8" y="33" width="59.2" height="15.0" fill="rgb(216,139,27)" rx="2" ry="2" />
<text text-anchor="" x="732.83" 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>uma_zfree_arg (80 samples, 0.45%)</title><rect x="1164.2" y="49" width="5.3" height="15.0" fill="rgb(243,77,7)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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_rxeof (124 samples, 0.70%)</title><rect x="1164.2" y="257" width="8.3" height="15.0" fill="rgb(241,74,6)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>devfs_poll_f (2 samples, 0.01%)</title><rect x="10.7" y="225" width="0.1" height="15.0" fill="rgb(253,44,42)" rx="2" ry="2" />
<text text-anchor="" x="13.67" 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>ether_demux (11,792 samples, 66.84%)</title><rect x="225.8" y="145" width="788.7" height="15.0" fill="rgb(245,45,36)" rx="2" ry="2" />
<text text-anchor="" x="228.77" y="155.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>ip_input (124 samples, 0.70%)</title><rect x="1164.2" y="161" width="8.3" height="15.0" fill="rgb(213,89,40)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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_pkthdr_init (4 samples, 0.02%)</title><rect x="1068.3" y="177" width="0.2" height="15.0" fill="rgb(238,122,27)" rx="2" ry="2" />
<text text-anchor="" x="1071.27" 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_mq_start (214 samples, 1.21%)</title><rect x="1149.9" y="81" width="14.3" height="15.0" fill="rgb(243,184,12)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>bcopy (477 samples, 2.70%)</title><rect x="419.3" y="49" width="31.9" height="15.0" fill="rgb(238,60,15)" rx="2" ry="2" />
<text text-anchor="" x="422.34" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >bc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_bus_dmamap_load_buffer (10 samples, 0.06%)</title><rect x="1131.2" y="33" width="0.7" height="15.0" fill="rgb(214,168,47)" rx="2" ry="2" />
<text text-anchor="" x="1134.21" 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_runlock_cookie (334 samples, 1.89%)</title><rect x="397.0" y="49" width="22.3" height="15.0" fill="rgb(217,214,7)" rx="2" ry="2" />
<text text-anchor="" x="400.00" 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>cv_signal (2 samples, 0.01%)</title><rect x="1112.9" y="145" width="0.1" height="15.0" fill="rgb(228,174,13)" rx="2" ry="2" />
<text text-anchor="" x="1115.88" 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>ixgbe_rxeof (527 samples, 2.99%)</title><rect x="1114.6" y="241" width="35.2" height="15.0" fill="rgb(213,177,38)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ix..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_mtx_trylock_flags_ (421 samples, 2.39%)</title><rect x="676.9" y="49" width="28.1" height="15.0" fill="rgb(207,214,4)" rx="2" ry="2" />
<text text-anchor="" x="679.85" 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>pmclog_get_buffer (3 samples, 0.02%)</title><rect x="1187.8" y="145" width="0.2" height="15.0" fill="rgb(254,31,0)" rx="2" ry="2" />
<text text-anchor="" x="1190.79" 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>getnanotime (2 samples, 0.01%)</title><rect x="1187.7" y="145" width="0.1" height="15.0" fill="rgb(252,83,47)" rx="2" ry="2" />
<text text-anchor="" x="1190.66" 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>netisr_dispatch_src (527 samples, 2.99%)</title><rect x="1114.6" y="209" width="35.2" height="15.0" fill="rgb(235,217,20)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ne..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>0x40035f (2 samples, 0.01%)</title><rect x="10.0" y="273" width="0.1" height="15.0" fill="rgb(240,213,5)" 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>lock_delay (103 samples, 0.58%)</title><rect x="1180.7" y="129" width="6.9" height="15.0" fill="rgb(220,187,49)" rx="2" ry="2" />
<text text-anchor="" x="1183.70" 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>handleevents (2 samples, 0.01%)</title><rect x="1113.5" y="209" width="0.1" height="15.0" fill="rgb(223,43,0)" rx="2" ry="2" />
<text text-anchor="" x="1116.48" 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>in_localip (404 samples, 2.29%)</title><rect x="826.7" y="81" width="27.1" height="15.0" fill="rgb(236,226,15)" rx="2" ry="2" />
<text text-anchor="" x="829.74" y="91.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>mb_ctor_mbuf (584 samples, 3.31%)</title><rect x="1068.5" y="177" width="39.1" height="15.0" fill="rgb(238,18,46)" rx="2" ry="2" />
<text text-anchor="" x="1071.54" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >mb_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intr_event_execute_handlers (214 samples, 1.21%)</title><rect x="1149.9" y="257" width="14.3" height="15.0" fill="rgb(212,40,22)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>ether_demux (527 samples, 2.99%)</title><rect x="1114.6" y="177" width="35.2" height="15.0" fill="rgb(220,173,19)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >et..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_read_reg (15 samples, 0.09%)</title><rect x="1109.6" y="161" width="1.0" height="15.0" fill="rgb(211,126,31)" rx="2" ry="2" />
<text text-anchor="" x="1112.60" 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>ether_output (214 samples, 1.21%)</title><rect x="1149.9" y="97" width="14.3" height="15.0" fill="rgb(253,102,0)" rx="2" ry="2" />
<text text-anchor="" x="1152.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>usb_power_wdog (2 samples, 0.01%)</title><rect x="1112.9" y="193" width="0.1" height="15.0" fill="rgb(235,31,13)" rx="2" ry="2" />
<text text-anchor="" x="1115.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>tc_ticktock (6 samples, 0.03%)</title><rect x="1189.1" y="209" width="0.4" height="15.0" fill="rgb(206,195,18)" rx="2" ry="2" />
<text text-anchor="" x="1192.06" 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_mq_start_locked (214 samples, 1.21%)</title><rect x="1149.9" y="65" width="14.3" height="15.0" fill="rgb(227,113,35)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>ixgbe_write_reg (26 samples, 0.15%)</title><rect x="1162.4" y="33" width="1.8" height="15.0" fill="rgb(218,98,33)" rx="2" ry="2" />
<text text-anchor="" x="1165.44" 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 (19 samples, 0.11%)</title><rect x="157.5" y="177" width="1.3" height="15.0" fill="rgb(247,129,16)" rx="2" ry="2" />
<text text-anchor="" x="160.48" 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 (2,285 samples, 12.95%)</title><rect x="853.8" y="81" width="152.8" height="15.0" fill="rgb(218,193,11)" rx="2" ry="2" />
<text text-anchor="" x="856.76" y="91.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>m_freem (220 samples, 1.25%)</title><rect x="1114.6" y="49" width="14.7" height="15.0" fill="rgb(217,187,29)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" 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>xpt_run_allocq (2 samples, 0.01%)</title><rect x="1109.5" y="177" width="0.1" height="15.0" fill="rgb(237,130,32)" rx="2" ry="2" />
<text text-anchor="" x="1112.47" 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>mac_ifnet_check_transmit (72 samples, 0.41%)</title><rect x="789.0" y="65" width="4.8" height="15.0" fill="rgb(221,154,53)" rx="2" ry="2" />
<text text-anchor="" x="791.95" 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>m_pkthdr_init (237 samples, 1.34%)</title><rect x="1087.1" y="161" width="15.8" height="15.0" fill="rgb(237,132,50)" rx="2" ry="2" />
<text text-anchor="" x="1090.06" 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>ip_input (214 samples, 1.21%)</title><rect x="1149.9" y="129" width="14.3" height="15.0" fill="rgb(215,168,47)" rx="2" ry="2" />
<text text-anchor="" x="1152.87" 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>vn_write (2 samples, 0.01%)</title><rect x="1113.2" y="225" width="0.1" height="15.0" fill="rgb(207,171,12)" rx="2" ry="2" />
<text text-anchor="" x="1116.22" 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>bus_dmamap_load_mbuf_sg (44 samples, 0.25%)</title><rect x="1169.5" y="65" width="3.0" height="15.0" fill="rgb(251,83,53)" rx="2" ry="2" />
<text text-anchor="" x="1172.53" 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>0x4057fe (2 samples, 0.01%)</title><rect x="10.1" y="257" width="0.2" height="15.0" fill="rgb(220,112,51)" rx="2" ry="2" />
<text text-anchor="" x="13.13" 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>usb_bus_explore (2 samples, 0.01%)</title><rect x="1114.4" y="241" width="0.1" height="15.0" fill="rgb(248,94,47)" rx="2" ry="2" />
<text text-anchor="" x="1117.35" 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>cpu_activeclock (2 samples, 0.01%)</title><rect x="1113.5" y="225" width="0.1" height="15.0" fill="rgb(246,189,33)" rx="2" ry="2" />
<text text-anchor="" x="1116.48" 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>bcmp (643 samples, 3.64%)</title><rect x="182.8" y="145" width="43.0" height="15.0" fill="rgb(216,227,54)" rx="2" ry="2" />
<text text-anchor="" x="185.77" y="155.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>ixgbe_msix_que (527 samples, 2.99%)</title><rect x="1114.6" y="257" width="35.2" height="15.0" fill="rgb(222,62,4)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ix..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ether_output (527 samples, 2.99%)</title><rect x="1114.6" y="113" width="35.2" height="15.0" fill="rgb(214,41,14)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >et..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pci_write_config_method (2 samples, 0.01%)</title><rect x="1109.3" y="177" width="0.2" height="15.0" fill="rgb(236,168,29)" rx="2" ry="2" />
<text text-anchor="" x="1112.34" 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 (19 samples, 0.11%)</title><rect x="1064.6" y="177" width="1.3" height="15.0" fill="rgb(213,146,44)" rx="2" ry="2" />
<text text-anchor="" x="1067.59" 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>in_lltable_lookup (53 samples, 0.30%)</title><rect x="451.2" y="49" width="3.6" height="15.0" fill="rgb(205,227,15)" rx="2" ry="2" />
<text text-anchor="" x="454.25" 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>__rw_rlock (756 samples, 4.29%)</title><rect x="890.0" y="49" width="50.5" height="15.0" fill="rgb(207,5,29)" rx="2" ry="2" />
<text text-anchor="" x="892.95" y="59.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>critical_exit (28 samples, 0.16%)</title><rect x="1165.7" y="33" width="1.9" height="15.0" fill="rgb(246,215,27)" rx="2" ry="2" />
<text text-anchor="" x="1168.72" 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_mq_start (124 samples, 0.70%)</title><rect x="1164.2" y="113" width="8.3" height="15.0" fill="rgb(247,107,18)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>_rm_rlock (223 samples, 1.26%)</title><rect x="835.9" y="65" width="14.9" height="15.0" fill="rgb(242,211,6)" rx="2" ry="2" />
<text text-anchor="" x="838.91" 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>hardclock_cnt (238 samples, 1.35%)</title><rect x="1173.5" y="225" width="16.0" height="15.0" fill="rgb(208,147,14)" rx="2" ry="2" />
<text text-anchor="" x="1176.55" 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>__mtx_lock_spin_flags (3 samples, 0.02%)</title><rect x="1187.8" y="129" width="0.2" height="15.0" fill="rgb(250,24,18)" rx="2" ry="2" />
<text text-anchor="" x="1190.79" 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>sched_sync (3 samples, 0.02%)</title><rect x="1114.1" y="257" width="0.2" height="15.0" fill="rgb(223,79,18)" rx="2" ry="2" />
<text text-anchor="" x="1117.08" 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>mb_dtor_mbuf (28 samples, 0.16%)</title><rect x="1167.6" y="33" width="1.9" height="15.0" fill="rgb(232,153,49)" rx="2" ry="2" />
<text text-anchor="" x="1170.59" 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>binuptime (3 samples, 0.02%)</title><rect x="1172.7" y="241" width="0.2" height="15.0" fill="rgb(246,37,17)" rx="2" ry="2" />
<text text-anchor="" x="1175.74" 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>ether_nh_input (527 samples, 2.99%)</title><rect x="1114.6" y="193" width="35.2" height="15.0" fill="rgb(227,165,43)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >et..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpu_idleclock (2 samples, 0.01%)</title><rect x="1113.7" y="225" width="0.1" height="15.0" fill="rgb(240,73,12)" rx="2" ry="2" />
<text text-anchor="" x="1116.68" 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_xmit (307 samples, 1.74%)</title><rect x="1129.3" y="65" width="20.5" height="15.0" fill="rgb(223,187,14)" rx="2" ry="2" />
<text text-anchor="" x="1132.27" 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>amd64_syscall (5 samples, 0.03%)</title><rect x="10.7" y="273" width="0.3" height="15.0" fill="rgb(217,141,13)" rx="2" ry="2" />
<text text-anchor="" x="13.67" 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_mq_start_locked (124 samples, 0.70%)</title><rect x="1164.2" y="97" width="8.3" height="15.0" fill="rgb(244,74,36)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>ip_tryforward (124 samples, 0.70%)</title><rect x="1164.2" y="145" width="8.3" height="15.0" fill="rgb(205,186,44)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>ether_demux (124 samples, 0.70%)</title><rect x="1164.2" y="193" width="8.3" height="15.0" fill="rgb(229,86,14)" rx="2" ry="2" />
<text text-anchor="" x="1167.18" 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>usb_needs_explore (2 samples, 0.01%)</title><rect x="1112.9" y="177" width="0.1" height="15.0" fill="rgb(243,155,11)" rx="2" ry="2" />
<text text-anchor="" x="1115.88" 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>ataaction (2 samples, 0.01%)</title><rect x="1109.5" y="113" width="0.1" height="15.0" fill="rgb(221,10,11)" rx="2" ry="2" />
<text text-anchor="" x="1112.47" 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>netisr_dispatch_src (12,881 samples, 73.01%)</title><rect x="158.8" y="177" width="861.5" height="15.0" fill="rgb(249,63,32)" rx="2" ry="2" />
<text text-anchor="" x="161.75" y="187.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>ithread_loop (16,477 samples, 93.40%)</title><rect x="11.1" y="257" width="1102.0" height="15.0" fill="rgb(234,80,18)" rx="2" ry="2" />
<text text-anchor="" x="14.07" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ithread_loop</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>softclock (59 samples, 0.33%)</title><rect x="1109.1" y="225" width="3.9" height="15.0" fill="rgb(205,99,43)" rx="2" ry="2" />
<text text-anchor="" x="1112.07" 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_mq_start (527 samples, 2.99%)</title><rect x="1114.6" y="97" width="35.2" height="15.0" fill="rgb(223,31,13)" rx="2" ry="2" />
<text text-anchor="" x="1117.55" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ix..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ixgbe_write_reg (15 samples, 0.09%)</title><rect x="1032.4" y="177" width="1.0" height="15.0" fill="rgb(224,139,42)" rx="2" ry="2" />
<text text-anchor="" x="1035.42" y="187.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
747378
Default Alt Text
bench.313730.svg (80 KB)

Event Timeline