Page MenuHomeFreeBSD
Authored By
bnovkov
Fri, Aug 21, 12:22 PM
Size
159 KB
Referenced Files
None
Subscribers
None

baseline.svg

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="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_apply (1,751 samples, 0.03%)</title><rect x="903.2" y="1093" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="906.16" y="1103.5" ></text>
</g>
<g >
<title>vdev_raidz_map_alloc_expanded (1,359 samples, 0.02%)</title><rect x="1164.0" y="1125" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="1167.00" y="1135.5" ></text>
</g>
<g >
<title>tcp_input_with_port (641 samples, 0.01%)</title><rect x="708.7" y="965" width="0.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="711.71" y="975.5" ></text>
</g>
<g >
<title>vdev_label_init (1,618 samples, 0.02%)</title><rect x="1174.9" y="1061" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="1177.88" y="1071.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="757" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="767.5" ></text>
</g>
<g >
<title>0x63484 (14,752 samples, 0.23%)</title><rect x="395.9" y="949" width="2.7" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="398.92" y="959.5" ></text>
</g>
<g >
<title>cache_free (2,728 samples, 0.04%)</title><rect x="862.1" y="1109" width="0.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="865.09" y="1119.5" ></text>
</g>
<g >
<title>vdev_mirror_io_done (761 samples, 0.01%)</title><rect x="1158.8" y="1045" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1161.83" y="1055.5" ></text>
</g>
<g >
<title>uma_dbg_free (1,183 samples, 0.02%)</title><rect x="892.5" y="1045" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="895.45" y="1055.5" ></text>
</g>
<g >
<title>vm_phys_paddr_to_vm_page (58,352 samples, 0.89%)</title><rect x="104.2" y="1061" width="10.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="107.22" y="1071.5" ></text>
</g>
<g >
<title>pf_tcp_track_full (2,456 samples, 0.04%)</title><rect x="1122.0" y="1173" width="0.4" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1124.95" y="1183.5" ></text>
</g>
<g >
<title>netmap_rx_irq (1,080 samples, 0.02%)</title><rect x="720.2" y="1125" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="723.19" y="1135.5" ></text>
</g>
<g >
<title>pfi_cleanup_vnet (67,812 samples, 1.04%)</title><rect x="579.3" y="933" width="12.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="582.27" y="943.5" ></text>
</g>
<g >
<title>thread_lock_flags_ (67,670 samples, 1.03%)</title><rect x="537.1" y="885" width="12.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="540.09" y="895.5" ></text>
</g>
<g >
<title>in_epoch (913 samples, 0.01%)</title><rect x="910.6" y="1077" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="913.56" y="1087.5" ></text>
</g>
<g >
<title>shutdown_pf (9,685 samples, 0.15%)</title><rect x="682.4" y="933" width="1.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="685.39" y="943.5" ></text>
</g>
<g >
<title>pf_synflood_check (1,826 samples, 0.03%)</title><rect x="411.0" y="949" width="0.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="414.04" y="959.5" ></text>
</g>
<g >
<title>spa_write_cachefile (18,156 samples, 0.28%)</title><rect x="1185.7" y="1061" width="3.3" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1188.71" y="1071.5" ></text>
</g>
<g >
<title>_sleep (611 samples, 0.01%)</title><rect x="1127.7" y="1157" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1130.74" y="1167.5" ></text>
</g>
<g >
<title>pf_osfp_match (3,533 samples, 0.05%)</title><rect x="655.6" y="965" width="0.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="658.64" y="975.5" ></text>
</g>
<g >
<title>pfattach_vnet (834 samples, 0.01%)</title><rect x="655.5" y="949" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="658.49" y="959.5" ></text>
</g>
<g >
<title>msleep_spin_sbt (490,265 samples, 7.50%)</title><rect x="735.7" y="1157" width="88.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="738.70" y="1167.5" >msleep_spi..</text>
</g>
<g >
<title>cpu_idle (993 samples, 0.02%)</title><rect x="11.6" y="1173" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="14.60" y="1183.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (6,120 samples, 0.09%)</title><rect x="987.1" y="1013" width="1.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="990.07" y="1023.5" ></text>
</g>
<g >
<title>mb_free_ext (678 samples, 0.01%)</title><rect x="383.3" y="933" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="386.32" y="943.5" ></text>
</g>
<g >
<title>in_epoch_verbose (6,545 samples, 0.10%)</title><rect x="296.3" y="1013" width="1.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="299.25" y="1023.5" ></text>
</g>
<g >
<title>raidz_rec_pqr_coeff (1,239 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.99" y="1103.5" ></text>
</g>
<g >
<title>pf_match_translation_rule (67,630 samples, 1.03%)</title><rect x="1076.1" y="1093" width="12.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1079.14" y="1103.5" ></text>
</g>
<g >
<title>witness_checkorder (2,564 samples, 0.04%)</title><rect x="666.1" y="933" width="0.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="669.10" y="943.5" ></text>
</g>
<g >
<title>in_epoch_verbose (8,446 samples, 0.13%)</title><rect x="309.8" y="997" width="1.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="312.83" y="1007.5" ></text>
</g>
<g >
<title>FSE_writeNCount (25,176 samples, 0.38%)</title><rect x="1137.4" y="1141" width="4.6" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1140.44" y="1151.5" ></text>
</g>
<g >
<title>item_dtor (39,518 samples, 0.60%)</title><rect x="965.9" y="885" width="7.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="968.92" y="895.5" ></text>
</g>
<g >
<title>memcpy_std (2,588 samples, 0.04%)</title><rect x="1073.8" y="1093" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1076.76" y="1103.5" ></text>
</g>
<g >
<title>spa_import_progress_remove (1,358 samples, 0.02%)</title><rect x="1161.0" y="1141" width="0.2" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="1163.97" y="1151.5" ></text>
</g>
<g >
<title>cache_alloc_retry (5,071 samples, 0.08%)</title><rect x="1165.3" y="1125" width="1.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1168.34" y="1135.5" ></text>
</g>
<g >
<title>xpt_run_devq (869 samples, 0.01%)</title><rect x="1158.5" y="1013" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="1161.46" y="1023.5" ></text>
</g>
<g >
<title>spa_condense_indirect_complete_sync (923 samples, 0.01%)</title><rect x="1164.1" y="1077" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1167.06" y="1087.5" ></text>
</g>
<g >
<title>0x63494 (1,078 samples, 0.02%)</title><rect x="398.7" y="949" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="401.68" y="959.5" ></text>
</g>
<g >
<title>pf_map_addr (562 samples, 0.01%)</title><rect x="698.4" y="949" width="0.1" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="701.41" y="959.5" ></text>
</g>
<g >
<title>ZSTD_estimateCDictSize (1,131 samples, 0.02%)</title><rect x="1157.3" y="1109" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1160.27" y="1119.5" ></text>
</g>
<g >
<title>e1000_wr32 (1,589 samples, 0.02%)</title><rect x="81.2" y="1077" width="0.3" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="84.17" y="1087.5" ></text>
</g>
<g >
<title>0x6db88 (841 samples, 0.01%)</title><rect x="384.5" y="949" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="387.49" y="959.5" ></text>
</g>
<g >
<title>uma_zfree_arg (2,880 samples, 0.04%)</title><rect x="892.2" y="1077" width="0.5" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="895.18" y="1087.5" ></text>
</g>
<g >
<title>0x2ad558 (1,296 samples, 0.02%)</title><rect x="10.2" y="1189" width="0.3" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="13.25" y="1199.5" ></text>
</g>
<g >
<title>ZSTD_initCStream_srcSize (4,324 samples, 0.07%)</title><rect x="1156.8" y="1141" width="0.7" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="1159.77" y="1151.5" ></text>
</g>
<g >
<title>m_tag_delete_nonpersistent (7,893 samples, 0.12%)</title><rect x="891.7" y="1109" width="1.4" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="894.71" y="1119.5" ></text>
</g>
<g >
<title>lock_delay (56,337 samples, 0.86%)</title><rect x="539.0" y="869" width="10.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="541.96" y="879.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (953 samples, 0.01%)</title><rect x="1122.1" y="1141" width="0.2" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1125.10" y="1151.5" ></text>
</g>
<g >
<title>0x18e804 (987 samples, 0.02%)</title><rect x="10.3" y="661" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.31" y="671.5" ></text>
</g>
<g >
<title>if_getdrvflags (801 samples, 0.01%)</title><rect x="722.0" y="1125" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="725.04" y="1135.5" ></text>
</g>
<g >
<title>ether_output_frame (837,364 samples, 12.80%)</title><rect x="917.6" y="1093" width="151.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="920.59" y="1103.5" >ether_output_frame</text>
</g>
<g >
<title>vdev_initialize_thread (19,471 samples, 0.30%)</title><rect x="1185.5" y="1093" width="3.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1188.50" y="1103.5" ></text>
</g>
<g >
<title>nlattr_add_pfr_table (832 samples, 0.01%)</title><rect x="679.3" y="933" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="682.33" y="943.5" ></text>
</g>
<g >
<title>pf_step_into_translation_anchor (237,345 samples, 3.63%)</title><rect x="656.3" y="965" width="42.8" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="659.28" y="975.5" >pf_s..</text>
</g>
<g >
<title>vdev_mirror_io_done (777 samples, 0.01%)</title><rect x="1158.8" y="1077" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1161.83" y="1087.5" ></text>
</g>
<g >
<title>_ck_epoch_addref (2,392 samples, 0.04%)</title><rect x="18.5" y="1125" width="0.5" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="21.54" y="1135.5" ></text>
</g>
<g >
<title>bpf_filter (785 samples, 0.01%)</title><rect x="988.2" y="1013" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="991.19" y="1023.5" ></text>
</g>
<g >
<title>spa_scan_range (561 samples, 0.01%)</title><rect x="11.3" y="1061" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="14.33" y="1071.5" ></text>
</g>
<g >
<title>ZSTD_RowFindBestMatch_extDict_6_6 (573 samples, 0.01%)</title><rect x="11.3" y="1109" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="14.33" y="1119.5" ></text>
</g>
<g >
<title>ether_bpf_mtap_if (7,868 samples, 0.12%)</title><rect x="287.2" y="1045" width="1.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="290.18" y="1055.5" ></text>
</g>
<g >
<title>vdev_mirror_rebuilding (24,471 samples, 0.37%)</title><rect x="1123.3" y="1157" width="4.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1126.31" y="1167.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (668 samples, 0.01%)</title><rect x="10.3" y="37" width="0.1" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.32" y="47.5" ></text>
</g>
<g >
<title>pf_walk_option (27,967 samples, 0.43%)</title><rect x="650.4" y="917" width="5.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="653.44" y="927.5" ></text>
</g>
<g >
<title>taskqueue_run_locked (252,034 samples, 3.85%)</title><rect x="1127.8" y="1157" width="45.5" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1130.85" y="1167.5" >task..</text>
</g>
<g >
<title>_iflib_completed_tx_reclaim (212,887 samples, 3.26%)</title><rect x="948.7" y="1013" width="38.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="951.66" y="1023.5" >_if..</text>
</g>
<g >
<title>g_io_request (3,229 samples, 0.05%)</title><rect x="1158.1" y="1125" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1161.08" y="1135.5" ></text>
</g>
<g >
<title>vdev_mirror_map_init (680 samples, 0.01%)</title><rect x="1158.8" y="1013" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1161.85" y="1023.5" ></text>
</g>
<g >
<title>0x635d4 (2,092 samples, 0.03%)</title><rect x="661.3" y="949" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="664.25" y="959.5" ></text>
</g>
<g >
<title>pf_nvrule_to_krule (8,616 samples, 0.13%)</title><rect x="679.5" y="933" width="1.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="682.48" y="943.5" ></text>
</g>
<g >
<title>_sleep (605 samples, 0.01%)</title><rect x="1122.0" y="1157" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1124.96" y="1167.5" ></text>
</g>
<g >
<title>__mtx_lock_spin_flags (1,275 samples, 0.02%)</title><rect x="35.1" y="1093" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="38.14" y="1103.5" ></text>
</g>
<g >
<title>0x63404 (6,368 samples, 0.10%)</title><rect x="383.5" y="965" width="1.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="386.51" y="975.5" ></text>
</g>
<g >
<title>pfr_update_stats (1,892 samples, 0.03%)</title><rect x="708.4" y="965" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="711.36" y="975.5" ></text>
</g>
<g >
<title>trash_dtor (85,175 samples, 1.30%)</title><rect x="367.1" y="885" width="15.4" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="370.12" y="895.5" ></text>
</g>
<g >
<title>trash_ctor (16,605 samples, 0.25%)</title><rect x="1186.0" y="1029" width="3.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1188.96" y="1039.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (2,271,514 samples, 34.73%)</title><rect x="293.6" y="1029" width="409.9" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="296.60" y="1039.5" >netisr_dispatch_src</text>
</g>
<g >
<title>pf_osfp_fingerprint_hdr (1,272,913 samples, 19.46%)</title><rect x="411.4" y="965" width="229.7" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="414.44" y="975.5" >pf_osfp_fingerprint_hdr</text>
</g>
<g >
<title>pf_create_state (2,342 samples, 0.04%)</title><rect x="398.2" y="933" width="0.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="401.16" y="943.5" ></text>
</g>
<g >
<title>do_el0_sync (1,775 samples, 0.03%)</title><rect x="1189.7" y="1189" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1192.68" y="1199.5" ></text>
</g>
<g >
<title>witness_warn (565 samples, 0.01%)</title><rect x="1189.6" y="1173" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1192.57" y="1183.5" ></text>
</g>
<g >
<title>g_disk_done (1,194 samples, 0.02%)</title><rect x="837.4" y="1077" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="840.36" y="1087.5" ></text>
</g>
<g >
<title>0x63434 (1,550 samples, 0.02%)</title><rect x="386.4" y="965" width="0.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="389.37" y="975.5" ></text>
</g>
<g >
<title>pmap_kextract (5,594 samples, 0.09%)</title><rect x="96.0" y="1077" width="1.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="98.97" y="1087.5" ></text>
</g>
<g >
<title>pmap_kextract (1,220 samples, 0.02%)</title><rect x="1029.9" y="965" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1032.86" y="975.5" ></text>
</g>
<g >
<title>ip_input (1,511 samples, 0.02%)</title><rect x="50.1" y="1029" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="53.06" y="1039.5" ></text>
</g>
<g >
<title>zone_import (2,313 samples, 0.04%)</title><rect x="1175.4" y="997" width="0.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1178.44" y="1007.5" ></text>
</g>
<g >
<title>0x635a0 (1,563 samples, 0.02%)</title><rect x="659.3" y="949" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="662.31" y="959.5" ></text>
</g>
<g >
<title>kmem_back_domain (1,352 samples, 0.02%)</title><rect x="1175.4" y="949" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1178.44" y="959.5" ></text>
</g>
<g >
<title>trash_dtor (5,872 samples, 0.09%)</title><rect x="1164.3" y="1109" width="1.0" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="1167.28" y="1119.5" ></text>
</g>
<g >
<title>0x190ce8 (915 samples, 0.01%)</title><rect x="10.3" y="181" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="13.31" y="191.5" ></text>
</g>
<g >
<title>_task_fn_tx (11,182 samples, 0.17%)</title><rect x="720.6" y="1141" width="2.0" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="723.59" y="1151.5" ></text>
</g>
<g >
<title>m_tag_copy_chain (16,453 samples, 0.25%)</title><rect x="1071.3" y="1109" width="2.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1074.26" y="1119.5" ></text>
</g>
<g >
<title>m_free (363,110 samples, 5.55%)</title><rect x="317.8" y="933" width="65.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="320.81" y="943.5" >m_free</text>
</g>
<g >
<title>trash_init (706 samples, 0.01%)</title><rect x="1175.7" y="965" width="0.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1178.72" y="975.5" ></text>
</g>
<g >
<title>pf_packet_rework_nat (1,003,470 samples, 15.34%)</title><rect x="459.9" y="949" width="181.1" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="462.94" y="959.5" >pf_packet_rework_nat</text>
</g>
<g >
<title>igb_isc_rxd_refill (1,691 samples, 0.03%)</title><rect x="81.5" y="1093" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="84.45" y="1103.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (624 samples, 0.01%)</title><rect x="576.1" y="901" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="579.14" y="911.5" ></text>
</g>
<g >
<title>if_getsoftc (697 samples, 0.01%)</title><rect x="922.5" y="1077" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="925.51" y="1087.5" ></text>
</g>
<g >
<title>FSE_NCountWriteBound (4,329 samples, 0.07%)</title><rect x="1127.9" y="1141" width="0.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="1130.86" y="1151.5" ></text>
</g>
<g >
<title>mb_ctor_mbuf (3,819 samples, 0.06%)</title><rect x="611.0" y="885" width="0.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="613.98" y="895.5" ></text>
</g>
<g >
<title>spinlock_exit (45,002 samples, 0.69%)</title><rect x="549.4" y="901" width="8.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="552.44" y="911.5" ></text>
</g>
<g >
<title>uma_zfree_arg (672 samples, 0.01%)</title><rect x="596.9" y="869" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="599.87" y="879.5" ></text>
</g>
<g >
<title>0x18e09c (987 samples, 0.02%)</title><rect x="10.3" y="853" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="13.31" y="863.5" ></text>
</g>
<g >
<title>memset_std (23,521 samples, 0.36%)</title><rect x="493.3" y="933" width="4.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="496.26" y="943.5" ></text>
</g>
<g >
<title>0x292340 (987 samples, 0.02%)</title><rect x="10.3" y="1125" width="0.2" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="13.31" y="1135.5" ></text>
</g>
<g >
<title>memcmp (3,594 samples, 0.05%)</title><rect x="706.2" y="1061" width="0.7" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="709.23" y="1071.5" ></text>
</g>
<g >
<title>0x635b8 (2,453 samples, 0.04%)</title><rect x="660.2" y="949" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="663.15" y="959.5" ></text>
</g>
<g >
<title>uma_zfree_arg (1,085 samples, 0.02%)</title><rect x="1137.2" y="1109" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1140.17" y="1119.5" ></text>
</g>
<g >
<title>pfi_cleanup_vnet (246,315 samples, 3.77%)</title><rect x="596.3" y="917" width="44.4" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="599.25" y="927.5" >pfi_..</text>
</g>
<g >
<title>trash_init (1,557 samples, 0.02%)</title><rect x="1161.6" y="1013" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1164.55" y="1023.5" ></text>
</g>
<g >
<title>0x635c0 (607 samples, 0.01%)</title><rect x="660.6" y="949" width="0.1" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="663.60" y="959.5" ></text>
</g>
<g >
<title>uma_zfree_arg (1,261 samples, 0.02%)</title><rect x="559.5" y="853" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="562.51" y="863.5" ></text>
</g>
<g >
<title>tcp_lro_flush (3,287 samples, 0.05%)</title><rect x="708.2" y="1093" width="0.6" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="711.25" y="1103.5" ></text>
</g>
<g >
<title>taskqueue_thread_loop (252,655 samples, 3.86%)</title><rect x="1127.7" y="1173" width="45.6" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1130.74" y="1183.5" >task..</text>
</g>
<g >
<title>cache_alloc (5,974 samples, 0.09%)</title><rect x="1161.3" y="1061" width="1.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1164.33" y="1071.5" ></text>
</g>
<g >
<title>0x479f8 (10,076 samples, 0.15%)</title><rect x="677.5" y="933" width="1.8" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="680.51" y="943.5" ></text>
</g>
<g >
<title>ip_input (2,245,264 samples, 34.33%)</title><rect x="297.4" y="1013" width="405.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="300.43" y="1023.5" >ip_input</text>
</g>
<g >
<title>swi_net (46,480 samples, 0.71%)</title><rect x="1113.3" y="1157" width="8.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1116.27" y="1167.5" ></text>
</g>
<g >
<title>item_ctor (135,081 samples, 2.07%)</title><rect x="464.1" y="917" width="24.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="467.15" y="927.5" >i..</text>
</g>
<g >
<title>zcp_get_prop (1,048 samples, 0.02%)</title><rect x="1189.0" y="1109" width="0.2" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1192.03" y="1119.5" ></text>
</g>
<g >
<title>xpt_run_allocq (1,818 samples, 0.03%)</title><rect x="1158.3" y="1061" width="0.3" height="15.0" fill="rgb(226,100,23)" rx="2" ry="2" />
<text x="1161.29" y="1071.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="693" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="703.5" ></text>
</g>
<g >
<title>spinlock_exit (232,425 samples, 3.55%)</title><rect x="741.9" y="1125" width="41.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="744.87" y="1135.5" >spi..</text>
</g>
<g >
<title>item_ctor (3,943 samples, 0.06%)</title><rect x="1136.4" y="1109" width="0.7" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1139.43" y="1119.5" ></text>
</g>
<g >
<title>trash_ctor (28,851 samples, 0.44%)</title><rect x="1166.3" y="1125" width="5.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1169.32" y="1135.5" ></text>
</g>
<g >
<title>if_getdrvflags (719 samples, 0.01%)</title><rect x="922.4" y="1077" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="925.38" y="1087.5" ></text>
</g>
<g >
<title>item_dtor (57,702 samples, 0.88%)</title><rect x="862.6" y="1109" width="10.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="865.59" y="1119.5" ></text>
</g>
<g >
<title>zone_import (1,220 samples, 0.02%)</title><rect x="1162.1" y="997" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1165.14" y="1007.5" ></text>
</g>
<g >
<title>spinlock_exit (121,176 samples, 1.85%)</title><rect x="515.2" y="885" width="21.9" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="518.23" y="895.5" >s..</text>
</g>
<g >
<title>pmap_kextract (3,655 samples, 0.06%)</title><rect x="360.3" y="837" width="0.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="363.31" y="847.5" ></text>
</g>
<g >
<title>pfr_update_stats (71,150 samples, 1.09%)</title><rect x="1075.8" y="1109" width="12.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="1078.84" y="1119.5" ></text>
</g>
<g >
<title>pf_osfp_add (35,252 samples, 0.54%)</title><rect x="405.0" y="965" width="6.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="408.01" y="975.5" ></text>
</g>
<g >
<title>spinlock_exit (2,040 samples, 0.03%)</title><rect x="514.8" y="869" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="517.83" y="879.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_unload (877 samples, 0.01%)</title><rect x="963.5" y="997" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="966.52" y="1007.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (7,579 samples, 0.12%)</title><rect x="1061.5" y="997" width="1.4" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1064.48" y="1007.5" ></text>
</g>
<g >
<title>iflib_if_transmit (765 samples, 0.01%)</title><rect x="1068.7" y="1093" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1071.68" y="1103.5" ></text>
</g>
<g >
<title>iflib_txq_can_reclaim (52,481 samples, 0.80%)</title><rect x="1058.8" y="1013" width="9.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="1061.78" y="1023.5" ></text>
</g>
<g >
<title>0x258c1c (987 samples, 0.02%)</title><rect x="10.3" y="485" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.31" y="495.5" ></text>
</g>
<g >
<title>cache_alloc_retry (1,706 samples, 0.03%)</title><rect x="463.8" y="917" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="466.84" y="927.5" ></text>
</g>
<g >
<title>spa_sync (8,629 samples, 0.13%)</title><rect x="1171.6" y="1125" width="1.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="1174.55" y="1135.5" ></text>
</g>
<g >
<title>spa_condense_indirect_thread (18,281 samples, 0.28%)</title><rect x="1185.7" y="1077" width="3.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1188.70" y="1087.5" ></text>
</g>
<g >
<title>pf_walk_option6 (43,239 samples, 0.66%)</title><rect x="965.3" y="917" width="7.8" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="968.30" y="927.5" ></text>
</g>
<g >
<title>pf_kkif_free (332,815 samples, 5.09%)</title><rect x="497.5" y="933" width="60.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="500.51" y="943.5" >pf_kki..</text>
</g>
<g >
<title>pmap_kextract (2,123 samples, 0.03%)</title><rect x="319.2" y="901" width="0.4" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="322.25" y="911.5" ></text>
</g>
<g >
<title>igb_isc_rxd_pkt_get (29,923 samples, 0.46%)</title><rect x="209.6" y="1109" width="5.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="212.60" y="1119.5" ></text>
</g>
<g >
<title>_rm_rlock_debug (595 samples, 0.01%)</title><rect x="387.2" y="965" width="0.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="390.24" y="975.5" ></text>
</g>
<g >
<title>pf_ioctl_get_ruleset (64,183 samples, 0.98%)</title><rect x="643.9" y="949" width="11.6" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="646.91" y="959.5" ></text>
</g>
<g >
<title>kmem_back_domain (613 samples, 0.01%)</title><rect x="1185.8" y="949" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1188.75" y="959.5" ></text>
</g>
<g >
<title>space_map_write (9,047 samples, 0.14%)</title><rect x="1183.9" y="1045" width="1.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1186.87" y="1055.5" ></text>
</g>
<g >
<title>0x63100 (364,322 samples, 5.57%)</title><rect x="317.7" y="965" width="65.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="320.71" y="975.5" >0x63100</text>
</g>
<g >
<title>memcpy_std (40,254 samples, 0.62%)</title><rect x="712.9" y="1125" width="7.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="715.92" y="1135.5" ></text>
</g>
<g >
<title>vm_phys_paddr_to_vm_page (2,410 samples, 0.04%)</title><rect x="892.7" y="1077" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="895.70" y="1087.5" ></text>
</g>
<g >
<title>m_copydata (950 samples, 0.01%)</title><rect x="691.5" y="933" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="694.50" y="943.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="357" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="367.5" ></text>
</g>
<g >
<title>uma_zfree_arg (128,796 samples, 1.97%)</title><rect x="963.8" y="965" width="23.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="966.83" y="975.5" >u..</text>
</g>
<g >
<title>cpu_search_highest (583 samples, 0.01%)</title><rect x="11.8" y="1173" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="14.78" y="1183.5" ></text>
</g>
<g >
<title>pfil_mbuf_in (607 samples, 0.01%)</title><rect x="1119.5" y="1125" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1122.52" y="1135.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (63,561 samples, 0.97%)</title><rect x="580.0" y="917" width="11.5" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="583.01" y="927.5" ></text>
</g>
<g >
<title>ZSTD_decompressSequences (3,272 samples, 0.05%)</title><rect x="10.9" y="1141" width="0.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="13.91" y="1151.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (572 samples, 0.01%)</title><rect x="965.4" y="853" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="968.45" y="863.5" ></text>
</g>
<g >
<title>memset_std (1,048 samples, 0.02%)</title><rect x="1185.5" y="1077" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1188.51" y="1087.5" ></text>
</g>
<g >
<title>m_adj (1,378 samples, 0.02%)</title><rect x="703.7" y="1045" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="706.74" y="1055.5" ></text>
</g>
<g >
<title>if_getnumadomain (616 samples, 0.01%)</title><rect x="35.5" y="1125" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="38.54" y="1135.5" ></text>
</g>
<g >
<title>vdev_indirect_mapping_add_entries (646 samples, 0.01%)</title><rect x="1183.6" y="1093" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1186.65" y="1103.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (619 samples, 0.01%)</title><rect x="1158.2" y="1061" width="0.1" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1161.16" y="1071.5" ></text>
</g>
<g >
<title>vdev_initialize_load (19,229 samples, 0.29%)</title><rect x="1175.4" y="1077" width="3.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1178.38" y="1087.5" ></text>
</g>
<g >
<title>_rw_wlock_cookie (3,919 samples, 0.06%)</title><rect x="1165.4" y="1029" width="0.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="1168.35" y="1039.5" ></text>
</g>
<g >
<title>uma_dbg_free (73,166 samples, 1.12%)</title><rect x="973.3" y="933" width="13.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="976.32" y="943.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="453" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="463.5" ></text>
</g>
<g >
<title>drain_ring_lockless (724,320 samples, 11.08%)</title><rect x="937.9" y="1045" width="130.7" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="940.93" y="1055.5" >drain_ring_lockl..</text>
</g>
<g >
<title>trash_ctor (113,762 samples, 1.74%)</title><rect x="611.9" y="901" width="20.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="614.93" y="911.5" ></text>
</g>
<g >
<title>pfil_mbuf_out (76,355 samples, 1.17%)</title><rect x="1074.9" y="1125" width="13.8" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="1077.90" y="1135.5" ></text>
</g>
<g >
<title>in_epoch_verbose (10,662 samples, 0.16%)</title><rect x="704.3" y="1061" width="1.9" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="707.31" y="1071.5" ></text>
</g>
<g >
<title>ether_input (2,557,854 samples, 39.11%)</title><rect x="245.4" y="1093" width="461.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="248.36" y="1103.5" >ether_input</text>
</g>
<g >
<title>spa_scan_range (574 samples, 0.01%)</title><rect x="1164.1" y="1013" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1167.12" y="1023.5" ></text>
</g>
<g >
<title>0x6db5c (1,398 samples, 0.02%)</title><rect x="384.0" y="949" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="387.04" y="959.5" ></text>
</g>
<g >
<title>ether_output_frame (1,534 samples, 0.02%)</title><rect x="1069.7" y="1109" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1072.72" y="1119.5" ></text>
</g>
<g >
<title>pfr_kstate_counter_add (655 samples, 0.01%)</title><rect x="1088.5" y="1093" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="1091.49" y="1103.5" ></text>
</g>
<g >
<title>item_dtor (117,944 samples, 1.80%)</title><rect x="965.3" y="949" width="21.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="968.26" y="959.5" >i..</text>
</g>
<g >
<title>igb_isc_txd_flush (28,777 samples, 0.44%)</title><rect x="1053.6" y="997" width="5.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1056.58" y="1007.5" ></text>
</g>
<g >
<title>handle_el0_sync (1,799 samples, 0.03%)</title><rect x="1189.7" y="1205" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="1192.67" y="1215.5" ></text>
</g>
<g >
<title>uma_zfree_arg (6,003 samples, 0.09%)</title><rect x="1164.3" y="1125" width="1.0" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1167.25" y="1135.5" ></text>
</g>
<g >
<title>in_epoch_verbose (9,857 samples, 0.15%)</title><rect x="915.8" y="1061" width="1.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="918.82" y="1071.5" ></text>
</g>
<g >
<title>spa_scan_range (25,599 samples, 0.39%)</title><rect x="1179.0" y="1061" width="4.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1182.01" y="1071.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (3,284 samples, 0.05%)</title><rect x="365.6" y="869" width="0.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="368.63" y="879.5" ></text>
</g>
<g >
<title>pfi_cleanup_vnet (960 samples, 0.01%)</title><rect x="595.8" y="917" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="598.80" y="927.5" ></text>
</g>
<g >
<title>trash_ctor (1,595 samples, 0.02%)</title><rect x="862.3" y="1093" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="865.27" y="1103.5" ></text>
</g>
<g >
<title>ether_nh_input (2,498,613 samples, 38.21%)</title><rect x="253.5" y="1061" width="450.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="256.47" y="1071.5" >ether_nh_input</text>
</g>
<g >
<title>_nvme_qpair_process_completions (2,103 samples, 0.03%)</title><rect x="837.3" y="1141" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="840.29" y="1151.5" ></text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="949" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="959.5" ></text>
</g>
<g >
<title>in_realm (1,098 samples, 0.02%)</title><rect x="101.8" y="1061" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="104.81" y="1071.5" ></text>
</g>
<g >
<title>spinlock_exit (214,218 samples, 3.28%)</title><rect x="783.8" y="1141" width="38.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="786.84" y="1151.5" >spi..</text>
</g>
<g >
<title>0x18e8b4 (785 samples, 0.01%)</title><rect x="10.1" y="1157" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.10" y="1167.5" ></text>
</g>
<g >
<title>0x63568 (1,128 samples, 0.02%)</title><rect x="658.4" y="949" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="661.43" y="959.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="1061" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="1071.5" ></text>
</g>
<g >
<title>0x18ebac (987 samples, 0.02%)</title><rect x="10.3" y="805" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="13.31" y="815.5" ></text>
</g>
<g >
<title>pf_nvuint64_array (6,435 samples, 0.10%)</title><rect x="681.2" y="933" width="1.2" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="684.23" y="943.5" ></text>
</g>
<g >
<title>vdev_initialize_change_state (9,194 samples, 0.14%)</title><rect x="1183.8" y="1093" width="1.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1186.85" y="1103.5" ></text>
</g>
<g >
<title>_epoch_enter_preempt (23,085 samples, 0.35%)</title><rect x="265.6" y="1029" width="4.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="268.57" y="1039.5" ></text>
</g>
<g >
<title>lock_delay (7,814 samples, 0.12%)</title><rect x="590.1" y="885" width="1.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="593.06" y="895.5" ></text>
</g>
<g >
<title>grouptaskqueue_enqueue (8,326 samples, 0.13%)</title><rect x="33.9" y="1125" width="1.5" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="36.90" y="1135.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="629" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="639.5" ></text>
</g>
<g >
<title>sleepq_timedwait (604 samples, 0.01%)</title><rect x="1122.0" y="1141" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="1124.96" y="1151.5" ></text>
</g>
<g >
<title>igb_isc_txd_credits_update (29,889 samples, 0.46%)</title><rect x="1062.9" y="997" width="5.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1065.85" y="1007.5" ></text>
</g>
<g >
<title>zone_import (5,808 samples, 0.09%)</title><rect x="1161.4" y="1045" width="1.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1164.36" y="1055.5" ></text>
</g>
<g >
<title>0x18e8b4 (782 samples, 0.01%)</title><rect x="10.1" y="1109" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.10" y="1119.5" ></text>
</g>
<g >
<title>space_map_write (558 samples, 0.01%)</title><rect x="11.2" y="1045" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="14.23" y="1055.5" ></text>
</g>
<g >
<title>uma_dbg_free (214,951 samples, 3.29%)</title><rect x="326.8" y="869" width="38.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="329.85" y="879.5" >uma..</text>
</g>
<g >
<title>g_io_deliver (1,045 samples, 0.02%)</title><rect x="837.4" y="1061" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="840.37" y="1071.5" ></text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="597" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="607.5" ></text>
</g>
<g >
<title>item_ctor (1,953 samples, 0.03%)</title><rect x="215.4" y="1109" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="218.37" y="1119.5" ></text>
</g>
<g >
<title>pf_src_connlimit (1,142 samples, 0.02%)</title><rect x="1122.1" y="1157" width="0.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1125.10" y="1167.5" ></text>
</g>
<g >
<title>SipHash_SetKey (4,496 samples, 0.07%)</title><rect x="420.0" y="949" width="0.8" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text x="422.97" y="959.5" ></text>
</g>
<g >
<title>keg_alloc_slab (5,113 samples, 0.08%)</title><rect x="1161.4" y="1029" width="1.0" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1164.43" y="1039.5" ></text>
</g>
<g >
<title>witness_checkorder (1,010 samples, 0.02%)</title><rect x="698.9" y="949" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="701.89" y="959.5" ></text>
</g>
<g >
<title>pf_map_addr (37,362 samples, 0.57%)</title><rect x="691.7" y="933" width="6.7" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="694.67" y="943.5" ></text>
</g>
<g >
<title>spa_scan_range (14,416 samples, 0.22%)</title><rect x="1124.9" y="1077" width="2.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1127.93" y="1087.5" ></text>
</g>
<g >
<title>vdev_uberblock_load_done (987 samples, 0.02%)</title><rect x="1164.1" y="1109" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1167.06" y="1119.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (1,495 samples, 0.02%)</title><rect x="711.9" y="1109" width="0.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="714.88" y="1119.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (979 samples, 0.01%)</title><rect x="10.3" y="325" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="335.5" ></text>
</g>
<g >
<title>0x1ec82c (987 samples, 0.02%)</title><rect x="10.3" y="821" width="0.2" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="13.31" y="831.5" ></text>
</g>
<g >
<title>FSE_writeNCount_generic (81,319 samples, 1.24%)</title><rect x="1142.0" y="1141" width="14.7" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1144.98" y="1151.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="1029" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="1039.5" ></text>
</g>
<g >
<title>ifmp_ring_check_drainage (1,478 samples, 0.02%)</title><rect x="722.2" y="1125" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="725.19" y="1135.5" ></text>
</g>
<g >
<title>gtaskqueue_run_locked (4,004,724 samples, 61.24%)</title><rect x="13.1" y="1157" width="722.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="16.11" y="1167.5" >gtaskqueue_run_locked</text>
</g>
<g >
<title>0x18e8b4 (683 samples, 0.01%)</title><rect x="10.3" y="53" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.32" y="63.5" ></text>
</g>
<g >
<title>spa_scan_range (9,017 samples, 0.14%)</title><rect x="1183.9" y="1029" width="1.6" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1186.88" y="1039.5" ></text>
</g>
<g >
<title>ZSTD_compressBlock_greedy_dedicatedDictSearch_row (817 samples, 0.01%)</title><rect x="837.4" y="1029" width="0.1" height="15.0" fill="rgb(216,50,12)" rx="2" ry="2" />
<text x="840.38" y="1039.5" ></text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="773" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="783.5" ></text>
</g>
<g >
<title>memcpy_std (6,222 samples, 0.10%)</title><rect x="1173.7" y="1093" width="1.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1176.73" y="1103.5" ></text>
</g>
<g >
<title>_rm_rlock (11,062 samples, 0.17%)</title><rect x="662.7" y="949" width="2.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="665.73" y="959.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (927 samples, 0.01%)</title><rect x="10.3" y="197" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="207.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="885" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="895.5" ></text>
</g>
<g >
<title>vdev_indirect_mapping_add_entries (584 samples, 0.01%)</title><rect x="1175.2" y="1093" width="0.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="1178.19" y="1103.5" ></text>
</g>
<g >
<title>PHYS_TO_VM_PAGE (11,779 samples, 0.18%)</title><rect x="99.7" y="1061" width="2.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="102.69" y="1071.5" ></text>
</g>
<g >
<title>pagezero_cache (571 samples, 0.01%)</title><rect x="1161.9" y="981" width="0.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="1164.89" y="991.5" ></text>
</g>
<g >
<title>zfs_range_tree_seg64_find_in_buf (89,431 samples, 1.37%)</title><rect x="1173.4" y="1125" width="16.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="1176.42" y="1135.5" ></text>
</g>
<g >
<title>bpf_filter (38,815 samples, 0.59%)</title><rect x="279.9" y="1029" width="7.0" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="282.87" y="1039.5" ></text>
</g>
<g >
<title>SipHash_End (24,864 samples, 0.38%)</title><rect x="413.4" y="949" width="4.5" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="416.45" y="959.5" ></text>
</g>
<g >
<title>in_delayed_cksum_o (3,273 samples, 0.05%)</title><rect x="902.9" y="1125" width="0.6" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="905.89" y="1135.5" ></text>
</g>
<g >
<title>pf_nvuint64 (1,070 samples, 0.02%)</title><rect x="681.0" y="933" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="684.03" y="943.5" ></text>
</g>
<g >
<title>0x6eea0 (5,543 samples, 0.08%)</title><rect x="396.3" y="933" width="1.0" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="399.32" y="943.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="469" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="479.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="741" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="751.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="709" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="719.5" ></text>
</g>
<g >
<title>in_epoch (1,992 samples, 0.03%)</title><rect x="309.5" y="997" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="312.47" y="1007.5" ></text>
</g>
<g >
<title>ifmp_ring_enqueue (741,590 samples, 11.34%)</title><rect x="934.8" y="1061" width="133.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="937.84" y="1071.5" >ifmp_ring_enqueue</text>
</g>
<g >
<title>ether_nh_input (1,339 samples, 0.02%)</title><rect x="247.5" y="1077" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="250.47" y="1087.5" ></text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="997" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="1007.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="933" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="943.5" ></text>
</g>
<g >
<title>g_io_deliver (913 samples, 0.01%)</title><rect x="837.4" y="1045" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="840.38" y="1055.5" ></text>
</g>
<g >
<title>__mtx_assert (2,844 samples, 0.04%)</title><rect x="736.5" y="1141" width="0.5" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="739.47" y="1151.5" ></text>
</g>
<g >
<title>0x635c4 (2,523 samples, 0.04%)</title><rect x="660.7" y="949" width="0.5" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="663.71" y="959.5" ></text>
</g>
<g >
<title>pfi_rename_ifnet_event (249,070 samples, 3.81%)</title><rect x="596.0" y="933" width="44.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="598.97" y="943.5" >pfi_..</text>
</g>
<g >
<title>pf_walk_header6 (5,059 samples, 0.08%)</title><rect x="699.1" y="965" width="0.9" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="702.13" y="975.5" ></text>
</g>
<g >
<title>swi_sched (294,621 samples, 4.51%)</title><rect x="504.4" y="917" width="53.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="507.40" y="927.5" >swi_s..</text>
</g>
<g >
<title>pf_walk_header6 (808 samples, 0.01%)</title><rect x="1088.3" y="1093" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1091.34" y="1103.5" ></text>
</g>
<g >
<title>0x6342c (2,408 samples, 0.04%)</title><rect x="385.9" y="965" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="388.94" y="975.5" ></text>
</g>
<g >
<title>0x6dc50 (6,932 samples, 0.11%)</title><rect x="654.1" y="885" width="1.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="657.09" y="895.5" ></text>
</g>
<g >
<title>sleepq_switch (766 samples, 0.01%)</title><rect x="824.2" y="1157" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="827.21" y="1167.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (5,065 samples, 0.08%)</title><rect x="836.2" y="1157" width="0.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="839.21" y="1167.5" ></text>
</g>
<g >
<title>ip_output_send (920,883 samples, 14.08%)</title><rect x="904.2" y="1125" width="166.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="907.19" y="1135.5" >ip_output_send</text>
</g>
<g >
<title>0x25010c (987 samples, 0.02%)</title><rect x="10.3" y="1109" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text x="13.31" y="1119.5" ></text>
</g>
<g >
<title>kmem_malloc_domainset (4,645 samples, 0.07%)</title><rect x="1165.3" y="1061" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1168.35" y="1071.5" ></text>
</g>
<g >
<title>vdev_mirror_io_start (763 samples, 0.01%)</title><rect x="1158.8" y="1061" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1161.83" y="1071.5" ></text>
</g>
<g >
<title>e1000_wr32 (11,977 samples, 0.18%)</title><rect x="1056.6" y="981" width="2.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text x="1059.61" y="991.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="517" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="527.5" ></text>
</g>
<g >
<title>ether_nh_input (3,237 samples, 0.05%)</title><rect x="708.3" y="1045" width="0.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="711.25" y="1055.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_unload (1,719 samples, 0.03%)</title><rect x="232.8" y="1093" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="235.85" y="1103.5" ></text>
</g>
<g >
<title>m_freem (364,018 samples, 5.57%)</title><rect x="317.8" y="949" width="65.6" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="320.77" y="959.5" >m_freem</text>
</g>
<g >
<title>witness_checkorder (9,984 samples, 0.15%)</title><rect x="739.5" y="1125" width="1.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="742.52" y="1135.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (8,918 samples, 0.14%)</title><rect x="1113.3" y="1141" width="1.6" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="1116.31" y="1151.5" ></text>
</g>
<g >
<title>vdev_initialize_change_state (565 samples, 0.01%)</title><rect x="11.2" y="1077" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="14.23" y="1087.5" ></text>
</g>
<g >
<title>pfil_mbuf_in (2,167,737 samples, 33.15%)</title><rect x="311.4" y="997" width="391.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="314.35" y="1007.5" >pfil_mbuf_in</text>
</g>
<g >
<title>fib4_lookup (6,792 samples, 0.10%)</title><rect x="889.8" y="1125" width="1.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="892.85" y="1135.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="1013" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="1023.5" ></text>
</g>
<g >
<title>vdev_rebuild_restart_impl (56,258 samples, 0.86%)</title><rect x="1178.9" y="1109" width="10.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="1181.87" y="1119.5" ></text>
</g>
<g >
<title>pmap_kextract (4,819 samples, 0.07%)</title><rect x="366.2" y="885" width="0.9" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="369.25" y="895.5" ></text>
</g>
<g >
<title>_libmd_SHA256_Transform (1,678 samples, 0.03%)</title><rect x="1122.9" y="1125" width="0.3" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text x="1125.92" y="1135.5" ></text>
</g>
<g >
<title>iflib_if_transmit (809,191 samples, 12.37%)</title><rect x="922.6" y="1077" width="146.0" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="925.64" y="1087.5" >iflib_if_transmit</text>
</g>
<g >
<title>witness_warn (7,331 samples, 0.11%)</title><rect x="822.8" y="1141" width="1.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="825.84" y="1151.5" ></text>
</g>
<g >
<title>m_dup (24,604 samples, 0.38%)</title><rect x="1070.4" y="1125" width="4.4" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1073.41" y="1135.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (98,471 samples, 1.51%)</title><rect x="97.0" y="1077" width="17.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="99.98" y="1087.5" ></text>
</g>
<g >
<title>m_dup_pkthdr (1,765 samples, 0.03%)</title><rect x="1070.9" y="1109" width="0.3" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1073.90" y="1119.5" ></text>
</g>
<g >
<title>iflib_fl_refill (862,620 samples, 13.19%)</title><rect x="50.5" y="1109" width="155.7" height="15.0" fill="rgb(211,32,7)" rx="2" ry="2" />
<text x="53.54" y="1119.5" >iflib_fl_refill</text>
</g>
<g >
<title>generic_bs_w_4 (949 samples, 0.01%)</title><rect x="1053.4" y="997" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="1056.41" y="1007.5" ></text>
</g>
<g >
<title>spinlock_exit (6,442 samples, 0.10%)</title><rect x="34.0" y="1109" width="1.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="36.97" y="1119.5" ></text>
</g>
<g >
<title>if_inc_counter (8,454 samples, 0.13%)</title><rect x="35.8" y="1125" width="1.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="38.81" y="1135.5" ></text>
</g>
<g >
<title>pf_krule_global_RB_NFIND (18,295 samples, 0.28%)</title><rect x="684.7" y="949" width="3.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="687.69" y="959.5" ></text>
</g>
<g >
<title>0x18e8b4 (580 samples, 0.01%)</title><rect x="10.1" y="965" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.10" y="975.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (579 samples, 0.01%)</title><rect x="10.1" y="949" width="0.1" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.10" y="959.5" ></text>
</g>
<g >
<title>0x6eed4 (1,101 samples, 0.02%)</title><rect x="398.9" y="949" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="401.90" y="959.5" ></text>
</g>
<g >
<title>in_epoch_verbose (16,365 samples, 0.25%)</title><rect x="313.8" y="981" width="2.9" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="316.76" y="991.5" ></text>
</g>
<g >
<title>0x258090 (683 samples, 0.01%)</title><rect x="10.3" y="69" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.32" y="79.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (36,006 samples, 0.55%)</title><rect x="848.0" y="1141" width="6.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="850.98" y="1151.5" ></text>
</g>
<g >
<title>pf_walk_header6 (902 samples, 0.01%)</title><rect x="579.1" y="917" width="0.2" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="582.10" y="927.5" ></text>
</g>
<g >
<title>ether_demux (1,181 samples, 0.02%)</title><rect x="253.3" y="1061" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="256.26" y="1071.5" ></text>
</g>
<g >
<title>ZSTD_CCtx_trace (734 samples, 0.01%)</title><rect x="1156.8" y="1109" width="0.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text x="1159.78" y="1119.5" ></text>
</g>
<g >
<title>intr_event_schedule_thread (247,321 samples, 3.78%)</title><rect x="504.7" y="901" width="44.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="507.68" y="911.5" >intr..</text>
</g>
<g >
<title>__mtx_lock_sleep (585 samples, 0.01%)</title><rect x="1158.2" y="1045" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1161.17" y="1055.5" ></text>
</g>
<g >
<title>_sx_xlock (1,370 samples, 0.02%)</title><rect x="1156.9" y="1093" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1159.94" y="1103.5" ></text>
</g>
<g >
<title>netisr_dispatch (601 samples, 0.01%)</title><rect x="704.0" y="1045" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="707.04" y="1055.5" ></text>
</g>
<g >
<title>ZSTD_RowFindBestMatch_dedicatedDictSearch_4_6 (838 samples, 0.01%)</title><rect x="10.8" y="1141" width="0.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="13.76" y="1151.5" ></text>
</g>
<g >
<title>0x258090 (763 samples, 0.01%)</title><rect x="10.1" y="1077" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.10" y="1087.5" ></text>
</g>
<g >
<title>rxd_frag_to_sd (720 samples, 0.01%)</title><rect x="720.4" y="1125" width="0.1" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="723.38" y="1135.5" ></text>
</g>
<g >
<title>keg_alloc_slab (5,025 samples, 0.08%)</title><rect x="1165.3" y="1077" width="1.0" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1168.35" y="1087.5" ></text>
</g>
<g >
<title>space_map_write (564 samples, 0.01%)</title><rect x="11.2" y="1061" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="14.23" y="1071.5" ></text>
</g>
<g >
<title>memcpy_std (29,466 samples, 0.45%)</title><rect x="449.0" y="933" width="5.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="452.00" y="943.5" ></text>
</g>
<g >
<title>spa_sync_config_object (12,637 samples, 0.19%)</title><rect x="1161.3" y="1109" width="2.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1164.33" y="1119.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (1,993 samples, 0.03%)</title><rect x="205.8" y="1093" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="208.83" y="1103.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (1,648 samples, 0.03%)</title><rect x="894.4" y="1077" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="897.39" y="1087.5" ></text>
</g>
<g >
<title>trash_ctor (1,355 samples, 0.02%)</title><rect x="965.0" y="933" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="967.98" y="943.5" ></text>
</g>
<g >
<title>pf_match_translation_rule (565 samples, 0.01%)</title><rect x="316.7" y="981" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="319.71" y="991.5" ></text>
</g>
<g >
<title>uma_zfree_arg (43,201 samples, 0.66%)</title><rect x="965.3" y="901" width="7.8" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="968.31" y="911.5" ></text>
</g>
<g >
<title>0x190ce8 (786 samples, 0.01%)</title><rect x="10.1" y="1173" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="13.10" y="1183.5" ></text>
</g>
<g >
<title>_epoch_exit_preempt (12,474 samples, 0.19%)</title><rect x="990.2" y="997" width="2.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="993.24" y="1007.5" ></text>
</g>
<g >
<title>ZSTD_RowFindBestMatch_extDict_6_4 (1,869 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.99" y="1119.5" ></text>
</g>
<g >
<title>__mtx_lock_spin_flags (1,521 samples, 0.02%)</title><rect x="13.6" y="1141" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="16.60" y="1151.5" ></text>
</g>
<g >
<title>mac_mbuf_init (555 samples, 0.01%)</title><rect x="712.8" y="1125" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="715.82" y="1135.5" ></text>
</g>
<g >
<title>item_ctor (2,516 samples, 0.04%)</title><rect x="1070.4" y="1109" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1073.44" y="1119.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (36,939 samples, 0.56%)</title><rect x="199.2" y="1093" width="6.6" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="202.17" y="1103.5" ></text>
</g>
<g >
<title>0x2ad5cc (1,296 samples, 0.02%)</title><rect x="10.2" y="1205" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="13.25" y="1215.5" ></text>
</g>
<g >
<title>0x18e8b4 (605 samples, 0.01%)</title><rect x="10.1" y="1013" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.10" y="1023.5" ></text>
</g>
<g >
<title>0x6369c (2,429 samples, 0.04%)</title><rect x="662.3" y="949" width="0.4" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="665.29" y="959.5" ></text>
</g>
<g >
<title>uma_dbg_free (4,719 samples, 0.07%)</title><rect x="1120.7" y="1029" width="0.9" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1123.71" y="1039.5" ></text>
</g>
<g >
<title>in_realm (7,571 samples, 0.12%)</title><rect x="100.4" y="1045" width="1.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="103.45" y="1055.5" ></text>
</g>
<g >
<title>_task_fn_rx (3,299 samples, 0.05%)</title><rect x="12.2" y="1157" width="0.6" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="15.23" y="1167.5" ></text>
</g>
<g >
<title>item_ctor (806 samples, 0.01%)</title><rect x="1162.4" y="1077" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1165.42" y="1087.5" ></text>
</g>
<g >
<title>vm_phys_paddr_to_vm_page (25,831 samples, 0.39%)</title><rect x="361.0" y="837" width="4.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="363.97" y="847.5" ></text>
</g>
<g >
<title>__mtx_lock_sleep (3,230 samples, 0.05%)</title><rect x="847.4" y="1125" width="0.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="850.38" y="1135.5" ></text>
</g>
<g >
<title>fork_exit (6,535,062 samples, 99.93%)</title><rect x="10.5" y="1189" width="1179.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="13.52" y="1199.5" >fork_exit</text>
</g>
<g >
<title>0x635ac (1,940 samples, 0.03%)</title><rect x="659.7" y="949" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="662.70" y="959.5" ></text>
</g>
<g >
<title>m_free (5,144 samples, 0.08%)</title><rect x="1120.7" y="1077" width="0.9" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="1123.65" y="1087.5" ></text>
</g>
<g >
<title>ip_output (1,193,809 samples, 18.25%)</title><rect x="873.3" y="1141" width="215.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="876.30" y="1151.5" >ip_output</text>
</g>
<g >
<title>item_ctor (8,169 samples, 0.12%)</title><rect x="1072.2" y="1061" width="1.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1075.17" y="1071.5" ></text>
</g>
<g >
<title>pfr_update_stats (957 samples, 0.01%)</title><rect x="50.2" y="997" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="53.16" y="1007.5" ></text>
</g>
<g >
<title>0x258090 (911 samples, 0.01%)</title><rect x="10.3" y="133" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.32" y="143.5" ></text>
</g>
<g >
<title>malloc (658 samples, 0.01%)</title><rect x="1156.8" y="1093" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1159.79" y="1103.5" ></text>
</g>
<g >
<title>0x18e804 (987 samples, 0.02%)</title><rect x="10.3" y="565" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.31" y="575.5" ></text>
</g>
<g >
<title>xpt_done_process (1,860 samples, 0.03%)</title><rect x="837.3" y="1093" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="840.34" y="1103.5" ></text>
</g>
<g >
<title>0x6dbd4 (1,751 samples, 0.03%)</title><rect x="653.4" y="901" width="0.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="656.38" y="911.5" ></text>
</g>
<g >
<title>_bus_dmamap_addsegs (2,619 samples, 0.04%)</title><rect x="72.9" y="1077" width="0.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="75.92" y="1087.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (860 samples, 0.01%)</title><rect x="704.2" y="1045" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="707.15" y="1055.5" ></text>
</g>
<g >
<title>__rw_wlock_hard (3,917 samples, 0.06%)</title><rect x="1165.4" y="1013" width="0.7" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1168.35" y="1023.5" ></text>
</g>
<g >
<title>spa_vdev_indirect_mark_obsolete (24,659 samples, 0.38%)</title><rect x="1123.3" y="1173" width="4.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1126.28" y="1183.5" ></text>
</g>
<g >
<title>tcp_lro_rx_common (1,291 samples, 0.02%)</title><rect x="711.6" y="1109" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="714.64" y="1119.5" ></text>
</g>
<g >
<title>in_epoch_verbose (1,036 samples, 0.02%)</title><rect x="707.2" y="1093" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="710.18" y="1103.5" ></text>
</g>
<g >
<title>trash_ctor (460,933 samples, 7.05%)</title><rect x="115.1" y="1093" width="83.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="118.13" y="1103.5" >trash_ctor</text>
</g>
<g >
<title>0x258c1c (987 samples, 0.02%)</title><rect x="10.3" y="549" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.31" y="559.5" ></text>
</g>
<g >
<title>ndastrategy (2,543 samples, 0.04%)</title><rect x="1158.2" y="1077" width="0.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1161.16" y="1087.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (14,197 samples, 0.22%)</title><rect x="69.4" y="1093" width="2.5" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="72.39" y="1103.5" ></text>
</g>
<g >
<title>pf_krule_global_RB_NEXT (3,076 samples, 0.05%)</title><rect x="684.1" y="949" width="0.6" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="687.14" y="959.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (3,253 samples, 0.05%)</title><rect x="708.3" y="1061" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="711.25" y="1071.5" ></text>
</g>
<g >
<title>ether_demux (1,556 samples, 0.02%)</title><rect x="50.1" y="1061" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="53.06" y="1071.5" ></text>
</g>
<g >
<title>zfs_blkptr_verify (600 samples, 0.01%)</title><rect x="1189.4" y="1093" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1192.40" y="1103.5" ></text>
</g>
<g >
<title>cache_alloc_retry (2,476 samples, 0.04%)</title><rect x="559.4" y="885" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="562.37" y="895.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (684 samples, 0.01%)</title><rect x="10.3" y="85" width="0.1" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.32" y="95.5" ></text>
</g>
<g >
<title>in_realm (761 samples, 0.01%)</title><rect x="360.1" y="821" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="363.05" y="831.5" ></text>
</g>
<g >
<title>pf_create_state (100,541 samples, 1.54%)</title><rect x="558.1" y="917" width="18.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="561.11" y="927.5" ></text>
</g>
<g >
<title>igb_isc_rxd_refill (721 samples, 0.01%)</title><rect x="215.0" y="1109" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="218.00" y="1119.5" ></text>
</g>
<g >
<title>spinlock_exit (926 samples, 0.01%)</title><rect x="549.1" y="869" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="552.13" y="879.5" ></text>
</g>
<g >
<title>vn_io_fault (89,635 samples, 1.37%)</title><rect x="1173.4" y="1173" width="16.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1176.40" y="1183.5" ></text>
</g>
<g >
<title>uma_small_alloc (1,294 samples, 0.02%)</title><rect x="1161.8" y="1013" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1164.84" y="1023.5" ></text>
</g>
<g >
<title>pf_match_translation_rule (87,327 samples, 1.34%)</title><rect x="389.2" y="965" width="15.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="392.25" y="975.5" ></text>
</g>
<g >
<title>trash_ctor (5,454 samples, 0.08%)</title><rect x="1162.6" y="1077" width="0.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1165.56" y="1087.5" ></text>
</g>
<g >
<title>trash_ctor (16,325 samples, 0.25%)</title><rect x="1175.9" y="1029" width="2.9" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1178.88" y="1039.5" ></text>
</g>
<g >
<title>item_dtor (4,743 samples, 0.07%)</title><rect x="1120.7" y="1045" width="0.9" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1123.71" y="1055.5" ></text>
</g>
<g >
<title>mtrash_ctor (1,162 samples, 0.02%)</title><rect x="1072.6" y="1045" width="0.2" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1075.58" y="1055.5" ></text>
</g>
<g >
<title>zio_trim (870 samples, 0.01%)</title><rect x="1163.8" y="1093" width="0.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1166.84" y="1103.5" ></text>
</g>
<g >
<title>ether_nh_input (1,705 samples, 0.03%)</title><rect x="50.0" y="1077" width="0.3" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="53.03" y="1087.5" ></text>
</g>
<g >
<title>spa_add_healed_error (17,923 samples, 0.27%)</title><rect x="1185.7" y="1045" width="3.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1188.75" y="1055.5" ></text>
</g>
<g >
<title>vdev_raidz_map_alloc (1,380 samples, 0.02%)</title><rect x="1163.7" y="1125" width="0.3" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text x="1166.75" y="1135.5" ></text>
</g>
<g >
<title>cache_alloc_retry (2,324 samples, 0.04%)</title><rect x="1175.4" y="1029" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1178.43" y="1039.5" ></text>
</g>
<g >
<title>0x6dbd8 (9,117 samples, 0.14%)</title><rect x="653.7" y="901" width="1.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="656.70" y="911.5" ></text>
</g>
<g >
<title>mtrash_ctor (72,618 samples, 1.11%)</title><rect x="472.8" y="901" width="13.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="475.79" y="911.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (32,153 samples, 0.49%)</title><rect x="43.7" y="1109" width="5.8" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="46.68" y="1119.5" ></text>
</g>
<g >
<title>memset_std (16,731 samples, 0.26%)</title><rect x="399.1" y="949" width="3.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="402.10" y="959.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (2,959 samples, 0.05%)</title><rect x="708.3" y="1013" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="711.30" y="1023.5" ></text>
</g>
<g >
<title>pfi_initialize_vnet (8,432 samples, 0.13%)</title><rect x="403.5" y="949" width="1.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="406.49" y="959.5" ></text>
</g>
<g >
<title>vdev_rebuild (28,654 samples, 0.44%)</title><rect x="1173.7" y="1109" width="5.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1176.69" y="1119.5" ></text>
</g>
<g >
<title>vdev_mirror_rebuilding (972 samples, 0.01%)</title><rect x="1164.1" y="1093" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="1167.06" y="1103.5" ></text>
</g>
<g >
<title>lock_delay (2,231 samples, 0.03%)</title><rect x="847.6" y="1109" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="850.56" y="1119.5" ></text>
</g>
<g >
<title>0x2580f0 (987 samples, 0.02%)</title><rect x="10.3" y="869" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="13.31" y="879.5" ></text>
</g>
<g >
<title>zio_claim (876 samples, 0.01%)</title><rect x="1163.8" y="1109" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1166.84" y="1119.5" ></text>
</g>
<g >
<title>cache_alloc (2,323 samples, 0.04%)</title><rect x="1175.4" y="1013" width="0.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1178.43" y="1023.5" ></text>
</g>
<g >
<title>iflib_encap (171,929 samples, 2.63%)</title><rect x="1000.4" y="1013" width="31.0" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="1003.39" y="1023.5" >if..</text>
</g>
<g >
<title>space_map_write (9,147 samples, 0.14%)</title><rect x="1183.9" y="1061" width="1.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1186.85" y="1071.5" ></text>
</g>
<g >
<title>taskqueue_enqueue_locked (755 samples, 0.01%)</title><rect x="837.4" y="1013" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="840.40" y="1023.5" ></text>
</g>
<g >
<title>0x6356c (2,172 samples, 0.03%)</title><rect x="658.6" y="949" width="0.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="661.63" y="959.5" ></text>
</g>
<g >
<title>spa_scan_range (10,567 samples, 0.16%)</title><rect x="1159.0" y="1109" width="1.9" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1162.01" y="1119.5" ></text>
</g>
<g >
<title>netisr_dispatch (1,171 samples, 0.02%)</title><rect x="707.4" y="1093" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="710.37" y="1103.5" ></text>
</g>
<g >
<title>pfi_detach_group_event (9,400 samples, 0.14%)</title><rect x="591.5" y="933" width="1.7" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="594.50" y="943.5" ></text>
</g>
<g >
<title>pf_osfp_fingerprint_hdr (1,026 samples, 0.02%)</title><rect x="708.4" y="949" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="711.41" y="959.5" ></text>
</g>
<g >
<title>m_apply (2,173 samples, 0.03%)</title><rect x="902.5" y="1109" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="905.50" y="1119.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_load_buffer (61,904 samples, 0.95%)</title><rect x="1018.9" y="981" width="11.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="1021.91" y="991.5" ></text>
</g>
<g >
<title>in_pcblookup_lbgroup (1,424 samples, 0.02%)</title><rect x="1120.4" y="1077" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1123.40" y="1087.5" ></text>
</g>
<g >
<title>space_map_write (14,532 samples, 0.22%)</title><rect x="1124.9" y="1093" width="2.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1127.91" y="1103.5" ></text>
</g>
<g >
<title>spa_sync_tq_create (8,615 samples, 0.13%)</title><rect x="1171.6" y="1109" width="1.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1174.55" y="1119.5" ></text>
</g>
<g >
<title>pfr_update_stats (2,137,041 samples, 32.68%)</title><rect x="316.9" y="981" width="385.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="319.89" y="991.5" >pfr_update_stats</text>
</g>
<g >
<title>swi_sched (39,313 samples, 0.60%)</title><rect x="895.1" y="1077" width="7.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="898.14" y="1087.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_load_buffer (704 samples, 0.01%)</title><rect x="69.3" y="1093" width="0.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="72.26" y="1103.5" ></text>
</g>
<g >
<title>vdev_initialize_change_state (9,163 samples, 0.14%)</title><rect x="1183.9" y="1077" width="1.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1186.85" y="1087.5" ></text>
</g>
<g >
<title>FSE_compress_usingCTable_generic (1,228 samples, 0.02%)</title><rect x="1137.2" y="1141" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1140.16" y="1151.5" ></text>
</g>
<g >
<title>spa_write_cachefile (19,196 samples, 0.29%)</title><rect x="1175.4" y="1061" width="3.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1178.38" y="1071.5" ></text>
</g>
<g >
<title>igb_if_tx_queue_intr_enable (806 samples, 0.01%)</title><rect x="722.5" y="1125" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="725.46" y="1135.5" ></text>
</g>
<g >
<title>g_disk_start (2,864 samples, 0.04%)</title><rect x="1158.1" y="1093" width="0.5" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="1161.11" y="1103.5" ></text>
</g>
<g >
<title>igb_isc_rxd_available (18,875 samples, 0.29%)</title><rect x="206.2" y="1109" width="3.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="209.19" y="1119.5" ></text>
</g>
<g >
<title>uma_dbg_free (39,458 samples, 0.60%)</title><rect x="965.9" y="869" width="7.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="968.93" y="879.5" ></text>
</g>
<g >
<title>bpf_mtap (65,541 samples, 1.00%)</title><rect x="988.4" y="1013" width="11.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="991.39" y="1023.5" ></text>
</g>
<g >
<title>sync_upgrade_errlog (23,588 samples, 0.36%)</title><rect x="1123.3" y="1125" width="4.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1126.35" y="1135.5" ></text>
</g>
<g >
<title>PHYS_TO_VM_PAGE (3,479 samples, 0.05%)</title><rect x="359.6" y="837" width="0.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="362.56" y="847.5" ></text>
</g>
<g >
<title>lock_delay (1,284 samples, 0.02%)</title><rect x="1157.0" y="1061" width="0.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1159.95" y="1071.5" ></text>
</g>
<g >
<title>space_map_write (578 samples, 0.01%)</title><rect x="1164.1" y="1029" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1167.12" y="1039.5" ></text>
</g>
<g >
<title>iflib_rxeof (3,739,782 samples, 57.19%)</title><rect x="37.4" y="1125" width="674.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="40.37" y="1135.5" >iflib_rxeof</text>
</g>
<g >
<title>mtrash_dtor (958 samples, 0.01%)</title><rect x="1137.2" y="1077" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1140.18" y="1087.5" ></text>
</g>
<g >
<title>memcpy_std (1,121 samples, 0.02%)</title><rect x="1161.0" y="1109" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1163.99" y="1119.5" ></text>
</g>
<g >
<title>vm_phys_paddr_to_vm_page (5,684 samples, 0.09%)</title><rect x="487.5" y="885" width="1.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="490.49" y="895.5" ></text>
</g>
<g >
<title>0x63628 (2,161 samples, 0.03%)</title><rect x="661.7" y="949" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="664.73" y="959.5" ></text>
</g>
<g >
<title>cache_alloc_retry (1,034 samples, 0.02%)</title><rect x="1185.7" y="1029" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1188.75" y="1039.5" ></text>
</g>
<g >
<title>iflib_txd_db_check (1,694 samples, 0.03%)</title><rect x="945.9" y="1029" width="0.3" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="948.92" y="1039.5" ></text>
</g>
<g >
<title>spa_sync_config_object (34,353 samples, 0.53%)</title><rect x="1165.3" y="1141" width="6.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1168.34" y="1151.5" ></text>
</g>
<g >
<title>cache_free (3,160 samples, 0.05%)</title><rect x="965.3" y="885" width="0.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="968.35" y="895.5" ></text>
</g>
<g >
<title>malloc (166,877 samples, 2.55%)</title><rect x="463.1" y="933" width="30.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="466.12" y="943.5" >ma..</text>
</g>
<g >
<title>in_pcblookup_exact (557 samples, 0.01%)</title><rect x="1120.3" y="1077" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text x="1123.30" y="1087.5" ></text>
</g>
<g >
<title>pfattach_vnet (36,276 samples, 0.55%)</title><rect x="648.9" y="933" width="6.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="651.95" y="943.5" ></text>
</g>
<g >
<title>uma_zfree_arg (5,120 samples, 0.08%)</title><rect x="1120.7" y="1061" width="0.9" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1123.66" y="1071.5" ></text>
</g>
<g >
<title>_bus_dmamap_addsegs (1,905 samples, 0.03%)</title><rect x="1018.6" y="981" width="0.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1021.57" y="991.5" ></text>
</g>
<g >
<title>cache_alloc (2,450 samples, 0.04%)</title><rect x="559.4" y="869" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="562.37" y="879.5" ></text>
</g>
<g >
<title>spa_delegation (10,690 samples, 0.16%)</title><rect x="1159.0" y="1141" width="1.9" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text x="1161.99" y="1151.5" ></text>
</g>
<g >
<title>if_getvnet (873 samples, 0.01%)</title><rect x="35.7" y="1125" width="0.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="38.65" y="1135.5" ></text>
</g>
<g >
<title>m_tag_copy (13,482 samples, 0.21%)</title><rect x="1071.3" y="1093" width="2.5" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text x="1074.33" y="1103.5" ></text>
</g>
<g >
<title>ether_demux (2,989 samples, 0.05%)</title><rect x="708.3" y="1029" width="0.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="711.30" y="1039.5" ></text>
</g>
<g >
<title>witness_checkorder (1,956 samples, 0.03%)</title><rect x="822.5" y="1141" width="0.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="825.49" y="1151.5" ></text>
</g>
<g >
<title>ether_input (3,641 samples, 0.06%)</title><rect x="49.7" y="1109" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="52.68" y="1119.5" ></text>
</g>
<g >
<title>in_lltable_lookup (995 samples, 0.02%)</title><rect x="1068.9" y="1093" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="1071.91" y="1103.5" ></text>
</g>
<g >
<title>netisr_queue_workstream (2,526 samples, 0.04%)</title><rect x="894.7" y="1077" width="0.4" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="897.69" y="1087.5" ></text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="1045" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="1055.5" ></text>
</g>
<g >
<title>spa_state_to_name (3,352 samples, 0.05%)</title><rect x="1163.6" y="1141" width="0.6" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="1166.64" y="1151.5" ></text>
</g>
<g >
<title>ithread_loop (1,649,012 samples, 25.22%)</title><rect x="824.4" y="1173" width="297.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="827.42" y="1183.5" >ithread_loop</text>
</g>
<g >
<title>nvme_qpair_msi_handler (2,122 samples, 0.03%)</title><rect x="837.3" y="1157" width="0.4" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="840.29" y="1167.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (1,201 samples, 0.02%)</title><rect x="640.7" y="917" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="643.69" y="927.5" ></text>
</g>
<g >
<title>lock_delay (558 samples, 0.01%)</title><rect x="1158.2" y="1029" width="0.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1161.18" y="1039.5" ></text>
</g>
<g >
<title>ip_input (2,923 samples, 0.04%)</title><rect x="708.3" y="997" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="711.31" y="1007.5" ></text>
</g>
<g >
<title>0x190d54 (605 samples, 0.01%)</title><rect x="10.1" y="1029" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="13.10" y="1039.5" ></text>
</g>
<g >
<title>spa_sync_aux_dev (6,031 samples, 0.09%)</title><rect x="1164.2" y="1141" width="1.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1167.25" y="1151.5" ></text>
</g>
<g >
<title>keg_alloc_slab (1,010 samples, 0.02%)</title><rect x="1185.8" y="981" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1188.75" y="991.5" ></text>
</g>
<g >
<title>0x18e804 (987 samples, 0.02%)</title><rect x="10.3" y="501" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.31" y="511.5" ></text>
</g>
<g >
<title>tcp_lro_low_level_parser (4,414 samples, 0.07%)</title><rect x="710.7" y="1077" width="0.8" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="713.68" y="1087.5" ></text>
</g>
<g >
<title>fork_trampoline (6,535,062 samples, 99.93%)</title><rect x="10.5" y="1205" width="1179.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="13.52" y="1215.5" >fork_trampoline</text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (605 samples, 0.01%)</title><rect x="10.1" y="997" width="0.1" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.10" y="1007.5" ></text>
</g>
<g >
<title>0x258090 (782 samples, 0.01%)</title><rect x="10.1" y="1125" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.10" y="1135.5" ></text>
</g>
<g >
<title>0x18e804 (927 samples, 0.01%)</title><rect x="10.3" y="229" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.31" y="239.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (1,050 samples, 0.02%)</title><rect x="611.7" y="885" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="614.67" y="895.5" ></text>
</g>
<g >
<title>witness_warn (1,554 samples, 0.02%)</title><rect x="1121.7" y="1157" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1124.67" y="1167.5" ></text>
</g>
<g >
<title>uma_zfree_arg (2,715 samples, 0.04%)</title><rect x="382.8" y="917" width="0.5" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="385.83" y="927.5" ></text>
</g>
<g >
<title>spa_ld_log_sm_cb (12,783 samples, 0.20%)</title><rect x="1161.3" y="1125" width="2.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1164.32" y="1135.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (1,539 samples, 0.02%)</title><rect x="50.1" y="1045" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="53.06" y="1055.5" ></text>
</g>
<g >
<title>_task_fn_rx (3,888,489 samples, 59.46%)</title><rect x="19.0" y="1141" width="701.6" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="21.97" y="1151.5" >_task_fn_rx</text>
</g>
<g >
<title>0xffff000000a82abc (14,879 samples, 0.23%)</title><rect x="429.1" y="933" width="2.7" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="432.09" y="943.5" ></text>
</g>
<g >
<title>m_copydata (8,069 samples, 0.12%)</title><rect x="696.3" y="917" width="1.4" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="699.25" y="927.5" ></text>
</g>
<g >
<title>item_ctor (1,108 samples, 0.02%)</title><rect x="596.1" y="917" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="599.05" y="927.5" ></text>
</g>
<g >
<title>tcp_input (10,807 samples, 0.17%)</title><rect x="1119.6" y="1125" width="2.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="1122.63" y="1135.5" ></text>
</g>
<g >
<title>_thread_lock (2,221 samples, 0.03%)</title><rect x="514.8" y="885" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="517.79" y="895.5" ></text>
</g>
<g >
<title>__mtx_lock_spin_flags (792 samples, 0.01%)</title><rect x="12.0" y="1157" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="15.04" y="1167.5" ></text>
</g>
<g >
<title>mb_free_ext (358,709 samples, 5.49%)</title><rect x="318.1" y="917" width="64.7" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="321.11" y="927.5" >mb_free..</text>
</g>
<g >
<title>zio_dio_chksum_verify_error_report (827 samples, 0.01%)</title><rect x="10.6" y="1141" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="13.56" y="1151.5" ></text>
</g>
<g >
<title>random_fortuna_process_event (2,592 samples, 0.04%)</title><rect x="1122.8" y="1157" width="0.4" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="1125.77" y="1167.5" ></text>
</g>
<g >
<title>ether_output (914,431 samples, 13.98%)</title><rect x="904.7" y="1109" width="165.0" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="907.73" y="1119.5" >ether_output</text>
</g>
<g >
<title>spa_init (12,817 samples, 0.20%)</title><rect x="1161.3" y="1141" width="2.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="1164.32" y="1151.5" ></text>
</g>
<g >
<title>mac_mbuf_init (9,429 samples, 0.14%)</title><rect x="215.8" y="1109" width="1.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="218.75" y="1119.5" ></text>
</g>
<g >
<title>zone_alloc_item (1,584 samples, 0.02%)</title><rect x="1162.1" y="1013" width="0.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1165.07" y="1023.5" ></text>
</g>
<g >
<title>0x190c70 (987 samples, 0.02%)</title><rect x="10.3" y="677" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="13.31" y="687.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_load_buffer (10,455 samples, 0.16%)</title><rect x="78.8" y="1077" width="1.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="81.85" y="1087.5" ></text>
</g>
<g >
<title>pf_create_state (96,003 samples, 1.47%)</title><rect x="558.8" y="901" width="17.3" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="561.82" y="911.5" ></text>
</g>
<g >
<title>in_cksum_skip_partial (560 samples, 0.01%)</title><rect x="903.3" y="1077" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="906.34" y="1087.5" ></text>
</g>
<g >
<title>tcp_lro_flush_all (2,651,096 samples, 40.54%)</title><rect x="233.2" y="1109" width="478.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="236.16" y="1119.5" >tcp_lro_flush_all</text>
</g>
<g >
<title>cache_free (2,652 samples, 0.04%)</title><rect x="964.8" y="949" width="0.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="967.78" y="959.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (694 samples, 0.01%)</title><rect x="493.1" y="917" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="496.10" y="927.5" ></text>
</g>
<g >
<title>__mtx_lock_spin_flags (701 samples, 0.01%)</title><rect x="549.3" y="885" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="552.30" y="895.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (37,455 samples, 0.57%)</title><rect x="497.6" y="917" width="6.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="500.61" y="927.5" ></text>
</g>
<g >
<title>pfi_ifaddr_event (4,733 samples, 0.07%)</title><rect x="595.1" y="933" width="0.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="598.12" y="943.5" ></text>
</g>
<g >
<title>all (6,539,773 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>iflib_txq_drain (678,098 samples, 10.37%)</title><rect x="946.3" y="1029" width="122.3" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="949.27" y="1039.5" >iflib_txq_drain</text>
</g>
<g >
<title>_epoch_enter_preempt (2,229 samples, 0.03%)</title><rect x="260.4" y="1045" width="0.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="263.42" y="1055.5" ></text>
</g>
<g >
<title>pfr_kstate_counter_add (2,672 samples, 0.04%)</title><rect x="700.8" y="965" width="0.5" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="703.84" y="975.5" ></text>
</g>
<g >
<title>0x63418 (660 samples, 0.01%)</title><rect x="384.7" y="965" width="0.2" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="387.75" y="975.5" ></text>
</g>
<g >
<title>0x258c1c (684 samples, 0.01%)</title><rect x="10.3" y="101" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.32" y="111.5" ></text>
</g>
<g >
<title>spinlock_exit (2,616 samples, 0.04%)</title><rect x="901.8" y="1061" width="0.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="904.76" y="1071.5" ></text>
</g>
<g >
<title>ZSTD_getBlockSize (2,471 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.99" y="1135.5" ></text>
</g>
<g >
<title>spinlock_exit (700 samples, 0.01%)</title><rect x="837.4" y="997" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="840.40" y="1007.5" ></text>
</g>
<g >
<title>0x2924f0 (987 samples, 0.02%)</title><rect x="10.3" y="1141" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="13.31" y="1151.5" ></text>
</g>
<g >
<title>item_ctor (68,371 samples, 1.05%)</title><rect x="559.8" y="885" width="12.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="562.81" y="895.5" ></text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="901" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="911.5" ></text>
</g>
<g >
<title>pfil_mbuf_in (5,035 samples, 0.08%)</title><rect x="702.6" y="1013" width="0.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="705.55" y="1023.5" ></text>
</g>
<g >
<title>0x18e8b4 (914 samples, 0.01%)</title><rect x="10.3" y="165" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.32" y="175.5" ></text>
</g>
<g >
<title>mac_netinet_firewall_send (2,668 samples, 0.04%)</title><rect x="557.6" y="917" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="560.63" y="927.5" ></text>
</g>
<g >
<title>trash_ctor (1,720 samples, 0.03%)</title><rect x="965.6" y="869" width="0.3" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="968.55" y="879.5" ></text>
</g>
<g >
<title>in_pcblookup_smr (4,551 samples, 0.07%)</title><rect x="1119.8" y="1093" width="0.9" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="1122.83" y="1103.5" ></text>
</g>
<g >
<title>cache_alloc (1,031 samples, 0.02%)</title><rect x="1185.7" y="1013" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1188.75" y="1023.5" ></text>
</g>
<g >
<title>netisr_queue_src (50,276 samples, 0.77%)</title><rect x="893.2" y="1109" width="9.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="896.23" y="1119.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (14,287 samples, 0.22%)</title><rect x="485.9" y="901" width="2.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="488.94" y="911.5" ></text>
</g>
<g >
<title>uma_dbg_free (1,933 samples, 0.03%)</title><rect x="382.5" y="885" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="385.49" y="895.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (914 samples, 0.01%)</title><rect x="10.3" y="149" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.32" y="159.5" ></text>
</g>
<g >
<title>vdev_config_sync (1,647 samples, 0.03%)</title><rect x="1174.9" y="1077" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1177.88" y="1087.5" ></text>
</g>
<g >
<title>0x2d6234 (928 samples, 0.01%)</title><rect x="10.3" y="245" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="13.31" y="255.5" ></text>
</g>
<g >
<title>spinlock_enter (3,223 samples, 0.05%)</title><rect x="738.9" y="1125" width="0.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="741.93" y="1135.5" ></text>
</g>
<g >
<title>_epoch_enter_preempt (693 samples, 0.01%)</title><rect x="990.1" y="997" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="993.12" y="1007.5" ></text>
</g>
<g >
<title>pfil_mbuf_in (1,927 samples, 0.03%)</title><rect x="708.4" y="981" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="711.35" y="991.5" ></text>
</g>
<g >
<title>trash_dtor (8,061 samples, 0.12%)</title><rect x="1123.4" y="1077" width="1.5" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="1126.41" y="1087.5" ></text>
</g>
<g >
<title>item_ctor (82,202 samples, 1.26%)</title><rect x="597.0" y="901" width="14.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="600.03" y="911.5" ></text>
</g>
<g >
<title>scan_io_queues_run_one (1,066 samples, 0.02%)</title><rect x="1158.8" y="1141" width="0.2" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text x="1161.79" y="1151.5" ></text>
</g>
<g >
<title>kmem_back_domain (4,615 samples, 0.07%)</title><rect x="1165.4" y="1045" width="0.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1168.35" y="1055.5" ></text>
</g>
<g >
<title>_sx_xlock_hard (1,318 samples, 0.02%)</title><rect x="1156.9" y="1077" width="0.3" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1159.95" y="1087.5" ></text>
</g>
<g >
<title>vdev_initialize_change_state (566 samples, 0.01%)</title><rect x="11.2" y="1093" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="14.23" y="1103.5" ></text>
</g>
<g >
<title>igb_isc_txd_flush (947 samples, 0.01%)</title><rect x="1068.4" y="1013" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="1071.44" y="1023.5" ></text>
</g>
<g >
<title>keg_alloc_slab (2,296 samples, 0.04%)</title><rect x="1175.4" y="981" width="0.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="1178.44" y="991.5" ></text>
</g>
<g >
<title>process_error_list (8,363 samples, 0.13%)</title><rect x="1123.4" y="1109" width="1.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="1126.36" y="1119.5" ></text>
</g>
<g >
<title>pf_krule_global_RB_REMOVE_COLOR (57,752 samples, 0.88%)</title><rect x="688.0" y="949" width="10.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="690.99" y="959.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="613" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="623.5" ></text>
</g>
<g >
<title>item_ctor (616 samples, 0.01%)</title><rect x="463.0" y="933" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="466.01" y="943.5" ></text>
</g>
<g >
<title>bus_dmamap_load (49,183 samples, 0.75%)</title><rect x="71.9" y="1093" width="8.9" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="74.95" y="1103.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (62,400 samples, 0.95%)</title><rect x="221.6" y="1093" width="11.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="224.59" y="1103.5" ></text>
</g>
<g >
<title>_epoch_exit_preempt (2,594 samples, 0.04%)</title><rect x="855.8" y="1141" width="0.5" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="858.78" y="1151.5" ></text>
</g>
<g >
<title>ether_input (3,257 samples, 0.05%)</title><rect x="708.3" y="1077" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="711.25" y="1087.5" ></text>
</g>
<g >
<title>trash_dtor (1,374 samples, 0.02%)</title><rect x="319.6" y="901" width="0.3" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="322.63" y="911.5" ></text>
</g>
<g >
<title>_rxq_refill_cb (30,228 samples, 0.46%)</title><rect x="73.4" y="1077" width="5.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="76.39" y="1087.5" ></text>
</g>
<g >
<title>pmap_kextract (773 samples, 0.01%)</title><rect x="487.4" y="885" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="490.36" y="895.5" ></text>
</g>
<g >
<title>zcp_synctask_wrapper (656 samples, 0.01%)</title><rect x="1189.4" y="1109" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1192.40" y="1119.5" ></text>
</g>
<g >
<title>pf_walk_header6 (7,581 samples, 0.12%)</title><rect x="402.1" y="949" width="1.4" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="405.12" y="959.5" ></text>
</g>
<g >
<title>m_length (1,696 samples, 0.03%)</title><rect x="286.9" y="1029" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="289.88" y="1039.5" ></text>
</g>
<g >
<title>bsearch4_lookup (1,142 samples, 0.02%)</title><rect x="890.9" y="1109" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="893.87" y="1119.5" ></text>
</g>
<g >
<title>vdev_initialize_zap_remove_sync (19,297 samples, 0.30%)</title><rect x="1175.4" y="1093" width="3.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1178.37" y="1103.5" ></text>
</g>
<g >
<title>0x6eed0 (4,129 samples, 0.06%)</title><rect x="397.4" y="933" width="0.8" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
<text x="400.42" y="943.5" ></text>
</g>
<g >
<title>space_map_write (25,917 samples, 0.40%)</title><rect x="1179.0" y="1077" width="4.6" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1181.96" y="1087.5" ></text>
</g>
<g >
<title>spa_taskq_param_set (8,834 samples, 0.14%)</title><rect x="1171.5" y="1141" width="1.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="1174.54" y="1151.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (914 samples, 0.01%)</title><rect x="33.6" y="1125" width="0.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="36.56" y="1135.5" ></text>
</g>
<g >
<title>pmap_kextract (1,433 samples, 0.02%)</title><rect x="986.6" y="949" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="989.57" y="959.5" ></text>
</g>
<g >
<title>iflib_txd_db_check (151,634 samples, 2.32%)</title><rect x="1031.4" y="1013" width="27.4" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="1034.42" y="1023.5" >i..</text>
</g>
<g >
<title>bounce_bus_dmamap_sync (78,155 samples, 1.20%)</title><rect x="1003.6" y="997" width="14.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1006.58" y="1007.5" ></text>
</g>
<g >
<title>binuptime (40,318 samples, 0.62%)</title><rect x="238.1" y="1093" width="7.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="241.08" y="1103.5" ></text>
</g>
<g >
<title>netisr_queue_internal (49,162 samples, 0.75%)</title><rect x="893.4" y="1093" width="8.8" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
<text x="896.37" y="1103.5" ></text>
</g>
<g >
<title>cache_alloc_retry (5,993 samples, 0.09%)</title><rect x="1161.3" y="1077" width="1.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="1164.33" y="1087.5" ></text>
</g>
<g >
<title>kmem_malloc_domainset (1,440 samples, 0.02%)</title><rect x="1175.4" y="965" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1178.44" y="975.5" ></text>
</g>
<g >
<title>in_epoch (1,642 samples, 0.03%)</title><rect x="706.9" y="1093" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="709.88" y="1103.5" ></text>
</g>
<g >
<title>in_epoch_verbose (7,261 samples, 0.11%)</title><rect x="291.0" y="1029" width="1.3" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="293.98" y="1039.5" ></text>
</g>
<g >
<title>pf_osfp_get (80,434 samples, 1.23%)</title><rect x="641.1" y="965" width="14.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="644.13" y="975.5" ></text>
</g>
<g >
<title>0x258c1c (987 samples, 0.02%)</title><rect x="10.3" y="645" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.31" y="655.5" ></text>
</g>
<g >
<title>pf_nvuint64 (574 samples, 0.01%)</title><rect x="698.5" y="949" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="701.54" y="959.5" ></text>
</g>
<g >
<title>if_simloop (60,694 samples, 0.93%)</title><rect x="891.4" y="1125" width="10.9" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="894.37" y="1135.5" ></text>
</g>
<g >
<title>trash_ctor (2,626 samples, 0.04%)</title><rect x="1074.3" y="1109" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="1077.25" y="1119.5" ></text>
</g>
<g >
<title>in_epoch (1,525 samples, 0.02%)</title><rect x="703.5" y="1045" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="706.46" y="1055.5" ></text>
</g>
<g >
<title>__mtx_lock_sleep (8,618 samples, 0.13%)</title><rect x="589.9" y="901" width="1.6" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="592.91" y="911.5" ></text>
</g>
<g >
<title>m_tag_delete_chain (1,202 samples, 0.02%)</title><rect x="973.1" y="933" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="976.10" y="943.5" ></text>
</g>
<g >
<title>_ck_epoch_delref (1,856 samples, 0.03%)</title><rect x="265.2" y="1029" width="0.4" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="268.23" y="1039.5" ></text>
</g>
<g >
<title>0x258c1c (927 samples, 0.01%)</title><rect x="10.3" y="213" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.31" y="223.5" ></text>
</g>
<g >
<title>0x18e8b4 (762 samples, 0.01%)</title><rect x="10.1" y="1061" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.10" y="1071.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="533" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="543.5" ></text>
</g>
<g >
<title>igb_isc_txd_credits_update (1,060 samples, 0.02%)</title><rect x="1068.2" y="1013" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="1071.24" y="1023.5" ></text>
</g>
<g >
<title>0x6341c (2,910 samples, 0.04%)</title><rect x="384.9" y="965" width="0.5" height="15.0" fill="rgb(208,13,3)" rx="2" ry="2" />
<text x="387.87" y="975.5" ></text>
</g>
<g >
<title>bpf_filter (42,781 samples, 0.65%)</title><rect x="992.5" y="997" width="7.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="995.49" y="1007.5" ></text>
</g>
<g >
<title>m_freem (129,624 samples, 1.98%)</title><rect x="963.7" y="997" width="23.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="966.68" y="1007.5" >m..</text>
</g>
<g >
<title>space_map_iterate (1,309 samples, 0.02%)</title><rect x="1161.0" y="1125" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1163.98" y="1135.5" ></text>
</g>
<g >
<title>_epoch_enter_preempt (7,157 samples, 0.11%)</title><rect x="854.5" y="1141" width="1.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="857.49" y="1151.5" ></text>
</g>
<g >
<title>pfil_mbuf_in (974 samples, 0.01%)</title><rect x="50.2" y="1013" width="0.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="53.16" y="1023.5" ></text>
</g>
<g >
<title>bpf_ifnet_chkdir (694 samples, 0.01%)</title><rect x="261.2" y="1045" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="264.24" y="1055.5" ></text>
</g>
<g >
<title>SipHash_Update (185,841 samples, 2.84%)</title><rect x="420.8" y="949" width="33.5" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text x="423.79" y="959.5" >Si..</text>
</g>
<g >
<title>pfi_initialize_vnet (4,426 samples, 0.07%)</title><rect x="700.0" y="965" width="0.8" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="703.04" y="975.5" ></text>
</g>
<g >
<title>spinlock_exit (33,409 samples, 0.51%)</title><rect x="895.7" y="1045" width="6.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="898.72" y="1055.5" ></text>
</g>
<g >
<title>0x18dea8 (987 samples, 0.02%)</title><rect x="10.3" y="789" width="0.2" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
<text x="13.31" y="799.5" ></text>
</g>
<g >
<title>lock_delay (3,912 samples, 0.06%)</title><rect x="1165.4" y="997" width="0.7" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1168.35" y="1007.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="981" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="991.5" ></text>
</g>
<g >
<title>memcpy_std (3,479 samples, 0.05%)</title><rect x="1069.1" y="1093" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1072.09" y="1103.5" ></text>
</g>
<g >
<title>uma_zfree_arg (8,294 samples, 0.13%)</title><rect x="1123.4" y="1093" width="1.5" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1126.37" y="1103.5" ></text>
</g>
<g >
<title>_rm_rlock_debug (10,586 samples, 0.16%)</title><rect x="664.7" y="949" width="1.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="667.72" y="959.5" ></text>
</g>
<g >
<title>item_dtor (2,670 samples, 0.04%)</title><rect x="318.8" y="901" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="321.76" y="911.5" ></text>
</g>
<g >
<title>0xffff000000a82ad4 (1,954 samples, 0.03%)</title><rect x="904.2" y="1109" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="907.24" y="1119.5" ></text>
</g>
<g >
<title>m_adj (6,463 samples, 0.10%)</title><rect x="292.4" y="1029" width="1.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="295.39" y="1039.5" ></text>
</g>
<g >
<title>vm_phys_paddr_to_vm_page (3,187 samples, 0.05%)</title><rect x="1073.1" y="1029" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1076.07" y="1039.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (27,852 samples, 0.43%)</title><rect x="842.9" y="1141" width="5.1" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="845.95" y="1151.5" ></text>
</g>
<g >
<title>0x2ec1ac (786 samples, 0.01%)</title><rect x="10.1" y="1189" width="0.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="13.10" y="1199.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="917" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="927.5" ></text>
</g>
<g >
<title>in_realm (665 samples, 0.01%)</title><rect x="360.2" y="837" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="363.19" y="847.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (4,724 samples, 0.07%)</title><rect x="1072.8" y="1045" width="0.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1075.80" y="1055.5" ></text>
</g>
<g >
<title>uma_zfree_arg (348,919 samples, 5.34%)</title><rect x="319.9" y="901" width="62.9" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="322.88" y="911.5" >uma_zf..</text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="1077" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="1087.5" ></text>
</g>
<g >
<title>vdev_trim_thread (810 samples, 0.01%)</title><rect x="1158.8" y="1125" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="1161.83" y="1135.5" ></text>
</g>
<g >
<title>malloc (8,816 samples, 0.13%)</title><rect x="1072.2" y="1077" width="1.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1075.16" y="1087.5" ></text>
</g>
<g >
<title>in_epoch (1,070 samples, 0.02%)</title><rect x="290.8" y="1029" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="293.79" y="1039.5" ></text>
</g>
<g >
<title>mac_mbuf_init (2,688 samples, 0.04%)</title><rect x="611.2" y="869" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="614.18" y="879.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (2,815 samples, 0.04%)</title><rect x="575.6" y="869" width="0.5" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="578.57" y="879.5" ></text>
</g>
<g >
<title>rxd_frag_to_sd (87,019 samples, 1.33%)</title><rect x="217.5" y="1109" width="15.7" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text x="220.45" y="1119.5" ></text>
</g>
<g >
<title>0x290ec0 (987 samples, 0.02%)</title><rect x="10.3" y="1157" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="13.31" y="1167.5" ></text>
</g>
<g >
<title>vm_page_alloc_noobj_domain (1,274 samples, 0.02%)</title><rect x="1161.8" y="997" width="0.3" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text x="1164.84" y="1007.5" ></text>
</g>
<g >
<title>ZSTD_btGetAllMatches_extDict_3 (5,489 samples, 0.08%)</title><rect x="10.5" y="1173" width="1.0" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="13.52" y="1183.5" ></text>
</g>
<g >
<title>free (7,221 samples, 0.11%)</title><rect x="891.8" y="1093" width="1.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="894.83" y="1103.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_complete (608 samples, 0.01%)</title><rect x="1003.4" y="997" width="0.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="1006.38" y="1007.5" ></text>
</g>
<g >
<title>0x258090 (964 samples, 0.01%)</title><rect x="10.3" y="309" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="319.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (4,804 samples, 0.07%)</title><rect x="198.3" y="1093" width="0.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="201.30" y="1103.5" ></text>
</g>
<g >
<title>_rm_runlock_debug (2,869 samples, 0.04%)</title><rect x="655.7" y="949" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="658.73" y="959.5" ></text>
</g>
<g >
<title>wakeup_any (1,493 samples, 0.02%)</title><rect x="35.1" y="1109" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="38.14" y="1119.5" ></text>
</g>
<g >
<title>pfr_update_stats (6,443 samples, 0.10%)</title><rect x="701.3" y="965" width="1.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="704.32" y="975.5" ></text>
</g>
<g >
<title>sync_upgrade_errlog (919 samples, 0.01%)</title><rect x="1164.1" y="1061" width="0.1" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text x="1167.06" y="1071.5" ></text>
</g>
<g >
<title>_task_fn_tx (1,594 samples, 0.02%)</title><rect x="12.8" y="1157" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="15.83" y="1167.5" ></text>
</g>
<g >
<title>xpt_action_default (928 samples, 0.01%)</title><rect x="1158.5" y="1029" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1161.45" y="1039.5" ></text>
</g>
<g >
<title>in_epoch_verbose (2,854 samples, 0.04%)</title><rect x="1075.2" y="1109" width="0.5" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="1078.20" y="1119.5" ></text>
</g>
<g >
<title>process_error_log (14,785 samples, 0.23%)</title><rect x="1124.9" y="1109" width="2.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1127.87" y="1119.5" ></text>
</g>
<g >
<title>bpf_mtap (143,071 samples, 2.19%)</title><rect x="261.4" y="1045" width="25.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="264.37" y="1055.5" >b..</text>
</g>
<g >
<title>zone_import (1,017 samples, 0.02%)</title><rect x="1185.8" y="997" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1188.75" y="1007.5" ></text>
</g>
<g >
<title>gtaskqueue_thread_loop (4,502,855 samples, 68.85%)</title><rect x="11.9" y="1173" width="812.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="14.95" y="1183.5" >gtaskqueue_thread_loop</text>
</g>
<g >
<title>vdev_config_generate (26,107 samples, 0.40%)</title><rect x="1178.9" y="1093" width="4.7" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="1181.93" y="1103.5" ></text>
</g>
<g >
<title>_epoch_exit_preempt (1,795 samples, 0.03%)</title><rect x="260.8" y="1045" width="0.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="263.82" y="1055.5" ></text>
</g>
<g >
<title>malloc (4,032 samples, 0.06%)</title><rect x="1136.4" y="1125" width="0.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1139.43" y="1135.5" ></text>
</g>
<g >
<title>malloc (562 samples, 0.01%)</title><rect x="1158.3" y="1045" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1161.32" y="1055.5" ></text>
</g>
<g >
<title>0x479ec (696 samples, 0.01%)</title><rect x="676.6" y="933" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="679.64" y="943.5" ></text>
</g>
<g >
<title>in_cksum_skip (3,153 samples, 0.05%)</title><rect x="902.3" y="1125" width="0.6" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="905.32" y="1135.5" ></text>
</g>
<g >
<title>pf_walk_header6 (3,978 samples, 0.06%)</title><rect x="1087.6" y="1077" width="0.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="1090.62" y="1087.5" ></text>
</g>
<g >
<title>pfi_change_group_event (16,720 samples, 0.26%)</title><rect x="576.3" y="933" width="3.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="579.25" y="943.5" ></text>
</g>
<g >
<title>in_epoch_verbose (14,767 samples, 0.23%)</title><rect x="910.7" y="1077" width="2.7" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="913.72" y="1087.5" ></text>
</g>
<g >
<title>PHYS_TO_VM_PAGE (963 samples, 0.01%)</title><rect x="487.2" y="885" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="490.18" y="895.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (3,667 samples, 0.06%)</title><rect x="707.6" y="1093" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="710.58" y="1103.5" ></text>
</g>
<g >
<title>pmap_kextract (1,386 samples, 0.02%)</title><rect x="80.5" y="1061" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="83.48" y="1071.5" ></text>
</g>
<g >
<title>sleepq_switch (604 samples, 0.01%)</title><rect x="1122.0" y="1125" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1124.96" y="1135.5" ></text>
</g>
<g >
<title>xpt_done_direct (1,876 samples, 0.03%)</title><rect x="837.3" y="1109" width="0.4" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="840.34" y="1119.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="373" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="383.5" ></text>
</g>
<g >
<title>SipBuf (95,224 samples, 1.46%)</title><rect x="431.8" y="933" width="17.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="434.82" y="943.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (43,241 samples, 0.66%)</title><rect x="632.5" y="901" width="7.8" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="635.54" y="911.5" ></text>
</g>
<g >
<title>random_kthread (4,693 samples, 0.07%)</title><rect x="1122.4" y="1173" width="0.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1125.40" y="1183.5" ></text>
</g>
<g >
<title>kmem_malloc_domainset (645 samples, 0.01%)</title><rect x="1185.8" y="965" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="1188.75" y="975.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (1,495 samples, 0.02%)</title><rect x="1122.4" y="1157" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1125.42" y="1167.5" ></text>
</g>
<g >
<title>spa_add_healed_error (18,894 samples, 0.29%)</title><rect x="1175.4" y="1045" width="3.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="1178.43" y="1055.5" ></text>
</g>
<g >
<title>m_freem (5,148 samples, 0.08%)</title><rect x="1120.7" y="1093" width="0.9" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1123.65" y="1103.5" ></text>
</g>
<g >
<title>item_dtor (996 samples, 0.02%)</title><rect x="1137.2" y="1093" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1140.18" y="1103.5" ></text>
</g>
<g >
<title>dsl_dataset_get_holds (12,374 samples, 0.19%)</title><rect x="1161.3" y="1093" width="2.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1164.33" y="1103.5" ></text>
</g>
<g >
<title>cache_alloc_retry (1,324 samples, 0.02%)</title><rect x="596.8" y="901" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="599.79" y="911.5" ></text>
</g>
<g >
<title>mtrash_ctor (3,833 samples, 0.06%)</title><rect x="1136.4" y="1093" width="0.7" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="1139.44" y="1103.5" ></text>
</g>
<g >
<title>0x76a34 (1,141 samples, 0.02%)</title><rect x="643.7" y="949" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text x="646.66" y="959.5" ></text>
</g>
<g >
<title>in_ifaddr_broadcast (3,209 samples, 0.05%)</title><rect x="903.6" y="1125" width="0.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="906.60" y="1135.5" ></text>
</g>
<g >
<title>ZSTD_compressBlock_lazy_extDict_row (4,189 samples, 0.06%)</title><rect x="10.8" y="1157" width="0.7" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text x="13.76" y="1167.5" ></text>
</g>
<g >
<title>0x2ad1d0 (987 samples, 0.02%)</title><rect x="10.3" y="1173" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="13.31" y="1183.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (23,943 samples, 0.37%)</title><rect x="488.8" y="917" width="4.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="491.78" y="927.5" ></text>
</g>
<g >
<title>spinlock_exit (71,684 samples, 1.10%)</title><rect x="722.7" y="1141" width="13.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="725.74" y="1151.5" ></text>
</g>
<g >
<title>item_ctor (601 samples, 0.01%)</title><rect x="862.2" y="1093" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="865.16" y="1103.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="421" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="431.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (784 samples, 0.01%)</title><rect x="10.1" y="1141" width="0.1" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.10" y="1151.5" ></text>
</g>
<g >
<title>_epoch_enter_preempt (28,009 samples, 0.43%)</title><rect x="13.9" y="1141" width="5.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="16.91" y="1151.5" ></text>
</g>
<g >
<title>uma_dbg_getslab (90,380 samples, 1.38%)</title><rect x="349.3" y="853" width="16.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="352.32" y="863.5" ></text>
</g>
<g >
<title>0x634a0 (1,522 samples, 0.02%)</title><rect x="386.8" y="965" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="389.77" y="975.5" ></text>
</g>
<g >
<title>pfi_attach_group_event (103,413 samples, 1.58%)</title><rect x="557.6" y="933" width="18.7" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="560.59" y="943.5" ></text>
</g>
<g >
<title>_rm_assert (587 samples, 0.01%)</title><rect x="655.9" y="933" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="658.86" y="943.5" ></text>
</g>
<g >
<title>vdev_mirror_io_start (749 samples, 0.01%)</title><rect x="1158.8" y="1029" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1161.83" y="1039.5" ></text>
</g>
<g >
<title>vdev_config_generate (580 samples, 0.01%)</title><rect x="11.1" y="1077" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="14.11" y="1087.5" ></text>
</g>
<g >
<title>uma_zalloc_arg (21,428 samples, 0.33%)</title><rect x="572.2" y="885" width="3.9" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="575.21" y="895.5" ></text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="389" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="399.5" ></text>
</g>
<g >
<title>pf_osfp_match (560 samples, 0.01%)</title><rect x="50.2" y="981" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="53.20" y="991.5" ></text>
</g>
<g >
<title>cache_alloc (5,067 samples, 0.08%)</title><rect x="1165.3" y="1109" width="1.0" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="1168.34" y="1119.5" ></text>
</g>
<g >
<title>process_error_log (592 samples, 0.01%)</title><rect x="1164.1" y="1045" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1167.12" y="1055.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (697 samples, 0.01%)</title><rect x="493.0" y="901" width="0.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="495.98" y="911.5" ></text>
</g>
<g >
<title>tcp_input_with_port (10,773 samples, 0.16%)</title><rect x="1119.6" y="1109" width="2.0" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text x="1122.64" y="1119.5" ></text>
</g>
<g >
<title>bsearch4_lookup (12,830 samples, 0.20%)</title><rect x="887.5" y="1125" width="2.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="890.52" y="1135.5" ></text>
</g>
<g >
<title>m_free (129,549 samples, 1.98%)</title><rect x="963.7" y="981" width="23.4" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="966.69" y="991.5" >m..</text>
</g>
<g >
<title>uma_zalloc_debug (9,453 samples, 0.14%)</title><rect x="638.6" y="885" width="1.7" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="641.64" y="895.5" ></text>
</g>
<g >
<title>0x18e8b4 (963 samples, 0.01%)</title><rect x="10.3" y="293" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="303.5" ></text>
</g>
<g >
<title>mtrash_ctor (624 samples, 0.01%)</title><rect x="488.6" y="917" width="0.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="491.62" y="927.5" ></text>
</g>
<g >
<title>bpf_mtap (1,270 samples, 0.02%)</title><rect x="253.0" y="1061" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="255.97" y="1071.5" ></text>
</g>
<g >
<title>arpresolve (55,168 samples, 0.84%)</title><rect x="907.6" y="1093" width="10.0" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="910.64" y="1103.5" ></text>
</g>
<g >
<title>0x258090 (582 samples, 0.01%)</title><rect x="10.1" y="981" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.10" y="991.5" ></text>
</g>
<g >
<title>space_map_write (577 samples, 0.01%)</title><rect x="11.1" y="1061" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="14.11" y="1071.5" ></text>
</g>
<g >
<title>in_realm (650 samples, 0.01%)</title><rect x="1029.7" y="965" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1032.74" y="975.5" ></text>
</g>
<g >
<title>in_lltable_lookup (23,324 samples, 0.36%)</title><rect x="913.4" y="1077" width="4.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="916.39" y="1087.5" ></text>
</g>
<g >
<title>ip_input (29,939 samples, 0.46%)</title><rect x="1116.2" y="1141" width="5.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1119.18" y="1151.5" ></text>
</g>
<g >
<title>pmap_kextract (1,175 samples, 0.02%)</title><rect x="1030.1" y="981" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="1033.08" y="991.5" ></text>
</g>
<g >
<title>ZSTD_compressStream2 (4,203 samples, 0.06%)</title><rect x="1156.8" y="1125" width="0.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1159.77" y="1135.5" ></text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="437" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="447.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (987 samples, 0.02%)</title><rect x="10.3" y="581" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="591.5" ></text>
</g>
<g >
<title>spa_condense_indirect_complete_sync (23,661 samples, 0.36%)</title><rect x="1123.3" y="1141" width="4.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="1126.34" y="1151.5" ></text>
</g>
<g >
<title>mb_ctor_clust (1,829 samples, 0.03%)</title><rect x="114.7" y="1093" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="117.75" y="1103.5" ></text>
</g>
<g >
<title>0x63420 (2,548 samples, 0.04%)</title><rect x="385.4" y="965" width="0.5" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="388.39" y="975.5" ></text>
</g>
<g >
<title>ndastart (1,132 samples, 0.02%)</title><rect x="1158.4" y="1045" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="1161.42" y="1055.5" ></text>
</g>
<g >
<title>mac_mbuf_init (568 samples, 0.01%)</title><rect x="610.9" y="885" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="613.88" y="895.5" ></text>
</g>
<g >
<title>FSE_buildCTable_wksp (47,188 samples, 0.72%)</title><rect x="1128.6" y="1141" width="8.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1131.64" y="1151.5" ></text>
</g>
<g >
<title>pf_ioctl_get_ruleset (9,934 samples, 0.15%)</title><rect x="387.4" y="965" width="1.8" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="390.45" y="975.5" ></text>
</g>
<g >
<title>spinlock_exit (124,034 samples, 1.90%)</title><rect x="1090.9" y="1157" width="22.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1093.89" y="1167.5" >s..</text>
</g>
<g >
<title>zcp_get_prop (908 samples, 0.01%)</title><rect x="1189.1" y="1093" width="0.1" height="15.0" fill="rgb(217,56,13)" rx="2" ry="2" />
<text x="1192.05" y="1103.5" ></text>
</g>
<g >
<title>0x6358c (983 samples, 0.02%)</title><rect x="659.1" y="949" width="0.1" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text x="662.06" y="959.5" ></text>
</g>
<g >
<title>sleepq_switch (235,321 samples, 3.60%)</title><rect x="741.3" y="1141" width="42.5" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="744.34" y="1151.5" >sle..</text>
</g>
<g >
<title>random_harvest_queue_ (744 samples, 0.01%)</title><rect x="549.3" y="901" width="0.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="552.30" y="911.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (782 samples, 0.01%)</title><rect x="10.1" y="1093" width="0.1" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.10" y="1103.5" ></text>
</g>
<g >
<title>in_epoch_verbose (952 samples, 0.01%)</title><rect x="215.2" y="1109" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="218.20" y="1119.5" ></text>
</g>
<g >
<title>0x29e9e8 (797 samples, 0.01%)</title><rect x="10.1" y="1205" width="0.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text x="13.10" y="1215.5" ></text>
</g>
<g >
<title>trash_dtor (1,215 samples, 0.02%)</title><rect x="986.8" y="949" width="0.3" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="989.83" y="959.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (760 samples, 0.01%)</title><rect x="10.1" y="1045" width="0.1" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.10" y="1055.5" ></text>
</g>
<g >
<title>SipBuf (8,040 samples, 0.12%)</title><rect x="412.0" y="949" width="1.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="415.00" y="959.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (2,532,646 samples, 38.73%)</title><rect x="249.9" y="1077" width="457.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="252.91" y="1087.5" >netisr_dispatch_src</text>
</g>
<g >
<title>zfs_ioctl_init (804 samples, 0.01%)</title><rect x="1158.8" y="1109" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="1161.83" y="1119.5" ></text>
</g>
<g >
<title>spinlock_exit (604 samples, 0.01%)</title><rect x="1122.0" y="1109" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="1124.96" y="1119.5" ></text>
</g>
<g >
<title>in_epoch_verbose (10,938 samples, 0.17%)</title><rect x="247.9" y="1077" width="2.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="250.92" y="1087.5" ></text>
</g>
<g >
<title>raidz_syn_pqr_abd (603 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.99" y="1087.5" ></text>
</g>
<g >
<title>vdev_config_generate (571 samples, 0.01%)</title><rect x="11.3" y="1093" width="0.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text x="14.33" y="1103.5" ></text>
</g>
<g >
<title>0x6d418 (669 samples, 0.01%)</title><rect x="383.8" y="949" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="386.77" y="959.5" ></text>
</g>
<g >
<title>pf_create_state (5,543 samples, 0.08%)</title><rect x="396.3" y="917" width="1.0" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
<text x="399.32" y="927.5" ></text>
</g>
<g >
<title>pf_tcp_track_full (1,403,226 samples, 21.46%)</title><rect x="837.7" y="1157" width="253.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="840.67" y="1167.5" >pf_tcp_track_full</text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="725" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="735.5" ></text>
</g>
<g >
<title>item_dtor (223,674 samples, 3.42%)</title><rect x="325.9" y="885" width="40.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="328.87" y="895.5" >ite..</text>
</g>
<g >
<title>0x6dcd0 (43,270 samples, 0.66%)</title><rect x="965.3" y="933" width="7.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="968.30" y="943.5" ></text>
</g>
<g >
<title>_rm_runlock (1,396 samples, 0.02%)</title><rect x="656.0" y="933" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="658.96" y="943.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (1,944 samples, 0.03%)</title><rect x="640.3" y="901" width="0.4" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="643.34" y="911.5" ></text>
</g>
<g >
<title>uma_zfree_arg (1,013 samples, 0.02%)</title><rect x="463.9" y="885" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="466.92" y="895.5" ></text>
</g>
<g >
<title>VOP_WRITE_APV (89,447 samples, 1.37%)</title><rect x="1173.4" y="1141" width="16.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="1176.41" y="1151.5" ></text>
</g>
<g >
<title>item_ctor (591 samples, 0.01%)</title><rect x="964.9" y="933" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="967.87" y="943.5" ></text>
</g>
<g >
<title>vm_page_alloc_domain_iter (564 samples, 0.01%)</title><rect x="1175.6" y="933" width="0.1" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="1178.58" y="943.5" ></text>
</g>
<g >
<title>tcp_input (702 samples, 0.01%)</title><rect x="708.7" y="981" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="711.70" y="991.5" ></text>
</g>
<g >
<title>space_map_write (10,628 samples, 0.16%)</title><rect x="1159.0" y="1125" width="1.9" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="1162.00" y="1135.5" ></text>
</g>
<g >
<title>item_ctor (716 samples, 0.01%)</title><rect x="965.4" y="869" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="968.42" y="879.5" ></text>
</g>
<g >
<title>pf_map_addr (30,948 samples, 0.47%)</title><rect x="454.4" y="949" width="5.5" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" />
<text x="457.36" y="959.5" ></text>
</g>
<g >
<title>bounce_bus_dmamap_sync (73,596 samples, 1.13%)</title><rect x="1040.1" y="997" width="13.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1043.13" y="1007.5" ></text>
</g>
<g >
<title>memcpy_std (3,911 samples, 0.06%)</title><rect x="697.7" y="917" width="0.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="700.71" y="927.5" ></text>
</g>
<g >
<title>pmap_kextract (12,249 samples, 0.19%)</title><rect x="102.0" y="1061" width="2.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="105.01" y="1071.5" ></text>
</g>
<g >
<title>__mtx_lock_flags (5,351 samples, 0.08%)</title><rect x="893.4" y="1077" width="1.0" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" />
<text x="896.42" y="1087.5" ></text>
</g>
<g >
<title>tcp_lro_rx_common (14,266 samples, 0.22%)</title><rect x="708.9" y="1093" width="2.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="711.90" y="1103.5" ></text>
</g>
<g >
<title>0x6db80 (617 samples, 0.01%)</title><rect x="384.4" y="949" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="387.38" y="959.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="965" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="975.5" ></text>
</g>
<g >
<title>0x6ee98 (1,087 samples, 0.02%)</title><rect x="396.1" y="933" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="399.12" y="943.5" ></text>
</g>
<g >
<title>0x6dc48 (1,641 samples, 0.03%)</title><rect x="653.8" y="885" width="0.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="656.79" y="895.5" ></text>
</g>
<g >
<title>in_cksum_skip_partial (665 samples, 0.01%)</title><rect x="902.7" y="1093" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="905.70" y="1103.5" ></text>
</g>
<g >
<title>0xffff000000a82ab0 (2,164 samples, 0.03%)</title><rect x="428.7" y="933" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="431.69" y="943.5" ></text>
</g>
<g >
<title>spa_scan_range (565 samples, 0.01%)</title><rect x="11.1" y="1045" width="0.1" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="14.11" y="1055.5" ></text>
</g>
<g >
<title>igb_isc_rxd_flush (2,875 samples, 0.04%)</title><rect x="80.9" y="1093" width="0.6" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="83.93" y="1103.5" ></text>
</g>
<g >
<title>mb_ctor_mbuf (887 samples, 0.01%)</title><rect x="95.8" y="1077" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="98.81" y="1087.5" ></text>
</g>
<g >
<title>bus_dmamap_load_mbuf_sg (69,910 samples, 1.07%)</title><rect x="1017.7" y="997" width="12.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1020.68" y="1007.5" ></text>
</g>
<g >
<title>generic_bs_w_4 (972 samples, 0.01%)</title><rect x="33.7" y="1125" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text x="36.73" y="1135.5" ></text>
</g>
<g >
<title>keg_fetch_free_slab (563 samples, 0.01%)</title><rect x="1162.3" y="981" width="0.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="1165.25" y="991.5" ></text>
</g>
<g >
<title>uma_zfree_arg (73,403 samples, 1.12%)</title><rect x="859.9" y="1125" width="13.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="862.91" y="1135.5" ></text>
</g>
<g >
<title>memcpy_std (1,945 samples, 0.03%)</title><rect x="1070.0" y="1109" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1073.00" y="1119.5" ></text>
</g>
<g >
<title>ZSTD_compressEnd_public (1,376 samples, 0.02%)</title><rect x="1156.9" y="1109" width="0.3" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1159.94" y="1119.5" ></text>
</g>
<g >
<title>PHYS_TO_VM_PAGE (1,188 samples, 0.02%)</title><rect x="95.6" y="1077" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text x="98.60" y="1087.5" ></text>
</g>
<g >
<title>0x258090 (987 samples, 0.02%)</title><rect x="10.3" y="405" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="415.5" ></text>
</g>
<g >
<title>_libmd_SHA256_Update (1,835 samples, 0.03%)</title><rect x="1122.9" y="1141" width="0.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="1125.89" y="1151.5" ></text>
</g>
<g >
<title>ether_demux (2,299,239 samples, 35.16%)</title><rect x="288.6" y="1045" width="414.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="291.60" y="1055.5" >ether_demux</text>
</g>
<g >
<title>0x258090 (961 samples, 0.01%)</title><rect x="10.3" y="261" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.31" y="271.5" ></text>
</g>
<g >
<title>_PyEval_EvalFrameDefault (963 samples, 0.01%)</title><rect x="10.3" y="277" width="0.2" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
<text x="13.31" y="287.5" ></text>
</g>
<g >
<title>space_map_write (567 samples, 0.01%)</title><rect x="11.3" y="1077" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="14.33" y="1087.5" ></text>
</g>
<g >
<title>uma_zalloc_debug (5,835 samples, 0.09%)</title><rect x="204.8" y="1077" width="1.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="207.78" y="1087.5" ></text>
</g>
<g >
<title>pfi_detach_ifnet_event (10,623 samples, 0.16%)</title><rect x="593.2" y="933" width="1.9" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="596.20" y="943.5" ></text>
</g>
<g >
<title>free (93,966 samples, 1.44%)</title><rect x="856.3" y="1141" width="16.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="859.29" y="1151.5" ></text>
</g>
<g >
<title>g_io_request (2,919 samples, 0.04%)</title><rect x="1158.1" y="1109" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1161.10" y="1119.5" ></text>
</g>
<g >
<title>_epoch_exit_preempt (56,202 samples, 0.86%)</title><rect x="269.7" y="1029" width="10.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="272.73" y="1039.5" ></text>
</g>
<g >
<title>cache_alloc (1,668 samples, 0.03%)</title><rect x="463.8" y="901" width="0.3" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="466.85" y="911.5" ></text>
</g>
<g >
<title>ZSTD_compressBlock_doubleFast (704 samples, 0.01%)</title><rect x="1157.3" y="1093" width="0.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text x="1160.27" y="1103.5" ></text>
</g>
<g >
<title>cache_alloc (1,310 samples, 0.02%)</title><rect x="596.8" y="885" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="599.79" y="895.5" ></text>
</g>
<g >
<title>item_ctor (604 samples, 0.01%)</title><rect x="1156.8" y="1077" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1159.79" y="1087.5" ></text>
</g>
<g >
<title>nvme_qpair_complete_tracker (2,044 samples, 0.03%)</title><rect x="837.3" y="1125" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="840.31" y="1135.5" ></text>
</g>
<g >
<title>in_cksum_skip (2,429 samples, 0.04%)</title><rect x="903.0" y="1109" width="0.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="906.04" y="1119.5" ></text>
</g>
<g >
<title>uma_dbg_free (55,654 samples, 0.85%)</title><rect x="863.0" y="1093" width="10.0" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="865.96" y="1103.5" ></text>
</g>
<g >
<title>ZSTD_compressBlock_lazy_extDict (1,286 samples, 0.02%)</title><rect x="10.5" y="1157" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="13.53" y="1167.5" ></text>
</g>
<g >
<title>_ck_epoch_addref (4,327 samples, 0.07%)</title><rect x="269.0" y="1013" width="0.7" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text x="271.95" y="1023.5" ></text>
</g>
<g >
<title>in_epoch (1,132 samples, 0.02%)</title><rect x="247.7" y="1077" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="250.71" y="1087.5" ></text>
</g>
<g >
<title>0x258c1c (987 samples, 0.02%)</title><rect x="10.3" y="1093" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="13.31" y="1103.5" ></text>
</g>
<g >
<title>tcp_lro_queue_mbuf (758 samples, 0.01%)</title><rect x="711.5" y="1109" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="714.51" y="1119.5" ></text>
</g>
<g >
<title>vn_write (89,605 samples, 1.37%)</title><rect x="1173.4" y="1157" width="16.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="1176.40" y="1167.5" ></text>
</g>
<g >
<title>0x479f4 (4,016 samples, 0.06%)</title><rect x="676.8" y="933" width="0.7" height="15.0" fill="rgb(224,87,20)" rx="2" ry="2" />
<text x="679.79" y="943.5" ></text>
</g>
<g >
<title>0x18e8b4 (987 samples, 0.02%)</title><rect x="10.3" y="341" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
<text x="13.31" y="351.5" ></text>
</g>
<g >
<title>__mtx_unlock_flags (6,976 samples, 0.11%)</title><rect x="1114.9" y="1141" width="1.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="1117.92" y="1151.5" ></text>
</g>
<g >
<title>scalar_rec_pqr (1,843 samples, 0.03%)</title><rect x="1174.9" y="1093" width="0.3" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1177.85" y="1103.5" ></text>
</g>
<g >
<title>_ck_epoch_delref (905 samples, 0.01%)</title><rect x="990.0" y="997" width="0.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="992.96" y="1007.5" ></text>
</g>
<g >
<title>pf_krule_global_RB_INSERT_COLOR (97,012 samples, 1.48%)</title><rect x="666.6" y="949" width="17.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text x="669.63" y="959.5" ></text>
</g>
<g >
<title>netisr_dispatch_src (1,712 samples, 0.03%)</title><rect x="50.0" y="1093" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="53.03" y="1103.5" ></text>
</g>
<g >
<title>intr_event_schedule_thread (36,548 samples, 0.56%)</title><rect x="895.2" y="1061" width="6.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="898.17" y="1071.5" ></text>
</g>
<g >
<title>metaslab_group_passivate (3,618 samples, 0.06%)</title><rect x="1158.1" y="1141" width="0.6" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="1161.06" y="1151.5" ></text>
</g>
<g >
<title>if_inc_counter (1,627 samples, 0.02%)</title><rect x="891.1" y="1125" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="894.07" y="1135.5" ></text>
</g>
<g >
<title>0x479c0 (1,286 samples, 0.02%)</title><rect x="676.3" y="933" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="679.34" y="943.5" ></text>
</g>
<g >
<title>SipHash_InitX (2,774 samples, 0.04%)</title><rect x="419.5" y="949" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="422.47" y="959.5" ></text>
</g>
<g >
<title>pf_walk_header6 (1,343 samples, 0.02%)</title><rect x="698.6" y="949" width="0.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" />
<text x="701.64" y="959.5" ></text>
</g>
<g >
<title>__mtx_lock_spin_flags (24,018 samples, 0.37%)</title><rect x="737.0" y="1141" width="4.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="739.98" y="1151.5" ></text>
</g>
<g >
<title>item_dtor (1,753 samples, 0.03%)</title><rect x="892.4" y="1061" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="895.35" y="1071.5" ></text>
</g>
<g >
<title>igb_if_rx_queue_intr_enable (2,942 samples, 0.04%)</title><rect x="712.2" y="1125" width="0.5" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="715.15" y="1135.5" ></text>
</g>
<g >
<title>item_ctor (182,841 samples, 2.80%)</title><rect x="81.8" y="1093" width="32.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="84.76" y="1103.5" >it..</text>
</g>
<g >
<title>pf_syncookie_rotate (2,799 samples, 0.04%)</title><rect x="410.5" y="949" width="0.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="413.53" y="959.5" ></text>
</g>
<g >
<title>vdev_mirror_io_start (786 samples, 0.01%)</title><rect x="1158.8" y="1093" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="1161.83" y="1103.5" ></text>
</g>
<g >
<title>SipHash_Final (8,531 samples, 0.13%)</title><rect x="417.9" y="949" width="1.6" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text x="420.93" y="959.5" ></text>
</g>
<g >
<title>0x18e804 (684 samples, 0.01%)</title><rect x="10.3" y="117" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.32" y="127.5" ></text>
</g>
<g >
<title>arpresolve (671 samples, 0.01%)</title><rect x="904.6" y="1109" width="0.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="907.60" y="1119.5" ></text>
</g>
<g >
<title>free (1,177 samples, 0.02%)</title><rect x="1137.2" y="1125" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text x="1140.16" y="1135.5" ></text>
</g>
<g >
<title>igb_isc_txd_encap (6,228 samples, 0.10%)</title><rect x="1030.3" y="997" width="1.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text x="1033.29" y="1007.5" ></text>
</g>
<g >
<title>pf_tcp_track_full (11,420 samples, 0.17%)</title><rect x="1088.7" y="1141" width="2.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text x="1091.72" y="1151.5" ></text>
</g>
<g >
<title>zone_import (5,031 samples, 0.08%)</title><rect x="1165.3" y="1093" width="1.0" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="1168.35" y="1103.5" ></text>
</g>
<g >
<title>PyType_Ready (987 samples, 0.02%)</title><rect x="10.3" y="837" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="13.31" y="847.5" ></text>
</g>
<g >
<title>item_dtor (712 samples, 0.01%)</title><rect x="859.8" y="1125" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="862.77" y="1135.5" ></text>
</g>
</g>
</svg>

File Metadata

Mime Type
image/svg+xml
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
37081593
Default Alt Text
baseline.svg (159 KB)

Event Timeline