MINI MINI MANI MO
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" width="1200" height="534" onload="init(evt)" viewBox="0 0 1200 534" 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;
}
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);
}
else if (e.target.id == "unzoom") unzoom();
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
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
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();
}
// 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")
}
}
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) {
currentSearchTerm = term;
search();
}
} 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 (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, 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;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="534.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="517" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="517" > </text>
<g id="frames">
<g >
<title>cli_magic_scan_desc (2 samples, 6.25%)</title><rect x="1042.5" y="293" width="73.7" height="15.0" fill="rgb(218,10,24)" rx="2" ry="2" />
<text x="1045.50" y="303.5" >cli_magi..</text>
</g>
<g >
<title>cli_scan_fmap (1 samples, 3.12%)</title><rect x="305.0" y="213" width="36.9" height="15.0" fill="rgb(205,83,11)" rx="2" ry="2" />
<text x="308.00" y="223.5" >cli..</text>
</g>
<g >
<title>__vfs_read (1 samples, 3.12%)</title><rect x="194.4" y="165" width="36.8" height="15.0" fill="rgb(210,139,6)" rx="2" ry="2" />
<text x="197.38" y="175.5" >__v..</text>
</g>
<g >
<title>scanraw (22 samples, 68.75%)</title><rect x="378.8" y="325" width="811.2" height="15.0" fill="rgb(213,168,0)" rx="2" ry="2" />
<text x="381.75" y="335.5" >scanraw</text>
</g>
<g >
<title>__GI___libc_write (2 samples, 6.25%)</title><rect x="120.6" y="437" width="73.8" height="15.0" fill="rgb(209,49,5)" rx="2" ry="2" />
<text x="123.62" y="447.5" >__GI___l..</text>
</g>
<g >
<title>lzxd_decompress (1 samples, 3.12%)</title><rect x="268.1" y="197" width="36.9" height="15.0" fill="rgb(239,160,51)" rx="2" ry="2" />
<text x="271.12" y="207.5" >lzx..</text>
</g>
<g >
<title>cl_scandesc_callback (27 samples, 84.38%)</title><rect x="194.4" y="373" width="995.6" height="15.0" fill="rgb(213,114,3)" rx="2" ry="2" />
<text x="197.38" y="383.5" >cl_scandesc_callback</text>
</g>
<g >
<title>scanfile (27 samples, 84.38%)</title><rect x="194.4" y="389" width="995.6" height="15.0" fill="rgb(212,92,11)" rx="2" ry="2" />
<text x="197.38" y="399.5" >scanfile</text>
</g>
<g >
<title>cli_magic_scan_desc_type (1 samples, 3.12%)</title><rect x="231.2" y="293" width="36.9" height="15.0" fill="rgb(219,122,47)" rx="2" ry="2" />
<text x="234.25" y="303.5" >cli..</text>
</g>
<g >
<title>cli_magic_scan (1 samples, 3.12%)</title><rect x="341.9" y="229" width="36.9" height="15.0" fill="rgb(222,205,20)" rx="2" ry="2" />
<text x="344.88" y="239.5" >cli..</text>
</g>
<g >
<title>cli_scan_fmap (1 samples, 3.12%)</title><rect x="231.2" y="245" width="36.9" height="15.0" fill="rgb(241,24,37)" rx="2" ry="2" />
<text x="234.25" y="255.5" >cli..</text>
</g>
<g >
<title>cli_magic_scan (2 samples, 6.25%)</title><rect x="1042.5" y="261" width="73.7" height="15.0" fill="rgb(233,130,24)" rx="2" ry="2" />
<text x="1045.50" y="271.5" >cli_magi..</text>
</g>
<g >
<title>matcher_run (1 samples, 3.12%)</title><rect x="231.2" y="229" width="36.9" height="15.0" fill="rgb(241,159,6)" rx="2" ry="2" />
<text x="234.25" y="239.5" >mat..</text>
</g>
<g >
<title>all (32 samples, 100%)</title><rect x="10.0" y="485" width="1180.0" height="15.0" fill="rgb(226,214,37)" rx="2" ry="2" />
<text x="13.00" y="495.5" ></text>
</g>
<g >
<title>fmap_readpage (1 samples, 3.12%)</title><rect x="194.4" y="261" width="36.8" height="15.0" fill="rgb(238,39,8)" rx="2" ry="2" />
<text x="197.38" y="271.5" >fma..</text>
</g>
<g >
<title>cli_magic_scan_desc (1 samples, 3.12%)</title><rect x="231.2" y="309" width="36.9" height="15.0" fill="rgb(249,101,20)" rx="2" ry="2" />
<text x="234.25" y="319.5" >cli..</text>
</g>
<g >
<title>cli_ac_scanbuff (1 samples, 3.12%)</title><rect x="305.0" y="181" width="36.9" height="15.0" fill="rgb(220,71,11)" rx="2" ry="2" />
<text x="308.00" y="191.5" >cli..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 3.12%)</title><rect x="194.4" y="229" width="36.8" height="15.0" fill="rgb(218,202,41)" rx="2" ry="2" />
<text x="197.38" y="239.5" >ent..</text>
</g>
<g >
<title>matcher_run (1 samples, 3.12%)</title><rect x="1042.5" y="85" width="36.9" height="15.0" fill="rgb(206,71,30)" rx="2" ry="2" />
<text x="1045.50" y="95.5" >mat..</text>
</g>
<g >
<title>cli_magic_scan_desc (2 samples, 6.25%)</title><rect x="268.1" y="277" width="73.8" height="15.0" fill="rgb(228,126,10)" rx="2" ry="2" />
<text x="271.12" y="287.5" >cli_magi..</text>
</g>
<g >
<title>clamscan (32 samples, 100.00%)</title><rect x="10.0" y="469" width="1180.0" height="15.0" fill="rgb(205,220,48)" rx="2" ry="2" />
<text x="13.00" y="479.5" >clamscan</text>
</g>
<g >
<title>is_dump_and_scan (2 samples, 6.25%)</title><rect x="268.1" y="293" width="73.8" height="15.0" fill="rgb(235,92,38)" rx="2" ry="2" />
<text x="271.12" y="303.5" >is_dump_..</text>
</g>
<g >
<title>cli_magic_scan_desc_type (3 samples, 9.38%)</title><rect x="931.9" y="181" width="110.6" height="15.0" fill="rgb(221,92,7)" rx="2" ry="2" />
<text x="934.88" y="191.5" >cli_magic_sca..</text>
</g>
<g >
<title>cli_bm_scanbuff (1 samples, 3.12%)</title><rect x="231.2" y="213" width="36.9" height="15.0" fill="rgb(224,144,11)" rx="2" ry="2" />
<text x="234.25" y="223.5" >cli..</text>
</g>
<g >
<title>generic_perform_write (2 samples, 6.25%)</title><rect x="120.6" y="309" width="73.8" height="15.0" fill="rgb(221,115,3)" rx="2" ry="2" />
<text x="123.62" y="319.5" >generic_..</text>
</g>
<g >
<title>scanraw (1 samples, 3.12%)</title><rect x="231.2" y="261" width="36.9" height="15.0" fill="rgb(209,45,15)" rx="2" ry="2" />
<text x="234.25" y="271.5" >sca..</text>
</g>
<g >
<title>ksys_pread64 (1 samples, 3.12%)</title><rect x="194.4" y="197" width="36.8" height="15.0" fill="rgb(252,84,34)" rx="2" ry="2" />
<text x="197.38" y="207.5" >ksy..</text>
</g>
<g >
<title>fmap_need_off_once (1 samples, 3.12%)</title><rect x="194.4" y="293" width="36.8" height="15.0" fill="rgb(214,175,0)" rx="2" ry="2" />
<text x="197.38" y="303.5" >fma..</text>
</g>
<g >
<title>__libc_write (1 samples, 3.12%)</title><rect x="747.5" y="293" width="36.9" height="15.0" fill="rgb(234,96,36)" rx="2" ry="2" />
<text x="750.50" y="303.5" >__l..</text>
</g>
<g >
<title>cli_scan_fmap (1 samples, 3.12%)</title><rect x="1079.4" y="101" width="36.8" height="15.0" fill="rgb(223,13,33)" rx="2" ry="2" />
<text x="1082.38" y="111.5" >cli..</text>
</g>
<g >
<title>scan_common (26 samples, 81.25%)</title><rect x="231.2" y="357" width="958.8" height="15.0" fill="rgb(238,140,8)" rx="2" ry="2" />
<text x="234.25" y="367.5" >scan_common</text>
</g>
<g >
<title>[libz.so.1.2.11] (1 samples, 3.12%)</title><rect x="83.8" y="437" width="36.8" height="15.0" fill="rgb(253,218,16)" rx="2" ry="2" />
<text x="86.75" y="447.5" >[li..</text>
</g>
<g >
<title>cli_scanishield (3 samples, 9.38%)</title><rect x="268.1" y="309" width="110.7" height="15.0" fill="rgb(222,25,34)" rx="2" ry="2" />
<text x="271.12" y="319.5" >cli_scanishield</text>
</g>
<g >
<title>do_syscall_64 (1 samples, 3.12%)</title><rect x="747.5" y="261" width="36.9" height="15.0" fill="rgb(238,20,29)" rx="2" ry="2" />
<text x="750.50" y="271.5" >do_..</text>
</g>
<g >
<title>cli_magic_scan_desc (2 samples, 6.25%)</title><rect x="1042.5" y="165" width="73.7" height="15.0" fill="rgb(216,171,52)" rx="2" ry="2" />
<text x="1045.50" y="175.5" >cli_magi..</text>
</g>
<g >
<title>scanraw (1 samples, 3.12%)</title><rect x="341.9" y="213" width="36.9" height="15.0" fill="rgb(246,176,12)" rx="2" ry="2" />
<text x="344.88" y="223.5" >sca..</text>
</g>
<g >
<title>lzxd_decompress (1 samples, 3.12%)</title><rect x="895.0" y="197" width="36.9" height="15.0" fill="rgb(213,3,13)" rx="2" ry="2" />
<text x="898.00" y="207.5" >lzx..</text>
</g>
<g >
<title>cli_scanmscab (2 samples, 6.25%)</title><rect x="1116.2" y="309" width="73.8" height="15.0" fill="rgb(211,221,14)" rx="2" ry="2" />
<text x="1119.25" y="319.5" >cli_scan..</text>
</g>
<g >
<title>cli_magic_scan_desc_type (2 samples, 6.25%)</title><rect x="1042.5" y="149" width="73.7" height="15.0" fill="rgb(251,163,8)" rx="2" ry="2" />
<text x="1045.50" y="159.5" >cli_magi..</text>
</g>
<g >
<title>cli_magic_scan_desc_type (2 samples, 6.25%)</title><rect x="268.1" y="261" width="73.8" height="15.0" fill="rgb(252,172,35)" rx="2" ry="2" />
<text x="271.12" y="271.5" >cli_magi..</text>
</g>
<g >
<title>cli_magic_scan (26 samples, 81.25%)</title><rect x="231.2" y="341" width="958.8" height="15.0" fill="rgb(243,32,32)" rx="2" ry="2" />
<text x="234.25" y="351.5" >cli_magic_scan</text>
</g>
<g >
<title>matcher_run (1 samples, 3.12%)</title><rect x="1079.4" y="85" width="36.8" height="15.0" fill="rgb(205,5,19)" rx="2" ry="2" />
<text x="1082.38" y="95.5" >mat..</text>
</g>
<g >
<title>ext4_mark_inode_dirty (1 samples, 3.12%)</title><rect x="747.5" y="85" width="36.9" height="15.0" fill="rgb(208,39,6)" rx="2" ry="2" />
<text x="750.50" y="95.5" >ext..</text>
</g>
<g >
<title>matcher_run (10 samples, 31.25%)</title><rect x="378.8" y="293" width="368.7" height="15.0" fill="rgb(253,167,38)" rx="2" ry="2" />
<text x="381.75" y="303.5" >matcher_run</text>
</g>
<g >
<title>fmap (1 samples, 3.12%)</title><rect x="194.4" y="357" width="36.8" height="15.0" fill="rgb(235,130,44)" rx="2" ry="2" />
<text x="197.38" y="367.5" >fmap</text>
</g>
<g >
<title>scanraw (7 samples, 21.88%)</title><rect x="784.4" y="245" width="258.1" height="15.0" fill="rgb(229,95,23)" rx="2" ry="2" />
<text x="787.38" y="255.5" >scanraw</text>
</g>
<g >
<title>cli_scanscript (1 samples, 3.12%)</title><rect x="1042.5" y="117" width="36.9" height="15.0" fill="rgb(242,64,5)" rx="2" ry="2" />
<text x="1045.50" y="127.5" >cli..</text>
</g>
<g >
<title>__generic_file_write_iter (2 samples, 6.25%)</title><rect x="120.6" y="325" width="73.8" height="15.0" fill="rgb(222,181,47)" rx="2" ry="2" />
<text x="123.62" y="335.5" >__generi..</text>
</g>
<g >
<title>cli_magic_scan (1 samples, 3.12%)</title><rect x="231.2" y="277" width="36.9" height="15.0" fill="rgb(233,140,54)" rx="2" ry="2" />
<text x="234.25" y="287.5" >cli..</text>
</g>
<g >
<title>ext4_da_write_end (1 samples, 3.12%)</title><rect x="120.6" y="293" width="36.9" height="15.0" fill="rgb(225,66,28)" rx="2" ry="2" />
<text x="123.62" y="303.5" >ext..</text>
</g>
<g >
<title>generic_file_read_iter (1 samples, 3.12%)</title><rect x="194.4" y="149" width="36.8" height="15.0" fill="rgb(240,125,8)" rx="2" ry="2" />
<text x="197.38" y="159.5" >gen..</text>
</g>
<g >
<title>block_write_end (1 samples, 3.12%)</title><rect x="120.6" y="261" width="36.9" height="15.0" fill="rgb(222,188,11)" rx="2" ry="2" />
<text x="123.62" y="271.5" >blo..</text>
</g>
<g >
<title>cli_bm_scanbuff (1 samples, 3.12%)</title><rect x="341.9" y="165" width="36.9" height="15.0" fill="rgb(217,131,9)" rx="2" ry="2" />
<text x="344.88" y="175.5" >cli..</text>
</g>
<g >
<title>vfs_read (1 samples, 3.12%)</title><rect x="194.4" y="181" width="36.8" height="15.0" fill="rgb(217,202,23)" rx="2" ry="2" />
<text x="197.38" y="191.5" >vfs..</text>
</g>
<g >
<title>cli_magic_scan_desc_type (2 samples, 6.25%)</title><rect x="1042.5" y="277" width="73.7" height="15.0" fill="rgb(228,147,41)" rx="2" ry="2" />
<text x="1045.50" y="287.5" >cli_magi..</text>
</g>
<g >
<title>cli_magic_scan (3 samples, 9.38%)</title><rect x="931.9" y="165" width="110.6" height="15.0" fill="rgb(236,85,11)" rx="2" ry="2" />
<text x="934.88" y="175.5" >cli_magic_scan</text>
</g>
<g >
<title>cli_ac_scanbuff (2 samples, 6.25%)</title><rect x="378.8" y="277" width="73.7" height="15.0" fill="rgb(249,32,9)" rx="2" ry="2" />
<text x="381.75" y="287.5" >cli_ac_s..</text>
</g>
<g >
<title>ext4_da_write_end (1 samples, 3.12%)</title><rect x="747.5" y="149" width="36.9" height="15.0" fill="rgb(216,32,50)" rx="2" ry="2" />
<text x="750.50" y="159.5" >ext..</text>
</g>
<g >
<title>do_syscall_64 (2 samples, 6.25%)</title><rect x="120.6" y="405" width="73.8" height="15.0" fill="rgb(241,16,5)" rx="2" ry="2" />
<text x="123.62" y="415.5" >do_sysca..</text>
</g>
<g >
<title>cli_scanmscab (1 samples, 3.12%)</title><rect x="268.1" y="229" width="36.9" height="15.0" fill="rgb(254,107,27)" rx="2" ry="2" />
<text x="271.12" y="239.5" >cli..</text>
</g>
<g >
<title>cli_bm_scanbuff (1 samples, 3.12%)</title><rect x="931.9" y="101" width="36.9" height="15.0" fill="rgb(219,45,29)" rx="2" ry="2" />
<text x="934.88" y="111.5" >cli..</text>
</g>
<g >
<title>scandirs (27 samples, 84.38%)</title><rect x="194.4" y="405" width="995.6" height="15.0" fill="rgb(210,93,35)" rx="2" ry="2" />
<text x="197.38" y="415.5" >scandirs</text>
</g>
<g >
<title>vfs_write (1 samples, 3.12%)</title><rect x="747.5" y="229" width="36.9" height="15.0" fill="rgb(222,112,40)" rx="2" ry="2" />
<text x="750.50" y="239.5" >vfs..</text>
</g>
<g >
<title>ext4_mark_iloc_dirty (1 samples, 3.12%)</title><rect x="747.5" y="69" width="36.9" height="15.0" fill="rgb(229,147,24)" rx="2" ry="2" />
<text x="750.50" y="79.5" >ext..</text>
</g>
<g >
<title>cli_scanembpe (8 samples, 25.00%)</title><rect x="747.5" y="309" width="295.0" height="15.0" fill="rgb(230,128,39)" rx="2" ry="2" />
<text x="750.50" y="319.5" >cli_scanembpe</text>
</g>
<g >
<title>vfs_write (2 samples, 6.25%)</title><rect x="120.6" y="373" width="73.8" height="15.0" fill="rgb(242,50,22)" rx="2" ry="2" />
<text x="123.62" y="383.5" >vfs_write</text>
</g>
<g >
<title>ext4_inode_csum.isra.65 (1 samples, 3.12%)</title><rect x="747.5" y="37" width="36.9" height="15.0" fill="rgb(241,60,9)" rx="2" ry="2" />
<text x="750.50" y="47.5" >ext..</text>
</g>
<g >
<title>ext4_file_write_iter (2 samples, 6.25%)</title><rect x="120.6" y="341" width="73.8" height="15.0" fill="rgb(208,227,8)" rx="2" ry="2" />
<text x="123.62" y="351.5" >ext4_fil..</text>
</g>
<g >
<title>is_parse_hdr (1 samples, 3.12%)</title><rect x="341.9" y="293" width="36.9" height="15.0" fill="rgb(232,32,36)" rx="2" ry="2" />
<text x="344.88" y="303.5" >is_..</text>
</g>
<g >
<title>cl_fmap_open_handle (1 samples, 3.12%)</title><rect x="194.4" y="325" width="36.8" height="15.0" fill="rgb(246,196,14)" rx="2" ry="2" />
<text x="197.38" y="335.5" >cl_..</text>
</g>
<g >
<title>cli_bm_scanbuff (1 samples, 3.12%)</title><rect x="1042.5" y="69" width="36.9" height="15.0" fill="rgb(227,182,41)" rx="2" ry="2" />
<text x="1045.50" y="79.5" >cli..</text>
</g>
<g >
<title>cli_scan_fmap (1 samples, 3.12%)</title><rect x="341.9" y="197" width="36.9" height="15.0" fill="rgb(224,105,17)" rx="2" ry="2" />
<text x="344.88" y="207.5" >cli..</text>
</g>
<g >
<title>cli_scanishield_msi (2 samples, 6.25%)</title><rect x="1042.5" y="309" width="73.7" height="15.0" fill="rgb(230,217,19)" rx="2" ry="2" />
<text x="1045.50" y="319.5" >cli_scan..</text>
</g>
<g >
<title>is_extract_cab (1 samples, 3.12%)</title><rect x="341.9" y="277" width="36.9" height="15.0" fill="rgb(219,205,0)" rx="2" ry="2" />
<text x="344.88" y="287.5" >is_..</text>
</g>
<g >
<title>filter_search_ext (2 samples, 6.25%)</title><rect x="968.8" y="101" width="73.7" height="15.0" fill="rgb(222,54,22)" rx="2" ry="2" />
<text x="971.75" y="111.5" >filter_s..</text>
</g>
<g >
<title>cli_scan_buff (1 samples, 3.12%)</title><rect x="1042.5" y="101" width="36.9" height="15.0" fill="rgb(252,76,28)" rx="2" ry="2" />
<text x="1045.50" y="111.5" >cli..</text>
</g>
<g >
<title>__vfs_write (1 samples, 3.12%)</title><rect x="747.5" y="213" width="36.9" height="15.0" fill="rgb(205,89,3)" rx="2" ry="2" />
<text x="750.50" y="223.5" >__v..</text>
</g>
<g >
<title>iov_iter_copy_from_user_atomic (1 samples, 3.12%)</title><rect x="157.5" y="293" width="36.9" height="15.0" fill="rgb(207,82,38)" rx="2" ry="2" />
<text x="160.50" y="303.5" >iov..</text>
</g>
<g >
<title>[libz.so.1.2.11] (1 samples, 3.12%)</title><rect x="10.0" y="453" width="36.9" height="15.0" fill="rgb(243,132,48)" rx="2" ry="2" />
<text x="13.00" y="463.5" >[li..</text>
</g>
<g >
<title>scanraw (3 samples, 9.38%)</title><rect x="931.9" y="149" width="110.6" height="15.0" fill="rgb(224,40,39)" rx="2" ry="2" />
<text x="934.88" y="159.5" >scanraw</text>
</g>
<g >
<title>handle_need (1 samples, 3.12%)</title><rect x="194.4" y="277" width="36.8" height="15.0" fill="rgb(229,199,37)" rx="2" ry="2" />
<text x="197.38" y="287.5" >han..</text>
</g>
<g >
<title>ksys_write (2 samples, 6.25%)</title><rect x="120.6" y="389" width="73.8" height="15.0" fill="rgb(208,63,42)" rx="2" ry="2" />
<text x="123.62" y="399.5" >ksys_write</text>
</g>
<g >
<title>main (27 samples, 84.38%)</title><rect x="194.4" y="437" width="995.6" height="15.0" fill="rgb(208,31,36)" rx="2" ry="2" />
<text x="197.38" y="447.5" >main</text>
</g>
<g >
<title>cli_magic_scan_desc_type (1 samples, 3.12%)</title><rect x="341.9" y="245" width="36.9" height="15.0" fill="rgb(243,103,8)" rx="2" ry="2" />
<text x="344.88" y="255.5" >cli..</text>
</g>
<g >
<title>lzxd_decompress (2 samples, 6.25%)</title><rect x="1116.2" y="277" width="73.8" height="15.0" fill="rgb(246,80,10)" rx="2" ry="2" />
<text x="1119.25" y="287.5" >lzxd_dec..</text>
</g>
<g >
<title>cabd_extract (1 samples, 3.12%)</title><rect x="268.1" y="213" width="36.9" height="15.0" fill="rgb(215,45,46)" rx="2" ry="2" />
<text x="271.12" y="223.5" >cab..</text>
</g>
<g >
<title>handler_otf (2 samples, 6.25%)</title><rect x="1042.5" y="181" width="73.7" height="15.0" fill="rgb(208,41,43)" rx="2" ry="2" />
<text x="1045.50" y="191.5" >handler_..</text>
</g>
<g >
<title>cli_scan_fmap (3 samples, 9.38%)</title><rect x="784.4" y="229" width="110.6" height="15.0" fill="rgb(252,185,7)" rx="2" ry="2" />
<text x="787.38" y="239.5" >cli_scan_fmap</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 6.25%)</title><rect x="120.6" y="421" width="73.8" height="15.0" fill="rgb(206,209,4)" rx="2" ry="2" />
<text x="123.62" y="431.5" >entry_SY..</text>
</g>
<g >
<title>cli_ole2_extract (2 samples, 6.25%)</title><rect x="1042.5" y="229" width="73.7" height="15.0" fill="rgb(235,165,18)" rx="2" ry="2" />
<text x="1045.50" y="239.5" >cli_ole2..</text>
</g>
<g >
<title>cli_scanpe (4 samples, 12.50%)</title><rect x="231.2" y="325" width="147.6" height="15.0" fill="rgb(215,61,27)" rx="2" ry="2" />
<text x="234.25" y="335.5" >cli_scanpe</text>
</g>
<g >
<title>copyout (1 samples, 3.12%)</title><rect x="194.4" y="117" width="36.8" height="15.0" fill="rgb(214,112,34)" rx="2" ry="2" />
<text x="197.38" y="127.5" >cop..</text>
</g>
<g >
<title>ext4_inode_csum_set (1 samples, 3.12%)</title><rect x="747.5" y="53" width="36.9" height="15.0" fill="rgb(208,97,3)" rx="2" ry="2" />
<text x="750.50" y="63.5" >ext..</text>
</g>
<g >
<title>__mark_inode_dirty (1 samples, 3.12%)</title><rect x="747.5" y="117" width="36.9" height="15.0" fill="rgb(239,117,12)" rx="2" ry="2" />
<text x="750.50" y="127.5" >__m..</text>
</g>
<g >
<title>fmap_check_empty (1 samples, 3.12%)</title><rect x="194.4" y="341" width="36.8" height="15.0" fill="rgb(247,97,8)" rx="2" ry="2" />
<text x="197.38" y="351.5" >fma..</text>
</g>
<g >
<title>scanraw (1 samples, 3.12%)</title><rect x="305.0" y="229" width="36.9" height="15.0" fill="rgb(229,110,53)" rx="2" ry="2" />
<text x="308.00" y="239.5" >sca..</text>
</g>
<g >
<title>ole2_walk_property_tree (2 samples, 6.25%)</title><rect x="1042.5" y="197" width="73.7" height="15.0" fill="rgb(210,85,2)" rx="2" ry="2" />
<text x="1045.50" y="207.5" >ole2_wal..</text>
</g>
<g >
<title>cli_magic_scan (2 samples, 6.25%)</title><rect x="1042.5" y="133" width="73.7" height="15.0" fill="rgb(254,226,15)" rx="2" ry="2" />
<text x="1045.50" y="143.5" >cli_magi..</text>
</g>
<g >
<title>ext4_file_write_iter (1 samples, 3.12%)</title><rect x="747.5" y="197" width="36.9" height="15.0" fill="rgb(238,181,20)" rx="2" ry="2" />
<text x="750.50" y="207.5" >ext..</text>
</g>
<g >
<title>fmap_get_MD5 (1 samples, 3.12%)</title><rect x="194.4" y="309" width="36.8" height="15.0" fill="rgb(207,144,44)" rx="2" ry="2" />
<text x="197.38" y="319.5" >fma..</text>
</g>
<g >
<title>mark_buffer_dirty (1 samples, 3.12%)</title><rect x="120.6" y="229" width="36.9" height="15.0" fill="rgb(234,51,31)" rx="2" ry="2" />
<text x="123.62" y="239.5" >mar..</text>
</g>
<g >
<title>filter_search_ext (1 samples, 3.12%)</title><rect x="858.1" y="197" width="36.9" height="15.0" fill="rgb(230,80,30)" rx="2" ry="2" />
<text x="861.12" y="207.5" >fil..</text>
</g>
<g >
<title>generic_write_end (1 samples, 3.12%)</title><rect x="120.6" y="277" width="36.9" height="15.0" fill="rgb(213,32,43)" rx="2" ry="2" />
<text x="123.62" y="287.5" >gen..</text>
</g>
<g >
<title>ksys_write (1 samples, 3.12%)</title><rect x="747.5" y="245" width="36.9" height="15.0" fill="rgb(232,9,8)" rx="2" ry="2" />
<text x="750.50" y="255.5" >ksy..</text>
</g>
<g >
<title>cli_magic_scan_desc (3 samples, 9.38%)</title><rect x="931.9" y="197" width="110.6" height="15.0" fill="rgb(248,191,49)" rx="2" ry="2" />
<text x="934.88" y="207.5" >cli_magic_sca..</text>
</g>
<g >
<title>generic_perform_write (1 samples, 3.12%)</title><rect x="747.5" y="165" width="36.9" height="15.0" fill="rgb(250,101,16)" rx="2" ry="2" />
<text x="750.50" y="175.5" >gen..</text>
</g>
<g >
<title>__libc_start_main (27 samples, 84.38%)</title><rect x="194.4" y="453" width="995.6" height="15.0" fill="rgb(217,135,42)" rx="2" ry="2" />
<text x="197.38" y="463.5" >__libc_start_main</text>
</g>
<g >
<title>cli_scanole2 (2 samples, 6.25%)</title><rect x="1042.5" y="245" width="73.7" height="15.0" fill="rgb(233,155,33)" rx="2" ry="2" />
<text x="1045.50" y="255.5" >cli_scan..</text>
</g>
<g >
<title>scanmanager (27 samples, 84.38%)</title><rect x="194.4" y="421" width="995.6" height="15.0" fill="rgb(210,113,5)" rx="2" ry="2" />
<text x="197.38" y="431.5" >scanmanager</text>
</g>
<g >
<title>cabd_extract (2 samples, 6.25%)</title><rect x="1116.2" y="293" width="73.8" height="15.0" fill="rgb(221,184,12)" rx="2" ry="2" />
<text x="1119.25" y="303.5" >cabd_ext..</text>
</g>
<g >
<title>cli_magic_scan_desc (7 samples, 21.88%)</title><rect x="784.4" y="293" width="258.1" height="15.0" fill="rgb(245,25,14)" rx="2" ry="2" />
<text x="787.38" y="303.5" >cli_magic_scan_desc</text>
</g>
<g >
<title>cli_magic_scan (2 samples, 6.25%)</title><rect x="268.1" y="245" width="73.8" height="15.0" fill="rgb(243,173,25)" rx="2" ry="2" />
<text x="271.12" y="255.5" >cli_magi..</text>
</g>
<g >
<title>filter_search_ext (3 samples, 9.38%)</title><rect x="636.9" y="277" width="110.6" height="15.0" fill="rgb(243,100,2)" rx="2" ry="2" />
<text x="639.88" y="287.5" >filter_search..</text>
</g>
<g >
<title>ext4_dirty_inode (1 samples, 3.12%)</title><rect x="747.5" y="101" width="36.9" height="15.0" fill="rgb(234,69,12)" rx="2" ry="2" />
<text x="750.50" y="111.5" >ext..</text>
</g>
<g >
<title>cli_bm_scanbuff (1 samples, 3.12%)</title><rect x="821.2" y="197" width="36.9" height="15.0" fill="rgb(238,18,14)" rx="2" ry="2" />
<text x="824.25" y="207.5" >cli..</text>
</g>
<g >
<title>cli_magic_scan_file (3 samples, 9.38%)</title><rect x="931.9" y="213" width="110.6" height="15.0" fill="rgb(216,192,37)" rx="2" ry="2" />
<text x="934.88" y="223.5" >cli_magic_sca..</text>
</g>
<g >
<title>cli_ac_scanbuff (1 samples, 3.12%)</title><rect x="784.4" y="197" width="36.8" height="15.0" fill="rgb(209,91,43)" rx="2" ry="2" />
<text x="787.38" y="207.5" >cli..</text>
</g>
<g >
<title>cli_magic_scan (7 samples, 21.88%)</title><rect x="784.4" y="261" width="258.1" height="15.0" fill="rgb(253,92,44)" rx="2" ry="2" />
<text x="787.38" y="271.5" >cli_magic_scan</text>
</g>
<g >
<title>cli_scanmscab (4 samples, 12.50%)</title><rect x="895.0" y="229" width="147.5" height="15.0" fill="rgb(251,129,35)" rx="2" ry="2" />
<text x="898.00" y="239.5" >cli_scanmscab</text>
</g>
<g >
<title>do_syscall_64 (1 samples, 3.12%)</title><rect x="194.4" y="213" width="36.8" height="15.0" fill="rgb(225,144,2)" rx="2" ry="2" />
<text x="197.38" y="223.5" >do_..</text>
</g>
<g >
<title>cli_scan_fmap (10 samples, 31.25%)</title><rect x="378.8" y="309" width="368.7" height="15.0" fill="rgb(217,25,31)" rx="2" ry="2" />
<text x="381.75" y="319.5" >cli_scan_fmap</text>
</g>
<g >
<title>matcher_run (1 samples, 3.12%)</title><rect x="341.9" y="181" width="36.9" height="15.0" fill="rgb(236,34,8)" rx="2" ry="2" />
<text x="344.88" y="191.5" >mat..</text>
</g>
<g >
<title>matcher_run (3 samples, 9.38%)</title><rect x="784.4" y="213" width="110.6" height="15.0" fill="rgb(238,90,1)" rx="2" ry="2" />
<text x="787.38" y="223.5" >matcher_run</text>
</g>
<g >
<title>cli_magic_scan_desc_type (7 samples, 21.88%)</title><rect x="784.4" y="277" width="258.1" height="15.0" fill="rgb(215,47,29)" rx="2" ry="2" />
<text x="787.38" y="287.5" >cli_magic_scan_desc_type</text>
</g>
<g >
<title>matcher_run (1 samples, 3.12%)</title><rect x="305.0" y="197" width="36.9" height="15.0" fill="rgb(220,35,14)" rx="2" ry="2" />
<text x="308.00" y="207.5" >mat..</text>
</g>
<g >
<title>cabd_extract (1 samples, 3.12%)</title><rect x="895.0" y="213" width="36.9" height="15.0" fill="rgb(225,75,7)" rx="2" ry="2" />
<text x="898.00" y="223.5" >cab..</text>
</g>
<g >
<title>cli_bm_scanbuff (5 samples, 15.62%)</title><rect x="452.5" y="277" width="184.4" height="15.0" fill="rgb(246,207,47)" rx="2" ry="2" />
<text x="455.50" y="287.5" >cli_bm_scanbuff</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 3.12%)</title><rect x="747.5" y="277" width="36.9" height="15.0" fill="rgb(216,185,27)" rx="2" ry="2" />
<text x="750.50" y="287.5" >ent..</text>
</g>
<g >
<title>copy_page_to_iter (1 samples, 3.12%)</title><rect x="194.4" y="133" width="36.8" height="15.0" fill="rgb(210,78,37)" rx="2" ry="2" />
<text x="197.38" y="143.5" >cop..</text>
</g>
<g >
<title>[libcrypto.so.1.1] (1 samples, 3.12%)</title><rect x="46.9" y="437" width="36.9" height="15.0" fill="rgb(229,205,40)" rx="2" ry="2" />
<text x="49.88" y="447.5" >[li..</text>
</g>
<g >
<title>__generic_file_write_iter (1 samples, 3.12%)</title><rect x="747.5" y="181" width="36.9" height="15.0" fill="rgb(251,140,33)" rx="2" ry="2" />
<text x="750.50" y="191.5" >__g..</text>
</g>
<g >
<title>__block_commit_write.isra.39 (1 samples, 3.12%)</title><rect x="120.6" y="245" width="36.9" height="15.0" fill="rgb(247,56,30)" rx="2" ry="2" />
<text x="123.62" y="255.5" >__b..</text>
</g>
<g >
<title>__vfs_write (2 samples, 6.25%)</title><rect x="120.6" y="357" width="73.8" height="15.0" fill="rgb(219,19,19)" rx="2" ry="2" />
<text x="123.62" y="367.5" >__vfs_wr..</text>
</g>
<g >
<title>matcher_run (3 samples, 9.38%)</title><rect x="931.9" y="117" width="110.6" height="15.0" fill="rgb(245,125,32)" rx="2" ry="2" />
<text x="934.88" y="127.5" >matcher_run</text>
</g>
<g >
<title>__libc_pread64 (1 samples, 3.12%)</title><rect x="194.4" y="245" width="36.8" height="15.0" fill="rgb(251,58,5)" rx="2" ry="2" />
<text x="197.38" y="255.5" >__l..</text>
</g>
<g >
<title>cli_magic_scan_desc (1 samples, 3.12%)</title><rect x="341.9" y="261" width="36.9" height="15.0" fill="rgb(246,131,12)" rx="2" ry="2" />
<text x="344.88" y="271.5" >cli..</text>
</g>
<g >
<title>ole2_walk_property_tree (2 samples, 6.25%)</title><rect x="1042.5" y="213" width="73.7" height="15.0" fill="rgb(223,34,53)" rx="2" ry="2" />
<text x="1045.50" y="223.5" >ole2_wal..</text>
</g>
<g >
<title>page_mapping (1 samples, 3.12%)</title><rect x="120.6" y="213" width="36.9" height="15.0" fill="rgb(206,195,13)" rx="2" ry="2" />
<text x="123.62" y="223.5" >pag..</text>
</g>
<g >
<title>[unknown] (4 samples, 12.50%)</title><rect x="46.9" y="453" width="147.5" height="15.0" fill="rgb(205,29,31)" rx="2" ry="2" />
<text x="49.88" y="463.5" >[unknown]</text>
</g>
<g >
<title>__generic_write_end (1 samples, 3.12%)</title><rect x="747.5" y="133" width="36.9" height="15.0" fill="rgb(248,128,33)" rx="2" ry="2" />
<text x="750.50" y="143.5" >__g..</text>
</g>
<g >
<title>cli_bm_scanbuff (1 samples, 3.12%)</title><rect x="1079.4" y="69" width="36.8" height="15.0" fill="rgb(222,180,44)" rx="2" ry="2" />
<text x="1082.38" y="79.5" >cli..</text>
</g>
<g >
<title>scanraw (1 samples, 3.12%)</title><rect x="1079.4" y="117" width="36.8" height="15.0" fill="rgb(253,150,5)" rx="2" ry="2" />
<text x="1082.38" y="127.5" >sca..</text>
</g>
<g >
<title>copy_user_enhanced_fast_string (1 samples, 3.12%)</title><rect x="194.4" y="101" width="36.8" height="15.0" fill="rgb(239,5,34)" rx="2" ry="2" />
<text x="197.38" y="111.5" >cop..</text>
</g>
<g >
<title>cli_scan_fmap (3 samples, 9.38%)</title><rect x="931.9" y="133" width="110.6" height="15.0" fill="rgb(214,49,44)" rx="2" ry="2" />
<text x="934.88" y="143.5" >cli_scan_fmap</text>
</g>
</g>
</svg>
OHA YOOOO