ALT Linux Bugzilla
– Attachment 10669 Details for
Bug 42604
kernel-image-rpi-def 5.15.33-alt1: отрисовка курсора блокирует весь графический интерфейс
New bug
|
Search
|
[?]
|
Help
Register
|
Log In
[x]
|
Forgot Password
Login:
[x]
|
EN
|
RU
общесистемный профайл на "плохом" ядре (5.15.33)
slow-cursor.svg (text/html), 238.85 KB, created by
Alexey Sheplyakov
on 2022-04-26 19:10:19 MSK
(
hide
)
Description:
общесистемный профайл на "плохом" ядре (5.15.33)
Filename:
MIME Type:
Creator:
Alexey Sheplyakov
Created:
2022-04-26 19:10:19 MSK
Size:
238.85 KB
patch
obsolete
><?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="1062" onload="init(evt)" viewBox="0 0 1200 1062" 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="1062.0" fill="url(#background)" /> ><text id="title" x="600.00" y="24" >Slow cursor (5.15.33-rpi)</text> ><text id="details" x="10.00" y="1045" > </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="1045" > </text> ><g id="frames"> ><g > ><title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="677.6" y="661" width="7.8" height="15.0" fill="rgb(206,3,14)" rx="2" ry="2" /> ><text x="680.63" y="671.5" ></text> ></g> ><g > ><title>___sys_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="645" width="7.8" height="15.0" fill="rgb(243,79,20)" rx="2" ry="2" /> ><text x="1169.71" y="655.5" ></text> ></g> ><g > ><title>do_epoll_wait (3 samples, 1.97%)</title><rect x="491.3" y="741" width="23.3" height="15.0" fill="rgb(238,65,31)" rx="2" ry="2" /> ><text x="494.32" y="751.5" >d..</text> ></g> ><g > ><title>__arm64_sys_epoll_pwait (3 samples, 1.97%)</title><rect x="491.3" y="773" width="23.3" height="15.0" fill="rgb(221,55,26)" rx="2" ry="2" /> ><text x="494.32" y="783.5" >_..</text> ></g> ><g > ><title>kmalloc_reserve (1 samples, 0.66%)</title><rect x="305.0" y="357" width="7.8" height="15.0" fill="rgb(206,61,9)" rx="2" ry="2" /> ><text x="308.00" y="367.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="1151.2" y="757" width="7.7" height="15.0" fill="rgb(233,112,0)" rx="2" ry="2" /> ><text x="1154.18" y="767.5" ></text> ></g> ><g > ><title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="918.3" y="645" width="7.8" height="15.0" fill="rgb(235,156,12)" rx="2" ry="2" /> ><text x="921.29" y="655.5" ></text> ></g> ><g > ><title>ProcChangeWindowAttributes (1 samples, 0.66%)</title><rect x="235.1" y="917" width="7.8" height="15.0" fill="rgb(227,65,45)" rx="2" ry="2" /> ><text x="238.13" y="927.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="522.4" y="709" width="7.7" height="15.0" fill="rgb(251,136,54)" rx="2" ry="2" /> ><text x="525.37" y="719.5" ></text> ></g> ><g > ><title>__ftruncate64 (1 samples, 0.66%)</title><rect x="1151.2" y="853" width="7.7" height="15.0" fill="rgb(227,72,53)" rx="2" ry="2" /> ><text x="1154.18" y="863.5" ></text> ></g> ><g > ><title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="568.9" y="901" width="7.8" height="15.0" fill="rgb(240,128,7)" rx="2" ry="2" /> ><text x="571.95" y="911.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="576.7" y="773" width="7.8" height="15.0" fill="rgb(252,112,11)" rx="2" ry="2" /> ><text x="579.71" y="783.5" ></text> ></g> ><g > ><title>drmModeMoveCursor (6 samples, 3.95%)</title><rect x="64.3" y="677" width="46.6" height="15.0" fill="rgb(207,173,54)" rx="2" ry="2" /> ><text x="67.34" y="687.5" >drmM..</text> ></g> ><g > ><title>FlushClient (1 samples, 0.66%)</title><rect x="305.0" y="693" width="7.8" height="15.0" fill="rgb(223,217,33)" rx="2" ry="2" /> ><text x="308.00" y="703.5" ></text> ></g> ><g > ><title>el1h_64_irq (1 samples, 0.66%)</title><rect x="1073.6" y="885" width="7.7" height="15.0" fill="rgb(213,173,1)" rx="2" ry="2" /> ><text x="1076.55" y="895.5" ></text> ></g> ><g > ><title>el0t_64_sync (2 samples, 1.32%)</title><rect x="343.8" y="517" width="15.5" height="15.0" fill="rgb(211,81,26)" rx="2" ry="2" /> ><text x="346.82" y="527.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="25.5" y="821" width="15.6" height="15.0" fill="rgb(222,217,17)" rx="2" ry="2" /> ><text x="28.53" y="831.5" ></text> ></g> ><g > ><title>ktime_get_coarse_real_ts64 (1 samples, 0.66%)</title><rect x="33.3" y="693" width="7.8" height="15.0" fill="rgb(215,84,21)" rx="2" ry="2" /> ><text x="36.29" y="703.5" ></text> ></g> ><g > ><title>el0t_64_sync (3 samples, 1.97%)</title><rect x="173.0" y="837" width="23.3" height="15.0" fill="rgb(219,185,53)" rx="2" ry="2" /> ><text x="176.03" y="847.5" >e..</text> ></g> ><g > ><title>kthread (1 samples, 0.66%)</title><rect x="530.1" y="965" width="7.8" height="15.0" fill="rgb(226,131,2)" rx="2" ry="2" /> ><text x="533.13" y="975.5" ></text> ></g> ><g > ><title>_xcb_in_read (1 samples, 0.66%)</title><rect x="1166.7" y="805" width="7.8" height="15.0" fill="rgb(205,13,50)" rx="2" ry="2" /> ><text x="1169.71" y="815.5" ></text> ></g> ><g > ><title>ep_done_scan (1 samples, 0.66%)</title><rect x="118.7" y="757" width="7.7" height="15.0" fill="rgb(251,101,3)" rx="2" ry="2" /> ><text x="121.68" y="767.5" ></text> ></g> ><g > ><title>miDoCopy (2 samples, 1.32%)</title><rect x="281.7" y="853" width="15.5" height="15.0" fill="rgb(234,205,35)" rx="2" ry="2" /> ><text x="284.71" y="863.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="475.8" y="853" width="7.8" height="15.0" fill="rgb(245,147,50)" rx="2" ry="2" /> ><text x="478.79" y="863.5" ></text> ></g> ><g > ><title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="646.6" y="677" width="7.7" height="15.0" fill="rgb(217,35,6)" rx="2" ry="2" /> ><text x="649.58" y="687.5" ></text> ></g> ><g > ><title>[libQt5Core.so.5.15.2] (1 samples, 0.66%)</title><rect x="142.0" y="901" width="7.7" height="15.0" fill="rgb(247,116,25)" rx="2" ry="2" /> ><text x="144.97" y="911.5" ></text> ></g> ><g > ><title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="700.9" y="245" width="7.8" height="15.0" fill="rgb(249,137,28)" rx="2" ry="2" /> ><text x="703.92" y="255.5" ></text> ></g> ><g > ><title>drm_ioctl (1 samples, 0.66%)</title><rect x="235.1" y="501" width="7.8" height="15.0" fill="rgb(250,195,31)" rx="2" ry="2" /> ><text x="238.13" y="511.5" ></text> ></g> ><g > ><title>irq_exit (5 samples, 3.29%)</title><rect x="964.9" y="741" width="38.8" height="15.0" fill="rgb(210,198,18)" rx="2" ry="2" /> ><text x="967.87" y="751.5" >irq..</text> ></g> ><g > ><title>[libQt5XcbQpa.so.5.15.2] (12 samples, 7.89%)</title><rect x="142.0" y="933" width="93.1" height="15.0" fill="rgb(244,63,37)" rx="2" ry="2" /> ><text x="144.97" y="943.5" >[libQt5XcbQ..</text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="677.6" y="645" width="7.8" height="15.0" fill="rgb(239,176,50)" rx="2" ry="2" /> ><text x="680.63" y="655.5" ></text> ></g> ><g > ><title>QXcbConnection::processXcbEvents (3 samples, 1.97%)</title><rect x="708.7" y="805" width="23.3" height="15.0" fill="rgb(254,215,5)" rx="2" ry="2" /> ><text x="711.68" y="815.5" >Q..</text> ></g> ><g > ><title>__atan2 (2 samples, 1.32%)</title><rect x="41.1" y="805" width="15.5" height="15.0" fill="rgb(253,168,15)" rx="2" ry="2" /> ><text x="44.05" y="815.5" ></text> ></g> ><g > ><title>DeliverDeviceEvents (4 samples, 2.63%)</title><rect x="429.2" y="837" width="31.1" height="15.0" fill="rgb(248,133,37)" rx="2" ry="2" /> ><text x="432.21" y="847.5" >De..</text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="918.3" y="565" width="7.8" height="15.0" fill="rgb(214,30,4)" rx="2" ry="2" /> ><text x="921.29" y="575.5" ></text> ></g> ><g > ><title>futex_wait_queue_me (2 samples, 1.32%)</title><rect x="180.8" y="693" width="15.5" height="15.0" fill="rgb(212,1,8)" rx="2" ry="2" /> ><text x="183.79" y="703.5" ></text> ></g> ><g > ><title>poll_for_response (1 samples, 0.66%)</title><rect x="584.5" y="821" width="7.7" height="15.0" fill="rgb(244,58,33)" rx="2" ry="2" /> ><text x="587.47" y="831.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="173.0" y="821" width="23.3" height="15.0" fill="rgb(208,199,15)" rx="2" ry="2" /> ><text x="176.03" y="831.5" >e..</text> ></g> ><g > ><title>_XEventsQueued (1 samples, 0.66%)</title><rect x="584.5" y="837" width="7.7" height="15.0" fill="rgb(238,153,33)" rx="2" ry="2" /> ><text x="587.47" y="847.5" ></text> ></g> ><g > ><title>__GI___poll (1 samples, 0.66%)</title><rect x="576.7" y="869" width="7.8" height="15.0" fill="rgb(236,73,20)" rx="2" ry="2" /> ><text x="579.71" y="879.5" ></text> ></g> ><g > ><title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="242.9" y="677" width="7.8" height="15.0" fill="rgb(216,78,45)" rx="2" ry="2" /> ><text x="245.89" y="687.5" ></text> ></g> ><g > ><title>[libinput.so.10.13.0] (1 samples, 0.66%)</title><rect x="10.0" y="965" width="7.8" height="15.0" fill="rgb(215,47,18)" rx="2" ry="2" /> ><text x="13.00" y="975.5" ></text> ></g> ><g > ><title>Dispatch (36 samples, 23.68%)</title><rect x="235.1" y="933" width="279.5" height="15.0" fill="rgb(220,184,13)" rx="2" ry="2" /> ><text x="238.13" y="943.5" >Dispatch</text> ></g> ><g > ><title>el0t_64_sync (3 samples, 1.97%)</title><rect x="110.9" y="901" width="23.3" height="15.0" fill="rgb(222,70,29)" rx="2" ry="2" /> ><text x="113.92" y="911.5" >e..</text> ></g> ><g > ><title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="638.8" y="661" width="7.8" height="15.0" fill="rgb(230,143,13)" rx="2" ry="2" /> ><text x="641.82" y="671.5" ></text> ></g> ><g > ><title>lxqt-panel (1 samples, 0.66%)</title><rect x="553.4" y="997" width="7.8" height="15.0" fill="rgb(223,2,28)" rx="2" ry="2" /> ><text x="556.42" y="1007.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="297.2" y="869" width="7.8" height="15.0" fill="rgb(230,66,46)" rx="2" ry="2" /> ><text x="300.24" y="879.5" ></text> ></g> ><g > ><title>QWidgetPrivate::paintBackground (4 samples, 2.63%)</title><rect x="607.8" y="709" width="31.0" height="15.0" fill="rgb(248,71,25)" rx="2" ry="2" /> ><text x="610.76" y="719.5" >QW..</text> ></g> ><g > ><title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="437.0" y="565" width="23.3" height="15.0" fill="rgb(253,97,45)" rx="2" ry="2" /> ><text x="439.97" y="575.5" >e..</text> ></g> ><g > ><title>__GI___writev (3 samples, 1.97%)</title><rect x="437.0" y="645" width="23.3" height="15.0" fill="rgb(233,125,49)" rx="2" ry="2" /> ><text x="439.97" y="655.5" >_..</text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="134.2" y="805" width="7.8" height="15.0" fill="rgb(210,167,51)" rx="2" ry="2" /> ><text x="137.21" y="815.5" ></text> ></g> ><g > ><title>__ioctl (3 samples, 1.97%)</title><rect x="359.3" y="581" width="23.3" height="15.0" fill="rgb(250,34,50)" rx="2" ry="2" /> ><text x="362.34" y="591.5" >_..</text> ></g> ><g > ><title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="1073.6" y="821" width="7.7" height="15.0" fill="rgb(233,37,9)" rx="2" ry="2" /> ><text x="1076.55" y="831.5" ></text> ></g> ><g > ><title>_xcb_in_read (3 samples, 1.97%)</title><rect x="196.3" y="885" width="23.3" height="15.0" fill="rgb(254,216,7)" rx="2" ry="2" /> ><text x="199.32" y="895.5" >_..</text> ></g> ><g > ><title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="869" width="7.8" height="15.0" fill="rgb(247,99,1)" rx="2" ry="2" /> ><text x="478.79" y="879.5" ></text> ></g> ><g > ><title>__usb_hcd_giveback_urb (3 samples, 1.97%)</title><rect x="980.4" y="645" width="23.3" height="15.0" fill="rgb(250,36,1)" rx="2" ry="2" /> ><text x="983.39" y="655.5" >_..</text> ></g> ><g > ><title>truncate_pagecache (1 samples, 0.66%)</title><rect x="1151.2" y="661" width="7.7" height="15.0" fill="rgb(230,101,31)" rx="2" ry="2" /> ><text x="1154.18" y="671.5" ></text> ></g> ><g > ><title>ospoll_wait (12 samples, 7.89%)</title><rect x="41.1" y="933" width="93.1" height="15.0" fill="rgb(216,122,44)" rx="2" ry="2" /> ><text x="44.05" y="943.5" >ospoll_wait</text> ></g> ><g > ><title>_start (36 samples, 23.68%)</title><rect x="235.1" y="981" width="279.5" height="15.0" fill="rgb(207,122,2)" rx="2" ry="2" /> ><text x="238.13" y="991.5" >_start</text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="693.2" y="741" width="15.5" height="15.0" fill="rgb(241,91,30)" rx="2" ry="2" /> ><text x="696.16" y="751.5" ></text> ></g> ><g > ><title>bmap (1 samples, 0.66%)</title><rect x="530.1" y="885" width="7.8" height="15.0" fill="rgb(217,97,29)" rx="2" ry="2" /> ><text x="533.13" y="895.5" ></text> ></g> ><g > ><title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="87.6" y="165" width="7.8" height="15.0" fill="rgb(241,193,3)" rx="2" ry="2" /> ><text x="90.63" y="175.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="110.9" y="885" width="23.3" height="15.0" fill="rgb(246,64,51)" rx="2" ry="2" /> ><text x="113.92" y="895.5" >e..</text> ></g> ><g > ><title>TryClientEvents (3 samples, 1.97%)</title><rect x="382.6" y="709" width="23.3" height="15.0" fill="rgb(205,54,6)" rx="2" ry="2" /> ><text x="385.63" y="719.5" >T..</text> ></g> ><g > ><title>InputThreadFillPipe (2 samples, 1.32%)</title><rect x="25.5" y="933" width="15.6" height="15.0" fill="rgb(240,19,27)" rx="2" ry="2" /> ><text x="28.53" y="943.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="475.8" y="789" width="7.8" height="15.0" fill="rgb(254,102,49)" rx="2" ry="2" /> ><text x="478.79" y="799.5" ></text> ></g> ><g > ><title>__arm64_sys_ioctl (2 samples, 1.32%)</title><rect x="460.3" y="661" width="15.5" height="15.0" fill="rgb(232,215,46)" rx="2" ry="2" /> ><text x="463.26" y="671.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="460.3" y="693" width="15.5" height="15.0" fill="rgb(214,39,18)" rx="2" ry="2" /> ><text x="463.26" y="703.5" ></text> ></g> ><g > ><title>handle_mm_fault (1 samples, 0.66%)</title><rect x="910.5" y="549" width="7.8" height="15.0" fill="rgb(208,194,11)" rx="2" ry="2" /> ><text x="913.53" y="559.5" ></text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="638.8" y="613" width="7.8" height="15.0" fill="rgb(213,54,45)" rx="2" ry="2" /> ><text x="641.82" y="623.5" ></text> ></g> ><g > ><title>drm_ioctl (2 samples, 1.32%)</title><rect x="367.1" y="453" width="15.5" height="15.0" fill="rgb(235,209,12)" rx="2" ry="2" /> ><text x="370.11" y="463.5" ></text> ></g> ><g > ><title>do_futex (2 samples, 1.32%)</title><rect x="180.8" y="725" width="15.5" height="15.0" fill="rgb(206,11,20)" rx="2" ry="2" /> ><text x="183.79" y="735.5" ></text> ></g> ><g > ><title>shmem_read_mapping_page_gfp (1 samples, 0.66%)</title><rect x="289.5" y="341" width="7.7" height="15.0" fill="rgb(214,217,18)" rx="2" ry="2" /> ><text x="292.47" y="351.5" ></text> ></g> ><g > ><title>__mod_timer (1 samples, 0.66%)</title><rect x="468.0" y="373" width="7.8" height="15.0" fill="rgb(233,85,15)" rx="2" ry="2" /> ><text x="471.03" y="383.5" ></text> ></g> ><g > ><title>QToolButton::initStyleOption (1 samples, 0.66%)</title><rect x="677.6" y="629" width="7.8" height="15.0" fill="rgb(231,164,36)" rx="2" ry="2" /> ><text x="680.63" y="639.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="235.1" y="613" width="7.8" height="15.0" fill="rgb(221,159,12)" rx="2" ry="2" /> ><text x="238.13" y="623.5" ></text> ></g> ><g > ><title>mbox_send_message (1 samples, 0.66%)</title><rect x="87.6" y="261" width="7.8" height="15.0" fill="rgb(207,26,49)" rx="2" ry="2" /> ><text x="90.63" y="271.5" ></text> ></g> ><g > ><title>drm_mode_cursor_universal (2 samples, 1.32%)</title><rect x="343.8" y="341" width="15.5" height="15.0" fill="rgb(238,126,32)" rx="2" ry="2" /> ><text x="346.82" y="351.5" ></text> ></g> ><g > ><title>ret_from_fork (2 samples, 1.32%)</title><rect x="926.1" y="981" width="15.5" height="15.0" fill="rgb(211,161,35)" rx="2" ry="2" /> ><text x="929.05" y="991.5" ></text> ></g> ><g > ><title>poll_for_next_event (1 samples, 0.66%)</title><rect x="1166.7" y="821" width="7.8" height="15.0" fill="rgb(226,33,41)" rx="2" ry="2" /> ><text x="1169.71" y="831.5" ></text> ></g> ><g > ><title>do_writev (1 samples, 0.66%)</title><rect x="405.9" y="485" width="7.8" height="15.0" fill="rgb(217,88,51)" rx="2" ry="2" /> ><text x="408.92" y="495.5" ></text> ></g> ><g > ><title>QPainter::fillRect (4 samples, 2.63%)</title><rect x="607.8" y="677" width="31.0" height="15.0" fill="rgb(230,74,45)" rx="2" ry="2" /> ><text x="610.76" y="687.5" >QP..</text> ></g> ><g > ><title>el1_interrupt (1 samples, 0.66%)</title><rect x="219.6" y="645" width="7.8" height="15.0" fill="rgb(252,163,0)" rx="2" ry="2" /> ><text x="222.61" y="655.5" ></text> ></g> ><g > ><title>__do_softirq (1 samples, 0.66%)</title><rect x="452.5" y="197" width="7.8" height="15.0" fill="rgb(229,184,24)" rx="2" ry="2" /> ><text x="455.50" y="207.5" ></text> ></g> ><g > ><title>ep_done_scan (1 samples, 0.66%)</title><rect x="126.4" y="725" width="7.8" height="15.0" fill="rgb(224,212,31)" rx="2" ry="2" /> ><text x="129.45" y="735.5" ></text> ></g> ><g > ><title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="789" width="7.8" height="15.0" fill="rgb(221,26,0)" rx="2" ry="2" /> ><text x="1169.71" y="799.5" ></text> ></g> ><g > ><title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="646.6" y="645" width="7.7" height="15.0" fill="rgb(232,46,31)" rx="2" ry="2" /> ><text x="649.58" y="655.5" ></text> ></g> ><g > ><title>st_TexSubImage (4 samples, 2.63%)</title><rect x="250.7" y="773" width="31.0" height="15.0" fill="rgb(217,91,34)" rx="2" ry="2" /> ><text x="253.66" y="783.5" >st..</text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="522.4" y="661" width="7.7" height="15.0" fill="rgb(250,156,11)" rx="2" ry="2" /> ><text x="525.37" y="671.5" ></text> ></g> ><g > ><title>tasklet_action_common.constprop.0 (4 samples, 2.63%)</title><rect x="972.6" y="677" width="31.1" height="15.0" fill="rgb(236,204,16)" rx="2" ry="2" /> ><text x="975.63" y="687.5" >ta..</text> ></g> ><g > ><title>_xcb_in_read (1 samples, 0.66%)</title><rect x="584.5" y="773" width="7.7" height="15.0" fill="rgb(223,143,35)" rx="2" ry="2" /> ><text x="587.47" y="783.5" ></text> ></g> ><g > ><title>schedule_timeout (1 samples, 0.66%)</title><rect x="95.4" y="245" width="7.8" height="15.0" fill="rgb(216,61,43)" rx="2" ry="2" /> ><text x="98.39" y="255.5" ></text> ></g> ><g > ><title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="700.9" y="405" width="7.8" height="15.0" fill="rgb(236,41,9)" rx="2" ry="2" /> ><text x="703.92" y="415.5" ></text> ></g> ><g > ><title>schedule_timeout (1 samples, 0.66%)</title><rect x="933.8" y="741" width="7.8" height="15.0" fill="rgb(219,5,1)" rx="2" ry="2" /> ><text x="936.82" y="751.5" ></text> ></g> ><g > ><title>ChangeToCursor (1 samples, 0.66%)</title><rect x="235.1" y="869" width="7.8" height="15.0" fill="rgb(247,222,20)" rx="2" ry="2" /> ><text x="238.13" y="879.5" ></text> ></g> ><g > ><title>QCoreApplication::notifyInternal2 (2 samples, 1.32%)</title><rect x="654.3" y="693" width="15.6" height="15.0" fill="rgb(242,134,36)" rx="2" ry="2" /> ><text x="657.34" y="703.5" ></text> ></g> ><g > ><title>sock_sendmsg (1 samples, 0.66%)</title><rect x="305.0" y="437" width="7.8" height="15.0" fill="rgb(250,80,41)" rx="2" ry="2" /> ><text x="308.00" y="447.5" ></text> ></g> ><g > ><title>vc4_fkms_crtc_duplicate_state (1 samples, 0.66%)</title><rect x="103.2" y="357" width="7.7" height="15.0" fill="rgb(230,117,21)" rx="2" ry="2" /> ><text x="106.16" y="367.5" ></text> ></g> ><g > ><title>g_main_context_iterate (1 samples, 0.66%)</title><rect x="522.4" y="901" width="7.7" height="15.0" fill="rgb(223,73,48)" rx="2" ry="2" /> ><text x="525.37" y="911.5" ></text> ></g> ><g > ><title>[pcmanfm-qt] (2 samples, 1.32%)</title><rect x="654.3" y="645" width="15.6" height="15.0" fill="rgb(215,167,37)" rx="2" ry="2" /> ><text x="657.34" y="655.5" ></text> ></g> ><g > ><title>shmem_getpage_gfp (1 samples, 0.66%)</title><rect x="289.5" y="325" width="7.7" height="15.0" fill="rgb(223,194,3)" rx="2" ry="2" /> ><text x="292.47" y="335.5" ></text> ></g> ><g > ><title>__arm64_sys_write (1 samples, 0.66%)</title><rect x="33.3" y="789" width="7.8" height="15.0" fill="rgb(235,61,3)" rx="2" ry="2" /> ><text x="36.29" y="799.5" ></text> ></g> ><g > ><title>TryClientEvents (3 samples, 1.97%)</title><rect x="437.0" y="741" width="23.3" height="15.0" fill="rgb(220,151,46)" rx="2" ry="2" /> ><text x="439.97" y="751.5" >T..</text> ></g> ><g > ><title>default_idle_call (5 samples, 3.29%)</title><rect x="1042.5" y="917" width="38.8" height="15.0" fill="rgb(237,28,11)" rx="2" ry="2" /> ><text x="1045.50" y="927.5" >def..</text> ></g> ><g > ><title>[libQt5Gui.so.5.15.2] (4 samples, 2.63%)</title><rect x="607.8" y="645" width="31.0" height="15.0" fill="rgb(217,80,29)" rx="2" ry="2" /> ><text x="610.76" y="655.5" >[l..</text> ></g> ><g > ><title>handle_domain_irq (1 samples, 0.66%)</title><rect x="1073.6" y="789" width="7.7" height="15.0" fill="rgb(237,188,25)" rx="2" ry="2" /> ><text x="1076.55" y="799.5" ></text> ></g> ><g > ><title>sd_event_run (2 samples, 1.32%)</title><rect x="1151.2" y="933" width="15.5" height="15.0" fill="rgb(222,72,42)" rx="2" ry="2" /> ><text x="1154.18" y="943.5" ></text> ></g> ><g > ><title>[perf] (5 samples, 3.29%)</title><rect x="879.5" y="901" width="38.8" height="15.0" fill="rgb(218,103,20)" rx="2" ry="2" /> ><text x="882.47" y="911.5" >[pe..</text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (9 samples, 5.92%)</title><rect x="600.0" y="741" width="69.9" height="15.0" fill="rgb(248,107,42)" rx="2" ry="2" /> ><text x="603.00" y="751.5" >[libQt5..</text> ></g> ><g > ><title>QPalette::operator= (1 samples, 0.66%)</title><rect x="677.6" y="597" width="7.8" height="15.0" fill="rgb(217,8,5)" rx="2" ry="2" /> ><text x="680.63" y="607.5" ></text> ></g> ><g > ><title>miSpriteTrace (1 samples, 0.66%)</title><rect x="421.4" y="805" width="7.8" height="15.0" fill="rgb(219,148,44)" rx="2" ry="2" /> ><text x="424.45" y="815.5" ></text> ></g> ><g > ><title>__primary_switched (13 samples, 8.55%)</title><rect x="941.6" y="981" width="100.9" height="15.0" fill="rgb(220,204,3)" rx="2" ry="2" /> ><text x="944.58" y="991.5" >__primary_sw..</text> ></g> ><g > ><title>QCommonStyle::pixelMetric (1 samples, 0.66%)</title><rect x="669.9" y="581" width="7.7" height="15.0" fill="rgb(242,224,20)" rx="2" ry="2" /> ><text x="672.87" y="591.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="297.2" y="853" width="7.8" height="15.0" fill="rgb(230,226,17)" rx="2" ry="2" /> ><text x="300.24" y="863.5" ></text> ></g> ><g > ><title>drm_mode_cursor_common (2 samples, 1.32%)</title><rect x="343.8" y="357" width="15.5" height="15.0" fill="rgb(226,48,18)" rx="2" ry="2" /> ><text x="346.82" y="367.5" ></text> ></g> ><g > ><title>QWidgetPrivate::sendPaintEvent (1 samples, 0.66%)</title><rect x="646.6" y="629" width="7.7" height="15.0" fill="rgb(240,44,22)" rx="2" ry="2" /> ><text x="649.58" y="639.5" ></text> ></g> ><g > ><title>[libfm-qt.so.10.0.0] (1 samples, 0.66%)</title><rect x="700.9" y="597" width="7.8" height="15.0" fill="rgb(231,25,20)" rx="2" ry="2" /> ><text x="703.92" y="607.5" ></text> ></g> ><g > ><title>QListView::paintEvent (1 samples, 0.66%)</title><rect x="638.8" y="549" width="7.8" height="15.0" fill="rgb(251,48,46)" rx="2" ry="2" /> ><text x="641.82" y="559.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="1151.2" y="789" width="7.7" height="15.0" fill="rgb(223,25,2)" rx="2" ry="2" /> ><text x="1154.18" y="799.5" ></text> ></g> ><g > ><title>smpboot_thread_fn (1 samples, 0.66%)</title><rect x="568.9" y="949" width="7.8" height="15.0" fill="rgb(222,155,40)" rx="2" ry="2" /> ><text x="571.95" y="959.5" ></text> ></g> ><g > ><title>jbd2_journal_commit_transaction (1 samples, 0.66%)</title><rect x="530.1" y="933" width="7.8" height="15.0" fill="rgb(232,161,31)" rx="2" ry="2" /> ><text x="533.13" y="943.5" ></text> ></g> ><g > ><title>commit_tail (1 samples, 0.66%)</title><rect x="468.0" y="501" width="7.8" height="15.0" fill="rgb(222,82,41)" rx="2" ry="2" /> ><text x="471.03" y="511.5" ></text> ></g> ><g > ><title>set_target (2 samples, 1.32%)</title><rect x="926.1" y="901" width="15.5" height="15.0" fill="rgb(250,122,14)" rx="2" ry="2" /> ><text x="929.05" y="911.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="537.9" y="917" width="7.8" height="15.0" fill="rgb(239,193,15)" rx="2" ry="2" /> ><text x="540.89" y="927.5" ></text> ></g> ><g > ><title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="700.9" y="693" width="7.8" height="15.0" fill="rgb(212,140,19)" rx="2" ry="2" /> ><text x="703.92" y="703.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="1182.2" y="869" width="7.8" height="15.0" fill="rgb(207,162,21)" rx="2" ry="2" /> ><text x="1185.24" y="879.5" ></text> ></g> ><g > ><title>[libinput.so.10.13.0] (2 samples, 1.32%)</title><rect x="41.1" y="837" width="15.5" height="15.0" fill="rgb(207,96,42)" rx="2" ry="2" /> ><text x="44.05" y="847.5" ></text> ></g> ><g > ><title>xcb_wait_for_reply (2 samples, 1.32%)</title><rect x="716.4" y="725" width="15.6" height="15.0" fill="rgb(237,161,6)" rx="2" ry="2" /> ><text x="719.45" y="735.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="739.7" y="853" width="7.8" height="15.0" fill="rgb(252,139,33)" rx="2" ry="2" /> ><text x="742.74" y="863.5" ></text> ></g> ><g > ><title>__fdget_pos (1 samples, 0.66%)</title><rect x="405.9" y="469" width="7.8" height="15.0" fill="rgb(213,137,35)" rx="2" ry="2" /> ><text x="408.92" y="479.5" ></text> ></g> ><g > ><title>TryClientEvents (1 samples, 0.66%)</title><rect x="305.0" y="725" width="7.8" height="15.0" fill="rgb(205,121,38)" rx="2" ry="2" /> ><text x="308.00" y="735.5" ></text> ></g> ><g > ><title>__ioctl (1 samples, 0.66%)</title><rect x="235.1" y="629" width="7.8" height="15.0" fill="rgb(245,229,8)" rx="2" ry="2" /> ><text x="238.13" y="639.5" ></text> ></g> ><g > ><title>DeliverEventToInputClients (4 samples, 2.63%)</title><rect x="429.2" y="757" width="31.1" height="15.0" fill="rgb(253,54,23)" rx="2" ry="2" /> ><text x="432.21" y="767.5" >De..</text> ></g> ><g > ><title>__schedule (1 samples, 0.66%)</title><rect x="499.1" y="677" width="7.7" height="15.0" fill="rgb(254,173,11)" rx="2" ry="2" /> ><text x="502.08" y="687.5" ></text> ></g> ><g > ><title>XQueryPointer (1 samples, 0.66%)</title><rect x="1174.5" y="853" width="7.7" height="15.0" fill="rgb(207,59,8)" rx="2" ry="2" /> ><text x="1177.47" y="863.5" ></text> ></g> ><g > ><title>ext4_bmap (1 samples, 0.66%)</title><rect x="530.1" y="869" width="7.8" height="15.0" fill="rgb(246,170,25)" rx="2" ry="2" /> ><text x="533.13" y="879.5" ></text> ></g> ><g > ><title>QFrame::event (1 samples, 0.66%)</title><rect x="700.9" y="629" width="7.8" height="15.0" fill="rgb(207,214,22)" rx="2" ry="2" /> ><text x="703.92" y="639.5" ></text> ></g> ><g > ><title>__libc_start_main (3 samples, 1.97%)</title><rect x="1166.7" y="965" width="23.3" height="15.0" fill="rgb(254,185,32)" rx="2" ry="2" /> ><text x="1169.71" y="975.5" >_..</text> ></g> ><g > ><title>_start (17 samples, 11.18%)</title><rect x="600.0" y="981" width="132.0" height="15.0" fill="rgb(220,51,7)" rx="2" ry="2" /> ><text x="603.00" y="991.5" >_start</text> ></g> ><g > ><title>msg_submit (1 samples, 0.66%)</title><rect x="87.6" y="245" width="7.8" height="15.0" fill="rgb(232,203,52)" rx="2" ry="2" /> ><text x="90.63" y="255.5" ></text> ></g> ><g > ><title>policy_node (1 samples, 0.66%)</title><rect x="289.5" y="293" width="7.7" height="15.0" fill="rgb(221,116,21)" rx="2" ry="2" /> ><text x="292.47" y="303.5" ></text> ></g> ><g > ><title>ktime_get_coarse_real_ts64 (1 samples, 0.66%)</title><rect x="165.3" y="789" width="7.7" height="15.0" fill="rgb(231,189,36)" rx="2" ry="2" /> ><text x="168.26" y="799.5" ></text> ></g> ><g > ><title>qterminal (1 samples, 0.66%)</title><rect x="918.3" y="997" width="7.8" height="15.0" fill="rgb(251,198,14)" rx="2" ry="2" /> ><text x="921.29" y="1007.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit_planes (1 samples, 0.66%)</title><rect x="351.6" y="229" width="7.7" height="15.0" fill="rgb(248,26,19)" rx="2" ry="2" /> ><text x="354.58" y="239.5" ></text> ></g> ><g > ><title>[libQt5Core.so.5.15.2] (1 samples, 0.66%)</title><rect x="685.4" y="661" width="7.8" height="15.0" fill="rgb(232,66,5)" rx="2" ry="2" /> ><text x="688.39" y="671.5" ></text> ></g> ><g > ><title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="757" width="7.7" height="15.0" fill="rgb(227,102,52)" rx="2" ry="2" /> ><text x="587.47" y="767.5" ></text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="669.9" y="757" width="7.7" height="15.0" fill="rgb(218,211,6)" rx="2" ry="2" /> ><text x="672.87" y="767.5" ></text> ></g> ><g > ><title>do_writev (1 samples, 0.66%)</title><rect x="918.3" y="469" width="7.8" height="15.0" fill="rgb(213,55,53)" rx="2" ry="2" /> ><text x="921.29" y="479.5" ></text> ></g> ><g > ><title>_xcb_in_read (1 samples, 0.66%)</title><rect x="600.0" y="613" width="7.8" height="15.0" fill="rgb(254,92,47)" rx="2" ry="2" /> ><text x="603.00" y="623.5" ></text> ></g> ><g > ><title>add_to_page_cache_lru (1 samples, 0.66%)</title><rect x="902.8" y="597" width="7.7" height="15.0" fill="rgb(217,178,25)" rx="2" ry="2" /> ><text x="905.76" y="607.5" ></text> ></g> ><g > ><title>cpu_startup_entry (13 samples, 8.55%)</title><rect x="941.6" y="917" width="100.9" height="15.0" fill="rgb(242,39,0)" rx="2" ry="2" /> ><text x="944.58" y="927.5" >cpu_startup_..</text> ></g> ><g > ><title>__schedule (2 samples, 1.32%)</title><rect x="180.8" y="661" width="15.5" height="15.0" fill="rgb(235,135,49)" rx="2" ry="2" /> ><text x="183.79" y="671.5" ></text> ></g> ><g > ><title>__libc_start_main (17 samples, 11.18%)</title><rect x="600.0" y="965" width="132.0" height="15.0" fill="rgb(249,24,7)" rx="2" ry="2" /> ><text x="603.00" y="975.5" >__libc_start_main</text> ></g> ><g > ><title>__schedule (6 samples, 3.95%)</title><rect x="1089.1" y="901" width="46.6" height="15.0" fill="rgb(208,60,23)" rx="2" ry="2" /> ><text x="1092.08" y="911.5" >__sc..</text> ></g> ><g > ><title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="219.6" y="613" width="7.8" height="15.0" fill="rgb(226,222,12)" rx="2" ry="2" /> ><text x="222.61" y="623.5" ></text> ></g> ><g > ><title>clk_change_rate (2 samples, 1.32%)</title><rect x="926.1" y="821" width="15.5" height="15.0" fill="rgb(209,104,1)" rx="2" ry="2" /> ><text x="929.05" y="831.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="305.0" y="629" width="7.8" height="15.0" fill="rgb(253,106,0)" rx="2" ry="2" /> ><text x="308.00" y="639.5" ></text> ></g> ><g > ><title>drm_gem_get_pages (1 samples, 0.66%)</title><rect x="289.5" y="357" width="7.7" height="15.0" fill="rgb(236,97,53)" rx="2" ry="2" /> ><text x="292.47" y="367.5" ></text> ></g> ><g > ><title>glamor_upload_boxes (2 samples, 1.32%)</title><rect x="281.7" y="757" width="15.5" height="15.0" fill="rgb(209,125,49)" rx="2" ry="2" /> ><text x="284.71" y="767.5" ></text> ></g> ><g > ><title>QApplication::notify (1 samples, 0.66%)</title><rect x="700.9" y="677" width="7.8" height="15.0" fill="rgb(238,121,37)" rx="2" ry="2" /> ><text x="703.92" y="687.5" ></text> ></g> ><g > ><title>DeviceEnterNotifies (1 samples, 0.66%)</title><rect x="413.7" y="773" width="7.7" height="15.0" fill="rgb(244,127,42)" rx="2" ry="2" /> ><text x="416.68" y="783.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit_planes (1 samples, 0.66%)</title><rect x="468.0" y="469" width="7.8" height="15.0" fill="rgb(218,189,6)" rx="2" ry="2" /> ><text x="471.03" y="479.5" ></text> ></g> ><g > ><title>ProcessDeviceEvent (2 samples, 1.32%)</title><rect x="305.0" y="853" width="15.5" height="15.0" fill="rgb(233,164,53)" rx="2" ry="2" /> ><text x="308.00" y="863.5" ></text> ></g> ><g > ><title>QFrame::event (1 samples, 0.66%)</title><rect x="646.6" y="581" width="7.7" height="15.0" fill="rgb(245,114,16)" rx="2" ry="2" /> ><text x="649.58" y="591.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="1166.7" y="693" width="7.8" height="15.0" fill="rgb(245,15,30)" rx="2" ry="2" /> ><text x="1169.71" y="703.5" ></text> ></g> ><g > ><title>schedule_hrtimeout_range (1 samples, 0.66%)</title><rect x="227.4" y="725" width="7.7" height="15.0" fill="rgb(234,184,50)" rx="2" ry="2" /> ><text x="230.37" y="735.5" ></text> ></g> ><g > ><title>glamor_put_image (4 samples, 2.63%)</title><rect x="250.7" y="885" width="31.0" height="15.0" fill="rgb(237,57,22)" rx="2" ry="2" /> ><text x="253.66" y="895.5" >gl..</text> ></g> ><g > ><title>file_update_time (1 samples, 0.66%)</title><rect x="33.3" y="709" width="7.8" height="15.0" fill="rgb(233,62,17)" rx="2" ry="2" /> ><text x="36.29" y="719.5" ></text> ></g> ><g > ><title>g_socket_condition_check (1 samples, 0.66%)</title><rect x="522.4" y="741" width="7.7" height="15.0" fill="rgb(241,153,51)" rx="2" ry="2" /> ><text x="525.37" y="751.5" ></text> ></g> ><g > ><title>glTexSubImage2D (1 samples, 0.66%)</title><rect x="514.6" y="949" width="7.8" height="15.0" fill="rgb(237,8,54)" rx="2" ry="2" /> ><text x="517.61" y="959.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit_planes (1 samples, 0.66%)</title><rect x="235.1" y="325" width="7.8" height="15.0" fill="rgb(248,202,26)" rx="2" ry="2" /> ><text x="238.13" y="335.5" ></text> ></g> ><g > ><title>el0_svc (3 samples, 1.97%)</title><rect x="491.3" y="837" width="23.3" height="15.0" fill="rgb(224,68,0)" rx="2" ry="2" /> ><text x="494.32" y="847.5" >e..</text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="677.6" y="709" width="15.6" height="15.0" fill="rgb(248,210,23)" rx="2" ry="2" /> ><text x="680.63" y="719.5" ></text> ></g> ><g > ><title>schedule (1 samples, 0.66%)</title><rect x="227.4" y="693" width="7.7" height="15.0" fill="rgb(240,75,21)" rx="2" ry="2" /> ><text x="230.37" y="703.5" ></text> ></g> ><g > ><title>glamor_upload_region (4 samples, 2.63%)</title><rect x="250.7" y="853" width="31.0" height="15.0" fill="rgb(251,105,2)" rx="2" ry="2" /> ><text x="253.66" y="863.5" >gl..</text> ></g> ><g > ><title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="747.5" y="725" width="7.8" height="15.0" fill="rgb(224,127,9)" rx="2" ry="2" /> ><text x="750.50" y="735.5" ></text> ></g> ><g > ><title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="398.2" y="357" width="7.7" height="15.0" fill="rgb(212,57,45)" rx="2" ry="2" /> ><text x="401.16" y="367.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (6 samples, 3.95%)</title><rect x="64.3" y="597" width="46.6" height="15.0" fill="rgb(220,119,54)" rx="2" ry="2" /> ><text x="67.34" y="607.5" >el0t..</text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="561.2" y="917" width="7.7" height="15.0" fill="rgb(237,138,4)" rx="2" ry="2" /> ><text x="564.18" y="927.5" ></text> ></g> ><g > ><title>do_epoll_wait (3 samples, 1.97%)</title><rect x="110.9" y="773" width="23.3" height="15.0" fill="rgb(230,55,40)" rx="2" ry="2" /> ><text x="113.92" y="783.5" >d..</text> ></g> ><g > ><title>__arm64_sys_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="469" width="7.7" height="15.0" fill="rgb(210,9,43)" rx="2" ry="2" /> ><text x="292.47" y="479.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="242.9" y="773" width="7.8" height="15.0" fill="rgb(217,47,40)" rx="2" ry="2" /> ><text x="245.89" y="783.5" ></text> ></g> ><g > ><title>drm_crtc_commit_wait (1 samples, 0.66%)</title><rect x="343.8" y="229" width="7.8" height="15.0" fill="rgb(253,36,52)" rx="2" ry="2" /> ><text x="346.82" y="239.5" ></text> ></g> ><g > ><title>ext4_file_write_iter (5 samples, 3.29%)</title><rect x="879.5" y="693" width="38.8" height="15.0" fill="rgb(237,34,48)" rx="2" ry="2" /> ><text x="882.47" y="703.5" >ext..</text> ></g> ><g > ><title>futex_abstimed_wait_cancelable (1 samples, 0.66%)</title><rect x="134.2" y="853" width="7.8" height="15.0" fill="rgb(228,84,30)" rx="2" ry="2" /> ><text x="137.21" y="863.5" ></text> ></g> ><g > ><title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="700.9" y="501" width="7.8" height="15.0" fill="rgb(232,137,6)" rx="2" ry="2" /> ><text x="703.92" y="511.5" ></text> ></g> ><g > ><title>start_thread (1 samples, 0.66%)</title><rect x="134.2" y="965" width="7.8" height="15.0" fill="rgb(251,215,45)" rx="2" ry="2" /> ><text x="137.21" y="975.5" ></text> ></g> ><g > ><title>__arm64_sys_write (1 samples, 0.66%)</title><rect x="149.7" y="773" width="7.8" height="15.0" fill="rgb(225,60,19)" rx="2" ry="2" /> ><text x="152.74" y="783.5" ></text> ></g> ><g > ><title>g_wakeup_signal (1 samples, 0.66%)</title><rect x="149.7" y="901" width="7.8" height="15.0" fill="rgb(210,176,51)" rx="2" ry="2" /> ><text x="152.74" y="911.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="33.3" y="805" width="7.8" height="15.0" fill="rgb(230,125,24)" rx="2" ry="2" /> ><text x="36.29" y="815.5" ></text> ></g> ><g > ><title>drmModeMoveCursor (3 samples, 1.97%)</title><rect x="359.3" y="629" width="23.3" height="15.0" fill="rgb(207,198,16)" rx="2" ry="2" /> ><text x="362.34" y="639.5" >d..</text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="149.7" y="789" width="7.8" height="15.0" fill="rgb(245,126,24)" rx="2" ry="2" /> ><text x="152.74" y="799.5" ></text> ></g> ><g > ><title>QXcbConnection::xi2UpdateScrollingDevice (1 samples, 0.66%)</title><rect x="918.3" y="741" width="7.8" height="15.0" fill="rgb(244,90,9)" rx="2" ry="2" /> ><text x="921.29" y="751.5" ></text> ></g> ><g > ><title>__schedule (2 samples, 1.32%)</title><rect x="1011.4" y="869" width="15.6" height="15.0" fill="rgb(213,104,48)" rx="2" ry="2" /> ><text x="1014.45" y="879.5" ></text> ></g> ><g > ><title>InputThreadDoWork (14 samples, 9.21%)</title><rect x="25.5" y="949" width="108.7" height="15.0" fill="rgb(217,63,10)" rx="2" ry="2" /> ><text x="28.53" y="959.5" >InputThreadDo..</text> ></g> ><g > ><title>poll_for_event (1 samples, 0.66%)</title><rect x="1166.7" y="837" width="7.8" height="15.0" fill="rgb(233,164,54)" rx="2" ry="2" /> ><text x="1169.71" y="847.5" ></text> ></g> ><g > ><title>ChangeWindowAttributes (1 samples, 0.66%)</title><rect x="235.1" y="901" width="7.8" height="15.0" fill="rgb(211,170,9)" rx="2" ry="2" /> ><text x="238.13" y="911.5" ></text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="638.8" y="533" width="7.8" height="15.0" fill="rgb(205,20,10)" rx="2" ry="2" /> ><text x="641.82" y="543.5" ></text> ></g> ><g > ><title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="741" width="7.7" height="15.0" fill="rgb(238,103,21)" rx="2" ry="2" /> ><text x="587.47" y="751.5" ></text> ></g> ><g > ><title>__arm64_sys_futex (1 samples, 0.66%)</title><rect x="134.2" y="741" width="7.8" height="15.0" fill="rgb(252,84,38)" rx="2" ry="2" /> ><text x="137.21" y="751.5" ></text> ></g> ><g > ><title>preempt_count_sub (1 samples, 0.66%)</title><rect x="537.9" y="901" width="7.8" height="15.0" fill="rgb(250,26,1)" rx="2" ry="2" /> ><text x="540.89" y="911.5" ></text> ></g> ><g > ><title>doShmPutImage (2 samples, 1.32%)</title><rect x="281.7" y="901" width="15.5" height="15.0" fill="rgb(205,31,54)" rx="2" ry="2" /> ><text x="284.71" y="911.5" ></text> ></g> ><g > ><title>journal_file_post_change (1 samples, 0.66%)</title><rect x="1151.2" y="869" width="7.7" height="15.0" fill="rgb(217,155,46)" rx="2" ry="2" /> ><text x="1154.18" y="879.5" ></text> ></g> ><g > ><title>QGuiApplicationPrivate::processLeaveEvent (2 samples, 1.32%)</title><rect x="677.6" y="789" width="15.6" height="15.0" fill="rgb(251,149,49)" rx="2" ry="2" /> ><text x="680.63" y="799.5" ></text> ></g> ><g > ><title>iomap_bmap (1 samples, 0.66%)</title><rect x="530.1" y="853" width="7.8" height="15.0" fill="rgb(215,189,48)" rx="2" ry="2" /> ><text x="533.13" y="863.5" ></text> ></g> ><g > ><title>commit_tail (2 samples, 1.32%)</title><rect x="343.8" y="261" width="15.5" height="15.0" fill="rgb(233,153,20)" rx="2" ry="2" /> ><text x="346.82" y="271.5" ></text> ></g> ><g > ><title>xf86DriverLoadCursorARGB (5 samples, 3.29%)</title><rect x="320.5" y="661" width="38.8" height="15.0" fill="rgb(209,4,11)" rx="2" ry="2" /> ><text x="323.53" y="671.5" >xf8..</text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="700.9" y="661" width="7.8" height="15.0" fill="rgb(242,131,12)" rx="2" ry="2" /> ><text x="703.92" y="671.5" ></text> ></g> ><g > ><title>WindowHasNewCursor (1 samples, 0.66%)</title><rect x="235.1" y="885" width="7.8" height="15.0" fill="rgb(252,61,2)" rx="2" ry="2" /> ><text x="238.13" y="895.5" ></text> ></g> ><g > ><title>hid_irq_in (3 samples, 1.97%)</title><rect x="980.4" y="629" width="23.3" height="15.0" fill="rgb(240,184,14)" rx="2" ry="2" /> ><text x="983.39" y="639.5" >h..</text> ></g> ><g > ><title>start_thread (14 samples, 9.21%)</title><rect x="25.5" y="965" width="108.7" height="15.0" fill="rgb(238,189,37)" rx="2" ry="2" /> ><text x="28.53" y="975.5" >start_thread</text> ></g> ><g > ><title>ext4_release_io_end (1 samples, 0.66%)</title><rect x="545.7" y="901" width="7.7" height="15.0" fill="rgb(229,139,50)" rx="2" ry="2" /> ><text x="548.66" y="911.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="398.2" y="341" width="7.7" height="15.0" fill="rgb(221,151,0)" rx="2" ry="2" /> ><text x="401.16" y="351.5" ></text> ></g> ><g > ><title>st_TexSubImage (1 samples, 0.66%)</title><rect x="289.5" y="693" width="7.7" height="15.0" fill="rgb(213,20,47)" rx="2" ry="2" /> ><text x="292.47" y="703.5" ></text> ></g> ><g > ><title>cpu_startup_entry (14 samples, 9.21%)</title><rect x="1042.5" y="949" width="108.7" height="15.0" fill="rgb(218,5,18)" rx="2" ry="2" /> ><text x="1045.50" y="959.5" >cpu_startup_e..</text> ></g> ><g > ><title>_set_opp (2 samples, 1.32%)</title><rect x="926.1" y="869" width="15.5" height="15.0" fill="rgb(215,68,34)" rx="2" ry="2" /> ><text x="929.05" y="879.5" ></text> ></g> ><g > ><title>futex_wait_cancelable (3 samples, 1.97%)</title><rect x="173.0" y="853" width="23.3" height="15.0" fill="rgb(254,140,48)" rx="2" ry="2" /> ><text x="176.03" y="863.5" >f..</text> ></g> ><g > ><title>rpi_firmware_property_list (1 samples, 0.66%)</title><rect x="235.1" y="277" width="7.8" height="15.0" fill="rgb(245,46,24)" rx="2" ry="2" /> ><text x="238.13" y="287.5" ></text> ></g> ><g > ><title>QEventDispatcherGlib::wakeUp (1 samples, 0.66%)</title><rect x="708.7" y="741" width="7.7" height="15.0" fill="rgb(238,162,34)" rx="2" ry="2" /> ><text x="711.68" y="751.5" ></text> ></g> ><g > ><title>_xcb_out_send (1 samples, 0.66%)</title><rect x="700.9" y="421" width="7.8" height="15.0" fill="rgb(207,25,7)" rx="2" ry="2" /> ><text x="703.92" y="431.5" ></text> ></g> ><g > ><title>read_packet (1 samples, 0.66%)</title><rect x="211.8" y="869" width="7.8" height="15.0" fill="rgb(231,195,29)" rx="2" ry="2" /> ><text x="214.84" y="879.5" ></text> ></g> ><g > ><title>handle_domain_irq (1 samples, 0.66%)</title><rect x="219.6" y="581" width="7.8" height="15.0" fill="rgb(206,167,8)" rx="2" ry="2" /> ><text x="222.61" y="591.5" ></text> ></g> ><g > ><title>drm_ioctl (6 samples, 3.95%)</title><rect x="64.3" y="501" width="46.6" height="15.0" fill="rgb(225,87,7)" rx="2" ry="2" /> ><text x="67.34" y="511.5" >drm_..</text> ></g> ><g > ><title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="805" width="7.7" height="15.0" fill="rgb(210,197,18)" rx="2" ry="2" /> ><text x="525.37" y="815.5" ></text> ></g> ><g > ><title>vc4_plane_set_blank.isra.0 (1 samples, 0.66%)</title><rect x="351.6" y="197" width="7.7" height="15.0" fill="rgb(238,23,19)" rx="2" ry="2" /> ><text x="354.58" y="207.5" ></text> ></g> ><g > ><title>invoke_syscall (2 samples, 1.32%)</title><rect x="180.8" y="757" width="15.5" height="15.0" fill="rgb(225,46,29)" rx="2" ry="2" /> ><text x="183.79" y="767.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="1182.2" y="805" width="7.8" height="15.0" fill="rgb(210,175,42)" rx="2" ry="2" /> ><text x="1185.24" y="815.5" ></text> ></g> ><g > ><title>__ieee754_atan2 (2 samples, 1.32%)</title><rect x="41.1" y="789" width="15.5" height="15.0" fill="rgb(240,39,54)" rx="2" ry="2" /> ><text x="44.05" y="799.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="242.9" y="757" width="7.8" height="15.0" fill="rgb(220,55,40)" rx="2" ry="2" /> ><text x="245.89" y="767.5" ></text> ></g> ><g > ><title>do_el0_svc (3 samples, 1.97%)</title><rect x="110.9" y="853" width="23.3" height="15.0" fill="rgb(223,158,4)" rx="2" ry="2" /> ><text x="113.92" y="863.5" >d..</text> ></g> ><g > ><title>__do_softirq (1 samples, 0.66%)</title><rect x="1073.6" y="741" width="7.7" height="15.0" fill="rgb(210,130,44)" rx="2" ry="2" /> ><text x="1076.55" y="751.5" ></text> ></g> ><g > ><title>[xscreensaver] (1 samples, 0.66%)</title><rect x="1174.5" y="885" width="7.7" height="15.0" fill="rgb(217,34,46)" rx="2" ry="2" /> ><text x="1177.47" y="895.5" ></text> ></g> ><g > ><title>__arm64_sys_write (5 samples, 3.29%)</title><rect x="879.5" y="757" width="38.8" height="15.0" fill="rgb(248,184,10)" rx="2" ry="2" /> ><text x="882.47" y="767.5" >__a..</text> ></g> ><g > ><title>gic_handle_irq (1 samples, 0.66%)</title><rect x="219.6" y="597" width="7.8" height="15.0" fill="rgb(234,199,11)" rx="2" ry="2" /> ><text x="222.61" y="607.5" ></text> ></g> ><g > ><title>vfs_write (1 samples, 0.66%)</title><rect x="33.3" y="757" width="7.8" height="15.0" fill="rgb(217,136,42)" rx="2" ry="2" /> ><text x="36.29" y="767.5" ></text> ></g> ><g > ><title>raspberrypi_fw_set_rate (2 samples, 1.32%)</title><rect x="926.1" y="805" width="15.5" height="15.0" fill="rgb(224,223,24)" rx="2" ry="2" /> ><text x="929.05" y="815.5" ></text> ></g> ><g > ><title>__arm64_sys_ppoll (2 samples, 1.32%)</title><rect x="219.6" y="757" width="15.5" height="15.0" fill="rgb(252,40,30)" rx="2" ry="2" /> ><text x="222.61" y="767.5" ></text> ></g> ><g > ><title>wait_for_reply (1 samples, 0.66%)</title><rect x="918.3" y="709" width="7.8" height="15.0" fill="rgb(246,48,32)" rx="2" ry="2" /> ><text x="921.29" y="719.5" ></text> ></g> ><g > ><title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="351.6" y="165" width="7.7" height="15.0" fill="rgb(245,43,50)" rx="2" ry="2" /> ><text x="354.58" y="175.5" ></text> ></g> ><g > ><title>do_el0_svc (3 samples, 1.97%)</title><rect x="359.3" y="517" width="23.3" height="15.0" fill="rgb(209,27,30)" rx="2" ry="2" /> ><text x="362.34" y="527.5" >d..</text> ></g> ><g > ><title>kthread (1 samples, 0.66%)</title><rect x="545.7" y="965" width="7.7" height="15.0" fill="rgb(237,25,2)" rx="2" ry="2" /> ><text x="548.66" y="975.5" ></text> ></g> ><g > ><title>[unknown] (1 samples, 0.66%)</title><rect x="10.0" y="981" width="7.8" height="15.0" fill="rgb(211,157,4)" rx="2" ry="2" /> ><text x="13.00" y="991.5" ></text> ></g> ><g > ><title>drm_mode_cursor_common (2 samples, 1.32%)</title><rect x="367.1" y="405" width="15.5" height="15.0" fill="rgb(254,219,25)" rx="2" ry="2" /> ><text x="370.11" y="415.5" ></text> ></g> ><g > ><title>__GI___writev (3 samples, 1.97%)</title><rect x="382.6" y="645" width="23.3" height="15.0" fill="rgb(252,156,10)" rx="2" ry="2" /> ><text x="385.63" y="655.5" >_..</text> ></g> ><g > ><title>run_rebalance_domains (1 samples, 0.66%)</title><rect x="1073.6" y="725" width="7.7" height="15.0" fill="rgb(254,173,45)" rx="2" ry="2" /> ><text x="1076.55" y="735.5" ></text> ></g> ><g > ><title>__alloc_skb (1 samples, 0.66%)</title><rect x="305.0" y="373" width="7.8" height="15.0" fill="rgb(230,198,14)" rx="2" ry="2" /> ><text x="308.00" y="383.5" ></text> ></g> ><g > ><title>xf86ScreenMoveCursor (6 samples, 3.95%)</title><rect x="64.3" y="725" width="46.6" height="15.0" fill="rgb(212,137,45)" rx="2" ry="2" /> ><text x="67.34" y="735.5" >xf86..</text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="561.2" y="933" width="7.7" height="15.0" fill="rgb(250,29,44)" rx="2" ry="2" /> ><text x="564.18" y="943.5" ></text> ></g> ><g > ><title>save_return_addr (1 samples, 0.66%)</title><rect x="367.1" y="117" width="7.8" height="15.0" fill="rgb(224,104,1)" rx="2" ry="2" /> ><text x="370.11" y="127.5" ></text> ></g> ><g > ><title>[perf] (24 samples, 15.79%)</title><rect x="732.0" y="949" width="186.3" height="15.0" fill="rgb(212,96,20)" rx="2" ry="2" /> ><text x="734.97" y="959.5" >[perf]</text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="235.1" y="581" width="7.8" height="15.0" fill="rgb(239,215,31)" rx="2" ry="2" /> ><text x="238.13" y="591.5" ></text> ></g> ><g > ><title>glTexSubImage2D (1 samples, 0.66%)</title><rect x="514.6" y="933" width="7.8" height="15.0" fill="rgb(253,197,35)" rx="2" ry="2" /> ><text x="517.61" y="943.5" ></text> ></g> ><g > ><title>drm_mode_cursor2_ioctl (2 samples, 1.32%)</title><rect x="343.8" y="373" width="15.5" height="15.0" fill="rgb(244,217,25)" rx="2" ry="2" /> ><text x="346.82" y="383.5" ></text> ></g> ><g > ><title>drm_atomic_commit (1 samples, 0.66%)</title><rect x="468.0" y="533" width="7.8" height="15.0" fill="rgb(246,0,7)" rx="2" ry="2" /> ><text x="471.03" y="543.5" ></text> ></g> ><g > ><title>CursorDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="837" width="7.8" height="15.0" fill="rgb(206,152,38)" rx="2" ry="2" /> ><text x="238.13" y="847.5" ></text> ></g> ><g > ><title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="452.5" y="325" width="7.8" height="15.0" fill="rgb(228,70,27)" rx="2" ry="2" /> ><text x="455.50" y="335.5" ></text> ></g> ><g > ><title>tick_nohz_idle_exit (2 samples, 1.32%)</title><rect x="1027.0" y="885" width="15.5" height="15.0" fill="rgb(220,178,24)" rx="2" ry="2" /> ><text x="1029.97" y="895.5" ></text> ></g> ><g > ><title>__pthread_mutex_unlock_usercnt (2 samples, 1.32%)</title><rect x="157.5" y="901" width="15.5" height="15.0" fill="rgb(222,79,52)" rx="2" ry="2" /> ><text x="160.50" y="911.5" ></text> ></g> ><g > ><title>ProcessKeyboardEvent (2 samples, 1.32%)</title><rect x="305.0" y="869" width="15.5" height="15.0" fill="rgb(216,205,5)" rx="2" ry="2" /> ><text x="308.00" y="879.5" ></text> ></g> ><g > ><title>drmIoctl (2 samples, 1.32%)</title><rect x="343.8" y="549" width="15.5" height="15.0" fill="rgb(210,83,46)" rx="2" ry="2" /> ><text x="346.82" y="559.5" ></text> ></g> ><g > ><title>DeviceEnterNotifies (1 samples, 0.66%)</title><rect x="413.7" y="789" width="7.7" height="15.0" fill="rgb(230,179,4)" rx="2" ry="2" /> ><text x="416.68" y="799.5" ></text> ></g> ><g > ><title>WriteEventsToClient (3 samples, 1.97%)</title><rect x="382.6" y="693" width="23.3" height="15.0" fill="rgb(226,220,23)" rx="2" ry="2" /> ><text x="385.63" y="703.5" >W..</text> ></g> ><g > ><title>drm_atomic_helper_update_plane (2 samples, 1.32%)</title><rect x="460.3" y="549" width="15.5" height="15.0" fill="rgb(215,196,50)" rx="2" ry="2" /> ><text x="463.26" y="559.5" ></text> ></g> ><g > ><title>__setplane_atomic (1 samples, 0.66%)</title><rect x="235.1" y="421" width="7.8" height="15.0" fill="rgb(224,212,24)" rx="2" ry="2" /> ><text x="238.13" y="431.5" ></text> ></g> ><g > ><title>arch_cpu_idle (5 samples, 3.29%)</title><rect x="1042.5" y="901" width="38.8" height="15.0" fill="rgb(217,100,15)" rx="2" ry="2" /> ><text x="1045.50" y="911.5" >arc..</text> ></g> ><g > ><title>schedule_hrtimeout_range_clock (2 samples, 1.32%)</title><rect x="499.1" y="709" width="15.5" height="15.0" fill="rgb(240,136,42)" rx="2" ry="2" /> ><text x="502.08" y="719.5" ></text> ></g> ><g > ><title>__arm64_sys_ppoll (1 samples, 0.66%)</title><rect x="724.2" y="549" width="7.8" height="15.0" fill="rgb(230,176,30)" rx="2" ry="2" /> ><text x="727.21" y="559.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="242.9" y="837" width="7.8" height="15.0" fill="rgb(230,1,14)" rx="2" ry="2" /> ><text x="245.89" y="847.5" ></text> ></g> ><g > ><title>v3d_resource_create (1 samples, 0.66%)</title><rect x="289.5" y="677" width="7.7" height="15.0" fill="rgb(231,92,20)" rx="2" ry="2" /> ><text x="292.47" y="687.5" ></text> ></g> ><g > ><title>vc4_plane_set_blank.isra.0 (1 samples, 0.66%)</title><rect x="235.1" y="293" width="7.8" height="15.0" fill="rgb(216,144,3)" rx="2" ry="2" /> ><text x="238.13" y="303.5" ></text> ></g> ><g > ><title>do_writev (1 samples, 0.66%)</title><rect x="242.9" y="725" width="7.8" height="15.0" fill="rgb(225,20,47)" rx="2" ry="2" /> ><text x="245.89" y="735.5" ></text> ></g> ><g > ><title>kjournald2 (1 samples, 0.66%)</title><rect x="530.1" y="949" width="7.8" height="15.0" fill="rgb(252,123,3)" rx="2" ry="2" /> ><text x="533.13" y="959.5" ></text> ></g> ><g > ><title>ret_from_fork (1 samples, 0.66%)</title><rect x="568.9" y="981" width="7.8" height="15.0" fill="rgb(218,124,22)" rx="2" ry="2" /> ><text x="571.95" y="991.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="576.7" y="837" width="7.8" height="15.0" fill="rgb(212,228,38)" rx="2" ry="2" /> ><text x="579.71" y="847.5" ></text> ></g> ><g > ><title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="305.0" y="469" width="7.8" height="15.0" fill="rgb(233,7,9)" rx="2" ry="2" /> ><text x="308.00" y="479.5" ></text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="918.3" y="613" width="7.8" height="15.0" fill="rgb(246,38,39)" rx="2" ry="2" /> ><text x="921.29" y="623.5" ></text> ></g> ><g > ><title>FlushClient (3 samples, 1.97%)</title><rect x="382.6" y="677" width="23.3" height="15.0" fill="rgb(231,94,22)" rx="2" ry="2" /> ><text x="385.63" y="687.5" >F..</text> ></g> ><g > ><title>__libc_write (2 samples, 1.32%)</title><rect x="25.5" y="917" width="15.6" height="15.0" fill="rgb(242,73,15)" rx="2" ry="2" /> ><text x="28.53" y="927.5" ></text> ></g> ><g > ><title>do_iter_write (1 samples, 0.66%)</title><rect x="305.0" y="485" width="7.8" height="15.0" fill="rgb(224,7,31)" rx="2" ry="2" /> ><text x="308.00" y="495.5" ></text> ></g> ><g > ><title>handle_domain_irq (5 samples, 3.29%)</title><rect x="964.9" y="757" width="38.8" height="15.0" fill="rgb(231,100,12)" rx="2" ry="2" /> ><text x="967.87" y="767.5" >han..</text> ></g> ><g > ><title>xhci_urb_enqueue (1 samples, 0.66%)</title><rect x="995.9" y="581" width="7.8" height="15.0" fill="rgb(214,111,2)" rx="2" ry="2" /> ><text x="998.92" y="591.5" ></text> ></g> ><g > ><title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="305.0" y="533" width="7.8" height="15.0" fill="rgb(238,171,43)" rx="2" ry="2" /> ><text x="308.00" y="543.5" ></text> ></g> ><g > ><title>[libsystemd-shared-249.so] (1 samples, 0.66%)</title><rect x="1158.9" y="901" width="7.8" height="15.0" fill="rgb(240,129,4)" rx="2" ry="2" /> ><text x="1161.95" y="911.5" ></text> ></g> ><g > ><title>g_main_loop_run (2 samples, 1.32%)</title><rect x="576.7" y="917" width="15.5" height="15.0" fill="rgb(243,157,19)" rx="2" ry="2" /> ><text x="579.71" y="927.5" ></text> ></g> ><g > ><title>_XSERVTransSocketWritev (1 samples, 0.66%)</title><rect x="242.9" y="885" width="7.8" height="15.0" fill="rgb(218,189,49)" rx="2" ry="2" /> ><text x="245.89" y="895.5" ></text> ></g> ><g > ><title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="918.3" y="373" width="7.8" height="15.0" fill="rgb(233,15,11)" rx="2" ry="2" /> ><text x="921.29" y="383.5" ></text> ></g> ><g > ><title>start_thread (12 samples, 7.89%)</title><rect x="142.0" y="965" width="93.1" height="15.0" fill="rgb(205,125,12)" rx="2" ry="2" /> ><text x="144.97" y="975.5" >start_thread</text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="709" width="7.7" height="15.0" fill="rgb(238,89,40)" rx="2" ry="2" /> ><text x="672.87" y="719.5" ></text> ></g> ><g > ><title>____sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="581" width="7.7" height="15.0" fill="rgb(246,98,31)" rx="2" ry="2" /> ><text x="587.47" y="591.5" ></text> ></g> ><g > ><title>kthread (2 samples, 1.32%)</title><rect x="926.1" y="965" width="15.5" height="15.0" fill="rgb(221,56,22)" rx="2" ry="2" /> ><text x="929.05" y="975.5" ></text> ></g> ><g > ><title>schedule_hrtimeout_range_clock (1 samples, 0.66%)</title><rect x="724.2" y="501" width="7.8" height="15.0" fill="rgb(208,34,51)" rx="2" ry="2" /> ><text x="727.21" y="511.5" ></text> ></g> ><g > ><title>maybe_add_creds (1 samples, 0.66%)</title><rect x="382.6" y="405" width="7.8" height="15.0" fill="rgb(207,11,47)" rx="2" ry="2" /> ><text x="385.63" y="415.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="242.9" y="565" width="7.8" height="15.0" fill="rgb(223,87,5)" rx="2" ry="2" /> ><text x="245.89" y="575.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="584.5" y="645" width="7.7" height="15.0" fill="rgb(220,227,32)" rx="2" ry="2" /> ><text x="587.47" y="655.5" ></text> ></g> ><g > ><title>damageCopyArea (2 samples, 1.32%)</title><rect x="281.7" y="885" width="15.5" height="15.0" fill="rgb(241,55,40)" rx="2" ry="2" /> ><text x="284.71" y="895.5" ></text> ></g> ><g > ><title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.66%)</title><rect x="646.6" y="661" width="7.7" height="15.0" fill="rgb(244,212,32)" rx="2" ry="2" /> ><text x="649.58" y="671.5" ></text> ></g> ><g > ><title>QXcbConnection::handleXcbEvent (1 samples, 0.66%)</title><rect x="918.3" y="789" width="7.8" height="15.0" fill="rgb(253,120,41)" rx="2" ry="2" /> ><text x="921.29" y="799.5" ></text> ></g> ><g > ><title>kthread (1 samples, 0.66%)</title><rect x="568.9" y="965" width="7.8" height="15.0" fill="rgb(213,121,33)" rx="2" ry="2" /> ><text x="571.95" y="975.5" ></text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="918.3" y="597" width="7.8" height="15.0" fill="rgb(248,118,30)" rx="2" ry="2" /> ><text x="921.29" y="607.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="204.1" y="805" width="7.7" height="15.0" fill="rgb(244,127,51)" rx="2" ry="2" /> ><text x="207.08" y="815.5" ></text> ></g> ><g > ><title>do_el0_svc (2 samples, 1.32%)</title><rect x="219.6" y="805" width="15.5" height="15.0" fill="rgb(224,213,50)" rx="2" ry="2" /> ><text x="222.61" y="815.5" ></text> ></g> ><g > ><title>msg_submit (1 samples, 0.66%)</title><rect x="367.1" y="197" width="7.8" height="15.0" fill="rgb(209,192,30)" rx="2" ry="2" /> ><text x="370.11" y="207.5" ></text> ></g> ><g > ><title>tasklet_hi_action (4 samples, 2.63%)</title><rect x="972.6" y="693" width="31.1" height="15.0" fill="rgb(213,34,42)" rx="2" ry="2" /> ><text x="975.63" y="703.5" >ta..</text> ></g> ><g > ><title>hidinput_report_event (1 samples, 0.66%)</title><rect x="988.2" y="581" width="7.7" height="15.0" fill="rgb(242,184,39)" rx="2" ry="2" /> ><text x="991.16" y="591.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="343.8" y="501" width="15.5" height="15.0" fill="rgb(212,34,23)" rx="2" ry="2" /> ><text x="346.82" y="511.5" ></text> ></g> ><g > ><title>libevdev_next_event (1 samples, 0.66%)</title><rect x="56.6" y="853" width="7.7" height="15.0" fill="rgb(216,180,44)" rx="2" ry="2" /> ><text x="59.58" y="863.5" ></text> ></g> ><g > ><title>kcompactd (1 samples, 0.66%)</title><rect x="537.9" y="949" width="7.8" height="15.0" fill="rgb(229,220,50)" rx="2" ry="2" /> ><text x="540.89" y="959.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="724.2" y="613" width="7.8" height="15.0" fill="rgb(215,146,39)" rx="2" ry="2" /> ><text x="727.21" y="623.5" ></text> ></g> ><g > ><title>g_main_context_poll (1 samples, 0.66%)</title><rect x="576.7" y="885" width="7.8" height="15.0" fill="rgb(239,137,48)" rx="2" ry="2" /> ><text x="579.71" y="895.5" ></text> ></g> ><g > ><title>futex_wait (2 samples, 1.32%)</title><rect x="180.8" y="709" width="15.5" height="15.0" fill="rgb(216,94,33)" rx="2" ry="2" /> ><text x="183.79" y="719.5" ></text> ></g> ><g > ><title>pixman_f_transform_point@plt (1 samples, 0.66%)</title><rect x="17.8" y="965" width="7.7" height="15.0" fill="rgb(234,124,48)" rx="2" ry="2" /> ><text x="20.76" y="975.5" ></text> ></g> ><g > ><title>el1_abort (1 samples, 0.66%)</title><rect x="910.5" y="613" width="7.8" height="15.0" fill="rgb(214,13,4)" rx="2" ry="2" /> ><text x="913.53" y="623.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="700.9" y="341" width="7.8" height="15.0" fill="rgb(245,198,48)" rx="2" ry="2" /> ><text x="703.92" y="351.5" ></text> ></g> ><g > ><title>drm_ioctl_kernel (1 samples, 0.66%)</title><rect x="235.1" y="485" width="7.8" height="15.0" fill="rgb(234,229,19)" rx="2" ry="2" /> ><text x="238.13" y="495.5" ></text> ></g> ><g > ><title>sock_write_iter (1 samples, 0.66%)</title><rect x="700.9" y="165" width="7.8" height="15.0" fill="rgb(244,196,39)" rx="2" ry="2" /> ><text x="703.92" y="175.5" ></text> ></g> ><g > ><title>QWidgetPrivate::sendPaintEvent (2 samples, 1.32%)</title><rect x="654.3" y="709" width="15.6" height="15.0" fill="rgb(232,204,13)" rx="2" ry="2" /> ><text x="657.34" y="719.5" ></text> ></g> ><g > ><title>do_notify_resume (1 samples, 0.66%)</title><rect x="561.2" y="885" width="7.7" height="15.0" fill="rgb(213,227,42)" rx="2" ry="2" /> ><text x="564.18" y="895.5" ></text> ></g> ><g > ><title>do_writev (1 samples, 0.66%)</title><rect x="700.9" y="229" width="7.8" height="15.0" fill="rgb(206,70,9)" rx="2" ry="2" /> ><text x="703.92" y="239.5" ></text> ></g> ><g > ><title>drm_atomic_commit (1 samples, 0.66%)</title><rect x="235.1" y="389" width="7.8" height="15.0" fill="rgb(225,217,28)" rx="2" ry="2" /> ><text x="238.13" y="399.5" ></text> ></g> ><g > ><title>finish_task_switch.isra.0 (2 samples, 1.32%)</title><rect x="180.8" y="645" width="15.5" height="15.0" fill="rgb(222,46,13)" rx="2" ry="2" /> ><text x="183.79" y="655.5" ></text> ></g> ><g > ><title>XYToWindow (1 samples, 0.66%)</title><rect x="421.4" y="821" width="7.8" height="15.0" fill="rgb(221,174,37)" rx="2" ry="2" /> ><text x="424.45" y="831.5" ></text> ></g> ><g > ><title>CursorDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="789" width="62.1" height="15.0" fill="rgb(225,179,15)" rx="2" ry="2" /> ><text x="323.53" y="799.5" >Cursor..</text> ></g> ><g > ><title>WriteEventsToClient (3 samples, 1.97%)</title><rect x="437.0" y="709" width="23.3" height="15.0" fill="rgb(224,99,53)" rx="2" ry="2" /> ><text x="439.97" y="719.5" >W..</text> ></g> ><g > ><title>BlockHandler (1 samples, 0.66%)</title><rect x="483.6" y="901" width="7.7" height="15.0" fill="rgb(240,87,19)" rx="2" ry="2" /> ><text x="486.55" y="911.5" ></text> ></g> ><g > ><title>ext4_iomap_begin (1 samples, 0.66%)</title><rect x="530.1" y="821" width="7.8" height="15.0" fill="rgb(227,199,35)" rx="2" ry="2" /> ><text x="533.13" y="831.5" ></text> ></g> ><g > ><title>do_el0_svc (3 samples, 1.97%)</title><rect x="437.0" y="581" width="23.3" height="15.0" fill="rgb(207,31,10)" rx="2" ry="2" /> ><text x="439.97" y="591.5" >d..</text> ></g> ><g > ><title>grab_cache_page_write_begin (1 samples, 0.66%)</title><rect x="902.8" y="629" width="7.7" height="15.0" fill="rgb(222,123,25)" rx="2" ry="2" /> ><text x="905.76" y="639.5" ></text> ></g> ><g > ><title>[libsystemd-shared-249.so] (1 samples, 0.66%)</title><rect x="1151.2" y="885" width="7.7" height="15.0" fill="rgb(244,132,53)" rx="2" ry="2" /> ><text x="1154.18" y="895.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="522.4" y="693" width="7.7" height="15.0" fill="rgb(245,184,6)" rx="2" ry="2" /> ><text x="525.37" y="703.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="918.3" y="501" width="7.8" height="15.0" fill="rgb(238,42,19)" rx="2" ry="2" /> ><text x="921.29" y="511.5" ></text> ></g> ><g > ><title>miPointerUpdateSprite (8 samples, 5.26%)</title><rect x="320.5" y="725" width="62.1" height="15.0" fill="rgb(212,75,35)" rx="2" ry="2" /> ><text x="323.53" y="735.5" >miPoin..</text> ></g> ><g > ><title>_XSERVTransSocketRead (1 samples, 0.66%)</title><rect x="475.8" y="901" width="7.8" height="15.0" fill="rgb(215,11,21)" rx="2" ry="2" /> ><text x="478.79" y="911.5" ></text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="677.6" y="725" width="15.6" height="15.0" fill="rgb(232,209,44)" rx="2" ry="2" /> ><text x="680.63" y="735.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="359.3" y="501" width="23.3" height="15.0" fill="rgb(228,86,20)" rx="2" ry="2" /> ><text x="362.34" y="511.5" >e..</text> ></g> ><g > ><title>__GI___poll (1 samples, 0.66%)</title><rect x="724.2" y="661" width="7.8" height="15.0" fill="rgb(252,196,24)" rx="2" ry="2" /> ><text x="727.21" y="671.5" ></text> ></g> ><g > ><title>[libusbmuxd-2.0.so.6.0.0] (1 samples, 0.66%)</title><rect x="561.2" y="981" width="7.7" height="15.0" fill="rgb(232,153,44)" rx="2" ry="2" /> ><text x="564.18" y="991.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="382.6" y="549" width="23.3" height="15.0" fill="rgb(226,218,5)" rx="2" ry="2" /> ><text x="385.63" y="559.5" >e..</text> ></g> ><g > ><title>sock_sendmsg (1 samples, 0.66%)</title><rect x="452.5" y="437" width="7.8" height="15.0" fill="rgb(224,165,33)" rx="2" ry="2" /> ><text x="455.50" y="447.5" ></text> ></g> ><g > ><title>[libsystemd-shared-249.so] (1 samples, 0.66%)</title><rect x="1151.2" y="901" width="7.7" height="15.0" fill="rgb(250,120,13)" rx="2" ry="2" /> ><text x="1154.18" y="911.5" ></text> ></g> ><g > ><title>vfs_writev (1 samples, 0.66%)</title><rect x="700.9" y="213" width="7.8" height="15.0" fill="rgb(218,151,13)" rx="2" ry="2" /> ><text x="703.92" y="223.5" ></text> ></g> ><g > ><title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="918.3" y="677" width="7.8" height="15.0" fill="rgb(213,170,39)" rx="2" ry="2" /> ><text x="921.29" y="687.5" ></text> ></g> ><g > ><title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="242.9" y="741" width="7.8" height="15.0" fill="rgb(249,191,21)" rx="2" ry="2" /> ><text x="245.89" y="751.5" ></text> ></g> ><g > ><title>do_sys_ftruncate (1 samples, 0.66%)</title><rect x="1151.2" y="725" width="7.7" height="15.0" fill="rgb(217,203,32)" rx="2" ry="2" /> ><text x="1154.18" y="735.5" ></text> ></g> ><g > ><title>invoke_syscall (3 samples, 1.97%)</title><rect x="491.3" y="789" width="23.3" height="15.0" fill="rgb(206,103,10)" rx="2" ry="2" /> ><text x="494.32" y="799.5" >i..</text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="242.9" y="805" width="7.8" height="15.0" fill="rgb(219,113,48)" rx="2" ry="2" /> ><text x="245.89" y="815.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="382.6" y="597" width="23.3" height="15.0" fill="rgb(206,114,28)" rx="2" ry="2" /> ><text x="385.63" y="607.5" >e..</text> ></g> ><g > ><title>__GI___poll (1 samples, 0.66%)</title><rect x="1174.5" y="757" width="7.7" height="15.0" fill="rgb(206,46,47)" rx="2" ry="2" /> ><text x="1177.47" y="767.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="204.1" y="773" width="7.7" height="15.0" fill="rgb(248,138,10)" rx="2" ry="2" /> ><text x="207.08" y="783.5" ></text> ></g> ><g > ><title>call_on_irq_stack (5 samples, 3.29%)</title><rect x="964.9" y="789" width="38.8" height="15.0" fill="rgb(241,214,33)" rx="2" ry="2" /> ><text x="967.87" y="799.5" >cal..</text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="576.7" y="821" width="7.8" height="15.0" fill="rgb(231,215,5)" rx="2" ry="2" /> ><text x="579.71" y="831.5" ></text> ></g> ><g > ><title>xi2mask_isset (1 samples, 0.66%)</title><rect x="429.2" y="709" width="7.8" height="15.0" fill="rgb(207,84,34)" rx="2" ry="2" /> ><text x="432.21" y="719.5" ></text> ></g> ><g > ><title>CheckMotion (14 samples, 9.21%)</title><rect x="320.5" y="837" width="108.7" height="15.0" fill="rgb(211,35,30)" rx="2" ry="2" /> ><text x="323.53" y="847.5" >CheckMotion</text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="739.7" y="821" width="7.8" height="15.0" fill="rgb(208,104,53)" rx="2" ry="2" /> ><text x="742.74" y="831.5" ></text> ></g> ><g > ><title>el1h_64_irq_handler (5 samples, 3.29%)</title><rect x="964.9" y="837" width="38.8" height="15.0" fill="rgb(235,18,17)" rx="2" ry="2" /> ><text x="967.87" y="847.5" >el1..</text> ></g> ><g > ><title>el0t_64_sync (2 samples, 1.32%)</title><rect x="25.5" y="885" width="15.6" height="15.0" fill="rgb(226,73,30)" rx="2" ry="2" /> ><text x="28.53" y="895.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="289.5" y="533" width="7.7" height="15.0" fill="rgb(248,85,37)" rx="2" ry="2" /> ><text x="292.47" y="543.5" ></text> ></g> ><g > ><title>write_vec (1 samples, 0.66%)</title><rect x="700.9" y="389" width="7.8" height="15.0" fill="rgb(205,187,29)" rx="2" ry="2" /> ><text x="703.92" y="399.5" ></text> ></g> ><g > ><title>sock_write_iter (3 samples, 1.97%)</title><rect x="382.6" y="437" width="23.3" height="15.0" fill="rgb(235,25,44)" rx="2" ry="2" /> ><text x="385.63" y="447.5" >s..</text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="405.9" y="581" width="7.8" height="15.0" fill="rgb(234,24,19)" rx="2" ry="2" /> ><text x="408.92" y="591.5" ></text> ></g> ><g > ><title>__arm64_sys_ioctl (1 samples, 0.66%)</title><rect x="235.1" y="517" width="7.8" height="15.0" fill="rgb(223,190,54)" rx="2" ry="2" /> ><text x="238.13" y="527.5" ></text> ></g> ><g > ><title>QueuePointerEvents (6 samples, 3.95%)</title><rect x="64.3" y="853" width="46.6" height="15.0" fill="rgb(212,15,53)" rx="2" ry="2" /> ><text x="67.34" y="863.5" >Queu..</text> ></g> ><g > ><title>__pthread_cond_wait_common (3 samples, 1.97%)</title><rect x="173.0" y="869" width="23.3" height="15.0" fill="rgb(219,144,30)" rx="2" ry="2" /> ><text x="176.03" y="879.5" >_..</text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="149.7" y="853" width="7.8" height="15.0" fill="rgb(247,72,28)" rx="2" ry="2" /> ><text x="152.74" y="863.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="343.8" y="453" width="15.5" height="15.0" fill="rgb(245,201,6)" rx="2" ry="2" /> ><text x="346.82" y="463.5" ></text> ></g> ><g > ><title>QToolButton::event (1 samples, 0.66%)</title><rect x="677.6" y="677" width="7.8" height="15.0" fill="rgb(234,197,14)" rx="2" ry="2" /> ><text x="680.63" y="687.5" ></text> ></g> ><g > ><title>__pthread_cond_timedwait (1 samples, 0.66%)</title><rect x="134.2" y="885" width="7.8" height="15.0" fill="rgb(212,180,49)" rx="2" ry="2" /> ><text x="137.21" y="895.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit (2 samples, 1.32%)</title><rect x="367.1" y="325" width="15.5" height="15.0" fill="rgb(234,193,39)" rx="2" ry="2" /> ><text x="370.11" y="335.5" ></text> ></g> ><g > ><title>_int_malloc (1 samples, 0.66%)</title><rect x="600.0" y="565" width="7.8" height="15.0" fill="rgb(205,53,8)" rx="2" ry="2" /> ><text x="603.00" y="575.5" ></text> ></g> ><g > ><title>miPointerSetPosition (6 samples, 3.95%)</title><rect x="64.3" y="773" width="46.6" height="15.0" fill="rgb(233,55,51)" rx="2" ry="2" /> ><text x="67.34" y="783.5" >miPo..</text> ></g> ><g > ><title>[libQt5Gui.so.5.15.2] (1 samples, 0.66%)</title><rect x="677.6" y="581" width="7.8" height="15.0" fill="rgb(239,142,47)" rx="2" ry="2" /> ><text x="680.63" y="591.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="204.1" y="821" width="7.7" height="15.0" fill="rgb(210,171,11)" rx="2" ry="2" /> ><text x="207.08" y="831.5" ></text> ></g> ><g > ><title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="149.7" y="917" width="7.8" height="15.0" fill="rgb(227,2,35)" rx="2" ry="2" /> ><text x="152.74" y="927.5" ></text> ></g> ><g > ><title>nohz_run_idle_balance (1 samples, 0.66%)</title><rect x="1003.7" y="885" width="7.7" height="15.0" fill="rgb(212,207,30)" rx="2" ry="2" /> ><text x="1006.68" y="895.5" ></text> ></g> ><g > ><title>secondary_start_kernel (14 samples, 9.21%)</title><rect x="1042.5" y="965" width="108.7" height="15.0" fill="rgb(207,0,10)" rx="2" ry="2" /> ><text x="1045.50" y="975.5" >secondary_sta..</text> ></g> ><g > ><title>g_main_context_dispatch (17 samples, 11.18%)</title><rect x="600.0" y="853" width="132.0" height="15.0" fill="rgb(226,35,54)" rx="2" ry="2" /> ><text x="603.00" y="863.5" >g_main_context_d..</text> ></g> ><g > ><title>sd_event_prepare (1 samples, 0.66%)</title><rect x="1158.9" y="917" width="7.8" height="15.0" fill="rgb(236,27,37)" rx="2" ry="2" /> ><text x="1161.95" y="927.5" ></text> ></g> ><g > ><title>vfs_writev (1 samples, 0.66%)</title><rect x="305.0" y="501" width="7.8" height="15.0" fill="rgb(245,86,34)" rx="2" ry="2" /> ><text x="308.00" y="511.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (17 samples, 11.18%)</title><rect x="747.5" y="885" width="132.0" height="15.0" fill="rgb(243,166,33)" rx="2" ry="2" /> ><text x="750.50" y="895.5" >el0t_64_sync_han..</text> ></g> ><g > ><title>affine_move_task (1 samples, 0.66%)</title><rect x="739.7" y="741" width="7.8" height="15.0" fill="rgb(220,23,9)" rx="2" ry="2" /> ><text x="742.74" y="751.5" ></text> ></g> ><g > ><title>miPointerUpdateSprite (8 samples, 5.26%)</title><rect x="320.5" y="741" width="62.1" height="15.0" fill="rgb(221,10,44)" rx="2" ry="2" /> ><text x="323.53" y="751.5" >miPoin..</text> ></g> ><g > ><title>gic_handle_irq (1 samples, 0.66%)</title><rect x="1073.6" y="805" width="7.7" height="15.0" fill="rgb(224,207,18)" rx="2" ry="2" /> ><text x="1076.55" y="815.5" ></text> ></g> ><g > ><title>el1_interrupt (5 samples, 3.29%)</title><rect x="964.9" y="821" width="38.8" height="15.0" fill="rgb(245,210,49)" rx="2" ry="2" /> ><text x="967.87" y="831.5" >el1..</text> ></g> ><g > ><title>[perf] (5 samples, 3.29%)</title><rect x="879.5" y="917" width="38.8" height="15.0" fill="rgb(208,124,32)" rx="2" ry="2" /> ><text x="882.47" y="927.5" >[pe..</text> ></g> ><g > ><title>__ioctl (6 samples, 3.95%)</title><rect x="64.3" y="629" width="46.6" height="15.0" fill="rgb(243,174,35)" rx="2" ry="2" /> ><text x="67.34" y="639.5" >__io..</text> ></g> ><g > ><title>QXcbEventQueue (12 samples, 7.89%)</title><rect x="142.0" y="997" width="93.1" height="15.0" fill="rgb(217,100,35)" rx="2" ry="2" /> ><text x="144.97" y="1007.5" >QXcbEventQu..</text> ></g> ><g > ><title>do_iter_readv_writev (2 samples, 1.32%)</title><rect x="444.7" y="469" width="15.6" height="15.0" fill="rgb(238,53,31)" rx="2" ry="2" /> ><text x="447.74" y="479.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="700.9" y="277" width="7.8" height="15.0" fill="rgb(228,90,28)" rx="2" ry="2" /> ><text x="703.92" y="287.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="242.9" y="821" width="7.8" height="15.0" fill="rgb(247,55,54)" rx="2" ry="2" /> ><text x="245.89" y="831.5" ></text> ></g> ><g > ><title>perf_event_for_each_child (17 samples, 11.18%)</title><rect x="747.5" y="757" width="132.0" height="15.0" fill="rgb(220,201,49)" rx="2" ry="2" /> ><text x="750.50" y="767.5" >perf_event_for_e..</text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="134.2" y="837" width="7.8" height="15.0" fill="rgb(207,28,41)" rx="2" ry="2" /> ><text x="137.21" y="847.5" ></text> ></g> ><g > ><title>drmIoctl (2 samples, 1.32%)</title><rect x="460.3" y="789" width="15.5" height="15.0" fill="rgb(245,135,52)" rx="2" ry="2" /> ><text x="463.26" y="799.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="149.7" y="821" width="7.8" height="15.0" fill="rgb(224,0,7)" rx="2" ry="2" /> ><text x="152.74" y="831.5" ></text> ></g> ><g > ><title>[libinput.so.10.13.0] (2 samples, 1.32%)</title><rect x="41.1" y="821" width="15.5" height="15.0" fill="rgb(215,201,4)" rx="2" ry="2" /> ><text x="44.05" y="831.5" ></text> ></g> ><g > ><title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="669.9" y="773" width="7.7" height="15.0" fill="rgb(247,224,24)" rx="2" ry="2" /> ><text x="672.87" y="783.5" ></text> ></g> ><g > ><title>invoke_syscall (3 samples, 1.97%)</title><rect x="382.6" y="533" width="23.3" height="15.0" fill="rgb(230,137,21)" rx="2" ry="2" /> ><text x="385.63" y="543.5" >i..</text> ></g> ><g > ><title>affinity__set (1 samples, 0.66%)</title><rect x="739.7" y="933" width="7.8" height="15.0" fill="rgb(240,199,30)" rx="2" ry="2" /> ><text x="742.74" y="943.5" ></text> ></g> ><g > ><title>invoke_syscall (3 samples, 1.97%)</title><rect x="359.3" y="485" width="23.3" height="15.0" fill="rgb(245,113,33)" rx="2" ry="2" /> ><text x="362.34" y="495.5" >i..</text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="134.2" y="789" width="7.8" height="15.0" fill="rgb(244,82,0)" rx="2" ry="2" /> ><text x="137.21" y="799.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="739.7" y="725" width="7.8" height="15.0" fill="rgb(254,213,53)" rx="2" ry="2" /> ><text x="742.74" y="735.5" ></text> ></g> ><g > ><title>do_el0_svc (17 samples, 11.18%)</title><rect x="747.5" y="853" width="132.0" height="15.0" fill="rgb(251,94,15)" rx="2" ry="2" /> ><text x="750.50" y="863.5" >do_el0_svc</text> ></g> ><g > ><title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="242.9" y="629" width="7.8" height="15.0" fill="rgb(230,33,23)" rx="2" ry="2" /> ><text x="245.89" y="639.5" ></text> ></g> ><g > ><title>[xscreensaver] (1 samples, 0.66%)</title><rect x="1174.5" y="869" width="7.7" height="15.0" fill="rgb(229,142,36)" rx="2" ry="2" /> ><text x="1177.47" y="879.5" ></text> ></g> ><g > ><title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="499.1" y="661" width="7.7" height="15.0" fill="rgb(242,18,10)" rx="2" ry="2" /> ><text x="502.08" y="671.5" ></text> ></g> ><g > ><title>import_iovec (1 samples, 0.66%)</title><rect x="1166.7" y="629" width="7.8" height="15.0" fill="rgb(221,111,5)" rx="2" ry="2" /> ><text x="1169.71" y="639.5" ></text> ></g> ><g > ><title>ret_from_fork (1 samples, 0.66%)</title><rect x="537.9" y="981" width="7.8" height="15.0" fill="rgb(227,36,18)" rx="2" ry="2" /> ><text x="540.89" y="991.5" ></text> ></g> ><g > ><title>do_interrupt_handler (5 samples, 3.29%)</title><rect x="964.9" y="805" width="38.8" height="15.0" fill="rgb(207,179,31)" rx="2" ry="2" /> ><text x="967.87" y="815.5" >do_..</text> ></g> ><g > ><title>__arm64_sys_futex (2 samples, 1.32%)</title><rect x="180.8" y="741" width="15.5" height="15.0" fill="rgb(252,68,33)" rx="2" ry="2" /> ><text x="183.79" y="751.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="297.2" y="821" width="7.8" height="15.0" fill="rgb(216,60,1)" rx="2" ry="2" /> ><text x="300.24" y="831.5" ></text> ></g> ><g > ><title>TryClientEvents (1 samples, 0.66%)</title><rect x="305.0" y="741" width="7.8" height="15.0" fill="rgb(243,117,40)" rx="2" ry="2" /> ><text x="308.00" y="751.5" ></text> ></g> ><g > ><title>_start (2 samples, 1.32%)</title><rect x="576.7" y="981" width="15.5" height="15.0" fill="rgb(219,0,15)" rx="2" ry="2" /> ><text x="579.71" y="991.5" ></text> ></g> ><g > ><title>el0_svc (2 samples, 1.32%)</title><rect x="460.3" y="725" width="15.5" height="15.0" fill="rgb(206,191,39)" rx="2" ry="2" /> ><text x="463.26" y="735.5" ></text> ></g> ><g > ><title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="1073.6" y="837" width="7.7" height="15.0" fill="rgb(216,163,22)" rx="2" ry="2" /> ><text x="1076.55" y="847.5" ></text> ></g> ><g > ><title>QCoreApplication::notifyInternal2 (2 samples, 1.32%)</title><rect x="677.6" y="773" width="15.6" height="15.0" fill="rgb(220,174,36)" rx="2" ry="2" /> ><text x="680.63" y="783.5" ></text> ></g> ><g > ><title>g_main_context_iteration (17 samples, 11.18%)</title><rect x="600.0" y="885" width="132.0" height="15.0" fill="rgb(252,223,37)" rx="2" ry="2" /> ><text x="603.00" y="895.5" >g_main_context_i..</text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="700.9" y="357" width="7.8" height="15.0" fill="rgb(232,157,5)" rx="2" ry="2" /> ><text x="703.92" y="367.5" ></text> ></g> ><g > ><title>QToolButton::event (1 samples, 0.66%)</title><rect x="669.9" y="677" width="7.7" height="15.0" fill="rgb(227,31,10)" rx="2" ry="2" /> ><text x="672.87" y="687.5" ></text> ></g> ><g > ><title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="219.6" y="661" width="7.8" height="15.0" fill="rgb(213,141,12)" rx="2" ry="2" /> ><text x="222.61" y="671.5" ></text> ></g> ><g > ><title>vc4_atomic_commit_tail (1 samples, 0.66%)</title><rect x="468.0" y="485" width="7.8" height="15.0" fill="rgb(223,63,31)" rx="2" ry="2" /> ><text x="471.03" y="495.5" ></text> ></g> ><g > ><title>WriteEventsToClient (1 samples, 0.66%)</title><rect x="305.0" y="709" width="7.8" height="15.0" fill="rgb(241,40,28)" rx="2" ry="2" /> ><text x="308.00" y="719.5" ></text> ></g> ><g > ><title>drm_ioctl (2 samples, 1.32%)</title><rect x="343.8" y="405" width="15.5" height="15.0" fill="rgb(246,13,26)" rx="2" ry="2" /> ><text x="346.82" y="415.5" ></text> ></g> ><g > ><title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="305.0" y="421" width="7.8" height="15.0" fill="rgb(217,17,17)" rx="2" ry="2" /> ><text x="308.00" y="431.5" ></text> ></g> ><g > ><title>glamor_copy (2 samples, 1.32%)</title><rect x="281.7" y="805" width="15.5" height="15.0" fill="rgb(253,142,33)" rx="2" ry="2" /> ><text x="284.71" y="815.5" ></text> ></g> ><g > ><title>migration/2 (1 samples, 0.66%)</title><rect x="568.9" y="997" width="7.8" height="15.0" fill="rgb(241,32,45)" rx="2" ry="2" /> ><text x="571.95" y="1007.5" ></text> ></g> ><g > ><title>vfs_write (5 samples, 3.29%)</title><rect x="879.5" y="725" width="38.8" height="15.0" fill="rgb(222,152,13)" rx="2" ry="2" /> ><text x="882.47" y="735.5" >vfs..</text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="1151.2" y="837" width="7.7" height="15.0" fill="rgb(238,131,7)" rx="2" ry="2" /> ><text x="1154.18" y="847.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="1166.7" y="757" width="7.8" height="15.0" fill="rgb(210,137,53)" rx="2" ry="2" /> ><text x="1169.71" y="767.5" ></text> ></g> ><g > ><title>vc4_plane_atomic_update (2 samples, 1.32%)</title><rect x="367.1" y="261" width="15.5" height="15.0" fill="rgb(249,38,26)" rx="2" ry="2" /> ><text x="370.11" y="271.5" ></text> ></g> ><g > ><title>do_el0_svc (5 samples, 3.29%)</title><rect x="879.5" y="805" width="38.8" height="15.0" fill="rgb(245,128,19)" rx="2" ry="2" /> ><text x="882.47" y="815.5" >do_..</text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="165.3" y="885" width="7.7" height="15.0" fill="rgb(243,99,50)" rx="2" ry="2" /> ><text x="168.26" y="895.5" ></text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="669.9" y="693" width="7.7" height="15.0" fill="rgb(209,200,21)" rx="2" ry="2" /> ><text x="672.87" y="703.5" ></text> ></g> ><g > ><title>ProcessInputEvents (23 samples, 15.13%)</title><rect x="297.2" y="917" width="178.6" height="15.0" fill="rgb(242,123,39)" rx="2" ry="2" /> ><text x="300.24" y="927.5" >ProcessInputEvents</text> ></g> ><g > ><title>drm_ioctl_kernel (6 samples, 3.95%)</title><rect x="64.3" y="485" width="46.6" height="15.0" fill="rgb(247,182,28)" rx="2" ry="2" /> ><text x="67.34" y="495.5" >drm_..</text> ></g> ><g > ><title>FlushClient (3 samples, 1.97%)</title><rect x="437.0" y="693" width="23.3" height="15.0" fill="rgb(236,99,16)" rx="2" ry="2" /> ><text x="439.97" y="703.5" >F..</text> ></g> ><g > ><title>sock_def_readable (1 samples, 0.66%)</title><rect x="242.9" y="613" width="7.8" height="15.0" fill="rgb(223,103,4)" rx="2" ry="2" /> ><text x="245.89" y="623.5" ></text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="693.2" y="725" width="15.5" height="15.0" fill="rgb(207,210,0)" rx="2" ry="2" /> ><text x="696.16" y="735.5" ></text> ></g> ><g > ><title>return_address (1 samples, 0.66%)</title><rect x="367.1" y="133" width="7.8" height="15.0" fill="rgb(244,184,43)" rx="2" ry="2" /> ><text x="370.11" y="143.5" ></text> ></g> ><g > ><title>xf86SetCursor (1 samples, 0.66%)</title><rect x="235.1" y="741" width="7.8" height="15.0" fill="rgb(228,151,6)" rx="2" ry="2" /> ><text x="238.13" y="751.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="289.5" y="565" width="7.7" height="15.0" fill="rgb(208,126,24)" rx="2" ry="2" /> ><text x="292.47" y="575.5" ></text> ></g> ><g > ><title>schedule_idle (6 samples, 3.95%)</title><rect x="1089.1" y="917" width="46.6" height="15.0" fill="rgb(206,214,12)" rx="2" ry="2" /> ><text x="1092.08" y="927.5" >sche..</text> ></g> ><g > ><title>xf86_set_cursor_position (2 samples, 1.32%)</title><rect x="460.3" y="853" width="15.5" height="15.0" fill="rgb(227,63,23)" rx="2" ry="2" /> ><text x="463.26" y="863.5" ></text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="677.6" y="693" width="7.8" height="15.0" fill="rgb(233,215,46)" rx="2" ry="2" /> ><text x="680.63" y="703.5" ></text> ></g> ><g > ><title>preempt_count_sub (1 samples, 0.66%)</title><rect x="367.1" y="149" width="7.8" height="15.0" fill="rgb(245,159,52)" rx="2" ry="2" /> ><text x="370.11" y="159.5" ></text> ></g> ><g > ><title>QEventDispatcherGlib::processEvents (17 samples, 11.18%)</title><rect x="600.0" y="901" width="132.0" height="15.0" fill="rgb(235,87,6)" rx="2" ry="2" /> ><text x="603.00" y="911.5" >QEventDispatcher..</text> ></g> ><g > ><title>drm_atomic_helper_update_plane (1 samples, 0.66%)</title><rect x="235.1" y="405" width="7.8" height="15.0" fill="rgb(251,6,17)" rx="2" ry="2" /> ><text x="238.13" y="415.5" ></text> ></g> ><g > ><title>TryClientEvents (3 samples, 1.97%)</title><rect x="437.0" y="725" width="23.3" height="15.0" fill="rgb(232,89,28)" rx="2" ry="2" /> ><text x="439.97" y="735.5" >T..</text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="725" width="7.7" height="15.0" fill="rgb(214,89,32)" rx="2" ry="2" /> ><text x="672.87" y="735.5" ></text> ></g> ><g > ><title>drmmode_set_cursor (2 samples, 1.32%)</title><rect x="343.8" y="597" width="15.5" height="15.0" fill="rgb(251,212,11)" rx="2" ry="2" /> ><text x="346.82" y="607.5" ></text> ></g> ><g > ><title>el0t_64_sync (2 samples, 1.32%)</title><rect x="219.6" y="853" width="15.5" height="15.0" fill="rgb(253,149,15)" rx="2" ry="2" /> ><text x="222.61" y="863.5" ></text> ></g> ><g > ><title>DeliverToWindowOwner (1 samples, 0.66%)</title><rect x="405.9" y="725" width="7.8" height="15.0" fill="rgb(212,148,20)" rx="2" ry="2" /> ><text x="408.92" y="735.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="522.4" y="677" width="7.7" height="15.0" fill="rgb(226,34,25)" rx="2" ry="2" /> ><text x="525.37" y="687.5" ></text> ></g> ><g > ><title>sock_sendmsg (1 samples, 0.66%)</title><rect x="242.9" y="645" width="7.8" height="15.0" fill="rgb(238,22,4)" rx="2" ry="2" /> ><text x="245.89" y="655.5" ></text> ></g> ><g > ><title>QRasterPaintEngine::fillRect (2 samples, 1.32%)</title><rect x="654.3" y="597" width="15.6" height="15.0" fill="rgb(211,69,20)" rx="2" ry="2" /> ><text x="657.34" y="607.5" ></text> ></g> ><g > ><title>QWidget::event (9 samples, 5.92%)</title><rect x="600.0" y="757" width="69.9" height="15.0" fill="rgb(237,117,32)" rx="2" ry="2" /> ><text x="603.00" y="767.5" >QWidget..</text> ></g> ><g > ><title>wait_for_reply (1 samples, 0.66%)</title><rect x="600.0" y="645" width="7.8" height="15.0" fill="rgb(253,12,1)" rx="2" ry="2" /> ><text x="603.00" y="655.5" ></text> ></g> ><g > ><title>[xscreensaver] (3 samples, 1.97%)</title><rect x="1166.7" y="933" width="23.3" height="15.0" fill="rgb(254,155,18)" rx="2" ry="2" /> ><text x="1169.71" y="943.5" >[..</text> ></g> ><g > ><title>drm_atomic_helper_wait_for_dependencies (1 samples, 0.66%)</title><rect x="343.8" y="245" width="7.8" height="15.0" fill="rgb(221,12,4)" rx="2" ry="2" /> ><text x="346.82" y="255.5" ></text> ></g> ><g > ><title>_raw_spin_lock (1 samples, 0.66%)</title><rect x="910.5" y="501" width="7.8" height="15.0" fill="rgb(238,43,26)" rx="2" ry="2" /> ><text x="913.53" y="511.5" ></text> ></g> ><g > ><title>__pthread_cond_wait (3 samples, 1.97%)</title><rect x="173.0" y="885" width="23.3" height="15.0" fill="rgb(252,152,24)" rx="2" ry="2" /> ><text x="176.03" y="895.5" >_..</text> ></g> ><g > ><title>sd_event_dispatch (1 samples, 0.66%)</title><rect x="1151.2" y="917" width="7.7" height="15.0" fill="rgb(241,162,37)" rx="2" ry="2" /> ><text x="1154.18" y="927.5" ></text> ></g> ><g > ><title>damagePutImage (4 samples, 2.63%)</title><rect x="250.7" y="901" width="31.0" height="15.0" fill="rgb(208,152,48)" rx="2" ry="2" /> ><text x="253.66" y="911.5" >da..</text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="988.2" y="549" width="7.7" height="15.0" fill="rgb(222,40,29)" rx="2" ry="2" /> ><text x="991.16" y="559.5" ></text> ></g> ><g > ><title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="918.3" y="485" width="7.8" height="15.0" fill="rgb(223,174,39)" rx="2" ry="2" /> ><text x="921.29" y="495.5" ></text> ></g> ><g > ><title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="1174.5" y="789" width="7.7" height="15.0" fill="rgb(235,223,28)" rx="2" ry="2" /> ><text x="1177.47" y="799.5" ></text> ></g> ><g > ><title>rpi_firmware_property_list (4 samples, 2.63%)</title><rect x="72.1" y="277" width="31.1" height="15.0" fill="rgb(210,103,7)" rx="2" ry="2" /> ><text x="75.11" y="287.5" >rp..</text> ></g> ><g > ><title>texture_sub_image (4 samples, 2.63%)</title><rect x="250.7" y="789" width="31.0" height="15.0" fill="rgb(223,16,21)" rx="2" ry="2" /> ><text x="253.66" y="799.5" >te..</text> ></g> ><g > ><title>pixman_f_transform_bounds (1 samples, 0.66%)</title><rect x="17.8" y="981" width="7.7" height="15.0" fill="rgb(207,82,21)" rx="2" ry="2" /> ><text x="20.76" y="991.5" ></text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (2 samples, 1.32%)</title><rect x="654.3" y="677" width="15.6" height="15.0" fill="rgb(221,218,29)" rx="2" ry="2" /> ><text x="657.34" y="687.5" ></text> ></g> ><g > ><title>ext4_claim_free_clusters (1 samples, 0.66%)</title><rect x="895.0" y="581" width="7.8" height="15.0" fill="rgb(249,30,18)" rx="2" ry="2" /> ><text x="898.00" y="591.5" ></text> ></g> ><g > ><title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="219.6" y="629" width="7.8" height="15.0" fill="rgb(236,199,50)" rx="2" ry="2" /> ><text x="222.61" y="639.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="1182.2" y="837" width="7.8" height="15.0" fill="rgb(239,22,17)" rx="2" ry="2" /> ><text x="1185.24" y="847.5" ></text> ></g> ><g > ><title>QTime::msec@plt (1 samples, 0.66%)</title><rect x="553.4" y="965" width="7.8" height="15.0" fill="rgb(242,210,0)" rx="2" ry="2" /> ><text x="556.42" y="975.5" ></text> ></g> ><g > ><title>update_blocked_averages (1 samples, 0.66%)</title><rect x="1081.3" y="885" width="7.8" height="15.0" fill="rgb(252,108,20)" rx="2" ry="2" /> ><text x="1084.32" y="895.5" ></text> ></g> ><g > ><title>el0_svc (5 samples, 3.29%)</title><rect x="879.5" y="821" width="38.8" height="15.0" fill="rgb(249,93,33)" rx="2" ry="2" /> ><text x="882.47" y="831.5" >el0..</text> ></g> ><g > ><title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="87.6" y="133" width="7.8" height="15.0" fill="rgb(239,80,31)" rx="2" ry="2" /> ><text x="90.63" y="143.5" ></text> ></g> ><g > ><title>QWidget::event (1 samples, 0.66%)</title><rect x="700.9" y="613" width="7.8" height="15.0" fill="rgb(226,4,24)" rx="2" ry="2" /> ><text x="703.92" y="623.5" ></text> ></g> ><g > ><title>g_main_loop_run (1 samples, 0.66%)</title><rect x="522.4" y="917" width="7.7" height="15.0" fill="rgb(222,3,20)" rx="2" ry="2" /> ><text x="525.37" y="927.5" ></text> ></g> ><g > ><title>miPointerDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="805" width="7.8" height="15.0" fill="rgb(246,26,53)" rx="2" ry="2" /> ><text x="238.13" y="815.5" ></text> ></g> ><g > ><title>xf86_crtc_load_cursor_argb (5 samples, 3.29%)</title><rect x="320.5" y="629" width="38.8" height="15.0" fill="rgb(224,215,25)" rx="2" ry="2" /> ><text x="323.53" y="639.5" >xf8..</text> ></g> ><g > ><title>WaitForSomething (4 samples, 2.63%)</title><rect x="483.6" y="917" width="31.0" height="15.0" fill="rgb(230,86,3)" rx="2" ry="2" /> ><text x="486.55" y="927.5" >Wa..</text> ></g> ><g > ><title>ext4_da_reserve_space (1 samples, 0.66%)</title><rect x="895.0" y="597" width="7.8" height="15.0" fill="rgb(214,51,50)" rx="2" ry="2" /> ><text x="898.00" y="607.5" ></text> ></g> ><g > ><title>DeviceEnterLeaveEvents (1 samples, 0.66%)</title><rect x="413.7" y="805" width="7.7" height="15.0" fill="rgb(237,32,0)" rx="2" ry="2" /> ><text x="416.68" y="815.5" ></text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="741" width="7.7" height="15.0" fill="rgb(246,224,15)" rx="2" ry="2" /> ><text x="672.87" y="751.5" ></text> ></g> ><g > ><title>kworker/u8:0-ev (1 samples, 0.66%)</title><rect x="545.7" y="997" width="7.7" height="15.0" fill="rgb(238,21,17)" rx="2" ry="2" /> ><text x="548.66" y="1007.5" ></text> ></g> ><g > ><title>el0_svc (2 samples, 1.32%)</title><rect x="219.6" y="821" width="15.5" height="15.0" fill="rgb(215,161,32)" rx="2" ry="2" /> ><text x="222.61" y="831.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="739.7" y="869" width="7.8" height="15.0" fill="rgb(242,226,12)" rx="2" ry="2" /> ><text x="742.74" y="879.5" ></text> ></g> ><g > ><title>__kmalloc_node_track_caller (1 samples, 0.66%)</title><rect x="305.0" y="341" width="7.8" height="15.0" fill="rgb(241,58,20)" rx="2" ry="2" /> ><text x="308.00" y="351.5" ></text> ></g> ><g > ><title>__do_softirq (1 samples, 0.66%)</title><rect x="87.6" y="37" width="7.8" height="15.0" fill="rgb(217,149,13)" rx="2" ry="2" /> ><text x="90.63" y="47.5" ></text> ></g> ><g > ><title>DeliverEventToWindowMask (4 samples, 2.63%)</title><rect x="429.2" y="773" width="31.1" height="15.0" fill="rgb(242,126,40)" rx="2" ry="2" /> ><text x="432.21" y="783.5" >De..</text> ></g> ><g > ><title>DeliverOneEvent (2 samples, 1.32%)</title><rect x="305.0" y="821" width="15.5" height="15.0" fill="rgb(216,174,32)" rx="2" ry="2" /> ><text x="308.00" y="831.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="149.7" y="837" width="7.8" height="15.0" fill="rgb(227,80,23)" rx="2" ry="2" /> ><text x="152.74" y="847.5" ></text> ></g> ><g > ><title>QCoreApplicationPrivate::threadRequiresCoreApplication (1 samples, 0.66%)</title><rect x="685.4" y="677" width="7.8" height="15.0" fill="rgb(228,199,13)" rx="2" ry="2" /> ><text x="688.39" y="687.5" ></text> ></g> ><g > ><title>miPointerUpdateSprite (1 samples, 0.66%)</title><rect x="235.1" y="773" width="7.8" height="15.0" fill="rgb(236,58,21)" rx="2" ry="2" /> ><text x="238.13" y="783.5" ></text> ></g> ><g > ><title>__arm64_sys_writev (2 samples, 1.32%)</title><rect x="444.7" y="533" width="15.6" height="15.0" fill="rgb(242,205,45)" rx="2" ry="2" /> ><text x="447.74" y="543.5" ></text> ></g> ><g > ><title>_XReply (1 samples, 0.66%)</title><rect x="1174.5" y="837" width="7.7" height="15.0" fill="rgb(239,47,32)" rx="2" ry="2" /> ><text x="1177.47" y="847.5" ></text> ></g> ><g > ><title>ReadRequestFromClient (1 samples, 0.66%)</title><rect x="475.8" y="917" width="7.8" height="15.0" fill="rgb(226,33,2)" rx="2" ry="2" /> ><text x="478.79" y="927.5" ></text> ></g> ><g > ><title>__sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="613" width="7.7" height="15.0" fill="rgb(211,27,16)" rx="2" ry="2" /> ><text x="587.47" y="623.5" ></text> ></g> ><g > ><title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="837" width="7.7" height="15.0" fill="rgb(250,4,23)" rx="2" ry="2" /> ><text x="525.37" y="847.5" ></text> ></g> ><g > ><title>do_futex (1 samples, 0.66%)</title><rect x="134.2" y="725" width="7.8" height="15.0" fill="rgb(249,39,25)" rx="2" ry="2" /> ><text x="137.21" y="735.5" ></text> ></g> ><g > ><title>v3d_bo_create_finish (1 samples, 0.66%)</title><rect x="289.5" y="405" width="7.7" height="15.0" fill="rgb(222,194,36)" rx="2" ry="2" /> ><text x="292.47" y="415.5" ></text> ></g> ><g > ><title>__GI___writev (3 samples, 1.97%)</title><rect x="382.6" y="629" width="23.3" height="15.0" fill="rgb(212,153,36)" rx="2" ry="2" /> ><text x="385.63" y="639.5" >_..</text> ></g> ><g > ><title>glamor_copy (2 samples, 1.32%)</title><rect x="281.7" y="821" width="15.5" height="15.0" fill="rgb(248,103,16)" rx="2" ry="2" /> ><text x="284.71" y="831.5" ></text> ></g> ><g > ><title>perf_evsel__enable_cpu (17 samples, 11.18%)</title><rect x="747.5" y="933" width="132.0" height="15.0" fill="rgb(234,186,50)" rx="2" ry="2" /> ><text x="750.50" y="943.5" >perf_evsel__enab..</text> ></g> ><g > ><title>do_iter_write (1 samples, 0.66%)</title><rect x="242.9" y="693" width="7.8" height="15.0" fill="rgb(242,43,43)" rx="2" ry="2" /> ><text x="245.89" y="703.5" ></text> ></g> ><g > ><title>schedule_timeout (1 samples, 0.66%)</title><rect x="374.9" y="197" width="7.7" height="15.0" fill="rgb(230,144,44)" rx="2" ry="2" /> ><text x="377.87" y="207.5" ></text> ></g> ><g > ><title>xcb_wait_for_reply (1 samples, 0.66%)</title><rect x="700.9" y="485" width="7.8" height="15.0" fill="rgb(253,31,52)" rx="2" ry="2" /> ><text x="703.92" y="495.5" ></text> ></g> ><g > ><title>start_thread (1 samples, 0.66%)</title><rect x="522.4" y="965" width="7.7" height="15.0" fill="rgb(246,103,21)" rx="2" ry="2" /> ><text x="525.37" y="975.5" ></text> ></g> ><g > ><title>wait_for_reply (1 samples, 0.66%)</title><rect x="1174.5" y="805" width="7.7" height="15.0" fill="rgb(215,32,42)" rx="2" ry="2" /> ><text x="1177.47" y="815.5" ></text> ></g> ><g > ><title>QXcbConnection::handleXcbEvent (3 samples, 1.97%)</title><rect x="708.7" y="789" width="23.3" height="15.0" fill="rgb(253,87,50)" rx="2" ry="2" /> ><text x="711.68" y="799.5" >Q..</text> ></g> ><g > ><title>ret_from_fork (1 samples, 0.66%)</title><rect x="545.7" y="981" width="7.7" height="15.0" fill="rgb(250,167,8)" rx="2" ry="2" /> ><text x="548.66" y="991.5" ></text> ></g> ><g > ><title>drm_ioctl_kernel (2 samples, 1.32%)</title><rect x="460.3" y="629" width="15.5" height="15.0" fill="rgb(231,118,45)" rx="2" ry="2" /> ><text x="463.26" y="639.5" ></text> ></g> ><g > ><title>DeliverOneEvent (4 samples, 2.63%)</title><rect x="429.2" y="821" width="31.1" height="15.0" fill="rgb(241,77,30)" rx="2" ry="2" /> ><text x="432.21" y="831.5" >De..</text> ></g> ><g > ><title>QStyleHelper::dpiScaled (1 samples, 0.66%)</title><rect x="669.9" y="565" width="7.7" height="15.0" fill="rgb(227,185,13)" rx="2" ry="2" /> ><text x="672.87" y="575.5" ></text> ></g> ><g > ><title>xf86libinput_read_input (9 samples, 5.92%)</title><rect x="41.1" y="901" width="69.8" height="15.0" fill="rgb(215,207,11)" rx="2" ry="2" /> ><text x="44.05" y="911.5" >xf86lib..</text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="204.1" y="789" width="7.7" height="15.0" fill="rgb(242,52,10)" rx="2" ry="2" /> ><text x="207.08" y="799.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="918.3" y="533" width="7.8" height="15.0" fill="rgb(205,62,26)" rx="2" ry="2" /> ><text x="921.29" y="543.5" ></text> ></g> ><g > ><title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="885" width="7.8" height="15.0" fill="rgb(223,220,48)" rx="2" ry="2" /> ><text x="478.79" y="895.5" ></text> ></g> ><g > ><title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="600.0" y="629" width="7.8" height="15.0" fill="rgb(228,13,22)" rx="2" ry="2" /> ><text x="603.00" y="639.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="584.5" y="677" width="7.7" height="15.0" fill="rgb(247,195,19)" rx="2" ry="2" /> ><text x="587.47" y="687.5" ></text> ></g> ><g > ><title>remove_wait_queue (1 samples, 0.66%)</title><rect x="219.6" y="709" width="7.8" height="15.0" fill="rgb(229,194,18)" rx="2" ry="2" /> ><text x="222.61" y="719.5" ></text> ></g> ><g > ><title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="87.6" y="53" width="7.8" height="15.0" fill="rgb(212,147,19)" rx="2" ry="2" /> ><text x="90.63" y="63.5" ></text> ></g> ><g > ><title>do_iter_write (1 samples, 0.66%)</title><rect x="700.9" y="197" width="7.8" height="15.0" fill="rgb(208,96,29)" rx="2" ry="2" /> ><text x="703.92" y="207.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="219.6" y="789" width="15.5" height="15.0" fill="rgb(245,84,9)" rx="2" ry="2" /> ><text x="222.61" y="799.5" ></text> ></g> ><g > ><title>xf86_set_cursor_position (1 samples, 0.66%)</title><rect x="235.1" y="709" width="7.8" height="15.0" fill="rgb(230,110,39)" rx="2" ry="2" /> ><text x="238.13" y="719.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="918.3" y="581" width="7.8" height="15.0" fill="rgb(215,43,37)" rx="2" ry="2" /> ><text x="921.29" y="591.5" ></text> ></g> ><g > ><title>sock_write_iter (1 samples, 0.66%)</title><rect x="242.9" y="661" width="7.8" height="15.0" fill="rgb(219,117,40)" rx="2" ry="2" /> ><text x="245.89" y="671.5" ></text> ></g> ><g > ><title>sock_def_readable (1 samples, 0.66%)</title><rect x="452.5" y="405" width="7.8" height="15.0" fill="rgb(241,159,31)" rx="2" ry="2" /> ><text x="455.50" y="415.5" ></text> ></g> ><g > ><title>sugov:0 (2 samples, 1.32%)</title><rect x="926.1" y="997" width="15.5" height="15.0" fill="rgb(208,36,35)" rx="2" ry="2" /> ><text x="929.05" y="1007.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="561.2" y="901" width="7.7" height="15.0" fill="rgb(213,76,7)" rx="2" ry="2" /> ><text x="564.18" y="911.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (6 samples, 3.95%)</title><rect x="64.3" y="549" width="46.6" height="15.0" fill="rgb(213,165,15)" rx="2" ry="2" /> ><text x="67.34" y="559.5" >el0_..</text> ></g> ><g > ><title>__GI___libc_malloc (1 samples, 0.66%)</title><rect x="600.0" y="581" width="7.8" height="15.0" fill="rgb(222,218,31)" rx="2" ry="2" /> ><text x="603.00" y="591.5" ></text> ></g> ><g > ><title>new_sync_write (1 samples, 0.66%)</title><rect x="33.3" y="741" width="7.8" height="15.0" fill="rgb(211,177,48)" rx="2" ry="2" /> ><text x="36.29" y="751.5" ></text> ></g> ><g > ><title>default_idle_call (8 samples, 5.26%)</title><rect x="941.6" y="885" width="62.1" height="15.0" fill="rgb(222,199,16)" rx="2" ry="2" /> ><text x="944.58" y="895.5" >defaul..</text> ></g> ><g > ><title>drm_atomic_helper_update_plane (2 samples, 1.32%)</title><rect x="367.1" y="357" width="15.5" height="15.0" fill="rgb(230,84,9)" rx="2" ry="2" /> ><text x="370.11" y="367.5" ></text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="405.9" y="613" width="7.8" height="15.0" fill="rgb(210,162,53)" rx="2" ry="2" /> ><text x="408.92" y="623.5" ></text> ></g> ><g > ><title>vc4_plane_set_blank.isra.0 (1 samples, 0.66%)</title><rect x="468.0" y="437" width="7.8" height="15.0" fill="rgb(239,92,20)" rx="2" ry="2" /> ><text x="471.03" y="447.5" ></text> ></g> ><g > ><title>drm_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="453" width="7.7" height="15.0" fill="rgb(206,185,15)" rx="2" ry="2" /> ><text x="292.47" y="463.5" ></text> ></g> ><g > ><title>XPending (1 samples, 0.66%)</title><rect x="584.5" y="869" width="7.7" height="15.0" fill="rgb(254,42,6)" rx="2" ry="2" /> ><text x="587.47" y="879.5" ></text> ></g> ><g > ><title>__libc_write (2 samples, 1.32%)</title><rect x="25.5" y="901" width="15.6" height="15.0" fill="rgb(222,9,9)" rx="2" ry="2" /> ><text x="28.53" y="911.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="584.5" y="709" width="7.7" height="15.0" fill="rgb(249,176,48)" rx="2" ry="2" /> ><text x="587.47" y="719.5" ></text> ></g> ><g > ><title>clk_set_rate (2 samples, 1.32%)</title><rect x="926.1" y="853" width="15.5" height="15.0" fill="rgb(212,143,34)" rx="2" ry="2" /> ><text x="929.05" y="863.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="219.6" y="837" width="15.5" height="15.0" fill="rgb(224,117,49)" rx="2" ry="2" /> ><text x="222.61" y="847.5" ></text> ></g> ><g > ><title>run_rebalance_domains (1 samples, 0.66%)</title><rect x="452.5" y="181" width="7.8" height="15.0" fill="rgb(205,225,42)" rx="2" ry="2" /> ><text x="455.50" y="191.5" ></text> ></g> ><g > ><title>__GI___poll (1 samples, 0.66%)</title><rect x="1182.2" y="885" width="7.8" height="15.0" fill="rgb(227,34,6)" rx="2" ry="2" /> ><text x="1185.24" y="895.5" ></text> ></g> ><g > ><title>el1h_64_irq (5 samples, 3.29%)</title><rect x="964.9" y="853" width="38.8" height="15.0" fill="rgb(208,110,24)" rx="2" ry="2" /> ><text x="967.87" y="863.5" >el1..</text> ></g> ><g > ><title>[libQt5Core.so.5.15.2] (12 samples, 7.89%)</title><rect x="142.0" y="949" width="93.1" height="15.0" fill="rgb(241,140,10)" rx="2" ry="2" /> ><text x="144.97" y="959.5" >[libQt5Core..</text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="700.9" y="309" width="7.8" height="15.0" fill="rgb(210,67,45)" rx="2" ry="2" /> ><text x="703.92" y="319.5" ></text> ></g> ><g > ><title>error_check_subtexture_dimensions (1 samples, 0.66%)</title><rect x="281.7" y="693" width="7.8" height="15.0" fill="rgb(216,30,51)" rx="2" ry="2" /> ><text x="284.71" y="703.5" ></text> ></g> ><g > ><title>input_event (1 samples, 0.66%)</title><rect x="988.2" y="565" width="7.7" height="15.0" fill="rgb(213,188,46)" rx="2" ry="2" /> ><text x="991.16" y="575.5" ></text> ></g> ><g > ><title>percpu_counter_add_batch (1 samples, 0.66%)</title><rect x="895.0" y="565" width="7.8" height="15.0" fill="rgb(245,9,53)" rx="2" ry="2" /> ><text x="898.00" y="575.5" ></text> ></g> ><g > ><title>poll (1 samples, 0.66%)</title><rect x="724.2" y="677" width="7.8" height="15.0" fill="rgb(219,54,36)" rx="2" ry="2" /> ><text x="727.21" y="687.5" ></text> ></g> ><g > ><title>do_el0_svc (2 samples, 1.32%)</title><rect x="343.8" y="469" width="15.5" height="15.0" fill="rgb(234,160,35)" rx="2" ry="2" /> ><text x="346.82" y="479.5" ></text> ></g> ><g > ><title>ProcessDeviceEvent (18 samples, 11.84%)</title><rect x="320.5" y="853" width="139.8" height="15.0" fill="rgb(245,221,39)" rx="2" ry="2" /> ><text x="323.53" y="863.5" >ProcessDeviceEvent</text> ></g> ><g > ><title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="452.5" y="293" width="7.8" height="15.0" fill="rgb(240,210,8)" rx="2" ry="2" /> ><text x="455.50" y="303.5" ></text> ></g> ><g > ><title>futex_wait_queue_me (1 samples, 0.66%)</title><rect x="134.2" y="693" width="7.8" height="15.0" fill="rgb(221,47,24)" rx="2" ry="2" /> ><text x="137.21" y="703.5" ></text> ></g> ><g > ><title>InputReady (9 samples, 5.92%)</title><rect x="41.1" y="917" width="69.8" height="15.0" fill="rgb(219,59,29)" rx="2" ry="2" /> ><text x="44.05" y="927.5" >InputRe..</text> ></g> ><g > ><title>drm_mode_cursor_universal (1 samples, 0.66%)</title><rect x="235.1" y="437" width="7.8" height="15.0" fill="rgb(230,49,13)" rx="2" ry="2" /> ><text x="238.13" y="447.5" ></text> ></g> ><g > ><title>__GI___libc_write (1 samples, 0.66%)</title><rect x="149.7" y="885" width="7.8" height="15.0" fill="rgb(210,132,36)" rx="2" ry="2" /> ><text x="152.74" y="895.5" ></text> ></g> ><g > ><title>iomap_iter (1 samples, 0.66%)</title><rect x="530.1" y="837" width="7.8" height="15.0" fill="rgb(209,115,42)" rx="2" ry="2" /> ><text x="533.13" y="847.5" ></text> ></g> ><g > ><title>invoke_syscall (2 samples, 1.32%)</title><rect x="219.6" y="773" width="15.5" height="15.0" fill="rgb(239,67,43)" rx="2" ry="2" /> ><text x="222.61" y="783.5" ></text> ></g> ><g > ><title>__pthread_cond_wait_common (1 samples, 0.66%)</title><rect x="134.2" y="869" width="7.8" height="15.0" fill="rgb(212,210,32)" rx="2" ry="2" /> ><text x="137.21" y="879.5" ></text> ></g> ><g > ><title>el0t_64_sync (3 samples, 1.97%)</title><rect x="437.0" y="629" width="23.3" height="15.0" fill="rgb(212,207,11)" rx="2" ry="2" /> ><text x="439.97" y="639.5" >e..</text> ></g> ><g > ><title>__arm64_sys_ioctl (17 samples, 11.18%)</title><rect x="747.5" y="805" width="132.0" height="15.0" fill="rgb(210,184,19)" rx="2" ry="2" /> ><text x="750.50" y="815.5" >__arm64_sys_ioctl</text> ></g> ><g > ><title>DeliverEventsToWindow (4 samples, 2.63%)</title><rect x="429.2" y="789" width="31.1" height="15.0" fill="rgb(235,53,5)" rx="2" ry="2" /> ><text x="432.21" y="799.5" >De..</text> ></g> ><g > ><title>ext4_setattr (1 samples, 0.66%)</title><rect x="1151.2" y="677" width="7.7" height="15.0" fill="rgb(242,164,1)" rx="2" ry="2" /> ><text x="1154.18" y="687.5" ></text> ></g> ><g > ><title>drm_atomic_helper_plane_destroy_state (1 samples, 0.66%)</title><rect x="460.3" y="501" width="7.7" height="15.0" fill="rgb(208,143,9)" rx="2" ry="2" /> ><text x="463.26" y="511.5" ></text> ></g> ><g > ><title>__pthread_mutex_unlock_usercnt (1 samples, 0.66%)</title><rect x="297.2" y="885" width="7.8" height="15.0" fill="rgb(250,172,23)" rx="2" ry="2" /> ><text x="300.24" y="895.5" ></text> ></g> ><g > ><title>drmIoctl (6 samples, 3.95%)</title><rect x="64.3" y="645" width="46.6" height="15.0" fill="rgb(214,183,8)" rx="2" ry="2" /> ><text x="67.34" y="655.5" >drmI..</text> ></g> ><g > ><title>__cpufreq_driver_target (2 samples, 1.32%)</title><rect x="926.1" y="917" width="15.5" height="15.0" fill="rgb(205,220,47)" rx="2" ry="2" /> ><text x="929.05" y="927.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="405.9" y="517" width="7.8" height="15.0" fill="rgb(239,223,12)" rx="2" ry="2" /> ><text x="408.92" y="527.5" ></text> ></g> ><g > ><title>positionSprite (6 samples, 3.95%)</title><rect x="64.3" y="805" width="46.6" height="15.0" fill="rgb(218,225,13)" rx="2" ry="2" /> ><text x="67.34" y="815.5" >posi..</text> ></g> ><g > ><title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="343.8" y="197" width="7.8" height="15.0" fill="rgb(208,62,21)" rx="2" ry="2" /> ><text x="346.82" y="207.5" ></text> ></g> ><g > ><title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.66%)</title><rect x="1073.6" y="709" width="7.7" height="15.0" fill="rgb(248,135,10)" rx="2" ry="2" /> ><text x="1076.55" y="719.5" ></text> ></g> ><g > ><title>__libc_recvmsg (2 samples, 1.32%)</title><rect x="196.3" y="869" width="15.5" height="15.0" fill="rgb(221,194,9)" rx="2" ry="2" /> ><text x="199.32" y="879.5" ></text> ></g> ><g > ><title>do_el0_svc (2 samples, 1.32%)</title><rect x="460.3" y="709" width="15.5" height="15.0" fill="rgb(238,155,12)" rx="2" ry="2" /> ><text x="463.26" y="719.5" ></text> ></g> ><g > ><title>el0_svc (6 samples, 3.95%)</title><rect x="64.3" y="581" width="46.6" height="15.0" fill="rgb(211,48,19)" rx="2" ry="2" /> ><text x="67.34" y="591.5" >el0_..</text> ></g> ><g > ><title>do_iter_readv_writev (3 samples, 1.97%)</title><rect x="382.6" y="453" width="23.3" height="15.0" fill="rgb(247,176,17)" rx="2" ry="2" /> ><text x="385.63" y="463.5" >d..</text> ></g> ><g > ><title>perf_mmap__push (5 samples, 3.29%)</title><rect x="879.5" y="933" width="38.8" height="15.0" fill="rgb(220,123,6)" rx="2" ry="2" /> ><text x="882.47" y="943.5" >per..</text> ></g> ><g > ><title>xcb_wait_for_reply (1 samples, 0.66%)</title><rect x="600.0" y="661" width="7.8" height="15.0" fill="rgb(223,210,36)" rx="2" ry="2" /> ><text x="603.00" y="671.5" ></text> ></g> ><g > ><title>unix_stream_sendmsg (2 samples, 1.32%)</title><rect x="390.4" y="405" width="15.5" height="15.0" fill="rgb(252,212,6)" rx="2" ry="2" /> ><text x="393.39" y="415.5" ></text> ></g> ><g > ><title>v3d_resource_create_with_modifiers (1 samples, 0.66%)</title><rect x="289.5" y="661" width="7.7" height="15.0" fill="rgb(249,224,23)" rx="2" ry="2" /> ><text x="292.47" y="671.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="475.8" y="805" width="7.8" height="15.0" fill="rgb(251,86,29)" rx="2" ry="2" /> ><text x="478.79" y="815.5" ></text> ></g> ><g > ><title>hypot@plt (1 samples, 0.66%)</title><rect x="10.0" y="949" width="7.8" height="15.0" fill="rgb(242,148,35)" rx="2" ry="2" /> ><text x="13.00" y="959.5" ></text> ></g> ><g > ><title>sched_setaffinity (1 samples, 0.66%)</title><rect x="739.7" y="789" width="7.8" height="15.0" fill="rgb(216,138,47)" rx="2" ry="2" /> ><text x="742.74" y="799.5" ></text> ></g> ><g > ><title>__GI___writev (3 samples, 1.97%)</title><rect x="437.0" y="661" width="23.3" height="15.0" fill="rgb(229,196,7)" rx="2" ry="2" /> ><text x="439.97" y="671.5" >_..</text> ></g> ><g > ><title>EventToXI (1 samples, 0.66%)</title><rect x="312.8" y="805" width="7.7" height="15.0" fill="rgb(215,224,6)" rx="2" ry="2" /> ><text x="315.76" y="815.5" ></text> ></g> ><g > ><title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="134.2" y="645" width="7.8" height="15.0" fill="rgb(211,153,43)" rx="2" ry="2" /> ><text x="137.21" y="655.5" ></text> ></g> ><g > ><title>xf86_load_cursor_argb (5 samples, 3.29%)</title><rect x="320.5" y="645" width="38.8" height="15.0" fill="rgb(213,97,12)" rx="2" ry="2" /> ><text x="323.53" y="655.5" >xf8..</text> ></g> ><g > ><title>__drm_atomic_state_free (1 samples, 0.66%)</title><rect x="460.3" y="533" width="7.7" height="15.0" fill="rgb(250,85,50)" rx="2" ry="2" /> ><text x="463.26" y="543.5" ></text> ></g> ><g > ><title>hid_report_raw_event (2 samples, 1.32%)</title><rect x="980.4" y="597" width="15.5" height="15.0" fill="rgb(231,107,3)" rx="2" ry="2" /> ><text x="983.39" y="607.5" ></text> ></g> ><g > ><title>el0_svc (3 samples, 1.97%)</title><rect x="359.3" y="533" width="23.3" height="15.0" fill="rgb(221,145,29)" rx="2" ry="2" /> ><text x="362.34" y="543.5" >e..</text> ></g> ><g > ><title>__sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="741" width="7.8" height="15.0" fill="rgb(248,206,10)" rx="2" ry="2" /> ><text x="478.79" y="751.5" ></text> ></g> ><g > ><title>do_idle (13 samples, 8.55%)</title><rect x="941.6" y="901" width="100.9" height="15.0" fill="rgb(210,96,27)" rx="2" ry="2" /> ><text x="944.58" y="911.5" >do_idle</text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="204.1" y="837" width="7.7" height="15.0" fill="rgb(225,14,29)" rx="2" ry="2" /> ><text x="207.08" y="847.5" ></text> ></g> ><g > ><title>el1h_64_sync_handler (1 samples, 0.66%)</title><rect x="910.5" y="629" width="7.8" height="15.0" fill="rgb(206,76,11)" rx="2" ry="2" /> ><text x="913.53" y="639.5" ></text> ></g> ><g > ><title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="227.4" y="661" width="7.7" height="15.0" fill="rgb(228,173,3)" rx="2" ry="2" /> ><text x="230.37" y="671.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="522.4" y="645" width="7.7" height="15.0" fill="rgb(206,151,48)" rx="2" ry="2" /> ><text x="525.37" y="655.5" ></text> ></g> ><g > ><title>do_el0_svc (2 samples, 1.32%)</title><rect x="25.5" y="837" width="15.6" height="15.0" fill="rgb(232,50,7)" rx="2" ry="2" /> ><text x="28.53" y="847.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="576.7" y="805" width="7.8" height="15.0" fill="rgb(227,2,31)" rx="2" ry="2" /> ><text x="579.71" y="815.5" ></text> ></g> ><g > ><title>el0t_64_sync (17 samples, 11.18%)</title><rect x="747.5" y="901" width="132.0" height="15.0" fill="rgb(219,195,36)" rx="2" ry="2" /> ><text x="750.50" y="911.5" >el0t_64_sync</text> ></g> ><g > ><title>jbd2_journal_next_log_block (1 samples, 0.66%)</title><rect x="530.1" y="917" width="7.8" height="15.0" fill="rgb(253,187,48)" rx="2" ry="2" /> ><text x="533.13" y="927.5" ></text> ></g> ><g > ><title>libinput_dispatch (3 samples, 1.97%)</title><rect x="41.1" y="885" width="23.2" height="15.0" fill="rgb(210,80,28)" rx="2" ry="2" /> ><text x="44.05" y="895.5" >l..</text> ></g> ><g > ><title>ProcShmPutImage (6 samples, 3.95%)</title><rect x="250.7" y="917" width="46.5" height="15.0" fill="rgb(233,22,0)" rx="2" ry="2" /> ><text x="253.66" y="927.5" >Proc..</text> ></g> ><g > ><title>__arm64_sys_ppoll (1 samples, 0.66%)</title><rect x="576.7" y="757" width="7.8" height="15.0" fill="rgb(245,191,2)" rx="2" ry="2" /> ><text x="579.71" y="767.5" ></text> ></g> ><g > ><title>ksys_write (1 samples, 0.66%)</title><rect x="33.3" y="773" width="7.8" height="15.0" fill="rgb(247,226,37)" rx="2" ry="2" /> ><text x="36.29" y="783.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="405.9" y="549" width="7.8" height="15.0" fill="rgb(218,197,14)" rx="2" ry="2" /> ><text x="408.92" y="559.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit (5 samples, 3.29%)</title><rect x="64.3" y="373" width="38.9" height="15.0" fill="rgb(250,32,0)" rx="2" ry="2" /> ><text x="67.34" y="383.5" >drm..</text> ></g> ><g > ><title>__arm64_sys_epoll_pwait (3 samples, 1.97%)</title><rect x="110.9" y="805" width="23.3" height="15.0" fill="rgb(253,134,46)" rx="2" ry="2" /> ><text x="113.92" y="815.5" >_..</text> ></g> ><g > ><title>DeliverEventsToWindow (1 samples, 0.66%)</title><rect x="305.0" y="789" width="7.8" height="15.0" fill="rgb(245,133,37)" rx="2" ry="2" /> ><text x="308.00" y="799.5" ></text> ></g> ><g > ><title>__setplane_atomic (2 samples, 1.32%)</title><rect x="460.3" y="565" width="15.5" height="15.0" fill="rgb(237,164,8)" rx="2" ry="2" /> ><text x="463.26" y="575.5" ></text> ></g> ><g > ><title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="95.4" y="261" width="7.8" height="15.0" fill="rgb(220,223,25)" rx="2" ry="2" /> ><text x="98.39" y="271.5" ></text> ></g> ><g > ><title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="700.9" y="453" width="7.8" height="15.0" fill="rgb(249,121,53)" rx="2" ry="2" /> ><text x="703.92" y="463.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="724.2" y="565" width="7.8" height="15.0" fill="rgb(215,78,4)" rx="2" ry="2" /> ><text x="727.21" y="575.5" ></text> ></g> ><g > ><title>[qterminal] (1 samples, 0.66%)</title><rect x="918.3" y="949" width="7.8" height="15.0" fill="rgb(233,3,48)" rx="2" ry="2" /> ><text x="921.29" y="959.5" ></text> ></g> ><g > ><title>drm_ioctl_kernel (2 samples, 1.32%)</title><rect x="343.8" y="389" width="15.5" height="15.0" fill="rgb(231,176,46)" rx="2" ry="2" /> ><text x="346.82" y="399.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="724.2" y="629" width="7.8" height="15.0" fill="rgb(211,183,19)" rx="2" ry="2" /> ><text x="727.21" y="639.5" ></text> ></g> ><g > ><title>_XSERVTransSocketWritev (3 samples, 1.97%)</title><rect x="437.0" y="677" width="23.3" height="15.0" fill="rgb(248,221,12)" rx="2" ry="2" /> ><text x="439.97" y="687.5" >_..</text> ></g> ><g > ><title>damagePutImage (1 samples, 0.66%)</title><rect x="514.6" y="981" width="7.8" height="15.0" fill="rgb(254,9,48)" rx="2" ry="2" /> ><text x="517.61" y="991.5" ></text> ></g> ><g > ><title>QGuiApplicationPrivate::processMouseEvent (2 samples, 1.32%)</title><rect x="693.2" y="789" width="15.5" height="15.0" fill="rgb(250,21,6)" rx="2" ry="2" /> ><text x="696.16" y="799.5" ></text> ></g> ><g > ><title>__arm64_sys_sched_setaffinity (1 samples, 0.66%)</title><rect x="739.7" y="805" width="7.8" height="15.0" fill="rgb(249,191,8)" rx="2" ry="2" /> ><text x="742.74" y="815.5" ></text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="242.9" y="869" width="7.8" height="15.0" fill="rgb(207,8,13)" rx="2" ry="2" /> ><text x="245.89" y="879.5" ></text> ></g> ><g > ><title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="789" width="7.7" height="15.0" fill="rgb(231,87,20)" rx="2" ry="2" /> ><text x="525.37" y="799.5" ></text> ></g> ><g > ><title>do_sys_poll (2 samples, 1.32%)</title><rect x="219.6" y="741" width="15.5" height="15.0" fill="rgb(235,153,51)" rx="2" ry="2" /> ><text x="222.61" y="751.5" ></text> ></g> ><g > ><title>main (2 samples, 1.32%)</title><rect x="576.7" y="933" width="15.5" height="15.0" fill="rgb(226,152,42)" rx="2" ry="2" /> ><text x="579.71" y="943.5" ></text> ></g> ><g > ><title>kcompactd0 (1 samples, 0.66%)</title><rect x="537.9" y="997" width="7.8" height="15.0" fill="rgb(237,225,13)" rx="2" ry="2" /> ><text x="540.89" y="1007.5" ></text> ></g> ><g > ><title>AnimCurDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="853" width="7.8" height="15.0" fill="rgb(248,46,20)" rx="2" ry="2" /> ><text x="238.13" y="863.5" ></text> ></g> ><g > ><title>g_main_context_iteration (1 samples, 0.66%)</title><rect x="918.3" y="885" width="7.8" height="15.0" fill="rgb(245,39,49)" rx="2" ry="2" /> ><text x="921.29" y="895.5" ></text> ></g> ><g > ><title>DeliverToWindowOwner (3 samples, 1.97%)</title><rect x="382.6" y="741" width="23.3" height="15.0" fill="rgb(213,205,7)" rx="2" ry="2" /> ><text x="385.63" y="751.5" >D..</text> ></g> ><g > ><title>poll_for_next_event (1 samples, 0.66%)</title><rect x="584.5" y="789" width="7.7" height="15.0" fill="rgb(228,131,38)" rx="2" ry="2" /> ><text x="587.47" y="799.5" ></text> ></g> ><g > ><title>v3d_resource_bo_alloc (1 samples, 0.66%)</title><rect x="289.5" y="645" width="7.7" height="15.0" fill="rgb(240,167,25)" rx="2" ry="2" /> ><text x="292.47" y="655.5" ></text> ></g> ><g > ><title>__pselect (1 samples, 0.66%)</title><rect x="561.2" y="949" width="7.7" height="15.0" fill="rgb(234,30,41)" rx="2" ry="2" /> ><text x="564.18" y="959.5" ></text> ></g> ><g > ><title>QWindowSystemInterfacePrivate::handleWindowSystemEvent<QWindowSystemInterface::AsynchronousDelivery> (1 samples, 0.66%)</title><rect x="708.7" y="757" width="7.7" height="15.0" fill="rgb(232,46,24)" rx="2" ry="2" /> ><text x="711.68" y="767.5" ></text> ></g> ><g > ><title>ext4_block_write_begin (2 samples, 1.32%)</title><rect x="887.2" y="629" width="15.6" height="15.0" fill="rgb(220,130,27)" rx="2" ry="2" /> ><text x="890.24" y="639.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit (1 samples, 0.66%)</title><rect x="235.1" y="373" width="7.8" height="15.0" fill="rgb(224,197,1)" rx="2" ry="2" /> ><text x="238.13" y="383.5" ></text> ></g> ><g > ><title>handle_domain_irq (1 samples, 0.66%)</title><rect x="87.6" y="85" width="7.8" height="15.0" fill="rgb(213,213,24)" rx="2" ry="2" /> ><text x="90.63" y="95.5" ></text> ></g> ><g > ><title>xf86_set_cursor_position (3 samples, 1.97%)</title><rect x="359.3" y="661" width="23.3" height="15.0" fill="rgb(207,13,31)" rx="2" ry="2" /> ><text x="362.34" y="671.5" >x..</text> ></g> ><g > ><title>QWidgetPrivate::drawWidget (8 samples, 5.26%)</title><rect x="607.8" y="725" width="62.1" height="15.0" fill="rgb(253,94,32)" rx="2" ry="2" /> ><text x="610.76" y="735.5" >QWidge..</text> ></g> ><g > ><title>[libQt5Gui.so.5.15.2] (2 samples, 1.32%)</title><rect x="654.3" y="581" width="15.6" height="15.0" fill="rgb(251,144,41)" rx="2" ry="2" /> ><text x="657.34" y="591.5" ></text> ></g> ><g > ><title>miCopyRegion (2 samples, 1.32%)</title><rect x="281.7" y="837" width="15.5" height="15.0" fill="rgb(221,115,19)" rx="2" ry="2" /> ><text x="284.71" y="847.5" ></text> ></g> ><g > ><title>msg_submit (1 samples, 0.66%)</title><rect x="235.1" y="245" width="7.8" height="15.0" fill="rgb(253,188,44)" rx="2" ry="2" /> ><text x="238.13" y="255.5" ></text> ></g> ><g > ><title>invoke_syscall (2 samples, 1.32%)</title><rect x="460.3" y="677" width="15.5" height="15.0" fill="rgb(244,68,16)" rx="2" ry="2" /> ><text x="463.26" y="687.5" ></text> ></g> ><g > ><title>new_sync_write (5 samples, 3.29%)</title><rect x="879.5" y="709" width="38.8" height="15.0" fill="rgb(250,28,6)" rx="2" ry="2" /> ><text x="882.47" y="719.5" >new..</text> ></g> ><g > ><title>[perf] (24 samples, 15.79%)</title><rect x="732.0" y="981" width="186.3" height="15.0" fill="rgb(248,45,39)" rx="2" ry="2" /> ><text x="734.97" y="991.5" >[perf]</text> ></g> ><g > ><title>__irq_exit_rcu (5 samples, 3.29%)</title><rect x="964.9" y="725" width="38.8" height="15.0" fill="rgb(223,104,12)" rx="2" ry="2" /> ><text x="967.87" y="735.5" >__i..</text> ></g> ><g > ><title>__arm64_sys_ioctl (3 samples, 1.97%)</title><rect x="359.3" y="469" width="23.3" height="15.0" fill="rgb(217,30,34)" rx="2" ry="2" /> ><text x="362.34" y="479.5" >_..</text> ></g> ><g > ><title>schedule (2 samples, 1.32%)</title><rect x="180.8" y="677" width="15.5" height="15.0" fill="rgb(206,30,22)" rx="2" ry="2" /> ><text x="183.79" y="687.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="235.1" y="213" width="7.8" height="15.0" fill="rgb(226,98,38)" rx="2" ry="2" /> ><text x="238.13" y="223.5" ></text> ></g> ><g > ><title>u_default_texture_subdata (4 samples, 2.63%)</title><rect x="250.7" y="757" width="31.0" height="15.0" fill="rgb(232,49,17)" rx="2" ry="2" /> ><text x="253.66" y="767.5" >u_..</text> ></g> ><g > ><title>mbox_send_message (1 samples, 0.66%)</title><rect x="235.1" y="261" width="7.8" height="15.0" fill="rgb(212,83,48)" rx="2" ry="2" /> ><text x="238.13" y="271.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="297.2" y="837" width="7.8" height="15.0" fill="rgb(223,192,23)" rx="2" ry="2" /> ><text x="300.24" y="847.5" ></text> ></g> ><g > ><title>DRM_IOCTL (2 samples, 1.32%)</title><rect x="343.8" y="565" width="15.5" height="15.0" fill="rgb(231,211,51)" rx="2" ry="2" /> ><text x="346.82" y="575.5" ></text> ></g> ><g > ><title>drmModeMoveCursor (2 samples, 1.32%)</title><rect x="460.3" y="821" width="15.5" height="15.0" fill="rgb(251,0,42)" rx="2" ry="2" /> ><text x="463.26" y="831.5" ></text> ></g> ><g > ><title>_XEventsQueued (1 samples, 0.66%)</title><rect x="584.5" y="853" width="7.7" height="15.0" fill="rgb(249,55,52)" rx="2" ry="2" /> ><text x="587.47" y="863.5" ></text> ></g> ><g > ><title>DeliverEventToInputClients (1 samples, 0.66%)</title><rect x="305.0" y="757" width="7.8" height="15.0" fill="rgb(238,137,38)" rx="2" ry="2" /> ><text x="308.00" y="767.5" ></text> ></g> ><g > ><title>ep_item_poll.isra.0 (1 samples, 0.66%)</title><rect x="126.4" y="757" width="7.8" height="15.0" fill="rgb(239,24,4)" rx="2" ry="2" /> ><text x="129.45" y="767.5" ></text> ></g> ><g > ><title>finish_fault (1 samples, 0.66%)</title><rect x="910.5" y="517" width="7.8" height="15.0" fill="rgb(244,183,14)" rx="2" ry="2" /> ><text x="913.53" y="527.5" ></text> ></g> ><g > ><title>__pthread_mutex_cond_lock (1 samples, 0.66%)</title><rect x="716.4" y="677" width="7.8" height="15.0" fill="rgb(251,9,39)" rx="2" ry="2" /> ><text x="719.45" y="687.5" ></text> ></g> ><g > ><title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="126.4" y="709" width="7.8" height="15.0" fill="rgb(206,70,42)" rx="2" ry="2" /> ><text x="129.45" y="719.5" ></text> ></g> ><g > ><title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="1073.6" y="869" width="7.7" height="15.0" fill="rgb(238,48,29)" rx="2" ry="2" /> ><text x="1076.55" y="879.5" ></text> ></g> ><g > ><title>_XEventsQueued (1 samples, 0.66%)</title><rect x="1166.7" y="869" width="7.8" height="15.0" fill="rgb(206,18,30)" rx="2" ry="2" /> ><text x="1169.71" y="879.5" ></text> ></g> ><g > ><title>____sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="709" width="7.8" height="15.0" fill="rgb(250,85,46)" rx="2" ry="2" /> ><text x="478.79" y="719.5" ></text> ></g> ><g > ><title>_XSERVTransSocketWritev (1 samples, 0.66%)</title><rect x="305.0" y="677" width="7.8" height="15.0" fill="rgb(244,27,20)" rx="2" ry="2" /> ><text x="308.00" y="687.5" ></text> ></g> ><g > ><title>__arm64_sys_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="677" width="7.8" height="15.0" fill="rgb(254,137,1)" rx="2" ry="2" /> ><text x="1169.71" y="687.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="475.8" y="837" width="7.8" height="15.0" fill="rgb(234,84,46)" rx="2" ry="2" /> ><text x="478.79" y="847.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="235.1" y="565" width="7.8" height="15.0" fill="rgb(209,189,10)" rx="2" ry="2" /> ><text x="238.13" y="575.5" ></text> ></g> ><g > ><title>swapper (27 samples, 17.76%)</title><rect x="941.6" y="997" width="209.6" height="15.0" fill="rgb(247,124,5)" rx="2" ry="2" /> ><text x="944.58" y="1007.5" >swapper</text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="235.1" y="533" width="7.8" height="15.0" fill="rgb(221,96,53)" rx="2" ry="2" /> ><text x="238.13" y="543.5" ></text> ></g> ><g > ><title>process_one_work (1 samples, 0.66%)</title><rect x="545.7" y="933" width="7.7" height="15.0" fill="rgb(225,77,29)" rx="2" ry="2" /> ><text x="548.66" y="943.5" ></text> ></g> ><g > ><title>__arch_copy_from_user (1 samples, 0.66%)</title><rect x="879.5" y="645" width="7.7" height="15.0" fill="rgb(215,73,1)" rx="2" ry="2" /> ><text x="882.47" y="655.5" ></text> ></g> ><g > ><title>do_writev (1 samples, 0.66%)</title><rect x="305.0" y="517" width="7.8" height="15.0" fill="rgb(223,99,20)" rx="2" ry="2" /> ><text x="308.00" y="527.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="165.3" y="821" width="7.7" height="15.0" fill="rgb(236,22,12)" rx="2" ry="2" /> ><text x="168.26" y="831.5" ></text> ></g> ><g > ><title>FlushClient (1 samples, 0.66%)</title><rect x="242.9" y="901" width="7.8" height="15.0" fill="rgb(244,87,47)" rx="2" ry="2" /> ><text x="245.89" y="911.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="584.5" y="693" width="7.7" height="15.0" fill="rgb(218,131,40)" rx="2" ry="2" /> ><text x="587.47" y="703.5" ></text> ></g> ><g > ><title>___sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="725" width="7.8" height="15.0" fill="rgb(211,76,29)" rx="2" ry="2" /> ><text x="478.79" y="735.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="134.2" y="757" width="7.8" height="15.0" fill="rgb(250,56,13)" rx="2" ry="2" /> ><text x="137.21" y="767.5" ></text> ></g> ><g > ><title>__lll_lock_wait (1 samples, 0.66%)</title><rect x="716.4" y="661" width="7.8" height="15.0" fill="rgb(211,96,10)" rx="2" ry="2" /> ><text x="719.45" y="671.5" ></text> ></g> ><g > ><title>handle_domain_irq (1 samples, 0.66%)</title><rect x="452.5" y="245" width="7.8" height="15.0" fill="rgb(247,82,42)" rx="2" ry="2" /> ><text x="455.50" y="255.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="374.9" y="165" width="7.7" height="15.0" fill="rgb(227,194,44)" rx="2" ry="2" /> ><text x="377.87" y="175.5" ></text> ></g> ><g > ><title>usb_giveback_urb_bh (3 samples, 1.97%)</title><rect x="980.4" y="661" width="23.3" height="15.0" fill="rgb(247,195,3)" rx="2" ry="2" /> ><text x="983.39" y="671.5" >u..</text> ></g> ><g > ><title>wait_for_reply (1 samples, 0.66%)</title><rect x="700.9" y="469" width="7.8" height="15.0" fill="rgb(208,198,30)" rx="2" ry="2" /> ><text x="703.92" y="479.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="700.9" y="261" width="7.8" height="15.0" fill="rgb(228,167,14)" rx="2" ry="2" /> ><text x="703.92" y="271.5" ></text> ></g> ><g > ><title>__GI___sched_setaffinity_new (1 samples, 0.66%)</title><rect x="739.7" y="917" width="7.8" height="15.0" fill="rgb(213,77,48)" rx="2" ry="2" /> ><text x="742.74" y="927.5" ></text> ></g> ><g > ><title>do_epoll_pwait.part.0 (3 samples, 1.97%)</title><rect x="110.9" y="789" width="23.3" height="15.0" fill="rgb(232,214,41)" rx="2" ry="2" /> ><text x="113.92" y="799.5" >d..</text> ></g> ><g > ><title>sock_def_readable (1 samples, 0.66%)</title><rect x="398.2" y="389" width="7.7" height="15.0" fill="rgb(232,149,29)" rx="2" ry="2" /> ><text x="401.16" y="399.5" ></text> ></g> ><g > ><title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="592.2" y="981" width="7.8" height="15.0" fill="rgb(227,159,27)" rx="2" ry="2" /> ><text x="595.24" y="991.5" ></text> ></g> ><g > ><title>g_main_context_iterate (2 samples, 1.32%)</title><rect x="576.7" y="901" width="15.5" height="15.0" fill="rgb(222,136,43)" rx="2" ry="2" /> ><text x="579.71" y="911.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="165.3" y="837" width="7.7" height="15.0" fill="rgb(251,136,17)" rx="2" ry="2" /> ><text x="168.26" y="847.5" ></text> ></g> ><g > ><title>vc4_atomic_commit_tail (5 samples, 3.29%)</title><rect x="64.3" y="341" width="38.9" height="15.0" fill="rgb(210,136,37)" rx="2" ry="2" /> ><text x="67.34" y="351.5" >vc4..</text> ></g> ><g > ><title>CoreEnterLeaveEvent (3 samples, 1.97%)</title><rect x="382.6" y="773" width="23.3" height="15.0" fill="rgb(248,120,4)" rx="2" ry="2" /> ><text x="385.63" y="783.5" >C..</text> ></g> ><g > ><title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="638.8" y="629" width="7.8" height="15.0" fill="rgb(212,18,44)" rx="2" ry="2" /> ><text x="641.82" y="639.5" ></text> ></g> ><g > ><title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="933" width="7.7" height="15.0" fill="rgb(227,202,42)" rx="2" ry="2" /> ><text x="525.37" y="943.5" ></text> ></g> ><g > ><title>TryClientEvents (3 samples, 1.97%)</title><rect x="382.6" y="725" width="23.3" height="15.0" fill="rgb(223,183,1)" rx="2" ry="2" /> ><text x="385.63" y="735.5" >T..</text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="305.0" y="565" width="7.8" height="15.0" fill="rgb(246,158,30)" rx="2" ry="2" /> ><text x="308.00" y="575.5" ></text> ></g> ><g > ><title>__schedule (1 samples, 0.66%)</title><rect x="95.4" y="213" width="7.8" height="15.0" fill="rgb(212,43,0)" rx="2" ry="2" /> ><text x="98.39" y="223.5" ></text> ></g> ><g > ><title>rpi_firmware_property (2 samples, 1.32%)</title><rect x="926.1" y="789" width="15.5" height="15.0" fill="rgb(241,82,17)" rx="2" ry="2" /> ><text x="929.05" y="799.5" ></text> ></g> ><g > ><title>g_main_context_dispatch (1 samples, 0.66%)</title><rect x="918.3" y="853" width="7.8" height="15.0" fill="rgb(219,153,6)" rx="2" ry="2" /> ><text x="921.29" y="863.5" ></text> ></g> ><g > ><title>[libQt5XcbQpa.so.5.15.2] (8 samples, 5.26%)</title><rect x="669.9" y="821" width="62.1" height="15.0" fill="rgb(218,80,51)" rx="2" ry="2" /> ><text x="672.87" y="831.5" >[libQt..</text> ></g> ><g > ><title>xf86ScreenMoveCursor (2 samples, 1.32%)</title><rect x="460.3" y="869" width="15.5" height="15.0" fill="rgb(209,206,14)" rx="2" ry="2" /> ><text x="463.26" y="879.5" ></text> ></g> ><g > ><title>CoreLeaveNotifies (1 samples, 0.66%)</title><rect x="405.9" y="773" width="7.8" height="15.0" fill="rgb(251,26,12)" rx="2" ry="2" /> ><text x="408.92" y="783.5" ></text> ></g> ><g > ><title>sock_write_iter (1 samples, 0.66%)</title><rect x="918.3" y="405" width="7.8" height="15.0" fill="rgb(235,89,45)" rx="2" ry="2" /> ><text x="921.29" y="415.5" ></text> ></g> ><g > ><title>_mesa_TexSubImage2D (4 samples, 2.63%)</title><rect x="250.7" y="821" width="31.0" height="15.0" fill="rgb(246,107,4)" rx="2" ry="2" /> ><text x="253.66" y="831.5" >_m..</text> ></g> ><g > ><title>xscreensaver (3 samples, 1.97%)</title><rect x="1166.7" y="997" width="23.3" height="15.0" fill="rgb(254,125,27)" rx="2" ry="2" /> ><text x="1169.71" y="1007.5" >x..</text> ></g> ><g > ><title>QWindowSystemInterface::sendWindowSystemEvents (5 samples, 3.29%)</title><rect x="669.9" y="805" width="38.8" height="15.0" fill="rgb(248,168,52)" rx="2" ry="2" /> ><text x="672.87" y="815.5" >QWi..</text> ></g> ><g > ><title>__schedule (1 samples, 0.66%)</title><rect x="568.9" y="917" width="7.8" height="15.0" fill="rgb(246,44,42)" rx="2" ry="2" /> ><text x="571.95" y="927.5" ></text> ></g> ><g > ><title>drm_mode_cursor_ioctl (1 samples, 0.66%)</title><rect x="235.1" y="469" width="7.8" height="15.0" fill="rgb(213,50,37)" rx="2" ry="2" /> ><text x="238.13" y="479.5" ></text> ></g> ><g > ><title>gic_handle_irq (5 samples, 3.29%)</title><rect x="964.9" y="773" width="38.8" height="15.0" fill="rgb(212,35,11)" rx="2" ry="2" /> ><text x="967.87" y="783.5" >gic..</text> ></g> ><g > ><title>QFusionStyle::subControlRect (1 samples, 0.66%)</title><rect x="669.9" y="613" width="7.7" height="15.0" fill="rgb(214,141,35)" rx="2" ry="2" /> ><text x="672.87" y="623.5" ></text> ></g> ><g > ><title>vc4_plane_atomic_update (1 samples, 0.66%)</title><rect x="351.6" y="213" width="7.7" height="15.0" fill="rgb(232,228,27)" rx="2" ry="2" /> ><text x="354.58" y="223.5" ></text> ></g> ><g > ><title>miPointerUpdateSprite (1 samples, 0.66%)</title><rect x="235.1" y="789" width="7.8" height="15.0" fill="rgb(206,20,7)" rx="2" ry="2" /> ><text x="238.13" y="799.5" ></text> ></g> ><g > ><title>XEventsQueued (1 samples, 0.66%)</title><rect x="1166.7" y="901" width="7.8" height="15.0" fill="rgb(242,69,46)" rx="2" ry="2" /> ><text x="1169.71" y="911.5" ></text> ></g> ><g > ><title>xf86ScreenSetCursor (1 samples, 0.66%)</title><rect x="235.1" y="725" width="7.8" height="15.0" fill="rgb(222,221,47)" rx="2" ry="2" /> ><text x="238.13" y="735.5" ></text> ></g> ><g > ><title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.66%)</title><rect x="1003.7" y="869" width="7.7" height="15.0" fill="rgb(241,60,21)" rx="2" ry="2" /> ><text x="1006.68" y="879.5" ></text> ></g> ><g > ><title>nohz_run_idle_balance (1 samples, 0.66%)</title><rect x="1081.3" y="917" width="7.8" height="15.0" fill="rgb(221,8,54)" rx="2" ry="2" /> ><text x="1084.32" y="927.5" ></text> ></g> ><g > ><title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="110.9" y="757" width="7.8" height="15.0" fill="rgb(207,134,3)" rx="2" ry="2" /> ><text x="113.92" y="767.5" ></text> ></g> ><g > ><title>unix_stream_read_generic (1 samples, 0.66%)</title><rect x="475.8" y="677" width="7.8" height="15.0" fill="rgb(239,183,10)" rx="2" ry="2" /> ><text x="478.79" y="687.5" ></text> ></g> ><g > ><title>gdbus (1 samples, 0.66%)</title><rect x="522.4" y="997" width="7.7" height="15.0" fill="rgb(228,33,17)" rx="2" ry="2" /> ><text x="525.37" y="1007.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="289.5" y="549" width="7.7" height="15.0" fill="rgb(215,10,29)" rx="2" ry="2" /> ><text x="292.47" y="559.5" ></text> ></g> ><g > ><title>[systemd-journald] (2 samples, 1.32%)</title><rect x="1151.2" y="981" width="15.5" height="15.0" fill="rgb(220,94,48)" rx="2" ry="2" /> ><text x="1154.18" y="991.5" ></text> ></g> ><g > ><title>fill_pointer_events (6 samples, 3.95%)</title><rect x="64.3" y="821" width="46.6" height="15.0" fill="rgb(230,146,17)" rx="2" ry="2" /> ><text x="67.34" y="831.5" >fill..</text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="724.2" y="645" width="7.8" height="15.0" fill="rgb(214,203,24)" rx="2" ry="2" /> ><text x="727.21" y="655.5" ></text> ></g> ><g > ><title>start_kernel (13 samples, 8.55%)</title><rect x="941.6" y="965" width="100.9" height="15.0" fill="rgb(243,206,23)" rx="2" ry="2" /> ><text x="944.58" y="975.5" >start_kernel</text> ></g> ><g > ><title>tick_nohz_idle_exit (2 samples, 1.32%)</title><rect x="1135.7" y="917" width="15.5" height="15.0" fill="rgb(253,84,12)" rx="2" ry="2" /> ><text x="1138.66" y="927.5" ></text> ></g> ><g > ><title>update_blocked_averages (1 samples, 0.66%)</title><rect x="1003.7" y="853" width="7.7" height="15.0" fill="rgb(250,31,21)" rx="2" ry="2" /> ><text x="1006.68" y="863.5" ></text> ></g> ><g > ><title>hid_input_report (2 samples, 1.32%)</title><rect x="980.4" y="613" width="15.5" height="15.0" fill="rgb(251,134,0)" rx="2" ry="2" /> ><text x="983.39" y="623.5" ></text> ></g> ><g > ><title>__set_cpus_allowed_ptr_locked (1 samples, 0.66%)</title><rect x="739.7" y="757" width="7.8" height="15.0" fill="rgb(229,42,25)" rx="2" ry="2" /> ><text x="742.74" y="767.5" ></text> ></g> ><g > ><title>sock_write_iter (2 samples, 1.32%)</title><rect x="444.7" y="453" width="15.6" height="15.0" fill="rgb(224,47,35)" rx="2" ry="2" /> ><text x="447.74" y="463.5" ></text> ></g> ><g > ><title>do_mem_abort (1 samples, 0.66%)</title><rect x="910.5" y="597" width="7.8" height="15.0" fill="rgb(236,49,30)" rx="2" ry="2" /> ><text x="913.53" y="607.5" ></text> ></g> ><g > ><title>__arm64_sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="629" width="7.7" height="15.0" fill="rgb(226,227,31)" rx="2" ry="2" /> ><text x="587.47" y="639.5" ></text> ></g> ><g > ><title>wait_for_reply (2 samples, 1.32%)</title><rect x="716.4" y="709" width="15.6" height="15.0" fill="rgb(248,27,17)" rx="2" ry="2" /> ><text x="719.45" y="719.5" ></text> ></g> ><g > ><title>__fget_light (1 samples, 0.66%)</title><rect x="405.9" y="453" width="7.8" height="15.0" fill="rgb(224,100,46)" rx="2" ry="2" /> ><text x="408.92" y="463.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="134.2" y="773" width="7.8" height="15.0" fill="rgb(213,93,17)" rx="2" ry="2" /> ><text x="137.21" y="783.5" ></text> ></g> ><g > ><title>pagecache_get_page (1 samples, 0.66%)</title><rect x="902.8" y="613" width="7.7" height="15.0" fill="rgb(213,126,9)" rx="2" ry="2" /> ><text x="905.76" y="623.5" ></text> ></g> ><g > ><title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="118.7" y="741" width="7.7" height="15.0" fill="rgb(254,81,31)" rx="2" ry="2" /> ><text x="121.68" y="751.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="584.5" y="725" width="7.7" height="15.0" fill="rgb(240,21,28)" rx="2" ry="2" /> ><text x="587.47" y="735.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="219.6" y="693" width="7.8" height="15.0" fill="rgb(206,40,51)" rx="2" ry="2" /> ><text x="222.61" y="703.5" ></text> ></g> ><g > ><title>do_iter_write (3 samples, 1.97%)</title><rect x="382.6" y="469" width="23.3" height="15.0" fill="rgb(246,209,8)" rx="2" ry="2" /> ><text x="385.63" y="479.5" >d..</text> ></g> ><g > ><title>consume_skb (1 samples, 0.66%)</title><rect x="475.8" y="661" width="7.8" height="15.0" fill="rgb(242,192,11)" rx="2" ry="2" /> ><text x="478.79" y="671.5" ></text> ></g> ><g > ><title>__schedule (1 samples, 0.66%)</title><rect x="134.2" y="661" width="7.8" height="15.0" fill="rgb(209,179,7)" rx="2" ry="2" /> ><text x="137.21" y="671.5" ></text> ></g> ><g > ><title>__libc_start_main (36 samples, 23.68%)</title><rect x="235.1" y="965" width="279.5" height="15.0" fill="rgb(215,2,7)" rx="2" ry="2" /> ><text x="238.13" y="975.5" >__libc_start_main</text> ></g> ><g > ><title>QCommonStyle::subControlRect (1 samples, 0.66%)</title><rect x="669.9" y="597" width="7.7" height="15.0" fill="rgb(213,193,9)" rx="2" ry="2" /> ><text x="672.87" y="607.5" ></text> ></g> ><g > ><title>vc4_plane_atomic_update (1 samples, 0.66%)</title><rect x="468.0" y="453" width="7.8" height="15.0" fill="rgb(243,28,5)" rx="2" ry="2" /> ><text x="471.03" y="463.5" ></text> ></g> ><g > ><title>systemd-journal (2 samples, 1.32%)</title><rect x="1151.2" y="997" width="15.5" height="15.0" fill="rgb(246,167,16)" rx="2" ry="2" /> ><text x="1154.18" y="1007.5" ></text> ></g> ><g > ><title>arch_local_irq_disable (1 samples, 0.66%)</title><rect x="506.8" y="677" width="7.8" height="15.0" fill="rgb(210,67,29)" rx="2" ry="2" /> ><text x="509.84" y="687.5" ></text> ></g> ><g > ><title>[libinput.so.10.13.0] (3 samples, 1.97%)</title><rect x="41.1" y="869" width="23.2" height="15.0" fill="rgb(227,81,10)" rx="2" ry="2" /> ><text x="44.05" y="879.5" >[..</text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="1182.2" y="821" width="7.8" height="15.0" fill="rgb(247,70,10)" rx="2" ry="2" /> ><text x="1185.24" y="831.5" ></text> ></g> ><g > ><title>DeliverDeviceEvents (2 samples, 1.32%)</title><rect x="305.0" y="837" width="15.5" height="15.0" fill="rgb(251,198,33)" rx="2" ry="2" /> ><text x="308.00" y="847.5" ></text> ></g> ><g > ><title>__arm64_sys_ioctl (6 samples, 3.95%)</title><rect x="64.3" y="517" width="46.6" height="15.0" fill="rgb(212,79,7)" rx="2" ry="2" /> ><text x="67.34" y="527.5" >__ar..</text> ></g> ><g > ><title>vc4_plane_atomic_update (4 samples, 2.63%)</title><rect x="72.1" y="309" width="31.1" height="15.0" fill="rgb(229,105,22)" rx="2" ry="2" /> ><text x="75.11" y="319.5" >vc..</text> ></g> ><g > ><title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="646.6" y="613" width="7.7" height="15.0" fill="rgb(208,190,26)" rx="2" ry="2" /> ><text x="649.58" y="623.5" ></text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (2 samples, 1.32%)</title><rect x="677.6" y="757" width="15.6" height="15.0" fill="rgb(232,199,35)" rx="2" ry="2" /> ><text x="680.63" y="767.5" ></text> ></g> ><g > ><title>[libfm-qt.so.10.0.0] (1 samples, 0.66%)</title><rect x="700.9" y="549" width="7.8" height="15.0" fill="rgb(229,52,52)" rx="2" ry="2" /> ><text x="703.92" y="559.5" ></text> ></g> ><g > ><title>texsubimage_err (4 samples, 2.63%)</title><rect x="250.7" y="805" width="31.0" height="15.0" fill="rgb(242,211,20)" rx="2" ry="2" /> ><text x="253.66" y="815.5" >te..</text> ></g> ><g > ><title>el0t_64_sync (5 samples, 3.29%)</title><rect x="879.5" y="853" width="38.8" height="15.0" fill="rgb(206,154,30)" rx="2" ry="2" /> ><text x="882.47" y="863.5" >el0..</text> ></g> ><g > ><title>schedule (1 samples, 0.66%)</title><rect x="95.4" y="229" width="7.8" height="15.0" fill="rgb(235,201,53)" rx="2" ry="2" /> ><text x="98.39" y="239.5" ></text> ></g> ><g > ><title>QFrame::event (1 samples, 0.66%)</title><rect x="638.8" y="581" width="7.8" height="15.0" fill="rgb(224,116,6)" rx="2" ry="2" /> ><text x="641.82" y="591.5" ></text> ></g> ><g > ><title>gic_handle_irq (1 samples, 0.66%)</title><rect x="452.5" y="261" width="7.8" height="15.0" fill="rgb(213,86,7)" rx="2" ry="2" /> ><text x="455.50" y="271.5" ></text> ></g> ><g > ><title>thread_start (12 samples, 7.89%)</title><rect x="142.0" y="981" width="93.1" height="15.0" fill="rgb(250,207,43)" rx="2" ry="2" /> ><text x="144.97" y="991.5" >thread_start</text> ></g> ><g > ><title>QCoreApplicationPrivate::sendPostedEvents (9 samples, 5.92%)</title><rect x="600.0" y="805" width="69.9" height="15.0" fill="rgb(227,52,26)" rx="2" ry="2" /> ><text x="603.00" y="815.5" >QCoreAp..</text> ></g> ><g > ><title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="724.2" y="453" width="7.8" height="15.0" fill="rgb(242,132,15)" rx="2" ry="2" /> ><text x="727.21" y="463.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="475.8" y="821" width="7.8" height="15.0" fill="rgb(254,176,45)" rx="2" ry="2" /> ><text x="478.79" y="831.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="1166.7" y="709" width="7.8" height="15.0" fill="rgb(235,24,24)" rx="2" ry="2" /> ><text x="1169.71" y="719.5" ></text> ></g> ><g > ><title>drm_ioctl (2 samples, 1.32%)</title><rect x="460.3" y="645" width="15.5" height="15.0" fill="rgb(205,82,9)" rx="2" ry="2" /> ><text x="463.26" y="655.5" ></text> ></g> ><g > ><title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="87.6" y="117" width="7.8" height="15.0" fill="rgb(215,54,53)" rx="2" ry="2" /> ><text x="90.63" y="127.5" ></text> ></g> ><g > ><title>el0t_64_sync (3 samples, 1.97%)</title><rect x="491.3" y="869" width="23.3" height="15.0" fill="rgb(247,46,15)" rx="2" ry="2" /> ><text x="494.32" y="879.5" >e..</text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="1182.2" y="853" width="7.8" height="15.0" fill="rgb(246,21,3)" rx="2" ry="2" /> ><text x="1185.24" y="863.5" ></text> ></g> ><g > ><title>QEventLoop::exec (1 samples, 0.66%)</title><rect x="918.3" y="917" width="7.8" height="15.0" fill="rgb(214,105,54)" rx="2" ry="2" /> ><text x="921.29" y="927.5" ></text> ></g> ><g > ><title>iov_iter_fault_in_readable (1 samples, 0.66%)</title><rect x="910.5" y="661" width="7.8" height="15.0" fill="rgb(210,77,21)" rx="2" ry="2" /> ><text x="913.53" y="671.5" ></text> ></g> ><g > ><title>drm_ioctl_kernel (1 samples, 0.66%)</title><rect x="289.5" y="437" width="7.7" height="15.0" fill="rgb(247,57,11)" rx="2" ry="2" /> ><text x="292.47" y="447.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit_modeset_disables (1 samples, 0.66%)</title><rect x="64.3" y="325" width="7.8" height="15.0" fill="rgb(234,122,29)" rx="2" ry="2" /> ><text x="67.34" y="335.5" ></text> ></g> ><g > ><title>irq_exit (1 samples, 0.66%)</title><rect x="219.6" y="565" width="7.8" height="15.0" fill="rgb(218,210,10)" rx="2" ry="2" /> ><text x="222.61" y="575.5" ></text> ></g> ><g > ><title>in_lock_functions (1 samples, 0.66%)</title><rect x="910.5" y="485" width="7.8" height="15.0" fill="rgb(217,119,53)" rx="2" ry="2" /> ><text x="913.53" y="495.5" ></text> ></g> ><g > ><title>schedule (1 samples, 0.66%)</title><rect x="568.9" y="933" width="7.8" height="15.0" fill="rgb(239,7,47)" rx="2" ry="2" /> ><text x="571.95" y="943.5" ></text> ></g> ><g > ><title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="685.4" y="693" width="7.8" height="15.0" fill="rgb(253,113,9)" rx="2" ry="2" /> ><text x="688.39" y="703.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="367.1" y="165" width="7.8" height="15.0" fill="rgb(225,205,11)" rx="2" ry="2" /> ><text x="370.11" y="175.5" ></text> ></g> ><g > ><title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="918.3" y="821" width="7.8" height="15.0" fill="rgb(247,213,44)" rx="2" ry="2" /> ><text x="921.29" y="831.5" ></text> ></g> ><g > ><title>drm_gem_shmem_get_pages_sgt (1 samples, 0.66%)</title><rect x="289.5" y="389" width="7.7" height="15.0" fill="rgb(239,107,54)" rx="2" ry="2" /> ><text x="292.47" y="399.5" ></text> ></g> ><g > ><title>__schedule (1 samples, 0.66%)</title><rect x="724.2" y="469" width="7.8" height="15.0" fill="rgb(210,197,51)" rx="2" ry="2" /> ><text x="727.21" y="479.5" ></text> ></g> ><g > ><title>__libc_start_main (2 samples, 1.32%)</title><rect x="1151.2" y="965" width="15.5" height="15.0" fill="rgb(207,172,21)" rx="2" ry="2" /> ><text x="1154.18" y="975.5" ></text> ></g> ><g > ><title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="918.3" y="693" width="7.8" height="15.0" fill="rgb(248,22,42)" rx="2" ry="2" /> ><text x="921.29" y="703.5" ></text> ></g> ><g > ><title>el0t_64_sync (2 samples, 1.32%)</title><rect x="460.3" y="757" width="15.5" height="15.0" fill="rgb(238,5,5)" rx="2" ry="2" /> ><text x="463.26" y="767.5" ></text> ></g> ><g > ><title>xf86_crtc_set_cursor_position (1 samples, 0.66%)</title><rect x="235.1" y="693" width="7.8" height="15.0" fill="rgb(253,157,3)" rx="2" ry="2" /> ><text x="238.13" y="703.5" ></text> ></g> ><g > ><title>QPainter::fillRect (2 samples, 1.32%)</title><rect x="654.3" y="613" width="15.6" height="15.0" fill="rgb(231,8,6)" rx="2" ry="2" /> ><text x="657.34" y="623.5" ></text> ></g> ><g > ><title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="242.9" y="581" width="7.8" height="15.0" fill="rgb(218,215,9)" rx="2" ry="2" /> ><text x="245.89" y="591.5" ></text> ></g> ><g > ><title>CoreEnterLeaveEvent (1 samples, 0.66%)</title><rect x="405.9" y="757" width="7.8" height="15.0" fill="rgb(242,18,16)" rx="2" ry="2" /> ><text x="408.92" y="767.5" ></text> ></g> ><g > ><title>arch_cpu_idle (8 samples, 5.26%)</title><rect x="941.6" y="869" width="62.1" height="15.0" fill="rgb(233,175,33)" rx="2" ry="2" /> ><text x="944.58" y="879.5" >arch_c..</text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="980.4" y="533" width="7.8" height="15.0" fill="rgb(241,133,14)" rx="2" ry="2" /> ><text x="983.39" y="543.5" ></text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="645" width="7.7" height="15.0" fill="rgb(240,190,43)" rx="2" ry="2" /> ><text x="672.87" y="655.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="437.0" y="613" width="23.3" height="15.0" fill="rgb(249,156,14)" rx="2" ry="2" /> ><text x="439.97" y="623.5" >e..</text> ></g> ><g > ><title>xf86SetCursor (8 samples, 5.26%)</title><rect x="320.5" y="693" width="62.1" height="15.0" fill="rgb(254,64,29)" rx="2" ry="2" /> ><text x="323.53" y="703.5" >xf86Se..</text> ></g> ><g > ><title>QRasterPaintEngine::fillRect (4 samples, 2.63%)</title><rect x="607.8" y="661" width="31.0" height="15.0" fill="rgb(213,135,40)" rx="2" ry="2" /> ><text x="610.76" y="671.5" >QR..</text> ></g> ><g > ><title>QAbstractItemView::mouseMoveEvent (1 samples, 0.66%)</title><rect x="700.9" y="565" width="7.8" height="15.0" fill="rgb(240,228,16)" rx="2" ry="2" /> ><text x="703.92" y="575.5" ></text> ></g> ><g > ><title>util_copy_box (4 samples, 2.63%)</title><rect x="250.7" y="741" width="31.0" height="15.0" fill="rgb(253,177,13)" rx="2" ry="2" /> ><text x="253.66" y="751.5" >ut..</text> ></g> ><g > ><title>g_main_context_iterate (1 samples, 0.66%)</title><rect x="918.3" y="869" width="7.8" height="15.0" fill="rgb(226,95,39)" rx="2" ry="2" /> ><text x="921.29" y="879.5" ></text> ></g> ><g > ><title>do_writev (2 samples, 1.32%)</title><rect x="444.7" y="517" width="15.6" height="15.0" fill="rgb(251,194,15)" rx="2" ry="2" /> ><text x="447.74" y="527.5" ></text> ></g> ><g > ><title>vc4_atomic_commit_tail (1 samples, 0.66%)</title><rect x="351.6" y="245" width="7.7" height="15.0" fill="rgb(213,189,4)" rx="2" ry="2" /> ><text x="354.58" y="255.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="297.2" y="805" width="7.8" height="15.0" fill="rgb(222,228,51)" rx="2" ry="2" /> ><text x="300.24" y="815.5" ></text> ></g> ><g > ><title>positionSprite (6 samples, 3.95%)</title><rect x="64.3" y="789" width="46.6" height="15.0" fill="rgb(238,66,4)" rx="2" ry="2" /> ><text x="67.34" y="799.5" >posi..</text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="1151.2" y="821" width="7.7" height="15.0" fill="rgb(213,167,26)" rx="2" ry="2" /> ><text x="1154.18" y="831.5" ></text> ></g> ><g > ><title>ext4_buffered_write_iter (5 samples, 3.29%)</title><rect x="879.5" y="677" width="38.8" height="15.0" fill="rgb(218,137,13)" rx="2" ry="2" /> ><text x="882.47" y="687.5" >ext..</text> ></g> ><g > ><title>XtAppNextEvent (3 samples, 1.97%)</title><rect x="1166.7" y="917" width="23.3" height="15.0" fill="rgb(241,1,29)" rx="2" ry="2" /> ><text x="1169.71" y="927.5" >X..</text> ></g> ><g > ><title>schedule_hrtimeout_range (1 samples, 0.66%)</title><rect x="724.2" y="517" width="7.8" height="15.0" fill="rgb(236,77,37)" rx="2" ry="2" /> ><text x="727.21" y="527.5" ></text> ></g> ><g > ><title>__arm64_sys_writev (3 samples, 1.97%)</title><rect x="382.6" y="517" width="23.3" height="15.0" fill="rgb(241,85,51)" rx="2" ry="2" /> ><text x="385.63" y="527.5" >_..</text> ></g> ><g > ><title>[pcmanfm-qt] (17 samples, 11.18%)</title><rect x="600.0" y="949" width="132.0" height="15.0" fill="rgb(217,48,24)" rx="2" ry="2" /> ><text x="603.00" y="959.5" >[pcmanfm-qt]</text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="739.7" y="837" width="7.8" height="15.0" fill="rgb(208,219,12)" rx="2" ry="2" /> ><text x="742.74" y="847.5" ></text> ></g> ><g > ><title>[libQt5Core.so.5.15.2] (9 samples, 5.92%)</title><rect x="600.0" y="821" width="69.9" height="15.0" fill="rgb(248,67,5)" rx="2" ry="2" /> ><text x="603.00" y="831.5" >[libQt5..</text> ></g> ><g > ><title>sock_sendmsg (1 samples, 0.66%)</title><rect x="918.3" y="389" width="7.8" height="15.0" fill="rgb(208,114,0)" rx="2" ry="2" /> ><text x="921.29" y="399.5" ></text> ></g> ><g > ><title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.66%)</title><rect x="638.8" y="677" width="7.8" height="15.0" fill="rgb(253,3,53)" rx="2" ry="2" /> ><text x="641.82" y="687.5" ></text> ></g> ><g > ><title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="452.5" y="389" width="7.8" height="15.0" fill="rgb(232,176,49)" rx="2" ry="2" /> ><text x="455.50" y="399.5" ></text> ></g> ><g > ><title>xf86libinput_handle_event (6 samples, 3.95%)</title><rect x="64.3" y="885" width="46.6" height="15.0" fill="rgb(224,145,24)" rx="2" ry="2" /> ><text x="67.34" y="895.5" >xf86..</text> ></g> ><g > ><title>__GI_epoll_pwait (3 samples, 1.97%)</title><rect x="491.3" y="885" width="23.3" height="15.0" fill="rgb(215,117,14)" rx="2" ry="2" /> ><text x="494.32" y="895.5" >_..</text> ></g> ><g > ><title>g_thread_proxy (1 samples, 0.66%)</title><rect x="522.4" y="949" width="7.7" height="15.0" fill="rgb(242,130,34)" rx="2" ry="2" /> ><text x="525.37" y="959.5" ></text> ></g> ><g > ><title>glamor_copy_cpu_fbo (2 samples, 1.32%)</title><rect x="281.7" y="773" width="15.5" height="15.0" fill="rgb(220,22,45)" rx="2" ry="2" /> ><text x="284.71" y="783.5" ></text> ></g> ><g > ><title>__import_iovec (1 samples, 0.66%)</title><rect x="1166.7" y="613" width="7.8" height="15.0" fill="rgb(213,59,49)" rx="2" ry="2" /> ><text x="1169.71" y="623.5" ></text> ></g> ><g > ><title>__audit_syscall_entry (1 samples, 0.66%)</title><rect x="522.4" y="613" width="7.7" height="15.0" fill="rgb(241,121,39)" rx="2" ry="2" /> ><text x="525.37" y="623.5" ></text> ></g> ><g > ><title>el1h_64_irq (1 samples, 0.66%)</title><rect x="219.6" y="677" width="7.8" height="15.0" fill="rgb(252,208,31)" rx="2" ry="2" /> ><text x="222.61" y="687.5" ></text> ></g> ><g > ><title>g_main_dispatch (1 samples, 0.66%)</title><rect x="522.4" y="869" width="7.7" height="15.0" fill="rgb(210,14,29)" rx="2" ry="2" /> ><text x="525.37" y="879.5" ></text> ></g> ><g > ><title>__schedule (1 samples, 0.66%)</title><rect x="227.4" y="677" width="7.7" height="15.0" fill="rgb(205,69,33)" rx="2" ry="2" /> ><text x="230.37" y="687.5" ></text> ></g> ><g > ><title>drm_atomic_state_default_clear (1 samples, 0.66%)</title><rect x="460.3" y="517" width="7.7" height="15.0" fill="rgb(249,96,32)" rx="2" ry="2" /> ><text x="463.26" y="527.5" ></text> ></g> ><g > ><title>xcb_wait_for_event (10 samples, 6.58%)</title><rect x="157.5" y="917" width="77.6" height="15.0" fill="rgb(220,14,42)" rx="2" ry="2" /> ><text x="160.50" y="927.5" >xcb_wait..</text> ></g> ><g > ><title>QEventLoop::exec (17 samples, 11.18%)</title><rect x="600.0" y="917" width="132.0" height="15.0" fill="rgb(248,16,53)" rx="2" ry="2" /> ><text x="603.00" y="927.5" >QEventLoop::exec</text> ></g> ><g > ><title>v3d_bo_alloc (1 samples, 0.66%)</title><rect x="289.5" y="629" width="7.7" height="15.0" fill="rgb(237,52,28)" rx="2" ry="2" /> ><text x="292.47" y="639.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="576.7" y="853" width="7.8" height="15.0" fill="rgb(241,13,17)" rx="2" ry="2" /> ><text x="579.71" y="863.5" ></text> ></g> ><g > ><title>clk_core_set_rate_nolock (2 samples, 1.32%)</title><rect x="926.1" y="837" width="15.5" height="15.0" fill="rgb(213,5,42)" rx="2" ry="2" /> ><text x="929.05" y="847.5" ></text> ></g> ><g > ><title>__do_softirq (5 samples, 3.29%)</title><rect x="964.9" y="709" width="38.8" height="15.0" fill="rgb(234,31,30)" rx="2" ry="2" /> ><text x="967.87" y="719.5" >__d..</text> ></g> ><g > ><title>__ioctl (17 samples, 11.18%)</title><rect x="747.5" y="917" width="132.0" height="15.0" fill="rgb(234,31,18)" rx="2" ry="2" /> ><text x="750.50" y="927.5" >__ioctl</text> ></g> ><g > ><title>_xcb_conn_wait (2 samples, 1.32%)</title><rect x="716.4" y="693" width="15.6" height="15.0" fill="rgb(228,105,18)" rx="2" ry="2" /> ><text x="719.45" y="703.5" ></text> ></g> ><g > ><title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="219.6" y="549" width="7.8" height="15.0" fill="rgb(207,204,15)" rx="2" ry="2" /> ><text x="222.61" y="559.5" ></text> ></g> ><g > ><title>sock_alloc_send_pskb (1 samples, 0.66%)</title><rect x="305.0" y="405" width="7.8" height="15.0" fill="rgb(239,43,43)" rx="2" ry="2" /> ><text x="308.00" y="415.5" ></text> ></g> ><g > ><title>[libXt.so.6.0.0] (1 samples, 0.66%)</title><rect x="1174.5" y="901" width="7.7" height="15.0" fill="rgb(254,91,35)" rx="2" ry="2" /> ><text x="1177.47" y="911.5" ></text> ></g> ><g > ><title>QWidgetPrivate::paintSiblingsRecursive (2 samples, 1.32%)</title><rect x="638.8" y="709" width="15.5" height="15.0" fill="rgb(250,163,25)" rx="2" ry="2" /> ><text x="641.82" y="719.5" ></text> ></g> ><g > ><title>__libc_recvmsg (2 samples, 1.32%)</title><rect x="196.3" y="853" width="15.5" height="15.0" fill="rgb(236,208,15)" rx="2" ry="2" /> ><text x="199.32" y="863.5" ></text> ></g> ><g > ><title>__ioctl (2 samples, 1.32%)</title><rect x="343.8" y="533" width="15.5" height="15.0" fill="rgb(245,51,43)" rx="2" ry="2" /> ><text x="346.82" y="543.5" ></text> ></g> ><g > ><title>u_current_get (1 samples, 0.66%)</title><rect x="514.6" y="917" width="7.8" height="15.0" fill="rgb(212,177,36)" rx="2" ry="2" /> ><text x="517.61" y="927.5" ></text> ></g> ><g > ><title>xf86_crtc_set_cursor_position (6 samples, 3.95%)</title><rect x="64.3" y="693" width="46.6" height="15.0" fill="rgb(215,157,9)" rx="2" ry="2" /> ><text x="67.34" y="703.5" >xf86..</text> ></g> ><g > ><title>unix_destruct_scm (1 samples, 0.66%)</title><rect x="475.8" y="645" width="7.8" height="15.0" fill="rgb(252,137,25)" rx="2" ry="2" /> ><text x="478.79" y="655.5" ></text> ></g> ><g > ><title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="700.9" y="133" width="7.8" height="15.0" fill="rgb(225,63,30)" rx="2" ry="2" /> ><text x="703.92" y="143.5" ></text> ></g> ><g > ><title>drm_atomic_helper_update_plane (2 samples, 1.32%)</title><rect x="343.8" y="309" width="15.5" height="15.0" fill="rgb(221,86,24)" rx="2" ry="2" /> ><text x="346.82" y="319.5" ></text> ></g> ><g > ><title>drmIoctl (1 samples, 0.66%)</title><rect x="235.1" y="645" width="7.8" height="15.0" fill="rgb(212,222,5)" rx="2" ry="2" /> ><text x="238.13" y="655.5" ></text> ></g> ><g > ><title>el0_svc (2 samples, 1.32%)</title><rect x="343.8" y="485" width="15.5" height="15.0" fill="rgb(238,82,36)" rx="2" ry="2" /> ><text x="346.82" y="495.5" ></text> ></g> ><g > ><title>do_page_fault (1 samples, 0.66%)</title><rect x="910.5" y="565" width="7.8" height="15.0" fill="rgb(251,173,22)" rx="2" ry="2" /> ><text x="913.53" y="575.5" ></text> ></g> ><g > ><title>return_address (1 samples, 0.66%)</title><rect x="537.9" y="885" width="7.8" height="15.0" fill="rgb(217,6,32)" rx="2" ry="2" /> ><text x="540.89" y="895.5" ></text> ></g> ><g > ><title>drmModeSetCursor2 (2 samples, 1.32%)</title><rect x="343.8" y="581" width="15.5" height="15.0" fill="rgb(238,86,5)" rx="2" ry="2" /> ><text x="346.82" y="591.5" ></text> ></g> ><g > ><title>_start (2 samples, 1.32%)</title><rect x="576.7" y="965" width="15.5" height="15.0" fill="rgb(237,180,22)" rx="2" ry="2" /> ><text x="579.71" y="975.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="110.9" y="837" width="23.3" height="15.0" fill="rgb(240,11,42)" rx="2" ry="2" /> ><text x="113.92" y="847.5" >e..</text> ></g> ><g > ><title>do_el0_svc (6 samples, 3.95%)</title><rect x="64.3" y="565" width="46.6" height="15.0" fill="rgb(211,80,4)" rx="2" ry="2" /> ><text x="67.34" y="575.5" >do_e..</text> ></g> ><g > ><title>QXcbWindow::handleEnterNotifyEvent (3 samples, 1.97%)</title><rect x="708.7" y="773" width="23.3" height="15.0" fill="rgb(233,25,18)" rx="2" ry="2" /> ><text x="711.68" y="783.5" >Q..</text> ></g> ><g > ><title>poll_for_response (1 samples, 0.66%)</title><rect x="1166.7" y="853" width="7.8" height="15.0" fill="rgb(249,78,53)" rx="2" ry="2" /> ><text x="1169.71" y="863.5" ></text> ></g> ><g > ><title>__ioctl (2 samples, 1.32%)</title><rect x="460.3" y="773" width="15.5" height="15.0" fill="rgb(218,205,4)" rx="2" ry="2" /> ><text x="463.26" y="783.5" ></text> ></g> ><g > ><title>poll_for_event (1 samples, 0.66%)</title><rect x="584.5" y="805" width="7.7" height="15.0" fill="rgb(245,82,5)" rx="2" ry="2" /> ><text x="587.47" y="815.5" ></text> ></g> ><g > ><title>xf86CursorSetCursor (8 samples, 5.26%)</title><rect x="320.5" y="709" width="62.1" height="15.0" fill="rgb(223,157,11)" rx="2" ry="2" /> ><text x="323.53" y="719.5" >xf86Cu..</text> ></g> ><g > ><title>finish_task_switch.isra.0 (6 samples, 3.95%)</title><rect x="1089.1" y="885" width="46.6" height="15.0" fill="rgb(244,177,41)" rx="2" ry="2" /> ><text x="1092.08" y="895.5" >fini..</text> ></g> ><g > ><title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="918.3" y="421" width="7.8" height="15.0" fill="rgb(237,122,20)" rx="2" ry="2" /> ><text x="921.29" y="431.5" ></text> ></g> ><g > ><title>thread_start (14 samples, 9.21%)</title><rect x="25.5" y="981" width="108.7" height="15.0" fill="rgb(245,181,21)" rx="2" ry="2" /> ><text x="28.53" y="991.5" >thread_start</text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="305.0" y="597" width="7.8" height="15.0" fill="rgb(236,41,34)" rx="2" ry="2" /> ><text x="308.00" y="607.5" ></text> ></g> ><g > ><title>generic_perform_write (4 samples, 2.63%)</title><rect x="879.5" y="661" width="31.0" height="15.0" fill="rgb(206,211,16)" rx="2" ry="2" /> ><text x="882.47" y="671.5" >ge..</text> ></g> ><g > ><title>dev_pm_opp_set_rate (2 samples, 1.32%)</title><rect x="926.1" y="885" width="15.5" height="15.0" fill="rgb(226,41,17)" rx="2" ry="2" /> ><text x="929.05" y="895.5" ></text> ></g> ><g > ><title>drm_atomic_commit (2 samples, 1.32%)</title><rect x="367.1" y="341" width="15.5" height="15.0" fill="rgb(226,124,46)" rx="2" ry="2" /> ><text x="370.11" y="351.5" ></text> ></g> ><g > ><title>ksys_write (5 samples, 3.29%)</title><rect x="879.5" y="741" width="38.8" height="15.0" fill="rgb(217,30,31)" rx="2" ry="2" /> ><text x="882.47" y="751.5" >ksy..</text> ></g> ><g > ><title>commit_tail (2 samples, 1.32%)</title><rect x="367.1" y="309" width="15.5" height="15.0" fill="rgb(214,206,45)" rx="2" ry="2" /> ><text x="370.11" y="319.5" ></text> ></g> ><g > ><title>__drm_crtc_commit_free (1 samples, 0.66%)</title><rect x="460.3" y="469" width="7.7" height="15.0" fill="rgb(248,177,5)" rx="2" ry="2" /> ><text x="463.26" y="479.5" ></text> ></g> ><g > ><title>vc4_atomic_commit_tail (2 samples, 1.32%)</title><rect x="367.1" y="293" width="15.5" height="15.0" fill="rgb(221,1,2)" rx="2" ry="2" /> ><text x="370.11" y="303.5" ></text> ></g> ><g > ><title>QWaitCondition::wait (1 samples, 0.66%)</title><rect x="134.2" y="917" width="7.8" height="15.0" fill="rgb(235,223,30)" rx="2" ry="2" /> ><text x="137.21" y="927.5" ></text> ></g> ><g > ><title>[systemd-journald] (2 samples, 1.32%)</title><rect x="1151.2" y="949" width="15.5" height="15.0" fill="rgb(213,226,4)" rx="2" ry="2" /> ><text x="1154.18" y="959.5" ></text> ></g> ><g > ><title>__GI___poll (2 samples, 1.32%)</title><rect x="219.6" y="869" width="15.5" height="15.0" fill="rgb(226,223,29)" rx="2" ry="2" /> ><text x="222.61" y="879.5" ></text> ></g> ><g > ><title>_mesa_get_format_info (1 samples, 0.66%)</title><rect x="281.7" y="661" width="7.8" height="15.0" fill="rgb(211,17,27)" rx="2" ry="2" /> ><text x="284.71" y="671.5" ></text> ></g> ><g > ><title>schedule_idle (2 samples, 1.32%)</title><rect x="1011.4" y="885" width="15.6" height="15.0" fill="rgb(238,45,38)" rx="2" ry="2" /> ><text x="1014.45" y="895.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="405.9" y="533" width="7.8" height="15.0" fill="rgb(247,110,26)" rx="2" ry="2" /> ><text x="408.92" y="543.5" ></text> ></g> ><g > ><title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.66%)</title><rect x="646.6" y="693" width="7.7" height="15.0" fill="rgb(245,121,33)" rx="2" ry="2" /> ><text x="649.58" y="703.5" ></text> ></g> ><g > ><title>__slab_alloc.constprop.0 (1 samples, 0.66%)</title><rect x="305.0" y="325" width="7.8" height="15.0" fill="rgb(249,93,6)" rx="2" ry="2" /> ><text x="308.00" y="335.5" ></text> ></g> ><g > ><title>hiddev_hid_event (1 samples, 0.66%)</title><rect x="980.4" y="565" width="7.8" height="15.0" fill="rgb(236,52,20)" rx="2" ry="2" /> ><text x="983.39" y="575.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="724.2" y="597" width="7.8" height="15.0" fill="rgb(236,131,14)" rx="2" ry="2" /> ><text x="727.21" y="607.5" ></text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="305.0" y="661" width="7.8" height="15.0" fill="rgb(223,63,28)" rx="2" ry="2" /> ><text x="308.00" y="671.5" ></text> ></g> ><g > ><title>QListView::mouseMoveEvent (1 samples, 0.66%)</title><rect x="700.9" y="581" width="7.8" height="15.0" fill="rgb(237,178,22)" rx="2" ry="2" /> ><text x="703.92" y="591.5" ></text> ></g> ><g > ><title>pcmanfm-qt (18 samples, 11.84%)</title><rect x="592.2" y="997" width="139.8" height="15.0" fill="rgb(211,39,21)" rx="2" ry="2" /> ><text x="595.24" y="1007.5" >pcmanfm-qt</text> ></g> ><g > ><title>QBackingStore::beginPaint (1 samples, 0.66%)</title><rect x="600.0" y="725" width="7.8" height="15.0" fill="rgb(228,141,48)" rx="2" ry="2" /> ><text x="603.00" y="735.5" ></text> ></g> ><g > ><title>ext4_da_get_block_prep (1 samples, 0.66%)</title><rect x="895.0" y="613" width="7.8" height="15.0" fill="rgb(233,29,16)" rx="2" ry="2" /> ><text x="898.00" y="623.5" ></text> ></g> ><g > ><title>vfs_writev (3 samples, 1.97%)</title><rect x="382.6" y="485" width="23.3" height="15.0" fill="rgb(253,176,45)" rx="2" ry="2" /> ><text x="385.63" y="495.5" >v..</text> ></g> ><g > ><title>pipe_write (1 samples, 0.66%)</title><rect x="33.3" y="725" width="7.8" height="15.0" fill="rgb(231,17,16)" rx="2" ry="2" /> ><text x="36.29" y="735.5" ></text> ></g> ><g > ><title>drm_mode_cursor_universal (2 samples, 1.32%)</title><rect x="367.1" y="389" width="15.5" height="15.0" fill="rgb(218,204,41)" rx="2" ry="2" /> ><text x="370.11" y="399.5" ></text> ></g> ><g > ><title>_xcb_out_send (1 samples, 0.66%)</title><rect x="918.3" y="661" width="7.8" height="15.0" fill="rgb(219,87,29)" rx="2" ry="2" /> ><text x="921.29" y="671.5" ></text> ></g> ><g > ><title>el0_svc (3 samples, 1.97%)</title><rect x="110.9" y="869" width="23.3" height="15.0" fill="rgb(211,11,33)" rx="2" ry="2" /> ><text x="113.92" y="879.5" >e..</text> ></g> ><g > ><title>drm_mode_cursor_ioctl (2 samples, 1.32%)</title><rect x="367.1" y="421" width="15.5" height="15.0" fill="rgb(207,153,34)" rx="2" ry="2" /> ><text x="370.11" y="431.5" ></text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="242.9" y="853" width="7.8" height="15.0" fill="rgb(240,162,40)" rx="2" ry="2" /> ><text x="245.89" y="863.5" ></text> ></g> ><g > ><title>DeliverEventsToWindow (3 samples, 1.97%)</title><rect x="382.6" y="757" width="23.3" height="15.0" fill="rgb(220,26,25)" rx="2" ry="2" /> ><text x="385.63" y="767.5" >D..</text> ></g> ><g > ><title>xf86_driver_load_cursor_argb (2 samples, 1.32%)</title><rect x="343.8" y="613" width="15.5" height="15.0" fill="rgb(231,216,25)" rx="2" ry="2" /> ><text x="346.82" y="623.5" ></text> ></g> ><g > ><title>drm_mode_cursor_common (1 samples, 0.66%)</title><rect x="235.1" y="453" width="7.8" height="15.0" fill="rgb(233,69,4)" rx="2" ry="2" /> ><text x="238.13" y="463.5" ></text> ></g> ><g > ><title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="452.5" y="421" width="7.8" height="15.0" fill="rgb(248,141,27)" rx="2" ry="2" /> ><text x="455.50" y="431.5" ></text> ></g> ><g > ><title>smp_call_function_single (16 samples, 10.53%)</title><rect x="755.3" y="709" width="124.2" height="15.0" fill="rgb(237,110,0)" rx="2" ry="2" /> ><text x="758.26" y="719.5" >smp_call_functi..</text> ></g> ><g > ><title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="452.5" y="213" width="7.8" height="15.0" fill="rgb(253,7,10)" rx="2" ry="2" /> ><text x="455.50" y="223.5" ></text> ></g> ><g > ><title>el1_interrupt (1 samples, 0.66%)</title><rect x="1073.6" y="853" width="7.7" height="15.0" fill="rgb(211,79,47)" rx="2" ry="2" /> ><text x="1076.55" y="863.5" ></text> ></g> ><g > ><title>invoke_syscall (3 samples, 1.97%)</title><rect x="110.9" y="821" width="23.3" height="15.0" fill="rgb(223,180,24)" rx="2" ry="2" /> ><text x="113.92" y="831.5" >i..</text> ></g> ><g > ><title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="351.6" y="149" width="7.7" height="15.0" fill="rgb(221,171,9)" rx="2" ry="2" /> ><text x="354.58" y="159.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="576.7" y="789" width="7.8" height="15.0" fill="rgb(207,146,54)" rx="2" ry="2" /> ><text x="579.71" y="799.5" ></text> ></g> ><g > ><title>do_idle (14 samples, 9.21%)</title><rect x="1042.5" y="933" width="108.7" height="15.0" fill="rgb(206,106,53)" rx="2" ry="2" /> ><text x="1045.50" y="943.5" >do_idle</text> ></g> ><g > ><title>vc4_plane_set_blank.isra.0 (4 samples, 2.63%)</title><rect x="72.1" y="293" width="31.1" height="15.0" fill="rgb(213,66,28)" rx="2" ry="2" /> ><text x="75.11" y="303.5" >vc..</text> ></g> ><g > ><title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="452.5" y="277" width="7.8" height="15.0" fill="rgb(222,70,50)" rx="2" ry="2" /> ><text x="455.50" y="287.5" ></text> ></g> ><g > ><title>QWaitCondition::wait (1 samples, 0.66%)</title><rect x="134.2" y="901" width="7.8" height="15.0" fill="rgb(220,137,51)" rx="2" ry="2" /> ><text x="137.21" y="911.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="491.3" y="805" width="23.3" height="15.0" fill="rgb(226,31,49)" rx="2" ry="2" /> ><text x="494.32" y="815.5" >e..</text> ></g> ><g > ><title>thread_start (1 samples, 0.66%)</title><rect x="134.2" y="981" width="7.8" height="15.0" fill="rgb(224,150,21)" rx="2" ry="2" /> ><text x="137.21" y="991.5" ></text> ></g> ><g > ><title>hid_process_event (1 samples, 0.66%)</title><rect x="980.4" y="581" width="7.8" height="15.0" fill="rgb(244,169,26)" rx="2" ry="2" /> ><text x="983.39" y="591.5" ></text> ></g> ><g > ><title>DeliverEvent (4 samples, 2.63%)</title><rect x="429.2" y="805" width="31.1" height="15.0" fill="rgb(229,170,10)" rx="2" ry="2" /> ><text x="432.21" y="815.5" >De..</text> ></g> ><g > ><title>TryClientEvents (1 samples, 0.66%)</title><rect x="405.9" y="693" width="7.8" height="15.0" fill="rgb(248,195,1)" rx="2" ry="2" /> ><text x="408.92" y="703.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="700.9" y="69" width="7.8" height="15.0" fill="rgb(234,64,22)" rx="2" ry="2" /> ><text x="703.92" y="79.5" ></text> ></g> ><g > ><title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="638.8" y="693" width="7.8" height="15.0" fill="rgb(242,124,47)" rx="2" ry="2" /> ><text x="641.82" y="703.5" ></text> ></g> ><g > ><title>QWidget::event (1 samples, 0.66%)</title><rect x="646.6" y="565" width="7.7" height="15.0" fill="rgb(210,84,36)" rx="2" ry="2" /> ><text x="649.58" y="575.5" ></text> ></g> ><g > ><title>glamor_upload_boxes (4 samples, 2.63%)</title><rect x="250.7" y="837" width="31.0" height="15.0" fill="rgb(223,189,49)" rx="2" ry="2" /> ><text x="253.66" y="847.5" >gl..</text> ></g> ><g > ><title>futex_wait (1 samples, 0.66%)</title><rect x="134.2" y="709" width="7.8" height="15.0" fill="rgb(250,66,31)" rx="2" ry="2" /> ><text x="137.21" y="719.5" ></text> ></g> ><g > ><title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="398.2" y="373" width="7.7" height="15.0" fill="rgb(219,37,35)" rx="2" ry="2" /> ><text x="401.16" y="383.5" ></text> ></g> ><g > ><title>unmap_mapping_pages (1 samples, 0.66%)</title><rect x="1151.2" y="629" width="7.7" height="15.0" fill="rgb(239,96,2)" rx="2" ry="2" /> ><text x="1154.18" y="639.5" ></text> ></g> ><g > ><title>QXcbConnection::sync (1 samples, 0.66%)</title><rect x="600.0" y="677" width="7.8" height="15.0" fill="rgb(248,217,32)" rx="2" ry="2" /> ><text x="603.00" y="687.5" ></text> ></g> ><g > ><title>perf (24 samples, 15.79%)</title><rect x="732.0" y="997" width="186.3" height="15.0" fill="rgb(246,114,7)" rx="2" ry="2" /> ><text x="734.97" y="1007.5" >perf</text> ></g> ><g > ><title>kthread (1 samples, 0.66%)</title><rect x="537.9" y="965" width="7.8" height="15.0" fill="rgb(244,97,42)" rx="2" ry="2" /> ><text x="540.89" y="975.5" ></text> ></g> ><g > ><title>do_sys_poll (1 samples, 0.66%)</title><rect x="724.2" y="533" width="7.8" height="15.0" fill="rgb(231,128,12)" rx="2" ry="2" /> ><text x="727.21" y="543.5" ></text> ></g> ><g > ><title>FlushClient (1 samples, 0.66%)</title><rect x="405.9" y="661" width="7.8" height="15.0" fill="rgb(239,11,27)" rx="2" ry="2" /> ><text x="408.92" y="671.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="995.9" y="565" width="7.8" height="15.0" fill="rgb(230,6,22)" rx="2" ry="2" /> ><text x="998.92" y="575.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="491.3" y="853" width="23.3" height="15.0" fill="rgb(236,105,54)" rx="2" ry="2" /> ><text x="494.32" y="863.5" >e..</text> ></g> ><g > ><title>el0t_64_sync (6 samples, 3.95%)</title><rect x="64.3" y="613" width="46.6" height="15.0" fill="rgb(211,218,24)" rx="2" ry="2" /> ><text x="67.34" y="623.5" >el0t..</text> ></g> ><g > ><title>_XSERVTransSocketWritev (3 samples, 1.97%)</title><rect x="382.6" y="661" width="23.3" height="15.0" fill="rgb(249,169,42)" rx="2" ry="2" /> ><text x="385.63" y="671.5" >_..</text> ></g> ><g > ><title>el1_interrupt (1 samples, 0.66%)</title><rect x="87.6" y="149" width="7.8" height="15.0" fill="rgb(210,128,33)" rx="2" ry="2" /> ><text x="90.63" y="159.5" ></text> ></g> ><g > ><title>el1_interrupt (1 samples, 0.66%)</title><rect x="452.5" y="309" width="7.8" height="15.0" fill="rgb(213,164,38)" rx="2" ry="2" /> ><text x="455.50" y="319.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="468.0" y="357" width="7.8" height="15.0" fill="rgb(208,89,1)" rx="2" ry="2" /> ><text x="471.03" y="367.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="305.0" y="613" width="7.8" height="15.0" fill="rgb(229,188,49)" rx="2" ry="2" /> ><text x="308.00" y="623.5" ></text> ></g> ><g > ><title>miPointerDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="757" width="62.1" height="15.0" fill="rgb(232,160,34)" rx="2" ry="2" /> ><text x="323.53" y="767.5" >miPoin..</text> ></g> ><g > ><title>ChangeToCursor (8 samples, 5.26%)</title><rect x="320.5" y="821" width="62.1" height="15.0" fill="rgb(227,29,38)" rx="2" ry="2" /> ><text x="323.53" y="831.5" >Change..</text> ></g> ><g > ><title>kthread_worker_fn (2 samples, 1.32%)</title><rect x="926.1" y="949" width="15.5" height="15.0" fill="rgb(253,118,41)" rx="2" ry="2" /> ><text x="929.05" y="959.5" ></text> ></g> ><g > ><title>xf86MoveCursor (6 samples, 3.95%)</title><rect x="64.3" y="741" width="46.6" height="15.0" fill="rgb(211,37,28)" rx="2" ry="2" /> ><text x="67.34" y="751.5" >xf86..</text> ></g> ><g > ><title>drm_atomic_helper_update_plane (6 samples, 3.95%)</title><rect x="64.3" y="405" width="46.6" height="15.0" fill="rgb(243,26,47)" rx="2" ry="2" /> ><text x="67.34" y="415.5" >drm_..</text> ></g> ><g > ><title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="700.9" y="85" width="7.8" height="15.0" fill="rgb(213,197,24)" rx="2" ry="2" /> ><text x="703.92" y="95.5" ></text> ></g> ><g > ><title>glamor_copy_area (2 samples, 1.32%)</title><rect x="281.7" y="869" width="15.5" height="15.0" fill="rgb(233,193,42)" rx="2" ry="2" /> ><text x="284.71" y="879.5" ></text> ></g> ><g > ><title>CoreEnterLeaveEvents (4 samples, 2.63%)</title><rect x="382.6" y="805" width="31.1" height="15.0" fill="rgb(233,40,22)" rx="2" ry="2" /> ><text x="385.63" y="815.5" >Co..</text> ></g> ><g > ><title>dix_main (36 samples, 23.68%)</title><rect x="235.1" y="949" width="279.5" height="15.0" fill="rgb(252,6,22)" rx="2" ry="2" /> ><text x="238.13" y="959.5" >dix_main</text> ></g> ><g > ><title>DRM_IOCTL (3 samples, 1.97%)</title><rect x="359.3" y="613" width="23.3" height="15.0" fill="rgb(254,153,51)" rx="2" ry="2" /> ><text x="362.34" y="623.5" >D..</text> ></g> ><g > ><title>drm_atomic_commit (5 samples, 3.29%)</title><rect x="64.3" y="389" width="38.9" height="15.0" fill="rgb(209,151,35)" rx="2" ry="2" /> ><text x="67.34" y="399.5" >drm..</text> ></g> ><g > ><title>QEventDispatcherGlib::processEvents (1 samples, 0.66%)</title><rect x="918.3" y="901" width="7.8" height="15.0" fill="rgb(233,29,26)" rx="2" ry="2" /> ><text x="921.29" y="911.5" ></text> ></g> ><g > ><title>sugov_work (2 samples, 1.32%)</title><rect x="926.1" y="933" width="15.5" height="15.0" fill="rgb(227,214,30)" rx="2" ry="2" /> ><text x="929.05" y="943.5" ></text> ></g> ><g > ><title>QCoreApplication::notifyInternal2 (2 samples, 1.32%)</title><rect x="693.2" y="773" width="15.5" height="15.0" fill="rgb(236,158,29)" rx="2" ry="2" /> ><text x="696.16" y="783.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (5 samples, 3.29%)</title><rect x="879.5" y="837" width="38.8" height="15.0" fill="rgb(227,108,32)" rx="2" ry="2" /> ><text x="882.47" y="847.5" >el0..</text> ></g> ><g > ><title>QStyleOption::init (1 samples, 0.66%)</title><rect x="677.6" y="613" width="7.8" height="15.0" fill="rgb(210,48,51)" rx="2" ry="2" /> ><text x="680.63" y="623.5" ></text> ></g> ><g > ><title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="343.8" y="213" width="7.8" height="15.0" fill="rgb(228,165,30)" rx="2" ry="2" /> ><text x="346.82" y="223.5" ></text> ></g> ><g > ><title>vfs_writev (1 samples, 0.66%)</title><rect x="242.9" y="709" width="7.8" height="15.0" fill="rgb(244,168,21)" rx="2" ry="2" /> ><text x="245.89" y="719.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="149.7" y="805" width="7.8" height="15.0" fill="rgb(248,28,3)" rx="2" ry="2" /> ><text x="152.74" y="815.5" ></text> ></g> ><g > ><title>glamor_copy_gl (2 samples, 1.32%)</title><rect x="281.7" y="789" width="15.5" height="15.0" fill="rgb(218,221,50)" rx="2" ry="2" /> ><text x="284.71" y="799.5" ></text> ></g> ><g > ><title>__libc_start_main (1 samples, 0.66%)</title><rect x="918.3" y="965" width="7.8" height="15.0" fill="rgb(238,46,13)" rx="2" ry="2" /> ><text x="921.29" y="975.5" ></text> ></g> ><g > ><title>do_truncate (1 samples, 0.66%)</title><rect x="1151.2" y="709" width="7.7" height="15.0" fill="rgb(223,172,26)" rx="2" ry="2" /> ><text x="1154.18" y="719.5" ></text> ></g> ><g > ><title>QCoreApplication::exec (17 samples, 11.18%)</title><rect x="600.0" y="933" width="132.0" height="15.0" fill="rgb(229,140,47)" rx="2" ry="2" /> ><text x="603.00" y="943.5" >QCoreApplication..</text> ></g> ><g > ><title>QCursor::pos (1 samples, 0.66%)</title><rect x="700.9" y="533" width="7.8" height="15.0" fill="rgb(228,120,30)" rx="2" ry="2" /> ><text x="703.92" y="543.5" ></text> ></g> ><g > ><title>xcb_wait_for_reply (1 samples, 0.66%)</title><rect x="918.3" y="725" width="7.8" height="15.0" fill="rgb(253,156,45)" rx="2" ry="2" /> ><text x="921.29" y="735.5" ></text> ></g> ><g > ><title>QWidget::event (1 samples, 0.66%)</title><rect x="638.8" y="565" width="7.8" height="15.0" fill="rgb(207,135,25)" rx="2" ry="2" /> ><text x="641.82" y="575.5" ></text> ></g> ><g > ><title>event_function_call (16 samples, 10.53%)</title><rect x="755.3" y="725" width="124.2" height="15.0" fill="rgb(216,198,3)" rx="2" ry="2" /> ><text x="758.26" y="735.5" >event_function_..</text> ></g> ><g > ><title>el0t_64_sync (3 samples, 1.97%)</title><rect x="359.3" y="565" width="23.3" height="15.0" fill="rgb(246,153,42)" rx="2" ry="2" /> ><text x="362.34" y="575.5" >e..</text> ></g> ><g > ><title>__ioctl (1 samples, 0.66%)</title><rect x="289.5" y="581" width="7.7" height="15.0" fill="rgb(225,185,27)" rx="2" ry="2" /> ><text x="292.47" y="591.5" ></text> ></g> ><g > ><title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="491.3" y="725" width="7.8" height="15.0" fill="rgb(209,185,17)" rx="2" ry="2" /> ><text x="494.32" y="735.5" ></text> ></g> ><g > ><title>invoke_syscall (2 samples, 1.32%)</title><rect x="444.7" y="549" width="15.6" height="15.0" fill="rgb(217,180,19)" rx="2" ry="2" /> ><text x="447.74" y="559.5" ></text> ></g> ><g > ><title>miPointerDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="773" width="62.1" height="15.0" fill="rgb(227,89,51)" rx="2" ry="2" /> ><text x="323.53" y="783.5" >miPoin..</text> ></g> ><g > ><title>invoke_syscall (17 samples, 11.18%)</title><rect x="747.5" y="821" width="132.0" height="15.0" fill="rgb(230,55,49)" rx="2" ry="2" /> ><text x="750.50" y="831.5" >invoke_syscall</text> ></g> ><g > ><title>__secondary_switched (14 samples, 9.21%)</title><rect x="1042.5" y="981" width="108.7" height="15.0" fill="rgb(207,40,43)" rx="2" ry="2" /> ><text x="1045.50" y="991.5" >__secondary_s..</text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="724.2" y="581" width="7.8" height="15.0" fill="rgb(246,180,2)" rx="2" ry="2" /> ><text x="727.21" y="591.5" ></text> ></g> ><g > ><title>do_iter_write (1 samples, 0.66%)</title><rect x="918.3" y="437" width="7.8" height="15.0" fill="rgb(243,66,27)" rx="2" ry="2" /> ><text x="921.29" y="447.5" ></text> ></g> ><g > ><title>finish_task_switch.isra.0 (2 samples, 1.32%)</title><rect x="1011.4" y="853" width="15.6" height="15.0" fill="rgb(216,100,24)" rx="2" ry="2" /> ><text x="1014.45" y="863.5" ></text> ></g> ><g > ><title>poll (2 samples, 1.32%)</title><rect x="219.6" y="885" width="15.5" height="15.0" fill="rgb(234,129,44)" rx="2" ry="2" /> ><text x="222.61" y="895.5" ></text> ></g> ><g > ><title>_XtWaitForSomething (1 samples, 0.66%)</title><rect x="1182.2" y="901" width="7.8" height="15.0" fill="rgb(215,153,54)" rx="2" ry="2" /> ><text x="1185.24" y="911.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="165.3" y="869" width="7.7" height="15.0" fill="rgb(213,229,35)" rx="2" ry="2" /> ><text x="168.26" y="879.5" ></text> ></g> ><g > ><title>drm_gem_shmem_get_pages (1 samples, 0.66%)</title><rect x="289.5" y="373" width="7.7" height="15.0" fill="rgb(216,137,4)" rx="2" ry="2" /> ><text x="292.47" y="383.5" ></text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="405.9" y="629" width="7.8" height="15.0" fill="rgb(222,26,37)" rx="2" ry="2" /> ><text x="408.92" y="639.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="700.9" y="293" width="7.8" height="15.0" fill="rgb(247,105,30)" rx="2" ry="2" /> ><text x="703.92" y="303.5" ></text> ></g> ><g > ><title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="468.0" y="405" width="7.8" height="15.0" fill="rgb(217,146,26)" rx="2" ry="2" /> ><text x="471.03" y="415.5" ></text> ></g> ><g > ><title>v3d_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="613" width="7.7" height="15.0" fill="rgb(224,143,21)" rx="2" ry="2" /> ><text x="292.47" y="623.5" ></text> ></g> ><g > ><title>wait_for_completion_timeout (2 samples, 1.32%)</title><rect x="926.1" y="757" width="15.5" height="15.0" fill="rgb(240,75,5)" rx="2" ry="2" /> ><text x="929.05" y="767.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="25.5" y="869" width="15.6" height="15.0" fill="rgb(254,217,33)" rx="2" ry="2" /> ><text x="28.53" y="879.5" ></text> ></g> ><g > ><title>vfs_writev (1 samples, 0.66%)</title><rect x="918.3" y="453" width="7.8" height="15.0" fill="rgb(224,200,40)" rx="2" ry="2" /> ><text x="921.29" y="463.5" ></text> ></g> ><g > ><title>el1h_64_irq (1 samples, 0.66%)</title><rect x="452.5" y="341" width="7.8" height="15.0" fill="rgb(254,13,48)" rx="2" ry="2" /> ><text x="455.50" y="351.5" ></text> ></g> ><g > ><title>vc4_plane_set_blank.isra.0 (2 samples, 1.32%)</title><rect x="367.1" y="245" width="15.5" height="15.0" fill="rgb(216,72,20)" rx="2" ry="2" /> ><text x="370.11" y="255.5" ></text> ></g> ><g > ><title>el1h_64_irq (1 samples, 0.66%)</title><rect x="87.6" y="181" width="7.8" height="15.0" fill="rgb(209,143,15)" rx="2" ry="2" /> ><text x="90.63" y="191.5" ></text> ></g> ><g > ><title>ret_from_fork (1 samples, 0.66%)</title><rect x="530.1" y="981" width="7.8" height="15.0" fill="rgb(219,206,48)" rx="2" ry="2" /> ><text x="533.13" y="991.5" ></text> ></g> ><g > ><title>schedule_timeout (1 samples, 0.66%)</title><rect x="468.0" y="389" width="7.8" height="15.0" fill="rgb(214,75,10)" rx="2" ry="2" /> ><text x="471.03" y="399.5" ></text> ></g> ><g > ><title>__GI_epoll_pwait (3 samples, 1.97%)</title><rect x="110.9" y="917" width="23.3" height="15.0" fill="rgb(251,124,15)" rx="2" ry="2" /> ><text x="113.92" y="927.5" >_..</text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="305.0" y="645" width="7.8" height="15.0" fill="rgb(238,180,44)" rx="2" ry="2" /> ><text x="308.00" y="655.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="305.0" y="581" width="7.8" height="15.0" fill="rgb(239,34,53)" rx="2" ry="2" /> ><text x="308.00" y="591.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="1166.7" y="773" width="7.8" height="15.0" fill="rgb(241,77,17)" rx="2" ry="2" /> ><text x="1169.71" y="783.5" ></text> ></g> ><g > ><title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="452.5" y="373" width="7.8" height="15.0" fill="rgb(254,142,1)" rx="2" ry="2" /> ><text x="455.50" y="383.5" ></text> ></g> ><g > ><title>generic_exec_single (16 samples, 10.53%)</title><rect x="755.3" y="693" width="124.2" height="15.0" fill="rgb(249,128,39)" rx="2" ry="2" /> ><text x="758.26" y="703.5" >generic_exec_si..</text> ></g> ><g > ><title>AnimCurDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="805" width="62.1" height="15.0" fill="rgb(219,36,38)" rx="2" ry="2" /> ><text x="323.53" y="815.5" >AnimCu..</text> ></g> ><g > ><title>QApplicationPrivate::sendMouseEvent (2 samples, 1.32%)</title><rect x="693.2" y="709" width="15.5" height="15.0" fill="rgb(241,4,40)" rx="2" ry="2" /> ><text x="696.16" y="719.5" ></text> ></g> ><g > ><title>GetPointerEvents (6 samples, 3.95%)</title><rect x="64.3" y="837" width="46.6" height="15.0" fill="rgb(252,178,36)" rx="2" ry="2" /> ><text x="67.34" y="847.5" >GetP..</text> ></g> ><g > ><title>openbox (2 samples, 1.32%)</title><rect x="576.7" y="997" width="15.5" height="15.0" fill="rgb(226,26,28)" rx="2" ry="2" /> ><text x="579.71" y="1007.5" ></text> ></g> ><g > ><title>DeliverEventsToWindow (1 samples, 0.66%)</title><rect x="405.9" y="741" width="7.8" height="15.0" fill="rgb(222,109,7)" rx="2" ry="2" /> ><text x="408.92" y="751.5" ></text> ></g> ><g > ><title>texsubimage_err (2 samples, 1.32%)</title><rect x="281.7" y="725" width="15.5" height="15.0" fill="rgb(240,166,18)" rx="2" ry="2" /> ><text x="284.71" y="735.5" ></text> ></g> ><g > ><title>xf86_set_cursor_position (6 samples, 3.95%)</title><rect x="64.3" y="709" width="46.6" height="15.0" fill="rgb(249,66,4)" rx="2" ry="2" /> ><text x="67.34" y="719.5" >xf86..</text> ></g> ><g > ><title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="757" width="7.7" height="15.0" fill="rgb(247,162,31)" rx="2" ry="2" /> ><text x="525.37" y="767.5" ></text> ></g> ><g > ><title>QWidget::setAttribute@plt (1 samples, 0.66%)</title><rect x="592.2" y="965" width="7.8" height="15.0" fill="rgb(235,128,12)" rx="2" ry="2" /> ><text x="595.24" y="975.5" ></text> ></g> ><g > ><title>DoEnterLeaveEvents (5 samples, 3.29%)</title><rect x="382.6" y="821" width="38.8" height="15.0" fill="rgb(209,209,10)" rx="2" ry="2" /> ><text x="385.63" y="831.5" >DoE..</text> ></g> ><g > ><title>do_el0_svc (3 samples, 1.97%)</title><rect x="382.6" y="565" width="23.3" height="15.0" fill="rgb(238,6,31)" rx="2" ry="2" /> ><text x="385.63" y="575.5" >d..</text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="305.0" y="549" width="7.8" height="15.0" fill="rgb(230,39,33)" rx="2" ry="2" /> ><text x="308.00" y="559.5" ></text> ></g> ><g > ><title>mieqProcessDeviceEvent (20 samples, 13.16%)</title><rect x="305.0" y="885" width="155.3" height="15.0" fill="rgb(243,75,19)" rx="2" ry="2" /> ><text x="308.00" y="895.5" >mieqProcessDeviceEv..</text> ></g> ><g > ><title>QCoreApplicationPrivate::sendThroughObjectEventFilters (1 samples, 0.66%)</title><rect x="638.8" y="597" width="7.8" height="15.0" fill="rgb(213,184,21)" rx="2" ry="2" /> ><text x="641.82" y="607.5" ></text> ></g> ><g > ><title>invoke_syscall (2 samples, 1.32%)</title><rect x="343.8" y="437" width="15.5" height="15.0" fill="rgb(227,186,51)" rx="2" ry="2" /> ><text x="346.82" y="447.5" ></text> ></g> ><g > ><title>syscall_trace_enter (1 samples, 0.66%)</title><rect x="165.3" y="805" width="7.7" height="15.0" fill="rgb(216,201,6)" rx="2" ry="2" /> ><text x="168.26" y="815.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="460.3" y="741" width="15.5" height="15.0" fill="rgb(216,143,17)" rx="2" ry="2" /> ><text x="463.26" y="751.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="1151.2" y="805" width="7.7" height="15.0" fill="rgb(217,122,21)" rx="2" ry="2" /> ><text x="1154.18" y="815.5" ></text> ></g> ><g > ><title>ProcQueryPointer (1 samples, 0.66%)</title><rect x="242.9" y="917" width="7.8" height="15.0" fill="rgb(240,147,54)" rx="2" ry="2" /> ><text x="245.89" y="927.5" ></text> ></g> ><g > ><title>QWidget::event (2 samples, 1.32%)</title><rect x="654.3" y="661" width="15.6" height="15.0" fill="rgb(214,195,5)" rx="2" ry="2" /> ><text x="657.34" y="671.5" ></text> ></g> ><g > ><title>DRM_IOCTL (1 samples, 0.66%)</title><rect x="235.1" y="661" width="7.8" height="15.0" fill="rgb(218,29,21)" rx="2" ry="2" /> ><text x="238.13" y="671.5" ></text> ></g> ><g > ><title>__GI_memcpy (4 samples, 2.63%)</title><rect x="250.7" y="725" width="31.0" height="15.0" fill="rgb(227,1,20)" rx="2" ry="2" /> ><text x="253.66" y="735.5" >__..</text> ></g> ><g > ><title>_perf_ioctl (17 samples, 11.18%)</title><rect x="747.5" y="773" width="132.0" height="15.0" fill="rgb(230,193,16)" rx="2" ry="2" /> ><text x="750.50" y="783.5" >_perf_ioctl</text> ></g> ><g > ><title>g_main_context_prepare (1 samples, 0.66%)</title><rect x="584.5" y="885" width="7.7" height="15.0" fill="rgb(254,81,44)" rx="2" ry="2" /> ><text x="587.47" y="895.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="87.6" y="213" width="7.8" height="15.0" fill="rgb(241,142,13)" rx="2" ry="2" /> ><text x="90.63" y="223.5" ></text> ></g> ><g > ><title>drm_atomic_get_plane_state (1 samples, 0.66%)</title><rect x="103.2" y="389" width="7.7" height="15.0" fill="rgb(208,157,38)" rx="2" ry="2" /> ><text x="106.16" y="399.5" ></text> ></g> ><g > ><title>__GI___libc_write (1 samples, 0.66%)</title><rect x="149.7" y="869" width="7.8" height="15.0" fill="rgb(227,97,38)" rx="2" ry="2" /> ><text x="152.74" y="879.5" ></text> ></g> ><g > ><title>[lxqt-panel] (1 samples, 0.66%)</title><rect x="553.4" y="981" width="7.8" height="15.0" fill="rgb(215,68,0)" rx="2" ry="2" /> ><text x="556.42" y="991.5" ></text> ></g> ><g > ><title>jbd2_journal_bmap (1 samples, 0.66%)</title><rect x="530.1" y="901" width="7.8" height="15.0" fill="rgb(249,221,40)" rx="2" ry="2" /> ><text x="533.13" y="911.5" ></text> ></g> ><g > ><title>mbox_send_message (1 samples, 0.66%)</title><rect x="367.1" y="213" width="7.8" height="15.0" fill="rgb(220,123,39)" rx="2" ry="2" /> ><text x="370.11" y="223.5" ></text> ></g> ><g > ><title>QCoreApplicationPrivate::sendThroughObjectEventFilters (1 samples, 0.66%)</title><rect x="700.9" y="645" width="7.8" height="15.0" fill="rgb(209,164,22)" rx="2" ry="2" /> ><text x="703.92" y="655.5" ></text> ></g> ><g > ><title>sock_def_readable (1 samples, 0.66%)</title><rect x="700.9" y="117" width="7.8" height="15.0" fill="rgb(241,214,40)" rx="2" ry="2" /> ><text x="703.92" y="127.5" ></text> ></g> ><g > ><title>el0t_64_sync (3 samples, 1.97%)</title><rect x="382.6" y="613" width="23.3" height="15.0" fill="rgb(238,204,39)" rx="2" ry="2" /> ><text x="385.63" y="623.5" >e..</text> ></g> ><g > ><title>update_blocked_averages (1 samples, 0.66%)</title><rect x="452.5" y="165" width="7.8" height="15.0" fill="rgb(240,155,8)" rx="2" ry="2" /> ><text x="455.50" y="175.5" ></text> ></g> ><g > ><title>prepare_to_wait_event (1 samples, 0.66%)</title><rect x="537.9" y="933" width="7.8" height="15.0" fill="rgb(211,215,47)" rx="2" ry="2" /> ><text x="540.89" y="943.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="405.9" y="565" width="7.8" height="15.0" fill="rgb(206,19,33)" rx="2" ry="2" /> ><text x="408.92" y="575.5" ></text> ></g> ><g > ><title>do_el0_svc (3 samples, 1.97%)</title><rect x="173.0" y="789" width="23.3" height="15.0" fill="rgb(223,150,30)" rx="2" ry="2" /> ><text x="176.03" y="799.5" >d..</text> ></g> ><g > ><title>gic_handle_irq (1 samples, 0.66%)</title><rect x="87.6" y="101" width="7.8" height="15.0" fill="rgb(219,211,13)" rx="2" ry="2" /> ><text x="90.63" y="111.5" ></text> ></g> ><g > ><title>invoke_syscall (5 samples, 3.29%)</title><rect x="879.5" y="773" width="38.8" height="15.0" fill="rgb(208,33,15)" rx="2" ry="2" /> ><text x="882.47" y="783.5" >inv..</text> ></g> ><g > ><title>__arm64_sys_ftruncate (1 samples, 0.66%)</title><rect x="1151.2" y="741" width="7.7" height="15.0" fill="rgb(243,83,26)" rx="2" ry="2" /> ><text x="1154.18" y="751.5" ></text> ></g> ><g > ><title>all (152 samples, 100%)</title><rect x="10.0" y="1013" width="1180.0" height="15.0" fill="rgb(250,228,31)" rx="2" ry="2" /> ><text x="13.00" y="1023.5" ></text> ></g> ><g > ><title>drm_mode_cursor_common (6 samples, 3.95%)</title><rect x="64.3" y="453" width="46.6" height="15.0" fill="rgb(210,131,15)" rx="2" ry="2" /> ><text x="67.34" y="463.5" >drm_..</text> ></g> ><g > ><title>irq_exit (1 samples, 0.66%)</title><rect x="452.5" y="229" width="7.8" height="15.0" fill="rgb(252,17,53)" rx="2" ry="2" /> ><text x="455.50" y="239.5" ></text> ></g> ><g > ><title>_mesa_get_format_block_size_3d (1 samples, 0.66%)</title><rect x="281.7" y="677" width="7.8" height="15.0" fill="rgb(208,165,6)" rx="2" ry="2" /> ><text x="284.71" y="687.5" ></text> ></g> ><g > ><title>__arch_copy_from_user (1 samples, 0.66%)</title><rect x="359.3" y="453" width="7.8" height="15.0" fill="rgb(238,221,10)" rx="2" ry="2" /> ><text x="362.34" y="463.5" ></text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (9 samples, 5.92%)</title><rect x="600.0" y="773" width="69.9" height="15.0" fill="rgb(228,173,39)" rx="2" ry="2" /> ><text x="603.00" y="783.5" >QApplic..</text> ></g> ><g > ><title>__arm64_sys_ioctl (2 samples, 1.32%)</title><rect x="343.8" y="421" width="15.5" height="15.0" fill="rgb(230,89,12)" rx="2" ry="2" /> ><text x="346.82" y="431.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="1166.7" y="725" width="7.8" height="15.0" fill="rgb(246,86,6)" rx="2" ry="2" /> ><text x="1169.71" y="735.5" ></text> ></g> ><g > ><title>sock_write_iter (1 samples, 0.66%)</title><rect x="305.0" y="453" width="7.8" height="15.0" fill="rgb(207,214,15)" rx="2" ry="2" /> ><text x="308.00" y="463.5" ></text> ></g> ><g > ><title>el1h_64_sync (1 samples, 0.66%)</title><rect x="910.5" y="645" width="7.8" height="15.0" fill="rgb(214,89,13)" rx="2" ry="2" /> ><text x="913.53" y="655.5" ></text> ></g> ><g > ><title>unmap_mapping_range (1 samples, 0.66%)</title><rect x="1151.2" y="645" width="7.7" height="15.0" fill="rgb(223,111,23)" rx="2" ry="2" /> ><text x="1154.18" y="655.5" ></text> ></g> ><g > ><title>sock_sendmsg (1 samples, 0.66%)</title><rect x="700.9" y="149" width="7.8" height="15.0" fill="rgb(235,226,30)" rx="2" ry="2" /> ><text x="703.92" y="159.5" ></text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="677.6" y="741" width="15.6" height="15.0" fill="rgb(251,0,52)" rx="2" ry="2" /> ><text x="680.63" y="751.5" ></text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (2 samples, 1.32%)</title><rect x="693.2" y="757" width="15.5" height="15.0" fill="rgb(219,85,43)" rx="2" ry="2" /> ><text x="696.16" y="767.5" ></text> ></g> ><g > ><title>schedule_hrtimeout_range_clock (1 samples, 0.66%)</title><rect x="227.4" y="709" width="7.7" height="15.0" fill="rgb(216,60,41)" rx="2" ry="2" /> ><text x="230.37" y="719.5" ></text> ></g> ><g > ><title>QCommonStyle::hitTestComplexControl (1 samples, 0.66%)</title><rect x="669.9" y="629" width="7.7" height="15.0" fill="rgb(246,97,15)" rx="2" ry="2" /> ><text x="672.87" y="639.5" ></text> ></g> ><g > ><title>__setplane_atomic (6 samples, 3.95%)</title><rect x="64.3" y="421" width="46.6" height="15.0" fill="rgb(235,6,6)" rx="2" ry="2" /> ><text x="67.34" y="431.5" >__se..</text> ></g> ><g > ><title>syscall_trace_enter (1 samples, 0.66%)</title><rect x="522.4" y="629" width="7.7" height="15.0" fill="rgb(223,40,2)" rx="2" ry="2" /> ><text x="525.37" y="639.5" ></text> ></g> ><g > ><title>g_main_context_iterate (17 samples, 11.18%)</title><rect x="600.0" y="869" width="132.0" height="15.0" fill="rgb(234,90,50)" rx="2" ry="2" /> ><text x="603.00" y="879.5" >g_main_context_i..</text> ></g> ><g > ><title>usb_hcd_submit_urb (1 samples, 0.66%)</title><rect x="995.9" y="597" width="7.8" height="15.0" fill="rgb(230,155,19)" rx="2" ry="2" /> ><text x="998.92" y="607.5" ></text> ></g> ><g > ><title>vfs_writev (2 samples, 1.32%)</title><rect x="444.7" y="501" width="15.6" height="15.0" fill="rgb(214,68,26)" rx="2" ry="2" /> ><text x="447.74" y="511.5" ></text> ></g> ><g > ><title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="452.5" y="357" width="7.8" height="15.0" fill="rgb(213,97,2)" rx="2" ry="2" /> ><text x="455.50" y="367.5" ></text> ></g> ><g > ><title>irq_exit (1 samples, 0.66%)</title><rect x="1073.6" y="773" width="7.7" height="15.0" fill="rgb(241,216,30)" rx="2" ry="2" /> ><text x="1076.55" y="783.5" ></text> ></g> ><g > ><title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="821" width="7.7" height="15.0" fill="rgb(253,148,48)" rx="2" ry="2" /> ><text x="525.37" y="831.5" ></text> ></g> ><g > ><title>unix_stream_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="693" width="7.8" height="15.0" fill="rgb(250,11,52)" rx="2" ry="2" /> ><text x="478.79" y="703.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="165.3" y="853" width="7.7" height="15.0" fill="rgb(238,43,16)" rx="2" ry="2" /> ><text x="168.26" y="863.5" ></text> ></g> ><g > ><title>GetEventMask (1 samples, 0.66%)</title><rect x="429.2" y="741" width="7.8" height="15.0" fill="rgb(224,183,41)" rx="2" ry="2" /> ><text x="432.21" y="751.5" ></text> ></g> ><g > ><title>__libc_write (5 samples, 3.29%)</title><rect x="879.5" y="885" width="38.8" height="15.0" fill="rgb(208,136,52)" rx="2" ry="2" /> ><text x="882.47" y="895.5" >__l..</text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="289.5" y="501" width="7.7" height="15.0" fill="rgb(220,196,35)" rx="2" ry="2" /> ><text x="292.47" y="511.5" ></text> ></g> ><g > ><title>xf86MoveCursor (2 samples, 1.32%)</title><rect x="460.3" y="885" width="15.5" height="15.0" fill="rgb(221,183,4)" rx="2" ry="2" /> ><text x="463.26" y="895.5" ></text> ></g> ><g > ><title>drmIoctl (3 samples, 1.97%)</title><rect x="359.3" y="597" width="23.3" height="15.0" fill="rgb(238,122,51)" rx="2" ry="2" /> ><text x="362.34" y="607.5" >d..</text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="235.1" y="597" width="7.8" height="15.0" fill="rgb(219,63,28)" rx="2" ry="2" /> ><text x="238.13" y="607.5" ></text> ></g> ><g > ><title>[xscreensaver] (3 samples, 1.97%)</title><rect x="1166.7" y="949" width="23.3" height="15.0" fill="rgb(232,181,2)" rx="2" ry="2" /> ><text x="1169.71" y="959.5" >[..</text> ></g> ><g > ><title>__sched_setaffinity (1 samples, 0.66%)</title><rect x="739.7" y="773" width="7.8" height="15.0" fill="rgb(216,166,1)" rx="2" ry="2" /> ><text x="742.74" y="783.5" ></text> ></g> ><g > ><title>commit_tail (1 samples, 0.66%)</title><rect x="235.1" y="357" width="7.8" height="15.0" fill="rgb(231,206,41)" rx="2" ry="2" /> ><text x="238.13" y="367.5" ></text> ></g> ><g > ><title>[libusbmuxd-2.0.so.6.0.0] (1 samples, 0.66%)</title><rect x="561.2" y="965" width="7.7" height="15.0" fill="rgb(231,139,40)" rx="2" ry="2" /> ><text x="564.18" y="975.5" ></text> ></g> ><g > ><title>arch_call_rest_init (13 samples, 8.55%)</title><rect x="941.6" y="949" width="100.9" height="15.0" fill="rgb(223,70,10)" rx="2" ry="2" /> ><text x="944.58" y="959.5" >arch_call_re..</text> ></g> ><g > ><title>alloc_skb_with_frags (1 samples, 0.66%)</title><rect x="305.0" y="389" width="7.8" height="15.0" fill="rgb(235,198,4)" rx="2" ry="2" /> ><text x="308.00" y="399.5" ></text> ></g> ><g > ><title>commit_tail (5 samples, 3.29%)</title><rect x="64.3" y="357" width="38.9" height="15.0" fill="rgb(223,217,17)" rx="2" ry="2" /> ><text x="67.34" y="367.5" >com..</text> ></g> ><g > ><title>_XSERVTransSocketWritev (1 samples, 0.66%)</title><rect x="405.9" y="645" width="7.8" height="15.0" fill="rgb(247,176,14)" rx="2" ry="2" /> ><text x="408.92" y="655.5" ></text> ></g> ><g > ><title>do_el0_svc (3 samples, 1.97%)</title><rect x="491.3" y="821" width="23.3" height="15.0" fill="rgb(217,171,7)" rx="2" ry="2" /> ><text x="494.32" y="831.5" >d..</text> ></g> ><g > ><title>WriteEventsToClient (1 samples, 0.66%)</title><rect x="405.9" y="677" width="7.8" height="15.0" fill="rgb(230,124,15)" rx="2" ry="2" /> ><text x="408.92" y="687.5" ></text> ></g> ><g > ><title>mieqProcessInputEvents (23 samples, 15.13%)</title><rect x="297.2" y="901" width="178.6" height="15.0" fill="rgb(205,2,29)" rx="2" ry="2" /> ><text x="300.24" y="911.5" >mieqProcessInputEvents</text> ></g> ><g > ><title>xf86ScreenSetCursor (8 samples, 5.26%)</title><rect x="320.5" y="677" width="62.1" height="15.0" fill="rgb(232,112,14)" rx="2" ry="2" /> ><text x="323.53" y="687.5" >xf86Sc..</text> ></g> ><g > ><title>vc4_atomic_commit_tail (1 samples, 0.66%)</title><rect x="235.1" y="341" width="7.8" height="15.0" fill="rgb(213,124,7)" rx="2" ry="2" /> ><text x="238.13" y="351.5" ></text> ></g> ><g > ><title>__ep_eventpoll_poll.isra.0 (1 samples, 0.66%)</title><rect x="126.4" y="741" width="7.8" height="15.0" fill="rgb(212,92,26)" rx="2" ry="2" /> ><text x="129.45" y="751.5" ></text> ></g> ><g > ><title>__mod_timer (1 samples, 0.66%)</title><rect x="374.9" y="181" width="7.7" height="15.0" fill="rgb(245,121,53)" rx="2" ry="2" /> ><text x="377.87" y="191.5" ></text> ></g> ><g > ><title>TryClientEvents (1 samples, 0.66%)</title><rect x="405.9" y="709" width="7.8" height="15.0" fill="rgb(251,67,25)" rx="2" ry="2" /> ><text x="408.92" y="719.5" ></text> ></g> ><g > ><title>cmd_record (24 samples, 15.79%)</title><rect x="732.0" y="965" width="186.3" height="15.0" fill="rgb(219,165,16)" rx="2" ry="2" /> ><text x="734.97" y="975.5" >cmd_record</text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="289.5" y="485" width="7.7" height="15.0" fill="rgb(240,74,24)" rx="2" ry="2" /> ><text x="292.47" y="495.5" ></text> ></g> ><g > ><title>irq_exit (1 samples, 0.66%)</title><rect x="87.6" y="69" width="7.8" height="15.0" fill="rgb(249,24,13)" rx="2" ry="2" /> ><text x="90.63" y="79.5" ></text> ></g> ><g > ><title>__setplane_atomic (2 samples, 1.32%)</title><rect x="343.8" y="325" width="15.5" height="15.0" fill="rgb(215,187,54)" rx="2" ry="2" /> ><text x="346.82" y="335.5" ></text> ></g> ><g > ><title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="853" width="7.7" height="15.0" fill="rgb(241,85,11)" rx="2" ry="2" /> ><text x="525.37" y="863.5" ></text> ></g> ><g > ><title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="700.9" y="181" width="7.8" height="15.0" fill="rgb(221,135,6)" rx="2" ry="2" /> ><text x="703.92" y="191.5" ></text> ></g> ><g > ><title>__handle_mm_fault (1 samples, 0.66%)</title><rect x="910.5" y="533" width="7.8" height="15.0" fill="rgb(232,92,26)" rx="2" ry="2" /> ><text x="913.53" y="543.5" ></text> ></g> ><g > ><title>rest_init (13 samples, 8.55%)</title><rect x="941.6" y="933" width="100.9" height="15.0" fill="rgb(237,1,20)" rx="2" ry="2" /> ><text x="944.58" y="943.5" >rest_init</text> ></g> ><g > ><title>poll_freewait (1 samples, 0.66%)</title><rect x="219.6" y="725" width="7.8" height="15.0" fill="rgb(243,206,23)" rx="2" ry="2" /> ><text x="222.61" y="735.5" ></text> ></g> ><g > ><title>drmIoctl (1 samples, 0.66%)</title><rect x="289.5" y="597" width="7.7" height="15.0" fill="rgb(252,63,28)" rx="2" ry="2" /> ><text x="292.47" y="607.5" ></text> ></g> ><g > ><title>QXcbConnection::processXcbEvents (1 samples, 0.66%)</title><rect x="918.3" y="805" width="7.8" height="15.0" fill="rgb(220,60,24)" rx="2" ry="2" /> ><text x="921.29" y="815.5" ></text> ></g> ><g > ><title>QCoreApplication::exec (1 samples, 0.66%)</title><rect x="918.3" y="933" width="7.8" height="15.0" fill="rgb(241,207,14)" rx="2" ry="2" /> ><text x="921.29" y="943.5" ></text> ></g> ><g > ><title>QXcbWindow::handleEnterNotifyEvent (1 samples, 0.66%)</title><rect x="918.3" y="773" width="7.8" height="15.0" fill="rgb(223,153,25)" rx="2" ry="2" /> ><text x="921.29" y="783.5" ></text> ></g> ><g > ><title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="773" width="7.7" height="15.0" fill="rgb(209,188,17)" rx="2" ry="2" /> ><text x="525.37" y="783.5" ></text> ></g> ><g > ><title>save_return_addr (1 samples, 0.66%)</title><rect x="537.9" y="869" width="7.8" height="15.0" fill="rgb(250,87,34)" rx="2" ry="2" /> ><text x="540.89" y="879.5" ></text> ></g> ><g > ><title>__do_softirq (1 samples, 0.66%)</title><rect x="219.6" y="533" width="7.8" height="15.0" fill="rgb(245,127,48)" rx="2" ry="2" /> ><text x="222.61" y="543.5" ></text> ></g> ><g > ><title>__arm64_sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="757" width="7.8" height="15.0" fill="rgb(211,163,51)" rx="2" ry="2" /> ><text x="478.79" y="767.5" ></text> ></g> ><g > ><title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="700.9" y="437" width="7.8" height="15.0" fill="rgb(208,122,44)" rx="2" ry="2" /> ><text x="703.92" y="447.5" ></text> ></g> ><g > ><title>g_main_dispatch (17 samples, 11.18%)</title><rect x="600.0" y="837" width="132.0" height="15.0" fill="rgb(210,84,48)" rx="2" ry="2" /> ><text x="603.00" y="847.5" >g_main_dispatch</text> ></g> ><g > ><title>DRM_IOCTL (6 samples, 3.95%)</title><rect x="64.3" y="661" width="46.6" height="15.0" fill="rgb(254,217,18)" rx="2" ry="2" /> ><text x="67.34" y="671.5" >DRM_..</text> ></g> ><g > ><title>DeliverEvent (1 samples, 0.66%)</title><rect x="305.0" y="805" width="7.8" height="15.0" fill="rgb(251,198,8)" rx="2" ry="2" /> ><text x="308.00" y="815.5" ></text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="739.7" y="901" width="7.8" height="15.0" fill="rgb(223,77,13)" rx="2" ry="2" /> ><text x="742.74" y="911.5" ></text> ></g> ><g > ><title>___sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="597" width="7.7" height="15.0" fill="rgb(216,157,15)" rx="2" ry="2" /> ><text x="587.47" y="607.5" ></text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="289.5" y="517" width="7.7" height="15.0" fill="rgb(227,157,46)" rx="2" ry="2" /> ><text x="292.47" y="527.5" ></text> ></g> ><g > ><title>schedule (1 samples, 0.66%)</title><rect x="724.2" y="485" width="7.8" height="15.0" fill="rgb(243,194,1)" rx="2" ry="2" /> ><text x="727.21" y="495.5" ></text> ></g> ><g > ><title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="646.6" y="597" width="7.7" height="15.0" fill="rgb(241,11,52)" rx="2" ry="2" /> ><text x="649.58" y="607.5" ></text> ></g> ><g > ><title>QThread (1 samples, 0.66%)</title><rect x="134.2" y="997" width="7.8" height="15.0" fill="rgb(213,75,50)" rx="2" ry="2" /> ><text x="137.21" y="1007.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="1166.7" y="741" width="7.8" height="15.0" fill="rgb(246,222,39)" rx="2" ry="2" /> ><text x="1169.71" y="751.5" ></text> ></g> ><g > ><title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="700.9" y="101" width="7.8" height="15.0" fill="rgb(221,227,54)" rx="2" ry="2" /> ><text x="703.92" y="111.5" ></text> ></g> ><g > ><title>drm_mode_cursor_ioctl (6 samples, 3.95%)</title><rect x="64.3" y="469" width="46.6" height="15.0" fill="rgb(250,82,26)" rx="2" ry="2" /> ><text x="67.34" y="479.5" >drm_..</text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="1151.2" y="773" width="7.7" height="15.0" fill="rgb(250,129,48)" rx="2" ry="2" /> ><text x="1154.18" y="783.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (5 samples, 3.29%)</title><rect x="879.5" y="789" width="38.8" height="15.0" fill="rgb(225,160,9)" rx="2" ry="2" /> ><text x="882.47" y="799.5" >el0..</text> ></g> ><g > ><title>drm_atomic_commit (2 samples, 1.32%)</title><rect x="343.8" y="293" width="15.5" height="15.0" fill="rgb(213,1,30)" rx="2" ry="2" /> ><text x="346.82" y="303.5" ></text> ></g> ><g > ><title>_mesa_TexSubImage2D (2 samples, 1.32%)</title><rect x="281.7" y="741" width="15.5" height="15.0" fill="rgb(237,67,29)" rx="2" ry="2" /> ><text x="284.71" y="751.5" ></text> ></g> ><g > ><title>__slab_free (1 samples, 0.66%)</title><rect x="460.3" y="453" width="7.7" height="15.0" fill="rgb(240,19,12)" rx="2" ry="2" /> ><text x="463.26" y="463.5" ></text> ></g> ><g > ><title>__GI___writev (1 samples, 0.66%)</title><rect x="700.9" y="373" width="7.8" height="15.0" fill="rgb(233,1,27)" rx="2" ry="2" /> ><text x="703.92" y="383.5" ></text> ></g> ><g > ><title>__drm_atomic_helper_plane_destroy_state (1 samples, 0.66%)</title><rect x="460.3" y="485" width="7.7" height="15.0" fill="rgb(244,137,38)" rx="2" ry="2" /> ><text x="463.26" y="495.5" ></text> ></g> ><g > ><title>sock_sendmsg (3 samples, 1.97%)</title><rect x="382.6" y="421" width="23.3" height="15.0" fill="rgb(252,138,54)" rx="2" ry="2" /> ><text x="385.63" y="431.5" >s..</text> ></g> ><g > ><title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="374.9" y="213" width="7.7" height="15.0" fill="rgb(212,60,47)" rx="2" ry="2" /> ><text x="377.87" y="223.5" ></text> ></g> ><g > ><title>CoreEnterLeaveNonLinear (4 samples, 2.63%)</title><rect x="382.6" y="789" width="31.1" height="15.0" fill="rgb(234,94,13)" rx="2" ry="2" /> ><text x="385.63" y="799.5" >Co..</text> ></g> ><g > ><title>[lxqt-session] (1 samples, 0.66%)</title><rect x="134.2" y="933" width="7.8" height="15.0" fill="rgb(226,119,7)" rx="2" ry="2" /> ><text x="137.21" y="943.5" ></text> ></g> ><g > ><title>el0_svc (3 samples, 1.97%)</title><rect x="173.0" y="805" width="23.3" height="15.0" fill="rgb(246,42,50)" rx="2" ry="2" /> ><text x="176.03" y="815.5" >e..</text> ></g> ><g > ><title>texsubimage_error_check (1 samples, 0.66%)</title><rect x="281.7" y="709" width="7.8" height="15.0" fill="rgb(246,139,5)" rx="2" ry="2" /> ><text x="284.71" y="719.5" ></text> ></g> ><g > ><title>do_epoll_pwait.part.0 (3 samples, 1.97%)</title><rect x="491.3" y="757" width="23.3" height="15.0" fill="rgb(243,21,45)" rx="2" ry="2" /> ><text x="494.32" y="767.5" >d..</text> ></g> ><g > ><title>invoke_syscall (6 samples, 3.95%)</title><rect x="64.3" y="533" width="46.6" height="15.0" fill="rgb(222,62,23)" rx="2" ry="2" /> ><text x="67.34" y="543.5" >invo..</text> ></g> ><g > ><title>rpi_firmware_property_list (1 samples, 0.66%)</title><rect x="351.6" y="181" width="7.7" height="15.0" fill="rgb(235,36,51)" rx="2" ry="2" /> ><text x="354.58" y="191.5" ></text> ></g> ><g > ><title>_XEventsQueued (1 samples, 0.66%)</title><rect x="1166.7" y="885" width="7.8" height="15.0" fill="rgb(249,119,20)" rx="2" ry="2" /> ><text x="1169.71" y="895.5" ></text> ></g> ><g > ><title>el0_svc (3 samples, 1.97%)</title><rect x="382.6" y="581" width="23.3" height="15.0" fill="rgb(234,222,3)" rx="2" ry="2" /> ><text x="385.63" y="591.5" >e..</text> ></g> ><g > ><title>_xcb_in_read_block (1 samples, 0.66%)</title><rect x="211.8" y="853" width="7.8" height="15.0" fill="rgb(207,130,48)" rx="2" ry="2" /> ><text x="214.84" y="863.5" ></text> ></g> ><g > ><title>rpi_firmware_property_list (1 samples, 0.66%)</title><rect x="468.0" y="421" width="7.8" height="15.0" fill="rgb(237,183,1)" rx="2" ry="2" /> ><text x="471.03" y="431.5" ></text> ></g> ><g > ><title>glamor_put_image_gl (4 samples, 2.63%)</title><rect x="250.7" y="869" width="31.0" height="15.0" fill="rgb(249,228,17)" rx="2" ry="2" /> ><text x="253.66" y="879.5" >gl..</text> ></g> ><g > ><title>drm_mode_cursor_ioctl (2 samples, 1.32%)</title><rect x="460.3" y="613" width="15.5" height="15.0" fill="rgb(252,32,6)" rx="2" ry="2" /> ><text x="463.26" y="623.5" ></text> ></g> ><g > ><title>drm_mode_cursor_universal (2 samples, 1.32%)</title><rect x="460.3" y="581" width="15.5" height="15.0" fill="rgb(226,50,16)" rx="2" ry="2" /> ><text x="463.26" y="591.5" ></text> ></g> ><g > ><title>read_packet (1 samples, 0.66%)</title><rect x="600.0" y="597" width="7.8" height="15.0" fill="rgb(254,9,6)" rx="2" ry="2" /> ><text x="603.00" y="607.5" ></text> ></g> ><g > ><title>DRM_IOCTL (2 samples, 1.32%)</title><rect x="460.3" y="805" width="15.5" height="15.0" fill="rgb(226,26,53)" rx="2" ry="2" /> ><text x="463.26" y="815.5" ></text> ></g> ><g > ><title>el0_svc (1 samples, 0.66%)</title><rect x="918.3" y="549" width="7.8" height="15.0" fill="rgb(240,95,27)" rx="2" ry="2" /> ><text x="921.29" y="559.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit (1 samples, 0.66%)</title><rect x="468.0" y="517" width="7.8" height="15.0" fill="rgb(236,169,7)" rx="2" ry="2" /> ><text x="471.03" y="527.5" ></text> ></g> ><g > ><title>QMutex::lock (1 samples, 0.66%)</title><rect x="142.0" y="917" width="7.7" height="15.0" fill="rgb(252,91,15)" rx="2" ry="2" /> ><text x="144.97" y="927.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="584.5" y="661" width="7.7" height="15.0" fill="rgb(236,146,38)" rx="2" ry="2" /> ><text x="587.47" y="671.5" ></text> ></g> ><g > ><title>xi2mask_isset_for_device (1 samples, 0.66%)</title><rect x="429.2" y="693" width="7.8" height="15.0" fill="rgb(221,146,30)" rx="2" ry="2" /> ><text x="432.21" y="703.5" ></text> ></g> ><g > ><title>miPointerMoveNoEvent (6 samples, 3.95%)</title><rect x="64.3" y="757" width="46.6" height="15.0" fill="rgb(233,77,16)" rx="2" ry="2" /> ><text x="67.34" y="767.5" >miPo..</text> ></g> ><g > ><title>jbd2/mmcblk0p2- (1 samples, 0.66%)</title><rect x="530.1" y="997" width="7.8" height="15.0" fill="rgb(218,191,52)" rx="2" ry="2" /> ><text x="533.13" y="1007.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (17 samples, 11.18%)</title><rect x="747.5" y="837" width="132.0" height="15.0" fill="rgb(251,151,9)" rx="2" ry="2" /> ><text x="750.50" y="847.5" >el0_svc_common.c..</text> ></g> ><g > ><title>QGuiApplicationPrivate::processEnterEvent (1 samples, 0.66%)</title><rect x="669.9" y="789" width="7.7" height="15.0" fill="rgb(246,72,44)" rx="2" ry="2" /> ><text x="672.87" y="799.5" ></text> ></g> ><g > ><title>hrtimer_start_range_ns (1 samples, 0.66%)</title><rect x="235.1" y="229" width="7.8" height="15.0" fill="rgb(222,163,53)" rx="2" ry="2" /> ><text x="238.13" y="239.5" ></text> ></g> ><g > ><title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="405.9" y="501" width="7.8" height="15.0" fill="rgb(254,184,36)" rx="2" ry="2" /> ><text x="408.92" y="511.5" ></text> ></g> ><g > ><title>g_main_dispatch (1 samples, 0.66%)</title><rect x="918.3" y="837" width="7.8" height="15.0" fill="rgb(244,70,42)" rx="2" ry="2" /> ><text x="921.29" y="847.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="235.1" y="549" width="7.8" height="15.0" fill="rgb(208,70,3)" rx="2" ry="2" /> ><text x="238.13" y="559.5" ></text> ></g> ><g > ><title>notify_change (1 samples, 0.66%)</title><rect x="1151.2" y="693" width="7.7" height="15.0" fill="rgb(237,32,33)" rx="2" ry="2" /> ><text x="1154.18" y="703.5" ></text> ></g> ><g > ><title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.66%)</title><rect x="1081.3" y="901" width="7.8" height="15.0" fill="rgb(232,139,10)" rx="2" ry="2" /> ><text x="1084.32" y="911.5" ></text> ></g> ><g > ><title>texture_sub_image (1 samples, 0.66%)</title><rect x="289.5" y="709" width="7.7" height="15.0" fill="rgb(246,9,40)" rx="2" ry="2" /> ><text x="292.47" y="719.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="359.3" y="549" width="23.3" height="15.0" fill="rgb(239,210,7)" rx="2" ry="2" /> ><text x="362.34" y="559.5" >e..</text> ></g> ><g > ><title>QXcbConnection::xi2UpdateScrollingDevices (1 samples, 0.66%)</title><rect x="918.3" y="757" width="7.8" height="15.0" fill="rgb(252,57,48)" rx="2" ry="2" /> ><text x="921.29" y="767.5" ></text> ></g> ><g > ><title>drmModeMoveCursor (1 samples, 0.66%)</title><rect x="235.1" y="677" width="7.8" height="15.0" fill="rgb(243,52,46)" rx="2" ry="2" /> ><text x="238.13" y="687.5" ></text> ></g> ><g > ><title>schedule (2 samples, 1.32%)</title><rect x="499.1" y="693" width="15.5" height="15.0" fill="rgb(253,164,37)" rx="2" ry="2" /> ><text x="502.08" y="703.5" ></text> ></g> ><g > ><title>write_vec (1 samples, 0.66%)</title><rect x="918.3" y="629" width="7.8" height="15.0" fill="rgb(231,71,16)" rx="2" ry="2" /> ><text x="921.29" y="639.5" ></text> ></g> ><g > ><title>schedule (1 samples, 0.66%)</title><rect x="134.2" y="677" width="7.8" height="15.0" fill="rgb(236,102,28)" rx="2" ry="2" /> ><text x="137.21" y="687.5" ></text> ></g> ><g > ><title>el0_svc (17 samples, 11.18%)</title><rect x="747.5" y="869" width="132.0" height="15.0" fill="rgb(218,116,27)" rx="2" ry="2" /> ><text x="750.50" y="879.5" >el0_svc</text> ></g> ><g > ><title>xf86libinput_handle_motion (6 samples, 3.95%)</title><rect x="64.3" y="869" width="46.6" height="15.0" fill="rgb(241,142,23)" rx="2" ry="2" /> ><text x="67.34" y="879.5" >xf86..</text> ></g> ><g > ><title>el0t_64_sync (1 samples, 0.66%)</title><rect x="405.9" y="597" width="7.8" height="15.0" fill="rgb(223,120,7)" rx="2" ry="2" /> ><text x="408.92" y="607.5" ></text> ></g> ><g > ><title>ospoll_wait (3 samples, 1.97%)</title><rect x="491.3" y="901" width="23.3" height="15.0" fill="rgb(244,51,34)" rx="2" ry="2" /> ><text x="494.32" y="911.5" >o..</text> ></g> ><g > ><title>schedule_hrtimeout_range (2 samples, 1.32%)</title><rect x="499.1" y="725" width="15.5" height="15.0" fill="rgb(238,96,19)" rx="2" ry="2" /> ><text x="502.08" y="735.5" ></text> ></g> ><g > ><title>ext4_da_write_begin (3 samples, 1.97%)</title><rect x="887.2" y="645" width="23.3" height="15.0" fill="rgb(226,6,47)" rx="2" ry="2" /> ><text x="890.24" y="655.5" >e..</text> ></g> ><g > ><title>xf86CursorSetCursor (1 samples, 0.66%)</title><rect x="235.1" y="757" width="7.8" height="15.0" fill="rgb(246,134,47)" rx="2" ry="2" /> ><text x="238.13" y="767.5" ></text> ></g> ><g > ><title>hrtimer_start_range_ns (1 samples, 0.66%)</title><rect x="367.1" y="181" width="7.8" height="15.0" fill="rgb(226,14,24)" rx="2" ry="2" /> ><text x="370.11" y="191.5" ></text> ></g> ><g > ><title>v3d_create_bo_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="421" width="7.7" height="15.0" fill="rgb(238,59,43)" rx="2" ry="2" /> ><text x="292.47" y="431.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="918.3" y="517" width="7.8" height="15.0" fill="rgb(248,86,21)" rx="2" ry="2" /> ><text x="921.29" y="527.5" ></text> ></g> ><g > ><title>hrtimer_start_range_ns (1 samples, 0.66%)</title><rect x="87.6" y="229" width="7.8" height="15.0" fill="rgb(238,127,5)" rx="2" ry="2" /> ><text x="90.63" y="239.5" ></text> ></g> ><g > ><title>perf_ioctl (17 samples, 11.18%)</title><rect x="747.5" y="789" width="132.0" height="15.0" fill="rgb(222,52,53)" rx="2" ry="2" /> ><text x="750.50" y="799.5" >perf_ioctl</text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="739.7" y="885" width="7.8" height="15.0" fill="rgb(217,49,12)" rx="2" ry="2" /> ><text x="742.74" y="895.5" ></text> ></g> ><g > ><title>__libc_write (5 samples, 3.29%)</title><rect x="879.5" y="869" width="38.8" height="15.0" fill="rgb(241,99,43)" rx="2" ry="2" /> ><text x="882.47" y="879.5" >__l..</text> ></g> ><g > ><title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="926.1" y="741" width="7.7" height="15.0" fill="rgb(238,9,49)" rx="2" ry="2" /> ><text x="929.05" y="751.5" ></text> ></g> ><g > ><title>ProcessPointerEvent (18 samples, 11.84%)</title><rect x="320.5" y="869" width="139.8" height="15.0" fill="rgb(236,163,2)" rx="2" ry="2" /> ><text x="323.53" y="879.5" >ProcessPointerEvent</text> ></g> ><g > ><title>poll (1 samples, 0.66%)</title><rect x="1174.5" y="773" width="7.7" height="15.0" fill="rgb(236,76,6)" rx="2" ry="2" /> ><text x="1177.47" y="783.5" ></text> ></g> ><g > ><title>[xscreensaver] (3 samples, 1.97%)</title><rect x="1166.7" y="981" width="23.3" height="15.0" fill="rgb(208,196,22)" rx="2" ry="2" /> ><text x="1169.71" y="991.5" >[..</text> ></g> ><g > ><title>in_lock_functions (1 samples, 0.66%)</title><rect x="87.6" y="197" width="7.8" height="15.0" fill="rgb(223,139,24)" rx="2" ry="2" /> ><text x="90.63" y="207.5" ></text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (4 samples, 2.63%)</title><rect x="607.8" y="693" width="31.0" height="15.0" fill="rgb(205,58,17)" rx="2" ry="2" /> ><text x="610.76" y="703.5" >[l..</text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="700.9" y="325" width="7.8" height="15.0" fill="rgb(221,115,3)" rx="2" ry="2" /> ><text x="703.92" y="335.5" ></text> ></g> ><g > ><title>__setplane_atomic (2 samples, 1.32%)</title><rect x="367.1" y="373" width="15.5" height="15.0" fill="rgb(229,156,43)" rx="2" ry="2" /> ><text x="370.11" y="383.5" ></text> ></g> ><g > ><title>el0_svc (3 samples, 1.97%)</title><rect x="437.0" y="597" width="23.3" height="15.0" fill="rgb(231,198,36)" rx="2" ry="2" /> ><text x="439.97" y="607.5" >e..</text> ></g> ><g > ><title>thread_start (1 samples, 0.66%)</title><rect x="522.4" y="981" width="7.7" height="15.0" fill="rgb(213,45,15)" rx="2" ry="2" /> ><text x="525.37" y="991.5" ></text> ></g> ><g > ><title>QStyleHelper::dpi (1 samples, 0.66%)</title><rect x="669.9" y="549" width="7.7" height="15.0" fill="rgb(216,136,30)" rx="2" ry="2" /> ><text x="672.87" y="559.5" ></text> ></g> ><g > ><title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="134.2" y="821" width="7.8" height="15.0" fill="rgb(232,180,49)" rx="2" ry="2" /> ><text x="137.21" y="831.5" ></text> ></g> ><g > ><title>lxqt-powermanag (1 samples, 0.66%)</title><rect x="561.2" y="997" width="7.7" height="15.0" fill="rgb(252,90,18)" rx="2" ry="2" /> ><text x="564.18" y="1007.5" ></text> ></g> ><g > ><title>_perf_event_enable (17 samples, 11.18%)</title><rect x="747.5" y="741" width="132.0" height="15.0" fill="rgb(224,56,11)" rx="2" ry="2" /> ><text x="750.50" y="751.5" >_perf_event_enable</text> ></g> ><g > ><title>ext4_finish_bio (1 samples, 0.66%)</title><rect x="545.7" y="885" width="7.7" height="15.0" fill="rgb(223,23,21)" rx="2" ry="2" /> ><text x="548.66" y="895.5" ></text> ></g> ><g > ><title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="242.9" y="597" width="7.8" height="15.0" fill="rgb(220,16,53)" rx="2" ry="2" /> ><text x="245.89" y="607.5" ></text> ></g> ><g > ><title>__libc_start_main (2 samples, 1.32%)</title><rect x="576.7" y="949" width="15.5" height="15.0" fill="rgb(238,59,26)" rx="2" ry="2" /> ><text x="579.71" y="959.5" ></text> ></g> ><g > ><title>QXcbConnection::xi2UpdateScrollingDevices (2 samples, 1.32%)</title><rect x="716.4" y="757" width="15.6" height="15.0" fill="rgb(239,54,26)" rx="2" ry="2" /> ><text x="719.45" y="767.5" ></text> ></g> ><g > ><title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="173.0" y="773" width="23.3" height="15.0" fill="rgb(243,189,0)" rx="2" ry="2" /> ><text x="176.03" y="783.5" >e..</text> ></g> ><g > ><title>drm_atomic_helper_commit_planes (4 samples, 2.63%)</title><rect x="72.1" y="325" width="31.1" height="15.0" fill="rgb(218,199,18)" rx="2" ry="2" /> ><text x="75.11" y="335.5" >dr..</text> ></g> ><g > ><title>do_el0_svc (1 samples, 0.66%)</title><rect x="242.9" y="789" width="7.8" height="15.0" fill="rgb(215,2,10)" rx="2" ry="2" /> ><text x="245.89" y="799.5" ></text> ></g> ><g > ><title>rpi_firmware_property_list (2 samples, 1.32%)</title><rect x="926.1" y="773" width="15.5" height="15.0" fill="rgb(213,150,12)" rx="2" ry="2" /> ><text x="929.05" y="783.5" ></text> ></g> ><g > ><title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="1073.6" y="757" width="7.7" height="15.0" fill="rgb(244,11,52)" rx="2" ry="2" /> ><text x="1076.55" y="767.5" ></text> ></g> ><g > ><title>shmem_alloc_page (1 samples, 0.66%)</title><rect x="289.5" y="309" width="7.7" height="15.0" fill="rgb(225,48,52)" rx="2" ry="2" /> ><text x="292.47" y="319.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit (2 samples, 1.32%)</title><rect x="343.8" y="277" width="15.5" height="15.0" fill="rgb(205,224,5)" rx="2" ry="2" /> ><text x="346.82" y="287.5" ></text> ></g> ><g > ><title>rpi_firmware_property_list (2 samples, 1.32%)</title><rect x="367.1" y="229" width="15.5" height="15.0" fill="rgb(228,144,31)" rx="2" ry="2" /> ><text x="370.11" y="239.5" ></text> ></g> ><g > ><title>drm_mode_cursor_universal (6 samples, 3.95%)</title><rect x="64.3" y="437" width="46.6" height="15.0" fill="rgb(249,188,9)" rx="2" ry="2" /> ><text x="67.34" y="447.5" >drm_..</text> ></g> ><g > ><title>[libQt5Core.so.5.15.2] (1 samples, 0.66%)</title><rect x="134.2" y="949" width="7.8" height="15.0" fill="rgb(226,27,26)" rx="2" ry="2" /> ><text x="137.21" y="959.5" ></text> ></g> ><g > ><title>xf86_crtc_set_cursor_position (2 samples, 1.32%)</title><rect x="460.3" y="837" width="15.5" height="15.0" fill="rgb(233,8,39)" rx="2" ry="2" /> ><text x="463.26" y="847.5" ></text> ></g> ><g > ><title>__mod_timer (1 samples, 0.66%)</title><rect x="933.8" y="725" width="7.8" height="15.0" fill="rgb(223,212,20)" rx="2" ry="2" /> ><text x="936.82" y="735.5" ></text> ></g> ><g > ><title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="600.0" y="709" width="7.8" height="15.0" fill="rgb(231,139,5)" rx="2" ry="2" /> ><text x="603.00" y="719.5" ></text> ></g> ><g > ><title>_start (1 samples, 0.66%)</title><rect x="918.3" y="981" width="7.8" height="15.0" fill="rgb(207,49,35)" rx="2" ry="2" /> ><text x="921.29" y="991.5" ></text> ></g> ><g > ><title>QCoreApplication::notifyInternal2 (9 samples, 5.92%)</title><rect x="600.0" y="789" width="69.9" height="15.0" fill="rgb(234,172,40)" rx="2" ry="2" /> ><text x="603.00" y="799.5" >QCoreAp..</text> ></g> ><g > ><title>__GI___poll (1 samples, 0.66%)</title><rect x="522.4" y="725" width="7.7" height="15.0" fill="rgb(242,34,26)" rx="2" ry="2" /> ><text x="525.37" y="735.5" ></text> ></g> ><g > ><title>miPointerDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="821" width="7.8" height="15.0" fill="rgb(230,143,31)" rx="2" ry="2" /> ><text x="238.13" y="831.5" ></text> ></g> ><g > ><title>hiddev_send_event.isra.0 (1 samples, 0.66%)</title><rect x="980.4" y="549" width="7.8" height="15.0" fill="rgb(214,175,6)" rx="2" ry="2" /> ><text x="983.39" y="559.5" ></text> ></g> ><g > ><title>QWidgetPrivate::sendPaintEvent (1 samples, 0.66%)</title><rect x="638.8" y="645" width="7.8" height="15.0" fill="rgb(234,93,18)" rx="2" ry="2" /> ><text x="641.82" y="655.5" ></text> ></g> ><g > ><title>drm_atomic_helper_commit_planes (2 samples, 1.32%)</title><rect x="367.1" y="277" width="15.5" height="15.0" fill="rgb(245,133,31)" rx="2" ry="2" /> ><text x="370.11" y="287.5" ></text> ></g> ><g > ><title>[pcmanfm-qt] (2 samples, 1.32%)</title><rect x="654.3" y="629" width="15.6" height="15.0" fill="rgb(236,70,44)" rx="2" ry="2" /> ><text x="657.34" y="639.5" ></text> ></g> ><g > ><title>el0_svc (2 samples, 1.32%)</title><rect x="25.5" y="853" width="15.6" height="15.0" fill="rgb(241,214,39)" rx="2" ry="2" /> ><text x="28.53" y="863.5" ></text> ></g> ><g > ><title>DeliverEventToWindowMask (1 samples, 0.66%)</title><rect x="305.0" y="773" width="7.8" height="15.0" fill="rgb(214,148,5)" rx="2" ry="2" /> ><text x="308.00" y="783.5" ></text> ></g> ><g > ><title>drm_ioctl_kernel (2 samples, 1.32%)</title><rect x="367.1" y="437" width="15.5" height="15.0" fill="rgb(221,122,20)" rx="2" ry="2" /> ><text x="370.11" y="447.5" ></text> ></g> ><g > ><title>__sys_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="661" width="7.8" height="15.0" fill="rgb(221,179,16)" rx="2" ry="2" /> ><text x="1169.71" y="671.5" ></text> ></g> ><g > ><title>[libinput.so.10.13.0] (2 samples, 1.32%)</title><rect x="41.1" y="853" width="15.5" height="15.0" fill="rgb(249,127,33)" rx="2" ry="2" /> ><text x="44.05" y="863.5" ></text> ></g> ><g > ><title>_xcb_conn_wait (8 samples, 5.26%)</title><rect x="173.0" y="901" width="62.1" height="15.0" fill="rgb(234,180,28)" rx="2" ry="2" /> ><text x="176.03" y="911.5" >_xcb_c..</text> ></g> ><g > ><title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="600.0" y="693" width="7.8" height="15.0" fill="rgb(243,184,0)" rx="2" ry="2" /> ><text x="603.00" y="703.5" ></text> ></g> ><g > ><title>do_writev (3 samples, 1.97%)</title><rect x="382.6" y="501" width="23.3" height="15.0" fill="rgb(232,132,20)" rx="2" ry="2" /> ><text x="385.63" y="511.5" >d..</text> ></g> ><g > ><title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="661" width="7.7" height="15.0" fill="rgb(250,11,35)" rx="2" ry="2" /> ><text x="672.87" y="671.5" ></text> ></g> ><g > ><title>drm_mode_cursor_common (2 samples, 1.32%)</title><rect x="460.3" y="597" width="15.5" height="15.0" fill="rgb(234,127,48)" rx="2" ry="2" /> ><text x="463.26" y="607.5" ></text> ></g> ><g > ><title>usb_submit_urb (1 samples, 0.66%)</title><rect x="995.9" y="613" width="7.8" height="15.0" fill="rgb(227,164,4)" rx="2" ry="2" /> ><text x="998.92" y="623.5" ></text> ></g> ><g > ><title>vc4_plane_atomic_update (1 samples, 0.66%)</title><rect x="235.1" y="309" width="7.8" height="15.0" fill="rgb(250,140,21)" rx="2" ry="2" /> ><text x="238.13" y="319.5" ></text> ></g> ><g > ><title>do_translation_fault (1 samples, 0.66%)</title><rect x="910.5" y="581" width="7.8" height="15.0" fill="rgb(213,189,23)" rx="2" ry="2" /> ><text x="913.53" y="591.5" ></text> ></g> ><g > ><title>invoke_syscall (1 samples, 0.66%)</title><rect x="475.8" y="773" width="7.8" height="15.0" fill="rgb(247,1,9)" rx="2" ry="2" /> ><text x="478.79" y="783.5" ></text> ></g> ><g > ><title>GetXI2MaskByte (1 samples, 0.66%)</title><rect x="429.2" y="725" width="7.8" height="15.0" fill="rgb(242,130,13)" rx="2" ry="2" /> ><text x="432.21" y="735.5" ></text> ></g> ><g > ><title>InputThread (16 samples, 10.53%)</title><rect x="10.0" y="997" width="124.2" height="15.0" fill="rgb(235,106,50)" rx="2" ry="2" /> ><text x="13.00" y="1007.5" >InputThread</text> ></g> ><g > ><title>kmem_cache_alloc_trace (1 samples, 0.66%)</title><rect x="103.2" y="341" width="7.7" height="15.0" fill="rgb(225,149,19)" rx="2" ry="2" /> ><text x="106.16" y="351.5" ></text> ></g> ><g > ><title>QXcbConnection::xi2UpdateScrollingDevice (2 samples, 1.32%)</title><rect x="716.4" y="741" width="15.6" height="15.0" fill="rgb(230,182,40)" rx="2" ry="2" /> ><text x="719.45" y="751.5" ></text> ></g> ><g > ><title>do_iter_write (2 samples, 1.32%)</title><rect x="444.7" y="485" width="15.6" height="15.0" fill="rgb(226,35,3)" rx="2" ry="2" /> ><text x="447.74" y="495.5" ></text> ></g> ><g > ><title>worker_thread (1 samples, 0.66%)</title><rect x="545.7" y="949" width="7.7" height="15.0" fill="rgb(253,26,4)" rx="2" ry="2" /> ><text x="548.66" y="959.5" ></text> ></g> ><g > ><title>g_main_context_dispatch (1 samples, 0.66%)</title><rect x="522.4" y="885" width="7.7" height="15.0" fill="rgb(218,105,1)" rx="2" ry="2" /> ><text x="525.37" y="895.5" ></text> ></g> ><g > ><title>xf86_crtc_set_cursor_position (3 samples, 1.97%)</title><rect x="359.3" y="645" width="23.3" height="15.0" fill="rgb(229,226,52)" rx="2" ry="2" /> ><text x="362.34" y="655.5" >x..</text> ></g> ><g > ><title>drm_atomic_get_crtc_state (1 samples, 0.66%)</title><rect x="103.2" y="373" width="7.7" height="15.0" fill="rgb(225,35,2)" rx="2" ry="2" /> ><text x="106.16" y="383.5" ></text> ></g> ><g > ><title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="700.9" y="517" width="7.8" height="15.0" fill="rgb(223,122,2)" rx="2" ry="2" /> ><text x="703.92" y="527.5" ></text> ></g> ><g > ><title>X_ (37 samples, 24.34%)</title><rect x="235.1" y="997" width="287.3" height="15.0" fill="rgb(218,42,13)" rx="2" ry="2" /> ><text x="238.13" y="1007.5" >X_</text> ></g> ><g > ><title>xcb_wait_for_reply64 (1 samples, 0.66%)</title><rect x="1174.5" y="821" width="7.7" height="15.0" fill="rgb(234,149,14)" rx="2" ry="2" /> ><text x="1177.47" y="831.5" ></text> ></g> ><g > ><title>ext4_end_io_rsv_work (1 samples, 0.66%)</title><rect x="545.7" y="917" width="7.7" height="15.0" fill="rgb(223,51,12)" rx="2" ry="2" /> ><text x="548.66" y="927.5" ></text> ></g> ><g > ><title>eventToKeyButtonPointer (1 samples, 0.66%)</title><rect x="312.8" y="789" width="7.7" height="15.0" fill="rgb(215,73,9)" rx="2" ry="2" /> ><text x="315.76" y="799.5" ></text> ></g> ><g > ><title>glamor_upload_region (1 samples, 0.66%)</title><rect x="514.6" y="965" width="7.8" height="15.0" fill="rgb(220,80,10)" rx="2" ry="2" /> ><text x="517.61" y="975.5" ></text> ></g> ><g > ><title>arch_local_irq_restore (1 samples, 0.66%)</title><rect x="305.0" y="309" width="7.8" height="15.0" fill="rgb(246,174,1)" rx="2" ry="2" /> ><text x="308.00" y="319.5" ></text> ></g> ></g> ></svg>
<?xml version="1.0" standalone="no"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" width="1200" height="1062" onload="init(evt)" viewBox="0 0 1200 1062" 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="1062.0" fill="url(#background)" /> <text id="title" x="600.00" y="24" >Slow cursor (5.15.33-rpi)</text> <text id="details" x="10.00" y="1045" > </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="1045" > </text> <g id="frames"> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="677.6" y="661" width="7.8" height="15.0" fill="rgb(206,3,14)" rx="2" ry="2" /> <text x="680.63" y="671.5" ></text> </g> <g > <title>___sys_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="645" width="7.8" height="15.0" fill="rgb(243,79,20)" rx="2" ry="2" /> <text x="1169.71" y="655.5" ></text> </g> <g > <title>do_epoll_wait (3 samples, 1.97%)</title><rect x="491.3" y="741" width="23.3" height="15.0" fill="rgb(238,65,31)" rx="2" ry="2" /> <text x="494.32" y="751.5" >d..</text> </g> <g > <title>__arm64_sys_epoll_pwait (3 samples, 1.97%)</title><rect x="491.3" y="773" width="23.3" height="15.0" fill="rgb(221,55,26)" rx="2" ry="2" /> <text x="494.32" y="783.5" >_..</text> </g> <g > <title>kmalloc_reserve (1 samples, 0.66%)</title><rect x="305.0" y="357" width="7.8" height="15.0" fill="rgb(206,61,9)" rx="2" ry="2" /> <text x="308.00" y="367.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="1151.2" y="757" width="7.7" height="15.0" fill="rgb(233,112,0)" rx="2" ry="2" /> <text x="1154.18" y="767.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="918.3" y="645" width="7.8" height="15.0" fill="rgb(235,156,12)" rx="2" ry="2" /> <text x="921.29" y="655.5" ></text> </g> <g > <title>ProcChangeWindowAttributes (1 samples, 0.66%)</title><rect x="235.1" y="917" width="7.8" height="15.0" fill="rgb(227,65,45)" rx="2" ry="2" /> <text x="238.13" y="927.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="522.4" y="709" width="7.7" height="15.0" fill="rgb(251,136,54)" rx="2" ry="2" /> <text x="525.37" y="719.5" ></text> </g> <g > <title>__ftruncate64 (1 samples, 0.66%)</title><rect x="1151.2" y="853" width="7.7" height="15.0" fill="rgb(227,72,53)" rx="2" ry="2" /> <text x="1154.18" y="863.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="568.9" y="901" width="7.8" height="15.0" fill="rgb(240,128,7)" rx="2" ry="2" /> <text x="571.95" y="911.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="576.7" y="773" width="7.8" height="15.0" fill="rgb(252,112,11)" rx="2" ry="2" /> <text x="579.71" y="783.5" ></text> </g> <g > <title>drmModeMoveCursor (6 samples, 3.95%)</title><rect x="64.3" y="677" width="46.6" height="15.0" fill="rgb(207,173,54)" rx="2" ry="2" /> <text x="67.34" y="687.5" >drmM..</text> </g> <g > <title>FlushClient (1 samples, 0.66%)</title><rect x="305.0" y="693" width="7.8" height="15.0" fill="rgb(223,217,33)" rx="2" ry="2" /> <text x="308.00" y="703.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.66%)</title><rect x="1073.6" y="885" width="7.7" height="15.0" fill="rgb(213,173,1)" rx="2" ry="2" /> <text x="1076.55" y="895.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 1.32%)</title><rect x="343.8" y="517" width="15.5" height="15.0" fill="rgb(211,81,26)" rx="2" ry="2" /> <text x="346.82" y="527.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="25.5" y="821" width="15.6" height="15.0" fill="rgb(222,217,17)" rx="2" ry="2" /> <text x="28.53" y="831.5" ></text> </g> <g > <title>ktime_get_coarse_real_ts64 (1 samples, 0.66%)</title><rect x="33.3" y="693" width="7.8" height="15.0" fill="rgb(215,84,21)" rx="2" ry="2" /> <text x="36.29" y="703.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="173.0" y="837" width="23.3" height="15.0" fill="rgb(219,185,53)" rx="2" ry="2" /> <text x="176.03" y="847.5" >e..</text> </g> <g > <title>kthread (1 samples, 0.66%)</title><rect x="530.1" y="965" width="7.8" height="15.0" fill="rgb(226,131,2)" rx="2" ry="2" /> <text x="533.13" y="975.5" ></text> </g> <g > <title>_xcb_in_read (1 samples, 0.66%)</title><rect x="1166.7" y="805" width="7.8" height="15.0" fill="rgb(205,13,50)" rx="2" ry="2" /> <text x="1169.71" y="815.5" ></text> </g> <g > <title>ep_done_scan (1 samples, 0.66%)</title><rect x="118.7" y="757" width="7.7" height="15.0" fill="rgb(251,101,3)" rx="2" ry="2" /> <text x="121.68" y="767.5" ></text> </g> <g > <title>miDoCopy (2 samples, 1.32%)</title><rect x="281.7" y="853" width="15.5" height="15.0" fill="rgb(234,205,35)" rx="2" ry="2" /> <text x="284.71" y="863.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="475.8" y="853" width="7.8" height="15.0" fill="rgb(245,147,50)" rx="2" ry="2" /> <text x="478.79" y="863.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="646.6" y="677" width="7.7" height="15.0" fill="rgb(217,35,6)" rx="2" ry="2" /> <text x="649.58" y="687.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (1 samples, 0.66%)</title><rect x="142.0" y="901" width="7.7" height="15.0" fill="rgb(247,116,25)" rx="2" ry="2" /> <text x="144.97" y="911.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="700.9" y="245" width="7.8" height="15.0" fill="rgb(249,137,28)" rx="2" ry="2" /> <text x="703.92" y="255.5" ></text> </g> <g > <title>drm_ioctl (1 samples, 0.66%)</title><rect x="235.1" y="501" width="7.8" height="15.0" fill="rgb(250,195,31)" rx="2" ry="2" /> <text x="238.13" y="511.5" ></text> </g> <g > <title>irq_exit (5 samples, 3.29%)</title><rect x="964.9" y="741" width="38.8" height="15.0" fill="rgb(210,198,18)" rx="2" ry="2" /> <text x="967.87" y="751.5" >irq..</text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (12 samples, 7.89%)</title><rect x="142.0" y="933" width="93.1" height="15.0" fill="rgb(244,63,37)" rx="2" ry="2" /> <text x="144.97" y="943.5" >[libQt5XcbQ..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="677.6" y="645" width="7.8" height="15.0" fill="rgb(239,176,50)" rx="2" ry="2" /> <text x="680.63" y="655.5" ></text> </g> <g > <title>QXcbConnection::processXcbEvents (3 samples, 1.97%)</title><rect x="708.7" y="805" width="23.3" height="15.0" fill="rgb(254,215,5)" rx="2" ry="2" /> <text x="711.68" y="815.5" >Q..</text> </g> <g > <title>__atan2 (2 samples, 1.32%)</title><rect x="41.1" y="805" width="15.5" height="15.0" fill="rgb(253,168,15)" rx="2" ry="2" /> <text x="44.05" y="815.5" ></text> </g> <g > <title>DeliverDeviceEvents (4 samples, 2.63%)</title><rect x="429.2" y="837" width="31.1" height="15.0" fill="rgb(248,133,37)" rx="2" ry="2" /> <text x="432.21" y="847.5" >De..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="918.3" y="565" width="7.8" height="15.0" fill="rgb(214,30,4)" rx="2" ry="2" /> <text x="921.29" y="575.5" ></text> </g> <g > <title>futex_wait_queue_me (2 samples, 1.32%)</title><rect x="180.8" y="693" width="15.5" height="15.0" fill="rgb(212,1,8)" rx="2" ry="2" /> <text x="183.79" y="703.5" ></text> </g> <g > <title>poll_for_response (1 samples, 0.66%)</title><rect x="584.5" y="821" width="7.7" height="15.0" fill="rgb(244,58,33)" rx="2" ry="2" /> <text x="587.47" y="831.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="173.0" y="821" width="23.3" height="15.0" fill="rgb(208,199,15)" rx="2" ry="2" /> <text x="176.03" y="831.5" >e..</text> </g> <g > <title>_XEventsQueued (1 samples, 0.66%)</title><rect x="584.5" y="837" width="7.7" height="15.0" fill="rgb(238,153,33)" rx="2" ry="2" /> <text x="587.47" y="847.5" ></text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="576.7" y="869" width="7.8" height="15.0" fill="rgb(236,73,20)" rx="2" ry="2" /> <text x="579.71" y="879.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="242.9" y="677" width="7.8" height="15.0" fill="rgb(216,78,45)" rx="2" ry="2" /> <text x="245.89" y="687.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (1 samples, 0.66%)</title><rect x="10.0" y="965" width="7.8" height="15.0" fill="rgb(215,47,18)" rx="2" ry="2" /> <text x="13.00" y="975.5" ></text> </g> <g > <title>Dispatch (36 samples, 23.68%)</title><rect x="235.1" y="933" width="279.5" height="15.0" fill="rgb(220,184,13)" rx="2" ry="2" /> <text x="238.13" y="943.5" >Dispatch</text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="110.9" y="901" width="23.3" height="15.0" fill="rgb(222,70,29)" rx="2" ry="2" /> <text x="113.92" y="911.5" >e..</text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="638.8" y="661" width="7.8" height="15.0" fill="rgb(230,143,13)" rx="2" ry="2" /> <text x="641.82" y="671.5" ></text> </g> <g > <title>lxqt-panel (1 samples, 0.66%)</title><rect x="553.4" y="997" width="7.8" height="15.0" fill="rgb(223,2,28)" rx="2" ry="2" /> <text x="556.42" y="1007.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="297.2" y="869" width="7.8" height="15.0" fill="rgb(230,66,46)" rx="2" ry="2" /> <text x="300.24" y="879.5" ></text> </g> <g > <title>QWidgetPrivate::paintBackground (4 samples, 2.63%)</title><rect x="607.8" y="709" width="31.0" height="15.0" fill="rgb(248,71,25)" rx="2" ry="2" /> <text x="610.76" y="719.5" >QW..</text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="437.0" y="565" width="23.3" height="15.0" fill="rgb(253,97,45)" rx="2" ry="2" /> <text x="439.97" y="575.5" >e..</text> </g> <g > <title>__GI___writev (3 samples, 1.97%)</title><rect x="437.0" y="645" width="23.3" height="15.0" fill="rgb(233,125,49)" rx="2" ry="2" /> <text x="439.97" y="655.5" >_..</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="134.2" y="805" width="7.8" height="15.0" fill="rgb(210,167,51)" rx="2" ry="2" /> <text x="137.21" y="815.5" ></text> </g> <g > <title>__ioctl (3 samples, 1.97%)</title><rect x="359.3" y="581" width="23.3" height="15.0" fill="rgb(250,34,50)" rx="2" ry="2" /> <text x="362.34" y="591.5" >_..</text> </g> <g > <title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="1073.6" y="821" width="7.7" height="15.0" fill="rgb(233,37,9)" rx="2" ry="2" /> <text x="1076.55" y="831.5" ></text> </g> <g > <title>_xcb_in_read (3 samples, 1.97%)</title><rect x="196.3" y="885" width="23.3" height="15.0" fill="rgb(254,216,7)" rx="2" ry="2" /> <text x="199.32" y="895.5" >_..</text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="869" width="7.8" height="15.0" fill="rgb(247,99,1)" rx="2" ry="2" /> <text x="478.79" y="879.5" ></text> </g> <g > <title>__usb_hcd_giveback_urb (3 samples, 1.97%)</title><rect x="980.4" y="645" width="23.3" height="15.0" fill="rgb(250,36,1)" rx="2" ry="2" /> <text x="983.39" y="655.5" >_..</text> </g> <g > <title>truncate_pagecache (1 samples, 0.66%)</title><rect x="1151.2" y="661" width="7.7" height="15.0" fill="rgb(230,101,31)" rx="2" ry="2" /> <text x="1154.18" y="671.5" ></text> </g> <g > <title>ospoll_wait (12 samples, 7.89%)</title><rect x="41.1" y="933" width="93.1" height="15.0" fill="rgb(216,122,44)" rx="2" ry="2" /> <text x="44.05" y="943.5" >ospoll_wait</text> </g> <g > <title>_start (36 samples, 23.68%)</title><rect x="235.1" y="981" width="279.5" height="15.0" fill="rgb(207,122,2)" rx="2" ry="2" /> <text x="238.13" y="991.5" >_start</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="693.2" y="741" width="15.5" height="15.0" fill="rgb(241,91,30)" rx="2" ry="2" /> <text x="696.16" y="751.5" ></text> </g> <g > <title>bmap (1 samples, 0.66%)</title><rect x="530.1" y="885" width="7.8" height="15.0" fill="rgb(217,97,29)" rx="2" ry="2" /> <text x="533.13" y="895.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="87.6" y="165" width="7.8" height="15.0" fill="rgb(241,193,3)" rx="2" ry="2" /> <text x="90.63" y="175.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="110.9" y="885" width="23.3" height="15.0" fill="rgb(246,64,51)" rx="2" ry="2" /> <text x="113.92" y="895.5" >e..</text> </g> <g > <title>TryClientEvents (3 samples, 1.97%)</title><rect x="382.6" y="709" width="23.3" height="15.0" fill="rgb(205,54,6)" rx="2" ry="2" /> <text x="385.63" y="719.5" >T..</text> </g> <g > <title>InputThreadFillPipe (2 samples, 1.32%)</title><rect x="25.5" y="933" width="15.6" height="15.0" fill="rgb(240,19,27)" rx="2" ry="2" /> <text x="28.53" y="943.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="475.8" y="789" width="7.8" height="15.0" fill="rgb(254,102,49)" rx="2" ry="2" /> <text x="478.79" y="799.5" ></text> </g> <g > <title>__arm64_sys_ioctl (2 samples, 1.32%)</title><rect x="460.3" y="661" width="15.5" height="15.0" fill="rgb(232,215,46)" rx="2" ry="2" /> <text x="463.26" y="671.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="460.3" y="693" width="15.5" height="15.0" fill="rgb(214,39,18)" rx="2" ry="2" /> <text x="463.26" y="703.5" ></text> </g> <g > <title>handle_mm_fault (1 samples, 0.66%)</title><rect x="910.5" y="549" width="7.8" height="15.0" fill="rgb(208,194,11)" rx="2" ry="2" /> <text x="913.53" y="559.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="638.8" y="613" width="7.8" height="15.0" fill="rgb(213,54,45)" rx="2" ry="2" /> <text x="641.82" y="623.5" ></text> </g> <g > <title>drm_ioctl (2 samples, 1.32%)</title><rect x="367.1" y="453" width="15.5" height="15.0" fill="rgb(235,209,12)" rx="2" ry="2" /> <text x="370.11" y="463.5" ></text> </g> <g > <title>do_futex (2 samples, 1.32%)</title><rect x="180.8" y="725" width="15.5" height="15.0" fill="rgb(206,11,20)" rx="2" ry="2" /> <text x="183.79" y="735.5" ></text> </g> <g > <title>shmem_read_mapping_page_gfp (1 samples, 0.66%)</title><rect x="289.5" y="341" width="7.7" height="15.0" fill="rgb(214,217,18)" rx="2" ry="2" /> <text x="292.47" y="351.5" ></text> </g> <g > <title>__mod_timer (1 samples, 0.66%)</title><rect x="468.0" y="373" width="7.8" height="15.0" fill="rgb(233,85,15)" rx="2" ry="2" /> <text x="471.03" y="383.5" ></text> </g> <g > <title>QToolButton::initStyleOption (1 samples, 0.66%)</title><rect x="677.6" y="629" width="7.8" height="15.0" fill="rgb(231,164,36)" rx="2" ry="2" /> <text x="680.63" y="639.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="235.1" y="613" width="7.8" height="15.0" fill="rgb(221,159,12)" rx="2" ry="2" /> <text x="238.13" y="623.5" ></text> </g> <g > <title>mbox_send_message (1 samples, 0.66%)</title><rect x="87.6" y="261" width="7.8" height="15.0" fill="rgb(207,26,49)" rx="2" ry="2" /> <text x="90.63" y="271.5" ></text> </g> <g > <title>drm_mode_cursor_universal (2 samples, 1.32%)</title><rect x="343.8" y="341" width="15.5" height="15.0" fill="rgb(238,126,32)" rx="2" ry="2" /> <text x="346.82" y="351.5" ></text> </g> <g > <title>ret_from_fork (2 samples, 1.32%)</title><rect x="926.1" y="981" width="15.5" height="15.0" fill="rgb(211,161,35)" rx="2" ry="2" /> <text x="929.05" y="991.5" ></text> </g> <g > <title>poll_for_next_event (1 samples, 0.66%)</title><rect x="1166.7" y="821" width="7.8" height="15.0" fill="rgb(226,33,41)" rx="2" ry="2" /> <text x="1169.71" y="831.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="405.9" y="485" width="7.8" height="15.0" fill="rgb(217,88,51)" rx="2" ry="2" /> <text x="408.92" y="495.5" ></text> </g> <g > <title>QPainter::fillRect (4 samples, 2.63%)</title><rect x="607.8" y="677" width="31.0" height="15.0" fill="rgb(230,74,45)" rx="2" ry="2" /> <text x="610.76" y="687.5" >QP..</text> </g> <g > <title>el1_interrupt (1 samples, 0.66%)</title><rect x="219.6" y="645" width="7.8" height="15.0" fill="rgb(252,163,0)" rx="2" ry="2" /> <text x="222.61" y="655.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.66%)</title><rect x="452.5" y="197" width="7.8" height="15.0" fill="rgb(229,184,24)" rx="2" ry="2" /> <text x="455.50" y="207.5" ></text> </g> <g > <title>ep_done_scan (1 samples, 0.66%)</title><rect x="126.4" y="725" width="7.8" height="15.0" fill="rgb(224,212,31)" rx="2" ry="2" /> <text x="129.45" y="735.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="789" width="7.8" height="15.0" fill="rgb(221,26,0)" rx="2" ry="2" /> <text x="1169.71" y="799.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="646.6" y="645" width="7.7" height="15.0" fill="rgb(232,46,31)" rx="2" ry="2" /> <text x="649.58" y="655.5" ></text> </g> <g > <title>st_TexSubImage (4 samples, 2.63%)</title><rect x="250.7" y="773" width="31.0" height="15.0" fill="rgb(217,91,34)" rx="2" ry="2" /> <text x="253.66" y="783.5" >st..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="522.4" y="661" width="7.7" height="15.0" fill="rgb(250,156,11)" rx="2" ry="2" /> <text x="525.37" y="671.5" ></text> </g> <g > <title>tasklet_action_common.constprop.0 (4 samples, 2.63%)</title><rect x="972.6" y="677" width="31.1" height="15.0" fill="rgb(236,204,16)" rx="2" ry="2" /> <text x="975.63" y="687.5" >ta..</text> </g> <g > <title>_xcb_in_read (1 samples, 0.66%)</title><rect x="584.5" y="773" width="7.7" height="15.0" fill="rgb(223,143,35)" rx="2" ry="2" /> <text x="587.47" y="783.5" ></text> </g> <g > <title>schedule_timeout (1 samples, 0.66%)</title><rect x="95.4" y="245" width="7.8" height="15.0" fill="rgb(216,61,43)" rx="2" ry="2" /> <text x="98.39" y="255.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="700.9" y="405" width="7.8" height="15.0" fill="rgb(236,41,9)" rx="2" ry="2" /> <text x="703.92" y="415.5" ></text> </g> <g > <title>schedule_timeout (1 samples, 0.66%)</title><rect x="933.8" y="741" width="7.8" height="15.0" fill="rgb(219,5,1)" rx="2" ry="2" /> <text x="936.82" y="751.5" ></text> </g> <g > <title>ChangeToCursor (1 samples, 0.66%)</title><rect x="235.1" y="869" width="7.8" height="15.0" fill="rgb(247,222,20)" rx="2" ry="2" /> <text x="238.13" y="879.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (2 samples, 1.32%)</title><rect x="654.3" y="693" width="15.6" height="15.0" fill="rgb(242,134,36)" rx="2" ry="2" /> <text x="657.34" y="703.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="305.0" y="437" width="7.8" height="15.0" fill="rgb(250,80,41)" rx="2" ry="2" /> <text x="308.00" y="447.5" ></text> </g> <g > <title>vc4_fkms_crtc_duplicate_state (1 samples, 0.66%)</title><rect x="103.2" y="357" width="7.7" height="15.0" fill="rgb(230,117,21)" rx="2" ry="2" /> <text x="106.16" y="367.5" ></text> </g> <g > <title>g_main_context_iterate (1 samples, 0.66%)</title><rect x="522.4" y="901" width="7.7" height="15.0" fill="rgb(223,73,48)" rx="2" ry="2" /> <text x="525.37" y="911.5" ></text> </g> <g > <title>[pcmanfm-qt] (2 samples, 1.32%)</title><rect x="654.3" y="645" width="15.6" height="15.0" fill="rgb(215,167,37)" rx="2" ry="2" /> <text x="657.34" y="655.5" ></text> </g> <g > <title>shmem_getpage_gfp (1 samples, 0.66%)</title><rect x="289.5" y="325" width="7.7" height="15.0" fill="rgb(223,194,3)" rx="2" ry="2" /> <text x="292.47" y="335.5" ></text> </g> <g > <title>__arm64_sys_write (1 samples, 0.66%)</title><rect x="33.3" y="789" width="7.8" height="15.0" fill="rgb(235,61,3)" rx="2" ry="2" /> <text x="36.29" y="799.5" ></text> </g> <g > <title>TryClientEvents (3 samples, 1.97%)</title><rect x="437.0" y="741" width="23.3" height="15.0" fill="rgb(220,151,46)" rx="2" ry="2" /> <text x="439.97" y="751.5" >T..</text> </g> <g > <title>default_idle_call (5 samples, 3.29%)</title><rect x="1042.5" y="917" width="38.8" height="15.0" fill="rgb(237,28,11)" rx="2" ry="2" /> <text x="1045.50" y="927.5" >def..</text> </g> <g > <title>[libQt5Gui.so.5.15.2] (4 samples, 2.63%)</title><rect x="607.8" y="645" width="31.0" height="15.0" fill="rgb(217,80,29)" rx="2" ry="2" /> <text x="610.76" y="655.5" >[l..</text> </g> <g > <title>handle_domain_irq (1 samples, 0.66%)</title><rect x="1073.6" y="789" width="7.7" height="15.0" fill="rgb(237,188,25)" rx="2" ry="2" /> <text x="1076.55" y="799.5" ></text> </g> <g > <title>sd_event_run (2 samples, 1.32%)</title><rect x="1151.2" y="933" width="15.5" height="15.0" fill="rgb(222,72,42)" rx="2" ry="2" /> <text x="1154.18" y="943.5" ></text> </g> <g > <title>[perf] (5 samples, 3.29%)</title><rect x="879.5" y="901" width="38.8" height="15.0" fill="rgb(218,103,20)" rx="2" ry="2" /> <text x="882.47" y="911.5" >[pe..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (9 samples, 5.92%)</title><rect x="600.0" y="741" width="69.9" height="15.0" fill="rgb(248,107,42)" rx="2" ry="2" /> <text x="603.00" y="751.5" >[libQt5..</text> </g> <g > <title>QPalette::operator= (1 samples, 0.66%)</title><rect x="677.6" y="597" width="7.8" height="15.0" fill="rgb(217,8,5)" rx="2" ry="2" /> <text x="680.63" y="607.5" ></text> </g> <g > <title>miSpriteTrace (1 samples, 0.66%)</title><rect x="421.4" y="805" width="7.8" height="15.0" fill="rgb(219,148,44)" rx="2" ry="2" /> <text x="424.45" y="815.5" ></text> </g> <g > <title>__primary_switched (13 samples, 8.55%)</title><rect x="941.6" y="981" width="100.9" height="15.0" fill="rgb(220,204,3)" rx="2" ry="2" /> <text x="944.58" y="991.5" >__primary_sw..</text> </g> <g > <title>QCommonStyle::pixelMetric (1 samples, 0.66%)</title><rect x="669.9" y="581" width="7.7" height="15.0" fill="rgb(242,224,20)" rx="2" ry="2" /> <text x="672.87" y="591.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="297.2" y="853" width="7.8" height="15.0" fill="rgb(230,226,17)" rx="2" ry="2" /> <text x="300.24" y="863.5" ></text> </g> <g > <title>drm_mode_cursor_common (2 samples, 1.32%)</title><rect x="343.8" y="357" width="15.5" height="15.0" fill="rgb(226,48,18)" rx="2" ry="2" /> <text x="346.82" y="367.5" ></text> </g> <g > <title>QWidgetPrivate::sendPaintEvent (1 samples, 0.66%)</title><rect x="646.6" y="629" width="7.7" height="15.0" fill="rgb(240,44,22)" rx="2" ry="2" /> <text x="649.58" y="639.5" ></text> </g> <g > <title>[libfm-qt.so.10.0.0] (1 samples, 0.66%)</title><rect x="700.9" y="597" width="7.8" height="15.0" fill="rgb(231,25,20)" rx="2" ry="2" /> <text x="703.92" y="607.5" ></text> </g> <g > <title>QListView::paintEvent (1 samples, 0.66%)</title><rect x="638.8" y="549" width="7.8" height="15.0" fill="rgb(251,48,46)" rx="2" ry="2" /> <text x="641.82" y="559.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="1151.2" y="789" width="7.7" height="15.0" fill="rgb(223,25,2)" rx="2" ry="2" /> <text x="1154.18" y="799.5" ></text> </g> <g > <title>smpboot_thread_fn (1 samples, 0.66%)</title><rect x="568.9" y="949" width="7.8" height="15.0" fill="rgb(222,155,40)" rx="2" ry="2" /> <text x="571.95" y="959.5" ></text> </g> <g > <title>jbd2_journal_commit_transaction (1 samples, 0.66%)</title><rect x="530.1" y="933" width="7.8" height="15.0" fill="rgb(232,161,31)" rx="2" ry="2" /> <text x="533.13" y="943.5" ></text> </g> <g > <title>commit_tail (1 samples, 0.66%)</title><rect x="468.0" y="501" width="7.8" height="15.0" fill="rgb(222,82,41)" rx="2" ry="2" /> <text x="471.03" y="511.5" ></text> </g> <g > <title>set_target (2 samples, 1.32%)</title><rect x="926.1" y="901" width="15.5" height="15.0" fill="rgb(250,122,14)" rx="2" ry="2" /> <text x="929.05" y="911.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="537.9" y="917" width="7.8" height="15.0" fill="rgb(239,193,15)" rx="2" ry="2" /> <text x="540.89" y="927.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="700.9" y="693" width="7.8" height="15.0" fill="rgb(212,140,19)" rx="2" ry="2" /> <text x="703.92" y="703.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="1182.2" y="869" width="7.8" height="15.0" fill="rgb(207,162,21)" rx="2" ry="2" /> <text x="1185.24" y="879.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (2 samples, 1.32%)</title><rect x="41.1" y="837" width="15.5" height="15.0" fill="rgb(207,96,42)" rx="2" ry="2" /> <text x="44.05" y="847.5" ></text> </g> <g > <title>xcb_wait_for_reply (2 samples, 1.32%)</title><rect x="716.4" y="725" width="15.6" height="15.0" fill="rgb(237,161,6)" rx="2" ry="2" /> <text x="719.45" y="735.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="739.7" y="853" width="7.8" height="15.0" fill="rgb(252,139,33)" rx="2" ry="2" /> <text x="742.74" y="863.5" ></text> </g> <g > <title>__fdget_pos (1 samples, 0.66%)</title><rect x="405.9" y="469" width="7.8" height="15.0" fill="rgb(213,137,35)" rx="2" ry="2" /> <text x="408.92" y="479.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.66%)</title><rect x="305.0" y="725" width="7.8" height="15.0" fill="rgb(205,121,38)" rx="2" ry="2" /> <text x="308.00" y="735.5" ></text> </g> <g > <title>__ioctl (1 samples, 0.66%)</title><rect x="235.1" y="629" width="7.8" height="15.0" fill="rgb(245,229,8)" rx="2" ry="2" /> <text x="238.13" y="639.5" ></text> </g> <g > <title>DeliverEventToInputClients (4 samples, 2.63%)</title><rect x="429.2" y="757" width="31.1" height="15.0" fill="rgb(253,54,23)" rx="2" ry="2" /> <text x="432.21" y="767.5" >De..</text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="499.1" y="677" width="7.7" height="15.0" fill="rgb(254,173,11)" rx="2" ry="2" /> <text x="502.08" y="687.5" ></text> </g> <g > <title>XQueryPointer (1 samples, 0.66%)</title><rect x="1174.5" y="853" width="7.7" height="15.0" fill="rgb(207,59,8)" rx="2" ry="2" /> <text x="1177.47" y="863.5" ></text> </g> <g > <title>ext4_bmap (1 samples, 0.66%)</title><rect x="530.1" y="869" width="7.8" height="15.0" fill="rgb(246,170,25)" rx="2" ry="2" /> <text x="533.13" y="879.5" ></text> </g> <g > <title>QFrame::event (1 samples, 0.66%)</title><rect x="700.9" y="629" width="7.8" height="15.0" fill="rgb(207,214,22)" rx="2" ry="2" /> <text x="703.92" y="639.5" ></text> </g> <g > <title>__libc_start_main (3 samples, 1.97%)</title><rect x="1166.7" y="965" width="23.3" height="15.0" fill="rgb(254,185,32)" rx="2" ry="2" /> <text x="1169.71" y="975.5" >_..</text> </g> <g > <title>_start (17 samples, 11.18%)</title><rect x="600.0" y="981" width="132.0" height="15.0" fill="rgb(220,51,7)" rx="2" ry="2" /> <text x="603.00" y="991.5" >_start</text> </g> <g > <title>msg_submit (1 samples, 0.66%)</title><rect x="87.6" y="245" width="7.8" height="15.0" fill="rgb(232,203,52)" rx="2" ry="2" /> <text x="90.63" y="255.5" ></text> </g> <g > <title>policy_node (1 samples, 0.66%)</title><rect x="289.5" y="293" width="7.7" height="15.0" fill="rgb(221,116,21)" rx="2" ry="2" /> <text x="292.47" y="303.5" ></text> </g> <g > <title>ktime_get_coarse_real_ts64 (1 samples, 0.66%)</title><rect x="165.3" y="789" width="7.7" height="15.0" fill="rgb(231,189,36)" rx="2" ry="2" /> <text x="168.26" y="799.5" ></text> </g> <g > <title>qterminal (1 samples, 0.66%)</title><rect x="918.3" y="997" width="7.8" height="15.0" fill="rgb(251,198,14)" rx="2" ry="2" /> <text x="921.29" y="1007.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (1 samples, 0.66%)</title><rect x="351.6" y="229" width="7.7" height="15.0" fill="rgb(248,26,19)" rx="2" ry="2" /> <text x="354.58" y="239.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (1 samples, 0.66%)</title><rect x="685.4" y="661" width="7.8" height="15.0" fill="rgb(232,66,5)" rx="2" ry="2" /> <text x="688.39" y="671.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="757" width="7.7" height="15.0" fill="rgb(227,102,52)" rx="2" ry="2" /> <text x="587.47" y="767.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="669.9" y="757" width="7.7" height="15.0" fill="rgb(218,211,6)" rx="2" ry="2" /> <text x="672.87" y="767.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="918.3" y="469" width="7.8" height="15.0" fill="rgb(213,55,53)" rx="2" ry="2" /> <text x="921.29" y="479.5" ></text> </g> <g > <title>_xcb_in_read (1 samples, 0.66%)</title><rect x="600.0" y="613" width="7.8" height="15.0" fill="rgb(254,92,47)" rx="2" ry="2" /> <text x="603.00" y="623.5" ></text> </g> <g > <title>add_to_page_cache_lru (1 samples, 0.66%)</title><rect x="902.8" y="597" width="7.7" height="15.0" fill="rgb(217,178,25)" rx="2" ry="2" /> <text x="905.76" y="607.5" ></text> </g> <g > <title>cpu_startup_entry (13 samples, 8.55%)</title><rect x="941.6" y="917" width="100.9" height="15.0" fill="rgb(242,39,0)" rx="2" ry="2" /> <text x="944.58" y="927.5" >cpu_startup_..</text> </g> <g > <title>__schedule (2 samples, 1.32%)</title><rect x="180.8" y="661" width="15.5" height="15.0" fill="rgb(235,135,49)" rx="2" ry="2" /> <text x="183.79" y="671.5" ></text> </g> <g > <title>__libc_start_main (17 samples, 11.18%)</title><rect x="600.0" y="965" width="132.0" height="15.0" fill="rgb(249,24,7)" rx="2" ry="2" /> <text x="603.00" y="975.5" >__libc_start_main</text> </g> <g > <title>__schedule (6 samples, 3.95%)</title><rect x="1089.1" y="901" width="46.6" height="15.0" fill="rgb(208,60,23)" rx="2" ry="2" /> <text x="1092.08" y="911.5" >__sc..</text> </g> <g > <title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="219.6" y="613" width="7.8" height="15.0" fill="rgb(226,222,12)" rx="2" ry="2" /> <text x="222.61" y="623.5" ></text> </g> <g > <title>clk_change_rate (2 samples, 1.32%)</title><rect x="926.1" y="821" width="15.5" height="15.0" fill="rgb(209,104,1)" rx="2" ry="2" /> <text x="929.05" y="831.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="305.0" y="629" width="7.8" height="15.0" fill="rgb(253,106,0)" rx="2" ry="2" /> <text x="308.00" y="639.5" ></text> </g> <g > <title>drm_gem_get_pages (1 samples, 0.66%)</title><rect x="289.5" y="357" width="7.7" height="15.0" fill="rgb(236,97,53)" rx="2" ry="2" /> <text x="292.47" y="367.5" ></text> </g> <g > <title>glamor_upload_boxes (2 samples, 1.32%)</title><rect x="281.7" y="757" width="15.5" height="15.0" fill="rgb(209,125,49)" rx="2" ry="2" /> <text x="284.71" y="767.5" ></text> </g> <g > <title>QApplication::notify (1 samples, 0.66%)</title><rect x="700.9" y="677" width="7.8" height="15.0" fill="rgb(238,121,37)" rx="2" ry="2" /> <text x="703.92" y="687.5" ></text> </g> <g > <title>DeviceEnterNotifies (1 samples, 0.66%)</title><rect x="413.7" y="773" width="7.7" height="15.0" fill="rgb(244,127,42)" rx="2" ry="2" /> <text x="416.68" y="783.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (1 samples, 0.66%)</title><rect x="468.0" y="469" width="7.8" height="15.0" fill="rgb(218,189,6)" rx="2" ry="2" /> <text x="471.03" y="479.5" ></text> </g> <g > <title>ProcessDeviceEvent (2 samples, 1.32%)</title><rect x="305.0" y="853" width="15.5" height="15.0" fill="rgb(233,164,53)" rx="2" ry="2" /> <text x="308.00" y="863.5" ></text> </g> <g > <title>QFrame::event (1 samples, 0.66%)</title><rect x="646.6" y="581" width="7.7" height="15.0" fill="rgb(245,114,16)" rx="2" ry="2" /> <text x="649.58" y="591.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="1166.7" y="693" width="7.8" height="15.0" fill="rgb(245,15,30)" rx="2" ry="2" /> <text x="1169.71" y="703.5" ></text> </g> <g > <title>schedule_hrtimeout_range (1 samples, 0.66%)</title><rect x="227.4" y="725" width="7.7" height="15.0" fill="rgb(234,184,50)" rx="2" ry="2" /> <text x="230.37" y="735.5" ></text> </g> <g > <title>glamor_put_image (4 samples, 2.63%)</title><rect x="250.7" y="885" width="31.0" height="15.0" fill="rgb(237,57,22)" rx="2" ry="2" /> <text x="253.66" y="895.5" >gl..</text> </g> <g > <title>file_update_time (1 samples, 0.66%)</title><rect x="33.3" y="709" width="7.8" height="15.0" fill="rgb(233,62,17)" rx="2" ry="2" /> <text x="36.29" y="719.5" ></text> </g> <g > <title>g_socket_condition_check (1 samples, 0.66%)</title><rect x="522.4" y="741" width="7.7" height="15.0" fill="rgb(241,153,51)" rx="2" ry="2" /> <text x="525.37" y="751.5" ></text> </g> <g > <title>glTexSubImage2D (1 samples, 0.66%)</title><rect x="514.6" y="949" width="7.8" height="15.0" fill="rgb(237,8,54)" rx="2" ry="2" /> <text x="517.61" y="959.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (1 samples, 0.66%)</title><rect x="235.1" y="325" width="7.8" height="15.0" fill="rgb(248,202,26)" rx="2" ry="2" /> <text x="238.13" y="335.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="491.3" y="837" width="23.3" height="15.0" fill="rgb(224,68,0)" rx="2" ry="2" /> <text x="494.32" y="847.5" >e..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="677.6" y="709" width="15.6" height="15.0" fill="rgb(248,210,23)" rx="2" ry="2" /> <text x="680.63" y="719.5" ></text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="227.4" y="693" width="7.7" height="15.0" fill="rgb(240,75,21)" rx="2" ry="2" /> <text x="230.37" y="703.5" ></text> </g> <g > <title>glamor_upload_region (4 samples, 2.63%)</title><rect x="250.7" y="853" width="31.0" height="15.0" fill="rgb(251,105,2)" rx="2" ry="2" /> <text x="253.66" y="863.5" >gl..</text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="747.5" y="725" width="7.8" height="15.0" fill="rgb(224,127,9)" rx="2" ry="2" /> <text x="750.50" y="735.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="398.2" y="357" width="7.7" height="15.0" fill="rgb(212,57,45)" rx="2" ry="2" /> <text x="401.16" y="367.5" ></text> </g> <g > <title>el0t_64_sync_handler (6 samples, 3.95%)</title><rect x="64.3" y="597" width="46.6" height="15.0" fill="rgb(220,119,54)" rx="2" ry="2" /> <text x="67.34" y="607.5" >el0t..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="561.2" y="917" width="7.7" height="15.0" fill="rgb(237,138,4)" rx="2" ry="2" /> <text x="564.18" y="927.5" ></text> </g> <g > <title>do_epoll_wait (3 samples, 1.97%)</title><rect x="110.9" y="773" width="23.3" height="15.0" fill="rgb(230,55,40)" rx="2" ry="2" /> <text x="113.92" y="783.5" >d..</text> </g> <g > <title>__arm64_sys_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="469" width="7.7" height="15.0" fill="rgb(210,9,43)" rx="2" ry="2" /> <text x="292.47" y="479.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="242.9" y="773" width="7.8" height="15.0" fill="rgb(217,47,40)" rx="2" ry="2" /> <text x="245.89" y="783.5" ></text> </g> <g > <title>drm_crtc_commit_wait (1 samples, 0.66%)</title><rect x="343.8" y="229" width="7.8" height="15.0" fill="rgb(253,36,52)" rx="2" ry="2" /> <text x="346.82" y="239.5" ></text> </g> <g > <title>ext4_file_write_iter (5 samples, 3.29%)</title><rect x="879.5" y="693" width="38.8" height="15.0" fill="rgb(237,34,48)" rx="2" ry="2" /> <text x="882.47" y="703.5" >ext..</text> </g> <g > <title>futex_abstimed_wait_cancelable (1 samples, 0.66%)</title><rect x="134.2" y="853" width="7.8" height="15.0" fill="rgb(228,84,30)" rx="2" ry="2" /> <text x="137.21" y="863.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="700.9" y="501" width="7.8" height="15.0" fill="rgb(232,137,6)" rx="2" ry="2" /> <text x="703.92" y="511.5" ></text> </g> <g > <title>start_thread (1 samples, 0.66%)</title><rect x="134.2" y="965" width="7.8" height="15.0" fill="rgb(251,215,45)" rx="2" ry="2" /> <text x="137.21" y="975.5" ></text> </g> <g > <title>__arm64_sys_write (1 samples, 0.66%)</title><rect x="149.7" y="773" width="7.8" height="15.0" fill="rgb(225,60,19)" rx="2" ry="2" /> <text x="152.74" y="783.5" ></text> </g> <g > <title>g_wakeup_signal (1 samples, 0.66%)</title><rect x="149.7" y="901" width="7.8" height="15.0" fill="rgb(210,176,51)" rx="2" ry="2" /> <text x="152.74" y="911.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="33.3" y="805" width="7.8" height="15.0" fill="rgb(230,125,24)" rx="2" ry="2" /> <text x="36.29" y="815.5" ></text> </g> <g > <title>drmModeMoveCursor (3 samples, 1.97%)</title><rect x="359.3" y="629" width="23.3" height="15.0" fill="rgb(207,198,16)" rx="2" ry="2" /> <text x="362.34" y="639.5" >d..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="149.7" y="789" width="7.8" height="15.0" fill="rgb(245,126,24)" rx="2" ry="2" /> <text x="152.74" y="799.5" ></text> </g> <g > <title>QXcbConnection::xi2UpdateScrollingDevice (1 samples, 0.66%)</title><rect x="918.3" y="741" width="7.8" height="15.0" fill="rgb(244,90,9)" rx="2" ry="2" /> <text x="921.29" y="751.5" ></text> </g> <g > <title>__schedule (2 samples, 1.32%)</title><rect x="1011.4" y="869" width="15.6" height="15.0" fill="rgb(213,104,48)" rx="2" ry="2" /> <text x="1014.45" y="879.5" ></text> </g> <g > <title>InputThreadDoWork (14 samples, 9.21%)</title><rect x="25.5" y="949" width="108.7" height="15.0" fill="rgb(217,63,10)" rx="2" ry="2" /> <text x="28.53" y="959.5" >InputThreadDo..</text> </g> <g > <title>poll_for_event (1 samples, 0.66%)</title><rect x="1166.7" y="837" width="7.8" height="15.0" fill="rgb(233,164,54)" rx="2" ry="2" /> <text x="1169.71" y="847.5" ></text> </g> <g > <title>ChangeWindowAttributes (1 samples, 0.66%)</title><rect x="235.1" y="901" width="7.8" height="15.0" fill="rgb(211,170,9)" rx="2" ry="2" /> <text x="238.13" y="911.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="638.8" y="533" width="7.8" height="15.0" fill="rgb(205,20,10)" rx="2" ry="2" /> <text x="641.82" y="543.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="741" width="7.7" height="15.0" fill="rgb(238,103,21)" rx="2" ry="2" /> <text x="587.47" y="751.5" ></text> </g> <g > <title>__arm64_sys_futex (1 samples, 0.66%)</title><rect x="134.2" y="741" width="7.8" height="15.0" fill="rgb(252,84,38)" rx="2" ry="2" /> <text x="137.21" y="751.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.66%)</title><rect x="537.9" y="901" width="7.8" height="15.0" fill="rgb(250,26,1)" rx="2" ry="2" /> <text x="540.89" y="911.5" ></text> </g> <g > <title>doShmPutImage (2 samples, 1.32%)</title><rect x="281.7" y="901" width="15.5" height="15.0" fill="rgb(205,31,54)" rx="2" ry="2" /> <text x="284.71" y="911.5" ></text> </g> <g > <title>journal_file_post_change (1 samples, 0.66%)</title><rect x="1151.2" y="869" width="7.7" height="15.0" fill="rgb(217,155,46)" rx="2" ry="2" /> <text x="1154.18" y="879.5" ></text> </g> <g > <title>QGuiApplicationPrivate::processLeaveEvent (2 samples, 1.32%)</title><rect x="677.6" y="789" width="15.6" height="15.0" fill="rgb(251,149,49)" rx="2" ry="2" /> <text x="680.63" y="799.5" ></text> </g> <g > <title>iomap_bmap (1 samples, 0.66%)</title><rect x="530.1" y="853" width="7.8" height="15.0" fill="rgb(215,189,48)" rx="2" ry="2" /> <text x="533.13" y="863.5" ></text> </g> <g > <title>commit_tail (2 samples, 1.32%)</title><rect x="343.8" y="261" width="15.5" height="15.0" fill="rgb(233,153,20)" rx="2" ry="2" /> <text x="346.82" y="271.5" ></text> </g> <g > <title>xf86DriverLoadCursorARGB (5 samples, 3.29%)</title><rect x="320.5" y="661" width="38.8" height="15.0" fill="rgb(209,4,11)" rx="2" ry="2" /> <text x="323.53" y="671.5" >xf8..</text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="700.9" y="661" width="7.8" height="15.0" fill="rgb(242,131,12)" rx="2" ry="2" /> <text x="703.92" y="671.5" ></text> </g> <g > <title>WindowHasNewCursor (1 samples, 0.66%)</title><rect x="235.1" y="885" width="7.8" height="15.0" fill="rgb(252,61,2)" rx="2" ry="2" /> <text x="238.13" y="895.5" ></text> </g> <g > <title>hid_irq_in (3 samples, 1.97%)</title><rect x="980.4" y="629" width="23.3" height="15.0" fill="rgb(240,184,14)" rx="2" ry="2" /> <text x="983.39" y="639.5" >h..</text> </g> <g > <title>start_thread (14 samples, 9.21%)</title><rect x="25.5" y="965" width="108.7" height="15.0" fill="rgb(238,189,37)" rx="2" ry="2" /> <text x="28.53" y="975.5" >start_thread</text> </g> <g > <title>ext4_release_io_end (1 samples, 0.66%)</title><rect x="545.7" y="901" width="7.7" height="15.0" fill="rgb(229,139,50)" rx="2" ry="2" /> <text x="548.66" y="911.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="398.2" y="341" width="7.7" height="15.0" fill="rgb(221,151,0)" rx="2" ry="2" /> <text x="401.16" y="351.5" ></text> </g> <g > <title>st_TexSubImage (1 samples, 0.66%)</title><rect x="289.5" y="693" width="7.7" height="15.0" fill="rgb(213,20,47)" rx="2" ry="2" /> <text x="292.47" y="703.5" ></text> </g> <g > <title>cpu_startup_entry (14 samples, 9.21%)</title><rect x="1042.5" y="949" width="108.7" height="15.0" fill="rgb(218,5,18)" rx="2" ry="2" /> <text x="1045.50" y="959.5" >cpu_startup_e..</text> </g> <g > <title>_set_opp (2 samples, 1.32%)</title><rect x="926.1" y="869" width="15.5" height="15.0" fill="rgb(215,68,34)" rx="2" ry="2" /> <text x="929.05" y="879.5" ></text> </g> <g > <title>futex_wait_cancelable (3 samples, 1.97%)</title><rect x="173.0" y="853" width="23.3" height="15.0" fill="rgb(254,140,48)" rx="2" ry="2" /> <text x="176.03" y="863.5" >f..</text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.66%)</title><rect x="235.1" y="277" width="7.8" height="15.0" fill="rgb(245,46,24)" rx="2" ry="2" /> <text x="238.13" y="287.5" ></text> </g> <g > <title>QEventDispatcherGlib::wakeUp (1 samples, 0.66%)</title><rect x="708.7" y="741" width="7.7" height="15.0" fill="rgb(238,162,34)" rx="2" ry="2" /> <text x="711.68" y="751.5" ></text> </g> <g > <title>_xcb_out_send (1 samples, 0.66%)</title><rect x="700.9" y="421" width="7.8" height="15.0" fill="rgb(207,25,7)" rx="2" ry="2" /> <text x="703.92" y="431.5" ></text> </g> <g > <title>read_packet (1 samples, 0.66%)</title><rect x="211.8" y="869" width="7.8" height="15.0" fill="rgb(231,195,29)" rx="2" ry="2" /> <text x="214.84" y="879.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.66%)</title><rect x="219.6" y="581" width="7.8" height="15.0" fill="rgb(206,167,8)" rx="2" ry="2" /> <text x="222.61" y="591.5" ></text> </g> <g > <title>drm_ioctl (6 samples, 3.95%)</title><rect x="64.3" y="501" width="46.6" height="15.0" fill="rgb(225,87,7)" rx="2" ry="2" /> <text x="67.34" y="511.5" >drm_..</text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="805" width="7.7" height="15.0" fill="rgb(210,197,18)" rx="2" ry="2" /> <text x="525.37" y="815.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (1 samples, 0.66%)</title><rect x="351.6" y="197" width="7.7" height="15.0" fill="rgb(238,23,19)" rx="2" ry="2" /> <text x="354.58" y="207.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="180.8" y="757" width="15.5" height="15.0" fill="rgb(225,46,29)" rx="2" ry="2" /> <text x="183.79" y="767.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="1182.2" y="805" width="7.8" height="15.0" fill="rgb(210,175,42)" rx="2" ry="2" /> <text x="1185.24" y="815.5" ></text> </g> <g > <title>__ieee754_atan2 (2 samples, 1.32%)</title><rect x="41.1" y="789" width="15.5" height="15.0" fill="rgb(240,39,54)" rx="2" ry="2" /> <text x="44.05" y="799.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="242.9" y="757" width="7.8" height="15.0" fill="rgb(220,55,40)" rx="2" ry="2" /> <text x="245.89" y="767.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="110.9" y="853" width="23.3" height="15.0" fill="rgb(223,158,4)" rx="2" ry="2" /> <text x="113.92" y="863.5" >d..</text> </g> <g > <title>__do_softirq (1 samples, 0.66%)</title><rect x="1073.6" y="741" width="7.7" height="15.0" fill="rgb(210,130,44)" rx="2" ry="2" /> <text x="1076.55" y="751.5" ></text> </g> <g > <title>[xscreensaver] (1 samples, 0.66%)</title><rect x="1174.5" y="885" width="7.7" height="15.0" fill="rgb(217,34,46)" rx="2" ry="2" /> <text x="1177.47" y="895.5" ></text> </g> <g > <title>__arm64_sys_write (5 samples, 3.29%)</title><rect x="879.5" y="757" width="38.8" height="15.0" fill="rgb(248,184,10)" rx="2" ry="2" /> <text x="882.47" y="767.5" >__a..</text> </g> <g > <title>gic_handle_irq (1 samples, 0.66%)</title><rect x="219.6" y="597" width="7.8" height="15.0" fill="rgb(234,199,11)" rx="2" ry="2" /> <text x="222.61" y="607.5" ></text> </g> <g > <title>vfs_write (1 samples, 0.66%)</title><rect x="33.3" y="757" width="7.8" height="15.0" fill="rgb(217,136,42)" rx="2" ry="2" /> <text x="36.29" y="767.5" ></text> </g> <g > <title>raspberrypi_fw_set_rate (2 samples, 1.32%)</title><rect x="926.1" y="805" width="15.5" height="15.0" fill="rgb(224,223,24)" rx="2" ry="2" /> <text x="929.05" y="815.5" ></text> </g> <g > <title>__arm64_sys_ppoll (2 samples, 1.32%)</title><rect x="219.6" y="757" width="15.5" height="15.0" fill="rgb(252,40,30)" rx="2" ry="2" /> <text x="222.61" y="767.5" ></text> </g> <g > <title>wait_for_reply (1 samples, 0.66%)</title><rect x="918.3" y="709" width="7.8" height="15.0" fill="rgb(246,48,32)" rx="2" ry="2" /> <text x="921.29" y="719.5" ></text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="351.6" y="165" width="7.7" height="15.0" fill="rgb(245,43,50)" rx="2" ry="2" /> <text x="354.58" y="175.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="359.3" y="517" width="23.3" height="15.0" fill="rgb(209,27,30)" rx="2" ry="2" /> <text x="362.34" y="527.5" >d..</text> </g> <g > <title>kthread (1 samples, 0.66%)</title><rect x="545.7" y="965" width="7.7" height="15.0" fill="rgb(237,25,2)" rx="2" ry="2" /> <text x="548.66" y="975.5" ></text> </g> <g > <title>[unknown] (1 samples, 0.66%)</title><rect x="10.0" y="981" width="7.8" height="15.0" fill="rgb(211,157,4)" rx="2" ry="2" /> <text x="13.00" y="991.5" ></text> </g> <g > <title>drm_mode_cursor_common (2 samples, 1.32%)</title><rect x="367.1" y="405" width="15.5" height="15.0" fill="rgb(254,219,25)" rx="2" ry="2" /> <text x="370.11" y="415.5" ></text> </g> <g > <title>__GI___writev (3 samples, 1.97%)</title><rect x="382.6" y="645" width="23.3" height="15.0" fill="rgb(252,156,10)" rx="2" ry="2" /> <text x="385.63" y="655.5" >_..</text> </g> <g > <title>run_rebalance_domains (1 samples, 0.66%)</title><rect x="1073.6" y="725" width="7.7" height="15.0" fill="rgb(254,173,45)" rx="2" ry="2" /> <text x="1076.55" y="735.5" ></text> </g> <g > <title>__alloc_skb (1 samples, 0.66%)</title><rect x="305.0" y="373" width="7.8" height="15.0" fill="rgb(230,198,14)" rx="2" ry="2" /> <text x="308.00" y="383.5" ></text> </g> <g > <title>xf86ScreenMoveCursor (6 samples, 3.95%)</title><rect x="64.3" y="725" width="46.6" height="15.0" fill="rgb(212,137,45)" rx="2" ry="2" /> <text x="67.34" y="735.5" >xf86..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="561.2" y="933" width="7.7" height="15.0" fill="rgb(250,29,44)" rx="2" ry="2" /> <text x="564.18" y="943.5" ></text> </g> <g > <title>save_return_addr (1 samples, 0.66%)</title><rect x="367.1" y="117" width="7.8" height="15.0" fill="rgb(224,104,1)" rx="2" ry="2" /> <text x="370.11" y="127.5" ></text> </g> <g > <title>[perf] (24 samples, 15.79%)</title><rect x="732.0" y="949" width="186.3" height="15.0" fill="rgb(212,96,20)" rx="2" ry="2" /> <text x="734.97" y="959.5" >[perf]</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="235.1" y="581" width="7.8" height="15.0" fill="rgb(239,215,31)" rx="2" ry="2" /> <text x="238.13" y="591.5" ></text> </g> <g > <title>glTexSubImage2D (1 samples, 0.66%)</title><rect x="514.6" y="933" width="7.8" height="15.0" fill="rgb(253,197,35)" rx="2" ry="2" /> <text x="517.61" y="943.5" ></text> </g> <g > <title>drm_mode_cursor2_ioctl (2 samples, 1.32%)</title><rect x="343.8" y="373" width="15.5" height="15.0" fill="rgb(244,217,25)" rx="2" ry="2" /> <text x="346.82" y="383.5" ></text> </g> <g > <title>drm_atomic_commit (1 samples, 0.66%)</title><rect x="468.0" y="533" width="7.8" height="15.0" fill="rgb(246,0,7)" rx="2" ry="2" /> <text x="471.03" y="543.5" ></text> </g> <g > <title>CursorDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="837" width="7.8" height="15.0" fill="rgb(206,152,38)" rx="2" ry="2" /> <text x="238.13" y="847.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="452.5" y="325" width="7.8" height="15.0" fill="rgb(228,70,27)" rx="2" ry="2" /> <text x="455.50" y="335.5" ></text> </g> <g > <title>tick_nohz_idle_exit (2 samples, 1.32%)</title><rect x="1027.0" y="885" width="15.5" height="15.0" fill="rgb(220,178,24)" rx="2" ry="2" /> <text x="1029.97" y="895.5" ></text> </g> <g > <title>__pthread_mutex_unlock_usercnt (2 samples, 1.32%)</title><rect x="157.5" y="901" width="15.5" height="15.0" fill="rgb(222,79,52)" rx="2" ry="2" /> <text x="160.50" y="911.5" ></text> </g> <g > <title>ProcessKeyboardEvent (2 samples, 1.32%)</title><rect x="305.0" y="869" width="15.5" height="15.0" fill="rgb(216,205,5)" rx="2" ry="2" /> <text x="308.00" y="879.5" ></text> </g> <g > <title>drmIoctl (2 samples, 1.32%)</title><rect x="343.8" y="549" width="15.5" height="15.0" fill="rgb(210,83,46)" rx="2" ry="2" /> <text x="346.82" y="559.5" ></text> </g> <g > <title>DeviceEnterNotifies (1 samples, 0.66%)</title><rect x="413.7" y="789" width="7.7" height="15.0" fill="rgb(230,179,4)" rx="2" ry="2" /> <text x="416.68" y="799.5" ></text> </g> <g > <title>WriteEventsToClient (3 samples, 1.97%)</title><rect x="382.6" y="693" width="23.3" height="15.0" fill="rgb(226,220,23)" rx="2" ry="2" /> <text x="385.63" y="703.5" >W..</text> </g> <g > <title>drm_atomic_helper_update_plane (2 samples, 1.32%)</title><rect x="460.3" y="549" width="15.5" height="15.0" fill="rgb(215,196,50)" rx="2" ry="2" /> <text x="463.26" y="559.5" ></text> </g> <g > <title>__setplane_atomic (1 samples, 0.66%)</title><rect x="235.1" y="421" width="7.8" height="15.0" fill="rgb(224,212,24)" rx="2" ry="2" /> <text x="238.13" y="431.5" ></text> </g> <g > <title>arch_cpu_idle (5 samples, 3.29%)</title><rect x="1042.5" y="901" width="38.8" height="15.0" fill="rgb(217,100,15)" rx="2" ry="2" /> <text x="1045.50" y="911.5" >arc..</text> </g> <g > <title>schedule_hrtimeout_range_clock (2 samples, 1.32%)</title><rect x="499.1" y="709" width="15.5" height="15.0" fill="rgb(240,136,42)" rx="2" ry="2" /> <text x="502.08" y="719.5" ></text> </g> <g > <title>__arm64_sys_ppoll (1 samples, 0.66%)</title><rect x="724.2" y="549" width="7.8" height="15.0" fill="rgb(230,176,30)" rx="2" ry="2" /> <text x="727.21" y="559.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="242.9" y="837" width="7.8" height="15.0" fill="rgb(230,1,14)" rx="2" ry="2" /> <text x="245.89" y="847.5" ></text> </g> <g > <title>v3d_resource_create (1 samples, 0.66%)</title><rect x="289.5" y="677" width="7.7" height="15.0" fill="rgb(231,92,20)" rx="2" ry="2" /> <text x="292.47" y="687.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (1 samples, 0.66%)</title><rect x="235.1" y="293" width="7.8" height="15.0" fill="rgb(216,144,3)" rx="2" ry="2" /> <text x="238.13" y="303.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="242.9" y="725" width="7.8" height="15.0" fill="rgb(225,20,47)" rx="2" ry="2" /> <text x="245.89" y="735.5" ></text> </g> <g > <title>kjournald2 (1 samples, 0.66%)</title><rect x="530.1" y="949" width="7.8" height="15.0" fill="rgb(252,123,3)" rx="2" ry="2" /> <text x="533.13" y="959.5" ></text> </g> <g > <title>ret_from_fork (1 samples, 0.66%)</title><rect x="568.9" y="981" width="7.8" height="15.0" fill="rgb(218,124,22)" rx="2" ry="2" /> <text x="571.95" y="991.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="576.7" y="837" width="7.8" height="15.0" fill="rgb(212,228,38)" rx="2" ry="2" /> <text x="579.71" y="847.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="305.0" y="469" width="7.8" height="15.0" fill="rgb(233,7,9)" rx="2" ry="2" /> <text x="308.00" y="479.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="918.3" y="613" width="7.8" height="15.0" fill="rgb(246,38,39)" rx="2" ry="2" /> <text x="921.29" y="623.5" ></text> </g> <g > <title>FlushClient (3 samples, 1.97%)</title><rect x="382.6" y="677" width="23.3" height="15.0" fill="rgb(231,94,22)" rx="2" ry="2" /> <text x="385.63" y="687.5" >F..</text> </g> <g > <title>__libc_write (2 samples, 1.32%)</title><rect x="25.5" y="917" width="15.6" height="15.0" fill="rgb(242,73,15)" rx="2" ry="2" /> <text x="28.53" y="927.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.66%)</title><rect x="305.0" y="485" width="7.8" height="15.0" fill="rgb(224,7,31)" rx="2" ry="2" /> <text x="308.00" y="495.5" ></text> </g> <g > <title>handle_domain_irq (5 samples, 3.29%)</title><rect x="964.9" y="757" width="38.8" height="15.0" fill="rgb(231,100,12)" rx="2" ry="2" /> <text x="967.87" y="767.5" >han..</text> </g> <g > <title>xhci_urb_enqueue (1 samples, 0.66%)</title><rect x="995.9" y="581" width="7.8" height="15.0" fill="rgb(214,111,2)" rx="2" ry="2" /> <text x="998.92" y="591.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="305.0" y="533" width="7.8" height="15.0" fill="rgb(238,171,43)" rx="2" ry="2" /> <text x="308.00" y="543.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.66%)</title><rect x="1158.9" y="901" width="7.8" height="15.0" fill="rgb(240,129,4)" rx="2" ry="2" /> <text x="1161.95" y="911.5" ></text> </g> <g > <title>g_main_loop_run (2 samples, 1.32%)</title><rect x="576.7" y="917" width="15.5" height="15.0" fill="rgb(243,157,19)" rx="2" ry="2" /> <text x="579.71" y="927.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.66%)</title><rect x="242.9" y="885" width="7.8" height="15.0" fill="rgb(218,189,49)" rx="2" ry="2" /> <text x="245.89" y="895.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="918.3" y="373" width="7.8" height="15.0" fill="rgb(233,15,11)" rx="2" ry="2" /> <text x="921.29" y="383.5" ></text> </g> <g > <title>start_thread (12 samples, 7.89%)</title><rect x="142.0" y="965" width="93.1" height="15.0" fill="rgb(205,125,12)" rx="2" ry="2" /> <text x="144.97" y="975.5" >start_thread</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="709" width="7.7" height="15.0" fill="rgb(238,89,40)" rx="2" ry="2" /> <text x="672.87" y="719.5" ></text> </g> <g > <title>____sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="581" width="7.7" height="15.0" fill="rgb(246,98,31)" rx="2" ry="2" /> <text x="587.47" y="591.5" ></text> </g> <g > <title>kthread (2 samples, 1.32%)</title><rect x="926.1" y="965" width="15.5" height="15.0" fill="rgb(221,56,22)" rx="2" ry="2" /> <text x="929.05" y="975.5" ></text> </g> <g > <title>schedule_hrtimeout_range_clock (1 samples, 0.66%)</title><rect x="724.2" y="501" width="7.8" height="15.0" fill="rgb(208,34,51)" rx="2" ry="2" /> <text x="727.21" y="511.5" ></text> </g> <g > <title>maybe_add_creds (1 samples, 0.66%)</title><rect x="382.6" y="405" width="7.8" height="15.0" fill="rgb(207,11,47)" rx="2" ry="2" /> <text x="385.63" y="415.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="242.9" y="565" width="7.8" height="15.0" fill="rgb(223,87,5)" rx="2" ry="2" /> <text x="245.89" y="575.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="584.5" y="645" width="7.7" height="15.0" fill="rgb(220,227,32)" rx="2" ry="2" /> <text x="587.47" y="655.5" ></text> </g> <g > <title>damageCopyArea (2 samples, 1.32%)</title><rect x="281.7" y="885" width="15.5" height="15.0" fill="rgb(241,55,40)" rx="2" ry="2" /> <text x="284.71" y="895.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.66%)</title><rect x="646.6" y="661" width="7.7" height="15.0" fill="rgb(244,212,32)" rx="2" ry="2" /> <text x="649.58" y="671.5" ></text> </g> <g > <title>QXcbConnection::handleXcbEvent (1 samples, 0.66%)</title><rect x="918.3" y="789" width="7.8" height="15.0" fill="rgb(253,120,41)" rx="2" ry="2" /> <text x="921.29" y="799.5" ></text> </g> <g > <title>kthread (1 samples, 0.66%)</title><rect x="568.9" y="965" width="7.8" height="15.0" fill="rgb(213,121,33)" rx="2" ry="2" /> <text x="571.95" y="975.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="918.3" y="597" width="7.8" height="15.0" fill="rgb(248,118,30)" rx="2" ry="2" /> <text x="921.29" y="607.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="204.1" y="805" width="7.7" height="15.0" fill="rgb(244,127,51)" rx="2" ry="2" /> <text x="207.08" y="815.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 1.32%)</title><rect x="219.6" y="805" width="15.5" height="15.0" fill="rgb(224,213,50)" rx="2" ry="2" /> <text x="222.61" y="815.5" ></text> </g> <g > <title>msg_submit (1 samples, 0.66%)</title><rect x="367.1" y="197" width="7.8" height="15.0" fill="rgb(209,192,30)" rx="2" ry="2" /> <text x="370.11" y="207.5" ></text> </g> <g > <title>tasklet_hi_action (4 samples, 2.63%)</title><rect x="972.6" y="693" width="31.1" height="15.0" fill="rgb(213,34,42)" rx="2" ry="2" /> <text x="975.63" y="703.5" >ta..</text> </g> <g > <title>hidinput_report_event (1 samples, 0.66%)</title><rect x="988.2" y="581" width="7.7" height="15.0" fill="rgb(242,184,39)" rx="2" ry="2" /> <text x="991.16" y="591.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="343.8" y="501" width="15.5" height="15.0" fill="rgb(212,34,23)" rx="2" ry="2" /> <text x="346.82" y="511.5" ></text> </g> <g > <title>libevdev_next_event (1 samples, 0.66%)</title><rect x="56.6" y="853" width="7.7" height="15.0" fill="rgb(216,180,44)" rx="2" ry="2" /> <text x="59.58" y="863.5" ></text> </g> <g > <title>kcompactd (1 samples, 0.66%)</title><rect x="537.9" y="949" width="7.8" height="15.0" fill="rgb(229,220,50)" rx="2" ry="2" /> <text x="540.89" y="959.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="724.2" y="613" width="7.8" height="15.0" fill="rgb(215,146,39)" rx="2" ry="2" /> <text x="727.21" y="623.5" ></text> </g> <g > <title>g_main_context_poll (1 samples, 0.66%)</title><rect x="576.7" y="885" width="7.8" height="15.0" fill="rgb(239,137,48)" rx="2" ry="2" /> <text x="579.71" y="895.5" ></text> </g> <g > <title>futex_wait (2 samples, 1.32%)</title><rect x="180.8" y="709" width="15.5" height="15.0" fill="rgb(216,94,33)" rx="2" ry="2" /> <text x="183.79" y="719.5" ></text> </g> <g > <title>pixman_f_transform_point@plt (1 samples, 0.66%)</title><rect x="17.8" y="965" width="7.7" height="15.0" fill="rgb(234,124,48)" rx="2" ry="2" /> <text x="20.76" y="975.5" ></text> </g> <g > <title>el1_abort (1 samples, 0.66%)</title><rect x="910.5" y="613" width="7.8" height="15.0" fill="rgb(214,13,4)" rx="2" ry="2" /> <text x="913.53" y="623.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="700.9" y="341" width="7.8" height="15.0" fill="rgb(245,198,48)" rx="2" ry="2" /> <text x="703.92" y="351.5" ></text> </g> <g > <title>drm_ioctl_kernel (1 samples, 0.66%)</title><rect x="235.1" y="485" width="7.8" height="15.0" fill="rgb(234,229,19)" rx="2" ry="2" /> <text x="238.13" y="495.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.66%)</title><rect x="700.9" y="165" width="7.8" height="15.0" fill="rgb(244,196,39)" rx="2" ry="2" /> <text x="703.92" y="175.5" ></text> </g> <g > <title>QWidgetPrivate::sendPaintEvent (2 samples, 1.32%)</title><rect x="654.3" y="709" width="15.6" height="15.0" fill="rgb(232,204,13)" rx="2" ry="2" /> <text x="657.34" y="719.5" ></text> </g> <g > <title>do_notify_resume (1 samples, 0.66%)</title><rect x="561.2" y="885" width="7.7" height="15.0" fill="rgb(213,227,42)" rx="2" ry="2" /> <text x="564.18" y="895.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="700.9" y="229" width="7.8" height="15.0" fill="rgb(206,70,9)" rx="2" ry="2" /> <text x="703.92" y="239.5" ></text> </g> <g > <title>drm_atomic_commit (1 samples, 0.66%)</title><rect x="235.1" y="389" width="7.8" height="15.0" fill="rgb(225,217,28)" rx="2" ry="2" /> <text x="238.13" y="399.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (2 samples, 1.32%)</title><rect x="180.8" y="645" width="15.5" height="15.0" fill="rgb(222,46,13)" rx="2" ry="2" /> <text x="183.79" y="655.5" ></text> </g> <g > <title>XYToWindow (1 samples, 0.66%)</title><rect x="421.4" y="821" width="7.8" height="15.0" fill="rgb(221,174,37)" rx="2" ry="2" /> <text x="424.45" y="831.5" ></text> </g> <g > <title>CursorDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="789" width="62.1" height="15.0" fill="rgb(225,179,15)" rx="2" ry="2" /> <text x="323.53" y="799.5" >Cursor..</text> </g> <g > <title>WriteEventsToClient (3 samples, 1.97%)</title><rect x="437.0" y="709" width="23.3" height="15.0" fill="rgb(224,99,53)" rx="2" ry="2" /> <text x="439.97" y="719.5" >W..</text> </g> <g > <title>BlockHandler (1 samples, 0.66%)</title><rect x="483.6" y="901" width="7.7" height="15.0" fill="rgb(240,87,19)" rx="2" ry="2" /> <text x="486.55" y="911.5" ></text> </g> <g > <title>ext4_iomap_begin (1 samples, 0.66%)</title><rect x="530.1" y="821" width="7.8" height="15.0" fill="rgb(227,199,35)" rx="2" ry="2" /> <text x="533.13" y="831.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="437.0" y="581" width="23.3" height="15.0" fill="rgb(207,31,10)" rx="2" ry="2" /> <text x="439.97" y="591.5" >d..</text> </g> <g > <title>grab_cache_page_write_begin (1 samples, 0.66%)</title><rect x="902.8" y="629" width="7.7" height="15.0" fill="rgb(222,123,25)" rx="2" ry="2" /> <text x="905.76" y="639.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.66%)</title><rect x="1151.2" y="885" width="7.7" height="15.0" fill="rgb(244,132,53)" rx="2" ry="2" /> <text x="1154.18" y="895.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="522.4" y="693" width="7.7" height="15.0" fill="rgb(245,184,6)" rx="2" ry="2" /> <text x="525.37" y="703.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="918.3" y="501" width="7.8" height="15.0" fill="rgb(238,42,19)" rx="2" ry="2" /> <text x="921.29" y="511.5" ></text> </g> <g > <title>miPointerUpdateSprite (8 samples, 5.26%)</title><rect x="320.5" y="725" width="62.1" height="15.0" fill="rgb(212,75,35)" rx="2" ry="2" /> <text x="323.53" y="735.5" >miPoin..</text> </g> <g > <title>_XSERVTransSocketRead (1 samples, 0.66%)</title><rect x="475.8" y="901" width="7.8" height="15.0" fill="rgb(215,11,21)" rx="2" ry="2" /> <text x="478.79" y="911.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="677.6" y="725" width="15.6" height="15.0" fill="rgb(232,209,44)" rx="2" ry="2" /> <text x="680.63" y="735.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="359.3" y="501" width="23.3" height="15.0" fill="rgb(228,86,20)" rx="2" ry="2" /> <text x="362.34" y="511.5" >e..</text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="724.2" y="661" width="7.8" height="15.0" fill="rgb(252,196,24)" rx="2" ry="2" /> <text x="727.21" y="671.5" ></text> </g> <g > <title>[libusbmuxd-2.0.so.6.0.0] (1 samples, 0.66%)</title><rect x="561.2" y="981" width="7.7" height="15.0" fill="rgb(232,153,44)" rx="2" ry="2" /> <text x="564.18" y="991.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="382.6" y="549" width="23.3" height="15.0" fill="rgb(226,218,5)" rx="2" ry="2" /> <text x="385.63" y="559.5" >e..</text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="452.5" y="437" width="7.8" height="15.0" fill="rgb(224,165,33)" rx="2" ry="2" /> <text x="455.50" y="447.5" ></text> </g> <g > <title>[libsystemd-shared-249.so] (1 samples, 0.66%)</title><rect x="1151.2" y="901" width="7.7" height="15.0" fill="rgb(250,120,13)" rx="2" ry="2" /> <text x="1154.18" y="911.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.66%)</title><rect x="700.9" y="213" width="7.8" height="15.0" fill="rgb(218,151,13)" rx="2" ry="2" /> <text x="703.92" y="223.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="918.3" y="677" width="7.8" height="15.0" fill="rgb(213,170,39)" rx="2" ry="2" /> <text x="921.29" y="687.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="242.9" y="741" width="7.8" height="15.0" fill="rgb(249,191,21)" rx="2" ry="2" /> <text x="245.89" y="751.5" ></text> </g> <g > <title>do_sys_ftruncate (1 samples, 0.66%)</title><rect x="1151.2" y="725" width="7.7" height="15.0" fill="rgb(217,203,32)" rx="2" ry="2" /> <text x="1154.18" y="735.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.97%)</title><rect x="491.3" y="789" width="23.3" height="15.0" fill="rgb(206,103,10)" rx="2" ry="2" /> <text x="494.32" y="799.5" >i..</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="242.9" y="805" width="7.8" height="15.0" fill="rgb(219,113,48)" rx="2" ry="2" /> <text x="245.89" y="815.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="382.6" y="597" width="23.3" height="15.0" fill="rgb(206,114,28)" rx="2" ry="2" /> <text x="385.63" y="607.5" >e..</text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="1174.5" y="757" width="7.7" height="15.0" fill="rgb(206,46,47)" rx="2" ry="2" /> <text x="1177.47" y="767.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="204.1" y="773" width="7.7" height="15.0" fill="rgb(248,138,10)" rx="2" ry="2" /> <text x="207.08" y="783.5" ></text> </g> <g > <title>call_on_irq_stack (5 samples, 3.29%)</title><rect x="964.9" y="789" width="38.8" height="15.0" fill="rgb(241,214,33)" rx="2" ry="2" /> <text x="967.87" y="799.5" >cal..</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="576.7" y="821" width="7.8" height="15.0" fill="rgb(231,215,5)" rx="2" ry="2" /> <text x="579.71" y="831.5" ></text> </g> <g > <title>xi2mask_isset (1 samples, 0.66%)</title><rect x="429.2" y="709" width="7.8" height="15.0" fill="rgb(207,84,34)" rx="2" ry="2" /> <text x="432.21" y="719.5" ></text> </g> <g > <title>CheckMotion (14 samples, 9.21%)</title><rect x="320.5" y="837" width="108.7" height="15.0" fill="rgb(211,35,30)" rx="2" ry="2" /> <text x="323.53" y="847.5" >CheckMotion</text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="739.7" y="821" width="7.8" height="15.0" fill="rgb(208,104,53)" rx="2" ry="2" /> <text x="742.74" y="831.5" ></text> </g> <g > <title>el1h_64_irq_handler (5 samples, 3.29%)</title><rect x="964.9" y="837" width="38.8" height="15.0" fill="rgb(235,18,17)" rx="2" ry="2" /> <text x="967.87" y="847.5" >el1..</text> </g> <g > <title>el0t_64_sync (2 samples, 1.32%)</title><rect x="25.5" y="885" width="15.6" height="15.0" fill="rgb(226,73,30)" rx="2" ry="2" /> <text x="28.53" y="895.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="289.5" y="533" width="7.7" height="15.0" fill="rgb(248,85,37)" rx="2" ry="2" /> <text x="292.47" y="543.5" ></text> </g> <g > <title>write_vec (1 samples, 0.66%)</title><rect x="700.9" y="389" width="7.8" height="15.0" fill="rgb(205,187,29)" rx="2" ry="2" /> <text x="703.92" y="399.5" ></text> </g> <g > <title>sock_write_iter (3 samples, 1.97%)</title><rect x="382.6" y="437" width="23.3" height="15.0" fill="rgb(235,25,44)" rx="2" ry="2" /> <text x="385.63" y="447.5" >s..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="405.9" y="581" width="7.8" height="15.0" fill="rgb(234,24,19)" rx="2" ry="2" /> <text x="408.92" y="591.5" ></text> </g> <g > <title>__arm64_sys_ioctl (1 samples, 0.66%)</title><rect x="235.1" y="517" width="7.8" height="15.0" fill="rgb(223,190,54)" rx="2" ry="2" /> <text x="238.13" y="527.5" ></text> </g> <g > <title>QueuePointerEvents (6 samples, 3.95%)</title><rect x="64.3" y="853" width="46.6" height="15.0" fill="rgb(212,15,53)" rx="2" ry="2" /> <text x="67.34" y="863.5" >Queu..</text> </g> <g > <title>__pthread_cond_wait_common (3 samples, 1.97%)</title><rect x="173.0" y="869" width="23.3" height="15.0" fill="rgb(219,144,30)" rx="2" ry="2" /> <text x="176.03" y="879.5" >_..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="149.7" y="853" width="7.8" height="15.0" fill="rgb(247,72,28)" rx="2" ry="2" /> <text x="152.74" y="863.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="343.8" y="453" width="15.5" height="15.0" fill="rgb(245,201,6)" rx="2" ry="2" /> <text x="346.82" y="463.5" ></text> </g> <g > <title>QToolButton::event (1 samples, 0.66%)</title><rect x="677.6" y="677" width="7.8" height="15.0" fill="rgb(234,197,14)" rx="2" ry="2" /> <text x="680.63" y="687.5" ></text> </g> <g > <title>__pthread_cond_timedwait (1 samples, 0.66%)</title><rect x="134.2" y="885" width="7.8" height="15.0" fill="rgb(212,180,49)" rx="2" ry="2" /> <text x="137.21" y="895.5" ></text> </g> <g > <title>drm_atomic_helper_commit (2 samples, 1.32%)</title><rect x="367.1" y="325" width="15.5" height="15.0" fill="rgb(234,193,39)" rx="2" ry="2" /> <text x="370.11" y="335.5" ></text> </g> <g > <title>_int_malloc (1 samples, 0.66%)</title><rect x="600.0" y="565" width="7.8" height="15.0" fill="rgb(205,53,8)" rx="2" ry="2" /> <text x="603.00" y="575.5" ></text> </g> <g > <title>miPointerSetPosition (6 samples, 3.95%)</title><rect x="64.3" y="773" width="46.6" height="15.0" fill="rgb(233,55,51)" rx="2" ry="2" /> <text x="67.34" y="783.5" >miPo..</text> </g> <g > <title>[libQt5Gui.so.5.15.2] (1 samples, 0.66%)</title><rect x="677.6" y="581" width="7.8" height="15.0" fill="rgb(239,142,47)" rx="2" ry="2" /> <text x="680.63" y="591.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="204.1" y="821" width="7.7" height="15.0" fill="rgb(210,171,11)" rx="2" ry="2" /> <text x="207.08" y="831.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="149.7" y="917" width="7.8" height="15.0" fill="rgb(227,2,35)" rx="2" ry="2" /> <text x="152.74" y="927.5" ></text> </g> <g > <title>nohz_run_idle_balance (1 samples, 0.66%)</title><rect x="1003.7" y="885" width="7.7" height="15.0" fill="rgb(212,207,30)" rx="2" ry="2" /> <text x="1006.68" y="895.5" ></text> </g> <g > <title>secondary_start_kernel (14 samples, 9.21%)</title><rect x="1042.5" y="965" width="108.7" height="15.0" fill="rgb(207,0,10)" rx="2" ry="2" /> <text x="1045.50" y="975.5" >secondary_sta..</text> </g> <g > <title>g_main_context_dispatch (17 samples, 11.18%)</title><rect x="600.0" y="853" width="132.0" height="15.0" fill="rgb(226,35,54)" rx="2" ry="2" /> <text x="603.00" y="863.5" >g_main_context_d..</text> </g> <g > <title>sd_event_prepare (1 samples, 0.66%)</title><rect x="1158.9" y="917" width="7.8" height="15.0" fill="rgb(236,27,37)" rx="2" ry="2" /> <text x="1161.95" y="927.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.66%)</title><rect x="305.0" y="501" width="7.8" height="15.0" fill="rgb(245,86,34)" rx="2" ry="2" /> <text x="308.00" y="511.5" ></text> </g> <g > <title>el0t_64_sync_handler (17 samples, 11.18%)</title><rect x="747.5" y="885" width="132.0" height="15.0" fill="rgb(243,166,33)" rx="2" ry="2" /> <text x="750.50" y="895.5" >el0t_64_sync_han..</text> </g> <g > <title>affine_move_task (1 samples, 0.66%)</title><rect x="739.7" y="741" width="7.8" height="15.0" fill="rgb(220,23,9)" rx="2" ry="2" /> <text x="742.74" y="751.5" ></text> </g> <g > <title>miPointerUpdateSprite (8 samples, 5.26%)</title><rect x="320.5" y="741" width="62.1" height="15.0" fill="rgb(221,10,44)" rx="2" ry="2" /> <text x="323.53" y="751.5" >miPoin..</text> </g> <g > <title>gic_handle_irq (1 samples, 0.66%)</title><rect x="1073.6" y="805" width="7.7" height="15.0" fill="rgb(224,207,18)" rx="2" ry="2" /> <text x="1076.55" y="815.5" ></text> </g> <g > <title>el1_interrupt (5 samples, 3.29%)</title><rect x="964.9" y="821" width="38.8" height="15.0" fill="rgb(245,210,49)" rx="2" ry="2" /> <text x="967.87" y="831.5" >el1..</text> </g> <g > <title>[perf] (5 samples, 3.29%)</title><rect x="879.5" y="917" width="38.8" height="15.0" fill="rgb(208,124,32)" rx="2" ry="2" /> <text x="882.47" y="927.5" >[pe..</text> </g> <g > <title>__ioctl (6 samples, 3.95%)</title><rect x="64.3" y="629" width="46.6" height="15.0" fill="rgb(243,174,35)" rx="2" ry="2" /> <text x="67.34" y="639.5" >__io..</text> </g> <g > <title>QXcbEventQueue (12 samples, 7.89%)</title><rect x="142.0" y="997" width="93.1" height="15.0" fill="rgb(217,100,35)" rx="2" ry="2" /> <text x="144.97" y="1007.5" >QXcbEventQu..</text> </g> <g > <title>do_iter_readv_writev (2 samples, 1.32%)</title><rect x="444.7" y="469" width="15.6" height="15.0" fill="rgb(238,53,31)" rx="2" ry="2" /> <text x="447.74" y="479.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="700.9" y="277" width="7.8" height="15.0" fill="rgb(228,90,28)" rx="2" ry="2" /> <text x="703.92" y="287.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="242.9" y="821" width="7.8" height="15.0" fill="rgb(247,55,54)" rx="2" ry="2" /> <text x="245.89" y="831.5" ></text> </g> <g > <title>perf_event_for_each_child (17 samples, 11.18%)</title><rect x="747.5" y="757" width="132.0" height="15.0" fill="rgb(220,201,49)" rx="2" ry="2" /> <text x="750.50" y="767.5" >perf_event_for_e..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="134.2" y="837" width="7.8" height="15.0" fill="rgb(207,28,41)" rx="2" ry="2" /> <text x="137.21" y="847.5" ></text> </g> <g > <title>drmIoctl (2 samples, 1.32%)</title><rect x="460.3" y="789" width="15.5" height="15.0" fill="rgb(245,135,52)" rx="2" ry="2" /> <text x="463.26" y="799.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="149.7" y="821" width="7.8" height="15.0" fill="rgb(224,0,7)" rx="2" ry="2" /> <text x="152.74" y="831.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (2 samples, 1.32%)</title><rect x="41.1" y="821" width="15.5" height="15.0" fill="rgb(215,201,4)" rx="2" ry="2" /> <text x="44.05" y="831.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="669.9" y="773" width="7.7" height="15.0" fill="rgb(247,224,24)" rx="2" ry="2" /> <text x="672.87" y="783.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.97%)</title><rect x="382.6" y="533" width="23.3" height="15.0" fill="rgb(230,137,21)" rx="2" ry="2" /> <text x="385.63" y="543.5" >i..</text> </g> <g > <title>affinity__set (1 samples, 0.66%)</title><rect x="739.7" y="933" width="7.8" height="15.0" fill="rgb(240,199,30)" rx="2" ry="2" /> <text x="742.74" y="943.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.97%)</title><rect x="359.3" y="485" width="23.3" height="15.0" fill="rgb(245,113,33)" rx="2" ry="2" /> <text x="362.34" y="495.5" >i..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="134.2" y="789" width="7.8" height="15.0" fill="rgb(244,82,0)" rx="2" ry="2" /> <text x="137.21" y="799.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="739.7" y="725" width="7.8" height="15.0" fill="rgb(254,213,53)" rx="2" ry="2" /> <text x="742.74" y="735.5" ></text> </g> <g > <title>do_el0_svc (17 samples, 11.18%)</title><rect x="747.5" y="853" width="132.0" height="15.0" fill="rgb(251,94,15)" rx="2" ry="2" /> <text x="750.50" y="863.5" >do_el0_svc</text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="242.9" y="629" width="7.8" height="15.0" fill="rgb(230,33,23)" rx="2" ry="2" /> <text x="245.89" y="639.5" ></text> </g> <g > <title>[xscreensaver] (1 samples, 0.66%)</title><rect x="1174.5" y="869" width="7.7" height="15.0" fill="rgb(229,142,36)" rx="2" ry="2" /> <text x="1177.47" y="879.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="499.1" y="661" width="7.7" height="15.0" fill="rgb(242,18,10)" rx="2" ry="2" /> <text x="502.08" y="671.5" ></text> </g> <g > <title>import_iovec (1 samples, 0.66%)</title><rect x="1166.7" y="629" width="7.8" height="15.0" fill="rgb(221,111,5)" rx="2" ry="2" /> <text x="1169.71" y="639.5" ></text> </g> <g > <title>ret_from_fork (1 samples, 0.66%)</title><rect x="537.9" y="981" width="7.8" height="15.0" fill="rgb(227,36,18)" rx="2" ry="2" /> <text x="540.89" y="991.5" ></text> </g> <g > <title>do_interrupt_handler (5 samples, 3.29%)</title><rect x="964.9" y="805" width="38.8" height="15.0" fill="rgb(207,179,31)" rx="2" ry="2" /> <text x="967.87" y="815.5" >do_..</text> </g> <g > <title>__arm64_sys_futex (2 samples, 1.32%)</title><rect x="180.8" y="741" width="15.5" height="15.0" fill="rgb(252,68,33)" rx="2" ry="2" /> <text x="183.79" y="751.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="297.2" y="821" width="7.8" height="15.0" fill="rgb(216,60,1)" rx="2" ry="2" /> <text x="300.24" y="831.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.66%)</title><rect x="305.0" y="741" width="7.8" height="15.0" fill="rgb(243,117,40)" rx="2" ry="2" /> <text x="308.00" y="751.5" ></text> </g> <g > <title>_start (2 samples, 1.32%)</title><rect x="576.7" y="981" width="15.5" height="15.0" fill="rgb(219,0,15)" rx="2" ry="2" /> <text x="579.71" y="991.5" ></text> </g> <g > <title>el0_svc (2 samples, 1.32%)</title><rect x="460.3" y="725" width="15.5" height="15.0" fill="rgb(206,191,39)" rx="2" ry="2" /> <text x="463.26" y="735.5" ></text> </g> <g > <title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="1073.6" y="837" width="7.7" height="15.0" fill="rgb(216,163,22)" rx="2" ry="2" /> <text x="1076.55" y="847.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (2 samples, 1.32%)</title><rect x="677.6" y="773" width="15.6" height="15.0" fill="rgb(220,174,36)" rx="2" ry="2" /> <text x="680.63" y="783.5" ></text> </g> <g > <title>g_main_context_iteration (17 samples, 11.18%)</title><rect x="600.0" y="885" width="132.0" height="15.0" fill="rgb(252,223,37)" rx="2" ry="2" /> <text x="603.00" y="895.5" >g_main_context_i..</text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="700.9" y="357" width="7.8" height="15.0" fill="rgb(232,157,5)" rx="2" ry="2" /> <text x="703.92" y="367.5" ></text> </g> <g > <title>QToolButton::event (1 samples, 0.66%)</title><rect x="669.9" y="677" width="7.7" height="15.0" fill="rgb(227,31,10)" rx="2" ry="2" /> <text x="672.87" y="687.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="219.6" y="661" width="7.8" height="15.0" fill="rgb(213,141,12)" rx="2" ry="2" /> <text x="222.61" y="671.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (1 samples, 0.66%)</title><rect x="468.0" y="485" width="7.8" height="15.0" fill="rgb(223,63,31)" rx="2" ry="2" /> <text x="471.03" y="495.5" ></text> </g> <g > <title>WriteEventsToClient (1 samples, 0.66%)</title><rect x="305.0" y="709" width="7.8" height="15.0" fill="rgb(241,40,28)" rx="2" ry="2" /> <text x="308.00" y="719.5" ></text> </g> <g > <title>drm_ioctl (2 samples, 1.32%)</title><rect x="343.8" y="405" width="15.5" height="15.0" fill="rgb(246,13,26)" rx="2" ry="2" /> <text x="346.82" y="415.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="305.0" y="421" width="7.8" height="15.0" fill="rgb(217,17,17)" rx="2" ry="2" /> <text x="308.00" y="431.5" ></text> </g> <g > <title>glamor_copy (2 samples, 1.32%)</title><rect x="281.7" y="805" width="15.5" height="15.0" fill="rgb(253,142,33)" rx="2" ry="2" /> <text x="284.71" y="815.5" ></text> </g> <g > <title>migration/2 (1 samples, 0.66%)</title><rect x="568.9" y="997" width="7.8" height="15.0" fill="rgb(241,32,45)" rx="2" ry="2" /> <text x="571.95" y="1007.5" ></text> </g> <g > <title>vfs_write (5 samples, 3.29%)</title><rect x="879.5" y="725" width="38.8" height="15.0" fill="rgb(222,152,13)" rx="2" ry="2" /> <text x="882.47" y="735.5" >vfs..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="1151.2" y="837" width="7.7" height="15.0" fill="rgb(238,131,7)" rx="2" ry="2" /> <text x="1154.18" y="847.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="1166.7" y="757" width="7.8" height="15.0" fill="rgb(210,137,53)" rx="2" ry="2" /> <text x="1169.71" y="767.5" ></text> </g> <g > <title>vc4_plane_atomic_update (2 samples, 1.32%)</title><rect x="367.1" y="261" width="15.5" height="15.0" fill="rgb(249,38,26)" rx="2" ry="2" /> <text x="370.11" y="271.5" ></text> </g> <g > <title>do_el0_svc (5 samples, 3.29%)</title><rect x="879.5" y="805" width="38.8" height="15.0" fill="rgb(245,128,19)" rx="2" ry="2" /> <text x="882.47" y="815.5" >do_..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="165.3" y="885" width="7.7" height="15.0" fill="rgb(243,99,50)" rx="2" ry="2" /> <text x="168.26" y="895.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="669.9" y="693" width="7.7" height="15.0" fill="rgb(209,200,21)" rx="2" ry="2" /> <text x="672.87" y="703.5" ></text> </g> <g > <title>ProcessInputEvents (23 samples, 15.13%)</title><rect x="297.2" y="917" width="178.6" height="15.0" fill="rgb(242,123,39)" rx="2" ry="2" /> <text x="300.24" y="927.5" >ProcessInputEvents</text> </g> <g > <title>drm_ioctl_kernel (6 samples, 3.95%)</title><rect x="64.3" y="485" width="46.6" height="15.0" fill="rgb(247,182,28)" rx="2" ry="2" /> <text x="67.34" y="495.5" >drm_..</text> </g> <g > <title>FlushClient (3 samples, 1.97%)</title><rect x="437.0" y="693" width="23.3" height="15.0" fill="rgb(236,99,16)" rx="2" ry="2" /> <text x="439.97" y="703.5" >F..</text> </g> <g > <title>sock_def_readable (1 samples, 0.66%)</title><rect x="242.9" y="613" width="7.8" height="15.0" fill="rgb(223,103,4)" rx="2" ry="2" /> <text x="245.89" y="623.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="693.2" y="725" width="15.5" height="15.0" fill="rgb(207,210,0)" rx="2" ry="2" /> <text x="696.16" y="735.5" ></text> </g> <g > <title>return_address (1 samples, 0.66%)</title><rect x="367.1" y="133" width="7.8" height="15.0" fill="rgb(244,184,43)" rx="2" ry="2" /> <text x="370.11" y="143.5" ></text> </g> <g > <title>xf86SetCursor (1 samples, 0.66%)</title><rect x="235.1" y="741" width="7.8" height="15.0" fill="rgb(228,151,6)" rx="2" ry="2" /> <text x="238.13" y="751.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="289.5" y="565" width="7.7" height="15.0" fill="rgb(208,126,24)" rx="2" ry="2" /> <text x="292.47" y="575.5" ></text> </g> <g > <title>schedule_idle (6 samples, 3.95%)</title><rect x="1089.1" y="917" width="46.6" height="15.0" fill="rgb(206,214,12)" rx="2" ry="2" /> <text x="1092.08" y="927.5" >sche..</text> </g> <g > <title>xf86_set_cursor_position (2 samples, 1.32%)</title><rect x="460.3" y="853" width="15.5" height="15.0" fill="rgb(227,63,23)" rx="2" ry="2" /> <text x="463.26" y="863.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="677.6" y="693" width="7.8" height="15.0" fill="rgb(233,215,46)" rx="2" ry="2" /> <text x="680.63" y="703.5" ></text> </g> <g > <title>preempt_count_sub (1 samples, 0.66%)</title><rect x="367.1" y="149" width="7.8" height="15.0" fill="rgb(245,159,52)" rx="2" ry="2" /> <text x="370.11" y="159.5" ></text> </g> <g > <title>QEventDispatcherGlib::processEvents (17 samples, 11.18%)</title><rect x="600.0" y="901" width="132.0" height="15.0" fill="rgb(235,87,6)" rx="2" ry="2" /> <text x="603.00" y="911.5" >QEventDispatcher..</text> </g> <g > <title>drm_atomic_helper_update_plane (1 samples, 0.66%)</title><rect x="235.1" y="405" width="7.8" height="15.0" fill="rgb(251,6,17)" rx="2" ry="2" /> <text x="238.13" y="415.5" ></text> </g> <g > <title>TryClientEvents (3 samples, 1.97%)</title><rect x="437.0" y="725" width="23.3" height="15.0" fill="rgb(232,89,28)" rx="2" ry="2" /> <text x="439.97" y="735.5" >T..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="725" width="7.7" height="15.0" fill="rgb(214,89,32)" rx="2" ry="2" /> <text x="672.87" y="735.5" ></text> </g> <g > <title>drmmode_set_cursor (2 samples, 1.32%)</title><rect x="343.8" y="597" width="15.5" height="15.0" fill="rgb(251,212,11)" rx="2" ry="2" /> <text x="346.82" y="607.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 1.32%)</title><rect x="219.6" y="853" width="15.5" height="15.0" fill="rgb(253,149,15)" rx="2" ry="2" /> <text x="222.61" y="863.5" ></text> </g> <g > <title>DeliverToWindowOwner (1 samples, 0.66%)</title><rect x="405.9" y="725" width="7.8" height="15.0" fill="rgb(212,148,20)" rx="2" ry="2" /> <text x="408.92" y="735.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="522.4" y="677" width="7.7" height="15.0" fill="rgb(226,34,25)" rx="2" ry="2" /> <text x="525.37" y="687.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="242.9" y="645" width="7.8" height="15.0" fill="rgb(238,22,4)" rx="2" ry="2" /> <text x="245.89" y="655.5" ></text> </g> <g > <title>QRasterPaintEngine::fillRect (2 samples, 1.32%)</title><rect x="654.3" y="597" width="15.6" height="15.0" fill="rgb(211,69,20)" rx="2" ry="2" /> <text x="657.34" y="607.5" ></text> </g> <g > <title>QWidget::event (9 samples, 5.92%)</title><rect x="600.0" y="757" width="69.9" height="15.0" fill="rgb(237,117,32)" rx="2" ry="2" /> <text x="603.00" y="767.5" >QWidget..</text> </g> <g > <title>wait_for_reply (1 samples, 0.66%)</title><rect x="600.0" y="645" width="7.8" height="15.0" fill="rgb(253,12,1)" rx="2" ry="2" /> <text x="603.00" y="655.5" ></text> </g> <g > <title>[xscreensaver] (3 samples, 1.97%)</title><rect x="1166.7" y="933" width="23.3" height="15.0" fill="rgb(254,155,18)" rx="2" ry="2" /> <text x="1169.71" y="943.5" >[..</text> </g> <g > <title>drm_atomic_helper_wait_for_dependencies (1 samples, 0.66%)</title><rect x="343.8" y="245" width="7.8" height="15.0" fill="rgb(221,12,4)" rx="2" ry="2" /> <text x="346.82" y="255.5" ></text> </g> <g > <title>_raw_spin_lock (1 samples, 0.66%)</title><rect x="910.5" y="501" width="7.8" height="15.0" fill="rgb(238,43,26)" rx="2" ry="2" /> <text x="913.53" y="511.5" ></text> </g> <g > <title>__pthread_cond_wait (3 samples, 1.97%)</title><rect x="173.0" y="885" width="23.3" height="15.0" fill="rgb(252,152,24)" rx="2" ry="2" /> <text x="176.03" y="895.5" >_..</text> </g> <g > <title>sd_event_dispatch (1 samples, 0.66%)</title><rect x="1151.2" y="917" width="7.7" height="15.0" fill="rgb(241,162,37)" rx="2" ry="2" /> <text x="1154.18" y="927.5" ></text> </g> <g > <title>damagePutImage (4 samples, 2.63%)</title><rect x="250.7" y="901" width="31.0" height="15.0" fill="rgb(208,152,48)" rx="2" ry="2" /> <text x="253.66" y="911.5" >da..</text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="988.2" y="549" width="7.7" height="15.0" fill="rgb(222,40,29)" rx="2" ry="2" /> <text x="991.16" y="559.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="918.3" y="485" width="7.8" height="15.0" fill="rgb(223,174,39)" rx="2" ry="2" /> <text x="921.29" y="495.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="1174.5" y="789" width="7.7" height="15.0" fill="rgb(235,223,28)" rx="2" ry="2" /> <text x="1177.47" y="799.5" ></text> </g> <g > <title>rpi_firmware_property_list (4 samples, 2.63%)</title><rect x="72.1" y="277" width="31.1" height="15.0" fill="rgb(210,103,7)" rx="2" ry="2" /> <text x="75.11" y="287.5" >rp..</text> </g> <g > <title>texture_sub_image (4 samples, 2.63%)</title><rect x="250.7" y="789" width="31.0" height="15.0" fill="rgb(223,16,21)" rx="2" ry="2" /> <text x="253.66" y="799.5" >te..</text> </g> <g > <title>pixman_f_transform_bounds (1 samples, 0.66%)</title><rect x="17.8" y="981" width="7.7" height="15.0" fill="rgb(207,82,21)" rx="2" ry="2" /> <text x="20.76" y="991.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (2 samples, 1.32%)</title><rect x="654.3" y="677" width="15.6" height="15.0" fill="rgb(221,218,29)" rx="2" ry="2" /> <text x="657.34" y="687.5" ></text> </g> <g > <title>ext4_claim_free_clusters (1 samples, 0.66%)</title><rect x="895.0" y="581" width="7.8" height="15.0" fill="rgb(249,30,18)" rx="2" ry="2" /> <text x="898.00" y="591.5" ></text> </g> <g > <title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="219.6" y="629" width="7.8" height="15.0" fill="rgb(236,199,50)" rx="2" ry="2" /> <text x="222.61" y="639.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="1182.2" y="837" width="7.8" height="15.0" fill="rgb(239,22,17)" rx="2" ry="2" /> <text x="1185.24" y="847.5" ></text> </g> <g > <title>QTime::msec@plt (1 samples, 0.66%)</title><rect x="553.4" y="965" width="7.8" height="15.0" fill="rgb(242,210,0)" rx="2" ry="2" /> <text x="556.42" y="975.5" ></text> </g> <g > <title>update_blocked_averages (1 samples, 0.66%)</title><rect x="1081.3" y="885" width="7.8" height="15.0" fill="rgb(252,108,20)" rx="2" ry="2" /> <text x="1084.32" y="895.5" ></text> </g> <g > <title>el0_svc (5 samples, 3.29%)</title><rect x="879.5" y="821" width="38.8" height="15.0" fill="rgb(249,93,33)" rx="2" ry="2" /> <text x="882.47" y="831.5" >el0..</text> </g> <g > <title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="87.6" y="133" width="7.8" height="15.0" fill="rgb(239,80,31)" rx="2" ry="2" /> <text x="90.63" y="143.5" ></text> </g> <g > <title>QWidget::event (1 samples, 0.66%)</title><rect x="700.9" y="613" width="7.8" height="15.0" fill="rgb(226,4,24)" rx="2" ry="2" /> <text x="703.92" y="623.5" ></text> </g> <g > <title>g_main_loop_run (1 samples, 0.66%)</title><rect x="522.4" y="917" width="7.7" height="15.0" fill="rgb(222,3,20)" rx="2" ry="2" /> <text x="525.37" y="927.5" ></text> </g> <g > <title>miPointerDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="805" width="7.8" height="15.0" fill="rgb(246,26,53)" rx="2" ry="2" /> <text x="238.13" y="815.5" ></text> </g> <g > <title>xf86_crtc_load_cursor_argb (5 samples, 3.29%)</title><rect x="320.5" y="629" width="38.8" height="15.0" fill="rgb(224,215,25)" rx="2" ry="2" /> <text x="323.53" y="639.5" >xf8..</text> </g> <g > <title>WaitForSomething (4 samples, 2.63%)</title><rect x="483.6" y="917" width="31.0" height="15.0" fill="rgb(230,86,3)" rx="2" ry="2" /> <text x="486.55" y="927.5" >Wa..</text> </g> <g > <title>ext4_da_reserve_space (1 samples, 0.66%)</title><rect x="895.0" y="597" width="7.8" height="15.0" fill="rgb(214,51,50)" rx="2" ry="2" /> <text x="898.00" y="607.5" ></text> </g> <g > <title>DeviceEnterLeaveEvents (1 samples, 0.66%)</title><rect x="413.7" y="805" width="7.7" height="15.0" fill="rgb(237,32,0)" rx="2" ry="2" /> <text x="416.68" y="815.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="741" width="7.7" height="15.0" fill="rgb(246,224,15)" rx="2" ry="2" /> <text x="672.87" y="751.5" ></text> </g> <g > <title>kworker/u8:0-ev (1 samples, 0.66%)</title><rect x="545.7" y="997" width="7.7" height="15.0" fill="rgb(238,21,17)" rx="2" ry="2" /> <text x="548.66" y="1007.5" ></text> </g> <g > <title>el0_svc (2 samples, 1.32%)</title><rect x="219.6" y="821" width="15.5" height="15.0" fill="rgb(215,161,32)" rx="2" ry="2" /> <text x="222.61" y="831.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="739.7" y="869" width="7.8" height="15.0" fill="rgb(242,226,12)" rx="2" ry="2" /> <text x="742.74" y="879.5" ></text> </g> <g > <title>__kmalloc_node_track_caller (1 samples, 0.66%)</title><rect x="305.0" y="341" width="7.8" height="15.0" fill="rgb(241,58,20)" rx="2" ry="2" /> <text x="308.00" y="351.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.66%)</title><rect x="87.6" y="37" width="7.8" height="15.0" fill="rgb(217,149,13)" rx="2" ry="2" /> <text x="90.63" y="47.5" ></text> </g> <g > <title>DeliverEventToWindowMask (4 samples, 2.63%)</title><rect x="429.2" y="773" width="31.1" height="15.0" fill="rgb(242,126,40)" rx="2" ry="2" /> <text x="432.21" y="783.5" >De..</text> </g> <g > <title>DeliverOneEvent (2 samples, 1.32%)</title><rect x="305.0" y="821" width="15.5" height="15.0" fill="rgb(216,174,32)" rx="2" ry="2" /> <text x="308.00" y="831.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="149.7" y="837" width="7.8" height="15.0" fill="rgb(227,80,23)" rx="2" ry="2" /> <text x="152.74" y="847.5" ></text> </g> <g > <title>QCoreApplicationPrivate::threadRequiresCoreApplication (1 samples, 0.66%)</title><rect x="685.4" y="677" width="7.8" height="15.0" fill="rgb(228,199,13)" rx="2" ry="2" /> <text x="688.39" y="687.5" ></text> </g> <g > <title>miPointerUpdateSprite (1 samples, 0.66%)</title><rect x="235.1" y="773" width="7.8" height="15.0" fill="rgb(236,58,21)" rx="2" ry="2" /> <text x="238.13" y="783.5" ></text> </g> <g > <title>__arm64_sys_writev (2 samples, 1.32%)</title><rect x="444.7" y="533" width="15.6" height="15.0" fill="rgb(242,205,45)" rx="2" ry="2" /> <text x="447.74" y="543.5" ></text> </g> <g > <title>_XReply (1 samples, 0.66%)</title><rect x="1174.5" y="837" width="7.7" height="15.0" fill="rgb(239,47,32)" rx="2" ry="2" /> <text x="1177.47" y="847.5" ></text> </g> <g > <title>ReadRequestFromClient (1 samples, 0.66%)</title><rect x="475.8" y="917" width="7.8" height="15.0" fill="rgb(226,33,2)" rx="2" ry="2" /> <text x="478.79" y="927.5" ></text> </g> <g > <title>__sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="613" width="7.7" height="15.0" fill="rgb(211,27,16)" rx="2" ry="2" /> <text x="587.47" y="623.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="837" width="7.7" height="15.0" fill="rgb(250,4,23)" rx="2" ry="2" /> <text x="525.37" y="847.5" ></text> </g> <g > <title>do_futex (1 samples, 0.66%)</title><rect x="134.2" y="725" width="7.8" height="15.0" fill="rgb(249,39,25)" rx="2" ry="2" /> <text x="137.21" y="735.5" ></text> </g> <g > <title>v3d_bo_create_finish (1 samples, 0.66%)</title><rect x="289.5" y="405" width="7.7" height="15.0" fill="rgb(222,194,36)" rx="2" ry="2" /> <text x="292.47" y="415.5" ></text> </g> <g > <title>__GI___writev (3 samples, 1.97%)</title><rect x="382.6" y="629" width="23.3" height="15.0" fill="rgb(212,153,36)" rx="2" ry="2" /> <text x="385.63" y="639.5" >_..</text> </g> <g > <title>glamor_copy (2 samples, 1.32%)</title><rect x="281.7" y="821" width="15.5" height="15.0" fill="rgb(248,103,16)" rx="2" ry="2" /> <text x="284.71" y="831.5" ></text> </g> <g > <title>perf_evsel__enable_cpu (17 samples, 11.18%)</title><rect x="747.5" y="933" width="132.0" height="15.0" fill="rgb(234,186,50)" rx="2" ry="2" /> <text x="750.50" y="943.5" >perf_evsel__enab..</text> </g> <g > <title>do_iter_write (1 samples, 0.66%)</title><rect x="242.9" y="693" width="7.8" height="15.0" fill="rgb(242,43,43)" rx="2" ry="2" /> <text x="245.89" y="703.5" ></text> </g> <g > <title>schedule_timeout (1 samples, 0.66%)</title><rect x="374.9" y="197" width="7.7" height="15.0" fill="rgb(230,144,44)" rx="2" ry="2" /> <text x="377.87" y="207.5" ></text> </g> <g > <title>xcb_wait_for_reply (1 samples, 0.66%)</title><rect x="700.9" y="485" width="7.8" height="15.0" fill="rgb(253,31,52)" rx="2" ry="2" /> <text x="703.92" y="495.5" ></text> </g> <g > <title>start_thread (1 samples, 0.66%)</title><rect x="522.4" y="965" width="7.7" height="15.0" fill="rgb(246,103,21)" rx="2" ry="2" /> <text x="525.37" y="975.5" ></text> </g> <g > <title>wait_for_reply (1 samples, 0.66%)</title><rect x="1174.5" y="805" width="7.7" height="15.0" fill="rgb(215,32,42)" rx="2" ry="2" /> <text x="1177.47" y="815.5" ></text> </g> <g > <title>QXcbConnection::handleXcbEvent (3 samples, 1.97%)</title><rect x="708.7" y="789" width="23.3" height="15.0" fill="rgb(253,87,50)" rx="2" ry="2" /> <text x="711.68" y="799.5" >Q..</text> </g> <g > <title>ret_from_fork (1 samples, 0.66%)</title><rect x="545.7" y="981" width="7.7" height="15.0" fill="rgb(250,167,8)" rx="2" ry="2" /> <text x="548.66" y="991.5" ></text> </g> <g > <title>drm_ioctl_kernel (2 samples, 1.32%)</title><rect x="460.3" y="629" width="15.5" height="15.0" fill="rgb(231,118,45)" rx="2" ry="2" /> <text x="463.26" y="639.5" ></text> </g> <g > <title>DeliverOneEvent (4 samples, 2.63%)</title><rect x="429.2" y="821" width="31.1" height="15.0" fill="rgb(241,77,30)" rx="2" ry="2" /> <text x="432.21" y="831.5" >De..</text> </g> <g > <title>QStyleHelper::dpiScaled (1 samples, 0.66%)</title><rect x="669.9" y="565" width="7.7" height="15.0" fill="rgb(227,185,13)" rx="2" ry="2" /> <text x="672.87" y="575.5" ></text> </g> <g > <title>xf86libinput_read_input (9 samples, 5.92%)</title><rect x="41.1" y="901" width="69.8" height="15.0" fill="rgb(215,207,11)" rx="2" ry="2" /> <text x="44.05" y="911.5" >xf86lib..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="204.1" y="789" width="7.7" height="15.0" fill="rgb(242,52,10)" rx="2" ry="2" /> <text x="207.08" y="799.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="918.3" y="533" width="7.8" height="15.0" fill="rgb(205,62,26)" rx="2" ry="2" /> <text x="921.29" y="543.5" ></text> </g> <g > <title>__libc_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="885" width="7.8" height="15.0" fill="rgb(223,220,48)" rx="2" ry="2" /> <text x="478.79" y="895.5" ></text> </g> <g > <title>_xcb_conn_wait (1 samples, 0.66%)</title><rect x="600.0" y="629" width="7.8" height="15.0" fill="rgb(228,13,22)" rx="2" ry="2" /> <text x="603.00" y="639.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="584.5" y="677" width="7.7" height="15.0" fill="rgb(247,195,19)" rx="2" ry="2" /> <text x="587.47" y="687.5" ></text> </g> <g > <title>remove_wait_queue (1 samples, 0.66%)</title><rect x="219.6" y="709" width="7.8" height="15.0" fill="rgb(229,194,18)" rx="2" ry="2" /> <text x="222.61" y="719.5" ></text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="87.6" y="53" width="7.8" height="15.0" fill="rgb(212,147,19)" rx="2" ry="2" /> <text x="90.63" y="63.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.66%)</title><rect x="700.9" y="197" width="7.8" height="15.0" fill="rgb(208,96,29)" rx="2" ry="2" /> <text x="703.92" y="207.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (2 samples, 1.32%)</title><rect x="219.6" y="789" width="15.5" height="15.0" fill="rgb(245,84,9)" rx="2" ry="2" /> <text x="222.61" y="799.5" ></text> </g> <g > <title>xf86_set_cursor_position (1 samples, 0.66%)</title><rect x="235.1" y="709" width="7.8" height="15.0" fill="rgb(230,110,39)" rx="2" ry="2" /> <text x="238.13" y="719.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="918.3" y="581" width="7.8" height="15.0" fill="rgb(215,43,37)" rx="2" ry="2" /> <text x="921.29" y="591.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.66%)</title><rect x="242.9" y="661" width="7.8" height="15.0" fill="rgb(219,117,40)" rx="2" ry="2" /> <text x="245.89" y="671.5" ></text> </g> <g > <title>sock_def_readable (1 samples, 0.66%)</title><rect x="452.5" y="405" width="7.8" height="15.0" fill="rgb(241,159,31)" rx="2" ry="2" /> <text x="455.50" y="415.5" ></text> </g> <g > <title>sugov:0 (2 samples, 1.32%)</title><rect x="926.1" y="997" width="15.5" height="15.0" fill="rgb(208,36,35)" rx="2" ry="2" /> <text x="929.05" y="1007.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="561.2" y="901" width="7.7" height="15.0" fill="rgb(213,76,7)" rx="2" ry="2" /> <text x="564.18" y="911.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (6 samples, 3.95%)</title><rect x="64.3" y="549" width="46.6" height="15.0" fill="rgb(213,165,15)" rx="2" ry="2" /> <text x="67.34" y="559.5" >el0_..</text> </g> <g > <title>__GI___libc_malloc (1 samples, 0.66%)</title><rect x="600.0" y="581" width="7.8" height="15.0" fill="rgb(222,218,31)" rx="2" ry="2" /> <text x="603.00" y="591.5" ></text> </g> <g > <title>new_sync_write (1 samples, 0.66%)</title><rect x="33.3" y="741" width="7.8" height="15.0" fill="rgb(211,177,48)" rx="2" ry="2" /> <text x="36.29" y="751.5" ></text> </g> <g > <title>default_idle_call (8 samples, 5.26%)</title><rect x="941.6" y="885" width="62.1" height="15.0" fill="rgb(222,199,16)" rx="2" ry="2" /> <text x="944.58" y="895.5" >defaul..</text> </g> <g > <title>drm_atomic_helper_update_plane (2 samples, 1.32%)</title><rect x="367.1" y="357" width="15.5" height="15.0" fill="rgb(230,84,9)" rx="2" ry="2" /> <text x="370.11" y="367.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="405.9" y="613" width="7.8" height="15.0" fill="rgb(210,162,53)" rx="2" ry="2" /> <text x="408.92" y="623.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (1 samples, 0.66%)</title><rect x="468.0" y="437" width="7.8" height="15.0" fill="rgb(239,92,20)" rx="2" ry="2" /> <text x="471.03" y="447.5" ></text> </g> <g > <title>drm_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="453" width="7.7" height="15.0" fill="rgb(206,185,15)" rx="2" ry="2" /> <text x="292.47" y="463.5" ></text> </g> <g > <title>XPending (1 samples, 0.66%)</title><rect x="584.5" y="869" width="7.7" height="15.0" fill="rgb(254,42,6)" rx="2" ry="2" /> <text x="587.47" y="879.5" ></text> </g> <g > <title>__libc_write (2 samples, 1.32%)</title><rect x="25.5" y="901" width="15.6" height="15.0" fill="rgb(222,9,9)" rx="2" ry="2" /> <text x="28.53" y="911.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="584.5" y="709" width="7.7" height="15.0" fill="rgb(249,176,48)" rx="2" ry="2" /> <text x="587.47" y="719.5" ></text> </g> <g > <title>clk_set_rate (2 samples, 1.32%)</title><rect x="926.1" y="853" width="15.5" height="15.0" fill="rgb(212,143,34)" rx="2" ry="2" /> <text x="929.05" y="863.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="219.6" y="837" width="15.5" height="15.0" fill="rgb(224,117,49)" rx="2" ry="2" /> <text x="222.61" y="847.5" ></text> </g> <g > <title>run_rebalance_domains (1 samples, 0.66%)</title><rect x="452.5" y="181" width="7.8" height="15.0" fill="rgb(205,225,42)" rx="2" ry="2" /> <text x="455.50" y="191.5" ></text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="1182.2" y="885" width="7.8" height="15.0" fill="rgb(227,34,6)" rx="2" ry="2" /> <text x="1185.24" y="895.5" ></text> </g> <g > <title>el1h_64_irq (5 samples, 3.29%)</title><rect x="964.9" y="853" width="38.8" height="15.0" fill="rgb(208,110,24)" rx="2" ry="2" /> <text x="967.87" y="863.5" >el1..</text> </g> <g > <title>[libQt5Core.so.5.15.2] (12 samples, 7.89%)</title><rect x="142.0" y="949" width="93.1" height="15.0" fill="rgb(241,140,10)" rx="2" ry="2" /> <text x="144.97" y="959.5" >[libQt5Core..</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="700.9" y="309" width="7.8" height="15.0" fill="rgb(210,67,45)" rx="2" ry="2" /> <text x="703.92" y="319.5" ></text> </g> <g > <title>error_check_subtexture_dimensions (1 samples, 0.66%)</title><rect x="281.7" y="693" width="7.8" height="15.0" fill="rgb(216,30,51)" rx="2" ry="2" /> <text x="284.71" y="703.5" ></text> </g> <g > <title>input_event (1 samples, 0.66%)</title><rect x="988.2" y="565" width="7.7" height="15.0" fill="rgb(213,188,46)" rx="2" ry="2" /> <text x="991.16" y="575.5" ></text> </g> <g > <title>percpu_counter_add_batch (1 samples, 0.66%)</title><rect x="895.0" y="565" width="7.8" height="15.0" fill="rgb(245,9,53)" rx="2" ry="2" /> <text x="898.00" y="575.5" ></text> </g> <g > <title>poll (1 samples, 0.66%)</title><rect x="724.2" y="677" width="7.8" height="15.0" fill="rgb(219,54,36)" rx="2" ry="2" /> <text x="727.21" y="687.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 1.32%)</title><rect x="343.8" y="469" width="15.5" height="15.0" fill="rgb(234,160,35)" rx="2" ry="2" /> <text x="346.82" y="479.5" ></text> </g> <g > <title>ProcessDeviceEvent (18 samples, 11.84%)</title><rect x="320.5" y="853" width="139.8" height="15.0" fill="rgb(245,221,39)" rx="2" ry="2" /> <text x="323.53" y="863.5" >ProcessDeviceEvent</text> </g> <g > <title>do_interrupt_handler (1 samples, 0.66%)</title><rect x="452.5" y="293" width="7.8" height="15.0" fill="rgb(240,210,8)" rx="2" ry="2" /> <text x="455.50" y="303.5" ></text> </g> <g > <title>futex_wait_queue_me (1 samples, 0.66%)</title><rect x="134.2" y="693" width="7.8" height="15.0" fill="rgb(221,47,24)" rx="2" ry="2" /> <text x="137.21" y="703.5" ></text> </g> <g > <title>InputReady (9 samples, 5.92%)</title><rect x="41.1" y="917" width="69.8" height="15.0" fill="rgb(219,59,29)" rx="2" ry="2" /> <text x="44.05" y="927.5" >InputRe..</text> </g> <g > <title>drm_mode_cursor_universal (1 samples, 0.66%)</title><rect x="235.1" y="437" width="7.8" height="15.0" fill="rgb(230,49,13)" rx="2" ry="2" /> <text x="238.13" y="447.5" ></text> </g> <g > <title>__GI___libc_write (1 samples, 0.66%)</title><rect x="149.7" y="885" width="7.8" height="15.0" fill="rgb(210,132,36)" rx="2" ry="2" /> <text x="152.74" y="895.5" ></text> </g> <g > <title>iomap_iter (1 samples, 0.66%)</title><rect x="530.1" y="837" width="7.8" height="15.0" fill="rgb(209,115,42)" rx="2" ry="2" /> <text x="533.13" y="847.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="219.6" y="773" width="15.5" height="15.0" fill="rgb(239,67,43)" rx="2" ry="2" /> <text x="222.61" y="783.5" ></text> </g> <g > <title>__pthread_cond_wait_common (1 samples, 0.66%)</title><rect x="134.2" y="869" width="7.8" height="15.0" fill="rgb(212,210,32)" rx="2" ry="2" /> <text x="137.21" y="879.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="437.0" y="629" width="23.3" height="15.0" fill="rgb(212,207,11)" rx="2" ry="2" /> <text x="439.97" y="639.5" >e..</text> </g> <g > <title>__arm64_sys_ioctl (17 samples, 11.18%)</title><rect x="747.5" y="805" width="132.0" height="15.0" fill="rgb(210,184,19)" rx="2" ry="2" /> <text x="750.50" y="815.5" >__arm64_sys_ioctl</text> </g> <g > <title>DeliverEventsToWindow (4 samples, 2.63%)</title><rect x="429.2" y="789" width="31.1" height="15.0" fill="rgb(235,53,5)" rx="2" ry="2" /> <text x="432.21" y="799.5" >De..</text> </g> <g > <title>ext4_setattr (1 samples, 0.66%)</title><rect x="1151.2" y="677" width="7.7" height="15.0" fill="rgb(242,164,1)" rx="2" ry="2" /> <text x="1154.18" y="687.5" ></text> </g> <g > <title>drm_atomic_helper_plane_destroy_state (1 samples, 0.66%)</title><rect x="460.3" y="501" width="7.7" height="15.0" fill="rgb(208,143,9)" rx="2" ry="2" /> <text x="463.26" y="511.5" ></text> </g> <g > <title>__pthread_mutex_unlock_usercnt (1 samples, 0.66%)</title><rect x="297.2" y="885" width="7.8" height="15.0" fill="rgb(250,172,23)" rx="2" ry="2" /> <text x="300.24" y="895.5" ></text> </g> <g > <title>drmIoctl (6 samples, 3.95%)</title><rect x="64.3" y="645" width="46.6" height="15.0" fill="rgb(214,183,8)" rx="2" ry="2" /> <text x="67.34" y="655.5" >drmI..</text> </g> <g > <title>__cpufreq_driver_target (2 samples, 1.32%)</title><rect x="926.1" y="917" width="15.5" height="15.0" fill="rgb(205,220,47)" rx="2" ry="2" /> <text x="929.05" y="927.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="405.9" y="517" width="7.8" height="15.0" fill="rgb(239,223,12)" rx="2" ry="2" /> <text x="408.92" y="527.5" ></text> </g> <g > <title>positionSprite (6 samples, 3.95%)</title><rect x="64.3" y="805" width="46.6" height="15.0" fill="rgb(218,225,13)" rx="2" ry="2" /> <text x="67.34" y="815.5" >posi..</text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="343.8" y="197" width="7.8" height="15.0" fill="rgb(208,62,21)" rx="2" ry="2" /> <text x="346.82" y="207.5" ></text> </g> <g > <title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.66%)</title><rect x="1073.6" y="709" width="7.7" height="15.0" fill="rgb(248,135,10)" rx="2" ry="2" /> <text x="1076.55" y="719.5" ></text> </g> <g > <title>__libc_recvmsg (2 samples, 1.32%)</title><rect x="196.3" y="869" width="15.5" height="15.0" fill="rgb(221,194,9)" rx="2" ry="2" /> <text x="199.32" y="879.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 1.32%)</title><rect x="460.3" y="709" width="15.5" height="15.0" fill="rgb(238,155,12)" rx="2" ry="2" /> <text x="463.26" y="719.5" ></text> </g> <g > <title>el0_svc (6 samples, 3.95%)</title><rect x="64.3" y="581" width="46.6" height="15.0" fill="rgb(211,48,19)" rx="2" ry="2" /> <text x="67.34" y="591.5" >el0_..</text> </g> <g > <title>do_iter_readv_writev (3 samples, 1.97%)</title><rect x="382.6" y="453" width="23.3" height="15.0" fill="rgb(247,176,17)" rx="2" ry="2" /> <text x="385.63" y="463.5" >d..</text> </g> <g > <title>perf_mmap__push (5 samples, 3.29%)</title><rect x="879.5" y="933" width="38.8" height="15.0" fill="rgb(220,123,6)" rx="2" ry="2" /> <text x="882.47" y="943.5" >per..</text> </g> <g > <title>xcb_wait_for_reply (1 samples, 0.66%)</title><rect x="600.0" y="661" width="7.8" height="15.0" fill="rgb(223,210,36)" rx="2" ry="2" /> <text x="603.00" y="671.5" ></text> </g> <g > <title>unix_stream_sendmsg (2 samples, 1.32%)</title><rect x="390.4" y="405" width="15.5" height="15.0" fill="rgb(252,212,6)" rx="2" ry="2" /> <text x="393.39" y="415.5" ></text> </g> <g > <title>v3d_resource_create_with_modifiers (1 samples, 0.66%)</title><rect x="289.5" y="661" width="7.7" height="15.0" fill="rgb(249,224,23)" rx="2" ry="2" /> <text x="292.47" y="671.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="475.8" y="805" width="7.8" height="15.0" fill="rgb(251,86,29)" rx="2" ry="2" /> <text x="478.79" y="815.5" ></text> </g> <g > <title>hypot@plt (1 samples, 0.66%)</title><rect x="10.0" y="949" width="7.8" height="15.0" fill="rgb(242,148,35)" rx="2" ry="2" /> <text x="13.00" y="959.5" ></text> </g> <g > <title>sched_setaffinity (1 samples, 0.66%)</title><rect x="739.7" y="789" width="7.8" height="15.0" fill="rgb(216,138,47)" rx="2" ry="2" /> <text x="742.74" y="799.5" ></text> </g> <g > <title>__GI___writev (3 samples, 1.97%)</title><rect x="437.0" y="661" width="23.3" height="15.0" fill="rgb(229,196,7)" rx="2" ry="2" /> <text x="439.97" y="671.5" >_..</text> </g> <g > <title>EventToXI (1 samples, 0.66%)</title><rect x="312.8" y="805" width="7.7" height="15.0" fill="rgb(215,224,6)" rx="2" ry="2" /> <text x="315.76" y="815.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="134.2" y="645" width="7.8" height="15.0" fill="rgb(211,153,43)" rx="2" ry="2" /> <text x="137.21" y="655.5" ></text> </g> <g > <title>xf86_load_cursor_argb (5 samples, 3.29%)</title><rect x="320.5" y="645" width="38.8" height="15.0" fill="rgb(213,97,12)" rx="2" ry="2" /> <text x="323.53" y="655.5" >xf8..</text> </g> <g > <title>__drm_atomic_state_free (1 samples, 0.66%)</title><rect x="460.3" y="533" width="7.7" height="15.0" fill="rgb(250,85,50)" rx="2" ry="2" /> <text x="463.26" y="543.5" ></text> </g> <g > <title>hid_report_raw_event (2 samples, 1.32%)</title><rect x="980.4" y="597" width="15.5" height="15.0" fill="rgb(231,107,3)" rx="2" ry="2" /> <text x="983.39" y="607.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="359.3" y="533" width="23.3" height="15.0" fill="rgb(221,145,29)" rx="2" ry="2" /> <text x="362.34" y="543.5" >e..</text> </g> <g > <title>__sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="741" width="7.8" height="15.0" fill="rgb(248,206,10)" rx="2" ry="2" /> <text x="478.79" y="751.5" ></text> </g> <g > <title>do_idle (13 samples, 8.55%)</title><rect x="941.6" y="901" width="100.9" height="15.0" fill="rgb(210,96,27)" rx="2" ry="2" /> <text x="944.58" y="911.5" >do_idle</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="204.1" y="837" width="7.7" height="15.0" fill="rgb(225,14,29)" rx="2" ry="2" /> <text x="207.08" y="847.5" ></text> </g> <g > <title>el1h_64_sync_handler (1 samples, 0.66%)</title><rect x="910.5" y="629" width="7.8" height="15.0" fill="rgb(206,76,11)" rx="2" ry="2" /> <text x="913.53" y="639.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="227.4" y="661" width="7.7" height="15.0" fill="rgb(228,173,3)" rx="2" ry="2" /> <text x="230.37" y="671.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="522.4" y="645" width="7.7" height="15.0" fill="rgb(206,151,48)" rx="2" ry="2" /> <text x="525.37" y="655.5" ></text> </g> <g > <title>do_el0_svc (2 samples, 1.32%)</title><rect x="25.5" y="837" width="15.6" height="15.0" fill="rgb(232,50,7)" rx="2" ry="2" /> <text x="28.53" y="847.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="576.7" y="805" width="7.8" height="15.0" fill="rgb(227,2,31)" rx="2" ry="2" /> <text x="579.71" y="815.5" ></text> </g> <g > <title>el0t_64_sync (17 samples, 11.18%)</title><rect x="747.5" y="901" width="132.0" height="15.0" fill="rgb(219,195,36)" rx="2" ry="2" /> <text x="750.50" y="911.5" >el0t_64_sync</text> </g> <g > <title>jbd2_journal_next_log_block (1 samples, 0.66%)</title><rect x="530.1" y="917" width="7.8" height="15.0" fill="rgb(253,187,48)" rx="2" ry="2" /> <text x="533.13" y="927.5" ></text> </g> <g > <title>libinput_dispatch (3 samples, 1.97%)</title><rect x="41.1" y="885" width="23.2" height="15.0" fill="rgb(210,80,28)" rx="2" ry="2" /> <text x="44.05" y="895.5" >l..</text> </g> <g > <title>ProcShmPutImage (6 samples, 3.95%)</title><rect x="250.7" y="917" width="46.5" height="15.0" fill="rgb(233,22,0)" rx="2" ry="2" /> <text x="253.66" y="927.5" >Proc..</text> </g> <g > <title>__arm64_sys_ppoll (1 samples, 0.66%)</title><rect x="576.7" y="757" width="7.8" height="15.0" fill="rgb(245,191,2)" rx="2" ry="2" /> <text x="579.71" y="767.5" ></text> </g> <g > <title>ksys_write (1 samples, 0.66%)</title><rect x="33.3" y="773" width="7.8" height="15.0" fill="rgb(247,226,37)" rx="2" ry="2" /> <text x="36.29" y="783.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="405.9" y="549" width="7.8" height="15.0" fill="rgb(218,197,14)" rx="2" ry="2" /> <text x="408.92" y="559.5" ></text> </g> <g > <title>drm_atomic_helper_commit (5 samples, 3.29%)</title><rect x="64.3" y="373" width="38.9" height="15.0" fill="rgb(250,32,0)" rx="2" ry="2" /> <text x="67.34" y="383.5" >drm..</text> </g> <g > <title>__arm64_sys_epoll_pwait (3 samples, 1.97%)</title><rect x="110.9" y="805" width="23.3" height="15.0" fill="rgb(253,134,46)" rx="2" ry="2" /> <text x="113.92" y="815.5" >_..</text> </g> <g > <title>DeliverEventsToWindow (1 samples, 0.66%)</title><rect x="305.0" y="789" width="7.8" height="15.0" fill="rgb(245,133,37)" rx="2" ry="2" /> <text x="308.00" y="799.5" ></text> </g> <g > <title>__setplane_atomic (2 samples, 1.32%)</title><rect x="460.3" y="565" width="15.5" height="15.0" fill="rgb(237,164,8)" rx="2" ry="2" /> <text x="463.26" y="575.5" ></text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="95.4" y="261" width="7.8" height="15.0" fill="rgb(220,223,25)" rx="2" ry="2" /> <text x="98.39" y="271.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="700.9" y="453" width="7.8" height="15.0" fill="rgb(249,121,53)" rx="2" ry="2" /> <text x="703.92" y="463.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="724.2" y="565" width="7.8" height="15.0" fill="rgb(215,78,4)" rx="2" ry="2" /> <text x="727.21" y="575.5" ></text> </g> <g > <title>[qterminal] (1 samples, 0.66%)</title><rect x="918.3" y="949" width="7.8" height="15.0" fill="rgb(233,3,48)" rx="2" ry="2" /> <text x="921.29" y="959.5" ></text> </g> <g > <title>drm_ioctl_kernel (2 samples, 1.32%)</title><rect x="343.8" y="389" width="15.5" height="15.0" fill="rgb(231,176,46)" rx="2" ry="2" /> <text x="346.82" y="399.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="724.2" y="629" width="7.8" height="15.0" fill="rgb(211,183,19)" rx="2" ry="2" /> <text x="727.21" y="639.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (3 samples, 1.97%)</title><rect x="437.0" y="677" width="23.3" height="15.0" fill="rgb(248,221,12)" rx="2" ry="2" /> <text x="439.97" y="687.5" >_..</text> </g> <g > <title>damagePutImage (1 samples, 0.66%)</title><rect x="514.6" y="981" width="7.8" height="15.0" fill="rgb(254,9,48)" rx="2" ry="2" /> <text x="517.61" y="991.5" ></text> </g> <g > <title>QGuiApplicationPrivate::processMouseEvent (2 samples, 1.32%)</title><rect x="693.2" y="789" width="15.5" height="15.0" fill="rgb(250,21,6)" rx="2" ry="2" /> <text x="696.16" y="799.5" ></text> </g> <g > <title>__arm64_sys_sched_setaffinity (1 samples, 0.66%)</title><rect x="739.7" y="805" width="7.8" height="15.0" fill="rgb(249,191,8)" rx="2" ry="2" /> <text x="742.74" y="815.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="242.9" y="869" width="7.8" height="15.0" fill="rgb(207,8,13)" rx="2" ry="2" /> <text x="245.89" y="879.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="789" width="7.7" height="15.0" fill="rgb(231,87,20)" rx="2" ry="2" /> <text x="525.37" y="799.5" ></text> </g> <g > <title>do_sys_poll (2 samples, 1.32%)</title><rect x="219.6" y="741" width="15.5" height="15.0" fill="rgb(235,153,51)" rx="2" ry="2" /> <text x="222.61" y="751.5" ></text> </g> <g > <title>main (2 samples, 1.32%)</title><rect x="576.7" y="933" width="15.5" height="15.0" fill="rgb(226,152,42)" rx="2" ry="2" /> <text x="579.71" y="943.5" ></text> </g> <g > <title>kcompactd0 (1 samples, 0.66%)</title><rect x="537.9" y="997" width="7.8" height="15.0" fill="rgb(237,225,13)" rx="2" ry="2" /> <text x="540.89" y="1007.5" ></text> </g> <g > <title>AnimCurDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="853" width="7.8" height="15.0" fill="rgb(248,46,20)" rx="2" ry="2" /> <text x="238.13" y="863.5" ></text> </g> <g > <title>g_main_context_iteration (1 samples, 0.66%)</title><rect x="918.3" y="885" width="7.8" height="15.0" fill="rgb(245,39,49)" rx="2" ry="2" /> <text x="921.29" y="895.5" ></text> </g> <g > <title>DeliverToWindowOwner (3 samples, 1.97%)</title><rect x="382.6" y="741" width="23.3" height="15.0" fill="rgb(213,205,7)" rx="2" ry="2" /> <text x="385.63" y="751.5" >D..</text> </g> <g > <title>poll_for_next_event (1 samples, 0.66%)</title><rect x="584.5" y="789" width="7.7" height="15.0" fill="rgb(228,131,38)" rx="2" ry="2" /> <text x="587.47" y="799.5" ></text> </g> <g > <title>v3d_resource_bo_alloc (1 samples, 0.66%)</title><rect x="289.5" y="645" width="7.7" height="15.0" fill="rgb(240,167,25)" rx="2" ry="2" /> <text x="292.47" y="655.5" ></text> </g> <g > <title>__pselect (1 samples, 0.66%)</title><rect x="561.2" y="949" width="7.7" height="15.0" fill="rgb(234,30,41)" rx="2" ry="2" /> <text x="564.18" y="959.5" ></text> </g> <g > <title>QWindowSystemInterfacePrivate::handleWindowSystemEvent<QWindowSystemInterface::AsynchronousDelivery> (1 samples, 0.66%)</title><rect x="708.7" y="757" width="7.7" height="15.0" fill="rgb(232,46,24)" rx="2" ry="2" /> <text x="711.68" y="767.5" ></text> </g> <g > <title>ext4_block_write_begin (2 samples, 1.32%)</title><rect x="887.2" y="629" width="15.6" height="15.0" fill="rgb(220,130,27)" rx="2" ry="2" /> <text x="890.24" y="639.5" ></text> </g> <g > <title>drm_atomic_helper_commit (1 samples, 0.66%)</title><rect x="235.1" y="373" width="7.8" height="15.0" fill="rgb(224,197,1)" rx="2" ry="2" /> <text x="238.13" y="383.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.66%)</title><rect x="87.6" y="85" width="7.8" height="15.0" fill="rgb(213,213,24)" rx="2" ry="2" /> <text x="90.63" y="95.5" ></text> </g> <g > <title>xf86_set_cursor_position (3 samples, 1.97%)</title><rect x="359.3" y="661" width="23.3" height="15.0" fill="rgb(207,13,31)" rx="2" ry="2" /> <text x="362.34" y="671.5" >x..</text> </g> <g > <title>QWidgetPrivate::drawWidget (8 samples, 5.26%)</title><rect x="607.8" y="725" width="62.1" height="15.0" fill="rgb(253,94,32)" rx="2" ry="2" /> <text x="610.76" y="735.5" >QWidge..</text> </g> <g > <title>[libQt5Gui.so.5.15.2] (2 samples, 1.32%)</title><rect x="654.3" y="581" width="15.6" height="15.0" fill="rgb(251,144,41)" rx="2" ry="2" /> <text x="657.34" y="591.5" ></text> </g> <g > <title>miCopyRegion (2 samples, 1.32%)</title><rect x="281.7" y="837" width="15.5" height="15.0" fill="rgb(221,115,19)" rx="2" ry="2" /> <text x="284.71" y="847.5" ></text> </g> <g > <title>msg_submit (1 samples, 0.66%)</title><rect x="235.1" y="245" width="7.8" height="15.0" fill="rgb(253,188,44)" rx="2" ry="2" /> <text x="238.13" y="255.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="460.3" y="677" width="15.5" height="15.0" fill="rgb(244,68,16)" rx="2" ry="2" /> <text x="463.26" y="687.5" ></text> </g> <g > <title>new_sync_write (5 samples, 3.29%)</title><rect x="879.5" y="709" width="38.8" height="15.0" fill="rgb(250,28,6)" rx="2" ry="2" /> <text x="882.47" y="719.5" >new..</text> </g> <g > <title>[perf] (24 samples, 15.79%)</title><rect x="732.0" y="981" width="186.3" height="15.0" fill="rgb(248,45,39)" rx="2" ry="2" /> <text x="734.97" y="991.5" >[perf]</text> </g> <g > <title>__irq_exit_rcu (5 samples, 3.29%)</title><rect x="964.9" y="725" width="38.8" height="15.0" fill="rgb(223,104,12)" rx="2" ry="2" /> <text x="967.87" y="735.5" >__i..</text> </g> <g > <title>__arm64_sys_ioctl (3 samples, 1.97%)</title><rect x="359.3" y="469" width="23.3" height="15.0" fill="rgb(217,30,34)" rx="2" ry="2" /> <text x="362.34" y="479.5" >_..</text> </g> <g > <title>schedule (2 samples, 1.32%)</title><rect x="180.8" y="677" width="15.5" height="15.0" fill="rgb(206,30,22)" rx="2" ry="2" /> <text x="183.79" y="687.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="235.1" y="213" width="7.8" height="15.0" fill="rgb(226,98,38)" rx="2" ry="2" /> <text x="238.13" y="223.5" ></text> </g> <g > <title>u_default_texture_subdata (4 samples, 2.63%)</title><rect x="250.7" y="757" width="31.0" height="15.0" fill="rgb(232,49,17)" rx="2" ry="2" /> <text x="253.66" y="767.5" >u_..</text> </g> <g > <title>mbox_send_message (1 samples, 0.66%)</title><rect x="235.1" y="261" width="7.8" height="15.0" fill="rgb(212,83,48)" rx="2" ry="2" /> <text x="238.13" y="271.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="297.2" y="837" width="7.8" height="15.0" fill="rgb(223,192,23)" rx="2" ry="2" /> <text x="300.24" y="847.5" ></text> </g> <g > <title>DRM_IOCTL (2 samples, 1.32%)</title><rect x="343.8" y="565" width="15.5" height="15.0" fill="rgb(231,211,51)" rx="2" ry="2" /> <text x="346.82" y="575.5" ></text> </g> <g > <title>drmModeMoveCursor (2 samples, 1.32%)</title><rect x="460.3" y="821" width="15.5" height="15.0" fill="rgb(251,0,42)" rx="2" ry="2" /> <text x="463.26" y="831.5" ></text> </g> <g > <title>_XEventsQueued (1 samples, 0.66%)</title><rect x="584.5" y="853" width="7.7" height="15.0" fill="rgb(249,55,52)" rx="2" ry="2" /> <text x="587.47" y="863.5" ></text> </g> <g > <title>DeliverEventToInputClients (1 samples, 0.66%)</title><rect x="305.0" y="757" width="7.8" height="15.0" fill="rgb(238,137,38)" rx="2" ry="2" /> <text x="308.00" y="767.5" ></text> </g> <g > <title>ep_item_poll.isra.0 (1 samples, 0.66%)</title><rect x="126.4" y="757" width="7.8" height="15.0" fill="rgb(239,24,4)" rx="2" ry="2" /> <text x="129.45" y="767.5" ></text> </g> <g > <title>finish_fault (1 samples, 0.66%)</title><rect x="910.5" y="517" width="7.8" height="15.0" fill="rgb(244,183,14)" rx="2" ry="2" /> <text x="913.53" y="527.5" ></text> </g> <g > <title>__pthread_mutex_cond_lock (1 samples, 0.66%)</title><rect x="716.4" y="677" width="7.8" height="15.0" fill="rgb(251,9,39)" rx="2" ry="2" /> <text x="719.45" y="687.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="126.4" y="709" width="7.8" height="15.0" fill="rgb(206,70,42)" rx="2" ry="2" /> <text x="129.45" y="719.5" ></text> </g> <g > <title>el1h_64_irq_handler (1 samples, 0.66%)</title><rect x="1073.6" y="869" width="7.7" height="15.0" fill="rgb(238,48,29)" rx="2" ry="2" /> <text x="1076.55" y="879.5" ></text> </g> <g > <title>_XEventsQueued (1 samples, 0.66%)</title><rect x="1166.7" y="869" width="7.8" height="15.0" fill="rgb(206,18,30)" rx="2" ry="2" /> <text x="1169.71" y="879.5" ></text> </g> <g > <title>____sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="709" width="7.8" height="15.0" fill="rgb(250,85,46)" rx="2" ry="2" /> <text x="478.79" y="719.5" ></text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.66%)</title><rect x="305.0" y="677" width="7.8" height="15.0" fill="rgb(244,27,20)" rx="2" ry="2" /> <text x="308.00" y="687.5" ></text> </g> <g > <title>__arm64_sys_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="677" width="7.8" height="15.0" fill="rgb(254,137,1)" rx="2" ry="2" /> <text x="1169.71" y="687.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="475.8" y="837" width="7.8" height="15.0" fill="rgb(234,84,46)" rx="2" ry="2" /> <text x="478.79" y="847.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="235.1" y="565" width="7.8" height="15.0" fill="rgb(209,189,10)" rx="2" ry="2" /> <text x="238.13" y="575.5" ></text> </g> <g > <title>swapper (27 samples, 17.76%)</title><rect x="941.6" y="997" width="209.6" height="15.0" fill="rgb(247,124,5)" rx="2" ry="2" /> <text x="944.58" y="1007.5" >swapper</text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="235.1" y="533" width="7.8" height="15.0" fill="rgb(221,96,53)" rx="2" ry="2" /> <text x="238.13" y="543.5" ></text> </g> <g > <title>process_one_work (1 samples, 0.66%)</title><rect x="545.7" y="933" width="7.7" height="15.0" fill="rgb(225,77,29)" rx="2" ry="2" /> <text x="548.66" y="943.5" ></text> </g> <g > <title>__arch_copy_from_user (1 samples, 0.66%)</title><rect x="879.5" y="645" width="7.7" height="15.0" fill="rgb(215,73,1)" rx="2" ry="2" /> <text x="882.47" y="655.5" ></text> </g> <g > <title>do_writev (1 samples, 0.66%)</title><rect x="305.0" y="517" width="7.8" height="15.0" fill="rgb(223,99,20)" rx="2" ry="2" /> <text x="308.00" y="527.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="165.3" y="821" width="7.7" height="15.0" fill="rgb(236,22,12)" rx="2" ry="2" /> <text x="168.26" y="831.5" ></text> </g> <g > <title>FlushClient (1 samples, 0.66%)</title><rect x="242.9" y="901" width="7.8" height="15.0" fill="rgb(244,87,47)" rx="2" ry="2" /> <text x="245.89" y="911.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="584.5" y="693" width="7.7" height="15.0" fill="rgb(218,131,40)" rx="2" ry="2" /> <text x="587.47" y="703.5" ></text> </g> <g > <title>___sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="725" width="7.8" height="15.0" fill="rgb(211,76,29)" rx="2" ry="2" /> <text x="478.79" y="735.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="134.2" y="757" width="7.8" height="15.0" fill="rgb(250,56,13)" rx="2" ry="2" /> <text x="137.21" y="767.5" ></text> </g> <g > <title>__lll_lock_wait (1 samples, 0.66%)</title><rect x="716.4" y="661" width="7.8" height="15.0" fill="rgb(211,96,10)" rx="2" ry="2" /> <text x="719.45" y="671.5" ></text> </g> <g > <title>handle_domain_irq (1 samples, 0.66%)</title><rect x="452.5" y="245" width="7.8" height="15.0" fill="rgb(247,82,42)" rx="2" ry="2" /> <text x="455.50" y="255.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="374.9" y="165" width="7.7" height="15.0" fill="rgb(227,194,44)" rx="2" ry="2" /> <text x="377.87" y="175.5" ></text> </g> <g > <title>usb_giveback_urb_bh (3 samples, 1.97%)</title><rect x="980.4" y="661" width="23.3" height="15.0" fill="rgb(247,195,3)" rx="2" ry="2" /> <text x="983.39" y="671.5" >u..</text> </g> <g > <title>wait_for_reply (1 samples, 0.66%)</title><rect x="700.9" y="469" width="7.8" height="15.0" fill="rgb(208,198,30)" rx="2" ry="2" /> <text x="703.92" y="479.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="700.9" y="261" width="7.8" height="15.0" fill="rgb(228,167,14)" rx="2" ry="2" /> <text x="703.92" y="271.5" ></text> </g> <g > <title>__GI___sched_setaffinity_new (1 samples, 0.66%)</title><rect x="739.7" y="917" width="7.8" height="15.0" fill="rgb(213,77,48)" rx="2" ry="2" /> <text x="742.74" y="927.5" ></text> </g> <g > <title>do_epoll_pwait.part.0 (3 samples, 1.97%)</title><rect x="110.9" y="789" width="23.3" height="15.0" fill="rgb(232,214,41)" rx="2" ry="2" /> <text x="113.92" y="799.5" >d..</text> </g> <g > <title>sock_def_readable (1 samples, 0.66%)</title><rect x="398.2" y="389" width="7.7" height="15.0" fill="rgb(232,149,29)" rx="2" ry="2" /> <text x="401.16" y="399.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="592.2" y="981" width="7.8" height="15.0" fill="rgb(227,159,27)" rx="2" ry="2" /> <text x="595.24" y="991.5" ></text> </g> <g > <title>g_main_context_iterate (2 samples, 1.32%)</title><rect x="576.7" y="901" width="15.5" height="15.0" fill="rgb(222,136,43)" rx="2" ry="2" /> <text x="579.71" y="911.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="165.3" y="837" width="7.7" height="15.0" fill="rgb(251,136,17)" rx="2" ry="2" /> <text x="168.26" y="847.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (5 samples, 3.29%)</title><rect x="64.3" y="341" width="38.9" height="15.0" fill="rgb(210,136,37)" rx="2" ry="2" /> <text x="67.34" y="351.5" >vc4..</text> </g> <g > <title>CoreEnterLeaveEvent (3 samples, 1.97%)</title><rect x="382.6" y="773" width="23.3" height="15.0" fill="rgb(248,120,4)" rx="2" ry="2" /> <text x="385.63" y="783.5" >C..</text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="638.8" y="629" width="7.8" height="15.0" fill="rgb(212,18,44)" rx="2" ry="2" /> <text x="641.82" y="639.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="933" width="7.7" height="15.0" fill="rgb(227,202,42)" rx="2" ry="2" /> <text x="525.37" y="943.5" ></text> </g> <g > <title>TryClientEvents (3 samples, 1.97%)</title><rect x="382.6" y="725" width="23.3" height="15.0" fill="rgb(223,183,1)" rx="2" ry="2" /> <text x="385.63" y="735.5" >T..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="305.0" y="565" width="7.8" height="15.0" fill="rgb(246,158,30)" rx="2" ry="2" /> <text x="308.00" y="575.5" ></text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="95.4" y="213" width="7.8" height="15.0" fill="rgb(212,43,0)" rx="2" ry="2" /> <text x="98.39" y="223.5" ></text> </g> <g > <title>rpi_firmware_property (2 samples, 1.32%)</title><rect x="926.1" y="789" width="15.5" height="15.0" fill="rgb(241,82,17)" rx="2" ry="2" /> <text x="929.05" y="799.5" ></text> </g> <g > <title>g_main_context_dispatch (1 samples, 0.66%)</title><rect x="918.3" y="853" width="7.8" height="15.0" fill="rgb(219,153,6)" rx="2" ry="2" /> <text x="921.29" y="863.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (8 samples, 5.26%)</title><rect x="669.9" y="821" width="62.1" height="15.0" fill="rgb(218,80,51)" rx="2" ry="2" /> <text x="672.87" y="831.5" >[libQt..</text> </g> <g > <title>xf86ScreenMoveCursor (2 samples, 1.32%)</title><rect x="460.3" y="869" width="15.5" height="15.0" fill="rgb(209,206,14)" rx="2" ry="2" /> <text x="463.26" y="879.5" ></text> </g> <g > <title>CoreLeaveNotifies (1 samples, 0.66%)</title><rect x="405.9" y="773" width="7.8" height="15.0" fill="rgb(251,26,12)" rx="2" ry="2" /> <text x="408.92" y="783.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.66%)</title><rect x="918.3" y="405" width="7.8" height="15.0" fill="rgb(235,89,45)" rx="2" ry="2" /> <text x="921.29" y="415.5" ></text> </g> <g > <title>_mesa_TexSubImage2D (4 samples, 2.63%)</title><rect x="250.7" y="821" width="31.0" height="15.0" fill="rgb(246,107,4)" rx="2" ry="2" /> <text x="253.66" y="831.5" >_m..</text> </g> <g > <title>xscreensaver (3 samples, 1.97%)</title><rect x="1166.7" y="997" width="23.3" height="15.0" fill="rgb(254,125,27)" rx="2" ry="2" /> <text x="1169.71" y="1007.5" >x..</text> </g> <g > <title>QWindowSystemInterface::sendWindowSystemEvents (5 samples, 3.29%)</title><rect x="669.9" y="805" width="38.8" height="15.0" fill="rgb(248,168,52)" rx="2" ry="2" /> <text x="672.87" y="815.5" >QWi..</text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="568.9" y="917" width="7.8" height="15.0" fill="rgb(246,44,42)" rx="2" ry="2" /> <text x="571.95" y="927.5" ></text> </g> <g > <title>drm_mode_cursor_ioctl (1 samples, 0.66%)</title><rect x="235.1" y="469" width="7.8" height="15.0" fill="rgb(213,50,37)" rx="2" ry="2" /> <text x="238.13" y="479.5" ></text> </g> <g > <title>gic_handle_irq (5 samples, 3.29%)</title><rect x="964.9" y="773" width="38.8" height="15.0" fill="rgb(212,35,11)" rx="2" ry="2" /> <text x="967.87" y="783.5" >gic..</text> </g> <g > <title>QFusionStyle::subControlRect (1 samples, 0.66%)</title><rect x="669.9" y="613" width="7.7" height="15.0" fill="rgb(214,141,35)" rx="2" ry="2" /> <text x="672.87" y="623.5" ></text> </g> <g > <title>vc4_plane_atomic_update (1 samples, 0.66%)</title><rect x="351.6" y="213" width="7.7" height="15.0" fill="rgb(232,228,27)" rx="2" ry="2" /> <text x="354.58" y="223.5" ></text> </g> <g > <title>miPointerUpdateSprite (1 samples, 0.66%)</title><rect x="235.1" y="789" width="7.8" height="15.0" fill="rgb(206,20,7)" rx="2" ry="2" /> <text x="238.13" y="799.5" ></text> </g> <g > <title>XEventsQueued (1 samples, 0.66%)</title><rect x="1166.7" y="901" width="7.8" height="15.0" fill="rgb(242,69,46)" rx="2" ry="2" /> <text x="1169.71" y="911.5" ></text> </g> <g > <title>xf86ScreenSetCursor (1 samples, 0.66%)</title><rect x="235.1" y="725" width="7.8" height="15.0" fill="rgb(222,221,47)" rx="2" ry="2" /> <text x="238.13" y="735.5" ></text> </g> <g > <title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.66%)</title><rect x="1003.7" y="869" width="7.7" height="15.0" fill="rgb(241,60,21)" rx="2" ry="2" /> <text x="1006.68" y="879.5" ></text> </g> <g > <title>nohz_run_idle_balance (1 samples, 0.66%)</title><rect x="1081.3" y="917" width="7.8" height="15.0" fill="rgb(221,8,54)" rx="2" ry="2" /> <text x="1084.32" y="927.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="110.9" y="757" width="7.8" height="15.0" fill="rgb(207,134,3)" rx="2" ry="2" /> <text x="113.92" y="767.5" ></text> </g> <g > <title>unix_stream_read_generic (1 samples, 0.66%)</title><rect x="475.8" y="677" width="7.8" height="15.0" fill="rgb(239,183,10)" rx="2" ry="2" /> <text x="478.79" y="687.5" ></text> </g> <g > <title>gdbus (1 samples, 0.66%)</title><rect x="522.4" y="997" width="7.7" height="15.0" fill="rgb(228,33,17)" rx="2" ry="2" /> <text x="525.37" y="1007.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="289.5" y="549" width="7.7" height="15.0" fill="rgb(215,10,29)" rx="2" ry="2" /> <text x="292.47" y="559.5" ></text> </g> <g > <title>[systemd-journald] (2 samples, 1.32%)</title><rect x="1151.2" y="981" width="15.5" height="15.0" fill="rgb(220,94,48)" rx="2" ry="2" /> <text x="1154.18" y="991.5" ></text> </g> <g > <title>fill_pointer_events (6 samples, 3.95%)</title><rect x="64.3" y="821" width="46.6" height="15.0" fill="rgb(230,146,17)" rx="2" ry="2" /> <text x="67.34" y="831.5" >fill..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="724.2" y="645" width="7.8" height="15.0" fill="rgb(214,203,24)" rx="2" ry="2" /> <text x="727.21" y="655.5" ></text> </g> <g > <title>start_kernel (13 samples, 8.55%)</title><rect x="941.6" y="965" width="100.9" height="15.0" fill="rgb(243,206,23)" rx="2" ry="2" /> <text x="944.58" y="975.5" >start_kernel</text> </g> <g > <title>tick_nohz_idle_exit (2 samples, 1.32%)</title><rect x="1135.7" y="917" width="15.5" height="15.0" fill="rgb(253,84,12)" rx="2" ry="2" /> <text x="1138.66" y="927.5" ></text> </g> <g > <title>update_blocked_averages (1 samples, 0.66%)</title><rect x="1003.7" y="853" width="7.7" height="15.0" fill="rgb(250,31,21)" rx="2" ry="2" /> <text x="1006.68" y="863.5" ></text> </g> <g > <title>hid_input_report (2 samples, 1.32%)</title><rect x="980.4" y="613" width="15.5" height="15.0" fill="rgb(251,134,0)" rx="2" ry="2" /> <text x="983.39" y="623.5" ></text> </g> <g > <title>__set_cpus_allowed_ptr_locked (1 samples, 0.66%)</title><rect x="739.7" y="757" width="7.8" height="15.0" fill="rgb(229,42,25)" rx="2" ry="2" /> <text x="742.74" y="767.5" ></text> </g> <g > <title>sock_write_iter (2 samples, 1.32%)</title><rect x="444.7" y="453" width="15.6" height="15.0" fill="rgb(224,47,35)" rx="2" ry="2" /> <text x="447.74" y="463.5" ></text> </g> <g > <title>do_mem_abort (1 samples, 0.66%)</title><rect x="910.5" y="597" width="7.8" height="15.0" fill="rgb(236,49,30)" rx="2" ry="2" /> <text x="913.53" y="607.5" ></text> </g> <g > <title>__arm64_sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="629" width="7.7" height="15.0" fill="rgb(226,227,31)" rx="2" ry="2" /> <text x="587.47" y="639.5" ></text> </g> <g > <title>wait_for_reply (2 samples, 1.32%)</title><rect x="716.4" y="709" width="15.6" height="15.0" fill="rgb(248,27,17)" rx="2" ry="2" /> <text x="719.45" y="719.5" ></text> </g> <g > <title>__fget_light (1 samples, 0.66%)</title><rect x="405.9" y="453" width="7.8" height="15.0" fill="rgb(224,100,46)" rx="2" ry="2" /> <text x="408.92" y="463.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="134.2" y="773" width="7.8" height="15.0" fill="rgb(213,93,17)" rx="2" ry="2" /> <text x="137.21" y="783.5" ></text> </g> <g > <title>pagecache_get_page (1 samples, 0.66%)</title><rect x="902.8" y="613" width="7.7" height="15.0" fill="rgb(213,126,9)" rx="2" ry="2" /> <text x="905.76" y="623.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="118.7" y="741" width="7.7" height="15.0" fill="rgb(254,81,31)" rx="2" ry="2" /> <text x="121.68" y="751.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="584.5" y="725" width="7.7" height="15.0" fill="rgb(240,21,28)" rx="2" ry="2" /> <text x="587.47" y="735.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="219.6" y="693" width="7.8" height="15.0" fill="rgb(206,40,51)" rx="2" ry="2" /> <text x="222.61" y="703.5" ></text> </g> <g > <title>do_iter_write (3 samples, 1.97%)</title><rect x="382.6" y="469" width="23.3" height="15.0" fill="rgb(246,209,8)" rx="2" ry="2" /> <text x="385.63" y="479.5" >d..</text> </g> <g > <title>consume_skb (1 samples, 0.66%)</title><rect x="475.8" y="661" width="7.8" height="15.0" fill="rgb(242,192,11)" rx="2" ry="2" /> <text x="478.79" y="671.5" ></text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="134.2" y="661" width="7.8" height="15.0" fill="rgb(209,179,7)" rx="2" ry="2" /> <text x="137.21" y="671.5" ></text> </g> <g > <title>__libc_start_main (36 samples, 23.68%)</title><rect x="235.1" y="965" width="279.5" height="15.0" fill="rgb(215,2,7)" rx="2" ry="2" /> <text x="238.13" y="975.5" >__libc_start_main</text> </g> <g > <title>QCommonStyle::subControlRect (1 samples, 0.66%)</title><rect x="669.9" y="597" width="7.7" height="15.0" fill="rgb(213,193,9)" rx="2" ry="2" /> <text x="672.87" y="607.5" ></text> </g> <g > <title>vc4_plane_atomic_update (1 samples, 0.66%)</title><rect x="468.0" y="453" width="7.8" height="15.0" fill="rgb(243,28,5)" rx="2" ry="2" /> <text x="471.03" y="463.5" ></text> </g> <g > <title>systemd-journal (2 samples, 1.32%)</title><rect x="1151.2" y="997" width="15.5" height="15.0" fill="rgb(246,167,16)" rx="2" ry="2" /> <text x="1154.18" y="1007.5" ></text> </g> <g > <title>arch_local_irq_disable (1 samples, 0.66%)</title><rect x="506.8" y="677" width="7.8" height="15.0" fill="rgb(210,67,29)" rx="2" ry="2" /> <text x="509.84" y="687.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (3 samples, 1.97%)</title><rect x="41.1" y="869" width="23.2" height="15.0" fill="rgb(227,81,10)" rx="2" ry="2" /> <text x="44.05" y="879.5" >[..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="1182.2" y="821" width="7.8" height="15.0" fill="rgb(247,70,10)" rx="2" ry="2" /> <text x="1185.24" y="831.5" ></text> </g> <g > <title>DeliverDeviceEvents (2 samples, 1.32%)</title><rect x="305.0" y="837" width="15.5" height="15.0" fill="rgb(251,198,33)" rx="2" ry="2" /> <text x="308.00" y="847.5" ></text> </g> <g > <title>__arm64_sys_ioctl (6 samples, 3.95%)</title><rect x="64.3" y="517" width="46.6" height="15.0" fill="rgb(212,79,7)" rx="2" ry="2" /> <text x="67.34" y="527.5" >__ar..</text> </g> <g > <title>vc4_plane_atomic_update (4 samples, 2.63%)</title><rect x="72.1" y="309" width="31.1" height="15.0" fill="rgb(229,105,22)" rx="2" ry="2" /> <text x="75.11" y="319.5" >vc..</text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="646.6" y="613" width="7.7" height="15.0" fill="rgb(208,190,26)" rx="2" ry="2" /> <text x="649.58" y="623.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (2 samples, 1.32%)</title><rect x="677.6" y="757" width="15.6" height="15.0" fill="rgb(232,199,35)" rx="2" ry="2" /> <text x="680.63" y="767.5" ></text> </g> <g > <title>[libfm-qt.so.10.0.0] (1 samples, 0.66%)</title><rect x="700.9" y="549" width="7.8" height="15.0" fill="rgb(229,52,52)" rx="2" ry="2" /> <text x="703.92" y="559.5" ></text> </g> <g > <title>texsubimage_err (4 samples, 2.63%)</title><rect x="250.7" y="805" width="31.0" height="15.0" fill="rgb(242,211,20)" rx="2" ry="2" /> <text x="253.66" y="815.5" >te..</text> </g> <g > <title>el0t_64_sync (5 samples, 3.29%)</title><rect x="879.5" y="853" width="38.8" height="15.0" fill="rgb(206,154,30)" rx="2" ry="2" /> <text x="882.47" y="863.5" >el0..</text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="95.4" y="229" width="7.8" height="15.0" fill="rgb(235,201,53)" rx="2" ry="2" /> <text x="98.39" y="239.5" ></text> </g> <g > <title>QFrame::event (1 samples, 0.66%)</title><rect x="638.8" y="581" width="7.8" height="15.0" fill="rgb(224,116,6)" rx="2" ry="2" /> <text x="641.82" y="591.5" ></text> </g> <g > <title>gic_handle_irq (1 samples, 0.66%)</title><rect x="452.5" y="261" width="7.8" height="15.0" fill="rgb(213,86,7)" rx="2" ry="2" /> <text x="455.50" y="271.5" ></text> </g> <g > <title>thread_start (12 samples, 7.89%)</title><rect x="142.0" y="981" width="93.1" height="15.0" fill="rgb(250,207,43)" rx="2" ry="2" /> <text x="144.97" y="991.5" >thread_start</text> </g> <g > <title>QCoreApplicationPrivate::sendPostedEvents (9 samples, 5.92%)</title><rect x="600.0" y="805" width="69.9" height="15.0" fill="rgb(227,52,26)" rx="2" ry="2" /> <text x="603.00" y="815.5" >QCoreAp..</text> </g> <g > <title>finish_task_switch.isra.0 (1 samples, 0.66%)</title><rect x="724.2" y="453" width="7.8" height="15.0" fill="rgb(242,132,15)" rx="2" ry="2" /> <text x="727.21" y="463.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="475.8" y="821" width="7.8" height="15.0" fill="rgb(254,176,45)" rx="2" ry="2" /> <text x="478.79" y="831.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="1166.7" y="709" width="7.8" height="15.0" fill="rgb(235,24,24)" rx="2" ry="2" /> <text x="1169.71" y="719.5" ></text> </g> <g > <title>drm_ioctl (2 samples, 1.32%)</title><rect x="460.3" y="645" width="15.5" height="15.0" fill="rgb(205,82,9)" rx="2" ry="2" /> <text x="463.26" y="655.5" ></text> </g> <g > <title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="87.6" y="117" width="7.8" height="15.0" fill="rgb(215,54,53)" rx="2" ry="2" /> <text x="90.63" y="127.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="491.3" y="869" width="23.3" height="15.0" fill="rgb(247,46,15)" rx="2" ry="2" /> <text x="494.32" y="879.5" >e..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="1182.2" y="853" width="7.8" height="15.0" fill="rgb(246,21,3)" rx="2" ry="2" /> <text x="1185.24" y="863.5" ></text> </g> <g > <title>QEventLoop::exec (1 samples, 0.66%)</title><rect x="918.3" y="917" width="7.8" height="15.0" fill="rgb(214,105,54)" rx="2" ry="2" /> <text x="921.29" y="927.5" ></text> </g> <g > <title>iov_iter_fault_in_readable (1 samples, 0.66%)</title><rect x="910.5" y="661" width="7.8" height="15.0" fill="rgb(210,77,21)" rx="2" ry="2" /> <text x="913.53" y="671.5" ></text> </g> <g > <title>drm_ioctl_kernel (1 samples, 0.66%)</title><rect x="289.5" y="437" width="7.7" height="15.0" fill="rgb(247,57,11)" rx="2" ry="2" /> <text x="292.47" y="447.5" ></text> </g> <g > <title>drm_atomic_helper_commit_modeset_disables (1 samples, 0.66%)</title><rect x="64.3" y="325" width="7.8" height="15.0" fill="rgb(234,122,29)" rx="2" ry="2" /> <text x="67.34" y="335.5" ></text> </g> <g > <title>irq_exit (1 samples, 0.66%)</title><rect x="219.6" y="565" width="7.8" height="15.0" fill="rgb(218,210,10)" rx="2" ry="2" /> <text x="222.61" y="575.5" ></text> </g> <g > <title>in_lock_functions (1 samples, 0.66%)</title><rect x="910.5" y="485" width="7.8" height="15.0" fill="rgb(217,119,53)" rx="2" ry="2" /> <text x="913.53" y="495.5" ></text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="568.9" y="933" width="7.8" height="15.0" fill="rgb(239,7,47)" rx="2" ry="2" /> <text x="571.95" y="943.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (1 samples, 0.66%)</title><rect x="685.4" y="693" width="7.8" height="15.0" fill="rgb(253,113,9)" rx="2" ry="2" /> <text x="688.39" y="703.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="367.1" y="165" width="7.8" height="15.0" fill="rgb(225,205,11)" rx="2" ry="2" /> <text x="370.11" y="175.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="918.3" y="821" width="7.8" height="15.0" fill="rgb(247,213,44)" rx="2" ry="2" /> <text x="921.29" y="831.5" ></text> </g> <g > <title>drm_gem_shmem_get_pages_sgt (1 samples, 0.66%)</title><rect x="289.5" y="389" width="7.7" height="15.0" fill="rgb(239,107,54)" rx="2" ry="2" /> <text x="292.47" y="399.5" ></text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="724.2" y="469" width="7.8" height="15.0" fill="rgb(210,197,51)" rx="2" ry="2" /> <text x="727.21" y="479.5" ></text> </g> <g > <title>__libc_start_main (2 samples, 1.32%)</title><rect x="1151.2" y="965" width="15.5" height="15.0" fill="rgb(207,172,21)" rx="2" ry="2" /> <text x="1154.18" y="975.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="918.3" y="693" width="7.8" height="15.0" fill="rgb(248,22,42)" rx="2" ry="2" /> <text x="921.29" y="703.5" ></text> </g> <g > <title>el0t_64_sync (2 samples, 1.32%)</title><rect x="460.3" y="757" width="15.5" height="15.0" fill="rgb(238,5,5)" rx="2" ry="2" /> <text x="463.26" y="767.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (1 samples, 0.66%)</title><rect x="235.1" y="693" width="7.8" height="15.0" fill="rgb(253,157,3)" rx="2" ry="2" /> <text x="238.13" y="703.5" ></text> </g> <g > <title>QPainter::fillRect (2 samples, 1.32%)</title><rect x="654.3" y="613" width="15.6" height="15.0" fill="rgb(231,8,6)" rx="2" ry="2" /> <text x="657.34" y="623.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="242.9" y="581" width="7.8" height="15.0" fill="rgb(218,215,9)" rx="2" ry="2" /> <text x="245.89" y="591.5" ></text> </g> <g > <title>CoreEnterLeaveEvent (1 samples, 0.66%)</title><rect x="405.9" y="757" width="7.8" height="15.0" fill="rgb(242,18,16)" rx="2" ry="2" /> <text x="408.92" y="767.5" ></text> </g> <g > <title>arch_cpu_idle (8 samples, 5.26%)</title><rect x="941.6" y="869" width="62.1" height="15.0" fill="rgb(233,175,33)" rx="2" ry="2" /> <text x="944.58" y="879.5" >arch_c..</text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="980.4" y="533" width="7.8" height="15.0" fill="rgb(241,133,14)" rx="2" ry="2" /> <text x="983.39" y="543.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="645" width="7.7" height="15.0" fill="rgb(240,190,43)" rx="2" ry="2" /> <text x="672.87" y="655.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="437.0" y="613" width="23.3" height="15.0" fill="rgb(249,156,14)" rx="2" ry="2" /> <text x="439.97" y="623.5" >e..</text> </g> <g > <title>xf86SetCursor (8 samples, 5.26%)</title><rect x="320.5" y="693" width="62.1" height="15.0" fill="rgb(254,64,29)" rx="2" ry="2" /> <text x="323.53" y="703.5" >xf86Se..</text> </g> <g > <title>QRasterPaintEngine::fillRect (4 samples, 2.63%)</title><rect x="607.8" y="661" width="31.0" height="15.0" fill="rgb(213,135,40)" rx="2" ry="2" /> <text x="610.76" y="671.5" >QR..</text> </g> <g > <title>QAbstractItemView::mouseMoveEvent (1 samples, 0.66%)</title><rect x="700.9" y="565" width="7.8" height="15.0" fill="rgb(240,228,16)" rx="2" ry="2" /> <text x="703.92" y="575.5" ></text> </g> <g > <title>util_copy_box (4 samples, 2.63%)</title><rect x="250.7" y="741" width="31.0" height="15.0" fill="rgb(253,177,13)" rx="2" ry="2" /> <text x="253.66" y="751.5" >ut..</text> </g> <g > <title>g_main_context_iterate (1 samples, 0.66%)</title><rect x="918.3" y="869" width="7.8" height="15.0" fill="rgb(226,95,39)" rx="2" ry="2" /> <text x="921.29" y="879.5" ></text> </g> <g > <title>do_writev (2 samples, 1.32%)</title><rect x="444.7" y="517" width="15.6" height="15.0" fill="rgb(251,194,15)" rx="2" ry="2" /> <text x="447.74" y="527.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (1 samples, 0.66%)</title><rect x="351.6" y="245" width="7.7" height="15.0" fill="rgb(213,189,4)" rx="2" ry="2" /> <text x="354.58" y="255.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="297.2" y="805" width="7.8" height="15.0" fill="rgb(222,228,51)" rx="2" ry="2" /> <text x="300.24" y="815.5" ></text> </g> <g > <title>positionSprite (6 samples, 3.95%)</title><rect x="64.3" y="789" width="46.6" height="15.0" fill="rgb(238,66,4)" rx="2" ry="2" /> <text x="67.34" y="799.5" >posi..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="1151.2" y="821" width="7.7" height="15.0" fill="rgb(213,167,26)" rx="2" ry="2" /> <text x="1154.18" y="831.5" ></text> </g> <g > <title>ext4_buffered_write_iter (5 samples, 3.29%)</title><rect x="879.5" y="677" width="38.8" height="15.0" fill="rgb(218,137,13)" rx="2" ry="2" /> <text x="882.47" y="687.5" >ext..</text> </g> <g > <title>XtAppNextEvent (3 samples, 1.97%)</title><rect x="1166.7" y="917" width="23.3" height="15.0" fill="rgb(241,1,29)" rx="2" ry="2" /> <text x="1169.71" y="927.5" >X..</text> </g> <g > <title>schedule_hrtimeout_range (1 samples, 0.66%)</title><rect x="724.2" y="517" width="7.8" height="15.0" fill="rgb(236,77,37)" rx="2" ry="2" /> <text x="727.21" y="527.5" ></text> </g> <g > <title>__arm64_sys_writev (3 samples, 1.97%)</title><rect x="382.6" y="517" width="23.3" height="15.0" fill="rgb(241,85,51)" rx="2" ry="2" /> <text x="385.63" y="527.5" >_..</text> </g> <g > <title>[pcmanfm-qt] (17 samples, 11.18%)</title><rect x="600.0" y="949" width="132.0" height="15.0" fill="rgb(217,48,24)" rx="2" ry="2" /> <text x="603.00" y="959.5" >[pcmanfm-qt]</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="739.7" y="837" width="7.8" height="15.0" fill="rgb(208,219,12)" rx="2" ry="2" /> <text x="742.74" y="847.5" ></text> </g> <g > <title>[libQt5Core.so.5.15.2] (9 samples, 5.92%)</title><rect x="600.0" y="821" width="69.9" height="15.0" fill="rgb(248,67,5)" rx="2" ry="2" /> <text x="603.00" y="831.5" >[libQt5..</text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="918.3" y="389" width="7.8" height="15.0" fill="rgb(208,114,0)" rx="2" ry="2" /> <text x="921.29" y="399.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.66%)</title><rect x="638.8" y="677" width="7.8" height="15.0" fill="rgb(253,3,53)" rx="2" ry="2" /> <text x="641.82" y="687.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="452.5" y="389" width="7.8" height="15.0" fill="rgb(232,176,49)" rx="2" ry="2" /> <text x="455.50" y="399.5" ></text> </g> <g > <title>xf86libinput_handle_event (6 samples, 3.95%)</title><rect x="64.3" y="885" width="46.6" height="15.0" fill="rgb(224,145,24)" rx="2" ry="2" /> <text x="67.34" y="895.5" >xf86..</text> </g> <g > <title>__GI_epoll_pwait (3 samples, 1.97%)</title><rect x="491.3" y="885" width="23.3" height="15.0" fill="rgb(215,117,14)" rx="2" ry="2" /> <text x="494.32" y="895.5" >_..</text> </g> <g > <title>g_thread_proxy (1 samples, 0.66%)</title><rect x="522.4" y="949" width="7.7" height="15.0" fill="rgb(242,130,34)" rx="2" ry="2" /> <text x="525.37" y="959.5" ></text> </g> <g > <title>glamor_copy_cpu_fbo (2 samples, 1.32%)</title><rect x="281.7" y="773" width="15.5" height="15.0" fill="rgb(220,22,45)" rx="2" ry="2" /> <text x="284.71" y="783.5" ></text> </g> <g > <title>__import_iovec (1 samples, 0.66%)</title><rect x="1166.7" y="613" width="7.8" height="15.0" fill="rgb(213,59,49)" rx="2" ry="2" /> <text x="1169.71" y="623.5" ></text> </g> <g > <title>__audit_syscall_entry (1 samples, 0.66%)</title><rect x="522.4" y="613" width="7.7" height="15.0" fill="rgb(241,121,39)" rx="2" ry="2" /> <text x="525.37" y="623.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.66%)</title><rect x="219.6" y="677" width="7.8" height="15.0" fill="rgb(252,208,31)" rx="2" ry="2" /> <text x="222.61" y="687.5" ></text> </g> <g > <title>g_main_dispatch (1 samples, 0.66%)</title><rect x="522.4" y="869" width="7.7" height="15.0" fill="rgb(210,14,29)" rx="2" ry="2" /> <text x="525.37" y="879.5" ></text> </g> <g > <title>__schedule (1 samples, 0.66%)</title><rect x="227.4" y="677" width="7.7" height="15.0" fill="rgb(205,69,33)" rx="2" ry="2" /> <text x="230.37" y="687.5" ></text> </g> <g > <title>drm_atomic_state_default_clear (1 samples, 0.66%)</title><rect x="460.3" y="517" width="7.7" height="15.0" fill="rgb(249,96,32)" rx="2" ry="2" /> <text x="463.26" y="527.5" ></text> </g> <g > <title>xcb_wait_for_event (10 samples, 6.58%)</title><rect x="157.5" y="917" width="77.6" height="15.0" fill="rgb(220,14,42)" rx="2" ry="2" /> <text x="160.50" y="927.5" >xcb_wait..</text> </g> <g > <title>QEventLoop::exec (17 samples, 11.18%)</title><rect x="600.0" y="917" width="132.0" height="15.0" fill="rgb(248,16,53)" rx="2" ry="2" /> <text x="603.00" y="927.5" >QEventLoop::exec</text> </g> <g > <title>v3d_bo_alloc (1 samples, 0.66%)</title><rect x="289.5" y="629" width="7.7" height="15.0" fill="rgb(237,52,28)" rx="2" ry="2" /> <text x="292.47" y="639.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="576.7" y="853" width="7.8" height="15.0" fill="rgb(241,13,17)" rx="2" ry="2" /> <text x="579.71" y="863.5" ></text> </g> <g > <title>clk_core_set_rate_nolock (2 samples, 1.32%)</title><rect x="926.1" y="837" width="15.5" height="15.0" fill="rgb(213,5,42)" rx="2" ry="2" /> <text x="929.05" y="847.5" ></text> </g> <g > <title>__do_softirq (5 samples, 3.29%)</title><rect x="964.9" y="709" width="38.8" height="15.0" fill="rgb(234,31,30)" rx="2" ry="2" /> <text x="967.87" y="719.5" >__d..</text> </g> <g > <title>__ioctl (17 samples, 11.18%)</title><rect x="747.5" y="917" width="132.0" height="15.0" fill="rgb(234,31,18)" rx="2" ry="2" /> <text x="750.50" y="927.5" >__ioctl</text> </g> <g > <title>_xcb_conn_wait (2 samples, 1.32%)</title><rect x="716.4" y="693" width="15.6" height="15.0" fill="rgb(228,105,18)" rx="2" ry="2" /> <text x="719.45" y="703.5" ></text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="219.6" y="549" width="7.8" height="15.0" fill="rgb(207,204,15)" rx="2" ry="2" /> <text x="222.61" y="559.5" ></text> </g> <g > <title>sock_alloc_send_pskb (1 samples, 0.66%)</title><rect x="305.0" y="405" width="7.8" height="15.0" fill="rgb(239,43,43)" rx="2" ry="2" /> <text x="308.00" y="415.5" ></text> </g> <g > <title>[libXt.so.6.0.0] (1 samples, 0.66%)</title><rect x="1174.5" y="901" width="7.7" height="15.0" fill="rgb(254,91,35)" rx="2" ry="2" /> <text x="1177.47" y="911.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (2 samples, 1.32%)</title><rect x="638.8" y="709" width="15.5" height="15.0" fill="rgb(250,163,25)" rx="2" ry="2" /> <text x="641.82" y="719.5" ></text> </g> <g > <title>__libc_recvmsg (2 samples, 1.32%)</title><rect x="196.3" y="853" width="15.5" height="15.0" fill="rgb(236,208,15)" rx="2" ry="2" /> <text x="199.32" y="863.5" ></text> </g> <g > <title>__ioctl (2 samples, 1.32%)</title><rect x="343.8" y="533" width="15.5" height="15.0" fill="rgb(245,51,43)" rx="2" ry="2" /> <text x="346.82" y="543.5" ></text> </g> <g > <title>u_current_get (1 samples, 0.66%)</title><rect x="514.6" y="917" width="7.8" height="15.0" fill="rgb(212,177,36)" rx="2" ry="2" /> <text x="517.61" y="927.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (6 samples, 3.95%)</title><rect x="64.3" y="693" width="46.6" height="15.0" fill="rgb(215,157,9)" rx="2" ry="2" /> <text x="67.34" y="703.5" >xf86..</text> </g> <g > <title>unix_destruct_scm (1 samples, 0.66%)</title><rect x="475.8" y="645" width="7.8" height="15.0" fill="rgb(252,137,25)" rx="2" ry="2" /> <text x="478.79" y="655.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="700.9" y="133" width="7.8" height="15.0" fill="rgb(225,63,30)" rx="2" ry="2" /> <text x="703.92" y="143.5" ></text> </g> <g > <title>drm_atomic_helper_update_plane (2 samples, 1.32%)</title><rect x="343.8" y="309" width="15.5" height="15.0" fill="rgb(221,86,24)" rx="2" ry="2" /> <text x="346.82" y="319.5" ></text> </g> <g > <title>drmIoctl (1 samples, 0.66%)</title><rect x="235.1" y="645" width="7.8" height="15.0" fill="rgb(212,222,5)" rx="2" ry="2" /> <text x="238.13" y="655.5" ></text> </g> <g > <title>el0_svc (2 samples, 1.32%)</title><rect x="343.8" y="485" width="15.5" height="15.0" fill="rgb(238,82,36)" rx="2" ry="2" /> <text x="346.82" y="495.5" ></text> </g> <g > <title>do_page_fault (1 samples, 0.66%)</title><rect x="910.5" y="565" width="7.8" height="15.0" fill="rgb(251,173,22)" rx="2" ry="2" /> <text x="913.53" y="575.5" ></text> </g> <g > <title>return_address (1 samples, 0.66%)</title><rect x="537.9" y="885" width="7.8" height="15.0" fill="rgb(217,6,32)" rx="2" ry="2" /> <text x="540.89" y="895.5" ></text> </g> <g > <title>drmModeSetCursor2 (2 samples, 1.32%)</title><rect x="343.8" y="581" width="15.5" height="15.0" fill="rgb(238,86,5)" rx="2" ry="2" /> <text x="346.82" y="591.5" ></text> </g> <g > <title>_start (2 samples, 1.32%)</title><rect x="576.7" y="965" width="15.5" height="15.0" fill="rgb(237,180,22)" rx="2" ry="2" /> <text x="579.71" y="975.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="110.9" y="837" width="23.3" height="15.0" fill="rgb(240,11,42)" rx="2" ry="2" /> <text x="113.92" y="847.5" >e..</text> </g> <g > <title>do_el0_svc (6 samples, 3.95%)</title><rect x="64.3" y="565" width="46.6" height="15.0" fill="rgb(211,80,4)" rx="2" ry="2" /> <text x="67.34" y="575.5" >do_e..</text> </g> <g > <title>QXcbWindow::handleEnterNotifyEvent (3 samples, 1.97%)</title><rect x="708.7" y="773" width="23.3" height="15.0" fill="rgb(233,25,18)" rx="2" ry="2" /> <text x="711.68" y="783.5" >Q..</text> </g> <g > <title>poll_for_response (1 samples, 0.66%)</title><rect x="1166.7" y="853" width="7.8" height="15.0" fill="rgb(249,78,53)" rx="2" ry="2" /> <text x="1169.71" y="863.5" ></text> </g> <g > <title>__ioctl (2 samples, 1.32%)</title><rect x="460.3" y="773" width="15.5" height="15.0" fill="rgb(218,205,4)" rx="2" ry="2" /> <text x="463.26" y="783.5" ></text> </g> <g > <title>poll_for_event (1 samples, 0.66%)</title><rect x="584.5" y="805" width="7.7" height="15.0" fill="rgb(245,82,5)" rx="2" ry="2" /> <text x="587.47" y="815.5" ></text> </g> <g > <title>xf86CursorSetCursor (8 samples, 5.26%)</title><rect x="320.5" y="709" width="62.1" height="15.0" fill="rgb(223,157,11)" rx="2" ry="2" /> <text x="323.53" y="719.5" >xf86Cu..</text> </g> <g > <title>finish_task_switch.isra.0 (6 samples, 3.95%)</title><rect x="1089.1" y="885" width="46.6" height="15.0" fill="rgb(244,177,41)" rx="2" ry="2" /> <text x="1092.08" y="895.5" >fini..</text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="918.3" y="421" width="7.8" height="15.0" fill="rgb(237,122,20)" rx="2" ry="2" /> <text x="921.29" y="431.5" ></text> </g> <g > <title>thread_start (14 samples, 9.21%)</title><rect x="25.5" y="981" width="108.7" height="15.0" fill="rgb(245,181,21)" rx="2" ry="2" /> <text x="28.53" y="991.5" >thread_start</text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="305.0" y="597" width="7.8" height="15.0" fill="rgb(236,41,34)" rx="2" ry="2" /> <text x="308.00" y="607.5" ></text> </g> <g > <title>generic_perform_write (4 samples, 2.63%)</title><rect x="879.5" y="661" width="31.0" height="15.0" fill="rgb(206,211,16)" rx="2" ry="2" /> <text x="882.47" y="671.5" >ge..</text> </g> <g > <title>dev_pm_opp_set_rate (2 samples, 1.32%)</title><rect x="926.1" y="885" width="15.5" height="15.0" fill="rgb(226,41,17)" rx="2" ry="2" /> <text x="929.05" y="895.5" ></text> </g> <g > <title>drm_atomic_commit (2 samples, 1.32%)</title><rect x="367.1" y="341" width="15.5" height="15.0" fill="rgb(226,124,46)" rx="2" ry="2" /> <text x="370.11" y="351.5" ></text> </g> <g > <title>ksys_write (5 samples, 3.29%)</title><rect x="879.5" y="741" width="38.8" height="15.0" fill="rgb(217,30,31)" rx="2" ry="2" /> <text x="882.47" y="751.5" >ksy..</text> </g> <g > <title>commit_tail (2 samples, 1.32%)</title><rect x="367.1" y="309" width="15.5" height="15.0" fill="rgb(214,206,45)" rx="2" ry="2" /> <text x="370.11" y="319.5" ></text> </g> <g > <title>__drm_crtc_commit_free (1 samples, 0.66%)</title><rect x="460.3" y="469" width="7.7" height="15.0" fill="rgb(248,177,5)" rx="2" ry="2" /> <text x="463.26" y="479.5" ></text> </g> <g > <title>vc4_atomic_commit_tail (2 samples, 1.32%)</title><rect x="367.1" y="293" width="15.5" height="15.0" fill="rgb(221,1,2)" rx="2" ry="2" /> <text x="370.11" y="303.5" ></text> </g> <g > <title>QWaitCondition::wait (1 samples, 0.66%)</title><rect x="134.2" y="917" width="7.8" height="15.0" fill="rgb(235,223,30)" rx="2" ry="2" /> <text x="137.21" y="927.5" ></text> </g> <g > <title>[systemd-journald] (2 samples, 1.32%)</title><rect x="1151.2" y="949" width="15.5" height="15.0" fill="rgb(213,226,4)" rx="2" ry="2" /> <text x="1154.18" y="959.5" ></text> </g> <g > <title>__GI___poll (2 samples, 1.32%)</title><rect x="219.6" y="869" width="15.5" height="15.0" fill="rgb(226,223,29)" rx="2" ry="2" /> <text x="222.61" y="879.5" ></text> </g> <g > <title>_mesa_get_format_info (1 samples, 0.66%)</title><rect x="281.7" y="661" width="7.8" height="15.0" fill="rgb(211,17,27)" rx="2" ry="2" /> <text x="284.71" y="671.5" ></text> </g> <g > <title>schedule_idle (2 samples, 1.32%)</title><rect x="1011.4" y="885" width="15.6" height="15.0" fill="rgb(238,45,38)" rx="2" ry="2" /> <text x="1014.45" y="895.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="405.9" y="533" width="7.8" height="15.0" fill="rgb(247,110,26)" rx="2" ry="2" /> <text x="408.92" y="543.5" ></text> </g> <g > <title>QWidgetPrivate::paintSiblingsRecursive (1 samples, 0.66%)</title><rect x="646.6" y="693" width="7.7" height="15.0" fill="rgb(245,121,33)" rx="2" ry="2" /> <text x="649.58" y="703.5" ></text> </g> <g > <title>__slab_alloc.constprop.0 (1 samples, 0.66%)</title><rect x="305.0" y="325" width="7.8" height="15.0" fill="rgb(249,93,6)" rx="2" ry="2" /> <text x="308.00" y="335.5" ></text> </g> <g > <title>hiddev_hid_event (1 samples, 0.66%)</title><rect x="980.4" y="565" width="7.8" height="15.0" fill="rgb(236,52,20)" rx="2" ry="2" /> <text x="983.39" y="575.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="724.2" y="597" width="7.8" height="15.0" fill="rgb(236,131,14)" rx="2" ry="2" /> <text x="727.21" y="607.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="305.0" y="661" width="7.8" height="15.0" fill="rgb(223,63,28)" rx="2" ry="2" /> <text x="308.00" y="671.5" ></text> </g> <g > <title>QListView::mouseMoveEvent (1 samples, 0.66%)</title><rect x="700.9" y="581" width="7.8" height="15.0" fill="rgb(237,178,22)" rx="2" ry="2" /> <text x="703.92" y="591.5" ></text> </g> <g > <title>pcmanfm-qt (18 samples, 11.84%)</title><rect x="592.2" y="997" width="139.8" height="15.0" fill="rgb(211,39,21)" rx="2" ry="2" /> <text x="595.24" y="1007.5" >pcmanfm-qt</text> </g> <g > <title>QBackingStore::beginPaint (1 samples, 0.66%)</title><rect x="600.0" y="725" width="7.8" height="15.0" fill="rgb(228,141,48)" rx="2" ry="2" /> <text x="603.00" y="735.5" ></text> </g> <g > <title>ext4_da_get_block_prep (1 samples, 0.66%)</title><rect x="895.0" y="613" width="7.8" height="15.0" fill="rgb(233,29,16)" rx="2" ry="2" /> <text x="898.00" y="623.5" ></text> </g> <g > <title>vfs_writev (3 samples, 1.97%)</title><rect x="382.6" y="485" width="23.3" height="15.0" fill="rgb(253,176,45)" rx="2" ry="2" /> <text x="385.63" y="495.5" >v..</text> </g> <g > <title>pipe_write (1 samples, 0.66%)</title><rect x="33.3" y="725" width="7.8" height="15.0" fill="rgb(231,17,16)" rx="2" ry="2" /> <text x="36.29" y="735.5" ></text> </g> <g > <title>drm_mode_cursor_universal (2 samples, 1.32%)</title><rect x="367.1" y="389" width="15.5" height="15.0" fill="rgb(218,204,41)" rx="2" ry="2" /> <text x="370.11" y="399.5" ></text> </g> <g > <title>_xcb_out_send (1 samples, 0.66%)</title><rect x="918.3" y="661" width="7.8" height="15.0" fill="rgb(219,87,29)" rx="2" ry="2" /> <text x="921.29" y="671.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="110.9" y="869" width="23.3" height="15.0" fill="rgb(211,11,33)" rx="2" ry="2" /> <text x="113.92" y="879.5" >e..</text> </g> <g > <title>drm_mode_cursor_ioctl (2 samples, 1.32%)</title><rect x="367.1" y="421" width="15.5" height="15.0" fill="rgb(207,153,34)" rx="2" ry="2" /> <text x="370.11" y="431.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="242.9" y="853" width="7.8" height="15.0" fill="rgb(240,162,40)" rx="2" ry="2" /> <text x="245.89" y="863.5" ></text> </g> <g > <title>DeliverEventsToWindow (3 samples, 1.97%)</title><rect x="382.6" y="757" width="23.3" height="15.0" fill="rgb(220,26,25)" rx="2" ry="2" /> <text x="385.63" y="767.5" >D..</text> </g> <g > <title>xf86_driver_load_cursor_argb (2 samples, 1.32%)</title><rect x="343.8" y="613" width="15.5" height="15.0" fill="rgb(231,216,25)" rx="2" ry="2" /> <text x="346.82" y="623.5" ></text> </g> <g > <title>drm_mode_cursor_common (1 samples, 0.66%)</title><rect x="235.1" y="453" width="7.8" height="15.0" fill="rgb(233,69,4)" rx="2" ry="2" /> <text x="238.13" y="463.5" ></text> </g> <g > <title>unix_stream_sendmsg (1 samples, 0.66%)</title><rect x="452.5" y="421" width="7.8" height="15.0" fill="rgb(248,141,27)" rx="2" ry="2" /> <text x="455.50" y="431.5" ></text> </g> <g > <title>smp_call_function_single (16 samples, 10.53%)</title><rect x="755.3" y="709" width="124.2" height="15.0" fill="rgb(237,110,0)" rx="2" ry="2" /> <text x="758.26" y="719.5" >smp_call_functi..</text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="452.5" y="213" width="7.8" height="15.0" fill="rgb(253,7,10)" rx="2" ry="2" /> <text x="455.50" y="223.5" ></text> </g> <g > <title>el1_interrupt (1 samples, 0.66%)</title><rect x="1073.6" y="853" width="7.7" height="15.0" fill="rgb(211,79,47)" rx="2" ry="2" /> <text x="1076.55" y="863.5" ></text> </g> <g > <title>invoke_syscall (3 samples, 1.97%)</title><rect x="110.9" y="821" width="23.3" height="15.0" fill="rgb(223,180,24)" rx="2" ry="2" /> <text x="113.92" y="831.5" >i..</text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="351.6" y="149" width="7.7" height="15.0" fill="rgb(221,171,9)" rx="2" ry="2" /> <text x="354.58" y="159.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="576.7" y="789" width="7.8" height="15.0" fill="rgb(207,146,54)" rx="2" ry="2" /> <text x="579.71" y="799.5" ></text> </g> <g > <title>do_idle (14 samples, 9.21%)</title><rect x="1042.5" y="933" width="108.7" height="15.0" fill="rgb(206,106,53)" rx="2" ry="2" /> <text x="1045.50" y="943.5" >do_idle</text> </g> <g > <title>vc4_plane_set_blank.isra.0 (4 samples, 2.63%)</title><rect x="72.1" y="293" width="31.1" height="15.0" fill="rgb(213,66,28)" rx="2" ry="2" /> <text x="75.11" y="303.5" >vc..</text> </g> <g > <title>call_on_irq_stack (1 samples, 0.66%)</title><rect x="452.5" y="277" width="7.8" height="15.0" fill="rgb(222,70,50)" rx="2" ry="2" /> <text x="455.50" y="287.5" ></text> </g> <g > <title>QWaitCondition::wait (1 samples, 0.66%)</title><rect x="134.2" y="901" width="7.8" height="15.0" fill="rgb(220,137,51)" rx="2" ry="2" /> <text x="137.21" y="911.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="491.3" y="805" width="23.3" height="15.0" fill="rgb(226,31,49)" rx="2" ry="2" /> <text x="494.32" y="815.5" >e..</text> </g> <g > <title>thread_start (1 samples, 0.66%)</title><rect x="134.2" y="981" width="7.8" height="15.0" fill="rgb(224,150,21)" rx="2" ry="2" /> <text x="137.21" y="991.5" ></text> </g> <g > <title>hid_process_event (1 samples, 0.66%)</title><rect x="980.4" y="581" width="7.8" height="15.0" fill="rgb(244,169,26)" rx="2" ry="2" /> <text x="983.39" y="591.5" ></text> </g> <g > <title>DeliverEvent (4 samples, 2.63%)</title><rect x="429.2" y="805" width="31.1" height="15.0" fill="rgb(229,170,10)" rx="2" ry="2" /> <text x="432.21" y="815.5" >De..</text> </g> <g > <title>TryClientEvents (1 samples, 0.66%)</title><rect x="405.9" y="693" width="7.8" height="15.0" fill="rgb(248,195,1)" rx="2" ry="2" /> <text x="408.92" y="703.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="700.9" y="69" width="7.8" height="15.0" fill="rgb(234,64,22)" rx="2" ry="2" /> <text x="703.92" y="79.5" ></text> </g> <g > <title>QWidgetPrivate::drawWidget (1 samples, 0.66%)</title><rect x="638.8" y="693" width="7.8" height="15.0" fill="rgb(242,124,47)" rx="2" ry="2" /> <text x="641.82" y="703.5" ></text> </g> <g > <title>QWidget::event (1 samples, 0.66%)</title><rect x="646.6" y="565" width="7.7" height="15.0" fill="rgb(210,84,36)" rx="2" ry="2" /> <text x="649.58" y="575.5" ></text> </g> <g > <title>glamor_upload_boxes (4 samples, 2.63%)</title><rect x="250.7" y="837" width="31.0" height="15.0" fill="rgb(223,189,49)" rx="2" ry="2" /> <text x="253.66" y="847.5" >gl..</text> </g> <g > <title>futex_wait (1 samples, 0.66%)</title><rect x="134.2" y="709" width="7.8" height="15.0" fill="rgb(250,66,31)" rx="2" ry="2" /> <text x="137.21" y="719.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="398.2" y="373" width="7.7" height="15.0" fill="rgb(219,37,35)" rx="2" ry="2" /> <text x="401.16" y="383.5" ></text> </g> <g > <title>unmap_mapping_pages (1 samples, 0.66%)</title><rect x="1151.2" y="629" width="7.7" height="15.0" fill="rgb(239,96,2)" rx="2" ry="2" /> <text x="1154.18" y="639.5" ></text> </g> <g > <title>QXcbConnection::sync (1 samples, 0.66%)</title><rect x="600.0" y="677" width="7.8" height="15.0" fill="rgb(248,217,32)" rx="2" ry="2" /> <text x="603.00" y="687.5" ></text> </g> <g > <title>perf (24 samples, 15.79%)</title><rect x="732.0" y="997" width="186.3" height="15.0" fill="rgb(246,114,7)" rx="2" ry="2" /> <text x="734.97" y="1007.5" >perf</text> </g> <g > <title>kthread (1 samples, 0.66%)</title><rect x="537.9" y="965" width="7.8" height="15.0" fill="rgb(244,97,42)" rx="2" ry="2" /> <text x="540.89" y="975.5" ></text> </g> <g > <title>do_sys_poll (1 samples, 0.66%)</title><rect x="724.2" y="533" width="7.8" height="15.0" fill="rgb(231,128,12)" rx="2" ry="2" /> <text x="727.21" y="543.5" ></text> </g> <g > <title>FlushClient (1 samples, 0.66%)</title><rect x="405.9" y="661" width="7.8" height="15.0" fill="rgb(239,11,27)" rx="2" ry="2" /> <text x="408.92" y="671.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="995.9" y="565" width="7.8" height="15.0" fill="rgb(230,6,22)" rx="2" ry="2" /> <text x="998.92" y="575.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="491.3" y="853" width="23.3" height="15.0" fill="rgb(236,105,54)" rx="2" ry="2" /> <text x="494.32" y="863.5" >e..</text> </g> <g > <title>el0t_64_sync (6 samples, 3.95%)</title><rect x="64.3" y="613" width="46.6" height="15.0" fill="rgb(211,218,24)" rx="2" ry="2" /> <text x="67.34" y="623.5" >el0t..</text> </g> <g > <title>_XSERVTransSocketWritev (3 samples, 1.97%)</title><rect x="382.6" y="661" width="23.3" height="15.0" fill="rgb(249,169,42)" rx="2" ry="2" /> <text x="385.63" y="671.5" >_..</text> </g> <g > <title>el1_interrupt (1 samples, 0.66%)</title><rect x="87.6" y="149" width="7.8" height="15.0" fill="rgb(210,128,33)" rx="2" ry="2" /> <text x="90.63" y="159.5" ></text> </g> <g > <title>el1_interrupt (1 samples, 0.66%)</title><rect x="452.5" y="309" width="7.8" height="15.0" fill="rgb(213,164,38)" rx="2" ry="2" /> <text x="455.50" y="319.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="468.0" y="357" width="7.8" height="15.0" fill="rgb(208,89,1)" rx="2" ry="2" /> <text x="471.03" y="367.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="305.0" y="613" width="7.8" height="15.0" fill="rgb(229,188,49)" rx="2" ry="2" /> <text x="308.00" y="623.5" ></text> </g> <g > <title>miPointerDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="757" width="62.1" height="15.0" fill="rgb(232,160,34)" rx="2" ry="2" /> <text x="323.53" y="767.5" >miPoin..</text> </g> <g > <title>ChangeToCursor (8 samples, 5.26%)</title><rect x="320.5" y="821" width="62.1" height="15.0" fill="rgb(227,29,38)" rx="2" ry="2" /> <text x="323.53" y="831.5" >Change..</text> </g> <g > <title>kthread_worker_fn (2 samples, 1.32%)</title><rect x="926.1" y="949" width="15.5" height="15.0" fill="rgb(253,118,41)" rx="2" ry="2" /> <text x="929.05" y="959.5" ></text> </g> <g > <title>xf86MoveCursor (6 samples, 3.95%)</title><rect x="64.3" y="741" width="46.6" height="15.0" fill="rgb(211,37,28)" rx="2" ry="2" /> <text x="67.34" y="751.5" >xf86..</text> </g> <g > <title>drm_atomic_helper_update_plane (6 samples, 3.95%)</title><rect x="64.3" y="405" width="46.6" height="15.0" fill="rgb(243,26,47)" rx="2" ry="2" /> <text x="67.34" y="415.5" >drm_..</text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="700.9" y="85" width="7.8" height="15.0" fill="rgb(213,197,24)" rx="2" ry="2" /> <text x="703.92" y="95.5" ></text> </g> <g > <title>glamor_copy_area (2 samples, 1.32%)</title><rect x="281.7" y="869" width="15.5" height="15.0" fill="rgb(233,193,42)" rx="2" ry="2" /> <text x="284.71" y="879.5" ></text> </g> <g > <title>CoreEnterLeaveEvents (4 samples, 2.63%)</title><rect x="382.6" y="805" width="31.1" height="15.0" fill="rgb(233,40,22)" rx="2" ry="2" /> <text x="385.63" y="815.5" >Co..</text> </g> <g > <title>dix_main (36 samples, 23.68%)</title><rect x="235.1" y="949" width="279.5" height="15.0" fill="rgb(252,6,22)" rx="2" ry="2" /> <text x="238.13" y="959.5" >dix_main</text> </g> <g > <title>DRM_IOCTL (3 samples, 1.97%)</title><rect x="359.3" y="613" width="23.3" height="15.0" fill="rgb(254,153,51)" rx="2" ry="2" /> <text x="362.34" y="623.5" >D..</text> </g> <g > <title>drm_atomic_commit (5 samples, 3.29%)</title><rect x="64.3" y="389" width="38.9" height="15.0" fill="rgb(209,151,35)" rx="2" ry="2" /> <text x="67.34" y="399.5" >drm..</text> </g> <g > <title>QEventDispatcherGlib::processEvents (1 samples, 0.66%)</title><rect x="918.3" y="901" width="7.8" height="15.0" fill="rgb(233,29,26)" rx="2" ry="2" /> <text x="921.29" y="911.5" ></text> </g> <g > <title>sugov_work (2 samples, 1.32%)</title><rect x="926.1" y="933" width="15.5" height="15.0" fill="rgb(227,214,30)" rx="2" ry="2" /> <text x="929.05" y="943.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (2 samples, 1.32%)</title><rect x="693.2" y="773" width="15.5" height="15.0" fill="rgb(236,158,29)" rx="2" ry="2" /> <text x="696.16" y="783.5" ></text> </g> <g > <title>el0t_64_sync_handler (5 samples, 3.29%)</title><rect x="879.5" y="837" width="38.8" height="15.0" fill="rgb(227,108,32)" rx="2" ry="2" /> <text x="882.47" y="847.5" >el0..</text> </g> <g > <title>QStyleOption::init (1 samples, 0.66%)</title><rect x="677.6" y="613" width="7.8" height="15.0" fill="rgb(210,48,51)" rx="2" ry="2" /> <text x="680.63" y="623.5" ></text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="343.8" y="213" width="7.8" height="15.0" fill="rgb(228,165,30)" rx="2" ry="2" /> <text x="346.82" y="223.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.66%)</title><rect x="242.9" y="709" width="7.8" height="15.0" fill="rgb(244,168,21)" rx="2" ry="2" /> <text x="245.89" y="719.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="149.7" y="805" width="7.8" height="15.0" fill="rgb(248,28,3)" rx="2" ry="2" /> <text x="152.74" y="815.5" ></text> </g> <g > <title>glamor_copy_gl (2 samples, 1.32%)</title><rect x="281.7" y="789" width="15.5" height="15.0" fill="rgb(218,221,50)" rx="2" ry="2" /> <text x="284.71" y="799.5" ></text> </g> <g > <title>__libc_start_main (1 samples, 0.66%)</title><rect x="918.3" y="965" width="7.8" height="15.0" fill="rgb(238,46,13)" rx="2" ry="2" /> <text x="921.29" y="975.5" ></text> </g> <g > <title>do_truncate (1 samples, 0.66%)</title><rect x="1151.2" y="709" width="7.7" height="15.0" fill="rgb(223,172,26)" rx="2" ry="2" /> <text x="1154.18" y="719.5" ></text> </g> <g > <title>QCoreApplication::exec (17 samples, 11.18%)</title><rect x="600.0" y="933" width="132.0" height="15.0" fill="rgb(229,140,47)" rx="2" ry="2" /> <text x="603.00" y="943.5" >QCoreApplication..</text> </g> <g > <title>QCursor::pos (1 samples, 0.66%)</title><rect x="700.9" y="533" width="7.8" height="15.0" fill="rgb(228,120,30)" rx="2" ry="2" /> <text x="703.92" y="543.5" ></text> </g> <g > <title>xcb_wait_for_reply (1 samples, 0.66%)</title><rect x="918.3" y="725" width="7.8" height="15.0" fill="rgb(253,156,45)" rx="2" ry="2" /> <text x="921.29" y="735.5" ></text> </g> <g > <title>QWidget::event (1 samples, 0.66%)</title><rect x="638.8" y="565" width="7.8" height="15.0" fill="rgb(207,135,25)" rx="2" ry="2" /> <text x="641.82" y="575.5" ></text> </g> <g > <title>event_function_call (16 samples, 10.53%)</title><rect x="755.3" y="725" width="124.2" height="15.0" fill="rgb(216,198,3)" rx="2" ry="2" /> <text x="758.26" y="735.5" >event_function_..</text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="359.3" y="565" width="23.3" height="15.0" fill="rgb(246,153,42)" rx="2" ry="2" /> <text x="362.34" y="575.5" >e..</text> </g> <g > <title>__ioctl (1 samples, 0.66%)</title><rect x="289.5" y="581" width="7.7" height="15.0" fill="rgb(225,185,27)" rx="2" ry="2" /> <text x="292.47" y="591.5" ></text> </g> <g > <title>_raw_write_unlock_irq (1 samples, 0.66%)</title><rect x="491.3" y="725" width="7.8" height="15.0" fill="rgb(209,185,17)" rx="2" ry="2" /> <text x="494.32" y="735.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="444.7" y="549" width="15.6" height="15.0" fill="rgb(217,180,19)" rx="2" ry="2" /> <text x="447.74" y="559.5" ></text> </g> <g > <title>miPointerDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="773" width="62.1" height="15.0" fill="rgb(227,89,51)" rx="2" ry="2" /> <text x="323.53" y="783.5" >miPoin..</text> </g> <g > <title>invoke_syscall (17 samples, 11.18%)</title><rect x="747.5" y="821" width="132.0" height="15.0" fill="rgb(230,55,49)" rx="2" ry="2" /> <text x="750.50" y="831.5" >invoke_syscall</text> </g> <g > <title>__secondary_switched (14 samples, 9.21%)</title><rect x="1042.5" y="981" width="108.7" height="15.0" fill="rgb(207,40,43)" rx="2" ry="2" /> <text x="1045.50" y="991.5" >__secondary_s..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="724.2" y="581" width="7.8" height="15.0" fill="rgb(246,180,2)" rx="2" ry="2" /> <text x="727.21" y="591.5" ></text> </g> <g > <title>do_iter_write (1 samples, 0.66%)</title><rect x="918.3" y="437" width="7.8" height="15.0" fill="rgb(243,66,27)" rx="2" ry="2" /> <text x="921.29" y="447.5" ></text> </g> <g > <title>finish_task_switch.isra.0 (2 samples, 1.32%)</title><rect x="1011.4" y="853" width="15.6" height="15.0" fill="rgb(216,100,24)" rx="2" ry="2" /> <text x="1014.45" y="863.5" ></text> </g> <g > <title>poll (2 samples, 1.32%)</title><rect x="219.6" y="885" width="15.5" height="15.0" fill="rgb(234,129,44)" rx="2" ry="2" /> <text x="222.61" y="895.5" ></text> </g> <g > <title>_XtWaitForSomething (1 samples, 0.66%)</title><rect x="1182.2" y="901" width="7.8" height="15.0" fill="rgb(215,153,54)" rx="2" ry="2" /> <text x="1185.24" y="911.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="165.3" y="869" width="7.7" height="15.0" fill="rgb(213,229,35)" rx="2" ry="2" /> <text x="168.26" y="879.5" ></text> </g> <g > <title>drm_gem_shmem_get_pages (1 samples, 0.66%)</title><rect x="289.5" y="373" width="7.7" height="15.0" fill="rgb(216,137,4)" rx="2" ry="2" /> <text x="292.47" y="383.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="405.9" y="629" width="7.8" height="15.0" fill="rgb(222,26,37)" rx="2" ry="2" /> <text x="408.92" y="639.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="700.9" y="293" width="7.8" height="15.0" fill="rgb(247,105,30)" rx="2" ry="2" /> <text x="703.92" y="303.5" ></text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="468.0" y="405" width="7.8" height="15.0" fill="rgb(217,146,26)" rx="2" ry="2" /> <text x="471.03" y="415.5" ></text> </g> <g > <title>v3d_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="613" width="7.7" height="15.0" fill="rgb(224,143,21)" rx="2" ry="2" /> <text x="292.47" y="623.5" ></text> </g> <g > <title>wait_for_completion_timeout (2 samples, 1.32%)</title><rect x="926.1" y="757" width="15.5" height="15.0" fill="rgb(240,75,5)" rx="2" ry="2" /> <text x="929.05" y="767.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="25.5" y="869" width="15.6" height="15.0" fill="rgb(254,217,33)" rx="2" ry="2" /> <text x="28.53" y="879.5" ></text> </g> <g > <title>vfs_writev (1 samples, 0.66%)</title><rect x="918.3" y="453" width="7.8" height="15.0" fill="rgb(224,200,40)" rx="2" ry="2" /> <text x="921.29" y="463.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.66%)</title><rect x="452.5" y="341" width="7.8" height="15.0" fill="rgb(254,13,48)" rx="2" ry="2" /> <text x="455.50" y="351.5" ></text> </g> <g > <title>vc4_plane_set_blank.isra.0 (2 samples, 1.32%)</title><rect x="367.1" y="245" width="15.5" height="15.0" fill="rgb(216,72,20)" rx="2" ry="2" /> <text x="370.11" y="255.5" ></text> </g> <g > <title>el1h_64_irq (1 samples, 0.66%)</title><rect x="87.6" y="181" width="7.8" height="15.0" fill="rgb(209,143,15)" rx="2" ry="2" /> <text x="90.63" y="191.5" ></text> </g> <g > <title>ret_from_fork (1 samples, 0.66%)</title><rect x="530.1" y="981" width="7.8" height="15.0" fill="rgb(219,206,48)" rx="2" ry="2" /> <text x="533.13" y="991.5" ></text> </g> <g > <title>schedule_timeout (1 samples, 0.66%)</title><rect x="468.0" y="389" width="7.8" height="15.0" fill="rgb(214,75,10)" rx="2" ry="2" /> <text x="471.03" y="399.5" ></text> </g> <g > <title>__GI_epoll_pwait (3 samples, 1.97%)</title><rect x="110.9" y="917" width="23.3" height="15.0" fill="rgb(251,124,15)" rx="2" ry="2" /> <text x="113.92" y="927.5" >_..</text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="305.0" y="645" width="7.8" height="15.0" fill="rgb(238,180,44)" rx="2" ry="2" /> <text x="308.00" y="655.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="305.0" y="581" width="7.8" height="15.0" fill="rgb(239,34,53)" rx="2" ry="2" /> <text x="308.00" y="591.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="1166.7" y="773" width="7.8" height="15.0" fill="rgb(241,77,17)" rx="2" ry="2" /> <text x="1169.71" y="783.5" ></text> </g> <g > <title>__wake_up_common_lock (1 samples, 0.66%)</title><rect x="452.5" y="373" width="7.8" height="15.0" fill="rgb(254,142,1)" rx="2" ry="2" /> <text x="455.50" y="383.5" ></text> </g> <g > <title>generic_exec_single (16 samples, 10.53%)</title><rect x="755.3" y="693" width="124.2" height="15.0" fill="rgb(249,128,39)" rx="2" ry="2" /> <text x="758.26" y="703.5" >generic_exec_si..</text> </g> <g > <title>AnimCurDisplayCursor (8 samples, 5.26%)</title><rect x="320.5" y="805" width="62.1" height="15.0" fill="rgb(219,36,38)" rx="2" ry="2" /> <text x="323.53" y="815.5" >AnimCu..</text> </g> <g > <title>QApplicationPrivate::sendMouseEvent (2 samples, 1.32%)</title><rect x="693.2" y="709" width="15.5" height="15.0" fill="rgb(241,4,40)" rx="2" ry="2" /> <text x="696.16" y="719.5" ></text> </g> <g > <title>GetPointerEvents (6 samples, 3.95%)</title><rect x="64.3" y="837" width="46.6" height="15.0" fill="rgb(252,178,36)" rx="2" ry="2" /> <text x="67.34" y="847.5" >GetP..</text> </g> <g > <title>openbox (2 samples, 1.32%)</title><rect x="576.7" y="997" width="15.5" height="15.0" fill="rgb(226,26,28)" rx="2" ry="2" /> <text x="579.71" y="1007.5" ></text> </g> <g > <title>DeliverEventsToWindow (1 samples, 0.66%)</title><rect x="405.9" y="741" width="7.8" height="15.0" fill="rgb(222,109,7)" rx="2" ry="2" /> <text x="408.92" y="751.5" ></text> </g> <g > <title>texsubimage_err (2 samples, 1.32%)</title><rect x="281.7" y="725" width="15.5" height="15.0" fill="rgb(240,166,18)" rx="2" ry="2" /> <text x="284.71" y="735.5" ></text> </g> <g > <title>xf86_set_cursor_position (6 samples, 3.95%)</title><rect x="64.3" y="709" width="46.6" height="15.0" fill="rgb(249,66,4)" rx="2" ry="2" /> <text x="67.34" y="719.5" >xf86..</text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="757" width="7.7" height="15.0" fill="rgb(247,162,31)" rx="2" ry="2" /> <text x="525.37" y="767.5" ></text> </g> <g > <title>QWidget::setAttribute@plt (1 samples, 0.66%)</title><rect x="592.2" y="965" width="7.8" height="15.0" fill="rgb(235,128,12)" rx="2" ry="2" /> <text x="595.24" y="975.5" ></text> </g> <g > <title>DoEnterLeaveEvents (5 samples, 3.29%)</title><rect x="382.6" y="821" width="38.8" height="15.0" fill="rgb(209,209,10)" rx="2" ry="2" /> <text x="385.63" y="831.5" >DoE..</text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="382.6" y="565" width="23.3" height="15.0" fill="rgb(238,6,31)" rx="2" ry="2" /> <text x="385.63" y="575.5" >d..</text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="305.0" y="549" width="7.8" height="15.0" fill="rgb(230,39,33)" rx="2" ry="2" /> <text x="308.00" y="559.5" ></text> </g> <g > <title>mieqProcessDeviceEvent (20 samples, 13.16%)</title><rect x="305.0" y="885" width="155.3" height="15.0" fill="rgb(243,75,19)" rx="2" ry="2" /> <text x="308.00" y="895.5" >mieqProcessDeviceEv..</text> </g> <g > <title>QCoreApplicationPrivate::sendThroughObjectEventFilters (1 samples, 0.66%)</title><rect x="638.8" y="597" width="7.8" height="15.0" fill="rgb(213,184,21)" rx="2" ry="2" /> <text x="641.82" y="607.5" ></text> </g> <g > <title>invoke_syscall (2 samples, 1.32%)</title><rect x="343.8" y="437" width="15.5" height="15.0" fill="rgb(227,186,51)" rx="2" ry="2" /> <text x="346.82" y="447.5" ></text> </g> <g > <title>syscall_trace_enter (1 samples, 0.66%)</title><rect x="165.3" y="805" width="7.7" height="15.0" fill="rgb(216,201,6)" rx="2" ry="2" /> <text x="168.26" y="815.5" ></text> </g> <g > <title>el0t_64_sync_handler (2 samples, 1.32%)</title><rect x="460.3" y="741" width="15.5" height="15.0" fill="rgb(216,143,17)" rx="2" ry="2" /> <text x="463.26" y="751.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="1151.2" y="805" width="7.7" height="15.0" fill="rgb(217,122,21)" rx="2" ry="2" /> <text x="1154.18" y="815.5" ></text> </g> <g > <title>ProcQueryPointer (1 samples, 0.66%)</title><rect x="242.9" y="917" width="7.8" height="15.0" fill="rgb(240,147,54)" rx="2" ry="2" /> <text x="245.89" y="927.5" ></text> </g> <g > <title>QWidget::event (2 samples, 1.32%)</title><rect x="654.3" y="661" width="15.6" height="15.0" fill="rgb(214,195,5)" rx="2" ry="2" /> <text x="657.34" y="671.5" ></text> </g> <g > <title>DRM_IOCTL (1 samples, 0.66%)</title><rect x="235.1" y="661" width="7.8" height="15.0" fill="rgb(218,29,21)" rx="2" ry="2" /> <text x="238.13" y="671.5" ></text> </g> <g > <title>__GI_memcpy (4 samples, 2.63%)</title><rect x="250.7" y="725" width="31.0" height="15.0" fill="rgb(227,1,20)" rx="2" ry="2" /> <text x="253.66" y="735.5" >__..</text> </g> <g > <title>_perf_ioctl (17 samples, 11.18%)</title><rect x="747.5" y="773" width="132.0" height="15.0" fill="rgb(230,193,16)" rx="2" ry="2" /> <text x="750.50" y="783.5" >_perf_ioctl</text> </g> <g > <title>g_main_context_prepare (1 samples, 0.66%)</title><rect x="584.5" y="885" width="7.7" height="15.0" fill="rgb(254,81,44)" rx="2" ry="2" /> <text x="587.47" y="895.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="87.6" y="213" width="7.8" height="15.0" fill="rgb(241,142,13)" rx="2" ry="2" /> <text x="90.63" y="223.5" ></text> </g> <g > <title>drm_atomic_get_plane_state (1 samples, 0.66%)</title><rect x="103.2" y="389" width="7.7" height="15.0" fill="rgb(208,157,38)" rx="2" ry="2" /> <text x="106.16" y="399.5" ></text> </g> <g > <title>__GI___libc_write (1 samples, 0.66%)</title><rect x="149.7" y="869" width="7.8" height="15.0" fill="rgb(227,97,38)" rx="2" ry="2" /> <text x="152.74" y="879.5" ></text> </g> <g > <title>[lxqt-panel] (1 samples, 0.66%)</title><rect x="553.4" y="981" width="7.8" height="15.0" fill="rgb(215,68,0)" rx="2" ry="2" /> <text x="556.42" y="991.5" ></text> </g> <g > <title>jbd2_journal_bmap (1 samples, 0.66%)</title><rect x="530.1" y="901" width="7.8" height="15.0" fill="rgb(249,221,40)" rx="2" ry="2" /> <text x="533.13" y="911.5" ></text> </g> <g > <title>mbox_send_message (1 samples, 0.66%)</title><rect x="367.1" y="213" width="7.8" height="15.0" fill="rgb(220,123,39)" rx="2" ry="2" /> <text x="370.11" y="223.5" ></text> </g> <g > <title>QCoreApplicationPrivate::sendThroughObjectEventFilters (1 samples, 0.66%)</title><rect x="700.9" y="645" width="7.8" height="15.0" fill="rgb(209,164,22)" rx="2" ry="2" /> <text x="703.92" y="655.5" ></text> </g> <g > <title>sock_def_readable (1 samples, 0.66%)</title><rect x="700.9" y="117" width="7.8" height="15.0" fill="rgb(241,214,40)" rx="2" ry="2" /> <text x="703.92" y="127.5" ></text> </g> <g > <title>el0t_64_sync (3 samples, 1.97%)</title><rect x="382.6" y="613" width="23.3" height="15.0" fill="rgb(238,204,39)" rx="2" ry="2" /> <text x="385.63" y="623.5" >e..</text> </g> <g > <title>update_blocked_averages (1 samples, 0.66%)</title><rect x="452.5" y="165" width="7.8" height="15.0" fill="rgb(240,155,8)" rx="2" ry="2" /> <text x="455.50" y="175.5" ></text> </g> <g > <title>prepare_to_wait_event (1 samples, 0.66%)</title><rect x="537.9" y="933" width="7.8" height="15.0" fill="rgb(211,215,47)" rx="2" ry="2" /> <text x="540.89" y="943.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="405.9" y="565" width="7.8" height="15.0" fill="rgb(206,19,33)" rx="2" ry="2" /> <text x="408.92" y="575.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="173.0" y="789" width="23.3" height="15.0" fill="rgb(223,150,30)" rx="2" ry="2" /> <text x="176.03" y="799.5" >d..</text> </g> <g > <title>gic_handle_irq (1 samples, 0.66%)</title><rect x="87.6" y="101" width="7.8" height="15.0" fill="rgb(219,211,13)" rx="2" ry="2" /> <text x="90.63" y="111.5" ></text> </g> <g > <title>invoke_syscall (5 samples, 3.29%)</title><rect x="879.5" y="773" width="38.8" height="15.0" fill="rgb(208,33,15)" rx="2" ry="2" /> <text x="882.47" y="783.5" >inv..</text> </g> <g > <title>__arm64_sys_ftruncate (1 samples, 0.66%)</title><rect x="1151.2" y="741" width="7.7" height="15.0" fill="rgb(243,83,26)" rx="2" ry="2" /> <text x="1154.18" y="751.5" ></text> </g> <g > <title>all (152 samples, 100%)</title><rect x="10.0" y="1013" width="1180.0" height="15.0" fill="rgb(250,228,31)" rx="2" ry="2" /> <text x="13.00" y="1023.5" ></text> </g> <g > <title>drm_mode_cursor_common (6 samples, 3.95%)</title><rect x="64.3" y="453" width="46.6" height="15.0" fill="rgb(210,131,15)" rx="2" ry="2" /> <text x="67.34" y="463.5" >drm_..</text> </g> <g > <title>irq_exit (1 samples, 0.66%)</title><rect x="452.5" y="229" width="7.8" height="15.0" fill="rgb(252,17,53)" rx="2" ry="2" /> <text x="455.50" y="239.5" ></text> </g> <g > <title>_mesa_get_format_block_size_3d (1 samples, 0.66%)</title><rect x="281.7" y="677" width="7.8" height="15.0" fill="rgb(208,165,6)" rx="2" ry="2" /> <text x="284.71" y="687.5" ></text> </g> <g > <title>__arch_copy_from_user (1 samples, 0.66%)</title><rect x="359.3" y="453" width="7.8" height="15.0" fill="rgb(238,221,10)" rx="2" ry="2" /> <text x="362.34" y="463.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (9 samples, 5.92%)</title><rect x="600.0" y="773" width="69.9" height="15.0" fill="rgb(228,173,39)" rx="2" ry="2" /> <text x="603.00" y="783.5" >QApplic..</text> </g> <g > <title>__arm64_sys_ioctl (2 samples, 1.32%)</title><rect x="343.8" y="421" width="15.5" height="15.0" fill="rgb(230,89,12)" rx="2" ry="2" /> <text x="346.82" y="431.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="1166.7" y="725" width="7.8" height="15.0" fill="rgb(246,86,6)" rx="2" ry="2" /> <text x="1169.71" y="735.5" ></text> </g> <g > <title>sock_write_iter (1 samples, 0.66%)</title><rect x="305.0" y="453" width="7.8" height="15.0" fill="rgb(207,214,15)" rx="2" ry="2" /> <text x="308.00" y="463.5" ></text> </g> <g > <title>el1h_64_sync (1 samples, 0.66%)</title><rect x="910.5" y="645" width="7.8" height="15.0" fill="rgb(214,89,13)" rx="2" ry="2" /> <text x="913.53" y="655.5" ></text> </g> <g > <title>unmap_mapping_range (1 samples, 0.66%)</title><rect x="1151.2" y="645" width="7.7" height="15.0" fill="rgb(223,111,23)" rx="2" ry="2" /> <text x="1154.18" y="655.5" ></text> </g> <g > <title>sock_sendmsg (1 samples, 0.66%)</title><rect x="700.9" y="149" width="7.8" height="15.0" fill="rgb(235,226,30)" rx="2" ry="2" /> <text x="703.92" y="159.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (2 samples, 1.32%)</title><rect x="677.6" y="741" width="15.6" height="15.0" fill="rgb(251,0,52)" rx="2" ry="2" /> <text x="680.63" y="751.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (2 samples, 1.32%)</title><rect x="693.2" y="757" width="15.5" height="15.0" fill="rgb(219,85,43)" rx="2" ry="2" /> <text x="696.16" y="767.5" ></text> </g> <g > <title>schedule_hrtimeout_range_clock (1 samples, 0.66%)</title><rect x="227.4" y="709" width="7.7" height="15.0" fill="rgb(216,60,41)" rx="2" ry="2" /> <text x="230.37" y="719.5" ></text> </g> <g > <title>QCommonStyle::hitTestComplexControl (1 samples, 0.66%)</title><rect x="669.9" y="629" width="7.7" height="15.0" fill="rgb(246,97,15)" rx="2" ry="2" /> <text x="672.87" y="639.5" ></text> </g> <g > <title>__setplane_atomic (6 samples, 3.95%)</title><rect x="64.3" y="421" width="46.6" height="15.0" fill="rgb(235,6,6)" rx="2" ry="2" /> <text x="67.34" y="431.5" >__se..</text> </g> <g > <title>syscall_trace_enter (1 samples, 0.66%)</title><rect x="522.4" y="629" width="7.7" height="15.0" fill="rgb(223,40,2)" rx="2" ry="2" /> <text x="525.37" y="639.5" ></text> </g> <g > <title>g_main_context_iterate (17 samples, 11.18%)</title><rect x="600.0" y="869" width="132.0" height="15.0" fill="rgb(234,90,50)" rx="2" ry="2" /> <text x="603.00" y="879.5" >g_main_context_i..</text> </g> <g > <title>usb_hcd_submit_urb (1 samples, 0.66%)</title><rect x="995.9" y="597" width="7.8" height="15.0" fill="rgb(230,155,19)" rx="2" ry="2" /> <text x="998.92" y="607.5" ></text> </g> <g > <title>vfs_writev (2 samples, 1.32%)</title><rect x="444.7" y="501" width="15.6" height="15.0" fill="rgb(214,68,26)" rx="2" ry="2" /> <text x="447.74" y="511.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (1 samples, 0.66%)</title><rect x="452.5" y="357" width="7.8" height="15.0" fill="rgb(213,97,2)" rx="2" ry="2" /> <text x="455.50" y="367.5" ></text> </g> <g > <title>irq_exit (1 samples, 0.66%)</title><rect x="1073.6" y="773" width="7.7" height="15.0" fill="rgb(241,216,30)" rx="2" ry="2" /> <text x="1076.55" y="783.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="821" width="7.7" height="15.0" fill="rgb(253,148,48)" rx="2" ry="2" /> <text x="525.37" y="831.5" ></text> </g> <g > <title>unix_stream_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="693" width="7.8" height="15.0" fill="rgb(250,11,52)" rx="2" ry="2" /> <text x="478.79" y="703.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="165.3" y="853" width="7.7" height="15.0" fill="rgb(238,43,16)" rx="2" ry="2" /> <text x="168.26" y="863.5" ></text> </g> <g > <title>GetEventMask (1 samples, 0.66%)</title><rect x="429.2" y="741" width="7.8" height="15.0" fill="rgb(224,183,41)" rx="2" ry="2" /> <text x="432.21" y="751.5" ></text> </g> <g > <title>__libc_write (5 samples, 3.29%)</title><rect x="879.5" y="885" width="38.8" height="15.0" fill="rgb(208,136,52)" rx="2" ry="2" /> <text x="882.47" y="895.5" >__l..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="289.5" y="501" width="7.7" height="15.0" fill="rgb(220,196,35)" rx="2" ry="2" /> <text x="292.47" y="511.5" ></text> </g> <g > <title>xf86MoveCursor (2 samples, 1.32%)</title><rect x="460.3" y="885" width="15.5" height="15.0" fill="rgb(221,183,4)" rx="2" ry="2" /> <text x="463.26" y="895.5" ></text> </g> <g > <title>drmIoctl (3 samples, 1.97%)</title><rect x="359.3" y="597" width="23.3" height="15.0" fill="rgb(238,122,51)" rx="2" ry="2" /> <text x="362.34" y="607.5" >d..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="235.1" y="597" width="7.8" height="15.0" fill="rgb(219,63,28)" rx="2" ry="2" /> <text x="238.13" y="607.5" ></text> </g> <g > <title>[xscreensaver] (3 samples, 1.97%)</title><rect x="1166.7" y="949" width="23.3" height="15.0" fill="rgb(232,181,2)" rx="2" ry="2" /> <text x="1169.71" y="959.5" >[..</text> </g> <g > <title>__sched_setaffinity (1 samples, 0.66%)</title><rect x="739.7" y="773" width="7.8" height="15.0" fill="rgb(216,166,1)" rx="2" ry="2" /> <text x="742.74" y="783.5" ></text> </g> <g > <title>commit_tail (1 samples, 0.66%)</title><rect x="235.1" y="357" width="7.8" height="15.0" fill="rgb(231,206,41)" rx="2" ry="2" /> <text x="238.13" y="367.5" ></text> </g> <g > <title>[libusbmuxd-2.0.so.6.0.0] (1 samples, 0.66%)</title><rect x="561.2" y="965" width="7.7" height="15.0" fill="rgb(231,139,40)" rx="2" ry="2" /> <text x="564.18" y="975.5" ></text> </g> <g > <title>arch_call_rest_init (13 samples, 8.55%)</title><rect x="941.6" y="949" width="100.9" height="15.0" fill="rgb(223,70,10)" rx="2" ry="2" /> <text x="944.58" y="959.5" >arch_call_re..</text> </g> <g > <title>alloc_skb_with_frags (1 samples, 0.66%)</title><rect x="305.0" y="389" width="7.8" height="15.0" fill="rgb(235,198,4)" rx="2" ry="2" /> <text x="308.00" y="399.5" ></text> </g> <g > <title>commit_tail (5 samples, 3.29%)</title><rect x="64.3" y="357" width="38.9" height="15.0" fill="rgb(223,217,17)" rx="2" ry="2" /> <text x="67.34" y="367.5" >com..</text> </g> <g > <title>_XSERVTransSocketWritev (1 samples, 0.66%)</title><rect x="405.9" y="645" width="7.8" height="15.0" fill="rgb(247,176,14)" rx="2" ry="2" /> <text x="408.92" y="655.5" ></text> </g> <g > <title>do_el0_svc (3 samples, 1.97%)</title><rect x="491.3" y="821" width="23.3" height="15.0" fill="rgb(217,171,7)" rx="2" ry="2" /> <text x="494.32" y="831.5" >d..</text> </g> <g > <title>WriteEventsToClient (1 samples, 0.66%)</title><rect x="405.9" y="677" width="7.8" height="15.0" fill="rgb(230,124,15)" rx="2" ry="2" /> <text x="408.92" y="687.5" ></text> </g> <g > <title>mieqProcessInputEvents (23 samples, 15.13%)</title><rect x="297.2" y="901" width="178.6" height="15.0" fill="rgb(205,2,29)" rx="2" ry="2" /> <text x="300.24" y="911.5" >mieqProcessInputEvents</text> </g> <g > <title>xf86ScreenSetCursor (8 samples, 5.26%)</title><rect x="320.5" y="677" width="62.1" height="15.0" fill="rgb(232,112,14)" rx="2" ry="2" /> <text x="323.53" y="687.5" >xf86Sc..</text> </g> <g > <title>vc4_atomic_commit_tail (1 samples, 0.66%)</title><rect x="235.1" y="341" width="7.8" height="15.0" fill="rgb(213,124,7)" rx="2" ry="2" /> <text x="238.13" y="351.5" ></text> </g> <g > <title>__ep_eventpoll_poll.isra.0 (1 samples, 0.66%)</title><rect x="126.4" y="741" width="7.8" height="15.0" fill="rgb(212,92,26)" rx="2" ry="2" /> <text x="129.45" y="751.5" ></text> </g> <g > <title>__mod_timer (1 samples, 0.66%)</title><rect x="374.9" y="181" width="7.7" height="15.0" fill="rgb(245,121,53)" rx="2" ry="2" /> <text x="377.87" y="191.5" ></text> </g> <g > <title>TryClientEvents (1 samples, 0.66%)</title><rect x="405.9" y="709" width="7.8" height="15.0" fill="rgb(251,67,25)" rx="2" ry="2" /> <text x="408.92" y="719.5" ></text> </g> <g > <title>cmd_record (24 samples, 15.79%)</title><rect x="732.0" y="965" width="186.3" height="15.0" fill="rgb(219,165,16)" rx="2" ry="2" /> <text x="734.97" y="975.5" >cmd_record</text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="289.5" y="485" width="7.7" height="15.0" fill="rgb(240,74,24)" rx="2" ry="2" /> <text x="292.47" y="495.5" ></text> </g> <g > <title>irq_exit (1 samples, 0.66%)</title><rect x="87.6" y="69" width="7.8" height="15.0" fill="rgb(249,24,13)" rx="2" ry="2" /> <text x="90.63" y="79.5" ></text> </g> <g > <title>__setplane_atomic (2 samples, 1.32%)</title><rect x="343.8" y="325" width="15.5" height="15.0" fill="rgb(215,187,54)" rx="2" ry="2" /> <text x="346.82" y="335.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="853" width="7.7" height="15.0" fill="rgb(241,85,11)" rx="2" ry="2" /> <text x="525.37" y="863.5" ></text> </g> <g > <title>do_iter_readv_writev (1 samples, 0.66%)</title><rect x="700.9" y="181" width="7.8" height="15.0" fill="rgb(221,135,6)" rx="2" ry="2" /> <text x="703.92" y="191.5" ></text> </g> <g > <title>__handle_mm_fault (1 samples, 0.66%)</title><rect x="910.5" y="533" width="7.8" height="15.0" fill="rgb(232,92,26)" rx="2" ry="2" /> <text x="913.53" y="543.5" ></text> </g> <g > <title>rest_init (13 samples, 8.55%)</title><rect x="941.6" y="933" width="100.9" height="15.0" fill="rgb(237,1,20)" rx="2" ry="2" /> <text x="944.58" y="943.5" >rest_init</text> </g> <g > <title>poll_freewait (1 samples, 0.66%)</title><rect x="219.6" y="725" width="7.8" height="15.0" fill="rgb(243,206,23)" rx="2" ry="2" /> <text x="222.61" y="735.5" ></text> </g> <g > <title>drmIoctl (1 samples, 0.66%)</title><rect x="289.5" y="597" width="7.7" height="15.0" fill="rgb(252,63,28)" rx="2" ry="2" /> <text x="292.47" y="607.5" ></text> </g> <g > <title>QXcbConnection::processXcbEvents (1 samples, 0.66%)</title><rect x="918.3" y="805" width="7.8" height="15.0" fill="rgb(220,60,24)" rx="2" ry="2" /> <text x="921.29" y="815.5" ></text> </g> <g > <title>QCoreApplication::exec (1 samples, 0.66%)</title><rect x="918.3" y="933" width="7.8" height="15.0" fill="rgb(241,207,14)" rx="2" ry="2" /> <text x="921.29" y="943.5" ></text> </g> <g > <title>QXcbWindow::handleEnterNotifyEvent (1 samples, 0.66%)</title><rect x="918.3" y="773" width="7.8" height="15.0" fill="rgb(223,153,25)" rx="2" ry="2" /> <text x="921.29" y="783.5" ></text> </g> <g > <title>[libgio-2.0.so.0.6800.4] (1 samples, 0.66%)</title><rect x="522.4" y="773" width="7.7" height="15.0" fill="rgb(209,188,17)" rx="2" ry="2" /> <text x="525.37" y="783.5" ></text> </g> <g > <title>save_return_addr (1 samples, 0.66%)</title><rect x="537.9" y="869" width="7.8" height="15.0" fill="rgb(250,87,34)" rx="2" ry="2" /> <text x="540.89" y="879.5" ></text> </g> <g > <title>__do_softirq (1 samples, 0.66%)</title><rect x="219.6" y="533" width="7.8" height="15.0" fill="rgb(245,127,48)" rx="2" ry="2" /> <text x="222.61" y="543.5" ></text> </g> <g > <title>__arm64_sys_recvmsg (1 samples, 0.66%)</title><rect x="475.8" y="757" width="7.8" height="15.0" fill="rgb(211,163,51)" rx="2" ry="2" /> <text x="478.79" y="767.5" ></text> </g> <g > <title>_xcb_out_flush_to (1 samples, 0.66%)</title><rect x="700.9" y="437" width="7.8" height="15.0" fill="rgb(208,122,44)" rx="2" ry="2" /> <text x="703.92" y="447.5" ></text> </g> <g > <title>g_main_dispatch (17 samples, 11.18%)</title><rect x="600.0" y="837" width="132.0" height="15.0" fill="rgb(210,84,48)" rx="2" ry="2" /> <text x="603.00" y="847.5" >g_main_dispatch</text> </g> <g > <title>DRM_IOCTL (6 samples, 3.95%)</title><rect x="64.3" y="661" width="46.6" height="15.0" fill="rgb(254,217,18)" rx="2" ry="2" /> <text x="67.34" y="671.5" >DRM_..</text> </g> <g > <title>DeliverEvent (1 samples, 0.66%)</title><rect x="305.0" y="805" width="7.8" height="15.0" fill="rgb(251,198,8)" rx="2" ry="2" /> <text x="308.00" y="815.5" ></text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="739.7" y="901" width="7.8" height="15.0" fill="rgb(223,77,13)" rx="2" ry="2" /> <text x="742.74" y="911.5" ></text> </g> <g > <title>___sys_recvmsg (1 samples, 0.66%)</title><rect x="584.5" y="597" width="7.7" height="15.0" fill="rgb(216,157,15)" rx="2" ry="2" /> <text x="587.47" y="607.5" ></text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="289.5" y="517" width="7.7" height="15.0" fill="rgb(227,157,46)" rx="2" ry="2" /> <text x="292.47" y="527.5" ></text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="724.2" y="485" width="7.8" height="15.0" fill="rgb(243,194,1)" rx="2" ry="2" /> <text x="727.21" y="495.5" ></text> </g> <g > <title>QApplicationPrivate::notify_helper (1 samples, 0.66%)</title><rect x="646.6" y="597" width="7.7" height="15.0" fill="rgb(241,11,52)" rx="2" ry="2" /> <text x="649.58" y="607.5" ></text> </g> <g > <title>QThread (1 samples, 0.66%)</title><rect x="134.2" y="997" width="7.8" height="15.0" fill="rgb(213,75,50)" rx="2" ry="2" /> <text x="137.21" y="1007.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="1166.7" y="741" width="7.8" height="15.0" fill="rgb(246,222,39)" rx="2" ry="2" /> <text x="1169.71" y="751.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="700.9" y="101" width="7.8" height="15.0" fill="rgb(221,227,54)" rx="2" ry="2" /> <text x="703.92" y="111.5" ></text> </g> <g > <title>drm_mode_cursor_ioctl (6 samples, 3.95%)</title><rect x="64.3" y="469" width="46.6" height="15.0" fill="rgb(250,82,26)" rx="2" ry="2" /> <text x="67.34" y="479.5" >drm_..</text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="1151.2" y="773" width="7.7" height="15.0" fill="rgb(250,129,48)" rx="2" ry="2" /> <text x="1154.18" y="783.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (5 samples, 3.29%)</title><rect x="879.5" y="789" width="38.8" height="15.0" fill="rgb(225,160,9)" rx="2" ry="2" /> <text x="882.47" y="799.5" >el0..</text> </g> <g > <title>drm_atomic_commit (2 samples, 1.32%)</title><rect x="343.8" y="293" width="15.5" height="15.0" fill="rgb(213,1,30)" rx="2" ry="2" /> <text x="346.82" y="303.5" ></text> </g> <g > <title>_mesa_TexSubImage2D (2 samples, 1.32%)</title><rect x="281.7" y="741" width="15.5" height="15.0" fill="rgb(237,67,29)" rx="2" ry="2" /> <text x="284.71" y="751.5" ></text> </g> <g > <title>__slab_free (1 samples, 0.66%)</title><rect x="460.3" y="453" width="7.7" height="15.0" fill="rgb(240,19,12)" rx="2" ry="2" /> <text x="463.26" y="463.5" ></text> </g> <g > <title>__GI___writev (1 samples, 0.66%)</title><rect x="700.9" y="373" width="7.8" height="15.0" fill="rgb(233,1,27)" rx="2" ry="2" /> <text x="703.92" y="383.5" ></text> </g> <g > <title>__drm_atomic_helper_plane_destroy_state (1 samples, 0.66%)</title><rect x="460.3" y="485" width="7.7" height="15.0" fill="rgb(244,137,38)" rx="2" ry="2" /> <text x="463.26" y="495.5" ></text> </g> <g > <title>sock_sendmsg (3 samples, 1.97%)</title><rect x="382.6" y="421" width="23.3" height="15.0" fill="rgb(252,138,54)" rx="2" ry="2" /> <text x="385.63" y="431.5" >s..</text> </g> <g > <title>wait_for_completion_timeout (1 samples, 0.66%)</title><rect x="374.9" y="213" width="7.7" height="15.0" fill="rgb(212,60,47)" rx="2" ry="2" /> <text x="377.87" y="223.5" ></text> </g> <g > <title>CoreEnterLeaveNonLinear (4 samples, 2.63%)</title><rect x="382.6" y="789" width="31.1" height="15.0" fill="rgb(234,94,13)" rx="2" ry="2" /> <text x="385.63" y="799.5" >Co..</text> </g> <g > <title>[lxqt-session] (1 samples, 0.66%)</title><rect x="134.2" y="933" width="7.8" height="15.0" fill="rgb(226,119,7)" rx="2" ry="2" /> <text x="137.21" y="943.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="173.0" y="805" width="23.3" height="15.0" fill="rgb(246,42,50)" rx="2" ry="2" /> <text x="176.03" y="815.5" >e..</text> </g> <g > <title>texsubimage_error_check (1 samples, 0.66%)</title><rect x="281.7" y="709" width="7.8" height="15.0" fill="rgb(246,139,5)" rx="2" ry="2" /> <text x="284.71" y="719.5" ></text> </g> <g > <title>do_epoll_pwait.part.0 (3 samples, 1.97%)</title><rect x="491.3" y="757" width="23.3" height="15.0" fill="rgb(243,21,45)" rx="2" ry="2" /> <text x="494.32" y="767.5" >d..</text> </g> <g > <title>invoke_syscall (6 samples, 3.95%)</title><rect x="64.3" y="533" width="46.6" height="15.0" fill="rgb(222,62,23)" rx="2" ry="2" /> <text x="67.34" y="543.5" >invo..</text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.66%)</title><rect x="351.6" y="181" width="7.7" height="15.0" fill="rgb(235,36,51)" rx="2" ry="2" /> <text x="354.58" y="191.5" ></text> </g> <g > <title>_XEventsQueued (1 samples, 0.66%)</title><rect x="1166.7" y="885" width="7.8" height="15.0" fill="rgb(249,119,20)" rx="2" ry="2" /> <text x="1169.71" y="895.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="382.6" y="581" width="23.3" height="15.0" fill="rgb(234,222,3)" rx="2" ry="2" /> <text x="385.63" y="591.5" >e..</text> </g> <g > <title>_xcb_in_read_block (1 samples, 0.66%)</title><rect x="211.8" y="853" width="7.8" height="15.0" fill="rgb(207,130,48)" rx="2" ry="2" /> <text x="214.84" y="863.5" ></text> </g> <g > <title>rpi_firmware_property_list (1 samples, 0.66%)</title><rect x="468.0" y="421" width="7.8" height="15.0" fill="rgb(237,183,1)" rx="2" ry="2" /> <text x="471.03" y="431.5" ></text> </g> <g > <title>glamor_put_image_gl (4 samples, 2.63%)</title><rect x="250.7" y="869" width="31.0" height="15.0" fill="rgb(249,228,17)" rx="2" ry="2" /> <text x="253.66" y="879.5" >gl..</text> </g> <g > <title>drm_mode_cursor_ioctl (2 samples, 1.32%)</title><rect x="460.3" y="613" width="15.5" height="15.0" fill="rgb(252,32,6)" rx="2" ry="2" /> <text x="463.26" y="623.5" ></text> </g> <g > <title>drm_mode_cursor_universal (2 samples, 1.32%)</title><rect x="460.3" y="581" width="15.5" height="15.0" fill="rgb(226,50,16)" rx="2" ry="2" /> <text x="463.26" y="591.5" ></text> </g> <g > <title>read_packet (1 samples, 0.66%)</title><rect x="600.0" y="597" width="7.8" height="15.0" fill="rgb(254,9,6)" rx="2" ry="2" /> <text x="603.00" y="607.5" ></text> </g> <g > <title>DRM_IOCTL (2 samples, 1.32%)</title><rect x="460.3" y="805" width="15.5" height="15.0" fill="rgb(226,26,53)" rx="2" ry="2" /> <text x="463.26" y="815.5" ></text> </g> <g > <title>el0_svc (1 samples, 0.66%)</title><rect x="918.3" y="549" width="7.8" height="15.0" fill="rgb(240,95,27)" rx="2" ry="2" /> <text x="921.29" y="559.5" ></text> </g> <g > <title>drm_atomic_helper_commit (1 samples, 0.66%)</title><rect x="468.0" y="517" width="7.8" height="15.0" fill="rgb(236,169,7)" rx="2" ry="2" /> <text x="471.03" y="527.5" ></text> </g> <g > <title>QMutex::lock (1 samples, 0.66%)</title><rect x="142.0" y="917" width="7.7" height="15.0" fill="rgb(252,91,15)" rx="2" ry="2" /> <text x="144.97" y="927.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="584.5" y="661" width="7.7" height="15.0" fill="rgb(236,146,38)" rx="2" ry="2" /> <text x="587.47" y="671.5" ></text> </g> <g > <title>xi2mask_isset_for_device (1 samples, 0.66%)</title><rect x="429.2" y="693" width="7.8" height="15.0" fill="rgb(221,146,30)" rx="2" ry="2" /> <text x="432.21" y="703.5" ></text> </g> <g > <title>miPointerMoveNoEvent (6 samples, 3.95%)</title><rect x="64.3" y="757" width="46.6" height="15.0" fill="rgb(233,77,16)" rx="2" ry="2" /> <text x="67.34" y="767.5" >miPo..</text> </g> <g > <title>jbd2/mmcblk0p2- (1 samples, 0.66%)</title><rect x="530.1" y="997" width="7.8" height="15.0" fill="rgb(218,191,52)" rx="2" ry="2" /> <text x="533.13" y="1007.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (17 samples, 11.18%)</title><rect x="747.5" y="837" width="132.0" height="15.0" fill="rgb(251,151,9)" rx="2" ry="2" /> <text x="750.50" y="847.5" >el0_svc_common.c..</text> </g> <g > <title>QGuiApplicationPrivate::processEnterEvent (1 samples, 0.66%)</title><rect x="669.9" y="789" width="7.7" height="15.0" fill="rgb(246,72,44)" rx="2" ry="2" /> <text x="672.87" y="799.5" ></text> </g> <g > <title>hrtimer_start_range_ns (1 samples, 0.66%)</title><rect x="235.1" y="229" width="7.8" height="15.0" fill="rgb(222,163,53)" rx="2" ry="2" /> <text x="238.13" y="239.5" ></text> </g> <g > <title>__arm64_sys_writev (1 samples, 0.66%)</title><rect x="405.9" y="501" width="7.8" height="15.0" fill="rgb(254,184,36)" rx="2" ry="2" /> <text x="408.92" y="511.5" ></text> </g> <g > <title>g_main_dispatch (1 samples, 0.66%)</title><rect x="918.3" y="837" width="7.8" height="15.0" fill="rgb(244,70,42)" rx="2" ry="2" /> <text x="921.29" y="847.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="235.1" y="549" width="7.8" height="15.0" fill="rgb(208,70,3)" rx="2" ry="2" /> <text x="238.13" y="559.5" ></text> </g> <g > <title>notify_change (1 samples, 0.66%)</title><rect x="1151.2" y="693" width="7.7" height="15.0" fill="rgb(237,32,33)" rx="2" ry="2" /> <text x="1154.18" y="703.5" ></text> </g> <g > <title>_nohz_idle_balance.constprop.0.isra.0 (1 samples, 0.66%)</title><rect x="1081.3" y="901" width="7.8" height="15.0" fill="rgb(232,139,10)" rx="2" ry="2" /> <text x="1084.32" y="911.5" ></text> </g> <g > <title>texture_sub_image (1 samples, 0.66%)</title><rect x="289.5" y="709" width="7.7" height="15.0" fill="rgb(246,9,40)" rx="2" ry="2" /> <text x="292.47" y="719.5" ></text> </g> <g > <title>el0t_64_sync_handler (3 samples, 1.97%)</title><rect x="359.3" y="549" width="23.3" height="15.0" fill="rgb(239,210,7)" rx="2" ry="2" /> <text x="362.34" y="559.5" >e..</text> </g> <g > <title>QXcbConnection::xi2UpdateScrollingDevices (1 samples, 0.66%)</title><rect x="918.3" y="757" width="7.8" height="15.0" fill="rgb(252,57,48)" rx="2" ry="2" /> <text x="921.29" y="767.5" ></text> </g> <g > <title>drmModeMoveCursor (1 samples, 0.66%)</title><rect x="235.1" y="677" width="7.8" height="15.0" fill="rgb(243,52,46)" rx="2" ry="2" /> <text x="238.13" y="687.5" ></text> </g> <g > <title>schedule (2 samples, 1.32%)</title><rect x="499.1" y="693" width="15.5" height="15.0" fill="rgb(253,164,37)" rx="2" ry="2" /> <text x="502.08" y="703.5" ></text> </g> <g > <title>write_vec (1 samples, 0.66%)</title><rect x="918.3" y="629" width="7.8" height="15.0" fill="rgb(231,71,16)" rx="2" ry="2" /> <text x="921.29" y="639.5" ></text> </g> <g > <title>schedule (1 samples, 0.66%)</title><rect x="134.2" y="677" width="7.8" height="15.0" fill="rgb(236,102,28)" rx="2" ry="2" /> <text x="137.21" y="687.5" ></text> </g> <g > <title>el0_svc (17 samples, 11.18%)</title><rect x="747.5" y="869" width="132.0" height="15.0" fill="rgb(218,116,27)" rx="2" ry="2" /> <text x="750.50" y="879.5" >el0_svc</text> </g> <g > <title>xf86libinput_handle_motion (6 samples, 3.95%)</title><rect x="64.3" y="869" width="46.6" height="15.0" fill="rgb(241,142,23)" rx="2" ry="2" /> <text x="67.34" y="879.5" >xf86..</text> </g> <g > <title>el0t_64_sync (1 samples, 0.66%)</title><rect x="405.9" y="597" width="7.8" height="15.0" fill="rgb(223,120,7)" rx="2" ry="2" /> <text x="408.92" y="607.5" ></text> </g> <g > <title>ospoll_wait (3 samples, 1.97%)</title><rect x="491.3" y="901" width="23.3" height="15.0" fill="rgb(244,51,34)" rx="2" ry="2" /> <text x="494.32" y="911.5" >o..</text> </g> <g > <title>schedule_hrtimeout_range (2 samples, 1.32%)</title><rect x="499.1" y="725" width="15.5" height="15.0" fill="rgb(238,96,19)" rx="2" ry="2" /> <text x="502.08" y="735.5" ></text> </g> <g > <title>ext4_da_write_begin (3 samples, 1.97%)</title><rect x="887.2" y="645" width="23.3" height="15.0" fill="rgb(226,6,47)" rx="2" ry="2" /> <text x="890.24" y="655.5" >e..</text> </g> <g > <title>xf86CursorSetCursor (1 samples, 0.66%)</title><rect x="235.1" y="757" width="7.8" height="15.0" fill="rgb(246,134,47)" rx="2" ry="2" /> <text x="238.13" y="767.5" ></text> </g> <g > <title>hrtimer_start_range_ns (1 samples, 0.66%)</title><rect x="367.1" y="181" width="7.8" height="15.0" fill="rgb(226,14,24)" rx="2" ry="2" /> <text x="370.11" y="191.5" ></text> </g> <g > <title>v3d_create_bo_ioctl (1 samples, 0.66%)</title><rect x="289.5" y="421" width="7.7" height="15.0" fill="rgb(238,59,43)" rx="2" ry="2" /> <text x="292.47" y="431.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (1 samples, 0.66%)</title><rect x="918.3" y="517" width="7.8" height="15.0" fill="rgb(248,86,21)" rx="2" ry="2" /> <text x="921.29" y="527.5" ></text> </g> <g > <title>hrtimer_start_range_ns (1 samples, 0.66%)</title><rect x="87.6" y="229" width="7.8" height="15.0" fill="rgb(238,127,5)" rx="2" ry="2" /> <text x="90.63" y="239.5" ></text> </g> <g > <title>perf_ioctl (17 samples, 11.18%)</title><rect x="747.5" y="789" width="132.0" height="15.0" fill="rgb(222,52,53)" rx="2" ry="2" /> <text x="750.50" y="799.5" >perf_ioctl</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="739.7" y="885" width="7.8" height="15.0" fill="rgb(217,49,12)" rx="2" ry="2" /> <text x="742.74" y="895.5" ></text> </g> <g > <title>__libc_write (5 samples, 3.29%)</title><rect x="879.5" y="869" width="38.8" height="15.0" fill="rgb(241,99,43)" rx="2" ry="2" /> <text x="882.47" y="879.5" >__l..</text> </g> <g > <title>_raw_spin_unlock_irq (1 samples, 0.66%)</title><rect x="926.1" y="741" width="7.7" height="15.0" fill="rgb(238,9,49)" rx="2" ry="2" /> <text x="929.05" y="751.5" ></text> </g> <g > <title>ProcessPointerEvent (18 samples, 11.84%)</title><rect x="320.5" y="869" width="139.8" height="15.0" fill="rgb(236,163,2)" rx="2" ry="2" /> <text x="323.53" y="879.5" >ProcessPointerEvent</text> </g> <g > <title>poll (1 samples, 0.66%)</title><rect x="1174.5" y="773" width="7.7" height="15.0" fill="rgb(236,76,6)" rx="2" ry="2" /> <text x="1177.47" y="783.5" ></text> </g> <g > <title>[xscreensaver] (3 samples, 1.97%)</title><rect x="1166.7" y="981" width="23.3" height="15.0" fill="rgb(208,196,22)" rx="2" ry="2" /> <text x="1169.71" y="991.5" >[..</text> </g> <g > <title>in_lock_functions (1 samples, 0.66%)</title><rect x="87.6" y="197" width="7.8" height="15.0" fill="rgb(223,139,24)" rx="2" ry="2" /> <text x="90.63" y="207.5" ></text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (4 samples, 2.63%)</title><rect x="607.8" y="693" width="31.0" height="15.0" fill="rgb(205,58,17)" rx="2" ry="2" /> <text x="610.76" y="703.5" >[l..</text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="700.9" y="325" width="7.8" height="15.0" fill="rgb(221,115,3)" rx="2" ry="2" /> <text x="703.92" y="335.5" ></text> </g> <g > <title>__setplane_atomic (2 samples, 1.32%)</title><rect x="367.1" y="373" width="15.5" height="15.0" fill="rgb(229,156,43)" rx="2" ry="2" /> <text x="370.11" y="383.5" ></text> </g> <g > <title>el0_svc (3 samples, 1.97%)</title><rect x="437.0" y="597" width="23.3" height="15.0" fill="rgb(231,198,36)" rx="2" ry="2" /> <text x="439.97" y="607.5" >e..</text> </g> <g > <title>thread_start (1 samples, 0.66%)</title><rect x="522.4" y="981" width="7.7" height="15.0" fill="rgb(213,45,15)" rx="2" ry="2" /> <text x="525.37" y="991.5" ></text> </g> <g > <title>QStyleHelper::dpi (1 samples, 0.66%)</title><rect x="669.9" y="549" width="7.7" height="15.0" fill="rgb(216,136,30)" rx="2" ry="2" /> <text x="672.87" y="559.5" ></text> </g> <g > <title>el0t_64_sync_handler (1 samples, 0.66%)</title><rect x="134.2" y="821" width="7.8" height="15.0" fill="rgb(232,180,49)" rx="2" ry="2" /> <text x="137.21" y="831.5" ></text> </g> <g > <title>lxqt-powermanag (1 samples, 0.66%)</title><rect x="561.2" y="997" width="7.7" height="15.0" fill="rgb(252,90,18)" rx="2" ry="2" /> <text x="564.18" y="1007.5" ></text> </g> <g > <title>_perf_event_enable (17 samples, 11.18%)</title><rect x="747.5" y="741" width="132.0" height="15.0" fill="rgb(224,56,11)" rx="2" ry="2" /> <text x="750.50" y="751.5" >_perf_event_enable</text> </g> <g > <title>ext4_finish_bio (1 samples, 0.66%)</title><rect x="545.7" y="885" width="7.7" height="15.0" fill="rgb(223,23,21)" rx="2" ry="2" /> <text x="548.66" y="895.5" ></text> </g> <g > <title>__wake_up_sync_key (1 samples, 0.66%)</title><rect x="242.9" y="597" width="7.8" height="15.0" fill="rgb(220,16,53)" rx="2" ry="2" /> <text x="245.89" y="607.5" ></text> </g> <g > <title>__libc_start_main (2 samples, 1.32%)</title><rect x="576.7" y="949" width="15.5" height="15.0" fill="rgb(238,59,26)" rx="2" ry="2" /> <text x="579.71" y="959.5" ></text> </g> <g > <title>QXcbConnection::xi2UpdateScrollingDevices (2 samples, 1.32%)</title><rect x="716.4" y="757" width="15.6" height="15.0" fill="rgb(239,54,26)" rx="2" ry="2" /> <text x="719.45" y="767.5" ></text> </g> <g > <title>el0_svc_common.constprop.0 (3 samples, 1.97%)</title><rect x="173.0" y="773" width="23.3" height="15.0" fill="rgb(243,189,0)" rx="2" ry="2" /> <text x="176.03" y="783.5" >e..</text> </g> <g > <title>drm_atomic_helper_commit_planes (4 samples, 2.63%)</title><rect x="72.1" y="325" width="31.1" height="15.0" fill="rgb(218,199,18)" rx="2" ry="2" /> <text x="75.11" y="335.5" >dr..</text> </g> <g > <title>do_el0_svc (1 samples, 0.66%)</title><rect x="242.9" y="789" width="7.8" height="15.0" fill="rgb(215,2,10)" rx="2" ry="2" /> <text x="245.89" y="799.5" ></text> </g> <g > <title>rpi_firmware_property_list (2 samples, 1.32%)</title><rect x="926.1" y="773" width="15.5" height="15.0" fill="rgb(213,150,12)" rx="2" ry="2" /> <text x="929.05" y="783.5" ></text> </g> <g > <title>__irq_exit_rcu (1 samples, 0.66%)</title><rect x="1073.6" y="757" width="7.7" height="15.0" fill="rgb(244,11,52)" rx="2" ry="2" /> <text x="1076.55" y="767.5" ></text> </g> <g > <title>shmem_alloc_page (1 samples, 0.66%)</title><rect x="289.5" y="309" width="7.7" height="15.0" fill="rgb(225,48,52)" rx="2" ry="2" /> <text x="292.47" y="319.5" ></text> </g> <g > <title>drm_atomic_helper_commit (2 samples, 1.32%)</title><rect x="343.8" y="277" width="15.5" height="15.0" fill="rgb(205,224,5)" rx="2" ry="2" /> <text x="346.82" y="287.5" ></text> </g> <g > <title>rpi_firmware_property_list (2 samples, 1.32%)</title><rect x="367.1" y="229" width="15.5" height="15.0" fill="rgb(228,144,31)" rx="2" ry="2" /> <text x="370.11" y="239.5" ></text> </g> <g > <title>drm_mode_cursor_universal (6 samples, 3.95%)</title><rect x="64.3" y="437" width="46.6" height="15.0" fill="rgb(249,188,9)" rx="2" ry="2" /> <text x="67.34" y="447.5" >drm_..</text> </g> <g > <title>[libQt5Core.so.5.15.2] (1 samples, 0.66%)</title><rect x="134.2" y="949" width="7.8" height="15.0" fill="rgb(226,27,26)" rx="2" ry="2" /> <text x="137.21" y="959.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (2 samples, 1.32%)</title><rect x="460.3" y="837" width="15.5" height="15.0" fill="rgb(233,8,39)" rx="2" ry="2" /> <text x="463.26" y="847.5" ></text> </g> <g > <title>__mod_timer (1 samples, 0.66%)</title><rect x="933.8" y="725" width="7.8" height="15.0" fill="rgb(223,212,20)" rx="2" ry="2" /> <text x="936.82" y="735.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="600.0" y="709" width="7.8" height="15.0" fill="rgb(231,139,5)" rx="2" ry="2" /> <text x="603.00" y="719.5" ></text> </g> <g > <title>_start (1 samples, 0.66%)</title><rect x="918.3" y="981" width="7.8" height="15.0" fill="rgb(207,49,35)" rx="2" ry="2" /> <text x="921.29" y="991.5" ></text> </g> <g > <title>QCoreApplication::notifyInternal2 (9 samples, 5.92%)</title><rect x="600.0" y="789" width="69.9" height="15.0" fill="rgb(234,172,40)" rx="2" ry="2" /> <text x="603.00" y="799.5" >QCoreAp..</text> </g> <g > <title>__GI___poll (1 samples, 0.66%)</title><rect x="522.4" y="725" width="7.7" height="15.0" fill="rgb(242,34,26)" rx="2" ry="2" /> <text x="525.37" y="735.5" ></text> </g> <g > <title>miPointerDisplayCursor (1 samples, 0.66%)</title><rect x="235.1" y="821" width="7.8" height="15.0" fill="rgb(230,143,31)" rx="2" ry="2" /> <text x="238.13" y="831.5" ></text> </g> <g > <title>hiddev_send_event.isra.0 (1 samples, 0.66%)</title><rect x="980.4" y="549" width="7.8" height="15.0" fill="rgb(214,175,6)" rx="2" ry="2" /> <text x="983.39" y="559.5" ></text> </g> <g > <title>QWidgetPrivate::sendPaintEvent (1 samples, 0.66%)</title><rect x="638.8" y="645" width="7.8" height="15.0" fill="rgb(234,93,18)" rx="2" ry="2" /> <text x="641.82" y="655.5" ></text> </g> <g > <title>drm_atomic_helper_commit_planes (2 samples, 1.32%)</title><rect x="367.1" y="277" width="15.5" height="15.0" fill="rgb(245,133,31)" rx="2" ry="2" /> <text x="370.11" y="287.5" ></text> </g> <g > <title>[pcmanfm-qt] (2 samples, 1.32%)</title><rect x="654.3" y="629" width="15.6" height="15.0" fill="rgb(236,70,44)" rx="2" ry="2" /> <text x="657.34" y="639.5" ></text> </g> <g > <title>el0_svc (2 samples, 1.32%)</title><rect x="25.5" y="853" width="15.6" height="15.0" fill="rgb(241,214,39)" rx="2" ry="2" /> <text x="28.53" y="863.5" ></text> </g> <g > <title>DeliverEventToWindowMask (1 samples, 0.66%)</title><rect x="305.0" y="773" width="7.8" height="15.0" fill="rgb(214,148,5)" rx="2" ry="2" /> <text x="308.00" y="783.5" ></text> </g> <g > <title>drm_ioctl_kernel (2 samples, 1.32%)</title><rect x="367.1" y="437" width="15.5" height="15.0" fill="rgb(221,122,20)" rx="2" ry="2" /> <text x="370.11" y="447.5" ></text> </g> <g > <title>__sys_recvmsg (1 samples, 0.66%)</title><rect x="1166.7" y="661" width="7.8" height="15.0" fill="rgb(221,179,16)" rx="2" ry="2" /> <text x="1169.71" y="671.5" ></text> </g> <g > <title>[libinput.so.10.13.0] (2 samples, 1.32%)</title><rect x="41.1" y="853" width="15.5" height="15.0" fill="rgb(249,127,33)" rx="2" ry="2" /> <text x="44.05" y="863.5" ></text> </g> <g > <title>_xcb_conn_wait (8 samples, 5.26%)</title><rect x="173.0" y="901" width="62.1" height="15.0" fill="rgb(234,180,28)" rx="2" ry="2" /> <text x="176.03" y="911.5" >_xcb_c..</text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="600.0" y="693" width="7.8" height="15.0" fill="rgb(243,184,0)" rx="2" ry="2" /> <text x="603.00" y="703.5" ></text> </g> <g > <title>do_writev (3 samples, 1.97%)</title><rect x="382.6" y="501" width="23.3" height="15.0" fill="rgb(232,132,20)" rx="2" ry="2" /> <text x="385.63" y="511.5" >d..</text> </g> <g > <title>[libQt5Widgets.so.5.15.2] (1 samples, 0.66%)</title><rect x="669.9" y="661" width="7.7" height="15.0" fill="rgb(250,11,35)" rx="2" ry="2" /> <text x="672.87" y="671.5" ></text> </g> <g > <title>drm_mode_cursor_common (2 samples, 1.32%)</title><rect x="460.3" y="597" width="15.5" height="15.0" fill="rgb(234,127,48)" rx="2" ry="2" /> <text x="463.26" y="607.5" ></text> </g> <g > <title>usb_submit_urb (1 samples, 0.66%)</title><rect x="995.9" y="613" width="7.8" height="15.0" fill="rgb(227,164,4)" rx="2" ry="2" /> <text x="998.92" y="623.5" ></text> </g> <g > <title>vc4_plane_atomic_update (1 samples, 0.66%)</title><rect x="235.1" y="309" width="7.8" height="15.0" fill="rgb(250,140,21)" rx="2" ry="2" /> <text x="238.13" y="319.5" ></text> </g> <g > <title>do_translation_fault (1 samples, 0.66%)</title><rect x="910.5" y="581" width="7.8" height="15.0" fill="rgb(213,189,23)" rx="2" ry="2" /> <text x="913.53" y="591.5" ></text> </g> <g > <title>invoke_syscall (1 samples, 0.66%)</title><rect x="475.8" y="773" width="7.8" height="15.0" fill="rgb(247,1,9)" rx="2" ry="2" /> <text x="478.79" y="783.5" ></text> </g> <g > <title>GetXI2MaskByte (1 samples, 0.66%)</title><rect x="429.2" y="725" width="7.8" height="15.0" fill="rgb(242,130,13)" rx="2" ry="2" /> <text x="432.21" y="735.5" ></text> </g> <g > <title>InputThread (16 samples, 10.53%)</title><rect x="10.0" y="997" width="124.2" height="15.0" fill="rgb(235,106,50)" rx="2" ry="2" /> <text x="13.00" y="1007.5" >InputThread</text> </g> <g > <title>kmem_cache_alloc_trace (1 samples, 0.66%)</title><rect x="103.2" y="341" width="7.7" height="15.0" fill="rgb(225,149,19)" rx="2" ry="2" /> <text x="106.16" y="351.5" ></text> </g> <g > <title>QXcbConnection::xi2UpdateScrollingDevice (2 samples, 1.32%)</title><rect x="716.4" y="741" width="15.6" height="15.0" fill="rgb(230,182,40)" rx="2" ry="2" /> <text x="719.45" y="751.5" ></text> </g> <g > <title>do_iter_write (2 samples, 1.32%)</title><rect x="444.7" y="485" width="15.6" height="15.0" fill="rgb(226,35,3)" rx="2" ry="2" /> <text x="447.74" y="495.5" ></text> </g> <g > <title>worker_thread (1 samples, 0.66%)</title><rect x="545.7" y="949" width="7.7" height="15.0" fill="rgb(253,26,4)" rx="2" ry="2" /> <text x="548.66" y="959.5" ></text> </g> <g > <title>g_main_context_dispatch (1 samples, 0.66%)</title><rect x="522.4" y="885" width="7.7" height="15.0" fill="rgb(218,105,1)" rx="2" ry="2" /> <text x="525.37" y="895.5" ></text> </g> <g > <title>xf86_crtc_set_cursor_position (3 samples, 1.97%)</title><rect x="359.3" y="645" width="23.3" height="15.0" fill="rgb(229,226,52)" rx="2" ry="2" /> <text x="362.34" y="655.5" >x..</text> </g> <g > <title>drm_atomic_get_crtc_state (1 samples, 0.66%)</title><rect x="103.2" y="373" width="7.7" height="15.0" fill="rgb(225,35,2)" rx="2" ry="2" /> <text x="106.16" y="383.5" ></text> </g> <g > <title>[libQt5XcbQpa.so.5.15.2] (1 samples, 0.66%)</title><rect x="700.9" y="517" width="7.8" height="15.0" fill="rgb(223,122,2)" rx="2" ry="2" /> <text x="703.92" y="527.5" ></text> </g> <g > <title>X_ (37 samples, 24.34%)</title><rect x="235.1" y="997" width="287.3" height="15.0" fill="rgb(218,42,13)" rx="2" ry="2" /> <text x="238.13" y="1007.5" >X_</text> </g> <g > <title>xcb_wait_for_reply64 (1 samples, 0.66%)</title><rect x="1174.5" y="821" width="7.7" height="15.0" fill="rgb(234,149,14)" rx="2" ry="2" /> <text x="1177.47" y="831.5" ></text> </g> <g > <title>ext4_end_io_rsv_work (1 samples, 0.66%)</title><rect x="545.7" y="917" width="7.7" height="15.0" fill="rgb(223,51,12)" rx="2" ry="2" /> <text x="548.66" y="927.5" ></text> </g> <g > <title>eventToKeyButtonPointer (1 samples, 0.66%)</title><rect x="312.8" y="789" width="7.7" height="15.0" fill="rgb(215,73,9)" rx="2" ry="2" /> <text x="315.76" y="799.5" ></text> </g> <g > <title>glamor_upload_region (1 samples, 0.66%)</title><rect x="514.6" y="965" width="7.8" height="15.0" fill="rgb(220,80,10)" rx="2" ry="2" /> <text x="517.61" y="975.5" ></text> </g> <g > <title>arch_local_irq_restore (1 samples, 0.66%)</title><rect x="305.0" y="309" width="7.8" height="15.0" fill="rgb(246,174,1)" rx="2" ry="2" /> <text x="308.00" y="319.5" ></text> </g> </g> </svg>
View Attachment As Raw
Actions:
View
Attachments on
bug 42604
: 10669 |
10670