2021 lines
95 KiB
XML
2021 lines
95 KiB
XML
<?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="1600" height="422" onload="init(evt)" viewBox="0 0 1600 422" 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();
|
|
zoom(target);
|
|
if (!document.querySelector('.parent')) {
|
|
clearzoom();
|
|
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;
|
|
// Fit in full text width
|
|
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
|
|
return;
|
|
|
|
for (var x = txt.length - 2; x > 0; x--) {
|
|
if (t.getSubStringLength(0, x + 2) <= w) {
|
|
t.textContent = txt.substring(0, x) + "..";
|
|
return;
|
|
}
|
|
}
|
|
t.textContent = "";
|
|
}
|
|
|
|
// zoom
|
|
function zoom_reset(e) {
|
|
if (e.attributes != undefined) {
|
|
orig_load(e, "x");
|
|
orig_load(e, "width");
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for (var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_reset(c[i]);
|
|
}
|
|
}
|
|
function zoom_child(e, x, ratio) {
|
|
if (e.attributes != undefined) {
|
|
if (e.attributes.x != undefined) {
|
|
orig_save(e, "x");
|
|
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
|
|
if (e.tagName == "text")
|
|
e.attributes.x.value = find_child(e.parentNode, "rect[x]").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() {
|
|
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]);
|
|
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;
|
|
|
|
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="1600.0" height="422.0" fill="url(#background)" />
|
|
<text id="title" x="800.00" y="24" >environments/test.void-noenc: zbm.skip console=tty1 console=ttyS0,115200n8 zbm.lines=57 zbm.columns=105</text>
|
|
<text id="details" x="10.00" y="405" > </text>
|
|
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
|
|
<text id="search" x="1490.00" y="24" >Search</text>
|
|
<text id="ignorecase" x="1574.00" y="24" >ic</text>
|
|
<text id="matched" x="1490.00" y="405" > </text>
|
|
<g id="frames">
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,208 microseconds, 0.04%)</title><rect x="97.0" y="165" width="0.6" height="31.0" fill="rgb(237,33,24)" rx="2" ry="2" />
|
|
<text x="99.97" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (2,899 microseconds, 0.03%)</title><rect x="453.9" y="165" width="0.5" height="31.0" fill="rgb(205,132,51)" rx="2" ry="2" />
|
|
<text x="456.86" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,834 microseconds, 0.05%)</title><rect x="841.8" y="69" width="0.7" height="31.0" fill="rgb(238,75,43)" rx="2" ry="2" />
|
|
<text x="844.75" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (28,494 microseconds, 0.34%)</title><rect x="182.0" y="133" width="5.4" height="31.0" fill="rgb(246,108,43)" rx="2" ry="2" />
|
|
<text x="185.02" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (152,674 microseconds, 1.83%)</title><rect x="676.3" y="293" width="29.0" height="31.0" fill="rgb(252,41,36)" rx="2" ry="2" />
|
|
<text x="679.30" y="311.5" >ge..</text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,159 microseconds, 0.04%)</title><rect x="1394.2" y="229" width="0.6" height="31.0" fill="rgb(206,168,45)" rx="2" ry="2" />
|
|
<text x="1397.22" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>info@/lib/dracut-lib.sh (11,343 microseconds, 0.14%)</title><rect x="972.2" y="197" width="2.1" height="31.0" fill="rgb(216,191,23)" rx="2" ry="2" />
|
|
<text x="975.17" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zinfo@/lib/kmsg-log-lib.sh (4,555 microseconds, 0.05%)</title><rect x="640.0" y="197" width="0.9" height="31.0" fill="rgb(223,130,9)" rx="2" ry="2" />
|
|
<text x="643.00" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (33,529 microseconds, 0.40%)</title><rect x="123.1" y="133" width="6.4" height="31.0" fill="rgb(212,171,51)" rx="2" ry="2" />
|
|
<text x="126.13" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,448 microseconds, 0.04%)</title><rect x="1379.7" y="261" width="0.6" height="31.0" fill="rgb(250,112,4)" rx="2" ry="2" />
|
|
<text x="1382.66" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/zfsbootmenu/ztest/ROOT/void/mnt/etc/os-release (5,687 microseconds, 0.07%)</title><rect x="1513.7" y="229" width="1.1" height="31.0" fill="rgb(210,150,21)" rx="2" ry="2" />
|
|
<text x="1516.69" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/dracut/hooks/initqueue/finished/99-zfsbootmenu-ready-chk.sh (1,432 microseconds, 0.02%)</title><rect x="1229.0" y="261" width="0.3" height="31.0" fill="rgb(207,49,6)" rx="2" ry="2" />
|
|
<text x="1232.02" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kcl_append@/lib/zfsbootmenu-kcl.sh (3,074 microseconds, 0.04%)</title><rect x="1504.1" y="229" width="0.6" height="31.0" fill="rgb(238,5,20)" rx="2" ry="2" />
|
|
<text x="1507.11" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,800 microseconds, 0.05%)</title><rect x="1420.1" y="197" width="0.7" height="31.0" fill="rgb(205,197,17)" rx="2" ry="2" />
|
|
<text x="1423.06" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (27,694 microseconds, 0.33%)</title><rect x="694.4" y="197" width="5.2" height="31.0" fill="rgb(252,73,0)" rx="2" ry="2" />
|
|
<text x="697.36" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (2,592 microseconds, 0.03%)</title><rect x="1293.8" y="261" width="0.5" height="31.0" fill="rgb(238,177,36)" rx="2" ry="2" />
|
|
<text x="1296.84" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (22,255 microseconds, 0.27%)</title><rect x="617.9" y="197" width="4.2" height="31.0" fill="rgb(221,181,37)" rx="2" ry="2" />
|
|
<text x="620.86" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,124 microseconds, 0.04%)</title><rect x="1457.7" y="229" width="0.6" height="31.0" fill="rgb(233,110,42)" rx="2" ry="2" />
|
|
<text x="1460.67" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>load_key@/lib/zfsbootmenu-core.sh (57,959 microseconds, 0.70%)</title><rect x="1432.2" y="261" width="11.0" height="31.0" fill="rgb(218,206,46)" rx="2" ry="2" />
|
|
<text x="1435.21" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source_all@/lib/dracut-lib.sh (1,464,990 microseconds, 17.59%)</title><rect x="761.3" y="261" width="277.9" height="31.0" fill="rgb(206,6,7)" rx="2" ry="2" />
|
|
<text x="764.28" y="279.5" >source_all@/lib/dracut-lib.sh</text>
|
|
</g>
|
|
<g >
|
|
<title>getargs@/lib/dracut-lib.sh (206,776 microseconds, 2.48%)</title><rect x="333.0" y="197" width="39.2" height="31.0" fill="rgb(233,102,46)" rx="2" ry="2" />
|
|
<text x="336.02" y="215.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (87,289 microseconds, 1.05%)</title><rect x="453.4" y="197" width="16.5" height="31.0" fill="rgb(208,134,31)" rx="2" ry="2" />
|
|
<text x="456.36" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (2,550 microseconds, 0.03%)</title><rect x="1370.1" y="261" width="0.5" height="31.0" fill="rgb(226,92,46)" rx="2" ry="2" />
|
|
<text x="1373.08" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>is_snapshot@/lib/zfsbootmenu-core.sh (6,696 microseconds, 0.08%)</title><rect x="1392.7" y="229" width="1.3" height="31.0" fill="rgb(247,187,51)" rx="2" ry="2" />
|
|
<text x="1395.73" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (61,593 microseconds, 0.74%)</title><rect x="277.5" y="165" width="11.7" height="31.0" fill="rgb(227,46,33)" rx="2" ry="2" />
|
|
<text x="280.52" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (35,967 microseconds, 0.43%)</title><rect x="983.1" y="133" width="6.8" height="31.0" fill="rgb(251,107,23)" rx="2" ry="2" />
|
|
<text x="986.05" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (7,360 microseconds, 0.09%)</title><rect x="606.8" y="165" width="1.4" height="31.0" fill="rgb(252,142,37)" rx="2" ry="2" />
|
|
<text x="609.84" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (2,968 microseconds, 0.04%)</title><rect x="835.4" y="165" width="0.5" height="31.0" fill="rgb(250,9,26)" rx="2" ry="2" />
|
|
<text x="838.36" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,060 microseconds, 0.04%)</title><rect x="64.3" y="133" width="0.6" height="31.0" fill="rgb(235,89,11)" rx="2" ry="2" />
|
|
<text x="67.32" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (33,457 microseconds, 0.40%)</title><rect x="771.0" y="101" width="6.4" height="31.0" fill="rgb(227,80,28)" rx="2" ry="2" />
|
|
<text x="774.03" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (33,234 microseconds, 0.40%)</title><rect x="216.8" y="133" width="6.3" height="31.0" fill="rgb(243,165,5)" rx="2" ry="2" />
|
|
<text x="219.77" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,229 microseconds, 0.05%)</title><rect x="1374.1" y="197" width="0.8" height="31.0" fill="rgb(236,125,48)" rx="2" ry="2" />
|
|
<text x="1377.06" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (29,053 microseconds, 0.35%)</title><rect x="359.0" y="133" width="5.5" height="31.0" fill="rgb(238,16,12)" rx="2" ry="2" />
|
|
<text x="361.98" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (121,600 microseconds, 1.46%)</title><rect x="471.3" y="197" width="23.1" height="31.0" fill="rgb(227,106,5)" rx="2" ry="2" />
|
|
<text x="474.34" y="215.5" >g..</text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (69,560 microseconds, 0.84%)</title><rect x="1257.5" y="261" width="13.2" height="31.0" fill="rgb(214,176,12)" rx="2" ry="2" />
|
|
<text x="1260.54" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (79,083 microseconds, 0.95%)</title><rect x="998.6" y="165" width="15.1" height="31.0" fill="rgb(245,173,15)" rx="2" ry="2" />
|
|
<text x="1001.65" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (24,866 microseconds, 0.30%)</title><rect x="658.2" y="229" width="4.7" height="31.0" fill="rgb(218,21,26)" rx="2" ry="2" />
|
|
<text x="661.20" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kcl_tokenize@/lib/zfsbootmenu-kcl.sh (4,188 microseconds, 0.05%)</title><rect x="511.0" y="101" width="0.8" height="31.0" fill="rgb(223,104,49)" rx="2" ry="2" />
|
|
<text x="513.99" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,120 microseconds, 0.04%)</title><rect x="1458.5" y="229" width="0.6" height="31.0" fill="rgb(215,58,32)" rx="2" ry="2" />
|
|
<text x="1461.47" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zinfo@/lib/kmsg-log-lib.sh (4,495 microseconds, 0.05%)</title><rect x="538.6" y="197" width="0.8" height="31.0" fill="rgb(230,219,41)" rx="2" ry="2" />
|
|
<text x="541.59" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,847 microseconds, 0.06%)</title><rect x="1451.7" y="165" width="1.0" height="31.0" fill="rgb(225,97,12)" rx="2" ry="2" />
|
|
<text x="1454.74" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (6,322 microseconds, 0.08%)</title><rect x="1461.9" y="229" width="1.2" height="31.0" fill="rgb(205,47,12)" rx="2" ry="2" />
|
|
<text x="1464.90" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_bool@/lib/zfsbootmenu-kcl.sh (38,395 microseconds, 0.46%)</title><rect x="624.4" y="197" width="7.2" height="31.0" fill="rgb(239,225,15)" rx="2" ry="2" />
|
|
<text x="627.37" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,186 microseconds, 0.04%)</title><rect x="417.6" y="133" width="0.6" height="31.0" fill="rgb(230,159,0)" rx="2" ry="2" />
|
|
<text x="420.58" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (79,701 microseconds, 0.96%)</title><rect x="376.6" y="165" width="15.1" height="31.0" fill="rgb(211,124,33)" rx="2" ry="2" />
|
|
<text x="379.60" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,010 microseconds, 0.04%)</title><rect x="802.8" y="165" width="0.6" height="31.0" fill="rgb(228,105,47)" rx="2" ry="2" />
|
|
<text x="805.78" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,589 microseconds, 0.04%)</title><rect x="254.3" y="133" width="0.7" height="31.0" fill="rgb(253,101,49)" rx="2" ry="2" />
|
|
<text x="257.32" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kexec_kernel@/lib/zfsbootmenu-core.sh (842,745 microseconds, 10.12%)</title><rect x="1430.1" y="293" width="159.9" height="31.0" fill="rgb(248,59,46)" rx="2" ry="2" />
|
|
<text x="1433.15" y="311.5" >kexec_kernel@/lib/zf..</text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (23,892 microseconds, 0.29%)</title><rect x="540.1" y="197" width="4.5" height="31.0" fill="rgb(225,204,34)" rx="2" ry="2" />
|
|
<text x="543.06" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,503 microseconds, 0.04%)</title><rect x="328.7" y="133" width="0.7" height="31.0" fill="rgb(246,131,31)" rx="2" ry="2" />
|
|
<text x="331.73" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (6,523 microseconds, 0.08%)</title><rect x="635.2" y="165" width="1.3" height="31.0" fill="rgb(253,209,21)" rx="2" ry="2" />
|
|
<text x="638.23" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (96,652 microseconds, 1.16%)</title><rect x="253.7" y="165" width="18.3" height="31.0" fill="rgb(246,83,42)" rx="2" ry="2" />
|
|
<text x="256.67" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,616 microseconds, 0.04%)</title><rect x="377.3" y="133" width="0.6" height="31.0" fill="rgb(230,105,37)" rx="2" ry="2" />
|
|
<text x="380.25" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (34,294 microseconds, 0.41%)</title><rect x="419.7" y="133" width="6.5" height="31.0" fill="rgb(226,94,4)" rx="2" ry="2" />
|
|
<text x="422.70" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (31,264 microseconds, 0.38%)</title><rect x="259.5" y="101" width="5.9" height="31.0" fill="rgb(246,28,48)" rx="2" ry="2" />
|
|
<text x="262.46" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (5,260 microseconds, 0.06%)</title><rect x="1421.8" y="229" width="1.0" height="31.0" fill="rgb(250,19,46)" rx="2" ry="2" />
|
|
<text x="1424.76" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zinfo@/lib/kmsg-log-lib.sh (4,531 microseconds, 0.05%)</title><rect x="622.9" y="197" width="0.9" height="31.0" fill="rgb(215,219,28)" rx="2" ry="2" />
|
|
<text x="625.94" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (75,006 microseconds, 0.90%)</title><rect x="951.4" y="101" width="14.3" height="31.0" fill="rgb(228,100,26)" rx="2" ry="2" />
|
|
<text x="954.44" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (110,085 microseconds, 1.32%)</title><rect x="926.2" y="133" width="20.9" height="31.0" fill="rgb(221,183,23)" rx="2" ry="2" />
|
|
<text x="929.24" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (66,462 microseconds, 0.80%)</title><rect x="234.4" y="133" width="12.6" height="31.0" fill="rgb(229,226,10)" rx="2" ry="2" />
|
|
<text x="237.40" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (1,941 microseconds, 0.02%)</title><rect x="759.7" y="261" width="0.4" height="31.0" fill="rgb(226,97,33)" rx="2" ry="2" />
|
|
<text x="762.69" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (203,038 microseconds, 2.44%)</title><rect x="763.5" y="197" width="38.5" height="31.0" fill="rgb(212,117,3)" rx="2" ry="2" />
|
|
<text x="766.46" y="215.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>get_spl_hostid@/lib/zfsbootmenu-core.sh (35,108 microseconds, 0.42%)</title><rect x="1481.1" y="229" width="6.7" height="31.0" fill="rgb(220,25,26)" rx="2" ry="2" />
|
|
<text x="1484.11" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,100 microseconds, 0.04%)</title><rect x="1398.0" y="229" width="0.6" height="31.0" fill="rgb(242,174,9)" rx="2" ry="2" />
|
|
<text x="1401.04" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (171,908 microseconds, 2.06%)</title><rect x="141.4" y="165" width="32.6" height="31.0" fill="rgb(232,48,19)" rx="2" ry="2" />
|
|
<text x="144.42" y="183.5" >ge..</text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,062 microseconds, 0.04%)</title><rect x="103.3" y="133" width="0.6" height="31.0" fill="rgb(230,220,49)" rx="2" ry="2" />
|
|
<text x="106.33" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (88,542 microseconds, 1.06%)</title><rect x="194.7" y="197" width="16.8" height="31.0" fill="rgb(221,191,21)" rx="2" ry="2" />
|
|
<text x="197.72" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (195,781 microseconds, 2.35%)</title><rect x="139.0" y="197" width="37.2" height="31.0" fill="rgb(248,161,19)" rx="2" ry="2" />
|
|
<text x="142.03" y="215.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,306 microseconds, 0.04%)</title><rect x="275.1" y="165" width="0.6" height="31.0" fill="rgb(232,212,31)" rx="2" ry="2" />
|
|
<text x="278.09" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (199,934 microseconds, 2.40%)</title><rect x="294.0" y="197" width="37.9" height="31.0" fill="rgb(227,149,18)" rx="2" ry="2" />
|
|
<text x="296.96" y="215.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,270 microseconds, 0.04%)</title><rect x="799.0" y="133" width="0.6" height="31.0" fill="rgb(248,226,47)" rx="2" ry="2" />
|
|
<text x="802.01" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (66,323 microseconds, 0.80%)</title><rect x="1021.6" y="133" width="12.5" height="31.0" fill="rgb(215,54,43)" rx="2" ry="2" />
|
|
<text x="1024.55" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (119,923 microseconds, 1.44%)</title><rect x="737.5" y="293" width="22.8" height="31.0" fill="rgb(250,17,23)" rx="2" ry="2" />
|
|
<text x="740.51" y="311.5" >g..</text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (69,940 microseconds, 0.84%)</title><rect x="821.0" y="165" width="13.3" height="31.0" fill="rgb(252,144,38)" rx="2" ry="2" />
|
|
<text x="823.99" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (37,161 microseconds, 0.45%)</title><rect x="1259.6" y="229" width="7.0" height="31.0" fill="rgb(215,203,2)" rx="2" ry="2" />
|
|
<text x="1262.56" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (2,696 microseconds, 0.03%)</title><rect x="1426.8" y="261" width="0.6" height="31.0" fill="rgb(240,195,25)" rx="2" ry="2" />
|
|
<text x="1429.85" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (38,011 microseconds, 0.46%)</title><rect x="507.5" y="165" width="7.2" height="31.0" fill="rgb(218,53,0)" rx="2" ry="2" />
|
|
<text x="510.51" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,869 microseconds, 0.06%)</title><rect x="1466.1" y="229" width="0.9" height="31.0" fill="rgb(226,33,39)" rx="2" ry="2" />
|
|
<text x="1469.11" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,404 microseconds, 0.04%)</title><rect x="81.4" y="133" width="0.6" height="31.0" fill="rgb(210,176,13)" rx="2" ry="2" />
|
|
<text x="84.38" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mount_zfs@/lib/zfsbootmenu-core.sh (95,204 microseconds, 1.14%)</title><rect x="1380.8" y="261" width="18.0" height="31.0" fill="rgb(253,209,47)" rx="2" ry="2" />
|
|
<text x="1383.78" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/kmsg-log-lib.sh (2,905 microseconds, 0.03%)</title><rect x="1286.4" y="293" width="0.5" height="31.0" fill="rgb(238,152,8)" rx="2" ry="2" />
|
|
<text x="1289.37" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (77,834 microseconds, 0.93%)</title><rect x="417.0" y="165" width="14.8" height="31.0" fill="rgb(251,27,43)" rx="2" ry="2" />
|
|
<text x="420.02" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mount_zfs@/lib/zfsbootmenu-core.sh (100,876 microseconds, 1.21%)</title><rect x="1444.4" y="261" width="19.1" height="31.0" fill="rgb(234,75,19)" rx="2" ry="2" />
|
|
<text x="1447.37" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (6,557 microseconds, 0.08%)</title><rect x="619.3" y="165" width="1.3" height="31.0" fill="rgb(236,189,16)" rx="2" ry="2" />
|
|
<text x="622.31" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (176,147 microseconds, 2.11%)</title><rect x="296.3" y="165" width="33.4" height="31.0" fill="rgb(211,167,50)" rx="2" ry="2" />
|
|
<text x="299.34" y="183.5" >ge..</text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,803 microseconds, 0.05%)</title><rect x="1433.3" y="229" width="0.7" height="31.0" fill="rgb(249,205,10)" rx="2" ry="2" />
|
|
<text x="1436.30" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,786 microseconds, 0.05%)</title><rect x="879.8" y="69" width="0.7" height="31.0" fill="rgb(244,21,7)" rx="2" ry="2" />
|
|
<text x="882.77" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (80,642 microseconds, 0.97%)</title><rect x="338.1" y="165" width="15.3" height="31.0" fill="rgb(239,183,28)" rx="2" ry="2" />
|
|
<text x="341.11" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (33,059 microseconds, 0.40%)</title><rect x="547.0" y="165" width="6.3" height="31.0" fill="rgb(228,225,27)" rx="2" ry="2" />
|
|
<text x="550.03" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (70,538 microseconds, 0.85%)</title><rect x="1241.7" y="261" width="13.4" height="31.0" fill="rgb(215,120,42)" rx="2" ry="2" />
|
|
<text x="1244.74" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kcl_suppress@/lib/zfsbootmenu-kcl.sh (7,128 microseconds, 0.09%)</title><rect x="1490.1" y="229" width="1.4" height="31.0" fill="rgb(251,130,34)" rx="2" ry="2" />
|
|
<text x="1493.15" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (7,201 microseconds, 0.09%)</title><rect x="565.9" y="133" width="1.4" height="31.0" fill="rgb(225,196,48)" rx="2" ry="2" />
|
|
<text x="568.92" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (140,982 microseconds, 1.69%)</title><rect x="705.4" y="293" width="26.8" height="31.0" fill="rgb(250,137,30)" rx="2" ry="2" />
|
|
<text x="708.44" y="311.5" >g..</text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (65,825 microseconds, 0.79%)</title><rect x="299.6" y="133" width="12.5" height="31.0" fill="rgb(208,83,34)" rx="2" ry="2" />
|
|
<text x="302.59" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (25,093 microseconds, 0.30%)</title><rect x="626.2" y="165" width="4.8" height="31.0" fill="rgb(252,73,23)" rx="2" ry="2" />
|
|
<text x="629.23" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>be_has_encroot@/lib/zfsbootmenu-core.sh (30,616 microseconds, 0.37%)</title><rect x="1383.9" y="197" width="5.8" height="31.0" fill="rgb(241,10,35)" rx="2" ry="2" />
|
|
<text x="1386.87" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>colorize@/lib/zfsbootmenu-core.sh (6,284 microseconds, 0.08%)</title><rect x="1364.8" y="293" width="1.2" height="31.0" fill="rgb(231,62,46)" rx="2" ry="2" />
|
|
<text x="1367.83" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (7,350 microseconds, 0.09%)</title><rect x="557.6" y="165" width="1.4" height="31.0" fill="rgb(224,77,22)" rx="2" ry="2" />
|
|
<text x="560.57" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,930 microseconds, 0.06%)</title><rect x="1388.1" y="165" width="1.0" height="31.0" fill="rgb(212,39,51)" rx="2" ry="2" />
|
|
<text x="1391.13" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,388 microseconds, 0.05%)</title><rect x="1376.4" y="197" width="0.8" height="31.0" fill="rgb(242,74,38)" rx="2" ry="2" />
|
|
<text x="1379.36" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (33,092 microseconds, 0.40%)</title><rect x="786.9" y="101" width="6.3" height="31.0" fill="rgb(251,54,41)" rx="2" ry="2" />
|
|
<text x="789.95" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,553 microseconds, 0.04%)</title><rect x="231.7" y="133" width="0.7" height="31.0" fill="rgb(245,212,5)" rx="2" ry="2" />
|
|
<text x="234.74" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,282 microseconds, 0.04%)</title><rect x="60.1" y="165" width="0.6" height="31.0" fill="rgb(251,205,16)" rx="2" ry="2" />
|
|
<text x="63.12" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (47,318 microseconds, 0.57%)</title><rect x="720.8" y="229" width="8.9" height="31.0" fill="rgb(238,125,48)" rx="2" ry="2" />
|
|
<text x="723.77" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,248 microseconds, 0.04%)</title><rect x="192.5" y="165" width="0.6" height="31.0" fill="rgb(220,58,11)" rx="2" ry="2" />
|
|
<text x="195.49" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source_all@/lib/dracut-lib.sh (37,908 microseconds, 0.46%)</title><rect x="668.1" y="261" width="7.2" height="31.0" fill="rgb(212,95,0)" rx="2" ry="2" />
|
|
<text x="671.08" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (179,106 microseconds, 2.15%)</title><rect x="802.3" y="197" width="33.9" height="31.0" fill="rgb(220,26,32)" rx="2" ry="2" />
|
|
<text x="805.25" y="215.5" >ge..</text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (6,162 microseconds, 0.07%)</title><rect x="1583.9" y="229" width="1.1" height="31.0" fill="rgb(253,211,15)" rx="2" ry="2" />
|
|
<text x="1586.87" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udevproperty@/lib/dracut-lib.sh (4,488 microseconds, 0.05%)</title><rect x="734.3" y="293" width="0.9" height="31.0" fill="rgb(232,69,27)" rx="2" ry="2" />
|
|
<text x="737.33" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,160 microseconds, 0.05%)</title><rect x="1438.4" y="165" width="0.8" height="31.0" fill="rgb(209,61,51)" rx="2" ry="2" />
|
|
<text x="1441.44" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,137 microseconds, 0.04%)</title><rect x="1516.2" y="229" width="0.6" height="31.0" fill="rgb(235,59,35)" rx="2" ry="2" />
|
|
<text x="1519.19" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kcl_tokenize@/lib/zfsbootmenu-kcl.sh (4,271 microseconds, 0.05%)</title><rect x="1423.2" y="229" width="0.8" height="31.0" fill="rgb(235,152,18)" rx="2" ry="2" />
|
|
<text x="1426.18" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>is_snapshot@/lib/zfsbootmenu-core.sh (6,667 microseconds, 0.08%)</title><rect x="1456.2" y="229" width="1.3" height="31.0" fill="rgb(231,15,5)" rx="2" ry="2" />
|
|
<text x="1459.19" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/cmdline/01-parse-kernel.sh (667,927 microseconds, 8.02%)</title><rect x="11.4" y="229" width="126.7" height="31.0" fill="rgb(210,0,36)" rx="2" ry="2" />
|
|
<text x="14.36" y="247.5" >source@//lib/dr..</text>
|
|
</g>
|
|
<g >
|
|
<title>zinfo@/lib/kmsg-log-lib.sh (4,554 microseconds, 0.05%)</title><rect x="587.4" y="197" width="0.9" height="31.0" fill="rgb(234,1,22)" rx="2" ry="2" />
|
|
<text x="590.42" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udevsettle@/lib/dracut-lib.sh (2,518 microseconds, 0.03%)</title><rect x="1089.9" y="293" width="0.5" height="31.0" fill="rgb(247,221,52)" rx="2" ry="2" />
|
|
<text x="1092.92" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (1,448 microseconds, 0.02%)</title><rect x="1064.6" y="261" width="0.3" height="31.0" fill="rgb(227,37,20)" rx="2" ry="2" />
|
|
<text x="1067.62" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (75,996 microseconds, 0.91%)</title><rect x="120.5" y="165" width="14.4" height="31.0" fill="rgb(213,19,51)" rx="2" ry="2" />
|
|
<text x="123.52" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (48,046 microseconds, 0.58%)</title><rect x="645.9" y="261" width="9.1" height="31.0" fill="rgb(215,51,30)" rx="2" ry="2" />
|
|
<text x="648.93" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/dracut-crypt-lib.sh (1,389 microseconds, 0.02%)</title><rect x="293.2" y="197" width="0.3" height="31.0" fill="rgb(245,145,29)" rx="2" ry="2" />
|
|
<text x="296.20" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (209,853 microseconds, 2.52%)</title><rect x="841.1" y="101" width="39.8" height="31.0" fill="rgb(249,23,30)" rx="2" ry="2" />
|
|
<text x="844.06" y="119.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,182 microseconds, 0.04%)</title><rect x="177.4" y="165" width="0.6" height="31.0" fill="rgb(234,8,19)" rx="2" ry="2" />
|
|
<text x="180.35" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (6,464 microseconds, 0.08%)</title><rect x="595.1" y="165" width="1.3" height="31.0" fill="rgb(247,156,32)" rx="2" ry="2" />
|
|
<text x="598.12" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>is_writable@/lib/zfsbootmenu-core.sh (34,573 microseconds, 0.42%)</title><rect x="1582.1" y="261" width="6.6" height="31.0" fill="rgb(243,83,36)" rx="2" ry="2" />
|
|
<text x="1585.14" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (43,948 microseconds, 0.53%)</title><rect x="890.9" y="37" width="8.3" height="31.0" fill="rgb(232,164,8)" rx="2" ry="2" />
|
|
<text x="893.91" y="55.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>select_kernel@/lib/zfsbootmenu-core.sh (24,603 microseconds, 0.30%)</title><rect x="1407.8" y="261" width="4.7" height="31.0" fill="rgb(251,126,8)" rx="2" ry="2" />
|
|
<text x="1410.85" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (47,407 microseconds, 0.57%)</title><rect x="656.8" y="261" width="9.0" height="31.0" fill="rgb(226,142,31)" rx="2" ry="2" />
|
|
<text x="659.79" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,226 microseconds, 0.04%)</title><rect x="1411.7" y="229" width="0.6" height="31.0" fill="rgb(211,211,48)" rx="2" ry="2" />
|
|
<text x="1414.69" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (7,153 microseconds, 0.09%)</title><rect x="627.9" y="133" width="1.4" height="31.0" fill="rgb(214,113,10)" rx="2" ry="2" />
|
|
<text x="630.94" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (29,775 microseconds, 0.36%)</title><rect x="379.7" y="133" width="5.6" height="31.0" fill="rgb(225,204,31)" rx="2" ry="2" />
|
|
<text x="382.65" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (60,837 microseconds, 0.73%)</title><rect x="179.7" y="165" width="11.6" height="31.0" fill="rgb(218,188,41)" rx="2" ry="2" />
|
|
<text x="182.75" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (6,198 microseconds, 0.07%)</title><rect x="1586.8" y="229" width="1.1" height="31.0" fill="rgb(249,156,5)" rx="2" ry="2" />
|
|
<text x="1589.76" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/dracut/hooks/initqueue/finished/99-zfsbootmenu-ready-chk.sh (930 microseconds, 0.01%)</title><rect x="1089.2" y="261" width="0.2" height="31.0" fill="rgb(254,123,35)" rx="2" ry="2" />
|
|
<text x="1092.24" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,364 microseconds, 0.04%)</title><rect x="1431.4" y="261" width="0.6" height="31.0" fill="rgb(239,172,38)" rx="2" ry="2" />
|
|
<text x="1434.35" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,104 microseconds, 0.04%)</title><rect x="121.1" y="133" width="0.6" height="31.0" fill="rgb(216,164,36)" rx="2" ry="2" />
|
|
<text x="124.07" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (203,899 microseconds, 2.45%)</title><rect x="885.6" y="101" width="38.6" height="31.0" fill="rgb(220,71,25)" rx="2" ry="2" />
|
|
<text x="888.56" y="119.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (6,756 microseconds, 0.08%)</title><rect x="519.1" y="165" width="1.3" height="31.0" fill="rgb(212,161,52)" rx="2" ry="2" />
|
|
<text x="522.10" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (37,007 microseconds, 0.44%)</title><rect x="1001.0" y="133" width="7.0" height="31.0" fill="rgb(214,49,27)" rx="2" ry="2" />
|
|
<text x="1004.03" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargs@/lib/dracut-lib.sh (206,287 microseconds, 2.48%)</title><rect x="976.7" y="197" width="39.2" height="31.0" fill="rgb(251,176,44)" rx="2" ry="2" />
|
|
<text x="979.74" y="215.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/dracut/hooks/initqueue/finished/99-zfsbootmenu-ready-chk.sh (1,403 microseconds, 0.02%)</title><rect x="1234.7" y="261" width="0.2" height="31.0" fill="rgb(224,97,54)" rx="2" ry="2" />
|
|
<text x="1237.66" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,569 microseconds, 0.04%)</title><rect x="948.8" y="101" width="0.6" height="31.0" fill="rgb(225,61,26)" rx="2" ry="2" />
|
|
<text x="951.77" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (47,317 microseconds, 0.57%)</title><rect x="739.3" y="261" width="8.9" height="31.0" fill="rgb(250,182,31)" rx="2" ry="2" />
|
|
<text x="742.26" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source_hook@/lib/dracut-lib.sh (1,469,452 microseconds, 17.64%)</title><rect x="760.4" y="293" width="278.8" height="31.0" fill="rgb(214,168,4)" rx="2" ry="2" />
|
|
<text x="763.44" y="311.5" >source_hook@/lib/dracut-lib.sh</text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (41,700 microseconds, 0.50%)</title><rect x="932.0" y="69" width="7.9" height="31.0" fill="rgb(208,177,43)" rx="2" ry="2" />
|
|
<text x="934.95" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,022 microseconds, 0.04%)</title><rect x="977.3" y="165" width="0.6" height="31.0" fill="rgb(240,169,13)" rx="2" ry="2" />
|
|
<text x="980.28" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (72,233 microseconds, 0.87%)</title><rect x="356.3" y="165" width="13.7" height="31.0" fill="rgb(241,109,31)" rx="2" ry="2" />
|
|
<text x="359.31" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_finished@/lib/dracut-lib.sh (7,689 microseconds, 0.09%)</title><rect x="1088.3" y="293" width="1.5" height="31.0" fill="rgb(223,182,54)" rx="2" ry="2" />
|
|
<text x="1091.33" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (30,242 microseconds, 0.36%)</title><rect x="556.0" y="197" width="5.8" height="31.0" fill="rgb(242,75,4)" rx="2" ry="2" />
|
|
<text x="559.02" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,741 microseconds, 0.06%)</title><rect x="1385.3" y="165" width="0.9" height="31.0" fill="rgb(213,78,32)" rx="2" ry="2" />
|
|
<text x="1388.28" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,105 microseconds, 0.04%)</title><rect x="42.3" y="133" width="0.6" height="31.0" fill="rgb(210,21,47)" rx="2" ry="2" />
|
|
<text x="45.32" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>make_trace_mem@/lib/dracut-lib.sh (9,831 microseconds, 0.12%)</title><rect x="1041.9" y="293" width="1.9" height="31.0" fill="rgb(228,64,37)" rx="2" ry="2" />
|
|
<text x="1044.92" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (2,682 microseconds, 0.03%)</title><rect x="1429.5" y="261" width="0.5" height="31.0" fill="rgb(235,62,36)" rx="2" ry="2" />
|
|
<text x="1432.46" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>load_be_cmdline@/lib/zfsbootmenu-core.sh (225,986 microseconds, 2.71%)</title><rect x="1464.3" y="261" width="42.8" height="31.0" fill="rgb(217,150,23)" rx="2" ry="2" />
|
|
<text x="1467.28" y="279.5" >load..</text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/cmdline/95-zfsbootmenu-parse-commandline.sh (763,425 microseconds, 9.16%)</title><rect x="497.2" y="229" width="144.8" height="31.0" fill="rgb(216,129,28)" rx="2" ry="2" />
|
|
<text x="500.16" y="247.5" >source@//lib/dracu..</text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,103 microseconds, 0.04%)</title><rect x="1371.8" y="229" width="0.6" height="31.0" fill="rgb(236,159,50)" rx="2" ry="2" />
|
|
<text x="1374.81" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (5,936 microseconds, 0.07%)</title><rect x="22.9" y="133" width="1.1" height="31.0" fill="rgb(211,210,23)" rx="2" ry="2" />
|
|
<text x="25.88" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>main@/init (6,699,231 microseconds, 80.42%)</title><rect x="10.0" y="325" width="1270.7" height="31.0" fill="rgb(252,139,0)" rx="2" ry="2" />
|
|
<text x="13.00" y="343.5" >main@/init</text>
|
|
</g>
|
|
<g >
|
|
<title>be_is_locked@/lib/zfsbootmenu-core.sh (44,965 microseconds, 0.54%)</title><rect x="1445.3" y="229" width="8.5" height="31.0" fill="rgb(215,19,15)" rx="2" ry="2" />
|
|
<text x="1448.27" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (33,316 microseconds, 0.40%)</title><rect x="341.5" y="133" width="6.3" height="31.0" fill="rgb(228,82,33)" rx="2" ry="2" />
|
|
<text x="344.49" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (1,893 microseconds, 0.02%)</title><rect x="666.5" y="261" width="0.4" height="31.0" fill="rgb(237,195,4)" rx="2" ry="2" />
|
|
<text x="669.50" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (28,773 microseconds, 0.35%)</title><rect x="279.8" y="133" width="5.5" height="31.0" fill="rgb(230,117,44)" rx="2" ry="2" />
|
|
<text x="282.82" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>strstr@/lib/dracut-lib.sh (3,510 microseconds, 0.04%)</title><rect x="671.5" y="197" width="0.6" height="31.0" fill="rgb(218,216,4)" rx="2" ry="2" />
|
|
<text x="674.47" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (33,438 microseconds, 0.40%)</title><rect x="105.4" y="133" width="6.3" height="31.0" fill="rgb(243,106,34)" rx="2" ry="2" />
|
|
<text x="108.37" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (61,509 microseconds, 0.74%)</title><rect x="197.7" y="165" width="11.7" height="31.0" fill="rgb(235,189,36)" rx="2" ry="2" />
|
|
<text x="200.70" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (69,844 microseconds, 0.84%)</title><rect x="805.0" y="165" width="13.2" height="31.0" fill="rgb(243,32,39)" rx="2" ry="2" />
|
|
<text x="807.99" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargs@/lib/dracut-lib.sh (237,730 microseconds, 2.85%)</title><rect x="13.4" y="197" width="45.1" height="31.0" fill="rgb(236,153,48)" rx="2" ry="2" />
|
|
<text x="16.42" y="215.5" >geta..</text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (37,321 microseconds, 0.45%)</title><rect x="1243.9" y="229" width="7.1" height="31.0" fill="rgb(252,24,5)" rx="2" ry="2" />
|
|
<text x="1246.91" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,494 microseconds, 0.04%)</title><rect x="142.1" y="133" width="0.6" height="31.0" fill="rgb(245,200,24)" rx="2" ry="2" />
|
|
<text x="145.06" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (69,130 microseconds, 0.83%)</title><rect x="784.7" y="133" width="13.1" height="31.0" fill="rgb(219,113,41)" rx="2" ry="2" />
|
|
<text x="787.67" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,308 microseconds, 0.04%)</title><rect x="136.5" y="165" width="0.6" height="31.0" fill="rgb(250,203,51)" rx="2" ry="2" />
|
|
<text x="139.46" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/etc/zfsbootmenu.conf (8,074 microseconds, 0.10%)</title><rect x="498.6" y="197" width="1.5" height="31.0" fill="rgb(242,112,25)" rx="2" ry="2" />
|
|
<text x="501.62" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,547 microseconds, 0.04%)</title><rect x="946.1" y="101" width="0.7" height="31.0" fill="rgb(234,138,47)" rx="2" ry="2" />
|
|
<text x="949.10" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (66,942 microseconds, 0.80%)</title><rect x="144.7" y="133" width="12.7" height="31.0" fill="rgb(205,64,11)" rx="2" ry="2" />
|
|
<text x="147.72" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (2,226 microseconds, 0.03%)</title><rect x="730.6" y="229" width="0.4" height="31.0" fill="rgb(248,118,0)" rx="2" ry="2" />
|
|
<text x="733.57" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (75,960 microseconds, 0.91%)</title><rect x="571.8" y="165" width="14.4" height="31.0" fill="rgb(217,22,18)" rx="2" ry="2" />
|
|
<text x="574.81" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (7,183 microseconds, 0.09%)</title><rect x="573.5" y="133" width="1.4" height="31.0" fill="rgb(222,84,7)" rx="2" ry="2" />
|
|
<text x="576.51" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (39,029 microseconds, 0.47%)</title><rect x="865.7" y="37" width="7.4" height="31.0" fill="rgb(208,205,45)" rx="2" ry="2" />
|
|
<text x="868.69" y="55.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/zfsbootmenu-kcl.sh (1,667 microseconds, 0.02%)</title><rect x="1285.4" y="261" width="0.3" height="31.0" fill="rgb(253,101,19)" rx="2" ry="2" />
|
|
<text x="1288.38" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/zfsbootmenu-core.sh (3,811 microseconds, 0.05%)</title><rect x="1285.0" y="293" width="0.7" height="31.0" fill="rgb(224,86,45)" rx="2" ry="2" />
|
|
<text x="1287.98" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,150 microseconds, 0.04%)</title><rect x="413.3" y="165" width="0.6" height="31.0" fill="rgb(225,138,11)" rx="2" ry="2" />
|
|
<text x="416.28" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (175,287 microseconds, 2.10%)</title><rect x="1239.3" y="293" width="33.2" height="31.0" fill="rgb(211,33,21)" rx="2" ry="2" />
|
|
<text x="1242.29" y="311.5" >ge..</text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_bool@/lib/zfsbootmenu-kcl.sh (46,288 microseconds, 0.56%)</title><rect x="545.2" y="197" width="8.8" height="31.0" fill="rgb(251,141,11)" rx="2" ry="2" />
|
|
<text x="548.19" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>info@/lib/dracut-lib.sh (701,142 microseconds, 8.42%)</title><rect x="836.8" y="197" width="133.0" height="31.0" fill="rgb(232,124,39)" rx="2" ry="2" />
|
|
<text x="839.77" y="215.5" >info@/lib/dracut..</text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (80,659 microseconds, 0.97%)</title><rect x="863.1" y="69" width="15.3" height="31.0" fill="rgb(218,137,40)" rx="2" ry="2" />
|
|
<text x="866.06" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,290 microseconds, 0.04%)</title><rect x="57.6" y="165" width="0.6" height="31.0" fill="rgb(210,138,44)" rx="2" ry="2" />
|
|
<text x="60.56" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/etc/zfsbootmenu.conf (15,792 microseconds, 0.19%)</title><rect x="1281.2" y="293" width="3.0" height="31.0" fill="rgb(232,29,43)" rx="2" ry="2" />
|
|
<text x="1284.15" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,530 microseconds, 0.04%)</title><rect x="248.3" y="133" width="0.7" height="31.0" fill="rgb(248,48,41)" rx="2" ry="2" />
|
|
<text x="251.34" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (1,472 microseconds, 0.02%)</title><rect x="1065.5" y="261" width="0.3" height="31.0" fill="rgb(245,111,6)" rx="2" ry="2" />
|
|
<text x="1068.55" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargs@/lib/dracut-lib.sh (202,263 microseconds, 2.43%)</title><rect x="59.5" y="197" width="38.4" height="31.0" fill="rgb(220,29,24)" rx="2" ry="2" />
|
|
<text x="62.52" y="215.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,323 microseconds, 0.04%)</title><rect x="1402.4" y="261" width="0.6" height="31.0" fill="rgb(206,136,19)" rx="2" ry="2" />
|
|
<text x="1405.39" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (87,741 microseconds, 1.05%)</title><rect x="176.8" y="197" width="16.6" height="31.0" fill="rgb(210,56,39)" rx="2" ry="2" />
|
|
<text x="179.78" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,478 microseconds, 0.04%)</title><rect x="98.9" y="165" width="0.7" height="31.0" fill="rgb(249,143,1)" rx="2" ry="2" />
|
|
<text x="101.91" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (117,465 microseconds, 1.41%)</title><rect x="228.7" y="197" width="22.2" height="31.0" fill="rgb(234,43,3)" rx="2" ry="2" />
|
|
<text x="231.67" y="215.5" >g..</text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (111,515 microseconds, 1.34%)</title><rect x="1016.4" y="197" width="21.2" height="31.0" fill="rgb(225,168,50)" rx="2" ry="2" />
|
|
<text x="1019.44" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (24,108 microseconds, 0.29%)</title><rect x="1067.7" y="229" width="4.6" height="31.0" fill="rgb(234,178,49)" rx="2" ry="2" />
|
|
<text x="1070.69" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (119,275 microseconds, 1.43%)</title><rect x="644.4" y="293" width="22.6" height="31.0" fill="rgb(231,111,33)" rx="2" ry="2" />
|
|
<text x="647.42" y="311.5" >g..</text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (2,901 microseconds, 0.03%)</title><rect x="373.4" y="165" width="0.5" height="31.0" fill="rgb(223,107,31)" rx="2" ry="2" />
|
|
<text x="376.37" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,375 microseconds, 0.04%)</title><rect x="451.7" y="165" width="0.7" height="31.0" fill="rgb(221,123,23)" rx="2" ry="2" />
|
|
<text x="454.73" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (2,820 microseconds, 0.03%)</title><rect x="212.7" y="165" width="0.5" height="31.0" fill="rgb(240,175,51)" rx="2" ry="2" />
|
|
<text x="215.70" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_bool@/lib/zfsbootmenu-kcl.sh (38,457 microseconds, 0.46%)</title><rect x="562.4" y="197" width="7.2" height="31.0" fill="rgb(242,140,6)" rx="2" ry="2" />
|
|
<text x="565.35" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (2,258 microseconds, 0.03%)</title><rect x="678.1" y="229" width="0.5" height="31.0" fill="rgb(245,14,22)" rx="2" ry="2" />
|
|
<text x="681.13" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (96,256 microseconds, 1.16%)</title><rect x="231.1" y="165" width="18.3" height="31.0" fill="rgb(217,219,41)" rx="2" ry="2" />
|
|
<text x="234.10" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zinfo@/lib/kmsg-log-lib.sh (4,510 microseconds, 0.05%)</title><rect x="554.3" y="197" width="0.8" height="31.0" fill="rgb(249,149,23)" rx="2" ry="2" />
|
|
<text x="557.28" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (80,663 microseconds, 0.97%)</title><rect x="888.6" y="69" width="15.3" height="31.0" fill="rgb(205,24,15)" rx="2" ry="2" />
|
|
<text x="891.61" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,605 microseconds, 0.04%)</title><rect x="1382.7" y="197" width="0.7" height="31.0" fill="rgb(237,153,1)" rx="2" ry="2" />
|
|
<text x="1385.71" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/etc/profile (2,011 microseconds, 0.02%)</title><rect x="1287.2" y="293" width="0.4" height="31.0" fill="rgb(215,150,16)" rx="2" ry="2" />
|
|
<text x="1290.19" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (24,826 microseconds, 0.30%)</title><rect x="751.4" y="229" width="4.7" height="31.0" fill="rgb(248,118,2)" rx="2" ry="2" />
|
|
<text x="754.41" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source_all@/lib/dracut-lib.sh (35,677 microseconds, 0.43%)</title><rect x="1273.9" y="261" width="6.8" height="31.0" fill="rgb(242,228,7)" rx="2" ry="2" />
|
|
<text x="1276.95" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (27,692 microseconds, 0.33%)</title><rect x="710.5" y="197" width="5.2" height="31.0" fill="rgb(212,0,38)" rx="2" ry="2" />
|
|
<text x="713.49" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>load_key@/lib/zfsbootmenu-core.sh (47,633 microseconds, 0.57%)</title><rect x="1369.4" y="293" width="9.0" height="31.0" fill="rgb(226,75,11)" rx="2" ry="2" />
|
|
<text x="1372.36" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,570 microseconds, 0.04%)</title><rect x="173.0" y="133" width="0.7" height="31.0" fill="rgb(250,222,5)" rx="2" ry="2" />
|
|
<text x="176.00" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (2,012 microseconds, 0.02%)</title><rect x="1044.4" y="261" width="0.4" height="31.0" fill="rgb(238,76,14)" rx="2" ry="2" />
|
|
<text x="1047.41" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kcl_assemble@/lib/zfsbootmenu-kcl.sh (2,708 microseconds, 0.03%)</title><rect x="1505.3" y="229" width="0.5" height="31.0" fill="rgb(253,136,21)" rx="2" ry="2" />
|
|
<text x="1508.27" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (1,804 microseconds, 0.02%)</title><rect x="1086.9" y="261" width="0.4" height="31.0" fill="rgb(244,68,22)" rx="2" ry="2" />
|
|
<text x="1089.92" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (60,619 microseconds, 0.73%)</title><rect x="605.5" y="197" width="11.5" height="31.0" fill="rgb(214,47,30)" rx="2" ry="2" />
|
|
<text x="608.53" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (34,443 microseconds, 0.41%)</title><rect x="437.9" y="133" width="6.5" height="31.0" fill="rgb(251,34,27)" rx="2" ry="2" />
|
|
<text x="440.91" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (53,070 microseconds, 0.64%)</title><rect x="708.9" y="229" width="10.1" height="31.0" fill="rgb(206,70,26)" rx="2" ry="2" />
|
|
<text x="711.89" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_bool@/lib/zfsbootmenu-kcl.sh (89,097 microseconds, 1.07%)</title><rect x="570.0" y="197" width="16.9" height="31.0" fill="rgb(254,81,21)" rx="2" ry="2" />
|
|
<text x="572.95" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (77,264 microseconds, 0.93%)</title><rect x="80.8" y="165" width="14.6" height="31.0" fill="rgb(207,194,20)" rx="2" ry="2" />
|
|
<text x="83.77" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (7,377 microseconds, 0.09%)</title><rect x="1485.5" y="197" width="1.4" height="31.0" fill="rgb(220,113,54)" rx="2" ry="2" />
|
|
<text x="1488.45" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (2,785 microseconds, 0.03%)</title><rect x="227.6" y="165" width="0.5" height="31.0" fill="rgb(227,43,2)" rx="2" ry="2" />
|
|
<text x="230.57" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>be_is_locked@/lib/zfsbootmenu-core.sh (44,087 microseconds, 0.53%)</title><rect x="1434.5" y="229" width="8.4" height="31.0" fill="rgb(212,164,1)" rx="2" ry="2" />
|
|
<text x="1437.54" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (87,645 microseconds, 1.05%)</title><rect x="21.8" y="165" width="16.7" height="31.0" fill="rgb(226,52,26)" rx="2" ry="2" />
|
|
<text x="24.83" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_quiet@/lib/dracut-lib.sh (692,746 microseconds, 8.32%)</title><rect x="837.3" y="165" width="131.4" height="31.0" fill="rgb(214,84,7)" rx="2" ry="2" />
|
|
<text x="840.29" y="183.5" >check_quiet@/lib..</text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (128,420 microseconds, 1.54%)</title><rect x="706.9" y="261" width="24.3" height="31.0" fill="rgb(237,216,39)" rx="2" ry="2" />
|
|
<text x="709.86" y="279.5" >g..</text>
|
|
</g>
|
|
<g >
|
|
<title>source_all@/lib/dracut-lib.sh (3,331,767 microseconds, 40.00%)</title><rect x="10.0" y="261" width="632.0" height="31.0" fill="rgb(217,156,22)" rx="2" ry="2" />
|
|
<text x="13.00" y="279.5" >source_all@/lib/dracut-lib.sh</text>
|
|
</g>
|
|
<g >
|
|
<title>be_is_locked@/lib/zfsbootmenu-core.sh (38,353 microseconds, 0.46%)</title><rect x="1370.9" y="261" width="7.3" height="31.0" fill="rgb(218,79,35)" rx="2" ry="2" />
|
|
<text x="1373.92" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>import_pool@/lib/zfsbootmenu-core.sh (224,931 microseconds, 2.70%)</title><rect x="1290.8" y="293" width="42.6" height="31.0" fill="rgb(221,45,38)" rx="2" ry="2" />
|
|
<text x="1293.77" y="311.5" >impo..</text>
|
|
</g>
|
|
<g >
|
|
<title>_build_zbm_kcl@/lib/zfsbootmenu-kcl.sh (25,365 microseconds, 0.30%)</title><rect x="508.7" y="133" width="4.8" height="31.0" fill="rgb(243,61,19)" rx="2" ry="2" />
|
|
<text x="511.72" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,207 microseconds, 0.04%)</title><rect x="210.6" y="165" width="0.6" height="31.0" fill="rgb(240,83,50)" rx="2" ry="2" />
|
|
<text x="213.59" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,178 microseconds, 0.04%)</title><rect x="1019.2" y="133" width="0.6" height="31.0" fill="rgb(222,5,12)" rx="2" ry="2" />
|
|
<text x="1022.21" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (36,210 microseconds, 0.43%)</title><rect x="1057.1" y="261" width="6.9" height="31.0" fill="rgb(239,31,46)" rx="2" ry="2" />
|
|
<text x="1060.10" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (69,654 microseconds, 0.84%)</title><rect x="768.7" y="133" width="13.3" height="31.0" fill="rgb(211,124,4)" rx="2" ry="2" />
|
|
<text x="771.74" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (33,621 microseconds, 0.40%)</title><rect x="681.4" y="197" width="6.4" height="31.0" fill="rgb(205,191,25)" rx="2" ry="2" />
|
|
<text x="684.38" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (78,647 microseconds, 0.94%)</title><rect x="980.7" y="165" width="14.9" height="31.0" fill="rgb(245,219,41)" rx="2" ry="2" />
|
|
<text x="983.66" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargs@/lib/dracut-lib.sh (210,470 microseconds, 2.53%)</title><rect x="412.8" y="197" width="39.9" height="31.0" fill="rgb(244,98,42)" rx="2" ry="2" />
|
|
<text x="415.78" y="215.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (2,894 microseconds, 0.03%)</title><rect x="371.4" y="165" width="0.6" height="31.0" fill="rgb(215,75,47)" rx="2" ry="2" />
|
|
<text x="374.41" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (80,620 microseconds, 0.97%)</title><rect x="844.6" y="69" width="15.3" height="31.0" fill="rgb(253,106,9)" rx="2" ry="2" />
|
|
<text x="847.61" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargs@/lib/dracut-lib.sh (206,354 microseconds, 2.48%)</title><rect x="98.3" y="197" width="39.1" height="31.0" fill="rgb(226,215,34)" rx="2" ry="2" />
|
|
<text x="101.28" y="215.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (104,952 microseconds, 1.26%)</title><rect x="948.1" y="133" width="19.9" height="31.0" fill="rgb(232,116,40)" rx="2" ry="2" />
|
|
<text x="951.11" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (7,560 microseconds, 0.09%)</title><rect x="525.4" y="165" width="1.4" height="31.0" fill="rgb(231,145,12)" rx="2" ry="2" />
|
|
<text x="528.41" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>timed_prompt@/lib/zfsbootmenu-core.sh (5,885 microseconds, 0.07%)</title><rect x="1367.8" y="293" width="1.1" height="31.0" fill="rgb(222,26,27)" rx="2" ry="2" />
|
|
<text x="1370.76" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (2,848 microseconds, 0.03%)</title><rect x="981.2" y="133" width="0.5" height="31.0" fill="rgb(226,78,47)" rx="2" ry="2" />
|
|
<text x="984.16" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (5,689 microseconds, 0.07%)</title><rect x="1488.2" y="229" width="1.1" height="31.0" fill="rgb(221,172,18)" rx="2" ry="2" />
|
|
<text x="1491.25" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (34,042 microseconds, 0.41%)</title><rect x="458.0" y="133" width="6.5" height="31.0" fill="rgb(206,77,25)" rx="2" ry="2" />
|
|
<text x="461.03" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,712 microseconds, 0.04%)</title><rect x="395.4" y="133" width="0.7" height="31.0" fill="rgb(249,89,42)" rx="2" ry="2" />
|
|
<text x="398.42" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,272 microseconds, 0.04%)</title><rect x="333.6" y="165" width="0.6" height="31.0" fill="rgb(206,26,5)" rx="2" ry="2" />
|
|
<text x="336.60" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>all (8,329,798 microseconds, 100%)</title><rect x="10.0" y="357" width="1580.0" height="31.0" fill="rgb(218,85,5)" rx="2" ry="2" />
|
|
<text x="13.00" y="375.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source_hook@/lib/dracut-lib.sh (42,379 microseconds, 0.51%)</title><rect x="667.2" y="293" width="8.1" height="31.0" fill="rgb(229,83,47)" rx="2" ry="2" />
|
|
<text x="670.23" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,288 microseconds, 0.04%)</title><rect x="923.3" y="69" width="0.6" height="31.0" fill="rgb(205,22,25)" rx="2" ry="2" />
|
|
<text x="926.29" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,593 microseconds, 0.04%)</title><rect x="271.0" y="133" width="0.7" height="31.0" fill="rgb(220,80,8)" rx="2" ry="2" />
|
|
<text x="273.97" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (44,518 microseconds, 0.53%)</title><rect x="908.9" y="37" width="8.5" height="31.0" fill="rgb(226,27,25)" rx="2" ry="2" />
|
|
<text x="911.94" y="55.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (66,483 microseconds, 0.80%)</title><rect x="159.1" y="133" width="12.6" height="31.0" fill="rgb(235,80,27)" rx="2" ry="2" />
|
|
<text x="162.06" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udevproperty@/lib/dracut-lib.sh (7,161 microseconds, 0.09%)</title><rect x="974.6" y="197" width="1.4" height="31.0" fill="rgb(220,53,26)" rx="2" ry="2" />
|
|
<text x="977.59" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (54,481 microseconds, 0.65%)</title><rect x="506.0" y="197" width="10.3" height="31.0" fill="rgb(242,130,19)" rx="2" ry="2" />
|
|
<text x="508.98" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udevproperty@/lib/dracut-lib.sh (6,878 microseconds, 0.08%)</title><rect x="1037.9" y="197" width="1.3" height="31.0" fill="rgb(229,169,42)" rx="2" ry="2" />
|
|
<text x="1040.86" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (28,773 microseconds, 0.35%)</title><rect x="200.0" y="133" width="5.4" height="31.0" fill="rgb(248,6,46)" rx="2" ry="2" />
|
|
<text x="202.98" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (79,914 microseconds, 0.96%)</title><rect x="394.8" y="165" width="15.1" height="31.0" fill="rgb(239,119,49)" rx="2" ry="2" />
|
|
<text x="397.75" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (66,748 microseconds, 0.80%)</title><rect x="257.0" y="133" width="12.7" height="31.0" fill="rgb(212,155,31)" rx="2" ry="2" />
|
|
<text x="259.99" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,212 microseconds, 0.04%)</title><rect x="435.8" y="133" width="0.6" height="31.0" fill="rgb(235,50,19)" rx="2" ry="2" />
|
|
<text x="438.79" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (6,638 microseconds, 0.08%)</title><rect x="590.2" y="165" width="1.2" height="31.0" fill="rgb(228,62,17)" rx="2" ry="2" />
|
|
<text x="593.17" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>be_has_encroot@/lib/zfsbootmenu-core.sh (27,018 microseconds, 0.32%)</title><rect x="1437.2" y="197" width="5.2" height="31.0" fill="rgb(211,40,27)" rx="2" ry="2" />
|
|
<text x="1440.23" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (2,592 microseconds, 0.03%)</title><rect x="1293.0" y="261" width="0.5" height="31.0" fill="rgb(239,118,18)" rx="2" ry="2" />
|
|
<text x="1296.03" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (111,054 microseconds, 1.33%)</title><rect x="1044.0" y="293" width="21.0" height="31.0" fill="rgb(229,225,15)" rx="2" ry="2" />
|
|
<text x="1046.98" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kcl_tokenize@/lib/zfsbootmenu-kcl.sh (2,691 microseconds, 0.03%)</title><rect x="1467.9" y="229" width="0.5" height="31.0" fill="rgb(247,0,53)" rx="2" ry="2" />
|
|
<text x="1470.89" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (2,864 microseconds, 0.03%)</title><rect x="469.1" y="165" width="0.5" height="31.0" fill="rgb(232,66,47)" rx="2" ry="2" />
|
|
<text x="472.08" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/cmdline/95-parse-block.sh (2,758 microseconds, 0.03%)</title><rect x="495.9" y="229" width="0.5" height="31.0" fill="rgb(234,0,5)" rx="2" ry="2" />
|
|
<text x="498.90" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (5,165 microseconds, 0.06%)</title><rect x="1332.1" y="261" width="1.0" height="31.0" fill="rgb(224,113,27)" rx="2" ry="2" />
|
|
<text x="1335.11" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (2,799 microseconds, 0.03%)</title><rect x="1239.7" y="261" width="0.6" height="31.0" fill="rgb(213,93,26)" rx="2" ry="2" />
|
|
<text x="1242.72" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (31,186 microseconds, 0.37%)</title><rect x="236.9" y="101" width="5.9" height="31.0" fill="rgb(246,52,7)" rx="2" ry="2" />
|
|
<text x="239.88" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (28,250 microseconds, 0.34%)</title><rect x="83.6" y="133" width="5.4" height="31.0" fill="rgb(208,125,42)" rx="2" ry="2" />
|
|
<text x="86.64" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,257 microseconds, 0.05%)</title><rect x="1441.0" y="165" width="0.8" height="31.0" fill="rgb(219,212,23)" rx="2" ry="2" />
|
|
<text x="1444.03" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (49,286 microseconds, 0.59%)</title><rect x="1046.0" y="261" width="9.3" height="31.0" fill="rgb(247,20,43)" rx="2" ry="2" />
|
|
<text x="1048.97" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/cmdline/10-parse-keydev.sh (288,070 microseconds, 3.46%)</title><rect x="138.8" y="229" width="54.6" height="31.0" fill="rgb(243,223,17)" rx="2" ry="2" />
|
|
<text x="141.78" y="247.5" >sourc..</text>
|
|
</g>
|
|
<g >
|
|
<title>main@/libexec/zfsbootmenu-init (1,630,567 microseconds, 19.58%)</title><rect x="1280.7" y="325" width="309.3" height="31.0" fill="rgb(232,162,4)" rx="2" ry="2" />
|
|
<text x="1283.71" y="343.5" >main@/libexec/zfsbootmenu-init</text>
|
|
</g>
|
|
<g >
|
|
<title>select_kernel@/lib/zfsbootmenu-core.sh (22,305 microseconds, 0.27%)</title><rect x="1425.9" y="293" width="4.2" height="31.0" fill="rgb(251,42,44)" rx="2" ry="2" />
|
|
<text x="1428.92" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (36,175 microseconds, 0.43%)</title><rect x="953.9" y="69" width="6.9" height="31.0" fill="rgb(226,79,2)" rx="2" ry="2" />
|
|
<text x="956.91" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>colorize@/lib/zfsbootmenu-core.sh (8,016 microseconds, 0.10%)</title><rect x="1366.2" y="293" width="1.6" height="31.0" fill="rgb(213,54,18)" rx="2" ry="2" />
|
|
<text x="1369.24" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (36,232 microseconds, 0.43%)</title><rect x="807.1" y="133" width="6.9" height="31.0" fill="rgb(247,37,26)" rx="2" ry="2" />
|
|
<text x="810.12" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (140,067 microseconds, 1.68%)</title><rect x="677.7" y="261" width="26.6" height="31.0" fill="rgb(206,38,36)" rx="2" ry="2" />
|
|
<text x="680.73" y="279.5" >g..</text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (78,518 microseconds, 0.94%)</title><rect x="435.2" y="165" width="14.9" height="31.0" fill="rgb(221,24,16)" rx="2" ry="2" />
|
|
<text x="438.23" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (65,700 microseconds, 0.79%)</title><rect x="315.0" y="133" width="12.4" height="31.0" fill="rgb(237,32,53)" rx="2" ry="2" />
|
|
<text x="317.98" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (2,241 microseconds, 0.03%)</title><rect x="707.2" y="229" width="0.5" height="31.0" fill="rgb(214,116,38)" rx="2" ry="2" />
|
|
<text x="710.25" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (32,354 microseconds, 0.39%)</title><rect x="479.9" y="101" width="6.1" height="31.0" fill="rgb(221,143,46)" rx="2" ry="2" />
|
|
<text x="482.88" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,202 microseconds, 0.04%)</title><rect x="1469.2" y="229" width="0.6" height="31.0" fill="rgb(235,107,37)" rx="2" ry="2" />
|
|
<text x="1472.15" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,530 microseconds, 0.04%)</title><rect x="926.9" y="101" width="0.6" height="31.0" fill="rgb(208,78,20)" rx="2" ry="2" />
|
|
<text x="929.87" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zinfo@/lib/kmsg-log-lib.sh (4,533 microseconds, 0.05%)</title><rect x="632.2" y="197" width="0.9" height="31.0" fill="rgb(215,120,24)" rx="2" ry="2" />
|
|
<text x="635.22" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kcl_suppress@/lib/zfsbootmenu-kcl.sh (66,288 microseconds, 0.80%)</title><rect x="1491.5" y="229" width="12.6" height="31.0" fill="rgb(224,172,37)" rx="2" ry="2" />
|
|
<text x="1494.54" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (31,874 microseconds, 0.38%)</title><rect x="66.4" y="133" width="6.0" height="31.0" fill="rgb(220,89,13)" rx="2" ry="2" />
|
|
<text x="69.38" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/pre-trigger/30-parse-dm.sh (1,454,564 microseconds, 17.46%)</title><rect x="763.3" y="229" width="275.9" height="31.0" fill="rgb(230,192,45)" rx="2" ry="2" />
|
|
<text x="766.26" y="247.5" >source@//lib/dracut/hooks/pre-trigge..</text>
|
|
</g>
|
|
<g >
|
|
<title>read_kcl_prop@/lib/zfsbootmenu-kcl.sh (21,927 microseconds, 0.26%)</title><rect x="1417.1" y="229" width="4.2" height="31.0" fill="rgb(236,179,33)" rx="2" ry="2" />
|
|
<text x="1420.10" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (63,397 microseconds, 0.76%)</title><rect x="456.0" y="165" width="12.0" height="31.0" fill="rgb(216,189,24)" rx="2" ry="2" />
|
|
<text x="459.00" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source_hook@/lib/dracut-lib.sh (41,803 microseconds, 0.50%)</title><rect x="1272.8" y="293" width="7.9" height="31.0" fill="rgb(213,176,27)" rx="2" ry="2" />
|
|
<text x="1275.78" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (99,044 microseconds, 1.19%)</title><rect x="474.0" y="165" width="18.7" height="31.0" fill="rgb(206,117,32)" rx="2" ry="2" />
|
|
<text x="476.96" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kcl_tokenize@/lib/zfsbootmenu-kcl.sh (4,104 microseconds, 0.05%)</title><rect x="512.8" y="101" width="0.7" height="31.0" fill="rgb(244,68,5)" rx="2" ry="2" />
|
|
<text x="515.75" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,373 microseconds, 0.05%)</title><rect x="1435.8" y="197" width="0.9" height="31.0" fill="rgb(224,79,9)" rx="2" ry="2" />
|
|
<text x="1438.82" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_finished@/lib/dracut-lib.sh (11,602 microseconds, 0.14%)</title><rect x="1233.1" y="293" width="2.2" height="31.0" fill="rgb(233,13,39)" rx="2" ry="2" />
|
|
<text x="1236.15" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (22,882 microseconds, 0.27%)</title><rect x="633.7" y="197" width="4.3" height="31.0" fill="rgb(228,156,13)" rx="2" ry="2" />
|
|
<text x="636.70" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (116,781 microseconds, 1.40%)</title><rect x="1065.3" y="293" width="22.2" height="31.0" fill="rgb(217,78,46)" rx="2" ry="2" />
|
|
<text x="1068.30" y="311.5" >g..</text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (34,106 microseconds, 0.41%)</title><rect x="26.8" y="133" width="6.5" height="31.0" fill="rgb(242,13,15)" rx="2" ry="2" />
|
|
<text x="29.79" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (2,241 microseconds, 0.03%)</title><rect x="703.6" y="229" width="0.5" height="31.0" fill="rgb(239,176,4)" rx="2" ry="2" />
|
|
<text x="706.65" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (180,653 microseconds, 2.17%)</title><rect x="765.7" y="165" width="34.3" height="31.0" fill="rgb(250,53,10)" rx="2" ry="2" />
|
|
<text x="768.69" y="183.5" >ge..</text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (117,913 microseconds, 1.42%)</title><rect x="251.3" y="197" width="22.3" height="31.0" fill="rgb(231,137,0)" rx="2" ry="2" />
|
|
<text x="254.25" y="215.5" >g..</text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (81,257 microseconds, 0.98%)</title><rect x="906.6" y="69" width="15.5" height="31.0" fill="rgb(205,144,25)" rx="2" ry="2" />
|
|
<text x="909.64" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,167 microseconds, 0.04%)</title><rect x="339.4" y="133" width="0.6" height="31.0" fill="rgb(246,58,15)" rx="2" ry="2" />
|
|
<text x="342.39" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,130 microseconds, 0.05%)</title><rect x="1338.8" y="293" width="0.8" height="31.0" fill="rgb(222,8,52)" rx="2" ry="2" />
|
|
<text x="1341.78" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (29,722 microseconds, 0.36%)</title><rect x="397.9" y="133" width="5.6" height="31.0" fill="rgb(237,199,49)" rx="2" ry="2" />
|
|
<text x="400.86" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (68,524 microseconds, 0.82%)</title><rect x="477.3" y="133" width="13.0" height="31.0" fill="rgb(253,137,44)" rx="2" ry="2" />
|
|
<text x="480.35" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (23,548 microseconds, 0.28%)</title><rect x="1047.7" y="229" width="4.5" height="31.0" fill="rgb(225,53,17)" rx="2" ry="2" />
|
|
<text x="1050.72" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (19,559 microseconds, 0.23%)</title><rect x="1058.2" y="229" width="3.7" height="31.0" fill="rgb(212,20,9)" rx="2" ry="2" />
|
|
<text x="1061.16" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (5,301 microseconds, 0.06%)</title><rect x="1578.8" y="261" width="1.0" height="31.0" fill="rgb(250,14,38)" rx="2" ry="2" />
|
|
<text x="1581.82" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (58,820 microseconds, 0.71%)</title><rect x="679.8" y="229" width="11.1" height="31.0" fill="rgb(249,50,24)" rx="2" ry="2" />
|
|
<text x="682.78" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (72,607 microseconds, 0.87%)</title><rect x="63.8" y="165" width="13.8" height="31.0" fill="rgb(207,39,40)" rx="2" ry="2" />
|
|
<text x="66.78" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (33,139 microseconds, 0.40%)</title><rect x="44.4" y="133" width="6.3" height="31.0" fill="rgb(241,73,17)" rx="2" ry="2" />
|
|
<text x="47.37" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,544 microseconds, 0.04%)</title><rect x="297.0" y="133" width="0.6" height="31.0" fill="rgb(215,42,26)" rx="2" ry="2" />
|
|
<text x="299.97" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,231 microseconds, 0.04%)</title><rect x="1408.8" y="229" width="0.6" height="31.0" fill="rgb(229,25,42)" rx="2" ry="2" />
|
|
<text x="1411.77" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>udevproperty@/lib/dracut-lib.sh (7,133 microseconds, 0.09%)</title><rect x="970.0" y="197" width="1.4" height="31.0" fill="rgb(242,201,54)" rx="2" ry="2" />
|
|
<text x="973.03" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (58,611 microseconds, 0.70%)</title><rect x="593.8" y="197" width="11.2" height="31.0" fill="rgb(247,151,7)" rx="2" ry="2" />
|
|
<text x="596.85" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>be_has_encroot@/lib/zfsbootmenu-core.sh (25,900 microseconds, 0.31%)</title><rect x="1372.8" y="229" width="4.9" height="31.0" fill="rgb(248,48,10)" rx="2" ry="2" />
|
|
<text x="1375.81" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>make_trace_mem@/lib/dracut-lib.sh (7,971 microseconds, 0.10%)</title><rect x="642.8" y="293" width="1.5" height="31.0" fill="rgb(209,186,45)" rx="2" ry="2" />
|
|
<text x="645.76" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (80,739 microseconds, 0.97%)</title><rect x="929.5" y="101" width="15.3" height="31.0" fill="rgb(248,91,18)" rx="2" ry="2" />
|
|
<text x="932.50" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/dracut/hooks/initqueue/settled/99-zfsbootmenu-ready-set.sh (3,742 microseconds, 0.04%)</title><rect x="1232.1" y="293" width="0.7" height="31.0" fill="rgb(245,106,31)" rx="2" ry="2" />
|
|
<text x="1235.09" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_for_pools@/lib/zfsbootmenu-core.sh (13,677 microseconds, 0.16%)</title><rect x="1333.7" y="293" width="2.6" height="31.0" fill="rgb(217,193,15)" rx="2" ry="2" />
|
|
<text x="1336.73" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,189 microseconds, 0.04%)</title><rect x="1509.7" y="229" width="0.6" height="31.0" fill="rgb(235,95,29)" rx="2" ry="2" />
|
|
<text x="1512.71" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,060 microseconds, 0.05%)</title><rect x="1415.6" y="229" width="0.7" height="31.0" fill="rgb(222,139,37)" rx="2" ry="2" />
|
|
<text x="1418.57" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (4,804 microseconds, 0.06%)</title><rect x="1448.9" y="165" width="0.9" height="31.0" fill="rgb(229,207,34)" rx="2" ry="2" />
|
|
<text x="1451.92" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,537 microseconds, 0.04%)</title><rect x="967.0" y="101" width="0.7" height="31.0" fill="rgb(226,12,15)" rx="2" ry="2" />
|
|
<text x="969.99" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (23,684 microseconds, 0.28%)</title><rect x="1079.0" y="229" width="4.5" height="31.0" fill="rgb(211,91,32)" rx="2" ry="2" />
|
|
<text x="1081.96" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (2,904 microseconds, 0.03%)</title><rect x="1015.0" y="165" width="0.6" height="31.0" fill="rgb(232,70,37)" rx="2" ry="2" />
|
|
<text x="1018.03" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (20,385 microseconds, 0.24%)</title><rect x="588.9" y="197" width="3.9" height="31.0" fill="rgb(253,97,21)" rx="2" ry="2" />
|
|
<text x="591.89" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargs@/lib/dracut-lib.sh (207,217 microseconds, 2.49%)</title><rect x="372.9" y="197" width="39.3" height="31.0" fill="rgb(230,97,36)" rx="2" ry="2" />
|
|
<text x="375.86" y="215.5" >get..</text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (31,875 microseconds, 0.38%)</title><rect x="1023.7" y="101" width="6.1" height="31.0" fill="rgb(209,59,3)" rx="2" ry="2" />
|
|
<text x="1026.71" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (226,641 microseconds, 2.72%)</title><rect x="882.9" y="133" width="43.0" height="31.0" fill="rgb(225,181,34)" rx="2" ry="2" />
|
|
<text x="885.92" y="151.5" >geta..</text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,305 microseconds, 0.04%)</title><rect x="886.2" y="69" width="0.6" height="31.0" fill="rgb(244,31,34)" rx="2" ry="2" />
|
|
<text x="889.16" y="87.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (2,736 microseconds, 0.03%)</title><rect x="1271.7" y="261" width="0.6" height="31.0" fill="rgb(254,29,35)" rx="2" ry="2" />
|
|
<text x="1274.74" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getargbool@/lib/dracut-lib.sh (232,769 microseconds, 2.79%)</title><rect x="838.5" y="133" width="44.1" height="31.0" fill="rgb(216,126,15)" rx="2" ry="2" />
|
|
<text x="841.45" y="151.5" >geta..</text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (30,912 microseconds, 0.37%)</title><rect x="302.0" y="101" width="5.9" height="31.0" fill="rgb(241,48,54)" rx="2" ry="2" />
|
|
<text x="305.04" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,192 microseconds, 0.04%)</title><rect x="356.9" y="133" width="0.6" height="31.0" fill="rgb(212,187,48)" rx="2" ry="2" />
|
|
<text x="359.87" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source_hook@/lib/dracut-lib.sh (3,331,767 microseconds, 40.00%)</title><rect x="10.0" y="293" width="632.0" height="31.0" fill="rgb(208,60,31)" rx="2" ry="2" />
|
|
<text x="13.00" y="311.5" >source_hook@/lib/dracut-lib.sh</text>
|
|
</g>
|
|
<g >
|
|
<title>find_root_prefix@/lib/zfsbootmenu-core.sh (50,455 microseconds, 0.61%)</title><rect x="1507.6" y="261" width="9.6" height="31.0" fill="rgb(245,160,5)" rx="2" ry="2" />
|
|
<text x="1510.61" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,387 microseconds, 0.04%)</title><rect x="1400.9" y="261" width="0.7" height="31.0" fill="rgb(248,187,30)" rx="2" ry="2" />
|
|
<text x="1403.94" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (2,898 microseconds, 0.03%)</title><rect x="411.3" y="165" width="0.6" height="31.0" fill="rgb(241,164,37)" rx="2" ry="2" />
|
|
<text x="414.33" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/zfsbootmenu-kcl.sh (1,397 microseconds, 0.02%)</title><rect x="1284.4" y="293" width="0.3" height="31.0" fill="rgb(216,193,1)" rx="2" ry="2" />
|
|
<text x="1287.41" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (38,995 microseconds, 0.47%)</title><rect x="847.3" y="37" width="7.3" height="31.0" fill="rgb(223,137,54)" rx="2" ry="2" />
|
|
<text x="850.25" y="55.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (45,420 microseconds, 0.55%)</title><rect x="1077.6" y="261" width="8.6" height="31.0" fill="rgb(229,163,13)" rx="2" ry="2" />
|
|
<text x="1080.63" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (47,409 microseconds, 0.57%)</title><rect x="750.0" y="261" width="9.0" height="31.0" fill="rgb(248,168,25)" rx="2" ry="2" />
|
|
<text x="752.98" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/pre-udev/30-dm-pre-udev.sh (22,920 microseconds, 0.28%)</title><rect x="670.9" y="229" width="4.4" height="31.0" fill="rgb(248,26,33)" rx="2" ry="2" />
|
|
<text x="673.92" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,704 microseconds, 0.04%)</title><rect x="474.6" y="133" width="0.7" height="31.0" fill="rgb(231,68,26)" rx="2" ry="2" />
|
|
<text x="477.62" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>find_be_kernels@/lib/zfsbootmenu-core.sh (245,314 microseconds, 2.95%)</title><rect x="1378.6" y="293" width="46.5" height="31.0" fill="rgb(215,147,11)" rx="2" ry="2" />
|
|
<text x="1381.55" y="311.5" >find..</text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,376 microseconds, 0.04%)</title><rect x="1406.0" y="261" width="0.6" height="31.0" fill="rgb(221,94,10)" rx="2" ry="2" />
|
|
<text x="1408.99" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_finished@/lib/dracut-lib.sh (11,692 microseconds, 0.14%)</title><rect x="1227.5" y="293" width="2.2" height="31.0" fill="rgb(210,18,5)" rx="2" ry="2" />
|
|
<text x="1230.50" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (2,608 microseconds, 0.03%)</title><rect x="1291.6" y="261" width="0.5" height="31.0" fill="rgb(230,81,9)" rx="2" ry="2" />
|
|
<text x="1294.62" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/cmdline/10-parse-root-opts.sh (515,557 microseconds, 6.19%)</title><rect x="194.2" y="229" width="97.8" height="31.0" fill="rgb(218,38,27)" rx="2" ry="2" />
|
|
<text x="197.19" y="247.5" >source@//li..</text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,366 microseconds, 0.04%)</title><rect x="1413.4" y="261" width="0.6" height="31.0" fill="rgb(228,58,30)" rx="2" ry="2" />
|
|
<text x="1416.36" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (1,950 microseconds, 0.02%)</title><rect x="737.8" y="261" width="0.4" height="31.0" fill="rgb(240,108,30)" rx="2" ry="2" />
|
|
<text x="740.83" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>make_trace_mem@/lib/dracut-lib.sh (9,256 microseconds, 0.11%)</title><rect x="735.6" y="293" width="1.7" height="31.0" fill="rgb(233,4,7)" rx="2" ry="2" />
|
|
<text x="738.58" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/pre-mount/90-zfsbootmenu-preinit.sh (20,298 microseconds, 0.24%)</title><rect x="1276.9" y="229" width="3.8" height="31.0" fill="rgb(244,27,19)" rx="2" ry="2" />
|
|
<text x="1279.86" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/cmdline/30-parse-crypt.sh (1,066,666 microseconds, 12.81%)</title><rect x="292.7" y="229" width="202.3" height="31.0" fill="rgb(221,226,38)" rx="2" ry="2" />
|
|
<text x="295.70" y="247.5" >source@//lib/dracut/hooks/..</text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (2,824 microseconds, 0.03%)</title><rect x="999.1" y="133" width="0.6" height="31.0" fill="rgb(254,178,29)" rx="2" ry="2" />
|
|
<text x="1002.15" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (6,680 microseconds, 0.08%)</title><rect x="14.6" y="165" width="1.2" height="31.0" fill="rgb(254,128,5)" rx="2" ry="2" />
|
|
<text x="17.57" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (75,682 microseconds, 0.91%)</title><rect x="102.8" y="165" width="14.3" height="31.0" fill="rgb(220,37,5)" rx="2" ry="2" />
|
|
<text x="105.79" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (92,470 microseconds, 1.11%)</title><rect x="1018.6" y="165" width="17.6" height="31.0" fill="rgb(229,55,40)" rx="2" ry="2" />
|
|
<text x="1021.65" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_quiet@/lib/dracut-lib.sh (2,951 microseconds, 0.04%)</title><rect x="972.7" y="165" width="0.5" height="31.0" fill="rgb(232,18,46)" rx="2" ry="2" />
|
|
<text x="975.69" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (31,390 microseconds, 0.38%)</title><rect x="147.2" y="101" width="6.0" height="31.0" fill="rgb(226,210,2)" rx="2" ry="2" />
|
|
<text x="150.21" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>preload_be_cmdline@/lib/zfsbootmenu-core.sh (54,183 microseconds, 0.65%)</title><rect x="1414.4" y="261" width="10.3" height="31.0" fill="rgb(211,212,23)" rx="2" ry="2" />
|
|
<text x="1417.42" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/kmsg-log-lib.sh (6,450 microseconds, 0.08%)</title><rect x="500.7" y="197" width="1.3" height="31.0" fill="rgb(228,80,29)" rx="2" ry="2" />
|
|
<text x="503.74" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,232 microseconds, 0.04%)</title><rect x="1508.5" y="229" width="0.6" height="31.0" fill="rgb(218,21,44)" rx="2" ry="2" />
|
|
<text x="1511.51" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (29,884 microseconds, 0.36%)</title><rect x="517.5" y="197" width="5.7" height="31.0" fill="rgb(245,160,29)" rx="2" ry="2" />
|
|
<text x="520.53" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,152 microseconds, 0.04%)</title><rect x="1395.0" y="229" width="0.6" height="31.0" fill="rgb(250,8,29)" rx="2" ry="2" />
|
|
<text x="1398.02" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (22,072 microseconds, 0.26%)</title><rect x="722.4" y="197" width="4.2" height="31.0" fill="rgb(250,163,0)" rx="2" ry="2" />
|
|
<text x="725.38" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (31,219 microseconds, 0.37%)</title><rect x="161.5" y="101" width="5.9" height="31.0" fill="rgb(251,76,37)" rx="2" ry="2" />
|
|
<text x="164.51" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>be_is_locked@/lib/zfsbootmenu-core.sh (45,104 microseconds, 0.54%)</title><rect x="1381.7" y="229" width="8.5" height="31.0" fill="rgb(243,32,25)" rx="2" ry="2" />
|
|
<text x="1384.68" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (61,872 microseconds, 0.74%)</title><rect x="214.8" y="165" width="11.7" height="31.0" fill="rgb(254,68,49)" rx="2" ry="2" />
|
|
<text x="217.79" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,326 microseconds, 0.04%)</title><rect x="766.3" y="133" width="0.6" height="31.0" fill="rgb(250,74,14)" rx="2" ry="2" />
|
|
<text x="769.28" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,625 microseconds, 0.04%)</title><rect x="1446.3" y="197" width="0.7" height="31.0" fill="rgb(206,133,1)" rx="2" ry="2" />
|
|
<text x="1449.32" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zdebug@/lib/kmsg-log-lib.sh (3,216 microseconds, 0.04%)</title><rect x="1506.3" y="229" width="0.6" height="31.0" fill="rgb(212,35,0)" rx="2" ry="2" />
|
|
<text x="1509.33" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,639 microseconds, 0.04%)</title><rect x="491.7" y="133" width="0.7" height="31.0" fill="rgb(224,162,53)" rx="2" ry="2" />
|
|
<text x="494.70" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (73,186 microseconds, 0.88%)</title><rect x="523.8" y="197" width="13.9" height="31.0" fill="rgb(253,87,1)" rx="2" ry="2" />
|
|
<text x="526.85" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (88,842 microseconds, 1.07%)</title><rect x="274.5" y="197" width="16.9" height="31.0" fill="rgb(208,205,6)" rx="2" ry="2" />
|
|
<text x="277.51" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (49,623 microseconds, 0.60%)</title><rect x="1066.6" y="261" width="9.4" height="31.0" fill="rgb(249,167,41)" rx="2" ry="2" />
|
|
<text x="1069.61" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>be_has_encroot@/lib/zfsbootmenu-core.sh (30,388 microseconds, 0.36%)</title><rect x="1447.5" y="197" width="5.8" height="31.0" fill="rgb(210,77,12)" rx="2" ry="2" />
|
|
<text x="1450.50" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>make_trace_mem@/lib/dracut-lib.sh (12,955 microseconds, 0.16%)</title><rect x="1236.6" y="293" width="2.4" height="31.0" fill="rgb(224,64,30)" rx="2" ry="2" />
|
|
<text x="1239.58" y="311.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kcl_suppress@/lib/zfsbootmenu-kcl.sh (52,609 microseconds, 0.63%)</title><rect x="1470.2" y="229" width="10.0" height="31.0" fill="rgb(230,124,16)" rx="2" ry="2" />
|
|
<text x="1473.21" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (7,883 microseconds, 0.09%)</title><rect x="548.7" y="133" width="1.5" height="31.0" fill="rgb(228,159,51)" rx="2" ry="2" />
|
|
<text x="551.73" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (25,022 microseconds, 0.30%)</title><rect x="740.7" y="229" width="4.7" height="31.0" fill="rgb(254,180,49)" rx="2" ry="2" />
|
|
<text x="743.67" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetarg@/lib/dracut-lib.sh (53,111 microseconds, 0.64%)</title><rect x="692.8" y="229" width="10.0" height="31.0" fill="rgb(247,171,16)" rx="2" ry="2" />
|
|
<text x="695.76" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (1,713 microseconds, 0.02%)</title><rect x="644.7" y="261" width="0.3" height="31.0" fill="rgb(232,9,36)" rx="2" ry="2" />
|
|
<text x="647.69" y="279.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getarg@/lib/dracut-lib.sh (85,245 microseconds, 1.02%)</title><rect x="212.2" y="197" width="16.2" height="31.0" fill="rgb(215,140,7)" rx="2" ry="2" />
|
|
<text x="215.20" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_kcl@/lib/zfsbootmenu-kcl.sh (7,316 microseconds, 0.09%)</title><rect x="541.6" y="165" width="1.4" height="31.0" fill="rgb(212,111,2)" rx="2" ry="2" />
|
|
<text x="544.61" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_off@/lib/dracut-lib.sh (3,258 microseconds, 0.04%)</title><rect x="195.3" y="165" width="0.6" height="31.0" fill="rgb(213,151,24)" rx="2" ry="2" />
|
|
<text x="198.30" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (36,281 microseconds, 0.44%)</title><rect x="823.1" y="133" width="6.9" height="31.0" fill="rgb(224,111,25)" rx="2" ry="2" />
|
|
<text x="826.10" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,271 microseconds, 0.04%)</title><rect x="290.4" y="165" width="0.6" height="31.0" fill="rgb(247,87,5)" rx="2" ry="2" />
|
|
<text x="293.42" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@//lib/dracut/hooks/pre-udev/30-block-genrules.sh (1,108 microseconds, 0.01%)</title><rect x="670.1" y="229" width="0.2" height="31.0" fill="rgb(207,124,8)" rx="2" ry="2" />
|
|
<text x="673.07" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (30,889 microseconds, 0.37%)</title><rect x="317.4" y="101" width="5.9" height="31.0" fill="rgb(246,145,9)" rx="2" ry="2" />
|
|
<text x="320.41" y="119.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>getcmdline@/lib/dracut-lib.sh (27,490 microseconds, 0.33%)</title><rect x="647.2" y="229" width="5.3" height="31.0" fill="rgb(223,208,48)" rx="2" ry="2" />
|
|
<text x="650.25" y="247.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>debug_on@/lib/dracut-lib.sh (3,083 microseconds, 0.04%)</title><rect x="1035.3" y="133" width="0.6" height="31.0" fill="rgb(232,13,10)" rx="2" ry="2" />
|
|
<text x="1038.29" y="151.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_zbm_arg@/lib/zfsbootmenu-kcl.sh (25,175 microseconds, 0.30%)</title><rect x="564.2" y="165" width="4.8" height="31.0" fill="rgb(214,138,37)" rx="2" ry="2" />
|
|
<text x="567.21" y="183.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>source@/lib/zfsbootmenu-kcl.sh (3,122 microseconds, 0.04%)</title><rect x="502.6" y="197" width="0.5" height="31.0" fill="rgb(237,180,18)" rx="2" ry="2" />
|
|
<text x="505.55" y="215.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dogetargs@/lib/dracut-lib.sh (75,128 microseconds, 0.90%)</title><rect x="41.8" y="165" width="14.2" height="31.0" fill="rgb(208,88,50)" rx="2" ry="2" />
|
|
<text x="44.78" y="183.5" ></text>
|
|
</g>
|
|
</g>
|
|
</svg>
|