Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F167389277
patch.svg
bnovkov (Bojan Novković)
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Authored By
bnovkov
Fri, Aug 21, 12:22 PM
2026-08-21 12:22:36 (UTC+0)
Size
149 KB
Referenced Files
None
Subscribers
None
patch.svg
View Options
<?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="1270" onload="init(evt)" viewBox="0 0 1200 1270" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
// use GET parameters to restore a flamegraphs state.
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s) search(params.s);
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom(true);
zoom(target);
if (!document.querySelector('.parent')) {
// we have basically done a clearzoom so clear the url
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
unzoombtn.classList.add("hide");
return;
}
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") clearzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
else if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
var sl = t.getSubStringLength(0, txt.length);
// check if only whitespace or if we can fit the entire string into width w
if (/^ *$/.test(txt) || sl < w)
return;
// this isn't perfect, but gives a good starting point
// and avoids calling getSubStringLength too often
var start = Math.floor((w/sl) * txt.length);
for (var x = start; x > 0; x = x-2) {
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]").attributes.x.value + 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;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
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);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom(dont_update_text) {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
if(!dont_update_text) update_text(el[i]);
}
search();
}
function clearzoom() {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) search(term);
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (term) currentSearchTerm = term;
if (currentSearchTerm === null) return;
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = 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;
var params = get_params();
params.s = currentSearchTerm;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1270.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1253" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="1253" > </text>
<g id="frames">
<g >
<title>m_tag_free_default (397 samples, 0.01%)</title><rect x="553.6" y="917" width="0.1" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="556.61" y="927.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (50,999 samples, 1.45%)</title><rect x="406.4" y="853" width="17.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="409.44" y="863.5" ></text>
</g>
<g >
<title>iflib_txd_db_check (1,515 samples, 0.04%)</title><rect x="630.7" y="837" width="0.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="633.70" y="847.5" ></text>
</g>
<g >
<title>ZSTD_estimateCDictSize (531 samples, 0.02%)</title><rect x="1163.0" y="1109" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1165.98" y="1119.5" ></text>
</g>
<g >
<title>memcpy_std (1,122 samples, 0.03%)</title><rect x="789.7" y="901" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="792.74" y="911.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="693" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="703.5" ></text>
</g>
<g >
<title>vdev_config_sync (920 samples, 0.03%)</title><rect x="1175.8" y="1077" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1178.82" y="1087.5" ></text>
</g>
<g >
<title>bsearch4_lookup (768 samples, 0.02%)</title><rect x="550.4" y="917" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="553.37" y="927.5" ></text>
</g>
<g >
<title>pf_match_translation_rule (43,337 samples, 1.23%)</title><rect x="454.4" y="965" width="14.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="457.43" y="975.5" ></text>
</g>
<g >
<title>trash_dtor (849 samples, 0.02%)</title><rect x="370.7" y="901" width="0.3" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="373.70" y="911.5" ></text>
</g>
<g >
<title>pf_syncookie_rotate (401 samples, 0.01%)</title><rect x="956.8" y="965" width="0.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="959.79" y="975.5" ></text>
</g>
<g >
<title>space_map_iterate (589 samples, 0.02%)</title><rect x="1165.8" y="1125" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1168.81" y="1135.5" ></text>
</g>
<g >
<title>item_dtor (59,647 samples, 1.69%)</title><rect x="660.9" y="757" width="19.9" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="663.86" y="767.5" ></text>
</g>
<g >
<title>in_cksumdata (352 samples, 0.01%)</title><rect x="574.2" y="885" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="577.17" y="895.5" ></text>
</g>
<g >
<title>ZSTD_compressBlock_lazy_extDict (708 samples, 0.02%)</title><rect x="10.4" y="1157" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="13.44" y="1167.5" ></text>
</g>
<g >
<title>iflib_encap (104,445 samples, 2.96%)</title><rect x="701.1" y="821" width="35.0" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="704.08" y="831.5" >if..</text>
</g>
<g >
<title>_sx_xlock (646 samples, 0.02%)</title><rect x="1162.7" y="1093" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1165.70" y="1103.5" ></text>
</g>
<g >
<title>spa_taskq_param_set (3,832 samples, 0.11%)</title><rect x="1172.9" y="1141" width="1.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1175.90" y="1151.5" ></text>
</g>
<g >
<title>zcp_get_prop (609 samples, 0.02%)</title><rect x="1189.3" y="1109" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1192.31" y="1119.5" ></text>
</g>
<g >
<title>mtrash_dtor (400 samples, 0.01%)</title><rect x="552.5" y="853" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="555.52" y="863.5" ></text>
</g>
<g >
<title>tcp_lro_rx_common (400 samples, 0.01%)</title><rect x="971.7" y="1109" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="974.67" y="1119.5" ></text>
</g>
<g >
<title>malloc (309 samples, 0.01%)</title><rect x="1163.8" y="1045" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1166.85" y="1055.5" ></text>
</g>
<g >
<title>pfr_kstate_counter_add (721 samples, 0.02%)</title><rect x="365.9" y="981" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="368.87" y="991.5" ></text>
</g>
<g >
<title>sync_upgrade_errlog (566 samples, 0.02%)</title><rect x="1167.4" y="1061" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1170.37" y="1071.5" ></text>
</g>
<g >
<title>sleepq_lock (402 samples, 0.01%)</title><rect x="1018.1" y="1141" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1021.12" y="1151.5" ></text>
</g>
<g >
<title>memset_std (632 samples, 0.02%)</title><rect x="1186.0" y="1077" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1189.02" y="1087.5" ></text>
</g>
<g >
<title>vdev_raidz_map_alloc_expanded (706 samples, 0.02%)</title><rect x="1167.3" y="1125" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1170.34" y="1135.5" ></text>
</g>
<g >
<title>spa_init (2,953 samples, 0.08%)</title><rect x="1166.1" y="1141" width="1.0" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1169.08" y="1151.5" ></text>
</g>
<g >
<title>m_copydata (2,629 samples, 0.07%)</title><rect x="954.4" y="917" width="0.9" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="957.38" y="927.5" ></text>
</g>
<g >
<title>in_epoch (510 samples, 0.01%)</title><rect x="967.6" y="1093" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="970.61" y="1103.5" ></text>
</g>
<g >
<title>netisr_queue_src (41,119 samples, 1.17%)</title><rect x="553.8" y="917" width="13.7" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="556.76" y="927.5" ></text>
</g>
<g >
<title>0x63478 (336 samples, 0.01%)</title><rect x="450.4" y="965" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="453.43" y="975.5" ></text>
</g>
<g >
<title>SipHash_End (14,382 samples, 0.41%)</title><rect x="475.6" y="949" width="4.9" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="478.64" y="959.5" ></text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="949" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="959.5" ></text>
</g>
<g >
<title>vdev_mirror_rebuilding (591 samples, 0.02%)</title><rect x="1167.4" y="1093" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1170.37" y="1103.5" ></text>
</g>
<g >
<title>0x258c1c (530 samples, 0.02%)</title><rect x="10.1" y="549" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.11" y="559.5" ></text>
</g>
<g >
<title>tcp_input_with_port (418 samples, 0.01%)</title><rect x="969.3" y="965" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="972.28" y="975.5" ></text>
</g>
<g >
<title>iflib_txq_can_reclaim (36,859 samples, 1.05%)</title><rect x="776.2" y="821" width="12.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="779.24" y="831.5" ></text>
</g>
<g >
<title>0x634c0 (963 samples, 0.03%)</title><rect x="458.2" y="949" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="461.17" y="959.5" ></text>
</g>
<g >
<title>m_freem (230,934 samples, 6.55%)</title><rect x="367.3" y="949" width="77.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="370.35" y="959.5" >m_freem</text>
</g>
<g >
<title>zfs_range_tree_seg64_find_in_buf (46,257 samples, 1.31%)</title><rect x="1174.4" y="1125" width="15.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1177.38" y="1135.5" ></text>
</g>
<g >
<title>pf_nvrule_to_krule (13,531 samples, 0.38%)</title><rect x="929.6" y="933" width="4.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="932.60" y="943.5" ></text>
</g>
<g >
<title>_ck_epoch_addref (4,005 samples, 0.11%)</title><rect x="313.6" y="1013" width="1.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="316.59" y="1023.5" ></text>
</g>
<g >
<title>ether_output (634,497 samples, 18.01%)</title><rect x="577.6" y="917" width="212.5" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="580.64" y="927.5" >ether_output</text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="373" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="383.5" ></text>
</g>
<g >
<title>0x6dbd0 (851 samples, 0.02%)</title><rect x="448.9" y="949" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="451.94" y="959.5" ></text>
</g>
<g >
<title>bpf_mtap (1,215 samples, 0.03%)</title><rect x="292.9" y="1061" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="295.85" y="1071.5" ></text>
</g>
<g >
<title>xpt_action_default (457 samples, 0.01%)</title><rect x="1164.0" y="1029" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1166.99" y="1039.5" ></text>
</g>
<g >
<title>_rm_assert (509 samples, 0.01%)</title><rect x="908.7" y="933" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="911.70" y="943.5" ></text>
</g>
<g >
<title>trash_dtor (1,008 samples, 0.03%)</title><rect x="681.1" y="757" width="0.4" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="684.14" y="767.5" ></text>
</g>
<g >
<title>tcp_lro_queue_mbuf (449 samples, 0.01%)</title><rect x="971.5" y="1109" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="974.52" y="1119.5" ></text>
</g>
<g >
<title>ZSTD_btGetAllMatches_extDict_3 (3,045 samples, 0.09%)</title><rect x="10.4" y="1173" width="1.1" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="13.44" y="1183.5" ></text>
</g>
<g >
<title>sleepq_switch (130,898 samples, 3.71%)</title><rect x="1018.3" y="1141" width="43.8" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1021.25" y="1151.5" >slee..</text>
</g>
<g >
<title>vdev_uberblock_load_done (598 samples, 0.02%)</title><rect x="1167.4" y="1109" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1170.37" y="1119.5" ></text>
</g>
<g >
<title>0xffff000000a82ab4 (303 samples, 0.01%)</title><rect x="588.3" y="901" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="591.28" y="911.5" ></text>
</g>
<g >
<title>in_epoch_verbose (5,024 samples, 0.14%)</title><rect x="333.6" y="1029" width="1.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="336.58" y="1039.5" ></text>
</g>
<g >
<title>swi_net (33,116 samples, 0.94%)</title><rect x="1122.3" y="1157" width="11.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1125.29" y="1167.5" ></text>
</g>
<g >
<title>0x6dd20 (32,104 samples, 0.91%)</title><rect x="660.9" y="741" width="10.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="663.94" y="751.5" ></text>
</g>
<g >
<title>igb_isc_rxd_available (9,745 samples, 0.28%)</title><rect x="235.6" y="1109" width="3.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="238.57" y="1119.5" ></text>
</g>
<g >
<title>spa_add_healed_error (8,930 samples, 0.25%)</title><rect x="1186.3" y="1045" width="3.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1189.27" y="1055.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (545 samples, 0.02%)</title><rect x="1133.5" y="1141" width="0.2" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1136.54" y="1151.5" ></text>
</g>
<g >
<title>ZSTD_RowFindBestMatch_dedicatedDictSearch_4_6 (645 samples, 0.02%)</title><rect x="10.7" y="1141" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="13.68" y="1151.5" ></text>
</g>
<g >
<title>mtrash_ctor (1,604 samples, 0.05%)</title><rect x="1145.7" y="1093" width="0.6" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1148.74" y="1103.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (497 samples, 0.01%)</title><rect x="10.1" y="149" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.12" y="159.5" ></text>
</g>
<g >
<title>pfi_cleanup_vnet (71,363 samples, 2.03%)</title><rect x="865.7" y="933" width="23.9" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="868.71" y="943.5" >p..</text>
</g>
<g >
<title>0x634f0 (978 samples, 0.03%)</title><rect x="451.5" y="965" width="0.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="454.50" y="975.5" ></text>
</g>
<g >
<title>0x6dc28 (7,051 samples, 0.20%)</title><rect x="905.0" y="901" width="2.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="908.01" y="911.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (2,307 samples, 0.07%)</title><rect x="1113.2" y="1157" width="0.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1116.16" y="1167.5" ></text>
</g>
<g >
<title>vdev_initialize_load (9,061 samples, 0.26%)</title><rect x="1176.3" y="1077" width="3.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1179.31" y="1087.5" ></text>
</g>
<g >
<title>witness_checkorder (993 samples, 0.03%)</title><rect x="13.3" y="1125" width="0.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="16.34" y="1135.5" ></text>
</g>
<g >
<title>m_apply (12,251 samples, 0.35%)</title><rect x="569.3" y="917" width="4.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="572.27" y="927.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (16,124 samples, 0.46%)</title><rect x="43.5" y="1109" width="5.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="46.55" y="1119.5" ></text>
</g>
<g >
<title>spa_condense_indirect_thread (9,126 samples, 0.26%)</title><rect x="1186.2" y="1077" width="3.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1189.23" y="1087.5" ></text>
</g>
<g >
<title>0x258090 (519 samples, 0.01%)</title><rect x="10.1" y="309" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="319.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (518 samples, 0.01%)</title><rect x="10.1" y="277" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="287.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="965" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="975.5" ></text>
</g>
<g >
<title>_epoch_enter_preempt (303 samples, 0.01%)</title><rect x="1113.9" y="1157" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1116.94" y="1167.5" ></text>
</g>
<g >
<title>0x258c1c (530 samples, 0.02%)</title><rect x="10.1" y="1093" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.11" y="1103.5" ></text>
</g>
<g >
<title>in_epoch_verbose (6,762 samples, 0.19%)</title><rect x="593.0" y="885" width="2.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="596.02" y="895.5" ></text>
</g>
<g >
<title>process_error_log (5,586 samples, 0.16%)</title><rect x="1136.2" y="1109" width="1.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1139.15" y="1119.5" ></text>
</g>
<g >
<title>pfr_update_stats (1,771,270 samples, 50.27%)</title><rect x="366.1" y="981" width="593.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="369.11" y="991.5" >pfr_update_stats</text>
</g>
<g >
<title>ether_nh_input (1,906 samples, 0.05%)</title><rect x="968.8" y="1045" width="0.6" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="971.79" y="1055.5" ></text>
</g>
<g >
<title>0x47a44 (919 samples, 0.03%)</title><rect x="928.5" y="933" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="931.48" y="943.5" ></text>
</g>
<g >
<title>0x636b8 (300 samples, 0.01%)</title><rect x="914.1" y="949" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="917.14" y="959.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (524 samples, 0.01%)</title><rect x="10.1" y="325" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="335.5" ></text>
</g>
<g >
<title>uma_zfree_arg (64,694 samples, 1.84%)</title><rect x="659.8" y="773" width="21.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="662.82" y="783.5" >u..</text>
</g>
<g >
<title>in_realm (351 samples, 0.01%)</title><rect x="416.8" y="837" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="419.76" y="847.5" ></text>
</g>
<g >
<title>0x3072ac (309 samples, 0.01%)</title><rect x="10.3" y="1045" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="13.31" y="1055.5" ></text>
</g>
<g >
<title>zio_dio_chksum_verify_error_report (480 samples, 0.01%)</title><rect x="10.5" y="1141" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="13.47" y="1151.5" ></text>
</g>
<g >
<title>memcpy_std (1,877 samples, 0.05%)</title><rect x="955.3" y="917" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="958.26" y="927.5" ></text>
</g>
<g >
<title>0x18e8b4 (362 samples, 0.01%)</title><rect x="10.1" y="53" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.12" y="63.5" ></text>
</g>
<g >
<title>in_cksumdata (679 samples, 0.02%)</title><rect x="573.9" y="869" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="576.94" y="879.5" ></text>
</g>
<g >
<title>ether_nh_input (967 samples, 0.03%)</title><rect x="49.3" y="1077" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="52.29" y="1087.5" ></text>
</g>
<g >
<title>spa_import_progress_remove (618 samples, 0.02%)</title><rect x="1165.8" y="1141" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="1168.81" y="1151.5" ></text>
</g>
<g >
<title>g_io_request (1,423 samples, 0.04%)</title><rect x="1163.7" y="1109" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1166.67" y="1119.5" ></text>
</g>
<g >
<title>in_epoch_verbose (2,451 samples, 0.07%)</title><rect x="597.0" y="869" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="600.03" y="879.5" ></text>
</g>
<g >
<title>ZSTD_decompressSequences (1,640 samples, 0.05%)</title><rect x="10.9" y="1141" width="0.5" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="13.90" y="1151.5" ></text>
</g>
<g >
<title>pf_walk_header6 (2,264 samples, 0.06%)</title><rect x="821.1" y="949" width="0.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="824.09" y="959.5" ></text>
</g>
<g >
<title>uma_dbg_free (1,297 samples, 0.04%)</title><rect x="1132.9" y="1029" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1135.85" y="1039.5" ></text>
</g>
<g >
<title>mb_ctor_mbuf (525 samples, 0.01%)</title><rect x="877.1" y="917" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="880.10" y="927.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_unload (798 samples, 0.02%)</title><rect x="268.2" y="1093" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="271.17" y="1103.5" ></text>
</g>
<g >
<title>pf_tcp_track_full (16,543 samples, 0.47%)</title><rect x="815.5" y="949" width="5.6" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="818.55" y="959.5" ></text>
</g>
<g >
<title>mac_netinet_firewall_send (8,046 samples, 0.23%)</title><rect x="823.6" y="933" width="2.7" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="826.56" y="943.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="1013" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="1023.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (3,545 samples, 0.10%)</title><rect x="795.0" y="853" width="1.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="797.98" y="863.5" ></text>
</g>
<g >
<title>0x18e8b4 (497 samples, 0.01%)</title><rect x="10.1" y="165" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.12" y="175.5" ></text>
</g>
<g >
<title>spinlock_exit (4,320 samples, 0.12%)</title><rect x="31.9" y="1109" width="1.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="34.87" y="1119.5" ></text>
</g>
<g >
<title>0x18e804 (530 samples, 0.02%)</title><rect x="10.1" y="565" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.11" y="575.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_load_buffer (30,149 samples, 0.86%)</title><rect x="714.4" y="789" width="10.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="717.36" y="799.5" ></text>
</g>
<g >
<title>vdev_initialize_zap_remove_sync (9,091 samples, 0.26%)</title><rect x="1176.3" y="1093" width="3.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1179.31" y="1103.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (8,391 samples, 0.24%)</title><rect x="1122.4" y="1141" width="2.8" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1125.41" y="1151.5" ></text>
</g>
<g >
<title>pmap_kextract (2,786 samples, 0.08%)</title><rect x="424.2" y="885" width="0.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="427.16" y="895.5" ></text>
</g>
<g >
<title>raidz_syn_pqr_abd (301 samples, 0.01%)</title><rect x="11.0" y="1077" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="13.97" y="1087.5" ></text>
</g>
<g >
<title>uma_zfree_arg (2,225 samples, 0.06%)</title><rect x="1167.6" y="1125" width="0.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1170.59" y="1135.5" ></text>
</g>
<g >
<title>0x18e804 (363 samples, 0.01%)</title><rect x="10.1" y="117" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.12" y="127.5" ></text>
</g>
<g >
<title>item_ctor (1,868 samples, 0.05%)</title><rect x="791.9" y="917" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="794.95" y="927.5" ></text>
</g>
<g >
<title>0x6d468 (1,421 samples, 0.04%)</title><rect x="446.4" y="949" width="0.5" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="449.38" y="959.5" ></text>
</g>
<g >
<title>in_realm (594 samples, 0.02%)</title><rect x="108.2" y="1061" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="111.18" y="1071.5" ></text>
</g>
<g >
<title>spa_sync_config_object (13,614 samples, 0.39%)</title><rect x="1168.3" y="1141" width="4.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1171.34" y="1151.5" ></text>
</g>
<g >
<title>if_simloop (49,753 samples, 1.41%)</title><rect x="550.9" y="933" width="16.7" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="553.89" y="943.5" ></text>
</g>
<g >
<title>ZSTD_compressEnd_public (652 samples, 0.02%)</title><rect x="1162.7" y="1109" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1165.70" y="1119.5" ></text>
</g>
<g >
<title>ifmp_ring_check_drainage (2,479 samples, 0.07%)</title><rect x="988.0" y="1125" width="0.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="991.04" y="1135.5" ></text>
</g>
<g >
<title>pf_nvuint64_array (3,736 samples, 0.11%)</title><rect x="934.4" y="933" width="1.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="937.40" y="943.5" ></text>
</g>
<g >
<title>vdev_initialize_change_state (5,051 samples, 0.14%)</title><rect x="1184.3" y="1093" width="1.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1187.32" y="1103.5" ></text>
</g>
<g >
<title>spa_sync_tq_create (3,723 samples, 0.11%)</title><rect x="1172.9" y="1109" width="1.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1175.91" y="1119.5" ></text>
</g>
<g >
<title>pf_ioctl_get_ruleset (40,140 samples, 1.14%)</title><rect x="894.3" y="949" width="13.4" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="897.26" y="959.5" ></text>
</g>
<g >
<title>0x290ec0 (530 samples, 0.02%)</title><rect x="10.1" y="1157" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="13.11" y="1167.5" ></text>
</g>
<g >
<title>tcp_lro_flush_all (367 samples, 0.01%)</title><rect x="982.7" y="1125" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="985.75" y="1135.5" ></text>
</g>
<g >
<title>pfi_initialize_vnet (2,240 samples, 0.06%)</title><rect x="468.2" y="949" width="0.7" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="471.19" y="959.5" ></text>
</g>
<g >
<title>m_tag_delete_nonpersistent (6,592 samples, 0.19%)</title><rect x="551.4" y="917" width="2.2" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="554.40" y="927.5" ></text>
</g>
<g >
<title>0x63484 (1,082 samples, 0.03%)</title><rect x="451.0" y="965" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="454.00" y="975.5" ></text>
</g>
<g >
<title>pfattach_vnet (20,677 samples, 0.59%)</title><rect x="900.8" y="933" width="6.9" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="903.77" y="943.5" ></text>
</g>
<g >
<title>bpf_mtap (77,276 samples, 2.19%)</title><rect x="302.5" y="1045" width="25.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="305.50" y="1055.5" >b..</text>
</g>
<g >
<title>mac_mbuf_init (3,189 samples, 0.09%)</title><rect x="875.5" y="885" width="1.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="878.51" y="895.5" ></text>
</g>
<g >
<title>netisr_select_cpuid (587 samples, 0.02%)</title><rect x="567.3" y="901" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="570.33" y="911.5" ></text>
</g>
<g >
<title>0x292340 (530 samples, 0.02%)</title><rect x="10.1" y="1125" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="13.11" y="1135.5" ></text>
</g>
<g >
<title>in_pcblookup_smr (4,531 samples, 0.13%)</title><rect x="1131.3" y="1093" width="1.5" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1134.26" y="1103.5" ></text>
</g>
<g >
<title>_epoch_exit_preempt (1,077 samples, 0.03%)</title><rect x="301.7" y="1045" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="304.72" y="1055.5" ></text>
</g>
<g >
<title>memcpy_std (3,244 samples, 0.09%)</title><rect x="1174.7" y="1093" width="1.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1177.70" y="1103.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (1,569 samples, 0.04%)</title><rect x="876.6" y="901" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="879.58" y="911.5" ></text>
</g>
<g >
<title>pf_osfp_get (54,383 samples, 1.54%)</title><rect x="890.2" y="965" width="18.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="893.16" y="975.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (1,860,774 samples, 52.81%)</title><rect x="336.9" y="1029" width="623.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="339.92" y="1039.5" >netisr_dispatch_src</text>
</g>
<g >
<title>mac_mbuf_init (5,435 samples, 0.15%)</title><rect x="245.3" y="1109" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="248.26" y="1119.5" ></text>
</g>
<g >
<title>trash_ctor (8,777 samples, 0.25%)</title><rect x="1186.3" y="1029" width="2.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1189.31" y="1039.5" ></text>
</g>
<g >
<title>taskqueue_run_locked (107,683 samples, 3.06%)</title><rect x="1138.3" y="1157" width="36.0" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1141.26" y="1167.5" >tas..</text>
</g>
<g >
<title>uma_zfree_arg (31,947 samples, 0.91%)</title><rect x="661.0" y="709" width="10.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="663.99" y="719.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (1,769 samples, 0.05%)</title><rect x="235.0" y="1093" width="0.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="237.98" y="1103.5" ></text>
</g>
<g >
<title>vdev_rebuild (14,027 samples, 0.40%)</title><rect x="1174.7" y="1109" width="4.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1177.66" y="1119.5" ></text>
</g>
<g >
<title>0x63468 (842 samples, 0.02%)</title><rect x="801.5" y="901" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="804.47" y="911.5" ></text>
</g>
<g >
<title>igb_if_rx_queue_intr_enable (1,581 samples, 0.04%)</title><rect x="972.2" y="1125" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="975.24" y="1135.5" ></text>
</g>
<g >
<title>spa_sync_aux_dev (2,236 samples, 0.06%)</title><rect x="1167.6" y="1141" width="0.7" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1170.59" y="1151.5" ></text>
</g>
<g >
<title>_nvme_qpair_process_completions (605 samples, 0.02%)</title><rect x="1114.0" y="1141" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="1117.04" y="1151.5" ></text>
</g>
<g >
<title>_epoch_enter_preempt (13,622 samples, 0.39%)</title><rect x="13.7" y="1141" width="4.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="16.70" y="1151.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (358 samples, 0.01%)</title><rect x="10.1" y="37" width="0.1" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.12" y="47.5" ></text>
</g>
<g >
<title>m_free (451 samples, 0.01%)</title><rect x="367.2" y="949" width="0.1" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="370.20" y="959.5" ></text>
</g>
<g >
<title>0x322924 (352 samples, 0.01%)</title><rect x="10.3" y="1205" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="13.30" y="1215.5" ></text>
</g>
<g >
<title>_epoch_enter_preempt (758 samples, 0.02%)</title><rect x="684.9" y="805" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="687.86" y="815.5" ></text>
</g>
<g >
<title>0x6eee8 (1,463 samples, 0.04%)</title><rect x="458.9" y="933" width="0.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="461.91" y="943.5" ></text>
</g>
<g >
<title>tcp_lro_low_level_parser (1,712 samples, 0.05%)</title><rect x="970.9" y="1077" width="0.6" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="973.90" y="1087.5" ></text>
</g>
<g >
<title>pf_walk_header6 (2,896 samples, 0.08%)</title><rect x="857.7" y="933" width="1.0" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="860.69" y="943.5" ></text>
</g>
<g >
<title>spa_scan_range (341 samples, 0.01%)</title><rect x="1167.4" y="1013" width="0.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1170.45" y="1023.5" ></text>
</g>
<g >
<title>0x6ef20 (1,436 samples, 0.04%)</title><rect x="461.4" y="933" width="0.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="464.37" y="943.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (969 samples, 0.03%)</title><rect x="49.3" y="1093" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="52.29" y="1103.5" ></text>
</g>
<g >
<title>uma_dbg_free (1,201 samples, 0.03%)</title><rect x="443.3" y="885" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="446.27" y="895.5" ></text>
</g>
<g >
<title>ZSTD_getBlockSize (1,240 samples, 0.04%)</title><rect x="11.0" y="1125" width="0.4" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="13.96" y="1135.5" ></text>
</g>
<g >
<title>__mtx_lock_spin_flags (901 samples, 0.03%)</title><rect x="33.3" y="1093" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="36.32" y="1103.5" ></text>
</g>
<g >
<title>FSE_NCountWriteBound (2,012 samples, 0.06%)</title><rect x="1138.3" y="1141" width="0.6" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="1141.27" y="1151.5" ></text>
</g>
<g >
<title>ip_input (1,710 samples, 0.05%)</title><rect x="968.9" y="997" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="971.86" y="1007.5" ></text>
</g>
<g >
<title>msleep_spin_sbt (295,165 samples, 8.38%)</title><rect x="1013.2" y="1157" width="98.8" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="1016.18" y="1167.5" >msleep_spin..</text>
</g>
<g >
<title>pfr_kstate_counter_add (2,083 samples, 0.06%)</title><rect x="806.2" y="901" width="0.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="809.25" y="911.5" ></text>
</g>
<g >
<title>mb_ctor_mbuf (699 samples, 0.02%)</title><rect x="101.1" y="1077" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="104.07" y="1087.5" ></text>
</g>
<g >
<title>item_dtor (136,127 samples, 3.86%)</title><rect x="378.5" y="885" width="45.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="381.54" y="895.5" >item..</text>
</g>
<g >
<title>igb_isc_txd_encap (34,312 samples, 0.97%)</title><rect x="724.6" y="805" width="11.5" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="727.57" y="815.5" ></text>
</g>
<g >
<title>0x307ec8 (308 samples, 0.01%)</title><rect x="10.3" y="965" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="13.31" y="975.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (485 samples, 0.01%)</title><rect x="889.6" y="933" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="892.61" y="943.5" ></text>
</g>
<g >
<title>0x2fe66c (308 samples, 0.01%)</title><rect x="10.3" y="981" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="13.31" y="991.5" ></text>
</g>
<g >
<title>SipHash_Update (102,567 samples, 2.91%)</title><rect x="486.3" y="949" width="34.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="489.30" y="959.5" >Si..</text>
</g>
<g >
<title>0x258090 (362 samples, 0.01%)</title><rect x="10.1" y="69" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.12" y="79.5" ></text>
</g>
<g >
<title>ndastart (569 samples, 0.02%)</title><rect x="1164.0" y="1045" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1166.95" y="1055.5" ></text>
</g>
<g >
<title>spa_write_cachefile (9,037 samples, 0.26%)</title><rect x="1176.3" y="1061" width="3.0" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1179.32" y="1071.5" ></text>
</g>
<g >
<title>0x634e4 (930 samples, 0.03%)</title><rect x="462.2" y="949" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="465.19" y="959.5" ></text>
</g>
<g >
<title>ithread_loop (62,424 samples, 1.77%)</title><rect x="1112.5" y="1173" width="20.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1115.47" y="1183.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="453" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="463.5" ></text>
</g>
<g >
<title>ip_input (333 samples, 0.01%)</title><rect x="335.3" y="1029" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="338.26" y="1039.5" ></text>
</g>
<g >
<title>in_epoch_verbose (6,102 samples, 0.17%)</title><rect x="341.1" y="1013" width="2.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="344.08" y="1023.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="933" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="943.5" ></text>
</g>
<g >
<title>0x6d424 (927 samples, 0.03%)</title><rect x="445.0" y="949" width="0.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="447.98" y="959.5" ></text>
</g>
<g >
<title>pmap_kextract (7,083 samples, 0.20%)</title><rect x="108.4" y="1061" width="2.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="111.38" y="1071.5" ></text>
</g>
<g >
<title>pf_step_into_translation_anchor (141,724 samples, 4.02%)</title><rect x="909.3" y="965" width="47.5" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="912.33" y="975.5" >pf_s..</text>
</g>
<g >
<title>pfi_cleanup_vnet (615 samples, 0.02%)</title><rect x="864.2" y="933" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="867.15" y="943.5" ></text>
</g>
<g >
<title>bpf_ifnet_chkdir (766 samples, 0.02%)</title><rect x="302.2" y="1045" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="305.24" y="1055.5" ></text>
</g>
<g >
<title>m_tag_delete_chain (649 samples, 0.02%)</title><rect x="671.7" y="741" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="674.69" y="751.5" ></text>
</g>
<g >
<title>PHYS_TO_VM_PAGE (9,450 samples, 0.27%)</title><rect x="105.0" y="1061" width="3.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="108.01" y="1071.5" ></text>
</g>
<g >
<title>witness_checkorder (3,412 samples, 0.10%)</title><rect x="1017.0" y="1125" width="1.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1019.98" y="1135.5" ></text>
</g>
<g >
<title>fib4_lookup (11,711 samples, 0.33%)</title><rect x="546.7" y="933" width="3.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="549.70" y="943.5" ></text>
</g>
<g >
<title>0x1ec82c (530 samples, 0.02%)</title><rect x="10.1" y="821" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="13.11" y="831.5" ></text>
</g>
<g >
<title>iflib_rxeof (2,793,203 samples, 79.27%)</title><rect x="36.9" y="1125" width="935.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="39.85" y="1135.5" >iflib_rxeof</text>
</g>
<g >
<title>SipBuf (43,150 samples, 1.22%)</title><rect x="500.2" y="933" width="14.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="503.16" y="943.5" ></text>
</g>
<g >
<title>pf_walk_header6 (821 samples, 0.02%)</title><rect x="806.0" y="901" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="808.97" y="911.5" ></text>
</g>
<g >
<title>mac_mbuf_init (558 samples, 0.02%)</title><rect x="874.7" y="901" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="877.65" y="911.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_complete (449 samples, 0.01%)</title><rect x="74.4" y="1093" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="77.41" y="1103.5" ></text>
</g>
<g >
<title>0xffff000000a82ad4 (2,272 samples, 0.06%)</title><rect x="576.1" y="917" width="0.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="579.06" y="927.5" ></text>
</g>
<g >
<title>in_cksum_skip (17,375 samples, 0.49%)</title><rect x="567.6" y="933" width="5.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="570.55" y="943.5" ></text>
</g>
<g >
<title>in_epoch_verbose (1,169 samples, 0.03%)</title><rect x="244.5" y="1109" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="247.46" y="1119.5" ></text>
</g>
<g >
<title>pfil_mbuf_in (1,785,499 samples, 50.67%)</title><rect x="361.3" y="997" width="598.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="364.35" y="1007.5" >pfil_mbuf_in</text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="341" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="351.5" ></text>
</g>
<g >
<title>0x6d430 (941 samples, 0.03%)</title><rect x="445.3" y="949" width="0.3" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="448.30" y="959.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="741" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="751.5" ></text>
</g>
<g >
<title>ZSTD_compressBlock_doubleFast (346 samples, 0.01%)</title><rect x="1163.0" y="1093" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1165.99" y="1103.5" ></text>
</g>
<g >
<title>pfr_update_stats (3,584 samples, 0.10%)</title><rect x="958.1" y="965" width="1.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="961.07" y="975.5" ></text>
</g>
<g >
<title>0x654f4 (1,194 samples, 0.03%)</title><rect x="473.5" y="949" width="0.4" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="476.46" y="959.5" ></text>
</g>
<g >
<title>g_disk_done (317 samples, 0.01%)</title><rect x="1114.1" y="1077" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1117.08" y="1087.5" ></text>
</g>
<g >
<title>spa_scan_range (13,744 samples, 0.39%)</title><rect x="1179.5" y="1061" width="4.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1182.52" y="1071.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (363 samples, 0.01%)</title><rect x="10.1" y="85" width="0.1" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.12" y="95.5" ></text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="1045" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="1055.5" ></text>
</g>
<g >
<title>tcp_input (7,397 samples, 0.21%)</title><rect x="1130.8" y="1125" width="2.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1133.82" y="1135.5" ></text>
</g>
<g >
<title>0x2ad558 (639 samples, 0.02%)</title><rect x="10.1" y="1189" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="13.07" y="1199.5" ></text>
</g>
<g >
<title>0x63150 (231,698 samples, 6.58%)</title><rect x="367.1" y="965" width="77.6" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="370.09" y="975.5" >0x63150</text>
</g>
<g >
<title>gtaskqueue_thread_loop (3,286,373 samples, 93.27%)</title><rect x="11.9" y="1173" width="1100.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="14.94" y="1183.5" >gtaskqueue_thread_loop</text>
</g>
<g >
<title>igb_isc_rxd_pkt_get (15,767 samples, 0.45%)</title><rect x="238.8" y="1109" width="5.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="241.84" y="1119.5" ></text>
</g>
<g >
<title>vdev_initialize_thread (9,829 samples, 0.28%)</title><rect x="1186.0" y="1093" width="3.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1189.01" y="1103.5" ></text>
</g>
<g >
<title>_sx_xlock_hard (623 samples, 0.02%)</title><rect x="1162.7" y="1077" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1165.71" y="1087.5" ></text>
</g>
<g >
<title>bpf_filter (31,162 samples, 0.88%)</title><rect x="690.5" y="805" width="10.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="693.54" y="815.5" ></text>
</g>
<g >
<title>trash_ctor (2,270 samples, 0.06%)</title><rect x="1166.2" y="1077" width="0.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1169.23" y="1087.5" ></text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="773" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="783.5" ></text>
</g>
<g >
<title>trash_ctor (22,723 samples, 0.64%)</title><rect x="877.3" y="917" width="7.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="880.28" y="927.5" ></text>
</g>
<g >
<title>m_tag_copy (11,482 samples, 0.33%)</title><rect x="793.1" y="901" width="3.9" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="796.14" y="911.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (1,148 samples, 0.03%)</title><rect x="849.7" y="885" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="852.68" y="895.5" ></text>
</g>
<g >
<title>bus_dmamap_load_mbuf_sg (32,568 samples, 0.92%)</title><rect x="713.7" y="805" width="10.9" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="716.66" y="815.5" ></text>
</g>
<g >
<title>0x258c1c (501 samples, 0.01%)</title><rect x="10.1" y="213" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.12" y="223.5" ></text>
</g>
<g >
<title>ip_fillid (2,142 samples, 0.06%)</title><rect x="575.2" y="933" width="0.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="578.24" y="943.5" ></text>
</g>
<g >
<title>ether_demux (1,882,037 samples, 53.41%)</title><rect x="329.8" y="1045" width="630.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="332.80" y="1055.5" >ether_demux</text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="421" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="431.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (9,916 samples, 0.28%)</title><rect x="231.7" y="1077" width="3.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="234.66" y="1087.5" ></text>
</g>
<g >
<title>nlattr_add_pfr_table (548 samples, 0.02%)</title><rect x="929.4" y="933" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="932.42" y="943.5" ></text>
</g>
<g >
<title>pf_osfp_match (2,872 samples, 0.08%)</title><rect x="908.4" y="965" width="0.9" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="911.37" y="975.5" ></text>
</g>
<g >
<title>spa_condense_indirect_complete_sync (567 samples, 0.02%)</title><rect x="1167.4" y="1077" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1170.37" y="1087.5" ></text>
</g>
<g >
<title>in_epoch_verbose (985 samples, 0.03%)</title><rect x="574.5" y="933" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="577.45" y="943.5" ></text>
</g>
<g >
<title>_epoch_enter_preempt (20,659 samples, 0.59%)</title><rect x="308.0" y="1029" width="6.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="311.02" y="1039.5" ></text>
</g>
<g >
<title>m_tag_copy_chain (12,565 samples, 0.36%)</title><rect x="793.0" y="917" width="4.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="795.98" y="927.5" ></text>
</g>
<g >
<title>memcpy_std (485 samples, 0.01%)</title><rect x="1165.8" y="1109" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1168.82" y="1119.5" ></text>
</g>
<g >
<title>vdev_raidz_map_alloc (577 samples, 0.02%)</title><rect x="1167.1" y="1125" width="0.2" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text x="1170.15" y="1135.5" ></text>
</g>
<g >
<title>in_cksumdata (2,422 samples, 0.07%)</title><rect x="572.6" y="901" width="0.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="575.56" y="911.5" ></text>
</g>
<g >
<title>pfi_cleanup_vnet (3,080 samples, 0.09%)</title><rect x="858.7" y="949" width="1.0" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="861.66" y="959.5" ></text>
</g>
<g >
<title>0x2fd344 (311 samples, 0.01%)</title><rect x="10.3" y="1109" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="13.31" y="1119.5" ></text>
</g>
<g >
<title>ZSTD_compressBlock_lazy_extDict_row (2,332 samples, 0.07%)</title><rect x="10.7" y="1157" width="0.8" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="13.67" y="1167.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (91,131 samples, 2.59%)</title><rect x="102.1" y="1077" width="30.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="105.14" y="1087.5" >um..</text>
</g>
<g >
<title>uma_zalloc_arg (13,266 samples, 0.38%)</title><rect x="845.6" y="901" width="4.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="848.62" y="911.5" ></text>
</g>
<g >
<title>witness_checkorder (1,984 samples, 0.06%)</title><rect x="919.0" y="933" width="0.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="922.00" y="943.5" ></text>
</g>
<g >
<title>__mtx_lock_spin_flags (722 samples, 0.02%)</title><rect x="12.0" y="1157" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="15.04" y="1167.5" ></text>
</g>
<g >
<title>0x6dba8 (2,293 samples, 0.07%)</title><rect x="447.4" y="949" width="0.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="450.39" y="959.5" ></text>
</g>
<g >
<title>pmap_kextract (391 samples, 0.01%)</title><rect x="724.3" y="773" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="727.32" y="783.5" ></text>
</g>
<g >
<title>_ck_epoch_delref (1,054 samples, 0.03%)</title><rect x="307.7" y="1029" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="310.66" y="1039.5" ></text>
</g>
<g >
<title>0x2580f0 (530 samples, 0.02%)</title><rect x="10.1" y="869" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="13.11" y="879.5" ></text>
</g>
<g >
<title>ip_output_send (316 samples, 0.01%)</title><rect x="807.7" y="949" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="810.67" y="959.5" ></text>
</g>
<g >
<title>zfs_blkptr_verify (373 samples, 0.01%)</title><rect x="1189.7" y="1093" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1192.71" y="1103.5" ></text>
</g>
<g >
<title>ip_output_send (642,924 samples, 18.25%)</title><rect x="576.0" y="933" width="215.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="578.96" y="943.5" >ip_output_send</text>
</g>
<g >
<title>0x47a48 (1,891 samples, 0.05%)</title><rect x="928.8" y="933" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="931.79" y="943.5" ></text>
</g>
<g >
<title>ip_input (875 samples, 0.02%)</title><rect x="49.3" y="1029" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="52.32" y="1039.5" ></text>
</g>
<g >
<title>in_epoch_verbose (5,033 samples, 0.14%)</title><rect x="359.7" y="997" width="1.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="362.66" y="1007.5" ></text>
</g>
<g >
<title>mac_mbuf_init (329 samples, 0.01%)</title><rect x="973.0" y="1125" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="975.97" y="1135.5" ></text>
</g>
<g >
<title>iflib_fl_refill (554,767 samples, 15.74%)</title><rect x="49.8" y="1109" width="185.8" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="52.79" y="1119.5" >iflib_fl_refill</text>
</g>
<g >
<title>pfr_update_stats (379 samples, 0.01%)</title><rect x="807.5" y="933" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="810.52" y="943.5" ></text>
</g>
<g >
<title>pmap_kextract (1,081 samples, 0.03%)</title><rect x="370.3" y="901" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="373.34" y="911.5" ></text>
</g>
<g >
<title>0x654e8 (1,327 samples, 0.04%)</title><rect x="452.1" y="965" width="0.5" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="455.12" y="975.5" ></text>
</g>
<g >
<title>vn_write (46,337 samples, 1.32%)</title><rect x="1174.4" y="1157" width="15.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1177.37" y="1167.5" ></text>
</g>
<g >
<title>in_epoch (755 samples, 0.02%)</title><rect x="284.3" y="1077" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="287.25" y="1087.5" ></text>
</g>
<g >
<title>mb_free_ext (225,536 samples, 6.40%)</title><rect x="368.1" y="917" width="75.6" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="371.15" y="927.5" >mb_free_..</text>
</g>
<g >
<title>in_cksum_skip_partial (782 samples, 0.02%)</title><rect x="573.9" y="885" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="576.91" y="895.5" ></text>
</g>
<g >
<title>m_adj (4,366 samples, 0.12%)</title><rect x="335.4" y="1029" width="1.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="338.38" y="1039.5" ></text>
</g>
<g >
<title>FSE_compress_usingCTable_generic (585 samples, 0.02%)</title><rect x="1146.3" y="1141" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1149.30" y="1151.5" ></text>
</g>
<g >
<title>mb_free_ext (1,081 samples, 0.03%)</title><rect x="444.3" y="933" width="0.4" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="447.32" y="943.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (1,066 samples, 0.03%)</title><rect x="968.4" y="1093" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="971.42" y="1103.5" ></text>
</g>
<g >
<title>uma_zfree_arg (2,988 samples, 0.08%)</title><rect x="552.1" y="885" width="1.0" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="555.12" y="895.5" ></text>
</g>
<g >
<title>pmap_kextract (823 samples, 0.02%)</title><rect x="680.9" y="757" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="683.86" y="767.5" ></text>
</g>
<g >
<title>if_inc_counter (805 samples, 0.02%)</title><rect x="550.6" y="933" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="553.62" y="943.5" ></text>
</g>
<g >
<title>in_epoch (693 samples, 0.02%)</title><rect x="789.4" y="901" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="792.40" y="911.5" ></text>
</g>
<g >
<title>uma_zfree_arg (525 samples, 0.01%)</title><rect x="1146.3" y="1109" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1149.31" y="1119.5" ></text>
</g>
<g >
<title>FSE_writeNCount (11,505 samples, 0.33%)</title><rect x="1146.6" y="1141" width="3.8" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1149.56" y="1151.5" ></text>
</g>
<g >
<title>0x18e804 (501 samples, 0.01%)</title><rect x="10.1" y="229" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.12" y="239.5" ></text>
</g>
<g >
<title>pf_walk_header6 (936 samples, 0.03%)</title><rect x="956.1" y="949" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="959.05" y="959.5" ></text>
</g>
<g >
<title>igb_isc_txd_credits_update (28,818 samples, 0.82%)</title><rect x="778.9" y="805" width="9.7" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="781.94" y="815.5" ></text>
</g>
<g >
<title>m_dup (19,543 samples, 0.55%)</title><rect x="791.6" y="933" width="6.5" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="794.59" y="943.5" ></text>
</g>
<g >
<title>0x2c1860 (309 samples, 0.01%)</title><rect x="10.3" y="1013" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="13.31" y="1023.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="1061" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="1071.5" ></text>
</g>
<g >
<title>pfr_kstate_counter_add (2,048 samples, 0.06%)</title><rect x="957.4" y="965" width="0.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="960.38" y="975.5" ></text>
</g>
<g >
<title>0x18e804 (530 samples, 0.02%)</title><rect x="10.1" y="661" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.11" y="671.5" ></text>
</g>
<g >
<title>mtrash_dtor (481 samples, 0.01%)</title><rect x="1146.3" y="1077" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1149.32" y="1087.5" ></text>
</g>
<g >
<title>rxd_frag_to_sd (593 samples, 0.02%)</title><rect x="982.5" y="1125" width="0.2" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="985.55" y="1135.5" ></text>
</g>
<g >
<title>iflib_txd_db_check (119,997 samples, 3.41%)</title><rect x="736.1" y="821" width="40.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="739.06" y="831.5" >ifl..</text>
</g>
<g >
<title>uma_zfree_arg (1,931 samples, 0.05%)</title><rect x="443.7" y="917" width="0.6" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="446.67" y="927.5" ></text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="725" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="735.5" ></text>
</g>
<g >
<title>fork_exit (3,522,056 samples, 99.95%)</title><rect x="10.4" y="1189" width="1179.5" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="13.44" y="1199.5" >fork_exit</text>
</g>
<g >
<title>0x654e0 (403 samples, 0.01%)</title><rect x="451.9" y="965" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="454.92" y="975.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="709" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="719.5" ></text>
</g>
<g >
<title>in_epoch_verbose (2,933 samples, 0.08%)</title><rect x="799.6" y="917" width="1.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="802.62" y="927.5" ></text>
</g>
<g >
<title>pfr_update_stats (1,710 samples, 0.05%)</title><rect x="806.9" y="901" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="809.94" y="911.5" ></text>
</g>
<g >
<title>pfil_mbuf_out (1,084 samples, 0.03%)</title><rect x="889.8" y="949" width="0.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="892.77" y="959.5" ></text>
</g>
<g >
<title>0x2c3d30 (308 samples, 0.01%)</title><rect x="10.3" y="997" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="13.31" y="1007.5" ></text>
</g>
<g >
<title>vdev_label_init (907 samples, 0.03%)</title><rect x="1175.8" y="1061" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1178.82" y="1071.5" ></text>
</g>
<g >
<title>pfr_update_stats (20,408 samples, 0.58%)</title><rect x="800.7" y="917" width="6.8" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="803.68" y="927.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="629" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="639.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (646 samples, 0.02%)</title><rect x="1133.9" y="1157" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1136.89" y="1167.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (618 samples, 0.02%)</title><rect x="796.7" y="869" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="799.70" y="879.5" ></text>
</g>
<g >
<title>SipHash_InitX (2,524 samples, 0.07%)</title><rect x="484.1" y="949" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="487.06" y="959.5" ></text>
</g>
<g >
<title>arpresolve (28,262 samples, 0.80%)</title><rect x="588.4" y="901" width="9.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="591.38" y="911.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (485 samples, 0.01%)</title><rect x="845.4" y="885" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="848.38" y="895.5" ></text>
</g>
<g >
<title>0x6ef00 (358 samples, 0.01%)</title><rect x="461.1" y="933" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="464.11" y="943.5" ></text>
</g>
<g >
<title>_rm_runlock_debug (2,206 samples, 0.06%)</title><rect x="908.5" y="949" width="0.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="911.53" y="959.5" ></text>
</g>
<g >
<title>bus_dmamap_load (24,522 samples, 0.70%)</title><rect x="78.2" y="1093" width="8.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="81.19" y="1103.5" ></text>
</g>
<g >
<title>item_dtor (31,145 samples, 0.88%)</title><rect x="661.2" y="693" width="10.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="664.22" y="703.5" ></text>
</g>
<g >
<title>m_freem (1,529 samples, 0.04%)</title><rect x="1132.8" y="1093" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1135.78" y="1103.5" ></text>
</g>
<g >
<title>pf_create_state (595 samples, 0.02%)</title><rect x="813.4" y="949" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="816.37" y="959.5" ></text>
</g>
<g >
<title>pfi_detach_group_event (2,224 samples, 0.06%)</title><rect x="859.7" y="949" width="0.7" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="862.69" y="959.5" ></text>
</g>
<g >
<title>memcpy_std (361 samples, 0.01%)</title><rect x="797.1" y="901" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="800.07" y="911.5" ></text>
</g>
<g >
<title>in_lltable_lookup (299 samples, 0.01%)</title><rect x="789.6" y="901" width="0.1" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="792.64" y="911.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (658 samples, 0.02%)</title><rect x="884.9" y="917" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="887.89" y="927.5" ></text>
</g>
<g >
<title>nvme_qpair_msi_handler (612 samples, 0.02%)</title><rect x="1114.0" y="1157" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="1117.04" y="1167.5" ></text>
</g>
<g >
<title>if_getsoftc (822 samples, 0.02%)</title><rect x="613.0" y="869" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="615.95" y="879.5" ></text>
</g>
<g >
<title>item_ctor (133,997 samples, 3.80%)</title><rect x="87.8" y="1093" width="44.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="90.79" y="1103.5" >item..</text>
</g>
<g >
<title>ndastrategy (1,244 samples, 0.04%)</title><rect x="1163.7" y="1077" width="0.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1166.73" y="1087.5" ></text>
</g>
<g >
<title>PHYS_TO_VM_PAGE (1,965 samples, 0.06%)</title><rect x="416.1" y="837" width="0.7" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="419.11" y="847.5" ></text>
</g>
<g >
<title>zcp_get_prop (533 samples, 0.02%)</title><rect x="1189.3" y="1093" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1192.34" y="1103.5" ></text>
</g>
<g >
<title>0x6dbd8 (885 samples, 0.03%)</title><rect x="449.2" y="949" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="452.23" y="959.5" ></text>
</g>
<g >
<title>e1000_wr32 (6,697 samples, 0.19%)</title><rect x="774.0" y="789" width="2.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="777.00" y="799.5" ></text>
</g>
<g >
<title>vm_phys_paddr_to_vm_page (2,359 samples, 0.07%)</title><rect x="795.4" y="837" width="0.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="798.38" y="847.5" ></text>
</g>
<g >
<title>pf_krule_global_RB_NEXT (3,676 samples, 0.10%)</title><rect x="947.7" y="949" width="1.3" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="950.75" y="959.5" ></text>
</g>
<g >
<title>pf_walk_header6 (517 samples, 0.01%)</title><rect x="957.0" y="965" width="0.1" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="959.96" y="975.5" ></text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="437" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="447.5" ></text>
</g>
<g >
<title>memset_std (15,037 samples, 0.43%)</title><rect x="462.7" y="949" width="5.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="465.66" y="959.5" ></text>
</g>
<g >
<title>_epoch_exit_preempt (16,223 samples, 0.46%)</title><rect x="685.1" y="805" width="5.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="688.11" y="815.5" ></text>
</g>
<g >
<title>spinlock_exit (386 samples, 0.01%)</title><rect x="1133.4" y="1109" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1136.38" y="1119.5" ></text>
</g>
<g >
<title>0x2c2668 (311 samples, 0.01%)</title><rect x="10.3" y="1157" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="13.31" y="1167.5" ></text>
</g>
<g >
<title>_rxq_refill_cb (16,324 samples, 0.46%)</title><rect x="79.4" y="1077" width="5.5" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="82.45" y="1087.5" ></text>
</g>
<g >
<title>space_map_write (3,956 samples, 0.11%)</title><rect x="1164.4" y="1125" width="1.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1167.43" y="1135.5" ></text>
</g>
<g >
<title>0x258c1c (530 samples, 0.02%)</title><rect x="10.1" y="485" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.11" y="495.5" ></text>
</g>
<g >
<title>0x6dca0 (5,741 samples, 0.16%)</title><rect x="905.4" y="885" width="2.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="908.45" y="895.5" ></text>
</g>
<g >
<title>swi_sched (31,631 samples, 0.90%)</title><rect x="556.7" y="885" width="10.6" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="559.73" y="895.5" ></text>
</g>
<g >
<title>0x6347c (964 samples, 0.03%)</title><rect x="801.9" y="901" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="804.85" y="911.5" ></text>
</g>
<g >
<title>0x2924f0 (530 samples, 0.02%)</title><rect x="10.1" y="1141" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="13.11" y="1151.5" ></text>
</g>
<g >
<title>uma_dbg_free (986 samples, 0.03%)</title><rect x="552.7" y="853" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="555.65" y="863.5" ></text>
</g>
<g >
<title>0x258090 (495 samples, 0.01%)</title><rect x="10.1" y="133" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.12" y="143.5" ></text>
</g>
<g >
<title>0x63484 (486 samples, 0.01%)</title><rect x="802.2" y="901" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="805.18" y="911.5" ></text>
</g>
<g >
<title>pf_walk_header6 (2,034 samples, 0.06%)</title><rect x="805.3" y="885" width="0.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="808.29" y="895.5" ></text>
</g>
<g >
<title>in_epoch (903 samples, 0.03%)</title><rect x="960.1" y="1045" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="963.05" y="1055.5" ></text>
</g>
<g >
<title>0x301cd0 (308 samples, 0.01%)</title><rect x="10.3" y="949" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="13.31" y="959.5" ></text>
</g>
<g >
<title>0x18dea8 (530 samples, 0.02%)</title><rect x="10.1" y="789" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="13.11" y="799.5" ></text>
</g>
<g >
<title>rxd_frag_to_sd (63,782 samples, 1.81%)</title><rect x="247.1" y="1109" width="21.3" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="250.08" y="1119.5" >r..</text>
</g>
<g >
<title>uma_zalloc_arg (12,845 samples, 0.36%)</title><rect x="885.1" y="917" width="4.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="888.11" y="927.5" ></text>
</g>
<g >
<title>0x76a84 (1,359 samples, 0.04%)</title><rect x="893.7" y="949" width="0.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="896.74" y="959.5" ></text>
</g>
<g >
<title>tcp_input_with_port (7,345 samples, 0.21%)</title><rect x="1130.8" y="1109" width="2.5" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1133.83" y="1119.5" ></text>
</g>
<g >
<title>0x2bfaa0 (309 samples, 0.01%)</title><rect x="10.3" y="1029" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="13.31" y="1039.5" ></text>
</g>
<g >
<title>0x6eef8 (729 samples, 0.02%)</title><rect x="460.9" y="933" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="463.85" y="943.5" ></text>
</g>
<g >
<title>_epoch_exit_preempt (325 samples, 0.01%)</title><rect x="634.3" y="821" width="0.1" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="637.27" y="831.5" ></text>
</g>
<g >
<title>0x6dba4 (679 samples, 0.02%)</title><rect x="447.2" y="949" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="450.16" y="959.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (701 samples, 0.02%)</title><rect x="850.1" y="901" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="853.06" y="911.5" ></text>
</g>
<g >
<title>m_pkthdr_init (409 samples, 0.01%)</title><rect x="875.4" y="885" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="878.37" y="895.5" ></text>
</g>
<g >
<title>if_getcapenable (1,071 samples, 0.03%)</title><rect x="987.2" y="1125" width="0.4" height="15.0" fill="rgb(233,128,30)" rx="2" ry="2" />
<text x="990.22" y="1135.5" ></text>
</g>
<g >
<title>pf_walk_option (427 samples, 0.01%)</title><rect x="900.6" y="933" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="903.63" y="943.5" ></text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="997" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="1007.5" ></text>
</g>
<g >
<title>0x25010c (530 samples, 0.02%)</title><rect x="10.1" y="1109" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="13.11" y="1119.5" ></text>
</g>
<g >
<title>in_epoch_verbose (950 samples, 0.03%)</title><rect x="967.8" y="1093" width="0.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="970.78" y="1103.5" ></text>
</g>
<g >
<title>process_error_list (3,198 samples, 0.09%)</title><rect x="1135.1" y="1109" width="1.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1138.08" y="1119.5" ></text>
</g>
<g >
<title>pf_syncookie_rotate (704 samples, 0.02%)</title><rect x="470.8" y="949" width="0.3" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="473.83" y="959.5" ></text>
</g>
<g >
<title>_rm_rlock_debug (937 samples, 0.03%)</title><rect x="452.6" y="965" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="455.64" y="975.5" ></text>
</g>
<g >
<title>trash_ctor (13,399 samples, 0.38%)</title><rect x="1168.4" y="1125" width="4.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1171.40" y="1135.5" ></text>
</g>
<g >
<title>ether_bpf_mtap_if (4,259 samples, 0.12%)</title><rect x="328.4" y="1045" width="1.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="331.37" y="1055.5" ></text>
</g>
<g >
<title>in_epoch (476 samples, 0.01%)</title><rect x="816.5" y="933" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="819.52" y="943.5" ></text>
</g>
<g >
<title>spa_write_cachefile (9,052 samples, 0.26%)</title><rect x="1186.2" y="1061" width="3.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1189.24" y="1071.5" ></text>
</g>
<g >
<title>igb_isc_txd_flush (29,469 samples, 0.84%)</title><rect x="766.4" y="805" width="9.8" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="769.38" y="815.5" ></text>
</g>
<g >
<title>0x6dc48 (338 samples, 0.01%)</title><rect x="902.7" y="917" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="905.67" y="927.5" ></text>
</g>
<g >
<title>in_epoch (412 samples, 0.01%)</title><rect x="592.9" y="885" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="595.88" y="895.5" ></text>
</g>
<g >
<title>in_pcblookup_lbgroup (1,778 samples, 0.05%)</title><rect x="1132.2" y="1077" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1135.19" y="1087.5" ></text>
</g>
<g >
<title>process_error_log (349 samples, 0.01%)</title><rect x="1167.4" y="1045" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1170.44" y="1055.5" ></text>
</g>
<g >
<title>_iflib_completed_tx_reclaim (140,686 samples, 3.99%)</title><rect x="634.4" y="821" width="47.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="637.38" y="831.5" >_ifl..</text>
</g>
<g >
<title>ether_input (1,917 samples, 0.05%)</title><rect x="968.8" y="1077" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="971.79" y="1087.5" ></text>
</g>
<g >
<title>spa_vdev_indirect_mark_obsolete (9,495 samples, 0.27%)</title><rect x="1135.0" y="1173" width="3.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1138.00" y="1183.5" ></text>
</g>
<g >
<title>pf_walk_header6 (926 samples, 0.03%)</title><rect x="445.0" y="933" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="447.98" y="943.5" ></text>
</g>
<g >
<title>igb_isc_rxd_refill (566 samples, 0.02%)</title><rect x="244.1" y="1109" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="247.12" y="1119.5" ></text>
</g>
<g >
<title>0xffff000000a82abc (720 samples, 0.02%)</title><rect x="954.1" y="917" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="957.14" y="927.5" ></text>
</g>
<g >
<title>in_epoch_verbose (1,334 samples, 0.04%)</title><rect x="820.6" y="917" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="823.64" y="927.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (3,144 samples, 0.09%)</title><rect x="1125.2" y="1141" width="1.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1128.22" y="1151.5" ></text>
</g>
<g >
<title>0x2fd178 (311 samples, 0.01%)</title><rect x="10.3" y="1125" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="1135.5" ></text>
</g>
<g >
<title>0x2d6234 (501 samples, 0.01%)</title><rect x="10.1" y="245" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="13.12" y="255.5" ></text>
</g>
<g >
<title>ether_output_frame (1,741 samples, 0.05%)</title><rect x="790.1" y="917" width="0.6" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="793.12" y="927.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (433 samples, 0.01%)</title><rect x="961.6" y="1045" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="964.55" y="1055.5" ></text>
</g>
<g >
<title>ZSTD_initCStream_srcSize (2,021 samples, 0.06%)</title><rect x="1162.6" y="1141" width="0.6" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1165.55" y="1151.5" ></text>
</g>
<g >
<title>item_ctor (374 samples, 0.01%)</title><rect x="1166.1" y="1077" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1169.11" y="1087.5" ></text>
</g>
<g >
<title>xpt_done_direct (535 samples, 0.02%)</title><rect x="1114.1" y="1109" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1117.07" y="1119.5" ></text>
</g>
<g >
<title>drain_ring_lockless (504,099 samples, 14.31%)</title><rect x="620.4" y="853" width="168.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="623.39" y="863.5" >drain_ring_lockless</text>
</g>
<g >
<title>0x6eef4 (418 samples, 0.01%)</title><rect x="460.7" y="933" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="463.71" y="943.5" ></text>
</g>
<g >
<title>SipHash_SetKey (4,186 samples, 0.12%)</title><rect x="484.9" y="949" width="1.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="487.90" y="959.5" ></text>
</g>
<g >
<title>0x6dbac (1,887 samples, 0.05%)</title><rect x="448.2" y="949" width="0.6" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text x="451.16" y="959.5" ></text>
</g>
<g >
<title>vdev_config_generate (14,054 samples, 0.40%)</title><rect x="1179.4" y="1093" width="4.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="1182.42" y="1103.5" ></text>
</g>
<g >
<title>pf_src_connlimit (651 samples, 0.02%)</title><rect x="1133.5" y="1157" width="0.3" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1136.54" y="1167.5" ></text>
</g>
<g >
<title>_bus_dmamap_addsegs (1,190 samples, 0.03%)</title><rect x="79.1" y="1077" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="82.05" y="1087.5" ></text>
</g>
<g >
<title>pf_tcp_track_full (1,464 samples, 0.04%)</title><rect x="1133.4" y="1173" width="0.5" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1136.38" y="1183.5" ></text>
</g>
<g >
<title>in_realm (581 samples, 0.02%)</title><rect x="416.6" y="821" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="419.57" y="831.5" ></text>
</g>
<g >
<title>0x6dc98 (1,032 samples, 0.03%)</title><rect x="905.1" y="885" width="0.3" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="908.10" y="895.5" ></text>
</g>
<g >
<title>FSE_buildCTable_wksp (21,951 samples, 0.62%)</title><rect x="1138.9" y="1141" width="7.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1141.95" y="1151.5" ></text>
</g>
<g >
<title>in_cksum_skip (1,919 samples, 0.05%)</title><rect x="573.6" y="917" width="0.7" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="576.65" y="927.5" ></text>
</g>
<g >
<title>0x18e8b4 (518 samples, 0.01%)</title><rect x="10.1" y="293" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="303.5" ></text>
</g>
<g >
<title>pf_map_addr (10,789 samples, 0.31%)</title><rect x="952.3" y="933" width="3.6" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="955.28" y="943.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (10,530 samples, 0.30%)</title><rect x="74.7" y="1093" width="3.5" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="77.66" y="1103.5" ></text>
</g>
<g >
<title>igb_if_tx_queue_intr_enable (2,665 samples, 0.08%)</title><rect x="988.9" y="1125" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="991.88" y="1135.5" ></text>
</g>
<g >
<title>memcpy_std (1,667 samples, 0.05%)</title><rect x="790.7" y="917" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="793.70" y="927.5" ></text>
</g>
<g >
<title>0x2fe66c (311 samples, 0.01%)</title><rect x="10.3" y="1093" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="13.31" y="1103.5" ></text>
</g>
<g >
<title>item_ctor (1,641 samples, 0.05%)</title><rect x="1145.7" y="1109" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1148.74" y="1119.5" ></text>
</g>
<g >
<title>_libmd_SHA256_Transform (1,071 samples, 0.03%)</title><rect x="1134.6" y="1125" width="0.3" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="1137.57" y="1135.5" ></text>
</g>
<g >
<title>0x6ef1c (315 samples, 0.01%)</title><rect x="461.3" y="933" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="464.27" y="943.5" ></text>
</g>
<g >
<title>m_free (1,527 samples, 0.04%)</title><rect x="1132.8" y="1077" width="0.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1135.78" y="1087.5" ></text>
</g>
<g >
<title>_ck_epoch_addref (953 samples, 0.03%)</title><rect x="17.9" y="1125" width="0.4" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="20.94" y="1135.5" ></text>
</g>
<g >
<title>0x31ecc8 (345 samples, 0.01%)</title><rect x="10.3" y="1189" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="13.30" y="1199.5" ></text>
</g>
<g >
<title>pfil_mbuf_in (1,100 samples, 0.03%)</title><rect x="968.9" y="981" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="971.91" y="991.5" ></text>
</g>
<g >
<title>0x634d4 (10,724 samples, 0.30%)</title><rect x="458.5" y="949" width="3.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="461.50" y="959.5" ></text>
</g>
<g >
<title>bpf_filter (405 samples, 0.01%)</title><rect x="682.7" y="821" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="685.69" y="831.5" ></text>
</g>
<g >
<title>_task_fn_tx (20,558 samples, 0.58%)</title><rect x="982.9" y="1141" width="6.9" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="985.89" y="1151.5" ></text>
</g>
<g >
<title>spinlock_exit (147,030 samples, 4.17%)</title><rect x="1062.1" y="1141" width="49.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1065.10" y="1151.5" >spin..</text>
</g>
<g >
<title>_ck_epoch_addref (342 samples, 0.01%)</title><rect x="307.5" y="1029" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="310.55" y="1039.5" ></text>
</g>
<g >
<title>SipBuf (4,133 samples, 0.12%)</title><rect x="474.3" y="949" width="1.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="477.25" y="959.5" ></text>
</g>
<g >
<title>spa_condense_indirect_complete_sync (9,031 samples, 0.26%)</title><rect x="1135.1" y="1141" width="3.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1138.06" y="1151.5" ></text>
</g>
<g >
<title>0x635bc (864 samples, 0.02%)</title><rect x="911.6" y="949" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="914.56" y="959.5" ></text>
</g>
<g >
<title>0x307ec8 (311 samples, 0.01%)</title><rect x="10.3" y="1077" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="13.31" y="1087.5" ></text>
</g>
<g >
<title>pf_nvuint64 (299 samples, 0.01%)</title><rect x="956.0" y="949" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="958.95" y="959.5" ></text>
</g>
<g >
<title>item_ctor (31,216 samples, 0.89%)</title><rect x="866.6" y="917" width="10.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="869.65" y="927.5" ></text>
</g>
<g >
<title>spa_state_to_name (1,503 samples, 0.04%)</title><rect x="1167.1" y="1141" width="0.5" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="1170.08" y="1151.5" ></text>
</g>
<g >
<title>in_cksum_skip_partial (1,934 samples, 0.05%)</title><rect x="568.6" y="917" width="0.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="571.62" y="927.5" ></text>
</g>
<g >
<title>netisr_dispatch (967 samples, 0.03%)</title><rect x="968.1" y="1093" width="0.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="971.10" y="1103.5" ></text>
</g>
<g >
<title>spa_scan_range (5,438 samples, 0.15%)</title><rect x="1136.2" y="1077" width="1.8" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1139.20" y="1087.5" ></text>
</g>
<g >
<title>witness_checkorder (774 samples, 0.02%)</title><rect x="1111.3" y="1141" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1114.34" y="1151.5" ></text>
</g>
<g >
<title>__mtx_lock_spin_flags (10,716 samples, 0.30%)</title><rect x="1014.5" y="1141" width="3.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1017.53" y="1151.5" ></text>
</g>
<g >
<title>pf_map_addr (5,902 samples, 0.17%)</title><rect x="813.6" y="949" width="1.9" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="816.57" y="959.5" ></text>
</g>
<g >
<title>0x18e09c (530 samples, 0.02%)</title><rect x="10.1" y="853" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="13.11" y="863.5" ></text>
</g>
<g >
<title>pfi_change_group_event (24,505 samples, 0.70%)</title><rect x="850.4" y="949" width="8.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="853.45" y="959.5" ></text>
</g>
<g >
<title>0x6dbc0 (436 samples, 0.01%)</title><rect x="448.8" y="949" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="451.79" y="959.5" ></text>
</g>
<g >
<title>0x635fc (703 samples, 0.02%)</title><rect x="912.3" y="949" width="0.3" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="915.34" y="959.5" ></text>
</g>
<g >
<title>ZSTD_estimateCCtxSize_usingCParams (334 samples, 0.01%)</title><rect x="10.7" y="1125" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="13.71" y="1135.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (899 samples, 0.03%)</title><rect x="49.3" y="1045" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="52.31" y="1055.5" ></text>
</g>
<g >
<title>nlattr_add_pfr_table (425 samples, 0.01%)</title><rect x="934.0" y="917" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="936.99" y="927.5" ></text>
</g>
<g >
<title>0x301cd0 (311 samples, 0.01%)</title><rect x="10.3" y="1061" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="13.31" y="1071.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (1,160 samples, 0.03%)</title><rect x="778.5" y="805" width="0.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="781.55" y="815.5" ></text>
</g>
<g >
<title>lock_delay (610 samples, 0.02%)</title><rect x="1162.7" y="1061" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1165.72" y="1071.5" ></text>
</g>
<g >
<title>_epoch_exit_preempt (20,724 samples, 0.59%)</title><rect x="314.9" y="1029" width="7.0" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="317.93" y="1039.5" ></text>
</g>
<g >
<title>0x2c218c (311 samples, 0.01%)</title><rect x="10.3" y="1141" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="13.31" y="1151.5" ></text>
</g>
<g >
<title>igb_isc_txd_credits_update (1,190 samples, 0.03%)</title><rect x="788.6" y="821" width="0.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="791.59" y="831.5" ></text>
</g>
<g >
<title>metaslab_group_passivate (1,762 samples, 0.05%)</title><rect x="1163.6" y="1141" width="0.6" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1166.63" y="1151.5" ></text>
</g>
<g >
<title>spa_scan_range (3,943 samples, 0.11%)</title><rect x="1164.4" y="1109" width="1.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1167.44" y="1119.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (598 samples, 0.02%)</title><rect x="889.4" y="917" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="892.41" y="927.5" ></text>
</g>
<g >
<title>uma_dbg_free (130,724 samples, 3.71%)</title><rect x="379.7" y="869" width="43.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="382.74" y="879.5" >uma_..</text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="1077" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="1087.5" ></text>
</g>
<g >
<title>iflib_if_transmit (497 samples, 0.01%)</title><rect x="789.2" y="901" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="792.23" y="911.5" ></text>
</g>
<g >
<title>0x63608 (732 samples, 0.02%)</title><rect x="912.6" y="949" width="0.3" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" />
<text x="915.64" y="959.5" ></text>
</g>
<g >
<title>0x63470 (1,253 samples, 0.04%)</title><rect x="450.0" y="965" width="0.4" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="453.01" y="975.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (4,041 samples, 0.11%)</title><rect x="554.0" y="885" width="1.3" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="556.97" y="895.5" ></text>
</g>
<g >
<title>pf_create_state (72,261 samples, 2.05%)</title><rect x="826.3" y="933" width="24.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="829.25" y="943.5" >p..</text>
</g>
<g >
<title>bpf_mtap (54,127 samples, 1.54%)</title><rect x="682.9" y="821" width="18.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="685.86" y="831.5" ></text>
</g>
<g >
<title>random_kthread (3,297 samples, 0.09%)</title><rect x="1133.9" y="1173" width="1.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1136.88" y="1183.5" ></text>
</g>
<g >
<title>e1000_wr32 (1,159 samples, 0.03%)</title><rect x="86.8" y="1077" width="0.4" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="89.79" y="1087.5" ></text>
</g>
<g >
<title>sleepq_lock (487 samples, 0.01%)</title><rect x="1112.0" y="1157" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1115.03" y="1167.5" ></text>
</g>
<g >
<title>0x6eef0 (3,938 samples, 0.11%)</title><rect x="459.4" y="933" width="1.3" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="462.40" y="943.5" ></text>
</g>
<g >
<title>in_cksum_skip_partial (3,479 samples, 0.10%)</title><rect x="571.4" y="901" width="1.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="574.40" y="911.5" ></text>
</g>
<g >
<title>pf_osfp_fingerprint_hdr (1,248,136 samples, 35.42%)</title><rect x="472.2" y="965" width="417.9" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="475.16" y="975.5" >pf_osfp_fingerprint_hdr</text>
</g>
<g >
<title>m_freem (65,457 samples, 1.86%)</title><rect x="659.6" y="805" width="21.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="662.57" y="815.5" >m..</text>
</g>
<g >
<title>pf_create_state (3,938 samples, 0.11%)</title><rect x="459.4" y="917" width="1.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="462.40" y="927.5" ></text>
</g>
<g >
<title>uma_zfree_arg (217,062 samples, 6.16%)</title><rect x="371.0" y="901" width="72.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="373.99" y="911.5" >uma_zfre..</text>
</g>
<g >
<title>netisr_queue_workstream (2,688 samples, 0.08%)</title><rect x="555.8" y="885" width="0.9" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="558.82" y="895.5" ></text>
</g>
<g >
<title>mb_ctor_clust (2,332 samples, 0.07%)</title><rect x="132.7" y="1093" width="0.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="135.66" y="1103.5" ></text>
</g>
<g >
<title>0x258090 (518 samples, 0.01%)</title><rect x="10.1" y="261" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="271.5" ></text>
</g>
<g >
<title>in_localip (13,168 samples, 0.37%)</title><rect x="816.7" y="933" width="4.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="819.68" y="943.5" ></text>
</g>
<g >
<title>0x258c1c (530 samples, 0.02%)</title><rect x="10.1" y="645" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.11" y="655.5" ></text>
</g>
<g >
<title>pf_synflood_check (1,113 samples, 0.03%)</title><rect x="471.1" y="949" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="474.07" y="959.5" ></text>
</g>
<g >
<title>pmap_kextract (2,514 samples, 0.07%)</title><rect x="101.3" y="1077" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="104.30" y="1087.5" ></text>
</g>
<g >
<title>pmap_kextract (455 samples, 0.01%)</title><rect x="406.3" y="853" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="409.28" y="863.5" ></text>
</g>
<g >
<title>ether_output (304 samples, 0.01%)</title><rect x="546.6" y="933" width="0.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="549.60" y="943.5" ></text>
</g>
<g >
<title>ether_nh_input (1,995,337 samples, 56.63%)</title><rect x="293.5" y="1061" width="668.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="296.50" y="1071.5" >ether_nh_input</text>
</g>
<g >
<title>pfi_detach_ifnet_event (7,852 samples, 0.22%)</title><rect x="860.4" y="949" width="2.7" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="863.43" y="959.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (21,149 samples, 0.60%)</title><rect x="706.6" y="805" width="7.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="709.58" y="815.5" ></text>
</g>
<g >
<title>spa_sync (3,738 samples, 0.11%)</title><rect x="1172.9" y="1125" width="1.3" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="1175.91" y="1135.5" ></text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="597" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="607.5" ></text>
</g>
<g >
<title>spinlock_enter (463 samples, 0.01%)</title><rect x="13.2" y="1125" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="16.18" y="1135.5" ></text>
</g>
<g >
<title>in_epoch (466 samples, 0.01%)</title><rect x="244.3" y="1109" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="247.31" y="1119.5" ></text>
</g>
<g >
<title>pf_osfp_fingerprint (2,147 samples, 0.06%)</title><rect x="471.4" y="965" width="0.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="474.44" y="975.5" ></text>
</g>
<g >
<title>in_realm (5,744 samples, 0.16%)</title><rect x="106.3" y="1045" width="1.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="109.25" y="1055.5" ></text>
</g>
<g >
<title>pfi_attach_group_event (85,419 samples, 2.42%)</title><rect x="821.8" y="949" width="28.6" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="824.84" y="959.5" >pf..</text>
</g>
<g >
<title>bounce_bus_dmamap_load_buffer (4,066 samples, 0.12%)</title><rect x="85.0" y="1077" width="1.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="87.98" y="1087.5" ></text>
</g>
<g >
<title>zio_trim (360 samples, 0.01%)</title><rect x="1167.2" y="1093" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1170.22" y="1103.5" ></text>
</g>
<g >
<title>sleepq_switch (386 samples, 0.01%)</title><rect x="1133.4" y="1125" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1136.38" y="1135.5" ></text>
</g>
<g >
<title>nvme_qpair_complete_tracker (583 samples, 0.02%)</title><rect x="1114.1" y="1125" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1117.05" y="1135.5" ></text>
</g>
<g >
<title>m_adj (3,025 samples, 0.09%)</title><rect x="960.4" y="1045" width="1.0" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="963.36" y="1055.5" ></text>
</g>
<g >
<title>0x635dc (442 samples, 0.01%)</title><rect x="911.9" y="949" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="914.88" y="959.5" ></text>
</g>
<g >
<title>pmap_kextract (347 samples, 0.01%)</title><rect x="724.5" y="789" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="727.45" y="799.5" ></text>
</g>
<g >
<title>malloc (1,675 samples, 0.05%)</title><rect x="1145.7" y="1125" width="0.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1148.74" y="1135.5" ></text>
</g>
<g >
<title>ether_input (1,496 samples, 0.04%)</title><rect x="49.1" y="1109" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="52.12" y="1119.5" ></text>
</g>
<g >
<title>mac_netinet_firewall_send (1,666 samples, 0.05%)</title><rect x="807.8" y="949" width="0.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="810.80" y="959.5" ></text>
</g>
<g >
<title>0x6dc24 (818 samples, 0.02%)</title><rect x="904.7" y="901" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="907.74" y="911.5" ></text>
</g>
<g >
<title>pf_krule_global_RB_NFIND (3,893 samples, 0.11%)</title><rect x="949.0" y="949" width="1.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="951.98" y="959.5" ></text>
</g>
<g >
<title>pfil_mbuf_in (2,091 samples, 0.06%)</title><rect x="959.4" y="1013" width="0.7" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="962.35" y="1023.5" ></text>
</g>
<g >
<title>0x63614 (848 samples, 0.02%)</title><rect x="912.9" y="949" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="915.94" y="959.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (2,034,370 samples, 57.73%)</title><rect x="286.3" y="1077" width="681.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="289.34" y="1087.5" >netisr_dispatch_src</text>
</g>
<g >
<title>ZSTD_estimateCCtxSize (332 samples, 0.01%)</title><rect x="10.7" y="1109" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="13.71" y="1119.5" ></text>
</g>
<g >
<title>netmap_rx_irq (504 samples, 0.01%)</title><rect x="982.4" y="1125" width="0.1" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="985.38" y="1135.5" ></text>
</g>
<g >
<title>if_inc_counter (8,250 samples, 0.23%)</title><rect x="34.1" y="1125" width="2.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="37.05" y="1135.5" ></text>
</g>
<g >
<title>tcp_lro_flush_all (2,099,487 samples, 59.58%)</title><rect x="268.5" y="1109" width="703.0" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="271.45" y="1119.5" >tcp_lro_flush_all</text>
</g>
<g >
<title>witness_checkorder (870 samples, 0.02%)</title><rect x="956.5" y="949" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="959.46" y="959.5" ></text>
</g>
<g >
<title>item_ctor (1,097 samples, 0.03%)</title><rect x="244.9" y="1109" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="247.86" y="1119.5" ></text>
</g>
<g >
<title>pfil_mbuf_out (27,688 samples, 0.79%)</title><rect x="798.2" y="933" width="9.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="801.24" y="943.5" ></text>
</g>
<g >
<title>ZSTD_RowFindBestMatch_extDict_6_4 (951 samples, 0.03%)</title><rect x="11.0" y="1109" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="13.96" y="1119.5" ></text>
</g>
<g >
<title>ip_input (20,980 samples, 0.60%)</title><rect x="1126.3" y="1141" width="7.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1129.27" y="1151.5" ></text>
</g>
<g >
<title>pf_walk_option6 (32,024 samples, 0.91%)</title><rect x="661.0" y="725" width="10.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="663.96" y="735.5" ></text>
</g>
<g >
<title>_bus_dmamap_addsegs (639 samples, 0.02%)</title><rect x="714.1" y="789" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="717.14" y="799.5" ></text>
</g>
<g >
<title>space_map_write (344 samples, 0.01%)</title><rect x="1167.4" y="1029" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1170.45" y="1039.5" ></text>
</g>
<g >
<title>0x636ec (1,406 samples, 0.04%)</title><rect x="914.3" y="949" width="0.5" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="917.32" y="959.5" ></text>
</g>
<g >
<title>random_fortuna_process_event (2,129 samples, 0.06%)</title><rect x="1134.2" y="1157" width="0.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1137.24" y="1167.5" ></text>
</g>
<g >
<title>spinlock_enter (626 samples, 0.02%)</title><rect x="1016.8" y="1125" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1019.77" y="1135.5" ></text>
</g>
<g >
<title>trash_ctor (1,354 samples, 0.04%)</title><rect x="797.4" y="917" width="0.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="800.40" y="927.5" ></text>
</g>
<g >
<title>scalar_rec_pqr (1,021 samples, 0.03%)</title><rect x="1175.8" y="1093" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1178.79" y="1103.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="1029" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="1039.5" ></text>
</g>
<g >
<title>pf_walk_option (14,338 samples, 0.41%)</title><rect x="902.9" y="917" width="4.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="905.90" y="927.5" ></text>
</g>
<g >
<title>m_tag_copy (477 samples, 0.01%)</title><rect x="792.8" y="917" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="795.82" y="927.5" ></text>
</g>
<g >
<title>spa_delegation (3,968 samples, 0.11%)</title><rect x="1164.4" y="1141" width="1.4" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1167.43" y="1151.5" ></text>
</g>
<g >
<title>_sleep (386 samples, 0.01%)</title><rect x="1133.4" y="1157" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1136.38" y="1167.5" ></text>
</g>
<g >
<title>vm_phys_paddr_to_vm_page (1,425 samples, 0.04%)</title><rect x="553.1" y="885" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="556.12" y="895.5" ></text>
</g>
<g >
<title>spa_add_healed_error (8,916 samples, 0.25%)</title><rect x="1176.4" y="1045" width="2.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1179.36" y="1055.5" ></text>
</g>
<g >
<title>pfattach_vnet (1,980 samples, 0.06%)</title><rect x="907.7" y="949" width="0.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="910.71" y="959.5" ></text>
</g>
<g >
<title>pf_osfp_add (7,470 samples, 0.21%)</title><rect x="468.9" y="965" width="2.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="471.94" y="975.5" ></text>
</g>
<g >
<title>pf_create_state (56,837 samples, 1.61%)</title><rect x="831.3" y="917" width="19.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="834.26" y="927.5" ></text>
</g>
<g >
<title>in_lltable_lookup (7,656 samples, 0.22%)</title><rect x="595.3" y="885" width="2.5" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="598.28" y="895.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (500 samples, 0.01%)</title><rect x="10.1" y="197" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.12" y="207.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="757" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="767.5" ></text>
</g>
<g >
<title>0x18e804 (530 samples, 0.02%)</title><rect x="10.1" y="501" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.11" y="511.5" ></text>
</g>
<g >
<title>spa_ld_log_sm_cb (2,934 samples, 0.08%)</title><rect x="1166.1" y="1125" width="1.0" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1169.09" y="1135.5" ></text>
</g>
<g >
<title>tcp_lro_rx_common (6,033 samples, 0.17%)</title><rect x="969.5" y="1093" width="2.0" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="972.46" y="1103.5" ></text>
</g>
<g >
<title>trash_dtor (2,173 samples, 0.06%)</title><rect x="1167.6" y="1109" width="0.7" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="1170.61" y="1119.5" ></text>
</g>
<g >
<title>VOP_WRITE_APV (46,262 samples, 1.31%)</title><rect x="1174.4" y="1141" width="15.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1177.38" y="1151.5" ></text>
</g>
<g >
<title>0x63678 (1,257 samples, 0.04%)</title><rect x="913.7" y="949" width="0.4" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="916.72" y="959.5" ></text>
</g>
<g >
<title>in_epoch_verbose (14,376 samples, 0.41%)</title><rect x="961.8" y="1061" width="4.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="964.76" y="1071.5" ></text>
</g>
<g >
<title>g_disk_start (1,394 samples, 0.04%)</title><rect x="1163.7" y="1093" width="0.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1166.68" y="1103.5" ></text>
</g>
<g >
<title>sleepq_switch (394 samples, 0.01%)</title><rect x="1112.2" y="1157" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1115.19" y="1167.5" ></text>
</g>
<g >
<title>uma_zfree_arg (1,522 samples, 0.04%)</title><rect x="1132.8" y="1061" width="0.5" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1135.78" y="1071.5" ></text>
</g>
<g >
<title>pfr_update_stats (1,086 samples, 0.03%)</title><rect x="968.9" y="965" width="0.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="971.91" y="975.5" ></text>
</g>
<g >
<title>0x258c1c (363 samples, 0.01%)</title><rect x="10.1" y="101" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.12" y="111.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (1,234 samples, 0.04%)</title><rect x="971.8" y="1109" width="0.4" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="974.82" y="1119.5" ></text>
</g>
<g >
<title>space_map_write (5,491 samples, 0.16%)</title><rect x="1136.2" y="1093" width="1.8" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1139.18" y="1103.5" ></text>
</g>
<g >
<title>igb_isc_rxd_refill (1,813 samples, 0.05%)</title><rect x="87.2" y="1093" width="0.6" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="90.18" y="1103.5" ></text>
</g>
<g >
<title>vdev_indirect_mapping_add_entries (366 samples, 0.01%)</title><rect x="1184.1" y="1093" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1187.13" y="1103.5" ></text>
</g>
<g >
<title>PHYS_TO_VM_PAGE (304 samples, 0.01%)</title><rect x="795.2" y="837" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="798.22" y="847.5" ></text>
</g>
<g >
<title>pf_osfp_fingerprint_hdr (581 samples, 0.02%)</title><rect x="969.0" y="949" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="971.96" y="959.5" ></text>
</g>
<g >
<title>pf_create_state (713 samples, 0.02%)</title><rect x="461.9" y="933" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="464.86" y="943.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (777 samples, 0.02%)</title><rect x="797.9" y="917" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="800.87" y="927.5" ></text>
</g>
<g >
<title>netisr_dispatch (396 samples, 0.01%)</title><rect x="961.4" y="1045" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="964.42" y="1055.5" ></text>
</g>
<g >
<title>bpf_filter (18,386 samples, 0.52%)</title><rect x="321.9" y="1029" width="6.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="324.87" y="1039.5" ></text>
</g>
<g >
<title>igb_isc_txd_flush (431 samples, 0.01%)</title><rect x="789.0" y="821" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="792.04" y="831.5" ></text>
</g>
<g >
<title>item_dtor (1,647 samples, 0.05%)</title><rect x="552.4" y="869" width="0.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="555.43" y="879.5" ></text>
</g>
<g >
<title>in_epoch (1,062 samples, 0.03%)</title><rect x="359.3" y="997" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="362.30" y="1007.5" ></text>
</g>
<g >
<title>in_pcblookup_exact (408 samples, 0.01%)</title><rect x="1132.0" y="1077" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1135.05" y="1087.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (2,696 samples, 0.08%)</title><rect x="223.8" y="1093" width="0.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="226.75" y="1103.5" ></text>
</g>
<g >
<title>raidz_rec_pqr_coeff (620 samples, 0.02%)</title><rect x="11.0" y="1093" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="13.97" y="1103.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (691 samples, 0.02%)</title><rect x="31.4" y="1125" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="34.44" y="1135.5" ></text>
</g>
<g >
<title>cpu_idle (825 samples, 0.02%)</title><rect x="11.5" y="1173" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="14.51" y="1183.5" ></text>
</g>
<g >
<title>m_dup_pkthdr (469 samples, 0.01%)</title><rect x="792.7" y="917" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="795.67" y="927.5" ></text>
</g>
<g >
<title>pf_addrcpy (993 samples, 0.03%)</title><rect x="453.1" y="965" width="0.3" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="456.08" y="975.5" ></text>
</g>
<g >
<title>uma_dbg_free (26,525 samples, 0.75%)</title><rect x="671.9" y="741" width="8.9" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="674.93" y="751.5" ></text>
</g>
<g >
<title>vm_phys_paddr_to_vm_page (17,288 samples, 0.49%)</title><rect x="417.7" y="837" width="5.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="420.73" y="847.5" ></text>
</g>
<g >
<title>memcpy_std (18,030 samples, 0.51%)</title><rect x="514.6" y="933" width="6.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="517.61" y="943.5" ></text>
</g>
<g >
<title>if_getdrvflags (1,335 samples, 0.04%)</title><rect x="987.6" y="1125" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="990.58" y="1135.5" ></text>
</g>
<g >
<title>vn_io_fault (46,363 samples, 1.32%)</title><rect x="1174.4" y="1173" width="15.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1177.36" y="1183.5" ></text>
</g>
<g >
<title>0x6dc6c (703 samples, 0.02%)</title><rect x="907.5" y="901" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="910.46" y="911.5" ></text>
</g>
<g >
<title>space_map_write (5,019 samples, 0.14%)</title><rect x="1184.3" y="1061" width="1.7" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1187.33" y="1071.5" ></text>
</g>
<g >
<title>pf_osfp_match (324 samples, 0.01%)</title><rect x="49.5" y="981" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="52.46" y="991.5" ></text>
</g>
<g >
<title>0x18ebac (530 samples, 0.02%)</title><rect x="10.1" y="805" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="13.11" y="815.5" ></text>
</g>
<g >
<title>spinlock_exit (129,552 samples, 3.68%)</title><rect x="1018.7" y="1125" width="43.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1021.70" y="1135.5" >spin..</text>
</g>
<g >
<title>0x319690 (311 samples, 0.01%)</title><rect x="10.3" y="1173" width="0.1" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text x="13.31" y="1183.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_unload (10,591 samples, 0.30%)</title><rect x="656.0" y="805" width="3.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="659.01" y="815.5" ></text>
</g>
<g >
<title>arpresolve (2,454 samples, 0.07%)</title><rect x="576.8" y="917" width="0.8" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="579.82" y="927.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (1,824 samples, 0.05%)</title><rect x="423.5" y="869" width="0.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="426.51" y="879.5" ></text>
</g>
<g >
<title>zcp_synctask_wrapper (401 samples, 0.01%)</title><rect x="1189.7" y="1109" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1192.71" y="1119.5" ></text>
</g>
<g >
<title>bsearch4_lookup (28,913 samples, 0.82%)</title><rect x="536.9" y="933" width="9.7" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="539.92" y="943.5" ></text>
</g>
<g >
<title>0x6d454 (434 samples, 0.01%)</title><rect x="446.1" y="949" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="449.14" y="959.5" ></text>
</g>
<g >
<title>0x190ce8 (497 samples, 0.01%)</title><rect x="10.1" y="181" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="13.12" y="191.5" ></text>
</g>
<g >
<title>trash_dtor (54,280 samples, 1.54%)</title><rect x="425.1" y="885" width="18.2" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="428.10" y="895.5" ></text>
</g>
<g >
<title>item_dtor (1,313 samples, 0.04%)</title><rect x="1132.8" y="1045" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1135.85" y="1055.5" ></text>
</g>
<g >
<title>pf_match_translation_rule (10,571 samples, 0.30%)</title><rect x="802.4" y="901" width="3.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="805.43" y="911.5" ></text>
</g>
<g >
<title>g_io_request (1,566 samples, 0.04%)</title><rect x="1163.7" y="1125" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1166.65" y="1135.5" ></text>
</g>
<g >
<title>pf_ioctl_get_ruleset (2,839 samples, 0.08%)</title><rect x="453.4" y="965" width="1.0" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="456.41" y="975.5" ></text>
</g>
<g >
<title>m_free (229,745 samples, 6.52%)</title><rect x="367.4" y="933" width="76.9" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="370.39" y="943.5" >m_free</text>
</g>
<g >
<title>wakeup_any (1,021 samples, 0.03%)</title><rect x="33.3" y="1109" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="36.32" y="1119.5" ></text>
</g>
<g >
<title>tcp_input (448 samples, 0.01%)</title><rect x="969.3" y="981" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="972.27" y="991.5" ></text>
</g>
<g >
<title>generic_bs_w_4 (565 samples, 0.02%)</title><rect x="766.2" y="805" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="769.19" y="815.5" ></text>
</g>
<g >
<title>pf_nvuint64 (806 samples, 0.02%)</title><rect x="934.1" y="933" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="937.13" y="943.5" ></text>
</g>
<g >
<title>space_map_write (13,946 samples, 0.40%)</title><rect x="1179.4" y="1077" width="4.7" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1182.45" y="1087.5" ></text>
</g>
<g >
<title>sync_upgrade_errlog (8,986 samples, 0.26%)</title><rect x="1135.1" y="1125" width="3.0" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1138.07" y="1135.5" ></text>
</g>
<g >
<title>ifmp_ring_enqueue (525,518 samples, 14.91%)</title><rect x="613.2" y="869" width="176.0" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="616.23" y="879.5" >ifmp_ring_enqueue</text>
</g>
<g >
<title>pf_walk_header6 (1,479 samples, 0.04%)</title><rect x="467.7" y="949" width="0.5" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="470.69" y="959.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="405" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="415.5" ></text>
</g>
<g >
<title>if_getvnet (455 samples, 0.01%)</title><rect x="33.9" y="1125" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="36.90" y="1135.5" ></text>
</g>
<g >
<title>_libmd_SHA256_Update (1,219 samples, 0.03%)</title><rect x="1134.5" y="1141" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1137.52" y="1151.5" ></text>
</g>
<g >
<title>_task_fn_rx (2,880,508 samples, 81.75%)</title><rect x="18.3" y="1141" width="964.6" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="21.27" y="1151.5" >_task_fn_rx</text>
</g>
<g >
<title>ether_output_frame (571,510 samples, 16.22%)</title><rect x="597.8" y="901" width="191.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="600.85" y="911.5" >ether_output_frame</text>
</g>
<g >
<title>ip_input (1,840,173 samples, 52.22%)</title><rect x="343.1" y="1013" width="616.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="346.12" y="1023.5" >ip_input</text>
</g>
<g >
<title>in_epoch_verbose (5,375 samples, 0.15%)</title><rect x="284.5" y="1077" width="1.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="287.51" y="1087.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="885" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="895.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (1,735 samples, 0.05%)</title><rect x="968.8" y="1013" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="971.85" y="1023.5" ></text>
</g>
<g >
<title>memcmp (3,084 samples, 0.09%)</title><rect x="966.6" y="1061" width="1.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="969.57" y="1071.5" ></text>
</g>
<g >
<title>pmap_kextract (2,520 samples, 0.07%)</title><rect x="416.9" y="837" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="419.88" y="847.5" ></text>
</g>
<g >
<title>ip_fillid (332 samples, 0.01%)</title><rect x="521.2" y="949" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="524.23" y="959.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (38,300 samples, 1.09%)</title><rect x="255.3" y="1093" width="12.9" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="258.35" y="1103.5" ></text>
</g>
<g >
<title>sleepq_timedwait (386 samples, 0.01%)</title><rect x="1133.4" y="1141" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="1136.38" y="1151.5" ></text>
</g>
<g >
<title>ether_demux (1,753 samples, 0.05%)</title><rect x="968.8" y="1029" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="971.84" y="1039.5" ></text>
</g>
<g >
<title>0x6347c (1,358 samples, 0.04%)</title><rect x="450.5" y="965" width="0.5" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="453.54" y="975.5" ></text>
</g>
<g >
<title>0x2ad1d0 (530 samples, 0.02%)</title><rect x="10.1" y="1173" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="13.11" y="1183.5" ></text>
</g>
<g >
<title>0x6d494 (329 samples, 0.01%)</title><rect x="447.1" y="949" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="450.05" y="959.5" ></text>
</g>
<g >
<title>malloc_type_zone_allocated (576 samples, 0.02%)</title><rect x="796.5" y="869" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="799.49" y="879.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (30,831 samples, 0.87%)</title><rect x="224.7" y="1093" width="10.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="227.66" y="1103.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (1,916 samples, 0.05%)</title><rect x="968.8" y="1061" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="971.79" y="1071.5" ></text>
</g>
<g >
<title>spinlock_exit (24,001 samples, 0.68%)</title><rect x="1114.2" y="1157" width="8.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1117.25" y="1167.5" ></text>
</g>
<g >
<title>memcpy_std (27,752 samples, 0.79%)</title><rect x="973.1" y="1125" width="9.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="976.08" y="1135.5" ></text>
</g>
<g >
<title>ether_demux (909 samples, 0.03%)</title><rect x="49.3" y="1061" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="52.31" y="1071.5" ></text>
</g>
<g >
<title>vdev_rebuild_restart_impl (29,666 samples, 0.84%)</title><rect x="1179.4" y="1109" width="9.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1182.37" y="1119.5" ></text>
</g>
<g >
<title>space_map_write (4,978 samples, 0.14%)</title><rect x="1184.3" y="1045" width="1.7" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1187.34" y="1055.5" ></text>
</g>
<g >
<title>pfil_mbuf_in (588 samples, 0.02%)</title><rect x="49.4" y="1013" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="52.41" y="1023.5" ></text>
</g>
<g >
<title>iflib_if_transmit (559,165 samples, 15.87%)</title><rect x="602.0" y="885" width="187.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="604.96" y="895.5" >iflib_if_transmit</text>
</g>
<g >
<title>bpf_filter (482 samples, 0.01%)</title><rect x="302.1" y="1045" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="305.08" y="1055.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="517" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="527.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (3,517 samples, 0.10%)</title><rect x="681.5" y="821" width="1.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="684.49" y="831.5" ></text>
</g>
<g >
<title>0xffff000000a82abc (7,851 samples, 0.22%)</title><rect x="497.5" y="933" width="2.6" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="500.52" y="943.5" ></text>
</g>
<g >
<title>__mtx_assert (1,565 samples, 0.04%)</title><rect x="1014.0" y="1141" width="0.5" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1017.01" y="1151.5" ></text>
</g>
<g >
<title>vdev_mirror_rebuilding (9,378 samples, 0.27%)</title><rect x="1135.0" y="1157" width="3.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1138.04" y="1167.5" ></text>
</g>
<g >
<title>uma_dbg_free (31,004 samples, 0.88%)</title><rect x="661.2" y="677" width="10.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="664.25" y="687.5" ></text>
</g>
<g >
<title>spinlock_exit (26,336 samples, 0.75%)</title><rect x="557.9" y="853" width="8.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="560.93" y="863.5" ></text>
</g>
<g >
<title>0x654f8 (1,166 samples, 0.03%)</title><rect x="473.9" y="949" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="476.86" y="959.5" ></text>
</g>
<g >
<title>m_apply (871 samples, 0.02%)</title><rect x="791.3" y="933" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="794.28" y="943.5" ></text>
</g>
<g >
<title>witness_warn (457 samples, 0.01%)</title><rect x="1112.3" y="1157" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1115.32" y="1167.5" ></text>
</g>
<g >
<title>in_epoch (546 samples, 0.02%)</title><rect x="333.4" y="1029" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="336.40" y="1039.5" ></text>
</g>
<g >
<title>_rm_rlock_debug (8,964 samples, 0.25%)</title><rect x="916.7" y="949" width="3.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="919.75" y="959.5" ></text>
</g>
<g >
<title>0x635f0 (570 samples, 0.02%)</title><rect x="912.1" y="949" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="915.08" y="959.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="981" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="991.5" ></text>
</g>
<g >
<title>ether_nh_input (1,399 samples, 0.04%)</title><rect x="283.8" y="1077" width="0.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="286.78" y="1087.5" ></text>
</g>
<g >
<title>dsl_dataset_get_holds (2,720 samples, 0.08%)</title><rect x="1166.1" y="1093" width="0.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1169.09" y="1103.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (1,427 samples, 0.04%)</title><rect x="555.3" y="885" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="558.33" y="895.5" ></text>
</g>
<g >
<title>__mtx_lock_spin_flags (2,602 samples, 0.07%)</title><rect x="12.8" y="1141" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="15.80" y="1151.5" ></text>
</g>
<g >
<title>in_epoch_verbose (5,448 samples, 0.15%)</title><rect x="364.0" y="981" width="1.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="366.96" y="991.5" ></text>
</g>
<g >
<title>mtrash_ctor (939 samples, 0.03%)</title><rect x="794.7" y="853" width="0.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="797.66" y="863.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="917" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="927.5" ></text>
</g>
<g >
<title>intr_event_schedule_thread (29,169 samples, 0.83%)</title><rect x="557.0" y="869" width="9.8" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="559.99" y="879.5" ></text>
</g>
<g >
<title>PHYS_TO_VM_PAGE (717 samples, 0.02%)</title><rect x="100.8" y="1077" width="0.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="103.83" y="1087.5" ></text>
</g>
<g >
<title>trash_dtor (3,070 samples, 0.09%)</title><rect x="1135.1" y="1077" width="1.1" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="1138.12" y="1087.5" ></text>
</g>
<g >
<title>handle_el0_sync (314 samples, 0.01%)</title><rect x="1189.9" y="1205" width="0.1" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1192.89" y="1215.5" ></text>
</g>
<g >
<title>grouptaskqueue_enqueue (5,900 samples, 0.17%)</title><rect x="31.7" y="1125" width="2.0" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="34.69" y="1135.5" ></text>
</g>
<g >
<title>_rm_rlock (5,835 samples, 0.17%)</title><rect x="914.8" y="949" width="1.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="917.79" y="959.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="613" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="623.5" ></text>
</g>
<g >
<title>trash_ctor (269,499 samples, 7.65%)</title><rect x="133.5" y="1093" width="90.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="136.50" y="1103.5" >trash_ctor</text>
</g>
<g >
<title>vdev_initialize_change_state (5,029 samples, 0.14%)</title><rect x="1184.3" y="1077" width="1.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1187.33" y="1087.5" ></text>
</g>
<g >
<title>0x6d490 (576 samples, 0.02%)</title><rect x="446.9" y="949" width="0.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="449.86" y="959.5" ></text>
</g>
<g >
<title>uma_zfree_arg (3,172 samples, 0.09%)</title><rect x="1135.1" y="1093" width="1.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1138.09" y="1103.5" ></text>
</g>
<g >
<title>m_apply (1,659 samples, 0.05%)</title><rect x="573.7" y="901" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="576.73" y="911.5" ></text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="901" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="911.5" ></text>
</g>
<g >
<title>ZSTD_compressStream2 (1,955 samples, 0.06%)</title><rect x="1162.6" y="1125" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1165.56" y="1135.5" ></text>
</g>
<g >
<title>netisr_queue_internal (40,046 samples, 1.14%)</title><rect x="553.9" y="901" width="13.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="556.92" y="911.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (301 samples, 0.01%)</title><rect x="1166.1" y="1061" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1169.13" y="1071.5" ></text>
</g>
<g >
<title>iflib_txq_drain (471,727 samples, 13.39%)</title><rect x="631.2" y="837" width="158.0" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="634.23" y="847.5" >iflib_txq_drain</text>
</g>
<g >
<title>ZSTD_CCtx_trace (333 samples, 0.01%)</title><rect x="1162.6" y="1109" width="0.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="1165.57" y="1119.5" ></text>
</g>
<g >
<title>pfi_ifaddr_event (3,874 samples, 0.11%)</title><rect x="863.1" y="949" width="1.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="866.06" y="959.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="581" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="591.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (702 samples, 0.02%)</title><rect x="1134.3" y="1141" width="0.2" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1137.28" y="1151.5" ></text>
</g>
<g >
<title>m_pkthdr_init (964 samples, 0.03%)</title><rect x="874.3" y="901" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="877.33" y="911.5" ></text>
</g>
<g >
<title>item_dtor (1,916 samples, 0.05%)</title><rect x="369.7" y="901" width="0.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="372.70" y="911.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="469" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="479.5" ></text>
</g>
<g >
<title>_rm_runlock (1,016 samples, 0.03%)</title><rect x="908.9" y="933" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="911.87" y="943.5" ></text>
</g>
<g >
<title>_epoch_enter_preempt (807 samples, 0.02%)</title><rect x="301.4" y="1045" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="304.45" y="1055.5" ></text>
</g>
<g >
<title>malloc (10,604 samples, 0.30%)</title><rect x="793.4" y="885" width="3.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="796.37" y="895.5" ></text>
</g>
<g >
<title>pfi_initialize_vnet (756 samples, 0.02%)</title><rect x="957.1" y="965" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="960.13" y="975.5" ></text>
</g>
<g >
<title>0x190c70 (530 samples, 0.02%)</title><rect x="10.1" y="677" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="13.11" y="687.5" ></text>
</g>
<g >
<title>pmap_kextract (668 samples, 0.02%)</title><rect x="86.1" y="1061" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="89.12" y="1071.5" ></text>
</g>
<g >
<title>vm_phys_paddr_to_vm_page (65,428 samples, 1.86%)</title><rect x="110.7" y="1061" width="22.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="113.75" y="1071.5" >v..</text>
</g>
<g >
<title>0xffff000000a82ab0 (937 samples, 0.03%)</title><rect x="497.2" y="933" width="0.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="500.20" y="943.5" ></text>
</g>
<g >
<title>0x6d434 (1,541 samples, 0.04%)</title><rect x="445.6" y="949" width="0.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="448.62" y="959.5" ></text>
</g>
<g >
<title>witness_warn (1,283 samples, 0.04%)</title><rect x="1111.6" y="1141" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1114.60" y="1151.5" ></text>
</g>
<g >
<title>fork_trampoline (3,522,056 samples, 99.95%)</title><rect x="10.4" y="1205" width="1179.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="13.44" y="1215.5" >fork_trampoline</text>
</g>
<g >
<title>scan_io_queues_run_one (429 samples, 0.01%)</title><rect x="1164.3" y="1141" width="0.1" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1167.28" y="1151.5" ></text>
</g>
<g >
<title>pfi_rename_ifnet_event (75,883 samples, 2.15%)</title><rect x="864.4" y="949" width="25.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="867.36" y="959.5" >p..</text>
</g>
<g >
<title>in_ifaddr_broadcast (1,372 samples, 0.04%)</title><rect x="574.8" y="933" width="0.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="577.78" y="943.5" ></text>
</g>
<g >
<title>0x18e8b4 (530 samples, 0.02%)</title><rect x="10.1" y="389" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.11" y="399.5" ></text>
</g>
<g >
<title>memcpy_std (586 samples, 0.02%)</title><rect x="797.2" y="917" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="800.20" y="927.5" ></text>
</g>
<g >
<title>igb_isc_rxd_pkt_get (384 samples, 0.01%)</title><rect x="972.8" y="1125" width="0.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="975.81" y="1135.5" ></text>
</g>
<g >
<title>m_length (1,027 samples, 0.03%)</title><rect x="328.0" y="1029" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="331.03" y="1039.5" ></text>
</g>
<g >
<title>mb_ctor_mbuf (5,180 samples, 0.15%)</title><rect x="874.8" y="901" width="1.8" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="877.84" y="911.5" ></text>
</g>
<g >
<title>taskqueue_thread_loop (107,894 samples, 3.06%)</title><rect x="1138.2" y="1173" width="36.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1141.19" y="1183.5" >tas..</text>
</g>
<g >
<title>ip_output (855,032 samples, 24.27%)</title><rect x="521.3" y="949" width="286.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="524.34" y="959.5" >ip_output</text>
</g>
<g >
<title>spa_sync_config_object (2,866 samples, 0.08%)</title><rect x="1166.1" y="1109" width="0.9" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1169.09" y="1119.5" ></text>
</g>
<g >
<title>_ck_epoch_delref (868 samples, 0.02%)</title><rect x="684.6" y="805" width="0.3" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="687.57" y="815.5" ></text>
</g>
<g >
<title>malloc (301 samples, 0.01%)</title><rect x="1162.6" y="1093" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1165.58" y="1103.5" ></text>
</g>
<g >
<title>0x6346c (744 samples, 0.02%)</title><rect x="449.8" y="965" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="452.76" y="975.5" ></text>
</g>
<g >
<title>item_ctor (423 samples, 0.01%)</title><rect x="831.1" y="917" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="834.12" y="927.5" ></text>
</g>
<g >
<title>m_free (65,388 samples, 1.86%)</title><rect x="659.6" y="789" width="21.9" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="662.59" y="799.5" >m..</text>
</g>
<g >
<title>free (563 samples, 0.02%)</title><rect x="1146.3" y="1125" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1149.30" y="1135.5" ></text>
</g>
<g >
<title>pf_krule_global_RB_INSERT_COLOR (83,608 samples, 2.37%)</title><rect x="919.7" y="949" width="28.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="922.75" y="959.5" >p..</text>
</g>
<g >
<title>spinlock_exit (68,660 samples, 1.95%)</title><rect x="990.1" y="1141" width="23.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="993.12" y="1151.5" >s..</text>
</g>
<g >
<title>fib4_lookup (501 samples, 0.01%)</title><rect x="520.7" y="949" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="523.65" y="959.5" ></text>
</g>
<g >
<title>zio_claim (360 samples, 0.01%)</title><rect x="1167.2" y="1109" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1170.22" y="1119.5" ></text>
</g>
<g >
<title>in_epoch (370 samples, 0.01%)</title><rect x="574.3" y="933" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="577.33" y="943.5" ></text>
</g>
<g >
<title>spinlock_exit (1,680 samples, 0.05%)</title><rect x="566.8" y="869" width="0.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="569.76" y="879.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (53,614 samples, 1.52%)</title><rect x="748.2" y="805" width="18.0" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="751.23" y="815.5" ></text>
</g>
<g >
<title>item_dtor (492 samples, 0.01%)</title><rect x="1146.3" y="1093" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1149.32" y="1103.5" ></text>
</g>
<g >
<title>in_delayed_cksum_o (2,855 samples, 0.08%)</title><rect x="573.4" y="933" width="0.9" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="576.37" y="943.5" ></text>
</g>
<g >
<title>xpt_run_devq (436 samples, 0.01%)</title><rect x="1164.0" y="1013" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1167.00" y="1023.5" ></text>
</g>
<g >
<title>SipHash_Final (10,758 samples, 0.31%)</title><rect x="480.5" y="949" width="3.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="483.45" y="959.5" ></text>
</g>
<g >
<title>free (5,919 samples, 0.17%)</title><rect x="551.6" y="901" width="2.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="554.62" y="911.5" ></text>
</g>
<g >
<title>binuptime (24,981 samples, 0.71%)</title><rect x="271.7" y="1093" width="8.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="274.66" y="1103.5" ></text>
</g>
<g >
<title>ether_demux (634 samples, 0.02%)</title><rect x="293.3" y="1061" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="296.29" y="1071.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (530 samples, 0.02%)</title><rect x="10.1" y="533" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.11" y="543.5" ></text>
</g>
<g >
<title>do_el0_sync (310 samples, 0.01%)</title><rect x="1189.9" y="1189" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1192.90" y="1199.5" ></text>
</g>
<g >
<title>memset_std (14,973 samples, 0.42%)</title><rect x="808.4" y="949" width="5.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="811.36" y="959.5" ></text>
</g>
<g >
<title>tcp_lro_flush (1,949 samples, 0.06%)</title><rect x="968.8" y="1093" width="0.6" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="971.78" y="1103.5" ></text>
</g>
<g >
<title>item_ctor (788 samples, 0.02%)</title><rect x="865.4" y="933" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="868.45" y="943.5" ></text>
</g>
<g >
<title>0x258090 (530 samples, 0.02%)</title><rect x="10.1" y="357" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.11" y="367.5" ></text>
</g>
<g >
<title>item_ctor (29,874 samples, 0.85%)</title><rect x="835.5" y="901" width="10.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="838.54" y="911.5" ></text>
</g>
<g >
<title>FSE_writeNCount_generic (36,015 samples, 1.02%)</title><rect x="1150.4" y="1141" width="12.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1153.41" y="1151.5" ></text>
</g>
<g >
<title>pf_krule_global_RB_REMOVE_COLOR (16,740 samples, 0.48%)</title><rect x="950.3" y="949" width="5.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="953.28" y="959.5" ></text>
</g>
<g >
<title>spa_scan_range (4,958 samples, 0.14%)</title><rect x="1184.3" y="1029" width="1.7" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1187.35" y="1039.5" ></text>
</g>
<g >
<title>all (3,523,672 samples, 100%)</title><rect x="10.0" y="1221" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="1231.5" ></text>
</g>
<g >
<title>gtaskqueue_run_locked (2,988,253 samples, 84.81%)</title><rect x="12.5" y="1157" width="1000.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="15.48" y="1167.5" >gtaskqueue_run_locked</text>
</g>
<g >
<title>0x2ad5cc (639 samples, 0.02%)</title><rect x="10.1" y="1205" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="13.07" y="1215.5" ></text>
</g>
<g >
<title>0x63454 (14,047 samples, 0.40%)</title><rect x="444.9" y="965" width="4.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="447.85" y="975.5" ></text>
</g>
<g >
<title>shutdown_pf (36,111 samples, 1.02%)</title><rect x="935.7" y="933" width="12.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="938.65" y="943.5" ></text>
</g>
<g >
<title>pfr_update_stats (583 samples, 0.02%)</title><rect x="49.4" y="997" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="52.42" y="1007.5" ></text>
</g>
<g >
<title>PyType_Ready (530 samples, 0.02%)</title><rect x="10.1" y="837" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="13.11" y="847.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (462 samples, 0.01%)</title><rect x="850.3" y="917" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="853.29" y="927.5" ></text>
</g>
<g >
<title>in_cksum_skip (534 samples, 0.02%)</title><rect x="520.8" y="949" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="523.83" y="959.5" ></text>
</g>
<g >
<title>trash_ctor (8,781 samples, 0.25%)</title><rect x="1176.4" y="1029" width="2.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1179.39" y="1039.5" ></text>
</g>
<g >
<title>m_copydata (475 samples, 0.01%)</title><rect x="952.1" y="933" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="955.12" y="943.5" ></text>
</g>
<g >
<title>ether_input (2,053,228 samples, 58.27%)</title><rect x="280.0" y="1093" width="687.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="283.03" y="1103.5" >ether_input</text>
</g>
<g >
<title>uma_zalloc_debug (2,317 samples, 0.07%)</title><rect x="888.6" y="901" width="0.8" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="891.63" y="911.5" ></text>
</g>
<g >
<title>item_ctor (7,157 samples, 0.20%)</title><rect x="793.8" y="869" width="2.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="796.77" y="879.5" ></text>
</g>
<g >
<title>malloc_dbg (975 samples, 0.03%)</title><rect x="796.2" y="869" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="799.17" y="879.5" ></text>
</g>
<g >
<title>igb_isc_rxd_flush (2,245 samples, 0.06%)</title><rect x="86.4" y="1093" width="0.8" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="89.43" y="1103.5" ></text>
</g>
<g >
<title>bpf_mtap (459 samples, 0.01%)</title><rect x="630.4" y="837" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="633.43" y="847.5" ></text>
</g>
<g >
<title>xpt_run_allocq (954 samples, 0.03%)</title><rect x="1163.8" y="1061" width="0.3" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1166.82" y="1071.5" ></text>
</g>
<g >
<title>0x63624 (986 samples, 0.03%)</title><rect x="913.3" y="949" width="0.3" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="916.29" y="959.5" ></text>
</g>
<g >
<title>xpt_done_process (533 samples, 0.02%)</title><rect x="1114.1" y="1093" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="1117.07" y="1103.5" ></text>
</g>
</g>
</svg>
File Metadata
Details
Attached
Mime Type
image/svg+xml
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
37081594
Default Alt Text
patch.svg (149 KB)
Attached To
Mode
D59068: pf: Send syncookies from the receiving thread
Attached
Detach File
Event Timeline
Log In to Comment