perf-avx512-1.8mrows.svg

application/octet-stream

Filename: perf-avx512-1.8mrows.svg
Type: application/octet-stream
Part: 0
Message: RE: Popcount optimization using AVX512
<?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="630" onload="init(evt)" viewBox="0 0 1200 630" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<!-- NOTES:  -->
<defs>
	<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
		<stop stop-color="#eeeeee" offset="5%" />
		<stop stop-color="#eeeeb0" offset="95%" />
	</linearGradient>
</defs>
<style type="text/css">
	text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
	#search, #ignorecase { opacity:0.1; cursor:pointer; }
	#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
	#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
	#title { text-anchor:middle; font-size:17px}
	#unzoom { cursor:pointer; }
	#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
	.hide { display:none; }
	.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
	"use strict";
	var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
	function init(evt) {
		details = document.getElementById("details").firstChild;
		searchbtn = document.getElementById("search");
		ignorecaseBtn = document.getElementById("ignorecase");
		unzoombtn = document.getElementById("unzoom");
		matchedtxt = document.getElementById("matched");
		svg = document.getElementsByTagName("svg")[0];
		searching = 0;
		currentSearchTerm = null;

		// use GET parameters to restore a flamegraphs state.
		var params = get_params();
		if (params.x && params.y)
			zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
                if (params.s) search(params.s);
	}

	// event listeners
	window.addEventListener("click", function(e) {
		var target = find_group(e.target);
		if (target) {
			if (target.nodeName == "a") {
				if (e.ctrlKey === false) return;
				e.preventDefault();
			}
			if (target.classList.contains("parent")) unzoom(true);
			zoom(target);
			if (!document.querySelector('.parent')) {
				// we have basically done a clearzoom so clear the url
				var params = get_params();
				if (params.x) delete params.x;
				if (params.y) delete params.y;
				history.replaceState(null, null, parse_params(params));
				unzoombtn.classList.add("hide");
				return;
			}

			// set parameters for zoom state
			var el = target.querySelector("rect");
			if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
				var params = get_params()
				params.x = el.attributes._orig_x.value;
				params.y = el.attributes.y.value;
				history.replaceState(null, null, parse_params(params));
			}
		}
		else if (e.target.id == "unzoom") clearzoom();
		else if (e.target.id == "search") search_prompt();
		else if (e.target.id == "ignorecase") toggle_ignorecase();
	}, false)

	// mouse-over for info
	// show
	window.addEventListener("mouseover", function(e) {
		var target = find_group(e.target);
		if (target) details.nodeValue = "Function: " + g_to_text(target);
	}, false)

	// clear
	window.addEventListener("mouseout", function(e) {
		var target = find_group(e.target);
		if (target) details.nodeValue = ' ';
	}, false)

	// ctrl-F for search
	// ctrl-I to toggle case-sensitive search
	window.addEventListener("keydown",function (e) {
		if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
			e.preventDefault();
			search_prompt();
		}
		else if (e.ctrlKey && e.keyCode === 73) {
			e.preventDefault();
			toggle_ignorecase();
		}
	}, false)

	// functions
	function get_params() {
		var params = {};
		var paramsarr = window.location.search.substr(1).split('&');
		for (var i = 0; i < paramsarr.length; ++i) {
			var tmp = paramsarr[i].split("=");
			if (!tmp[0] || !tmp[1]) continue;
			params[tmp[0]]  = decodeURIComponent(tmp[1]);
		}
		return params;
	}
	function parse_params(params) {
		var uri = "?";
		for (var key in params) {
			uri += key + '=' + encodeURIComponent(params[key]) + '&';
		}
		if (uri.slice(-1) == "&")
			uri = uri.substring(0, uri.length - 1);
		if (uri == '?')
			uri = window.location.href.split('?')[0];
		return uri;
	}
	function find_child(node, selector) {
		var children = node.querySelectorAll(selector);
		if (children.length) return children[0];
	}
	function find_group(node) {
		var parent = node.parentElement;
		if (!parent) return;
		if (parent.id == "frames") return node;
		return find_group(parent);
	}
	function orig_save(e, attr, val) {
		if (e.attributes["_orig_" + attr] != undefined) return;
		if (e.attributes[attr] == undefined) return;
		if (val == undefined) val = e.attributes[attr].value;
		e.setAttribute("_orig_" + attr, val);
	}
	function orig_load(e, attr) {
		if (e.attributes["_orig_"+attr] == undefined) return;
		e.attributes[attr].value = e.attributes["_orig_" + attr].value;
		e.removeAttribute("_orig_"+attr);
	}
	function g_to_text(e) {
		var text = find_child(e, "title").firstChild.nodeValue;
		return (text)
	}
	function g_to_func(e) {
		var func = g_to_text(e);
		// if there's any manipulation we want to do to the function
		// name before it's searched, do it here before returning.
		return (func);
	}
	function update_text(e) {
		var r = find_child(e, "rect");
		var t = find_child(e, "text");
		var w = parseFloat(r.attributes.width.value) -3;
		var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
		t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;

		// Smaller than this size won't fit anything
		if (w < 2 * 12 * 0.59) {
			t.textContent = "";
			return;
		}

		t.textContent = txt;
		var sl = t.getSubStringLength(0, txt.length);
		// check if only whitespace or if we can fit the entire string into width w
		if (/^ *$/.test(txt) || sl < w)
			return;

		// this isn't perfect, but gives a good starting point
		// and avoids calling getSubStringLength too often
		var start = Math.floor((w/sl) * txt.length);
		for (var x = start; x > 0; x = x-2) {
			if (t.getSubStringLength(0, x + 2) <= w) {
				t.textContent = txt.substring(0, x) + "..";
				return;
			}
		}
		t.textContent = "";
	}

	// zoom
	function zoom_reset(e) {
		if (e.attributes != undefined) {
			orig_load(e, "x");
			orig_load(e, "width");
		}
		if (e.childNodes == undefined) return;
		for (var i = 0, c = e.childNodes; i < c.length; i++) {
			zoom_reset(c[i]);
		}
	}
	function zoom_child(e, x, ratio) {
		if (e.attributes != undefined) {
			if (e.attributes.x != undefined) {
				orig_save(e, "x");
				e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
				if (e.tagName == "text")
					e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
			}
			if (e.attributes.width != undefined) {
				orig_save(e, "width");
				e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
			}
		}

		if (e.childNodes == undefined) return;
		for (var i = 0, c = e.childNodes; i < c.length; i++) {
			zoom_child(c[i], x - 10, ratio);
		}
	}
	function zoom_parent(e) {
		if (e.attributes) {
			if (e.attributes.x != undefined) {
				orig_save(e, "x");
				e.attributes.x.value = 10;
			}
			if (e.attributes.width != undefined) {
				orig_save(e, "width");
				e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
			}
		}
		if (e.childNodes == undefined) return;
		for (var i = 0, c = e.childNodes; i < c.length; i++) {
			zoom_parent(c[i]);
		}
	}
	function zoom(node) {
		var attr = find_child(node, "rect").attributes;
		var width = parseFloat(attr.width.value);
		var xmin = parseFloat(attr.x.value);
		var xmax = parseFloat(xmin + width);
		var ymin = parseFloat(attr.y.value);
		var ratio = (svg.width.baseVal.value - 2 * 10) / width;

		// XXX: Workaround for JavaScript float issues (fix me)
		var fudge = 0.0001;

		unzoombtn.classList.remove("hide");

		var el = document.getElementById("frames").children;
		for (var i = 0; i < el.length; i++) {
			var e = el[i];
			var a = find_child(e, "rect").attributes;
			var ex = parseFloat(a.x.value);
			var ew = parseFloat(a.width.value);
			var upstack;
			// Is it an ancestor
			if (0 == 0) {
				upstack = parseFloat(a.y.value) > ymin;
			} else {
				upstack = parseFloat(a.y.value) < ymin;
			}
			if (upstack) {
				// Direct ancestor
				if (ex <= xmin && (ex+ew+fudge) >= xmax) {
					e.classList.add("parent");
					zoom_parent(e);
					update_text(e);
				}
				// not in current path
				else
					e.classList.add("hide");
			}
			// Children maybe
			else {
				// no common path
				if (ex < xmin || ex + fudge >= xmax) {
					e.classList.add("hide");
				}
				else {
					zoom_child(e, xmin, ratio);
					update_text(e);
				}
			}
		}
		search();
	}
	function unzoom(dont_update_text) {
		unzoombtn.classList.add("hide");
		var el = document.getElementById("frames").children;
		for(var i = 0; i < el.length; i++) {
			el[i].classList.remove("parent");
			el[i].classList.remove("hide");
			zoom_reset(el[i]);
			if(!dont_update_text) update_text(el[i]);
		}
		search();
	}
	function clearzoom() {
		unzoom();

		// remove zoom state
		var params = get_params();
		if (params.x) delete params.x;
		if (params.y) delete params.y;
		history.replaceState(null, null, parse_params(params));
	}

	// search
	function toggle_ignorecase() {
		ignorecase = !ignorecase;
		if (ignorecase) {
			ignorecaseBtn.classList.add("show");
		} else {
			ignorecaseBtn.classList.remove("show");
		}
		reset_search();
		search();
	}
	function reset_search() {
		var el = document.querySelectorAll("#frames rect");
		for (var i = 0; i < el.length; i++) {
			orig_load(el[i], "fill")
		}
		var params = get_params();
		delete params.s;
		history.replaceState(null, null, parse_params(params));
	}
	function search_prompt() {
		if (!searching) {
			var term = prompt("Enter a search term (regexp " +
			    "allowed, eg: ^ext4_)"
			    + (ignorecase ? ", ignoring case" : "")
			    + "\nPress Ctrl-i to toggle case sensitivity", "");
			if (term != null) search(term);
		} else {
			reset_search();
			searching = 0;
			currentSearchTerm = null;
			searchbtn.classList.remove("show");
			searchbtn.firstChild.nodeValue = "Search"
			matchedtxt.classList.add("hide");
			matchedtxt.firstChild.nodeValue = ""
		}
	}
	function search(term) {
		if (term) currentSearchTerm = term;

		var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');
		var el = document.getElementById("frames").children;
		var matches = new Object();
		var maxwidth = 0;
		for (var i = 0; i < el.length; i++) {
			var e = el[i];
			var func = g_to_func(e);
			var rect = find_child(e, "rect");
			if (func == null || rect == null)
				continue;

			// Save max width. Only works as we have a root frame
			var w = parseFloat(rect.attributes.width.value);
			if (w > maxwidth)
				maxwidth = w;

			if (func.match(re)) {
				// highlight
				var x = parseFloat(rect.attributes.x.value);
				orig_save(rect, "fill");
				rect.attributes.fill.value = "rgb(230,0,230)";

				// remember matches
				if (matches[x] == undefined) {
					matches[x] = w;
				} else {
					if (w > matches[x]) {
						// overwrite with parent
						matches[x] = w;
					}
				}
				searching = 1;
			}
		}
		if (!searching)
			return;
		var params = get_params();
		params.s = currentSearchTerm;
		history.replaceState(null, null, parse_params(params));

		searchbtn.classList.add("show");
		searchbtn.firstChild.nodeValue = "Reset Search";

		// calculate percent matched, excluding vertical overlap
		var count = 0;
		var lastx = -1;
		var lastw = 0;
		var keys = Array();
		for (k in matches) {
			if (matches.hasOwnProperty(k))
				keys.push(k);
		}
		// sort the matched frames by their x location
		// ascending, then width descending
		keys.sort(function(a, b){
			return a - b;
		});
		// Step through frames saving only the biggest bottom-up frames
		// thanks to the sort order. This relies on the tree property
		// where children are always smaller than their parents.
		var fudge = 0.0001;	// JavaScript floating point
		for (var k in keys) {
			var x = parseFloat(keys[k]);
			var w = matches[keys[k]];
			if (x >= lastx + lastw - fudge) {
				count += w;
				lastx = x;
				lastw = w;
			}
		}
		// display matched percent
		matchedtxt.classList.remove("hide");
		var pct = 100 * count / maxwidth;
		if (pct != 100) pct = pct.toFixed(1)
		matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
	}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="630.0" fill="url(#background)"  />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="613" > </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="613" > </text>
<g id="frames">
<g >
<title>__schedule (9,672,160 samples, 0.08%)</title><rect x="64.4" y="277" width="0.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="67.37" y="287.5" ></text>
</g>
<g >
<title>GetPrivateRefCountEntry (22,101,907 samples, 0.18%)</title><rect x="108.4" y="549" width="2.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="111.40" y="559.5" ></text>
</g>
<g >
<title>charge_memcg (50,332,377 samples, 0.40%)</title><rect x="339.1" y="293" width="4.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="342.10" y="303.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3,796,401 samples, 0.03%)</title><rect x="952.3" y="293" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="955.25" y="303.5" ></text>
</g>
<g >
<title>handle_pte_fault (10,417,895 samples, 0.08%)</title><rect x="951.8" y="325" width="1.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="954.83" y="335.5" ></text>
</g>
<g >
<title>check_cpu_stall (14,327,766 samples, 0.11%)</title><rect x="860.9" y="405" width="1.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="863.94" y="415.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (68,734,431 samples, 0.55%)</title><rect x="352.9" y="213" width="6.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="355.89" y="223.5" ></text>
</g>
<g >
<title>AllocSetReset (100,491,196 samples, 0.80%)</title><rect x="133.2" y="533" width="9.4" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="136.16" y="543.5" ></text>
</g>
<g >
<title>_find_next_bit (2,340,299 samples, 0.02%)</title><rect x="1171.1" y="453" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1174.06" y="463.5" ></text>
</g>
<g >
<title>rmqueue_bulk (15,939,478 samples, 0.13%)</title><rect x="284.9" y="261" width="1.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="287.90" y="271.5" ></text>
</g>
<g >
<title>enlargeStringInfo (16,372,638 samples, 0.13%)</title><rect x="211.9" y="517" width="1.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="214.91" y="527.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (2,260,540 samples, 0.02%)</title><rect x="1167.6" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1170.59" y="415.5" ></text>
</g>
<g >
<title>pick_next_task (4,187,609 samples, 0.03%)</title><rect x="961.5" y="277" width="0.4" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text  x="964.53" y="287.5" ></text>
</g>
<g >
<title>lru_cache_add_inactive_or_unevictable (1,941,267 samples, 0.02%)</title><rect x="973.1" y="421" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="976.12" y="431.5" ></text>
</g>
<g >
<title>pg_ulltoa_n.part.0 (48,555,551 samples, 0.39%)</title><rect x="877.9" y="549" width="4.6" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text  x="880.89" y="559.5" ></text>
</g>
<g >
<title>sbitmap_get_shallow (75,817,615 samples, 0.61%)</title><rect x="22.1" y="213" width="7.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="25.07" y="223.5" ></text>
</g>
<g >
<title>ext4_readahead (102,458,952 samples, 0.82%)</title><rect x="361.0" y="325" width="9.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="364.02" y="335.5" ></text>
</g>
<g >
<title>handle_irq_event (142,531,340 samples, 1.14%)</title><rect x="984.9" y="373" width="13.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="987.88" y="383.5" ></text>
</g>
<g >
<title>LockBufHdr (70,623,215 samples, 0.56%)</title><rect x="114.0" y="549" width="6.6" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="116.97" y="559.5" ></text>
</g>
<g >
<title>perf_event_ctx_lock_nested.constprop.0 (3,448,477 samples, 0.03%)</title><rect x="60.6" y="389" width="0.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="63.59" y="399.5" ></text>
</g>
<g >
<title>refill_obj_stock (1,696,849 samples, 0.01%)</title><rect x="956.4" y="197" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="959.41" y="207.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (14,327,766 samples, 0.11%)</title><rect x="860.9" y="469" width="1.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="863.94" y="479.5" ></text>
</g>
<g >
<title>tick_sched_timer (2,114,728 samples, 0.02%)</title><rect x="963.5" y="229" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="966.46" y="239.5" ></text>
</g>
<g >
<title>handle_mm_fault (13,620,363 samples, 0.11%)</title><rect x="951.7" y="357" width="1.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="954.69" y="367.5" ></text>
</g>
<g >
<title>kfree (13,737,732 samples, 0.11%)</title><rect x="955.3" y="245" width="1.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="958.28" y="255.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (9,107,583 samples, 0.07%)</title><rect x="963.2" y="357" width="0.9" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="966.24" y="367.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (4,504,858 samples, 0.04%)</title><rect x="971.9" y="405" width="0.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="974.93" y="415.5" ></text>
</g>
<g >
<title>cap_vm_enough_memory (2,761,236 samples, 0.02%)</title><rect x="940.7" y="437" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="943.67" y="447.5" ></text>
</g>
<g >
<title>tick_sched_handle (4,782,572 samples, 0.04%)</title><rect x="1016.1" y="341" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1019.08" y="351.5" ></text>
</g>
<g >
<title>__schedule (15,695,981 samples, 0.13%)</title><rect x="265.2" y="325" width="1.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="268.18" y="335.5" ></text>
</g>
<g >
<title>io_schedule (15,695,981 samples, 0.13%)</title><rect x="265.2" y="357" width="1.5" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="268.18" y="367.5" ></text>
</g>
<g >
<title>cpuidle_governor_latency_req (1,685,403 samples, 0.01%)</title><rect x="1155.4" y="453" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1158.37" y="463.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (68,734,431 samples, 0.55%)</title><rect x="352.9" y="261" width="6.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="355.89" y="271.5" ></text>
</g>
<g >
<title>add_wait_queue (85,633,946 samples, 0.68%)</title><rect x="82.8" y="405" width="8.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="85.85" y="415.5" ></text>
</g>
<g >
<title>schedule (15,695,981 samples, 0.13%)</title><rect x="265.2" y="341" width="1.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="268.18" y="351.5" ></text>
</g>
<g >
<title>do_filp_open (80,096,276 samples, 0.64%)</title><rect x="44.5" y="341" width="7.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="47.50" y="351.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,740,097 samples, 0.01%)</title><rect x="952.8" y="309" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="955.81" y="319.5" ></text>
</g>
<g >
<title>get_cpu_device (17,425,313 samples, 0.14%)</title><rect x="1157.6" y="437" width="1.6" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="1160.55" y="447.5" ></text>
</g>
<g >
<title>refill_stock (1,696,849 samples, 0.01%)</title><rect x="956.4" y="165" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="959.41" y="175.5" ></text>
</g>
<g >
<title>__alloc_pages (6,060,947 samples, 0.05%)</title><rect x="972.4" y="405" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="975.36" y="415.5" ></text>
</g>
<g >
<title>acpi_ps_parse_loop (2,175,907 samples, 0.02%)</title><rect x="17.1" y="405" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="20.06" y="415.5" ></text>
</g>
<g >
<title>socket_putmessage (21,088,342 samples, 0.17%)</title><rect x="216.9" y="517" width="2.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="219.87" y="527.5" ></text>
</g>
<g >
<title>vfs_read (1,624,972,568 samples, 12.99%)</title><rect x="225.7" y="485" width="153.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="228.75" y="495.5" >vfs_read</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (29,021,961 samples, 0.23%)</title><rect x="1013.8" y="405" width="2.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1016.80" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_brk (2,761,236 samples, 0.02%)</title><rect x="940.7" y="485" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="943.67" y="495.5" ></text>
</g>
<g >
<title>kworker/17:0-ev (50,929,006 samples, 0.41%)</title><rect x="17.3" y="565" width="4.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="20.27" y="575.5" ></text>
</g>
<g >
<title>igb_update_stats (50,929,006 samples, 0.41%)</title><rect x="17.3" y="469" width="4.8" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="20.27" y="479.5" ></text>
</g>
<g >
<title>__brk (2,761,236 samples, 0.02%)</title><rect x="940.7" y="533" width="0.2" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text  x="943.67" y="543.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (1,516,675 samples, 0.01%)</title><rect x="59.1" y="229" width="0.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="62.07" y="239.5" ></text>
</g>
<g >
<title>sched_clock (2,035,496 samples, 0.02%)</title><rect x="1170.6" y="405" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1173.60" y="415.5" ></text>
</g>
<g >
<title>update_rq_clock (2,035,496 samples, 0.02%)</title><rect x="1170.6" y="437" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="1173.60" y="447.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,060,947 samples, 0.05%)</title><rect x="972.4" y="389" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="975.36" y="399.5" ></text>
</g>
<g >
<title>mark_page_accessed (50,502,001 samples, 0.40%)</title><rect x="374.3" y="405" width="4.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="377.26" y="415.5" ></text>
</g>
<g >
<title>rb_insert_color (73,555,326 samples, 0.59%)</title><rect x="1176.1" y="405" width="6.9" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="1179.05" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (1,936,357 samples, 0.02%)</title><rect x="952.3" y="245" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="955.25" y="255.5" ></text>
</g>
<g >
<title>irq_enter_rcu (2,848,025 samples, 0.02%)</title><rect x="1016.5" y="405" width="0.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1019.54" y="415.5" ></text>
</g>
<g >
<title>__handle_mm_fault (88,590,590 samples, 0.71%)</title><rect x="964.9" y="469" width="8.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="967.94" y="479.5" ></text>
</g>
<g >
<title>kthread (149,182,557 samples, 1.19%)</title><rect x="29.2" y="533" width="14.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="32.22" y="543.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (40,619,376 samples, 0.32%)</title><rect x="954.4" y="325" width="3.8" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="957.38" y="335.5" ></text>
</g>
<g >
<title>acpi_ps_get_arguments.constprop.0 (2,175,907 samples, 0.02%)</title><rect x="17.1" y="389" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="20.06" y="399.5" ></text>
</g>
<g >
<title>menu_reflect (70,582,791 samples, 0.56%)</title><rect x="1160.9" y="469" width="6.7" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="1163.93" y="479.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.0 (4,846,991 samples, 0.04%)</title><rect x="1175.6" y="437" width="0.5" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text  x="1178.59" y="447.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (90,071,905 samples, 0.72%)</title><rect x="1020.3" y="293" width="8.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="1023.28" y="303.5" ></text>
</g>
<g >
<title>printtup (20,605,975 samples, 0.16%)</title><rect x="214.9" y="517" width="2.0" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="217.93" y="527.5" ></text>
</g>
<g >
<title>__writeback_single_inode (75,817,615 samples, 0.61%)</title><rect x="22.1" y="405" width="7.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="25.07" y="415.5" ></text>
</g>
<g >
<title>__libc_start_call_main (247,517,398 samples, 1.98%)</title><rect x="940.9" y="549" width="23.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="943.93" y="559.5" >_..</text>
</g>
<g >
<title>do_sys_poll (180,905,682 samples, 1.45%)</title><rect x="73.9" y="469" width="17.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="76.86" y="479.5" ></text>
</g>
<g >
<title>ret_from_fork (75,817,615 samples, 0.61%)</title><rect x="22.1" y="549" width="7.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="25.07" y="559.5" ></text>
</g>
<g >
<title>page_mkclean (73,212,495 samples, 0.59%)</title><rect x="36.4" y="293" width="6.9" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="39.39" y="303.5" ></text>
</g>
<g >
<title>acpi_ev_asynch_execute_gpe_method (2,175,907 samples, 0.02%)</title><rect x="17.1" y="469" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text  x="20.06" y="479.5" ></text>
</g>
<g >
<title>MemoryContextReset (16,407,870 samples, 0.13%)</title><rect x="208.3" y="517" width="1.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="211.32" y="527.5" ></text>
</g>
<g >
<title>kthread (2,175,907 samples, 0.02%)</title><rect x="17.1" y="533" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="20.06" y="543.5" ></text>
</g>
<g >
<title>evlist__prepare_workload (80,096,276 samples, 0.64%)</title><rect x="44.5" y="485" width="7.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="47.50" y="495.5" ></text>
</g>
<g >
<title>__run_timers.part.0 (90,071,905 samples, 0.72%)</title><rect x="1020.3" y="357" width="8.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1023.28" y="367.5" ></text>
</g>
<g >
<title>do_writepages (75,817,615 samples, 0.61%)</title><rect x="22.1" y="389" width="7.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="25.07" y="399.5" ></text>
</g>
<g >
<title>__pagevec_lru_add_fn (32,459,806 samples, 0.26%)</title><rect x="346.9" y="293" width="3.1" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="349.94" y="303.5" ></text>
</g>
<g >
<title>mem_cgroup_update_lru_size (14,675,485 samples, 0.12%)</title><rect x="346.9" y="277" width="1.4" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="349.94" y="287.5" ></text>
</g>
<g >
<title>xas_find_conflict (16,991,406 samples, 0.14%)</title><rect x="345.3" y="309" width="1.6" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="348.34" y="319.5" ></text>
</g>
<g >
<title>_find_next_bit (74,888,722 samples, 0.60%)</title><rect x="10.0" y="373" width="7.1" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="13.00" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,624,972,568 samples, 12.99%)</title><rect x="225.7" y="533" width="153.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="228.75" y="543.5" >entry_SYSCALL_64_af..</text>
</g>
<g >
<title>tick_sched_timer (4,782,572 samples, 0.04%)</title><rect x="1016.1" y="357" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1019.08" y="367.5" ></text>
</g>
<g >
<title>alloc_cpumask_var (1,129,027 samples, 0.01%)</title><rect x="65.3" y="405" width="0.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="68.28" y="415.5" ></text>
</g>
<g >
<title>get_next_timer_interrupt (18,391,962 samples, 0.15%)</title><rect x="1159.2" y="405" width="1.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1162.20" y="415.5" ></text>
</g>
<g >
<title>kworker/0:1-eve (2,175,907 samples, 0.02%)</title><rect x="17.1" y="565" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="20.06" y="575.5" ></text>
</g>
<g >
<title>show_interrupts (74,888,722 samples, 0.60%)</title><rect x="10.0" y="389" width="7.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="13.00" y="399.5" ></text>
</g>
<g >
<title>__remove_hrtimer (4,846,991 samples, 0.04%)</title><rect x="1175.6" y="421" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1178.59" y="431.5" ></text>
</g>
<g >
<title>consume_skb (29,760,980 samples, 0.24%)</title><rect x="954.4" y="293" width="2.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="957.38" y="303.5" ></text>
</g>
<g >
<title>do_idle (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="437" width="6.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1186.23" y="447.5" ></text>
</g>
<g >
<title>sockfd_lookup_light (1,971,543 samples, 0.02%)</title><rect x="958.2" y="341" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="961.22" y="351.5" ></text>
</g>
<g >
<title>blk_flush_plug_list (68,734,431 samples, 0.55%)</title><rect x="352.9" y="309" width="6.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="355.89" y="319.5" ></text>
</g>
<g >
<title>[unknown] (954,625,795 samples, 7.63%)</title><rect x="128.8" y="549" width="90.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="131.81" y="559.5" >[unknown]</text>
</g>
<g >
<title>ext4_mpage_readpages (102,458,952 samples, 0.82%)</title><rect x="361.0" y="309" width="9.7" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="364.02" y="319.5" ></text>
</g>
<g >
<title>__fget_files (1,079,001 samples, 0.01%)</title><rect x="52.2" y="373" width="0.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="55.24" y="383.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (2,028,853 samples, 0.02%)</title><rect x="973.3" y="469" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="976.30" y="479.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (1,624,972,568 samples, 12.99%)</title><rect x="225.7" y="501" width="153.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="228.75" y="511.5" >__x64_sys_pread64</text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (68,734,431 samples, 0.55%)</title><rect x="352.9" y="149" width="6.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="355.89" y="159.5" ></text>
</g>
<g >
<title>get_page_from_freelist (86,401,947 samples, 0.69%)</title><rect x="278.3" y="293" width="8.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="281.25" y="303.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (10,858,396 samples, 0.09%)</title><rect x="957.2" y="261" width="1.0" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="960.19" y="271.5" ></text>
</g>
<g >
<title>ctx_resched (18,803,291 samples, 0.15%)</title><rect x="58.5" y="245" width="1.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="61.53" y="255.5" ></text>
</g>
<g >
<title>enqueue_entity (6,006,388 samples, 0.05%)</title><rect x="1169.8" y="389" width="0.6" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="1172.84" y="399.5" ></text>
</g>
<g >
<title>blk_complete_reqs (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="357" width="7.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1009.64" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (50,789,831 samples, 0.41%)</title><rect x="953.9" y="405" width="4.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="956.85" y="415.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (31,667,067 samples, 0.25%)</title><rect x="354.7" y="101" width="3.0" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="357.74" y="111.5" ></text>
</g>
<g >
<title>load_balance (36,794,615 samples, 0.29%)</title><rect x="1016.8" y="325" width="3.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1019.80" y="335.5" ></text>
</g>
<g >
<title>try_charge_memcg (16,552,524 samples, 0.13%)</title><rect x="342.3" y="277" width="1.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="345.29" y="287.5" ></text>
</g>
<g >
<title>default_wake_function (20,967,575 samples, 0.17%)</title><rect x="387.8" y="357" width="2.0" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="390.78" y="367.5" ></text>
</g>
<g >
<title>cmd_record (80,096,276 samples, 0.64%)</title><rect x="44.5" y="501" width="7.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="47.50" y="511.5" ></text>
</g>
<g >
<title>blkdev_writepages (75,970,062 samples, 0.61%)</title><rect x="29.2" y="373" width="7.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="32.22" y="383.5" ></text>
</g>
<g >
<title>uncharge_batch (1,477,863 samples, 0.01%)</title><rect x="954.8" y="213" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="957.83" y="223.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_statistics.constprop.0 (14,249,616 samples, 0.11%)</title><rect x="340.9" y="277" width="1.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="343.94" y="287.5" ></text>
</g>
<g >
<title>ext4_writepages (75,817,615 samples, 0.61%)</title><rect x="22.1" y="373" width="7.1" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="25.07" y="383.5" ></text>
</g>
<g >
<title>__libc_recv (50,789,831 samples, 0.41%)</title><rect x="953.9" y="421" width="4.7" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="956.85" y="431.5" ></text>
</g>
<g >
<title>__x64_sys_poll (145,676,058 samples, 1.16%)</title><rect x="90.9" y="469" width="13.8" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="93.92" y="479.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (142,531,340 samples, 1.14%)</title><rect x="984.9" y="357" width="13.4" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text  x="987.88" y="367.5" ></text>
</g>
<g >
<title>wake_up_q (11,868,689 samples, 0.09%)</title><rect x="63.2" y="293" width="1.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="66.25" y="303.5" ></text>
</g>
<g >
<title>hash_bytes (36,976,677 samples, 0.30%)</title><rect x="862.3" y="549" width="3.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="865.29" y="559.5" ></text>
</g>
<g >
<title>nr_iowait_cpu (2,848,025 samples, 0.02%)</title><rect x="1016.5" y="373" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1019.54" y="383.5" ></text>
</g>
<g >
<title>pg_popcount (284,744,022 samples, 2.28%)</title><rect x="159.5" y="517" width="26.9" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="162.51" y="527.5" >p..</text>
</g>
<g >
<title>acpi_ps_get_next_arg (2,175,907 samples, 0.02%)</title><rect x="17.1" y="373" width="0.2" height="15.0" fill="rgb(241,167,39)" rx="2" ry="2" />
<text  x="20.06" y="383.5" ></text>
</g>
<g >
<title>mpage_process_page_bufs (73,212,495 samples, 0.59%)</title><rect x="36.4" y="341" width="6.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="39.39" y="351.5" ></text>
</g>
<g >
<title>cpu_startup_entry (2,217,817,685 samples, 17.73%)</title><rect x="974.0" y="517" width="209.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="977.03" y="527.5" >cpu_startup_entry</text>
</g>
<g >
<title>main (231,117,119 samples, 1.85%)</title><rect x="52.1" y="533" width="21.8" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="55.06" y="543.5" >m..</text>
</g>
<g >
<title>lock_page_lruvec_irqsave (15,514,257 samples, 0.12%)</title><rect x="350.0" y="293" width="1.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="353.00" y="303.5" ></text>
</g>
<g >
<title>cmd_record (231,117,119 samples, 1.85%)</title><rect x="52.1" y="501" width="21.8" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="55.06" y="511.5" >c..</text>
</g>
<g >
<title>sg_pool_alloc (17,372,145 samples, 0.14%)</title><rect x="357.7" y="37" width="1.7" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="360.73" y="47.5" ></text>
</g>
<g >
<title>ondemand_readahead (1,140,737,731 samples, 9.12%)</title><rect x="266.7" y="373" width="107.6" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="269.66" y="383.5" >ondemand_read..</text>
</g>
<g >
<title>do_syscall_64 (26,594,942 samples, 0.21%)</title><rect x="63.0" y="421" width="2.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="66.03" y="431.5" ></text>
</g>
<g >
<title>alloc_cpumask_var_node (1,146,988 samples, 0.01%)</title><rect x="63.1" y="373" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="66.14" y="383.5" ></text>
</g>
<g >
<title>main (80,096,276 samples, 0.64%)</title><rect x="44.5" y="533" width="7.6" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="47.50" y="543.5" ></text>
</g>
<g >
<title>submit_bio (31,205,561 samples, 0.25%)</title><rect x="366.4" y="293" width="3.0" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="369.42" y="303.5" ></text>
</g>
<g >
<title>__fget_light (6,089,936 samples, 0.05%)</title><rect x="960.1" y="341" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="963.06" y="351.5" ></text>
</g>
<g >
<title>all (12,509,618,880 samples, 100%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text  x="13.00" y="591.5" ></text>
</g>
<g >
<title>irq_exit_rcu (15,968,797 samples, 0.13%)</title><rect x="932.8" y="501" width="1.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="935.79" y="511.5" ></text>
</g>
<g >
<title>[unknown] (427,847,396 samples, 3.42%)</title><rect x="152.2" y="533" width="40.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="155.22" y="543.5" >[un..</text>
</g>
<g >
<title>ata_qc_complete (65,672,873 samples, 0.52%)</title><rect x="992.1" y="277" width="6.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="995.13" y="287.5" ></text>
</g>
<g >
<title>[postgres] (14,280,423 samples, 0.11%)</title><rect x="150.9" y="533" width="1.3" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="153.88" y="543.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (16,883,997 samples, 0.13%)</title><rect x="356.1" y="69" width="1.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="359.14" y="79.5" ></text>
</g>
<g >
<title>enlargeStringInfo (46,688,075 samples, 0.37%)</title><rect x="155.1" y="517" width="4.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="158.11" y="527.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (14,792,943 samples, 0.12%)</title><rect x="158.1" y="453" width="1.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="161.12" y="463.5" ></text>
</g>
<g >
<title>__schedule (1,812,237 samples, 0.01%)</title><rect x="960.6" y="309" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="963.64" y="319.5" ></text>
</g>
<g >
<title>perf_event_task_tick (4,782,572 samples, 0.04%)</title><rect x="1016.1" y="293" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1019.08" y="303.5" ></text>
</g>
<g >
<title>_nohz_idle_balance.constprop.0.isra.0 (36,794,615 samples, 0.29%)</title><rect x="1016.8" y="357" width="3.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1019.80" y="367.5" ></text>
</g>
<g >
<title>scheduler_tick (14,792,943 samples, 0.12%)</title><rect x="158.1" y="373" width="1.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="161.12" y="383.5" ></text>
</g>
<g >
<title>account_system_index_time (2,114,728 samples, 0.02%)</title><rect x="963.5" y="149" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text  x="966.46" y="159.5" ></text>
</g>
<g >
<title>kworker/u290:0- (75,817,615 samples, 0.61%)</title><rect x="22.1" y="565" width="7.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="25.07" y="575.5" ></text>
</g>
<g >
<title>tick_sched_handle (14,327,766 samples, 0.11%)</title><rect x="860.9" y="437" width="1.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="863.94" y="447.5" ></text>
</g>
<g >
<title>poll_freewait (70,722,188 samples, 0.57%)</title><rect x="98.0" y="437" width="6.7" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="100.99" y="447.5" ></text>
</g>
<g >
<title>__alloc_pages (1,936,357 samples, 0.02%)</title><rect x="952.3" y="277" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="955.25" y="287.5" ></text>
</g>
<g >
<title>__writeback_single_inode (149,182,557 samples, 1.19%)</title><rect x="29.2" y="405" width="14.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="32.22" y="415.5" ></text>
</g>
<g >
<title>alloc_pages (102,668,270 samples, 0.82%)</title><rect x="276.7" y="325" width="9.7" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="279.72" y="335.5" ></text>
</g>
<g >
<title>perf-exec (80,096,276 samples, 0.64%)</title><rect x="44.5" y="565" width="7.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="47.50" y="575.5" ></text>
</g>
<g >
<title>start_secondary (2,217,817,685 samples, 17.73%)</title><rect x="974.0" y="533" width="209.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="977.03" y="543.5" >start_secondary</text>
</g>
<g >
<title>perf (557,698,859 samples, 4.46%)</title><rect x="52.1" y="565" width="52.6" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="55.06" y="575.5" >perf</text>
</g>
<g >
<title>lapic_next_deadline (2,639,585 samples, 0.02%)</title><rect x="1167.8" y="373" width="0.3" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="1170.80" y="383.5" ></text>
</g>
<g >
<title>__submit_bio (75,817,615 samples, 0.61%)</title><rect x="22.1" y="309" width="7.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="25.07" y="319.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (14,327,766 samples, 0.11%)</title><rect x="860.9" y="485" width="1.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="863.94" y="495.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (14,327,766 samples, 0.11%)</title><rect x="860.9" y="501" width="1.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="863.94" y="511.5" ></text>
</g>
<g >
<title>import_single_range (2,566,281 samples, 0.02%)</title><rect x="958.4" y="357" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="961.40" y="367.5" ></text>
</g>
<g >
<title>__wake_up_common_lock (20,967,575 samples, 0.17%)</title><rect x="387.8" y="405" width="2.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="390.78" y="415.5" ></text>
</g>
<g >
<title>__blk_mq_get_tag (75,817,615 samples, 0.61%)</title><rect x="22.1" y="245" width="7.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="25.07" y="255.5" ></text>
</g>
<g >
<title>hrtimer_get_next_event (18,391,962 samples, 0.15%)</title><rect x="1159.2" y="389" width="1.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="1162.20" y="399.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (33,456,606 samples, 0.27%)</title><rect x="959.9" y="357" width="3.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="962.86" y="367.5" ></text>
</g>
<g >
<title>bio_put (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="213" width="7.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1009.64" y="223.5" ></text>
</g>
<g >
<title>__pagevec_lru_add (47,974,063 samples, 0.38%)</title><rect x="346.9" y="309" width="4.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="349.94" y="319.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (18,179,140 samples, 0.15%)</title><rect x="960.6" y="341" width="1.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="963.64" y="351.5" ></text>
</g>
<g >
<title>do_writepages (149,182,557 samples, 1.19%)</title><rect x="29.2" y="389" width="14.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="32.22" y="399.5" ></text>
</g>
<g >
<title>hrtimer_update_next_event (2,900,536 samples, 0.02%)</title><rect x="1175.6" y="405" width="0.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1178.59" y="415.5" ></text>
</g>
<g >
<title>drain_stock (1,696,849 samples, 0.01%)</title><rect x="956.4" y="149" width="0.2" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="959.41" y="159.5" ></text>
</g>
<g >
<title>cpumask_next_wrap (1,938,542 samples, 0.02%)</title><rect x="1171.4" y="453" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="1174.45" y="463.5" ></text>
</g>
<g >
<title>task_tick_fair (14,792,943 samples, 0.12%)</title><rect x="158.1" y="357" width="1.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="161.12" y="367.5" ></text>
</g>
<g >
<title>ahci_handle_port_intr (65,672,873 samples, 0.52%)</title><rect x="992.1" y="325" width="6.2" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="995.13" y="335.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (39,610,138 samples, 0.32%)</title><rect x="104.7" y="549" width="3.7" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="107.66" y="559.5" ></text>
</g>
<g >
<title>__GI___execve (80,096,276 samples, 0.64%)</title><rect x="44.5" y="469" width="7.6" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="47.50" y="479.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath.part.0 (90,071,905 samples, 0.72%)</title><rect x="1020.3" y="277" width="8.5" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="1023.28" y="287.5" ></text>
</g>
<g >
<title>cpuidle_enter_state (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="389" width="6.8" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="1186.23" y="399.5" ></text>
</g>
<g >
<title>blk_done_softirq (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="373" width="7.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1009.64" y="383.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="325" width="6.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1186.23" y="335.5" ></text>
</g>
<g >
<title>ksys_read (74,888,722 samples, 0.60%)</title><rect x="10.0" y="469" width="7.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="13.00" y="479.5" ></text>
</g>
<g >
<title>rebalance_domains (36,794,615 samples, 0.29%)</title><rect x="1016.8" y="341" width="3.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1019.80" y="351.5" ></text>
</g>
<g >
<title>run_rebalance_domains (36,794,615 samples, 0.29%)</title><rect x="1016.8" y="373" width="3.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1019.80" y="383.5" ></text>
</g>
<g >
<title>__blk_mq_delay_run_hw_queue (68,734,431 samples, 0.55%)</title><rect x="352.9" y="245" width="6.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="355.89" y="255.5" ></text>
</g>
<g >
<title>wb_writeback (149,182,557 samples, 1.19%)</title><rect x="29.2" y="453" width="14.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="32.22" y="463.5" ></text>
</g>
<g >
<title>pick_next_task_idle (2,662,771 samples, 0.02%)</title><rect x="961.7" y="261" width="0.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="964.68" y="271.5" ></text>
</g>
<g >
<title>mem_cgroup_from_task (1,740,097 samples, 0.01%)</title><rect x="952.8" y="341" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="955.81" y="351.5" ></text>
</g>
<g >
<title>secondary_startup_64_no_verify (2,289,611,318 samples, 18.30%)</title><rect x="974.0" y="549" width="216.0" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="977.03" y="559.5" >secondary_startup_64_no_verify</text>
</g>
<g >
<title>prepare_task_switch (9,672,160 samples, 0.08%)</title><rect x="64.4" y="261" width="0.9" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="67.37" y="271.5" ></text>
</g>
<g >
<title>sync_regs (3,981,383 samples, 0.03%)</title><rect x="973.5" y="533" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="976.49" y="543.5" ></text>
</g>
<g >
<title>__x64_sys_ioctl (93,981,159 samples, 0.75%)</title><rect x="52.1" y="421" width="8.9" height="15.0" fill="rgb(249,204,49)" rx="2" ry="2" />
<text  x="55.13" y="431.5" ></text>
</g>
<g >
<title>pglz_decompress (549,423,665 samples, 4.39%)</title><rect x="882.5" y="549" width="51.8" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="885.47" y="559.5" >pglz_..</text>
</g>
<g >
<title>__common_interrupt (230,629,896 samples, 1.84%)</title><rect x="984.9" y="405" width="21.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="987.88" y="415.5" >_..</text>
</g>
<g >
<title>hrtimer_cancel (4,846,991 samples, 0.04%)</title><rect x="1175.6" y="453" width="0.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1178.59" y="463.5" ></text>
</g>
<g >
<title>wb_workfn (149,182,557 samples, 1.19%)</title><rect x="29.2" y="485" width="14.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="32.22" y="495.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,740,097 samples, 0.01%)</title><rect x="952.8" y="325" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="955.81" y="335.5" ></text>
</g>
<g >
<title>rcu_idle_exit (16,563,562 samples, 0.13%)</title><rect x="1153.8" y="453" width="1.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1156.81" y="463.5" ></text>
</g>
<g >
<title>mpage_prepare_extent_to_map (73,212,495 samples, 0.59%)</title><rect x="36.4" y="357" width="6.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="39.39" y="367.5" ></text>
</g>
<g >
<title>__put_page (4,752,458 samples, 0.04%)</title><rect x="954.8" y="261" width="0.5" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="957.83" y="271.5" ></text>
</g>
<g >
<title>page_counter_cancel (1,696,849 samples, 0.01%)</title><rect x="956.4" y="117" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="959.41" y="127.5" ></text>
</g>
<g >
<title>perf_evlist__poll_thread (145,676,058 samples, 1.16%)</title><rect x="90.9" y="533" width="13.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="93.92" y="543.5" ></text>
</g>
<g >
<title>update_process_times (14,327,766 samples, 0.11%)</title><rect x="860.9" y="421" width="1.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="863.94" y="431.5" ></text>
</g>
<g >
<title>call_timer_fn (90,071,905 samples, 0.72%)</title><rect x="1020.3" y="341" width="8.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1023.28" y="351.5" ></text>
</g>
<g >
<title>generic_writepages (75,970,062 samples, 0.61%)</title><rect x="29.2" y="357" width="7.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="32.22" y="367.5" ></text>
</g>
<g >
<title>lru_cache_add (2,128,259 samples, 0.02%)</title><rect x="952.6" y="277" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="955.61" y="287.5" ></text>
</g>
<g >
<title>__mem_cgroup_uncharge (1,477,863 samples, 0.01%)</title><rect x="954.8" y="229" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="957.83" y="239.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,114,728 samples, 0.02%)</title><rect x="963.5" y="309" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="966.46" y="319.5" ></text>
</g>
<g >
<title>tick_program_event (1,110,320 samples, 0.01%)</title><rect x="1168.1" y="405" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1171.05" y="415.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (2,028,853 samples, 0.02%)</title><rect x="973.3" y="485" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="976.30" y="495.5" ></text>
</g>
<g >
<title>__perf_event_enable (25,281,303 samples, 0.20%)</title><rect x="57.9" y="261" width="2.4" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="60.92" y="271.5" ></text>
</g>
<g >
<title>ttwu_do_activate (10,317,345 samples, 0.08%)</title><rect x="1169.6" y="437" width="1.0" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1172.63" y="447.5" ></text>
</g>
<g >
<title>lru_cache_add (1,941,267 samples, 0.02%)</title><rect x="973.1" y="405" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="976.12" y="415.5" ></text>
</g>
<g >
<title>run_rebalance_domains (15,968,797 samples, 0.13%)</title><rect x="932.8" y="469" width="1.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="935.79" y="479.5" ></text>
</g>
<g >
<title>igb_rd32 (50,929,006 samples, 0.41%)</title><rect x="17.3" y="453" width="4.8" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="20.27" y="463.5" ></text>
</g>
<g >
<title>seq_read_iter (74,888,722 samples, 0.60%)</title><rect x="10.0" y="405" width="7.1" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="13.00" y="415.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,070,231 samples, 0.04%)</title><rect x="955.9" y="213" width="0.5" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="958.94" y="223.5" ></text>
</g>
<g >
<title>__switch_to (22,325,798 samples, 0.18%)</title><rect x="218.9" y="533" width="2.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="221.86" y="543.5" ></text>
</g>
<g >
<title>__cond_resched (16,763,600 samples, 0.13%)</title><rect x="225.7" y="421" width="1.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="228.75" y="431.5" ></text>
</g>
<g >
<title>cpuidle_enter (1,907,613,734 samples, 15.25%)</title><rect x="975.4" y="469" width="180.0" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="978.43" y="479.5" >cpuidle_enter</text>
</g>
<g >
<title>psi_group_change (15,695,981 samples, 0.13%)</title><rect x="265.2" y="293" width="1.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="268.18" y="303.5" ></text>
</g>
<g >
<title>__wake_up_sync_key (20,967,575 samples, 0.17%)</title><rect x="387.8" y="421" width="2.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="390.78" y="431.5" ></text>
</g>
<g >
<title>perf_event_for_each_child (84,441,226 samples, 0.68%)</title><rect x="52.6" y="373" width="8.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="55.63" y="383.5" ></text>
</g>
<g >
<title>cpu_startup_entry (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="453" width="6.8" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1186.23" y="463.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,203,109 samples, 0.01%)</title><rect x="63.0" y="373" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="66.03" y="383.5" ></text>
</g>
<g >
<title>memset (16,299,198 samples, 0.13%)</title><rect x="364.9" y="245" width="1.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="367.89" y="255.5" ></text>
</g>
<g >
<title>StartBufferIO (18,745,888 samples, 0.15%)</title><rect x="125.1" y="549" width="1.7" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="128.07" y="559.5" ></text>
</g>
<g >
<title>xa_load (13,936,765 samples, 0.11%)</title><rect x="369.4" y="293" width="1.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="372.37" y="303.5" ></text>
</g>
<g >
<title>perf_poll (74,611,132 samples, 0.60%)</title><rect x="90.9" y="421" width="7.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="93.94" y="431.5" ></text>
</g>
<g >
<title>rb_next (24,239,389 samples, 0.19%)</title><rect x="1013.8" y="341" width="2.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1016.80" y="351.5" ></text>
</g>
<g >
<title>asm_common_interrupt (306,544,023 samples, 2.45%)</title><rect x="984.9" y="437" width="28.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="987.88" y="447.5" >as..</text>
</g>
<g >
<title>generic_exec_single (52,395,966 samples, 0.42%)</title><rect x="55.4" y="309" width="4.9" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="58.36" y="319.5" ></text>
</g>
<g >
<title>refresh_cpu_vm_stats (6,285,959 samples, 0.05%)</title><rect x="1168.8" y="421" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="1171.82" y="431.5" ></text>
</g>
<g >
<title>irqbalance (74,888,722 samples, 0.60%)</title><rect x="10.0" y="565" width="7.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="13.00" y="575.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (15,968,797 samples, 0.13%)</title><rect x="932.8" y="533" width="1.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="935.79" y="543.5" ></text>
</g>
<g >
<title>evlist_cpu_iterator__next (3,460,095 samples, 0.03%)</title><rect x="65.6" y="485" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="68.65" y="495.5" ></text>
</g>
<g >
<title>rmap_walk (73,212,495 samples, 0.59%)</title><rect x="36.4" y="277" width="6.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="39.39" y="287.5" ></text>
</g>
<g >
<title>acpi_os_execute_deferred (2,175,907 samples, 0.02%)</title><rect x="17.1" y="485" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text  x="20.06" y="495.5" ></text>
</g>
<g >
<title>update_sg_lb_stats (36,794,615 samples, 0.29%)</title><rect x="1016.8" y="277" width="3.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1019.80" y="287.5" ></text>
</g>
<g >
<title>cpuidle_enter_state (1,789,216,629 samples, 14.30%)</title><rect x="984.9" y="453" width="168.8" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="987.88" y="463.5" >cpuidle_enter_state</text>
</g>
<g >
<title>skb_copy_datagram_iter (10,858,396 samples, 0.09%)</title><rect x="957.2" y="277" width="1.0" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="960.19" y="287.5" ></text>
</g>
<g >
<title>tick_sched_handle (14,792,943 samples, 0.12%)</title><rect x="158.1" y="405" width="1.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="161.12" y="415.5" ></text>
</g>
<g >
<title>run_builtin (231,117,119 samples, 1.85%)</title><rect x="52.1" y="517" width="21.8" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="55.06" y="527.5" >r..</text>
</g>
<g >
<title>_int_malloc (22,348,726 samples, 0.18%)</title><rect x="389.8" y="549" width="2.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="392.76" y="559.5" ></text>
</g>
<g >
<title>bprm_execve.part.0 (80,096,276 samples, 0.64%)</title><rect x="44.5" y="373" width="7.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="47.50" y="383.5" ></text>
</g>
<g >
<title>__libc_start_call_main (231,117,119 samples, 1.85%)</title><rect x="52.1" y="549" width="21.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="55.06" y="559.5" >_..</text>
</g>
<g >
<title>_perf_event_enable (77,904,468 samples, 0.62%)</title><rect x="53.0" y="357" width="7.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="56.02" y="367.5" ></text>
</g>
<g >
<title>mpage_submit_page (73,212,495 samples, 0.59%)</title><rect x="36.4" y="325" width="6.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="39.39" y="335.5" ></text>
</g>
<g >
<title>psi_task_switch (17,158,135 samples, 0.14%)</title><rect x="1174.0" y="453" width="1.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1176.98" y="463.5" ></text>
</g>
<g >
<title>blk_mq_sched_insert_requests (68,734,431 samples, 0.55%)</title><rect x="352.9" y="277" width="6.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="355.89" y="287.5" ></text>
</g>
<g >
<title>__slab_free (2,495,996 samples, 0.02%)</title><rect x="955.5" y="229" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="958.51" y="239.5" ></text>
</g>
<g >
<title>__fget_light (1,079,001 samples, 0.01%)</title><rect x="52.2" y="389" width="0.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="55.24" y="399.5" ></text>
</g>
<g >
<title>save_fpregs_to_fpstate (1,894,387 samples, 0.02%)</title><rect x="964.1" y="421" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="967.10" y="431.5" ></text>
</g>
<g >
<title>bio_free (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="197" width="7.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1009.64" y="207.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="357" width="6.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1186.23" y="367.5" ></text>
</g>
<g >
<title>tick_nohz_get_sleep_length (18,391,962 samples, 0.15%)</title><rect x="1159.2" y="437" width="1.7" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1162.20" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (26,594,942 samples, 0.21%)</title><rect x="63.0" y="437" width="2.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="66.03" y="447.5" ></text>
</g>
<g >
<title>calc_load_nohz_stop (14,891,452 samples, 0.12%)</title><rect x="974.0" y="485" width="1.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="977.03" y="495.5" ></text>
</g>
<g >
<title>psql (351,906,959 samples, 2.81%)</title><rect x="940.7" y="565" width="33.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="943.67" y="575.5" >psql</text>
</g>
<g >
<title>__errno_location (9,288,899 samples, 0.07%)</title><rect x="953.0" y="421" width="0.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="955.98" y="431.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,165,528 samples, 0.02%)</title><rect x="1153.5" y="437" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1156.45" y="447.5" ></text>
</g>
<g >
<title>ahci_single_level_irq_intr (142,531,340 samples, 1.14%)</title><rect x="984.9" y="341" width="13.4" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="987.88" y="351.5" ></text>
</g>
<g >
<title>ret_from_fork (2,175,907 samples, 0.02%)</title><rect x="17.1" y="549" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="20.06" y="559.5" ></text>
</g>
<g >
<title>scsi_end_request (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="293" width="7.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1009.64" y="303.5" ></text>
</g>
<g >
<title>acpi_ns_evaluate (2,175,907 samples, 0.02%)</title><rect x="17.1" y="453" width="0.2" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="20.06" y="463.5" ></text>
</g>
<g >
<title>memchr_inv (4,743,854 samples, 0.04%)</title><rect x="1168.2" y="421" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1171.16" y="431.5" ></text>
</g>
<g >
<title>cpuidle_enter (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="405" width="6.8" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1186.23" y="415.5" ></text>
</g>
<g >
<title>quiet_vmstat (13,353,046 samples, 0.11%)</title><rect x="1168.2" y="437" width="1.2" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="1171.16" y="447.5" ></text>
</g>
<g >
<title>sock_wfree (2,157,071 samples, 0.02%)</title><rect x="957.0" y="245" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="959.99" y="255.5" ></text>
</g>
<g >
<title>perf_mmap__push (83,576,078 samples, 0.67%)</title><rect x="66.0" y="469" width="7.9" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="68.97" y="479.5" ></text>
</g>
<g >
<title>dequeue_task_fair (5,781,440 samples, 0.05%)</title><rect x="961.0" y="261" width="0.5" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="963.99" y="271.5" ></text>
</g>
<g >
<title>memcg_slab_free_hook (8,776,558 samples, 0.07%)</title><rect x="955.7" y="229" width="0.9" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="958.75" y="239.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (68,734,431 samples, 0.55%)</title><rect x="352.9" y="165" width="6.5" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="355.89" y="175.5" ></text>
</g>
<g >
<title>do_syscall_64 (180,905,682 samples, 1.45%)</title><rect x="73.9" y="501" width="17.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="76.86" y="511.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (15,778,598 samples, 0.13%)</title><rect x="343.8" y="293" width="1.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="346.85" y="303.5" ></text>
</g>
<g >
<title>try_to_wake_up (20,967,575 samples, 0.17%)</title><rect x="387.8" y="341" width="2.0" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="390.78" y="351.5" ></text>
</g>
<g >
<title>sched_setaffinity (21,540,849 samples, 0.17%)</title><rect x="63.2" y="389" width="2.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="66.25" y="399.5" ></text>
</g>
<g >
<title>submit_bio_noacct (31,205,561 samples, 0.25%)</title><rect x="366.4" y="277" width="3.0" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="369.42" y="287.5" ></text>
</g>
<g >
<title>psi_task_change (2,100,650 samples, 0.02%)</title><rect x="1170.4" y="405" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1173.41" y="415.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (6,479,341 samples, 0.05%)</title><rect x="958.9" y="437" width="0.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="961.87" y="447.5" ></text>
</g>
<g >
<title>__x64_sys_sched_setaffinity (23,890,946 samples, 0.19%)</title><rect x="63.0" y="405" width="2.3" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text  x="66.03" y="415.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,114,728 samples, 0.02%)</title><rect x="963.5" y="261" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="966.46" y="271.5" ></text>
</g>
<g >
<title>ExecScan (34,016,958 samples, 0.27%)</title><rect x="142.6" y="533" width="3.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="145.63" y="543.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (1,584,209 samples, 0.01%)</title><rect x="955.1" y="197" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="958.13" y="207.5" ></text>
</g>
<g >
<title>ret_from_fork (12,779,039 samples, 0.10%)</title><rect x="43.3" y="549" width="1.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="46.30" y="559.5" ></text>
</g>
<g >
<title>mempool_alloc (16,299,198 samples, 0.13%)</title><rect x="364.9" y="277" width="1.5" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="367.89" y="287.5" ></text>
</g>
<g >
<title>find_vma (1,765,488 samples, 0.01%)</title><rect x="951.5" y="357" width="0.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="954.53" y="367.5" ></text>
</g>
<g >
<title>__schedule (16,366,903 samples, 0.13%)</title><rect x="960.8" y="293" width="1.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="963.81" y="303.5" ></text>
</g>
<g >
<title>free_unref_page_commit.constprop.0 (1,584,209 samples, 0.01%)</title><rect x="955.1" y="213" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="958.13" y="223.5" ></text>
</g>
<g >
<title>proc_reg_read_iter (74,888,722 samples, 0.60%)</title><rect x="10.0" y="421" width="7.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="13.00" y="431.5" ></text>
</g>
<g >
<title>handle_edge_irq (230,629,896 samples, 1.84%)</title><rect x="984.9" y="389" width="21.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="987.88" y="399.5" >h..</text>
</g>
<g >
<title>scsi_dispatch_cmd (31,667,067 samples, 0.25%)</title><rect x="354.7" y="117" width="3.0" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="357.74" y="127.5" ></text>
</g>
<g >
<title>skb_release_head_state (6,556,399 samples, 0.05%)</title><rect x="956.6" y="277" width="0.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="959.57" y="287.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (281,202,092 samples, 2.25%)</title><rect x="234.2" y="405" width="26.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="237.15" y="415.5" >c..</text>
</g>
<g >
<title>load_balance (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="261" width="6.8" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1186.23" y="271.5" ></text>
</g>
<g >
<title>[psql] (247,517,398 samples, 1.98%)</title><rect x="940.9" y="485" width="23.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="943.93" y="495.5" >[..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (158,736,506 samples, 1.27%)</title><rect x="1013.8" y="437" width="15.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1016.80" y="447.5" ></text>
</g>
<g >
<title>unix_destruct_scm (2,157,071 samples, 0.02%)</title><rect x="957.0" y="261" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="959.99" y="271.5" ></text>
</g>
<g >
<title>write_cache_pages (75,970,062 samples, 0.61%)</title><rect x="29.2" y="341" width="7.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="32.22" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,936,357 samples, 0.02%)</title><rect x="952.3" y="261" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="955.25" y="271.5" ></text>
</g>
<g >
<title>migration/104 (12,779,039 samples, 0.10%)</title><rect x="43.3" y="565" width="1.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text  x="46.30" y="575.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (29,021,961 samples, 0.23%)</title><rect x="1013.8" y="389" width="2.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1016.80" y="399.5" ></text>
</g>
<g >
<title>__GI___ioctl (95,475,665 samples, 0.76%)</title><rect x="52.1" y="469" width="9.0" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="55.06" y="479.5" ></text>
</g>
<g >
<title>perf_mmap__read_head (83,576,078 samples, 0.67%)</title><rect x="66.0" y="453" width="7.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="68.97" y="463.5" ></text>
</g>
<g >
<title>prepare_task_switch (1,905,408 samples, 0.02%)</title><rect x="1173.8" y="453" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1176.80" y="463.5" ></text>
</g>
<g >
<title>byteain (4,987,165,096 samples, 39.87%)</title><rect x="391.9" y="549" width="470.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="394.86" y="559.5" >byteain</text>
</g>
<g >
<title>sched_setaffinity (1,574,969 samples, 0.01%)</title><rect x="65.4" y="405" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="68.39" y="415.5" ></text>
</g>
<g >
<title>irq_exit_rcu (75,914,127 samples, 0.61%)</title><rect x="1006.6" y="405" width="7.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1009.64" y="415.5" ></text>
</g>
<g >
<title>do_dentry_open (80,096,276 samples, 0.64%)</title><rect x="44.5" y="277" width="7.6" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
<text  x="47.50" y="287.5" ></text>
</g>
<g >
<title>unix_stream_read_actor (10,858,396 samples, 0.09%)</title><rect x="957.2" y="293" width="1.0" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="960.19" y="303.5" ></text>
</g>
<g >
<title>acpi_ps_parse_aml (2,175,907 samples, 0.02%)</title><rect x="17.1" y="421" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="20.06" y="431.5" ></text>
</g>
<g >
<title>process_one_work (2,175,907 samples, 0.02%)</title><rect x="17.1" y="501" width="0.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="20.06" y="511.5" ></text>
</g>
<g >
<title>dequeue_entity (2,144,979 samples, 0.02%)</title><rect x="961.0" y="245" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="963.99" y="255.5" ></text>
</g>
<g >
<title>__sys_sendto (20,967,575 samples, 0.17%)</title><rect x="387.8" y="485" width="2.0" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="390.78" y="495.5" ></text>
</g>
<g >
<title>start_thread (145,676,058 samples, 1.16%)</title><rect x="90.9" y="549" width="13.8" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="93.92" y="559.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list (17,457,373 samples, 0.14%)</title><rect x="359.4" y="309" width="1.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="362.37" y="319.5" ></text>
</g>
<g >
<title>printtup_startup (129,072,850 samples, 1.03%)</title><rect x="206.7" y="533" width="12.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="209.68" y="543.5" ></text>
</g>
<g >
<title>page_counter_uncharge (1,696,849 samples, 0.01%)</title><rect x="956.4" y="133" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="959.41" y="143.5" ></text>
</g>
<g >
<title>evlist_cpu_iterator__next (47,408,765 samples, 0.38%)</title><rect x="61.1" y="469" width="4.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="64.06" y="479.5" ></text>
</g>
<g >
<title>path_openat (80,096,276 samples, 0.64%)</title><rect x="44.5" y="325" width="7.6" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text  x="47.50" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (93,981,159 samples, 0.75%)</title><rect x="52.1" y="437" width="8.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="55.13" y="447.5" ></text>
</g>
<g >
<title>remote_function (45,033,678 samples, 0.36%)</title><rect x="56.1" y="293" width="4.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="59.06" y="303.5" ></text>
</g>
<g >
<title>__handle_mm_fault (11,880,266 samples, 0.09%)</title><rect x="951.7" y="341" width="1.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="954.69" y="351.5" ></text>
</g>
<g >
<title>__schedule (39,589,747 samples, 0.32%)</title><rect x="1171.9" y="469" width="3.7" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1174.86" y="479.5" ></text>
</g>
<g >
<title>__poll (50,835,272 samples, 0.41%)</title><rect x="959.5" y="437" width="4.8" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="962.48" y="447.5" ></text>
</g>
<g >
<title>psi_group_change (2,211,186 samples, 0.02%)</title><rect x="961.9" y="277" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="964.93" y="287.5" ></text>
</g>
<g >
<title>_raw_spin_lock (15,907,773 samples, 0.13%)</title><rect x="367.9" y="213" width="1.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="370.87" y="223.5" ></text>
</g>
<g >
<title>handle_pte_fault (88,590,590 samples, 0.71%)</title><rect x="964.9" y="453" width="8.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="967.94" y="463.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (20,967,575 samples, 0.17%)</title><rect x="387.8" y="325" width="2.0" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="390.78" y="335.5" ></text>
</g>
<g >
<title>__x64_sys_poll (37,410,990 samples, 0.30%)</title><rect x="959.5" y="389" width="3.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="962.48" y="399.5" ></text>
</g>
<g >
<title>clockevents_program_event (1,110,320 samples, 0.01%)</title><rect x="1168.1" y="389" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1171.05" y="399.5" ></text>
</g>
<g >
<title>vma_interval_tree_subtree_search (73,212,495 samples, 0.59%)</title><rect x="36.4" y="229" width="6.9" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text  x="39.39" y="239.5" ></text>
</g>
<g >
<title>__poll (145,676,058 samples, 1.16%)</title><rect x="90.9" y="517" width="13.8" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="93.92" y="527.5" ></text>
</g>
<g >
<title>ret_from_fork (149,182,557 samples, 1.19%)</title><rect x="29.2" y="549" width="14.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="32.22" y="559.5" ></text>
</g>
<g >
<title>event_function_call (77,141,337 samples, 0.62%)</title><rect x="53.1" y="341" width="7.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="56.10" y="351.5" ></text>
</g>
<g >
<title>__blk_mq_alloc_request (15,297,788 samples, 0.12%)</title><rect x="366.4" y="229" width="1.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="369.42" y="239.5" ></text>
</g>
<g >
<title>ExecScanFetch (16,496,656 samples, 0.13%)</title><rect x="145.8" y="533" width="1.6" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="148.84" y="543.5" ></text>
</g>
<g >
<title>alloc_cpumask_var (2,350,097 samples, 0.02%)</title><rect x="63.0" y="389" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="66.03" y="399.5" ></text>
</g>
<g >
<title>do_open_execat (80,096,276 samples, 0.64%)</title><rect x="44.5" y="357" width="7.6" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="47.50" y="367.5" ></text>
</g>
<g >
<title>x86_64_start_reservations (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="517" width="6.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1186.23" y="527.5" ></text>
</g>
<g >
<title>wb_workfn (75,817,615 samples, 0.61%)</title><rect x="22.1" y="485" width="7.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="25.07" y="495.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (6,010,445 samples, 0.05%)</title><rect x="1167.6" y="437" width="0.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1170.59" y="447.5" ></text>
</g>
<g >
<title>mutex_lock (74,160,183 samples, 0.59%)</title><rect x="91.0" y="405" width="7.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="93.98" y="415.5" ></text>
</g>
<g >
<title>nohz_run_idle_balance (11,279,403 samples, 0.09%)</title><rect x="1170.8" y="485" width="1.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1173.80" y="495.5" ></text>
</g>
<g >
<title>page_mapping (1,941,267 samples, 0.02%)</title><rect x="973.1" y="373" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="976.12" y="383.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (55,582,072 samples, 0.44%)</title><rect x="865.8" y="549" width="5.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="868.78" y="559.5" ></text>
</g>
<g >
<title>_nohz_idle_balance.constprop.0.isra.0 (11,279,403 samples, 0.09%)</title><rect x="1170.8" y="469" width="1.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1173.80" y="479.5" ></text>
</g>
<g >
<title>AllocSetReset (17,398,031 samples, 0.14%)</title><rect x="206.7" y="517" width="1.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="209.68" y="527.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (10,858,396 samples, 0.09%)</title><rect x="957.2" y="229" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="960.19" y="239.5" ></text>
</g>
<g >
<title>irqentry_exit (2,028,853 samples, 0.02%)</title><rect x="973.3" y="501" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="976.30" y="511.5" ></text>
</g>
<g >
<title>update_load_avg (2,144,979 samples, 0.02%)</title><rect x="961.0" y="229" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="963.99" y="239.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (85,633,946 samples, 0.68%)</title><rect x="82.8" y="389" width="8.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="85.85" y="399.5" ></text>
</g>
<g >
<title>do_sys_poll (145,676,058 samples, 1.16%)</title><rect x="90.9" y="453" width="13.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="93.92" y="463.5" ></text>
</g>
<g >
<title>__add_to_page_cache_locked (605,688,650 samples, 4.84%)</title><rect x="289.8" y="325" width="57.1" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="292.81" y="335.5" >__add_..</text>
</g>
<g >
<title>ata_qc_complete_multiple (65,672,873 samples, 0.52%)</title><rect x="992.1" y="293" width="6.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="995.13" y="303.5" ></text>
</g>
<g >
<title>mix_interrupt_randomness (90,071,905 samples, 0.72%)</title><rect x="1020.3" y="325" width="8.5" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text  x="1023.28" y="335.5" ></text>
</g>
<g >
<title>__remove_hrtimer (24,239,389 samples, 0.19%)</title><rect x="1013.8" y="357" width="2.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1016.80" y="367.5" ></text>
</g>
<g >
<title>worker_thread (50,929,006 samples, 0.41%)</title><rect x="17.3" y="517" width="4.8" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="20.27" y="527.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14,792,943 samples, 0.12%)</title><rect x="158.1" y="485" width="1.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="161.12" y="495.5" ></text>
</g>
<g >
<title>perf_cpu_map__idx (2,305,478 samples, 0.02%)</title><rect x="61.5" y="453" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="64.50" y="463.5" ></text>
</g>
<g >
<title>page_counter_cancel (1,477,863 samples, 0.01%)</title><rect x="954.8" y="181" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="957.83" y="191.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,761,236 samples, 0.02%)</title><rect x="940.7" y="517" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="943.67" y="527.5" ></text>
</g>
<g >
<title>tick_sched_timer (14,792,943 samples, 0.12%)</title><rect x="158.1" y="421" width="1.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="161.12" y="431.5" ></text>
</g>
<g >
<title>evsel__enable_cpu (1,196,516 samples, 0.01%)</title><rect x="65.5" y="469" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="68.54" y="479.5" ></text>
</g>
<g >
<title>psi_group_change (16,965,660 samples, 0.14%)</title><rect x="1174.0" y="437" width="1.6" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="1176.99" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (94,727,321 samples, 0.76%)</title><rect x="52.1" y="453" width="8.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="55.06" y="463.5" ></text>
</g>
<g >
<title>free_compound_page (4,752,458 samples, 0.04%)</title><rect x="954.8" y="245" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="957.83" y="255.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="229" width="6.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1186.23" y="239.5" ></text>
</g>
<g >
<title>pgstat_count_io_op_time (15,360,430 samples, 0.12%)</title><rect x="934.3" y="549" width="1.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="937.29" y="559.5" ></text>
</g>
<g >
<title>blk_finish_plug (86,191,804 samples, 0.69%)</title><rect x="352.9" y="325" width="8.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="355.89" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (15,385,851 samples, 0.12%)</title><rect x="951.5" y="373" width="1.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="954.53" y="383.5" ></text>
</g>
<g >
<title>sg_alloc_table_chained (17,372,145 samples, 0.14%)</title><rect x="357.7" y="53" width="1.7" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="360.73" y="63.5" ></text>
</g>
<g >
<title>clockevents_program_event (2,639,585 samples, 0.02%)</title><rect x="1167.8" y="389" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1170.80" y="399.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (9,107,583 samples, 0.07%)</title><rect x="963.2" y="389" width="0.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="966.24" y="399.5" ></text>
</g>
<g >
<title>ext4_io_submit (75,817,615 samples, 0.61%)</title><rect x="22.1" y="357" width="7.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="25.07" y="367.5" ></text>
</g>
<g >
<title>idle_cpu (2,442,574 samples, 0.02%)</title><rect x="1171.6" y="453" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1174.63" y="463.5" ></text>
</g>
<g >
<title>sock_sendmsg (20,967,575 samples, 0.17%)</title><rect x="387.8" y="469" width="2.0" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="390.78" y="479.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1,740,097 samples, 0.01%)</title><rect x="952.8" y="277" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="955.81" y="287.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (1,860,044 samples, 0.01%)</title><rect x="952.4" y="277" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="955.44" y="287.5" ></text>
</g>
<g >
<title>stop_one_cpu_nowait (11,868,689 samples, 0.09%)</title><rect x="63.2" y="325" width="1.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="66.25" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages (102,668,270 samples, 0.82%)</title><rect x="276.7" y="309" width="9.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="279.72" y="319.5" ></text>
</g>
<g >
<title>__send (20,967,575 samples, 0.17%)</title><rect x="387.8" y="549" width="2.0" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="390.78" y="559.5" ></text>
</g>
<g >
<title>__libc_start_call_main (80,096,276 samples, 0.64%)</title><rect x="44.5" y="549" width="7.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="47.50" y="559.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,761,236 samples, 0.02%)</title><rect x="940.7" y="501" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="943.67" y="511.5" ></text>
</g>
<g >
<title>update_process_times (2,114,728 samples, 0.02%)</title><rect x="963.5" y="197" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="966.46" y="207.5" ></text>
</g>
<g >
<title>[psql] (247,517,398 samples, 1.98%)</title><rect x="940.9" y="533" width="23.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="943.93" y="543.5" >[..</text>
</g>
<g >
<title>irq_exit_rcu (1,740,097 samples, 0.01%)</title><rect x="952.8" y="293" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="955.81" y="303.5" ></text>
</g>
<g >
<title>kmalloc_slab (1,146,988 samples, 0.01%)</title><rect x="63.1" y="341" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="66.14" y="351.5" ></text>
</g>
<g >
<title>kthread (50,929,006 samples, 0.41%)</title><rect x="17.3" y="533" width="4.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="20.27" y="543.5" ></text>
</g>
<g >
<title>[libpq.so.5.14] (247,517,398 samples, 1.98%)</title><rect x="940.9" y="469" width="23.4" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="943.93" y="479.5" >[..</text>
</g>
<g >
<title>__fdget (1,079,001 samples, 0.01%)</title><rect x="52.2" y="405" width="0.1" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text  x="55.24" y="415.5" ></text>
</g>
<g >
<title>do_sys_poll (37,410,990 samples, 0.30%)</title><rect x="959.5" y="373" width="3.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="962.48" y="383.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (9,107,583 samples, 0.07%)</title><rect x="963.2" y="373" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="966.24" y="383.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (1,991,086 samples, 0.02%)</title><rect x="972.9" y="405" width="0.2" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="975.93" y="415.5" ></text>
</g>
<g >
<title>mutex_lock (2,315,083 samples, 0.02%)</title><rect x="60.4" y="357" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="63.37" y="367.5" ></text>
</g>
<g >
<title>sd_init_command (17,372,145 samples, 0.14%)</title><rect x="357.7" y="101" width="1.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="360.73" y="111.5" ></text>
</g>
<g >
<title>rmap_walk_file (73,212,495 samples, 0.59%)</title><rect x="36.4" y="261" width="6.9" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text  x="39.39" y="271.5" ></text>
</g>
<g >
<title>ext4_file_read_iter (1,624,972,568 samples, 12.99%)</title><rect x="225.7" y="453" width="153.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="228.75" y="463.5" >ext4_file_read_iter</text>
</g>
<g >
<title>__x64_sys_recvfrom (1,974,040 samples, 0.02%)</title><rect x="953.9" y="389" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="956.85" y="399.5" ></text>
</g>
<g >
<title>cpu_stop_queue_work (11,868,689 samples, 0.09%)</title><rect x="63.2" y="309" width="1.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="66.25" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (101,628,325 samples, 0.81%)</title><rect x="964.3" y="549" width="9.6" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="967.28" y="559.5" ></text>
</g>
<g >
<title>unix_stream_read_generic (1,790,304 samples, 0.01%)</title><rect x="954.2" y="325" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="957.22" y="335.5" ></text>
</g>
<g >
<title>ahci_handle_port_interrupt (65,672,873 samples, 0.52%)</title><rect x="992.1" y="309" width="6.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="995.13" y="319.5" ></text>
</g>
<g >
<title>send_call_function_single_ipi (20,967,575 samples, 0.17%)</title><rect x="387.8" y="293" width="2.0" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="390.78" y="303.5" ></text>
</g>
<g >
<title>run_rebalance_domains (1,740,097 samples, 0.01%)</title><rect x="952.8" y="261" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="955.81" y="271.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (66,110,975 samples, 0.53%)</title><rect x="339.1" y="309" width="6.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="342.10" y="319.5" ></text>
</g>
<g >
<title>__irqentry_text_end (1,944,598 samples, 0.02%)</title><rect x="964.6" y="533" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="967.55" y="543.5" ></text>
</g>
<g >
<title>wait_for_completion (9,672,160 samples, 0.08%)</title><rect x="64.4" y="325" width="0.9" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="67.37" y="335.5" ></text>
</g>
<g >
<title>free_unref_page (3,274,595 samples, 0.03%)</title><rect x="955.0" y="229" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="957.97" y="239.5" ></text>
</g>
<g >
<title>TerminateBufferIO (20,953,788 samples, 0.17%)</title><rect x="126.8" y="549" width="2.0" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="129.83" y="559.5" ></text>
</g>
<g >
<title>sched_clock (2,165,528 samples, 0.02%)</title><rect x="1153.5" y="421" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1156.45" y="431.5" ></text>
</g>
<g >
<title>__libc_pread (1,697,979,625 samples, 13.57%)</title><rect x="218.9" y="549" width="160.1" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="221.86" y="559.5" >__libc_pread</text>
</g>
<g >
<title>do_anonymous_page (10,417,895 samples, 0.08%)</title><rect x="951.8" y="309" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="954.83" y="319.5" ></text>
</g>
<g >
<title>writeback_sb_inodes (149,182,557 samples, 1.19%)</title><rect x="29.2" y="421" width="14.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="32.22" y="431.5" ></text>
</g>
<g >
<title>affine_move_task (21,540,849 samples, 0.17%)</title><rect x="63.2" y="341" width="2.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="66.25" y="351.5" ></text>
</g>
<g >
<title>LWLockAttemptLock (36,902,533 samples, 0.29%)</title><rect x="110.5" y="549" width="3.5" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="113.49" y="559.5" ></text>
</g>
<g >
<title>__evlist__enable.constprop.0 (144,080,946 samples, 1.15%)</title><rect x="52.1" y="485" width="13.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="55.06" y="495.5" ></text>
</g>
<g >
<title>pick_next_task_fair (18,232,637 samples, 0.15%)</title><rect x="1171.9" y="437" width="1.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1174.86" y="447.5" ></text>
</g>
<g >
<title>__sys_recvfrom (44,381,223 samples, 0.35%)</title><rect x="954.2" y="357" width="4.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="957.22" y="367.5" ></text>
</g>
<g >
<title>vfs_read (74,888,722 samples, 0.60%)</title><rect x="10.0" y="453" width="7.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="13.00" y="463.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (1,696,849 samples, 0.01%)</title><rect x="956.4" y="213" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text  x="959.41" y="223.5" ></text>
</g>
<g >
<title>irq_chip_ack_parent (88,098,556 samples, 0.70%)</title><rect x="998.3" y="373" width="8.3" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1001.33" y="383.5" ></text>
</g>
<g >
<title>enqueue_task (10,317,345 samples, 0.08%)</title><rect x="1169.6" y="421" width="1.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1172.63" y="431.5" ></text>
</g>
<g >
<title>tick_sched_handle (2,114,728 samples, 0.02%)</title><rect x="963.5" y="213" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="966.46" y="223.5" ></text>
</g>
<g >
<title>arch_call_rest_init (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="485" width="6.8" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="1186.23" y="495.5" ></text>
</g>
<g >
<title>scsi_alloc_sgtables (17,372,145 samples, 0.14%)</title><rect x="357.7" y="69" width="1.7" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="360.73" y="79.5" ></text>
</g>
<g >
<title>find_vma (83,576,078 samples, 0.67%)</title><rect x="66.0" y="389" width="7.9" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="68.97" y="399.5" ></text>
</g>
<g >
<title>[unknown] (74,888,722 samples, 0.60%)</title><rect x="10.0" y="549" width="7.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="13.00" y="559.5" ></text>
</g>
<g >
<title>scsi_finish_command (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="325" width="7.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1009.64" y="335.5" ></text>
</g>
<g >
<title>pick_next_task_fair (1,524,838 samples, 0.01%)</title><rect x="961.5" y="261" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="964.53" y="271.5" ></text>
</g>
<g >
<title>run_timer_softirq (90,071,905 samples, 0.72%)</title><rect x="1020.3" y="373" width="8.5" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1023.28" y="383.5" ></text>
</g>
<g >
<title>heapgettup_pagemode (16,171,385 samples, 0.13%)</title><rect x="203.1" y="533" width="1.6" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="206.13" y="543.5" ></text>
</g>
<g >
<title>page_mapping (17,784,321 samples, 0.14%)</title><rect x="348.3" y="277" width="1.7" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="351.32" y="287.5" ></text>
</g>
<g >
<title>heapgetpage (15,660,448 samples, 0.13%)</title><rect x="871.0" y="549" width="1.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="874.02" y="559.5" ></text>
</g>
<g >
<title>__set_cpus_allowed_ptr_locked (21,540,849 samples, 0.17%)</title><rect x="63.2" y="357" width="2.1" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="66.25" y="367.5" ></text>
</g>
<g >
<title>xas_load (13,936,765 samples, 0.11%)</title><rect x="369.4" y="277" width="1.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="372.37" y="287.5" ></text>
</g>
<g >
<title>enqueue_task_fair (6,006,388 samples, 0.05%)</title><rect x="1169.8" y="405" width="0.6" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1172.84" y="415.5" ></text>
</g>
<g >
<title>common_interrupt (306,544,023 samples, 2.45%)</title><rect x="984.9" y="421" width="28.9" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="987.88" y="431.5" >co..</text>
</g>
<g >
<title>postgres (8,862,821,933 samples, 70.85%)</title><rect x="104.7" y="565" width="836.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="107.66" y="575.5" >postgres</text>
</g>
<g >
<title>need_update (2,323,233 samples, 0.02%)</title><rect x="1168.6" y="421" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="1171.61" y="431.5" ></text>
</g>
<g >
<title>__blk_mq_alloc_request (75,817,615 samples, 0.61%)</title><rect x="22.1" y="277" width="7.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="25.07" y="287.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (74,953,870 samples, 0.60%)</title><rect x="90.9" y="437" width="7.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="93.92" y="447.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (10,858,396 samples, 0.09%)</title><rect x="957.2" y="245" width="1.0" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="960.19" y="255.5" ></text>
</g>
<g >
<title>submit_bio_noacct (75,817,615 samples, 0.61%)</title><rect x="22.1" y="325" width="7.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="25.07" y="335.5" ></text>
</g>
<g >
<title>unix_poll (1,836,780 samples, 0.01%)</title><rect x="962.8" y="325" width="0.2" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="965.84" y="335.5" ></text>
</g>
<g >
<title>blk_update_request (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="277" width="7.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1009.64" y="287.5" ></text>
</g>
<g >
<title>dequeue_task (5,781,440 samples, 0.05%)</title><rect x="961.0" y="277" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="963.99" y="287.5" ></text>
</g>
<g >
<title>account_system_time (2,114,728 samples, 0.02%)</title><rect x="963.5" y="165" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="966.46" y="175.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (20,967,575 samples, 0.17%)</title><rect x="387.8" y="501" width="2.0" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="390.78" y="511.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14,327,766 samples, 0.11%)</title><rect x="860.9" y="517" width="1.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="863.94" y="527.5" ></text>
</g>
<g >
<title>blk_mq_flush_plug_list (68,734,431 samples, 0.55%)</title><rect x="352.9" y="293" width="6.5" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="355.89" y="303.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (75,914,127 samples, 0.61%)</title><rect x="1006.6" y="389" width="7.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1009.64" y="399.5" ></text>
</g>
<g >
<title>__wake_up_common (20,967,575 samples, 0.17%)</title><rect x="387.8" y="389" width="2.0" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
<text  x="390.78" y="399.5" ></text>
</g>
<g >
<title>blk_mq_get_tag (75,817,615 samples, 0.61%)</title><rect x="22.1" y="261" width="7.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="25.07" y="271.5" ></text>
</g>
<g >
<title>xas_load (37,950,264 samples, 0.30%)</title><rect x="370.7" y="325" width="3.6" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="373.68" y="335.5" ></text>
</g>
<g >
<title>mutex_unlock (2,319,653 samples, 0.02%)</title><rect x="52.4" y="373" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="55.41" y="383.5" ></text>
</g>
<g >
<title>mwait_idle_with_hints.constprop.0 (1,319,773,215 samples, 10.55%)</title><rect x="1028.8" y="437" width="124.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1031.77" y="447.5" >mwait_idle_with..</text>
</g>
<g >
<title>sched_setaffinity@@GLIBC_2.3.4 (40,490,313 samples, 0.32%)</title><rect x="61.7" y="453" width="3.8" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="64.72" y="463.5" ></text>
</g>
<g >
<title>swapper (2,291,322,007 samples, 18.32%)</title><rect x="973.9" y="565" width="216.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="976.87" y="575.5" >swapper</text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (2,572,932 samples, 0.02%)</title><rect x="1016.3" y="277" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="1019.28" y="287.5" ></text>
</g>
<g >
<title>kthread (75,817,615 samples, 0.61%)</title><rect x="22.1" y="533" width="7.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="25.07" y="543.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (12,352,841 samples, 0.10%)</title><rect x="1169.6" y="453" width="1.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1172.63" y="463.5" ></text>
</g>
<g >
<title>ret_from_fork (50,929,006 samples, 0.41%)</title><rect x="17.3" y="549" width="4.8" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="20.27" y="559.5" ></text>
</g>
<g >
<title>update_blocked_averages (15,968,797 samples, 0.13%)</title><rect x="932.8" y="453" width="1.5" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text  x="935.79" y="463.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (52,241,241 samples, 0.42%)</title><rect x="935.7" y="549" width="5.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="938.74" y="559.5" ></text>
</g>
<g >
<title>cmd_record (180,905,682 samples, 1.45%)</title><rect x="73.9" y="549" width="17.0" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="76.86" y="559.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1,778,398 samples, 0.01%)</title><rect x="1171.3" y="453" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1174.28" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (180,905,682 samples, 1.45%)</title><rect x="73.9" y="517" width="17.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="76.86" y="527.5" ></text>
</g>
<g >
<title>psi_task_switch (15,695,981 samples, 0.13%)</title><rect x="265.2" y="309" width="1.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="268.18" y="319.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (17,472,117 samples, 0.14%)</title><rect x="951.3" y="405" width="1.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="954.33" y="415.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (73,555,326 samples, 0.59%)</title><rect x="1176.1" y="421" width="6.9" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1179.05" y="431.5" ></text>
</g>
<g >
<title>tick_nohz_idle_stop_tick (19,363,491 samples, 0.15%)</title><rect x="1167.6" y="469" width="1.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1170.59" y="479.5" ></text>
</g>
<g >
<title>skb_free_head (13,737,732 samples, 0.11%)</title><rect x="955.3" y="261" width="1.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="958.28" y="271.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,146,988 samples, 0.01%)</title><rect x="63.1" y="357" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="66.14" y="367.5" ></text>
</g>
<g >
<title>irq_exit_rcu (126,866,520 samples, 1.01%)</title><rect x="1016.8" y="405" width="12.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1019.80" y="415.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (2,128,259 samples, 0.02%)</title><rect x="952.6" y="229" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="955.61" y="239.5" ></text>
</g>
<g >
<title>irq_exit_rcu (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="341" width="6.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1186.23" y="351.5" ></text>
</g>
<g >
<title>handle_mm_fault (88,590,590 samples, 0.71%)</title><rect x="964.9" y="485" width="8.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="967.94" y="495.5" ></text>
</g>
<g >
<title>scsi_io_completion (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="309" width="7.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1009.64" y="319.5" ></text>
</g>
<g >
<title>tick_nohz_idle_exit (78,402,317 samples, 0.63%)</title><rect x="1175.6" y="485" width="7.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1178.59" y="495.5" ></text>
</g>
<g >
<title>do_open (80,096,276 samples, 0.64%)</title><rect x="44.5" y="309" width="7.6" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="47.50" y="319.5" ></text>
</g>
<g >
<title>submit_bio (75,817,615 samples, 0.61%)</title><rect x="22.1" y="341" width="7.1" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="25.07" y="351.5" ></text>
</g>
<g >
<title>tick_irq_enter (2,848,025 samples, 0.02%)</title><rect x="1016.5" y="389" width="0.3" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1019.54" y="399.5" ></text>
</g>
<g >
<title>acpi_ns_search_one_scope (2,175,907 samples, 0.02%)</title><rect x="17.1" y="293" width="0.2" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text  x="20.06" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (90,071,905 samples, 0.72%)</title><rect x="1020.3" y="309" width="8.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="1023.28" y="319.5" ></text>
</g>
<g >
<title>filemap_read (1,608,208,968 samples, 12.86%)</title><rect x="227.3" y="421" width="151.7" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="230.33" y="431.5" >filemap_read</text>
</g>
<g >
<title>__pollwait (2,257,736 samples, 0.02%)</title><rect x="962.6" y="325" width="0.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="965.63" y="335.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14,327,766 samples, 0.11%)</title><rect x="860.9" y="533" width="1.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="863.94" y="543.5" ></text>
</g>
<g >
<title>sock_def_readable (20,967,575 samples, 0.17%)</title><rect x="387.8" y="437" width="2.0" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="390.78" y="447.5" ></text>
</g>
<g >
<title>do_syscall_64 (80,096,276 samples, 0.64%)</title><rect x="44.5" y="437" width="7.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="47.50" y="447.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (4,504,858 samples, 0.04%)</title><rect x="971.9" y="421" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="974.93" y="431.5" ></text>
</g>
<g >
<title>kworker/u290:3- (149,182,557 samples, 1.19%)</title><rect x="29.2" y="565" width="14.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text  x="32.22" y="575.5" ></text>
</g>
<g >
<title>pq_endmessage_reuse (15,624,561 samples, 0.12%)</title><rect x="213.5" y="517" width="1.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="216.45" y="527.5" ></text>
</g>
<g >
<title>x86_pmu_enable (11,591,191 samples, 0.09%)</title><rect x="59.2" y="229" width="1.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="62.21" y="239.5" ></text>
</g>
<g >
<title>acpi_ns_lookup (2,175,907 samples, 0.02%)</title><rect x="17.1" y="341" width="0.2" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="20.06" y="351.5" ></text>
</g>
<g >
<title>exc_page_fault (83,576,078 samples, 0.67%)</title><rect x="66.0" y="421" width="7.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="68.97" y="431.5" ></text>
</g>
<g >
<title>__wait_for_common (9,672,160 samples, 0.08%)</title><rect x="64.4" y="309" width="0.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="67.37" y="319.5" ></text>
</g>
<g >
<title>__sched_setaffinity (21,540,849 samples, 0.17%)</title><rect x="63.2" y="373" width="2.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="66.25" y="383.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (20,967,575 samples, 0.17%)</title><rect x="387.8" y="453" width="2.0" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="390.78" y="463.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (74,888,722 samples, 0.60%)</title><rect x="10.0" y="517" width="7.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="13.00" y="527.5" ></text>
</g>
<g >
<title>lru_cache_add_inactive_or_unevictable (2,128,259 samples, 0.02%)</title><rect x="952.6" y="293" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="955.61" y="303.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (75,817,615 samples, 0.61%)</title><rect x="22.1" y="293" width="7.1" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="25.07" y="303.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (2,262,347 samples, 0.02%)</title><rect x="1169.4" y="453" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1172.42" y="463.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (73,555,326 samples, 0.59%)</title><rect x="1176.1" y="437" width="6.9" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1179.05" y="447.5" ></text>
</g>
<g >
<title>update_process_times (4,782,572 samples, 0.04%)</title><rect x="1016.1" y="325" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1019.08" y="335.5" ></text>
</g>
<g >
<title>set_next_entity (2,293,567 samples, 0.02%)</title><rect x="1173.6" y="437" width="0.2" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text  x="1176.58" y="447.5" ></text>
</g>
<g >
<title>tick_nohz_restart (78,402,317 samples, 0.63%)</title><rect x="1175.6" y="469" width="7.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1178.59" y="479.5" ></text>
</g>
<g >
<title>ReadBuffer_common (16,587,188 samples, 0.13%)</title><rect x="122.0" y="549" width="1.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="125.03" y="559.5" ></text>
</g>
<g >
<title>page_cache_async_ra (1,140,737,731 samples, 9.12%)</title><rect x="266.7" y="389" width="107.6" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="269.66" y="399.5" >page_cache_as..</text>
</g>
<g >
<title>__x64_sys_execve (80,096,276 samples, 0.64%)</title><rect x="44.5" y="421" width="7.6" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="47.50" y="431.5" ></text>
</g>
<g >
<title>do_brk_flags (2,761,236 samples, 0.02%)</title><rect x="940.7" y="453" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text  x="943.67" y="463.5" ></text>
</g>
<g >
<title>exc_page_fault (90,619,443 samples, 0.72%)</title><rect x="964.9" y="517" width="8.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="967.94" y="527.5" ></text>
</g>
<g >
<title>pollwake (20,967,575 samples, 0.17%)</title><rect x="387.8" y="373" width="2.0" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text  x="390.78" y="383.5" ></text>
</g>
<g >
<title>pick_next_task (20,526,204 samples, 0.16%)</title><rect x="1171.9" y="453" width="1.9" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text  x="1174.86" y="463.5" ></text>
</g>
<g >
<title>sd_setup_read_write_cmnd (17,372,145 samples, 0.14%)</title><rect x="357.7" y="85" width="1.7" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="360.73" y="95.5" ></text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (36,794,615 samples, 0.29%)</title><rect x="1016.8" y="293" width="3.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="1019.80" y="303.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,714,391 samples, 0.04%)</title><rect x="954.4" y="261" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="957.38" y="271.5" ></text>
</g>
<g >
<title>psi_group_change (2,100,650 samples, 0.02%)</title><rect x="1170.4" y="389" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="1173.41" y="399.5" ></text>
</g>
<g >
<title>worker_thread (75,817,615 samples, 0.61%)</title><rect x="22.1" y="517" width="7.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="25.07" y="527.5" ></text>
</g>
<g >
<title>update_load_avg (4,288,007 samples, 0.03%)</title><rect x="1170.0" y="373" width="0.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1173.00" y="383.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (14,792,943 samples, 0.12%)</title><rect x="158.1" y="469" width="1.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="161.12" y="479.5" ></text>
</g>
<g >
<title>new_sync_read (74,888,722 samples, 0.60%)</title><rect x="10.0" y="437" width="7.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="13.00" y="447.5" ></text>
</g>
<g >
<title>native_write_msr (6,691,320 samples, 0.05%)</title><rect x="59.7" y="197" width="0.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="62.67" y="207.5" ></text>
</g>
<g >
<title>[libpq.so.5.14] (55,849,916 samples, 0.45%)</title><rect x="947.7" y="421" width="5.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="950.71" y="431.5" ></text>
</g>
<g >
<title>bio_endio (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="261" width="7.1" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="1009.64" y="271.5" ></text>
</g>
<g >
<title>read_pages (188,650,756 samples, 1.51%)</title><rect x="352.9" y="341" width="17.8" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="355.89" y="351.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (83,576,078 samples, 0.67%)</title><rect x="66.0" y="437" width="7.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="68.97" y="447.5" ></text>
</g>
<g >
<title>bio_alloc_bioset (16,299,198 samples, 0.13%)</title><rect x="364.9" y="293" width="1.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="367.89" y="303.5" ></text>
</g>
<g >
<title>set_next_task_idle (2,662,771 samples, 0.02%)</title><rect x="961.7" y="245" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="964.68" y="255.5" ></text>
</g>
<g >
<title>ReleaseBuffer (21,771,294 samples, 0.17%)</title><rect x="147.4" y="533" width="2.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text  x="150.40" y="543.5" ></text>
</g>
<g >
<title>schedule (16,366,903 samples, 0.13%)</title><rect x="960.8" y="309" width="1.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="963.81" y="319.5" ></text>
</g>
<g >
<title>rcu_idle_enter (1,634,795 samples, 0.01%)</title><rect x="1153.7" y="453" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1156.66" y="463.5" ></text>
</g>
<g >
<title>_nohz_idle_balance.constprop.0.isra.0 (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="293" width="6.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1186.23" y="303.5" ></text>
</g>
<g >
<title>ReadBufferExtended (14,815,640 samples, 0.12%)</title><rect x="120.6" y="549" width="1.4" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="123.63" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (145,676,058 samples, 1.16%)</title><rect x="90.9" y="501" width="13.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="93.92" y="511.5" ></text>
</g>
<g >
<title>do_idle (2,215,295,891 samples, 17.71%)</title><rect x="974.0" y="501" width="209.0" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="977.03" y="511.5" >do_idle</text>
</g>
<g >
<title>sock_recvmsg (42,409,680 samples, 0.34%)</title><rect x="954.2" y="341" width="4.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="957.22" y="351.5" ></text>
</g>
<g >
<title>account_process_tick (2,114,728 samples, 0.02%)</title><rect x="963.5" y="181" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="966.46" y="191.5" ></text>
</g>
<g >
<title>process_one_work (149,182,557 samples, 1.19%)</title><rect x="29.2" y="501" width="14.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="32.22" y="511.5" ></text>
</g>
<g >
<title>rmqueue (48,065,899 samples, 0.38%)</title><rect x="281.9" y="277" width="4.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="284.87" y="287.5" ></text>
</g>
<g >
<title>do_anonymous_page (88,590,590 samples, 0.71%)</title><rect x="964.9" y="437" width="8.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="967.94" y="447.5" ></text>
</g>
<g >
<title>__blk_mq_run_hw_queue (68,734,431 samples, 0.55%)</title><rect x="352.9" y="229" width="6.5" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="355.89" y="239.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14,792,943 samples, 0.12%)</title><rect x="158.1" y="501" width="1.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="161.12" y="511.5" ></text>
</g>
<g >
<title>do_user_addr_fault (88,590,590 samples, 0.71%)</title><rect x="964.9" y="501" width="8.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="967.94" y="511.5" ></text>
</g>
<g >
<title>find_busiest_group (36,794,615 samples, 0.29%)</title><rect x="1016.8" y="309" width="3.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1019.80" y="319.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (2,128,259 samples, 0.02%)</title><rect x="952.6" y="213" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="955.61" y="223.5" ></text>
</g>
<g >
<title>__writeback_inodes_wb (149,182,557 samples, 1.19%)</title><rect x="29.2" y="437" width="14.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="32.22" y="447.5" ></text>
</g>
<g >
<title>enqueue_task (11,868,689 samples, 0.09%)</title><rect x="63.2" y="245" width="1.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="66.25" y="255.5" ></text>
</g>
<g >
<title>process_one_work (75,817,615 samples, 0.61%)</title><rect x="22.1" y="501" width="7.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="25.07" y="511.5" ></text>
</g>
<g >
<title>internal_putbytes (34,871,901 samples, 0.28%)</title><rect x="872.5" y="549" width="3.3" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="875.50" y="559.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,871,840 samples, 0.01%)</title><rect x="1170.2" y="357" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1173.23" y="367.5" ></text>
</g>
<g >
<title>igb_watchdog_task (50,929,006 samples, 0.41%)</title><rect x="17.3" y="485" width="4.8" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="20.27" y="495.5" ></text>
</g>
<g >
<title>AllocSetAlloc (46,057,996 samples, 0.37%)</title><rect x="128.8" y="533" width="4.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="131.81" y="543.5" ></text>
</g>
<g >
<title>int8out (21,524,489 samples, 0.17%)</title><rect x="204.7" y="533" width="2.0" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="207.65" y="543.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (15,968,797 samples, 0.13%)</title><rect x="932.8" y="517" width="1.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="935.79" y="527.5" ></text>
</g>
<g >
<title>PQgetResult (247,517,398 samples, 1.98%)</title><rect x="940.9" y="453" width="23.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="943.93" y="463.5" >P..</text>
</g>
<g >
<title>rb_erase (1,946,455 samples, 0.02%)</title><rect x="1175.9" y="405" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1178.87" y="415.5" ></text>
</g>
<g >
<title>generic_file_read_iter (1,624,972,568 samples, 12.99%)</title><rect x="225.7" y="437" width="153.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="228.75" y="447.5" >generic_file_read_i..</text>
</g>
<g >
<title>__hrtimer_run_queues (29,021,961 samples, 0.23%)</title><rect x="1013.8" y="373" width="2.7" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1016.80" y="383.5" ></text>
</g>
<g >
<title>worker_thread (149,182,557 samples, 1.19%)</title><rect x="29.2" y="517" width="14.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="32.22" y="527.5" ></text>
</g>
<g >
<title>wb_do_writeback (75,817,615 samples, 0.61%)</title><rect x="22.1" y="469" width="7.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="25.07" y="479.5" ></text>
</g>
<g >
<title>put_pid (4,399,328 samples, 0.04%)</title><rect x="956.6" y="261" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="959.57" y="271.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (20,967,575 samples, 0.17%)</title><rect x="387.8" y="309" width="2.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="390.78" y="319.5" ></text>
</g>
<g >
<title>__update_idle_core (2,662,771 samples, 0.02%)</title><rect x="961.7" y="229" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="964.68" y="239.5" ></text>
</g>
<g >
<title>__update_load_avg_se (1,718,381 samples, 0.01%)</title><rect x="1169.8" y="373" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1172.84" y="383.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (14,792,943 samples, 0.12%)</title><rect x="158.1" y="437" width="1.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="161.12" y="447.5" ></text>
</g>
<g >
<title>ResourceOwnerEnlarge (15,653,995 samples, 0.13%)</title><rect x="123.6" y="549" width="1.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="126.59" y="559.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,114,728 samples, 0.02%)</title><rect x="963.5" y="277" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="966.46" y="287.5" ></text>
</g>
<g >
<title>__update_blocked_fair (15,968,797 samples, 0.13%)</title><rect x="932.8" y="437" width="1.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="935.79" y="447.5" ></text>
</g>
<g >
<title>kmem_cache_free (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="165" width="7.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1009.64" y="175.5" ></text>
</g>
<g >
<title>memcg_slab_free_hook (2,352,817 samples, 0.02%)</title><rect x="954.4" y="245" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="957.38" y="255.5" ></text>
</g>
<g >
<title>exc_page_fault (15,385,851 samples, 0.12%)</title><rect x="951.5" y="389" width="1.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="954.53" y="399.5" ></text>
</g>
<g >
<title>[psql] (247,517,398 samples, 1.98%)</title><rect x="940.9" y="517" width="23.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="943.93" y="527.5" >[..</text>
</g>
<g >
<title>__pagevec_lru_add (1,941,267 samples, 0.02%)</title><rect x="973.1" y="389" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="976.12" y="399.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (18,391,962 samples, 0.15%)</title><rect x="1159.2" y="373" width="1.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="1162.20" y="383.5" ></text>
</g>
<g >
<title>run_rebalance_domains (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="309" width="6.8" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1186.23" y="319.5" ></text>
</g>
<g >
<title>run_builtin (80,096,276 samples, 0.64%)</title><rect x="44.5" y="517" width="7.6" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="47.50" y="527.5" ></text>
</g>
<g >
<title>rebalance_domains (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="277" width="6.8" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1186.23" y="287.5" ></text>
</g>
<g >
<title>update_blocked_averages (1,740,097 samples, 0.01%)</title><rect x="952.8" y="245" width="0.2" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" />
<text  x="955.81" y="255.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (95,283,100 samples, 0.76%)</title><rect x="192.6" y="533" width="9.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="195.58" y="543.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (158,736,506 samples, 1.27%)</title><rect x="1013.8" y="421" width="15.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1016.80" y="431.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (15,968,797 samples, 0.13%)</title><rect x="932.8" y="485" width="1.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="935.79" y="495.5" ></text>
</g>
<g >
<title>[libpq.so.5.14] (190,202,785 samples, 1.52%)</title><rect x="940.9" y="437" width="18.0" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="943.93" y="447.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (73,555,326 samples, 0.59%)</title><rect x="1176.1" y="453" width="6.9" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1179.05" y="463.5" ></text>
</g>
<g >
<title>__read_end_io (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="229" width="7.1" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text  x="1009.64" y="239.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="373" width="6.8" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1186.23" y="383.5" ></text>
</g>
<g >
<title>rmqueue (4,215,817 samples, 0.03%)</title><rect x="972.5" y="373" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="975.53" y="383.5" ></text>
</g>
<g >
<title>__put_user_nocheck_8 (4,396,828 samples, 0.04%)</title><rect x="963.2" y="325" width="0.5" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="966.24" y="335.5" ></text>
</g>
<g >
<title>__pollwait (180,905,682 samples, 1.45%)</title><rect x="73.9" y="421" width="17.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="76.86" y="431.5" ></text>
</g>
<g >
<title>__switch_to (1,710,689 samples, 0.01%)</title><rect x="973.9" y="549" width="0.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="976.87" y="559.5" ></text>
</g>
<g >
<title>rcu_read_unlock_strict (15,071,823 samples, 0.12%)</title><rect x="351.5" y="341" width="1.4" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
<text  x="354.46" y="351.5" ></text>
</g>
<g >
<title>xa_load (37,950,264 samples, 0.30%)</title><rect x="370.7" y="341" width="3.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="373.68" y="351.5" ></text>
</g>
<g >
<title>skb_release_data (18,490,190 samples, 0.15%)</title><rect x="954.8" y="277" width="1.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="957.83" y="287.5" ></text>
</g>
<g >
<title>try_to_wake_up (11,868,689 samples, 0.09%)</title><rect x="63.2" y="277" width="1.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text  x="66.25" y="287.5" ></text>
</g>
<g >
<title>wb_do_writeback (149,182,557 samples, 1.19%)</title><rect x="29.2" y="469" width="14.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="32.22" y="479.5" ></text>
</g>
<g >
<title>acpi_ps_get_next_namepath (2,175,907 samples, 0.02%)</title><rect x="17.1" y="357" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="20.06" y="367.5" ></text>
</g>
<g >
<title>do_user_addr_fault (83,576,078 samples, 0.67%)</title><rect x="66.0" y="405" width="7.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="68.97" y="415.5" ></text>
</g>
<g >
<title>x86_64_start_kernel (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="533" width="6.8" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1186.23" y="543.5" ></text>
</g>
<g >
<title>__get_user_8 (2,333,335 samples, 0.02%)</title><rect x="963.9" y="309" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text  x="966.88" y="319.5" ></text>
</g>
<g >
<title>flush_smp_call_function_from_idle (14,615,188 samples, 0.12%)</title><rect x="1169.4" y="485" width="1.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1172.42" y="495.5" ></text>
</g>
<g >
<title>put_prev_task_fair (2,295,392 samples, 0.02%)</title><rect x="962.1" y="277" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="965.14" y="287.5" ></text>
</g>
<g >
<title>clear_page_dirty_for_io (73,212,495 samples, 0.59%)</title><rect x="36.4" y="309" width="6.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="39.39" y="319.5" ></text>
</g>
<g >
<title>__do_sys_brk (2,761,236 samples, 0.02%)</title><rect x="940.7" y="469" width="0.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="943.67" y="479.5" ></text>
</g>
<g >
<title>kthread (12,779,039 samples, 0.10%)</title><rect x="43.3" y="533" width="1.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="46.30" y="543.5" ></text>
</g>
<g >
<title>record__mmap_read_evlist.constprop.0 (83,576,078 samples, 0.67%)</title><rect x="66.0" y="485" width="7.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="68.97" y="495.5" ></text>
</g>
<g >
<title>__pagevec_lru_add_fn (2,128,259 samples, 0.02%)</title><rect x="952.6" y="245" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="955.61" y="255.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (1,401,441 samples, 0.01%)</title><rect x="59.5" y="197" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="62.54" y="207.5" ></text>
</g>
<g >
<title>scsi_prepare_cmd (17,372,145 samples, 0.14%)</title><rect x="357.7" y="117" width="1.7" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="360.73" y="127.5" ></text>
</g>
<g >
<title>perf_ioctl (90,209,356 samples, 0.72%)</title><rect x="52.4" y="405" width="8.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="55.41" y="415.5" ></text>
</g>
<g >
<title>native_apic_msr_eoi_write (88,098,556 samples, 0.70%)</title><rect x="998.3" y="357" width="8.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="1001.33" y="367.5" ></text>
</g>
<g >
<title>scsi_queue_rq (68,734,431 samples, 0.55%)</title><rect x="352.9" y="133" width="6.5" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="355.89" y="143.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (31,667,067 samples, 0.25%)</title><rect x="354.7" y="85" width="3.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="357.74" y="95.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (80,096,276 samples, 0.64%)</title><rect x="44.5" y="453" width="7.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="47.50" y="463.5" ></text>
</g>
<g >
<title>textout (16,816,998 samples, 0.13%)</title><rect x="191.0" y="517" width="1.6" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="193.99" y="527.5" ></text>
</g>
<g >
<title>page_counter_uncharge (1,477,863 samples, 0.01%)</title><rect x="954.8" y="197" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="957.83" y="207.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (46,947,504 samples, 0.38%)</title><rect x="954.2" y="373" width="4.4" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="957.22" y="383.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (180,905,682 samples, 1.45%)</title><rect x="73.9" y="453" width="17.0" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="76.86" y="463.5" ></text>
</g>
<g >
<title>update_process_times (14,792,943 samples, 0.12%)</title><rect x="158.1" y="389" width="1.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="161.12" y="399.5" ></text>
</g>
<g >
<title>__strlen_evex (21,575,433 samples, 0.17%)</title><rect x="209.9" y="517" width="2.0" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="212.87" y="527.5" ></text>
</g>
<g >
<title>event_function (35,446,208 samples, 0.28%)</title><rect x="57.0" y="277" width="3.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="59.96" y="287.5" ></text>
</g>
<g >
<title>sock_poll (7,001,085 samples, 0.06%)</title><rect x="962.4" y="341" width="0.6" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="965.35" y="351.5" ></text>
</g>
<g >
<title>update_curr (3,636,461 samples, 0.03%)</title><rect x="961.2" y="245" width="0.3" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="964.19" y="255.5" ></text>
</g>
<g >
<title>blk_mq_get_tag (15,297,788 samples, 0.12%)</title><rect x="366.4" y="213" width="1.5" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="369.42" y="223.5" ></text>
</g>
<g >
<title>acpi_ps_execute_method (2,175,907 samples, 0.02%)</title><rect x="17.1" y="437" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="20.06" y="447.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (92,800,323 samples, 0.74%)</title><rect x="379.0" y="549" width="8.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="382.02" y="559.5" ></text>
</g>
<g >
<title>[unknown]  (74,888,722 samples, 0.60%)</title><rect x="10.0" y="533" width="7.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="13.00" y="543.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (20,967,575 samples, 0.17%)</title><rect x="387.8" y="533" width="2.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="390.78" y="543.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (2,368,450 samples, 0.02%)</title><rect x="952.0" y="277" width="0.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="955.03" y="287.5" ></text>
</g>
<g >
<title>ext4_writepages (73,212,495 samples, 0.59%)</title><rect x="36.4" y="373" width="6.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="39.39" y="383.5" ></text>
</g>
<g >
<title>__sbitmap_queue_get_shallow (75,817,615 samples, 0.61%)</title><rect x="22.1" y="229" width="7.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="25.07" y="239.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,424,689 samples, 0.02%)</title><rect x="958.6" y="421" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="961.64" y="431.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,114,728 samples, 0.02%)</title><rect x="963.5" y="245" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="966.46" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (48,940,885 samples, 0.39%)</title><rect x="959.5" y="405" width="4.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="962.48" y="415.5" ></text>
</g>
<g >
<title>tick_nohz_next_event (18,391,962 samples, 0.15%)</title><rect x="1159.2" y="421" width="1.7" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="1162.20" y="431.5" ></text>
</g>
<g >
<title>menu_select (57,272,365 samples, 0.46%)</title><rect x="1155.5" y="453" width="5.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1158.53" y="463.5" ></text>
</g>
<g >
<title>__rseq_handle_notify_resume (9,107,583 samples, 0.07%)</title><rect x="963.2" y="341" width="0.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="966.24" y="351.5" ></text>
</g>
<g >
<title>__pagevec_lru_add (2,128,259 samples, 0.02%)</title><rect x="952.6" y="261" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="955.61" y="271.5" ></text>
</g>
<g >
<title>mpage_end_io (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="245" width="7.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text  x="1009.64" y="255.5" ></text>
</g>
<g >
<title>do_syscall_64 (48,815,791 samples, 0.39%)</title><rect x="954.0" y="389" width="4.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="957.04" y="399.5" ></text>
</g>
<g >
<title>new_sync_read (1,624,972,568 samples, 12.99%)</title><rect x="225.7" y="469" width="153.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="228.75" y="479.5" >new_sync_read</text>
</g>
<g >
<title>__blk_mq_sched_bio_merge (15,907,773 samples, 0.13%)</title><rect x="367.9" y="229" width="1.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="370.87" y="239.5" ></text>
</g>
<g >
<title>cpuidle_select (58,957,768 samples, 0.47%)</title><rect x="1155.4" y="469" width="5.5" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="1158.37" y="479.5" ></text>
</g>
<g >
<title>unix_stream_read_generic (40,619,376 samples, 0.32%)</title><rect x="954.4" y="309" width="3.8" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="957.38" y="319.5" ></text>
</g>
<g >
<title>kfree_skbmem (4,714,391 samples, 0.04%)</title><rect x="954.4" y="277" width="0.4" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="957.38" y="287.5" ></text>
</g>
<g >
<title>filemap_get_pages (1,204,152,098 samples, 9.63%)</title><rect x="260.7" y="405" width="113.6" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="263.68" y="415.5" >filemap_get_pa..</text>
</g>
<g >
<title>perf_poll (180,905,682 samples, 1.45%)</title><rect x="73.9" y="437" width="17.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="76.86" y="447.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (9,480,695 samples, 0.08%)</title><rect x="59.4" y="213" width="0.9" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="62.41" y="223.5" ></text>
</g>
<g >
<title>[unknown] (2,761,236 samples, 0.02%)</title><rect x="940.7" y="549" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="943.67" y="559.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (1,696,849 samples, 0.01%)</title><rect x="956.4" y="181" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="959.41" y="191.5" ></text>
</g>
<g >
<title>copy_page_to_iter (14,254,258 samples, 0.11%)</title><rect x="232.8" y="405" width="1.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="235.81" y="415.5" ></text>
</g>
<g >
<title>__page_cache_alloc (102,668,270 samples, 0.82%)</title><rect x="276.7" y="341" width="9.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="279.72" y="351.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (92,791,174 samples, 0.74%)</title><rect x="964.7" y="533" width="8.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="967.74" y="543.5" ></text>
</g>
<g >
<title>writeback_sb_inodes (75,817,615 samples, 0.61%)</title><rect x="22.1" y="421" width="7.1" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="25.07" y="431.5" ></text>
</g>
<g >
<title>pq_sendcountedtext (33,037,469 samples, 0.26%)</title><rect x="187.9" y="517" width="3.1" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="190.88" y="527.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath.part.0 (16,883,997 samples, 0.13%)</title><rect x="356.1" y="53" width="1.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="359.14" y="63.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (4,900,125 samples, 0.04%)</title><rect x="1167.6" y="421" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1170.59" y="431.5" ></text>
</g>
<g >
<title>__switch_to_asm (12,699,742 samples, 0.10%)</title><rect x="61.8" y="437" width="1.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="64.83" y="447.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (2,028,853 samples, 0.02%)</title><rect x="973.3" y="453" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="976.30" y="463.5" ></text>
</g>
<g >
<title>__update_blocked_fair (1,740,097 samples, 0.01%)</title><rect x="952.8" y="229" width="0.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="955.81" y="239.5" ></text>
</g>
<g >
<title>__x64_sys_poll (180,905,682 samples, 1.45%)</title><rect x="73.9" y="485" width="17.0" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="76.86" y="495.5" ></text>
</g>
<g >
<title>start_kernel (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="501" width="6.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1186.23" y="511.5" ></text>
</g>
<g >
<title>worker_thread (2,175,907 samples, 0.02%)</title><rect x="17.1" y="517" width="0.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="20.06" y="527.5" ></text>
</g>
<g >
<title>filemap_update_page (15,695,981 samples, 0.13%)</title><rect x="265.2" y="389" width="1.5" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="268.18" y="399.5" ></text>
</g>
<g >
<title>clear_page_erms (16,789,335 samples, 0.13%)</title><rect x="280.3" y="277" width="1.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="283.29" y="287.5" ></text>
</g>
<g >
<title>__x64_sys_read (74,888,722 samples, 0.60%)</title><rect x="10.0" y="485" width="7.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="13.00" y="495.5" ></text>
</g>
<g >
<title>native_sched_clock (2,165,528 samples, 0.02%)</title><rect x="1153.5" y="405" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1156.45" y="415.5" ></text>
</g>
<g >
<title>__add_to_page_cache_locked (87,838,819 samples, 0.70%)</title><rect x="268.4" y="341" width="8.3" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="271.43" y="351.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (126,866,520 samples, 1.01%)</title><rect x="1016.8" y="389" width="12.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1019.80" y="399.5" ></text>
</g>
<g >
<title>rb_next (18,232,637 samples, 0.15%)</title><rect x="1171.9" y="421" width="1.7" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1174.86" y="431.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (50,681,259 samples, 0.41%)</title><rect x="221.0" y="533" width="4.7" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="223.96" y="543.5" ></text>
</g>
<g >
<title>do_sys_poll (2,422,312 samples, 0.02%)</title><rect x="963.0" y="389" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="966.01" y="399.5" ></text>
</g>
<g >
<title>acpi_ns_search_and_enter (2,175,907 samples, 0.02%)</title><rect x="17.1" y="325" width="0.2" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="20.06" y="335.5" ></text>
</g>
<g >
<title>hook_file_open (80,096,276 samples, 0.64%)</title><rect x="44.5" y="261" width="7.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="47.50" y="271.5" ></text>
</g>
<g >
<title>wait_on_page_bit_common (15,695,981 samples, 0.13%)</title><rect x="265.2" y="373" width="1.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="268.18" y="383.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.0 (80,096,276 samples, 0.64%)</title><rect x="44.5" y="405" width="7.6" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="47.50" y="415.5" ></text>
</g>
<g >
<title>newidle_balance (1,524,838 samples, 0.01%)</title><rect x="961.5" y="245" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="964.53" y="255.5" ></text>
</g>
<g >
<title>rcu_eqs_exit.constprop.0 (1,997,357 samples, 0.02%)</title><rect x="1153.3" y="421" width="0.2" height="15.0" fill="rgb(209,20,5)" rx="2" ry="2" />
<text  x="1156.26" y="431.5" ></text>
</g>
<g >
<title>bprm_execve (80,096,276 samples, 0.64%)</title><rect x="44.5" y="389" width="7.6" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="47.50" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,624,972,568 samples, 12.99%)</title><rect x="225.7" y="517" width="153.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="228.75" y="527.5" >do_syscall_64</text>
</g>
<g >
<title>pglz_decompress (15,972,732 samples, 0.13%)</title><rect x="186.4" y="517" width="1.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="189.37" y="527.5" ></text>
</g>
<g >
<title>smpboot_thread_fn (12,779,039 samples, 0.10%)</title><rect x="43.3" y="517" width="1.2" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text  x="46.30" y="527.5" ></text>
</g>
<g >
<title>sched_clock_cpu (2,035,496 samples, 0.02%)</title><rect x="1170.6" y="421" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1173.60" y="431.5" ></text>
</g>
<g >
<title>ttwu_do_activate (11,868,689 samples, 0.09%)</title><rect x="63.2" y="261" width="1.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="66.25" y="271.5" ></text>
</g>
<g >
<title>mempool_alloc_slab (16,299,198 samples, 0.13%)</title><rect x="364.9" y="261" width="1.5" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="367.89" y="271.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (18,179,140 samples, 0.15%)</title><rect x="960.6" y="325" width="1.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="963.64" y="335.5" ></text>
</g>
<g >
<title>lru_cache_add (47,974,063 samples, 0.38%)</title><rect x="346.9" y="325" width="4.6" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="349.94" y="335.5" ></text>
</g>
<g >
<title>rest_init (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="469" width="6.8" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="1186.23" y="479.5" ></text>
</g>
<g >
<title>add_to_page_cache_lru (689,744,154 samples, 5.51%)</title><rect x="286.4" y="341" width="65.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="289.40" y="351.5" >add_to_..</text>
</g>
<g >
<title>cpuidle_idle_call (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="421" width="6.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1186.23" y="431.5" ></text>
</g>
<g >
<title>palloc (22,268,516 samples, 0.18%)</title><rect x="875.8" y="549" width="2.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="878.79" y="559.5" ></text>
</g>
<g >
<title>slab_free_freelist_hook.constprop.0 (2,361,574 samples, 0.02%)</title><rect x="954.6" y="245" width="0.2" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="957.61" y="255.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (2,368,450 samples, 0.02%)</title><rect x="952.0" y="293" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="955.03" y="303.5" ></text>
</g>
<g >
<title>__poll (180,905,682 samples, 1.45%)</title><rect x="73.9" y="533" width="17.0" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="76.86" y="543.5" ></text>
</g>
<g >
<title>[psql] (247,517,398 samples, 1.98%)</title><rect x="940.9" y="501" width="23.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="943.93" y="511.5" >[..</text>
</g>
<g >
<title>tick_sched_timer (14,327,766 samples, 0.11%)</title><rect x="860.9" y="453" width="1.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="863.94" y="463.5" ></text>
</g>
<g >
<title>scsi_complete (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="341" width="7.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1009.64" y="351.5" ></text>
</g>
<g >
<title>vma_interval_tree_iter_first (73,212,495 samples, 0.59%)</title><rect x="36.4" y="245" width="6.9" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="39.39" y="255.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (48,940,885 samples, 0.39%)</title><rect x="959.5" y="421" width="4.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="962.48" y="431.5" ></text>
</g>
<g >
<title>bvec_free (74,906,592 samples, 0.60%)</title><rect x="1006.6" y="181" width="7.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text  x="1009.64" y="191.5" ></text>
</g>
<g >
<title>smp_call_function_single (69,621,029 samples, 0.56%)</title><rect x="53.8" y="325" width="6.6" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="56.81" y="335.5" ></text>
</g>
<g >
<title>page_counter_try_charge (16,552,524 samples, 0.13%)</title><rect x="342.3" y="261" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="345.29" y="271.5" ></text>
</g>
<g >
<title>filemap_get_read_batch (47,718,386 samples, 0.38%)</title><rect x="260.7" y="389" width="4.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="263.68" y="399.5" ></text>
</g>
<g >
<title>StrategyGetBuffer (15,081,073 samples, 0.12%)</title><rect x="149.5" y="533" width="1.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="152.45" y="543.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (14,615,188 samples, 0.12%)</title><rect x="1169.4" y="469" width="1.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1172.42" y="479.5" ></text>
</g>
<g >
<title>rseq_ip_fixup (4,710,755 samples, 0.04%)</title><rect x="963.7" y="325" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="966.66" y="335.5" ></text>
</g>
<g >
<title>flush_smp_call_function_from_idle (2,521,794 samples, 0.02%)</title><rect x="1183.0" y="501" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1185.99" y="511.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (68,734,431 samples, 0.55%)</title><rect x="352.9" y="197" width="6.5" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="355.89" y="207.5" ></text>
</g>
<g >
<title>_perf_ioctl (86,760,879 samples, 0.69%)</title><rect x="52.4" y="389" width="8.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="55.41" y="399.5" ></text>
</g>
<g >
<title>blk_mq_do_dispatch_sched (68,734,431 samples, 0.55%)</title><rect x="352.9" y="181" width="6.5" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text  x="355.89" y="191.5" ></text>
</g>
<g >
<title>tick_program_event (2,639,585 samples, 0.02%)</title><rect x="1167.8" y="405" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1170.80" y="415.5" ></text>
</g>
<g >
<title>find_busiest_group (71,793,633 samples, 0.57%)</title><rect x="1183.2" y="245" width="6.8" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1186.23" y="255.5" ></text>
</g>
<g >
<title>rcu_idle_exit (1,997,357 samples, 0.02%)</title><rect x="1153.3" y="437" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1156.26" y="447.5" ></text>
</g>
<g >
<title>__cond_resched (9,672,160 samples, 0.08%)</title><rect x="64.4" y="293" width="0.9" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="67.37" y="303.5" ></text>
</g>
<g >
<title>cfree@GLIBC_2.2.5 (16,530,979 samples, 0.13%)</title><rect x="201.6" y="533" width="1.5" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="204.57" y="543.5" ></text>
</g>
<g >
<title>process_one_work (50,929,006 samples, 0.41%)</title><rect x="17.3" y="501" width="4.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="20.27" y="511.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (31,205,561 samples, 0.25%)</title><rect x="366.4" y="245" width="3.0" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="369.42" y="255.5" ></text>
</g>
<g >
<title>__submit_bio (31,205,561 samples, 0.25%)</title><rect x="366.4" y="261" width="3.0" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="369.42" y="271.5" ></text>
</g>
<g >
<title>acpi_ns_search_parent_tree (2,175,907 samples, 0.02%)</title><rect x="17.1" y="309" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="20.06" y="319.5" ></text>
</g>
<g >
<title>schedule_idle (39,589,747 samples, 0.32%)</title><rect x="1171.9" y="485" width="3.7" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="1174.86" y="495.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,114,728 samples, 0.02%)</title><rect x="963.5" y="293" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="966.46" y="303.5" ></text>
</g>
<g >
<title>__irqentry_text_start (100,068,456 samples, 0.80%)</title><rect x="975.4" y="453" width="9.5" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="978.43" y="463.5" ></text>
</g>
<g >
<title>ExecInterpExpr (30,588,100 samples, 0.24%)</title><rect x="152.2" y="517" width="2.9" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="155.22" y="527.5" ></text>
</g>
<g >
<title>__writeback_inodes_wb (75,817,615 samples, 0.61%)</title><rect x="22.1" y="437" width="7.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="25.07" y="447.5" ></text>
</g>
<g >
<title>vfs_open (80,096,276 samples, 0.64%)</title><rect x="44.5" y="293" width="7.6" height="15.0" fill="rgb(232,125,29)" rx="2" ry="2" />
<text  x="47.50" y="303.5" ></text>
</g>
<g >
<title>wb_writeback (75,817,615 samples, 0.61%)</title><rect x="22.1" y="453" width="7.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="25.07" y="463.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (1,140,737,731 samples, 9.12%)</title><rect x="266.7" y="357" width="107.6" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="269.66" y="367.5" >page_cache_ra..</text>
</g>
<g >
<title>native_sched_clock (2,035,496 samples, 0.02%)</title><rect x="1170.6" y="389" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1173.60" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (145,676,058 samples, 1.16%)</title><rect x="90.9" y="485" width="13.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="93.92" y="495.5" ></text>
</g>
<g >
<title>cpuidle_idle_call (2,056,517,784 samples, 16.44%)</title><rect x="975.4" y="485" width="194.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="978.43" y="495.5" >cpuidle_idle_call</text>
</g>
<g >
<title>tick_nohz_stop_tick (19,363,491 samples, 0.15%)</title><rect x="1167.6" y="453" width="1.8" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1170.59" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (74,888,722 samples, 0.60%)</title><rect x="10.0" y="501" width="7.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="13.00" y="511.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,967,575 samples, 0.17%)</title><rect x="387.8" y="517" width="2.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="390.78" y="527.5" ></text>
</g>
<g >
<title>alloc_pages_vma (8,052,033 samples, 0.06%)</title><rect x="972.4" y="421" width="0.7" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="975.36" y="431.5" ></text>
</g>
<g >
<title>scheduler_tick (4,782,572 samples, 0.04%)</title><rect x="1016.1" y="309" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1019.08" y="319.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (2,729,057 samples, 0.02%)</title><rect x="956.2" y="197" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="959.16" y="207.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (1,110,320 samples, 0.01%)</title><rect x="1168.1" y="421" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1171.05" y="431.5" ></text>
</g>
<g >
<title>__cgroup_throttle_swaprate (74,092,432 samples, 0.59%)</title><rect x="964.9" y="421" width="7.0" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="967.94" y="431.5" ></text>
</g>
</g>
</svg>