perf-with-64bit-1.8m.svg

application/octet-stream

Filename: perf-with-64bit-1.8m.svg
Type: application/octet-stream
Part: 1
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>submit_bio_noacct (22,302,984 samples, 0.18%)</title><rect x="589.6" y="277" width="2.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="592.62" y="287.5" ></text>
</g>
<g >
<title>ixgbe_update_stats (74,392,349 samples, 0.61%)</title><rect x="22.7" y="469" width="7.2" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" />
<text  x="25.70" y="479.5" ></text>
</g>
<g >
<title>scheduler_tick (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="293" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1123.49" y="303.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4,656,696 samples, 0.04%)</title><rect x="1123.2" y="389" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="1126.24" y="399.5" ></text>
</g>
<g >
<title>mwait_idle_with_hints.constprop.0 (1,309,459 samples, 0.01%)</title><rect x="1189.6" y="373" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1192.62" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irq (1,166,681 samples, 0.01%)</title><rect x="59.6" y="341" width="0.1" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="62.62" y="351.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (19,744,926 samples, 0.16%)</title><rect x="403.3" y="453" width="1.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="406.30" y="463.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (2,430,757 samples, 0.02%)</title><rect x="1123.2" y="357" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1126.24" y="367.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (67,377,381 samples, 0.55%)</title><rect x="104.7" y="405" width="6.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="107.71" y="415.5" ></text>
</g>
<g >
<title>search_binary_handler (73,446,926 samples, 0.60%)</title><rect x="45.5" y="421" width="7.1" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text  x="48.55" y="431.5" ></text>
</g>
<g >
<title>perf_cpu_map__idx (3,562,672 samples, 0.03%)</title><rect x="68.9" y="453" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="71.90" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,788,381 samples, 0.01%)</title><rect x="1126.5" y="389" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1129.47" y="399.5" ></text>
</g>
<g >
<title>do_anonymous_page (1,860,090 samples, 0.02%)</title><rect x="1127.4" y="437" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1130.42" y="447.5" ></text>
</g>
<g >
<title>ExecStoreBufferHeapTuple (21,596,624 samples, 0.18%)</title><rect x="121.9" y="549" width="2.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="124.94" y="559.5" ></text>
</g>
<g >
<title>clockevents_program_event (1,844,927 samples, 0.02%)</title><rect x="1182.1" y="389" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1185.08" y="399.5" ></text>
</g>
<g >
<title>cpuidle_enter (499,047,025 samples, 4.09%)</title><rect x="1130.3" y="469" width="48.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1133.28" y="479.5" >cpui..</text>
</g>
<g >
<title>clear_page_erms (20,943,317 samples, 0.17%)</title><rect x="607.3" y="357" width="2.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="610.33" y="367.5" ></text>
</g>
<g >
<title>perf_poll (82,051,342 samples, 0.67%)</title><rect x="81.3" y="437" width="7.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="84.28" y="447.5" ></text>
</g>
<g >
<title>__mod_timer (64,385,252 samples, 0.53%)</title><rect x="16.5" y="277" width="6.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="19.48" y="287.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (2,244,113 samples, 0.02%)</title><rect x="1126.1" y="405" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="1129.10" y="415.5" ></text>
</g>
<g >
<title>perf_mmap__push (75,847,424 samples, 0.62%)</title><rect x="89.2" y="517" width="7.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="92.20" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (26,647,528 samples, 0.22%)</title><rect x="1124.7" y="517" width="2.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1127.67" y="527.5" ></text>
</g>
<g >
<title>call_timer_fn (84,901,418 samples, 0.70%)</title><rect x="1139.6" y="341" width="8.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1142.60" y="351.5" ></text>
</g>
<g >
<title>update_rq_clock (1,994,880 samples, 0.02%)</title><rect x="1181.2" y="453" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="1184.23" y="463.5" ></text>
</g>
<g >
<title>dequeue_task (1,794,773 samples, 0.01%)</title><rect x="1122.6" y="277" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="1125.60" y="287.5" ></text>
</g>
<g >
<title>start_secondary (541,804,420 samples, 4.44%)</title><rect x="1130.1" y="533" width="52.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1133.13" y="543.5" >start..</text>
</g>
<g >
<title>_Fork (63,281,290 samples, 0.52%)</title><rect x="429.4" y="549" width="6.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="432.37" y="559.5" ></text>
</g>
<g >
<title>[psql] (266,677,017 samples, 2.18%)</title><rect x="1097.9" y="501" width="25.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="1100.93" y="511.5" >[..</text>
</g>
<g >
<title>tick_nohz_stop_tick (9,667,506 samples, 0.08%)</title><rect x="1179.1" y="453" width="0.9" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text  x="1182.09" y="463.5" ></text>
</g>
<g >
<title>asm_common_interrupt (22,984,339 samples, 0.19%)</title><rect x="401.1" y="501" width="2.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="404.08" y="511.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (41,329,388 samples, 0.34%)</title><rect x="581.3" y="149" width="4.0" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="584.34" y="159.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,419,088 samples, 0.03%)</title><rect x="1116.5" y="325" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1119.47" y="335.5" ></text>
</g>
<g >
<title>__x64_sys_sendto (39,667,816 samples, 0.32%)</title><rect x="605.5" y="501" width="3.9" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="608.53" y="511.5" ></text>
</g>
<g >
<title>cpu__max_cpu (1,181,317 samples, 0.01%)</title><rect x="68.8" y="437" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="71.78" y="447.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (10,154,115 samples, 0.08%)</title><rect x="1115.8" y="405" width="1.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1118.82" y="415.5" ></text>
</g>
<g >
<title>scsi_prepare_cmd (20,347,661 samples, 0.17%)</title><rect x="583.4" y="117" width="1.9" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="586.37" y="127.5" ></text>
</g>
<g >
<title>filemap_read (1,537,003,177 samples, 12.58%)</title><rect x="443.3" y="421" width="148.5" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="446.30" y="431.5" >filemap_read</text>
</g>
<g >
<title>rebalance_domains (19,744,926 samples, 0.16%)</title><rect x="403.3" y="421" width="1.9" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="406.30" y="431.5" ></text>
</g>
<g >
<title>rmqueue (1,788,381 samples, 0.01%)</title><rect x="1126.5" y="373" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="1129.47" y="383.5" ></text>
</g>
<g >
<title>add_timer (64,385,252 samples, 0.53%)</title><rect x="16.5" y="293" width="6.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="19.48" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (63,281,290 samples, 0.52%)</title><rect x="429.4" y="517" width="6.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="432.37" y="527.5" ></text>
</g>
<g >
<title>do_syscall_64 (151,999,622 samples, 1.24%)</title><rect x="96.5" y="485" width="14.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="99.53" y="495.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (22,302,984 samples, 0.18%)</title><rect x="589.6" y="245" width="2.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="592.62" y="255.5" ></text>
</g>
<g >
<title>perf (672,029,760 samples, 5.50%)</title><rect x="52.6" y="565" width="65.0" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="55.64" y="575.5" >perf</text>
</g>
<g >
<title>__schedule (4,707,790 samples, 0.04%)</title><rect x="1122.6" y="293" width="0.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1125.60" y="303.5" ></text>
</g>
<g >
<title>blk_mq_do_dispatch_sched (81,184,559 samples, 0.66%)</title><rect x="577.5" y="181" width="7.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text  x="580.49" y="191.5" ></text>
</g>
<g >
<title>cpuidle_idle_call (76,827,900 samples, 0.63%)</title><rect x="1182.5" y="421" width="7.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1185.46" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (3,419,088 samples, 0.03%)</title><rect x="1116.5" y="277" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1119.47" y="287.5" ></text>
</g>
<g >
<title>lapic_next_deadline (1,844,927 samples, 0.02%)</title><rect x="1182.1" y="373" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text  x="1185.08" y="383.5" ></text>
</g>
<g >
<title>__skb_datagram_iter (7,875,520 samples, 0.06%)</title><rect x="1119.6" y="261" width="0.7" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1122.56" y="271.5" ></text>
</g>
<g >
<title>do_syscall_64 (73,446,926 samples, 0.60%)</title><rect x="45.5" y="517" width="7.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="48.55" y="527.5" ></text>
</g>
<g >
<title>__alloc_pages (39,667,816 samples, 0.32%)</title><rect x="605.5" y="389" width="3.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="608.53" y="399.5" ></text>
</g>
<g >
<title>perf_mmap__read_init (65,655,582 samples, 0.54%)</title><rect x="111.2" y="517" width="6.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="114.21" y="527.5" ></text>
</g>
<g >
<title>__common_interrupt (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="405" width="1.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1133.35" y="415.5" ></text>
</g>
<g >
<title>__x64_sys_sched_setaffinity (46,657,971 samples, 0.38%)</title><rect x="69.4" y="405" width="4.5" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text  x="72.36" y="415.5" ></text>
</g>
<g >
<title>tick_irq_enter (1,563,961 samples, 0.01%)</title><rect x="1132.4" y="389" width="0.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="1135.37" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (34,851,992 samples, 0.29%)</title><rect x="1117.0" y="389" width="3.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1119.96" y="399.5" ></text>
</g>
<g >
<title>perf-exec (73,446,926 samples, 0.60%)</title><rect x="45.5" y="565" width="7.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="48.55" y="575.5" ></text>
</g>
<g >
<title>irq_exit_rcu (22,984,339 samples, 0.19%)</title><rect x="401.1" y="485" width="2.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="404.08" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_write (74,457,327 samples, 0.61%)</title><rect x="74.1" y="437" width="7.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="77.09" y="447.5" ></text>
</g>
<g >
<title>fput (1,173,831 samples, 0.01%)</title><rect x="68.2" y="421" width="0.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="71.15" y="431.5" ></text>
</g>
<g >
<title>exit_mmap (73,446,926 samples, 0.60%)</title><rect x="45.5" y="341" width="7.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="48.55" y="351.5" ></text>
</g>
<g >
<title>affinity__set (1,181,317 samples, 0.01%)</title><rect x="68.8" y="453" width="0.1" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="71.78" y="463.5" ></text>
</g>
<g >
<title>unix_destruct_scm (1,936,961 samples, 0.02%)</title><rect x="1119.4" y="261" width="0.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="1122.38" y="271.5" ></text>
</g>
<g >
<title>__strlen_evex (46,167,764 samples, 0.38%)</title><rect x="419.2" y="517" width="4.4" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="422.16" y="527.5" ></text>
</g>
<g >
<title>hrtimer_try_to_cancel.part.0 (1,844,927 samples, 0.02%)</title><rect x="1182.1" y="437" width="0.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text  x="1185.08" y="447.5" ></text>
</g>
<g >
<title>__sys_recvfrom (1,573,230 samples, 0.01%)</title><rect x="1117.0" y="373" width="0.1" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1119.96" y="383.5" ></text>
</g>
<g >
<title>tick_sched_handle (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="277" width="7.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1185.46" y="287.5" ></text>
</g>
<g >
<title>socket_putmessage (23,457,052 samples, 0.19%)</title><rect x="1091.9" y="549" width="2.2" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="1094.86" y="559.5" ></text>
</g>
<g >
<title>rcu_idle_exit (1,372,280 samples, 0.01%)</title><rect x="1178.2" y="437" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1181.22" y="447.5" ></text>
</g>
<g >
<title>ata_scsi_qc_complete (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="245" width="1.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1133.35" y="255.5" ></text>
</g>
<g >
<title>rw_verify_area (40,015,512 samples, 0.33%)</title><rect x="593.7" y="469" width="3.9" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="596.73" y="479.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (64,385,252 samples, 0.53%)</title><rect x="16.5" y="405" width="6.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="19.48" y="415.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.constprop.0 (1,494,337 samples, 0.01%)</title><rect x="66.6" y="197" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="69.56" y="207.5" ></text>
</g>
<g >
<title>new_sync_read (1,578,471,971 samples, 12.92%)</title><rect x="441.3" y="469" width="152.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="444.26" y="479.5" >new_sync_read</text>
</g>
<g >
<title>__libc_pread (1,700,456,947 samples, 13.92%)</title><rect x="435.5" y="549" width="164.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="438.49" y="559.5" >__libc_pread</text>
</g>
<g >
<title>ext4_file_read_iter (1,578,471,971 samples, 12.92%)</title><rect x="441.3" y="453" width="152.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="444.26" y="463.5" >ext4_file_read_iter</text>
</g>
<g >
<title>update_sd_lb_stats.constprop.0 (19,744,926 samples, 0.16%)</title><rect x="403.3" y="373" width="1.9" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="406.30" y="383.5" ></text>
</g>
<g >
<title>blk_mq_dispatch_rq_list (64,385,252 samples, 0.53%)</title><rect x="16.5" y="373" width="6.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="19.48" y="383.5" ></text>
</g>
<g >
<title>__blk_mq_run_hw_queue (81,184,559 samples, 0.66%)</title><rect x="577.5" y="229" width="7.8" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="580.49" y="239.5" ></text>
</g>
<g >
<title>do_idle (78,039,624 samples, 0.64%)</title><rect x="1182.5" y="437" width="7.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1185.46" y="447.5" ></text>
</g>
<g >
<title>unmap_single_vma (73,446,926 samples, 0.60%)</title><rect x="45.5" y="309" width="7.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="48.55" y="319.5" ></text>
</g>
<g >
<title>submit_bio_noacct (74,661,841 samples, 0.61%)</title><rect x="38.3" y="277" width="7.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="41.33" y="287.5" ></text>
</g>
<g >
<title>skb_release_data (19,558,781 samples, 0.16%)</title><rect x="1117.5" y="277" width="1.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1120.49" y="287.5" ></text>
</g>
<g >
<title>rcu_eqs_exit.constprop.0 (1,372,280 samples, 0.01%)</title><rect x="1178.2" y="421" width="0.2" height="15.0" fill="rgb(209,20,5)" rx="2" ry="2" />
<text  x="1181.22" y="431.5" ></text>
</g>
<g >
<title>__blk_mq_delay_run_hw_queue (81,184,559 samples, 0.66%)</title><rect x="577.5" y="245" width="7.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="580.49" y="255.5" ></text>
</g>
<g >
<title>flush_smp_call_function_from_idle (9,953,266 samples, 0.08%)</title><rect x="1180.0" y="485" width="1.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text  x="1183.03" y="495.5" ></text>
</g>
<g >
<title>__queue_delayed_work (64,385,252 samples, 0.53%)</title><rect x="16.5" y="309" width="6.2" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text  x="19.48" y="319.5" ></text>
</g>
<g >
<title>xas_store (19,987,878 samples, 0.16%)</title><rect x="569.5" y="309" width="1.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="572.48" y="319.5" ></text>
</g>
<g >
<title>__sys_recvfrom (33,278,762 samples, 0.27%)</title><rect x="1117.1" y="357" width="3.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text  x="1120.11" y="367.5" ></text>
</g>
<g >
<title>page_counter_cancel (9,283,557 samples, 0.08%)</title><rect x="1117.9" y="181" width="0.9" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="1120.85" y="191.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (1,211,724 samples, 0.01%)</title><rect x="1189.9" y="389" width="0.1" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1192.88" y="399.5" ></text>
</g>
<g >
<title>exec_binprm (73,446,926 samples, 0.60%)</title><rect x="45.5" y="437" width="7.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="48.55" y="447.5" ></text>
</g>
<g >
<title>bio_alloc_bioset (21,197,359 samples, 0.17%)</title><rect x="587.6" y="293" width="2.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="590.57" y="303.5" ></text>
</g>
<g >
<title>__GI___execve (73,446,926 samples, 0.60%)</title><rect x="45.5" y="549" width="7.1" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="48.55" y="559.5" ></text>
</g>
<g >
<title>charge_memcg (22,409,228 samples, 0.18%)</title><rect x="559.5" y="293" width="2.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="562.54" y="303.5" ></text>
</g>
<g >
<title>psi_group_change (12,197,173 samples, 0.10%)</title><rect x="72.7" y="245" width="1.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="75.68" y="255.5" ></text>
</g>
<g >
<title>int8out (18,088,099 samples, 0.15%)</title><rect x="417.4" y="533" width="1.8" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text  x="420.41" y="543.5" ></text>
</g>
<g >
<title>perf_event_task_tick (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="277" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
<text  x="1123.49" y="287.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (82,051,342 samples, 0.67%)</title><rect x="81.3" y="453" width="7.9" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="84.28" y="463.5" ></text>
</g>
<g >
<title>iterate_groups (1,321,308 samples, 0.01%)</title><rect x="1122.8" y="277" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="1125.77" y="287.5" ></text>
</g>
<g >
<title>tick_program_event (1,211,724 samples, 0.01%)</title><rect x="1189.9" y="357" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1192.88" y="367.5" ></text>
</g>
<g >
<title>[psql] (266,677,017 samples, 2.18%)</title><rect x="1097.9" y="517" width="25.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="1100.93" y="527.5" >[..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (19,744,926 samples, 0.16%)</title><rect x="403.3" y="501" width="1.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="406.30" y="511.5" ></text>
</g>
<g >
<title>wake_q_add (8,265,745 samples, 0.07%)</title><rect x="69.5" y="309" width="0.8" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text  x="72.47" y="319.5" ></text>
</g>
<g >
<title>perf_poll (84,409,880 samples, 0.69%)</title><rect x="96.5" y="421" width="8.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="99.53" y="431.5" ></text>
</g>
<g >
<title>__remove_hrtimer (1,844,927 samples, 0.02%)</title><rect x="1182.1" y="421" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1185.08" y="431.5" ></text>
</g>
<g >
<title>blk_mq_requeue_work (64,385,252 samples, 0.53%)</title><rect x="16.5" y="485" width="6.2" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" />
<text  x="19.48" y="495.5" ></text>
</g>
<g >
<title>pg_server_to_client (24,016,050 samples, 0.20%)</title><rect x="405.2" y="517" width="2.3" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="408.21" y="527.5" ></text>
</g>
<g >
<title>filemap_get_pages (1,254,951,126 samples, 10.27%)</title><rect x="470.5" y="405" width="121.3" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="473.55" y="415.5" >filemap_get_pages</text>
</g>
<g >
<title>start_thread (217,655,204 samples, 1.78%)</title><rect x="96.5" y="549" width="21.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="99.53" y="559.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (81,184,559 samples, 0.66%)</title><rect x="577.5" y="197" width="7.8" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="580.49" y="207.5" ></text>
</g>
<g >
<title>__x64_sys_read (67,058,175 samples, 0.55%)</title><rect x="10.0" y="485" width="6.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="13.00" y="495.5" ></text>
</g>
<g >
<title>__remove_hrtimer (1,768,336 samples, 0.01%)</title><rect x="1132.2" y="357" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1135.20" y="367.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (22,711,892 samples, 0.19%)</title><rect x="561.7" y="293" width="2.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="564.70" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,860,090 samples, 0.02%)</title><rect x="1127.4" y="533" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1130.42" y="543.5" ></text>
</g>
<g >
<title>mod_delayed_work_on (64,385,252 samples, 0.53%)</title><rect x="16.5" y="325" width="6.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="19.48" y="335.5" ></text>
</g>
<g >
<title>menu_reflect (2,012,759 samples, 0.02%)</title><rect x="1178.5" y="453" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="1181.49" y="463.5" ></text>
</g>
<g >
<title>xas_load (22,664,423 samples, 0.19%)</title><rect x="474.5" y="373" width="2.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="477.46" y="383.5" ></text>
</g>
<g >
<title>PQgetResult (266,677,017 samples, 2.18%)</title><rect x="1097.9" y="453" width="25.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1100.93" y="463.5" >P..</text>
</g>
<g >
<title>tick_nohz_idle_exit (5,561,674 samples, 0.05%)</title><rect x="1181.9" y="485" width="0.6" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1184.92" y="495.5" ></text>
</g>
<g >
<title>rmqueue (139,090,117 samples, 1.14%)</title><rect x="493.1" y="277" width="13.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text  x="496.08" y="287.5" ></text>
</g>
<g >
<title>cpuidle_enter (76,827,900 samples, 0.63%)</title><rect x="1182.5" y="405" width="7.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1185.46" y="415.5" ></text>
</g>
<g >
<title>__handle_mm_fault (20,072,999 samples, 0.16%)</title><rect x="1125.0" y="469" width="1.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1127.97" y="479.5" ></text>
</g>
<g >
<title>arch_call_rest_init (78,039,624 samples, 0.64%)</title><rect x="1182.5" y="485" width="7.5" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="1185.46" y="495.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,119,473 samples, 0.01%)</title><rect x="62.3" y="261" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="65.25" y="271.5" ></text>
</g>
<g >
<title>__add_to_page_cache_locked (591,809,269 samples, 4.84%)</title><rect x="514.2" y="325" width="57.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="517.24" y="335.5" >__add_..</text>
</g>
<g >
<title>free_pcppages_bulk (4,157,215 samples, 0.03%)</title><rect x="1118.8" y="197" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1121.75" y="207.5" ></text>
</g>
<g >
<title>_int_malloc (38,606,290 samples, 0.32%)</title><rect x="1123.7" y="549" width="3.7" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1126.69" y="559.5" ></text>
</g>
<g >
<title>sock_sendmsg (39,667,816 samples, 0.32%)</title><rect x="605.5" y="469" width="3.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="608.53" y="479.5" ></text>
</g>
<g >
<title>tick_nohz_next_event (2,867,390 samples, 0.02%)</title><rect x="1178.8" y="421" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
<text  x="1181.81" y="431.5" ></text>
</g>
<g >
<title>tick_sched_timer (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="341" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1123.49" y="351.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queues (64,385,252 samples, 0.53%)</title><rect x="16.5" y="469" width="6.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="19.48" y="479.5" ></text>
</g>
<g >
<title>rw_verify_area (20,877,329 samples, 0.17%)</title><rect x="439.2" y="485" width="2.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="442.24" y="495.5" ></text>
</g>
<g >
<title>ExecInterpExpr (110,754,183 samples, 0.91%)</title><rect x="152.0" y="517" width="10.7" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="154.98" y="527.5" ></text>
</g>
<g >
<title>ResourceOwnerForget (18,910,863 samples, 0.15%)</title><rect x="148.4" y="533" width="1.8" height="15.0" fill="rgb(235,142,33)" rx="2" ry="2" />
<text  x="151.37" y="543.5" ></text>
</g>
<g >
<title>printtup_startup (46,167,764 samples, 0.38%)</title><rect x="419.2" y="533" width="4.4" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text  x="422.16" y="543.5" ></text>
</g>
<g >
<title>cmd_record (296,475,790 samples, 2.43%)</title><rect x="52.6" y="501" width="28.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="55.64" y="511.5" >cm..</text>
</g>
<g >
<title>internal_putbytes (49,658,337 samples, 0.41%)</title><rect x="1015.5" y="549" width="4.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1018.49" y="559.5" ></text>
</g>
<g >
<title>copy_mm (63,281,290 samples, 0.52%)</title><rect x="429.4" y="437" width="6.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text  x="432.37" y="447.5" ></text>
</g>
<g >
<title>check_cpu_stall (1,119,473 samples, 0.01%)</title><rect x="62.3" y="149" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="65.25" y="159.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1,411,083 samples, 0.01%)</title><rect x="1181.8" y="453" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1184.79" y="463.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="357" width="7.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1185.46" y="367.5" ></text>
</g>
<g >
<title>perf_event_ctx_lock_nested.constprop.0 (5,565,918 samples, 0.05%)</title><rect x="67.6" y="389" width="0.6" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="70.62" y="399.5" ></text>
</g>
<g >
<title>__calc_delta (1,794,773 samples, 0.01%)</title><rect x="1122.6" y="229" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="1125.60" y="239.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (1,544,821 samples, 0.01%)</title><rect x="1180.6" y="357" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="1183.56" y="367.5" ></text>
</g>
<g >
<title>load_balance (19,744,926 samples, 0.16%)</title><rect x="403.3" y="405" width="1.9" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="406.30" y="415.5" ></text>
</g>
<g >
<title>blk_mq_get_tag (22,302,984 samples, 0.18%)</title><rect x="589.6" y="213" width="2.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="592.62" y="223.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (74,457,327 samples, 0.61%)</title><rect x="74.1" y="421" width="7.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="77.09" y="431.5" ></text>
</g>
<g >
<title>dequeue_entity (1,794,773 samples, 0.01%)</title><rect x="1122.6" y="245" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1125.60" y="255.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (22,118,264 samples, 0.18%)</title><rect x="1018.2" y="453" width="2.1" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text  x="1021.15" y="463.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="421" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1123.49" y="431.5" ></text>
</g>
<g >
<title>sched_clock (1,393,531 samples, 0.01%)</title><rect x="1178.4" y="421" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1181.35" y="431.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (1,403,893 samples, 0.01%)</title><rect x="1121.6" y="373" width="0.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1124.56" y="383.5" ></text>
</g>
<g >
<title>read_tsc (1,211,724 samples, 0.01%)</title><rect x="1189.9" y="325" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1192.88" y="335.5" ></text>
</g>
<g >
<title>__evlist__disable.constprop.0 (64,324,564 samples, 0.53%)</title><rect x="52.6" y="485" width="6.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text  x="55.64" y="495.5" ></text>
</g>
<g >
<title>ret_from_fork (26,186,933 samples, 0.21%)</title><rect x="1127.6" y="549" width="2.5" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1130.60" y="559.5" ></text>
</g>
<g >
<title>sock_poll (1,870,602 samples, 0.02%)</title><rect x="1123.1" y="341" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text  x="1126.06" y="351.5" ></text>
</g>
<g >
<title>event_function_call (81,632,253 samples, 0.67%)</title><rect x="59.7" y="341" width="7.9" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="62.73" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (1,500,491 samples, 0.01%)</title><rect x="1116.7" y="261" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="1119.66" y="271.5" ></text>
</g>
<g >
<title>balance_fair (12,456,426 samples, 0.10%)</title><rect x="70.3" y="245" width="1.2" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="73.27" y="255.5" ></text>
</g>
<g >
<title>free_compound_page (17,226,814 samples, 0.14%)</title><rect x="1117.5" y="245" width="1.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1120.49" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,716,767 samples, 0.01%)</title><rect x="1120.3" y="421" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1123.33" y="431.5" ></text>
</g>
<g >
<title>native_sched_clock (1,393,531 samples, 0.01%)</title><rect x="1178.4" y="405" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1181.35" y="415.5" ></text>
</g>
<g >
<title>tick_program_event (3,175,974 samples, 0.03%)</title><rect x="1179.3" y="405" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1182.32" y="415.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (161,526,203 samples, 1.32%)</title><rect x="1132.2" y="437" width="15.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1135.20" y="447.5" ></text>
</g>
<g >
<title>ata_scsi_translate (20,981,727 samples, 0.17%)</title><rect x="581.3" y="69" width="2.1" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" />
<text  x="584.34" y="79.5" ></text>
</g>
<g >
<title>menu_select (4,243,293 samples, 0.03%)</title><rect x="1178.7" y="453" width="0.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text  x="1181.68" y="463.5" ></text>
</g>
<g >
<title>clockevents_program_event (3,175,974 samples, 0.03%)</title><rect x="1179.3" y="389" width="0.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1182.32" y="399.5" ></text>
</g>
<g >
<title>sync_regs (1,728,805 samples, 0.01%)</title><rect x="1127.2" y="533" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1130.25" y="543.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (1,973,246 samples, 0.02%)</title><rect x="68.3" y="405" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="71.27" y="415.5" ></text>
</g>
<g >
<title>add_to_page_cache_lru (734,763,487 samples, 6.01%)</title><rect x="506.5" y="341" width="71.0" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="509.52" y="351.5" >add_to_p..</text>
</g>
<g >
<title>page_counter_uncharge (9,283,557 samples, 0.08%)</title><rect x="1117.9" y="197" width="0.9" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1120.85" y="207.5" ></text>
</g>
<g >
<title>scsi_queue_rq (41,329,388 samples, 0.34%)</title><rect x="581.3" y="133" width="4.0" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text  x="584.34" y="143.5" ></text>
</g>
<g >
<title>run_timer_softirq (84,901,418 samples, 0.70%)</title><rect x="1139.6" y="373" width="8.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
<text  x="1142.60" y="383.5" ></text>
</g>
<g >
<title>affinity__set (64,324,564 samples, 0.53%)</title><rect x="52.6" y="453" width="6.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="55.64" y="463.5" ></text>
</g>
<g >
<title>_nohz_idle_balance.constprop.0.isra.0 (71,808,717 samples, 0.59%)</title><rect x="1132.6" y="357" width="7.0" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1135.63" y="367.5" ></text>
</g>
<g >
<title>tick_nohz_idle_enter (1,411,083 samples, 0.01%)</title><rect x="1181.8" y="485" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text  x="1184.79" y="495.5" ></text>
</g>
<g >
<title>perf_adjust_freq_unthr_context (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="261" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text  x="1123.49" y="271.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (12,199,312 samples, 0.10%)</title><rect x="1122.1" y="357" width="1.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="1125.06" y="367.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (5,588,592 samples, 0.05%)</title><rect x="1179.1" y="421" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text  x="1182.09" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (1,788,381 samples, 0.01%)</title><rect x="1126.5" y="405" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1129.47" y="415.5" ></text>
</g>
<g >
<title>__pagevec_lru_add (1,369,283 samples, 0.01%)</title><rect x="1126.6" y="389" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="1129.64" y="399.5" ></text>
</g>
<g >
<title>run_builtin (296,475,790 samples, 2.43%)</title><rect x="52.6" y="517" width="28.7" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="55.64" y="527.5" >ru..</text>
</g>
<g >
<title>ahci_handle_port_interrupt (22,118,264 samples, 0.18%)</title><rect x="1018.2" y="405" width="2.1" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1021.15" y="415.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (5,588,592 samples, 0.05%)</title><rect x="1179.1" y="437" width="0.5" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1182.09" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (63,281,290 samples, 0.52%)</title><rect x="429.4" y="533" width="6.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="432.37" y="543.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,768,336 samples, 0.01%)</title><rect x="1132.2" y="373" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1135.20" y="383.5" ></text>
</g>
<g >
<title>kworker/u290:2 (74,661,841 samples, 0.61%)</title><rect x="38.3" y="565" width="7.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="41.33" y="575.5" ></text>
</g>
<g >
<title>page_counter_uncharge (2,132,227 samples, 0.02%)</title><rect x="1117.6" y="213" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1120.65" y="223.5" ></text>
</g>
<g >
<title>AllocSetReset (83,312,419 samples, 0.68%)</title><rect x="136.6" y="533" width="8.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="139.65" y="543.5" ></text>
</g>
<g >
<title>process_one_work (74,392,349 samples, 0.61%)</title><rect x="22.7" y="501" width="7.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="25.70" y="511.5" ></text>
</g>
<g >
<title>sched_setaffinity (45,451,795 samples, 0.37%)</title><rect x="69.5" y="389" width="4.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="72.47" y="399.5" ></text>
</g>
<g >
<title>remote_function (53,650,833 samples, 0.44%)</title><rect x="62.4" y="293" width="5.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="65.36" y="303.5" ></text>
</g>
<g >
<title>kernel_clone (63,281,290 samples, 0.52%)</title><rect x="429.4" y="469" width="6.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="432.37" y="479.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (2,229,102 samples, 0.02%)</title><rect x="1179.1" y="405" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1182.09" y="415.5" ></text>
</g>
<g >
<title>tick_nohz_idle_exit (1,211,724 samples, 0.01%)</title><rect x="1189.9" y="421" width="0.1" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="1192.88" y="431.5" ></text>
</g>
<g >
<title>pg_ulltoa_n.part.0 (78,388,976 samples, 0.64%)</title><rect x="1022.0" y="549" width="7.5" height="15.0" fill="rgb(252,217,52)" rx="2" ry="2" />
<text  x="1024.95" y="559.5" ></text>
</g>
<g >
<title>unix_stream_sendmsg (39,667,816 samples, 0.32%)</title><rect x="605.5" y="453" width="3.9" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="608.53" y="463.5" ></text>
</g>
<g >
<title>place_entity (1,345,202 samples, 0.01%)</title><rect x="1180.7" y="389" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="1183.71" y="399.5" ></text>
</g>
<g >
<title>rcu_sched_clock_irq (1,119,473 samples, 0.01%)</title><rect x="62.3" y="165" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="65.25" y="175.5" ></text>
</g>
<g >
<title>__free_one_page (4,157,215 samples, 0.03%)</title><rect x="1118.8" y="181" width="0.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="1121.75" y="191.5" ></text>
</g>
<g >
<title>AllocSetAlloc (66,407,459 samples, 0.54%)</title><rect x="130.2" y="533" width="6.4" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="133.23" y="543.5" ></text>
</g>
<g >
<title>mwait_idle_with_hints.constprop.0 (311,153,852 samples, 2.55%)</title><rect x="1148.2" y="437" width="30.0" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="1151.16" y="447.5" >mw..</text>
</g>
<g >
<title>delayed_work_timer_fn (42,858,843 samples, 0.35%)</title><rect x="1143.7" y="325" width="4.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1146.66" y="335.5" ></text>
</g>
<g >
<title>ret_from_fork (64,385,252 samples, 0.53%)</title><rect x="16.5" y="549" width="6.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="19.48" y="559.5" ></text>
</g>
<g >
<title>wb_workfn (74,661,841 samples, 0.61%)</title><rect x="38.3" y="485" width="7.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="41.33" y="495.5" ></text>
</g>
<g >
<title>sock_recvmsg (30,907,983 samples, 0.25%)</title><rect x="1117.3" y="341" width="3.0" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1120.34" y="351.5" ></text>
</g>
<g >
<title>__pollwait (82,051,342 samples, 0.67%)</title><rect x="81.3" y="421" width="7.9" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text  x="84.28" y="431.5" ></text>
</g>
<g >
<title>_perf_ioctl (85,917,224 samples, 0.70%)</title><rect x="59.3" y="389" width="8.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="62.32" y="399.5" ></text>
</g>
<g >
<title>process_one_work (87,484,032 samples, 0.72%)</title><rect x="29.9" y="501" width="8.4" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="32.88" y="511.5" ></text>
</g>
<g >
<title>enqueue_entity (4,931,790 samples, 0.04%)</title><rect x="1180.2" y="389" width="0.5" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" />
<text  x="1183.23" y="399.5" ></text>
</g>
<g >
<title>rest_init (78,039,624 samples, 0.64%)</title><rect x="1182.5" y="469" width="7.5" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
<text  x="1185.46" y="479.5" ></text>
</g>
<g >
<title>__slab_free (2,331,967 samples, 0.02%)</title><rect x="1119.2" y="245" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="1122.15" y="255.5" ></text>
</g>
<g >
<title>try_charge_memcg (3,758,047 samples, 0.03%)</title><rect x="1125.7" y="389" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1128.74" y="399.5" ></text>
</g>
<g >
<title>lru_cache_add_inactive_or_unevictable (1,369,283 samples, 0.01%)</title><rect x="1126.6" y="421" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1129.64" y="431.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (5,734,510 samples, 0.05%)</title><rect x="1119.8" y="229" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1122.77" y="239.5" ></text>
</g>
<g >
<title>psi_task_change (1,567,925 samples, 0.01%)</title><rect x="1180.8" y="405" width="0.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1183.84" y="415.5" ></text>
</g>
<g >
<title>psi_group_change (25,681,033 samples, 0.21%)</title><rect x="1127.6" y="453" width="2.5" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="1130.64" y="463.5" ></text>
</g>
<g >
<title>mutex_unlock (2,269,841 samples, 0.02%)</title><rect x="59.0" y="405" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="61.99" y="415.5" ></text>
</g>
<g >
<title>vmacache_find (2,552,013 samples, 0.02%)</title><rect x="1116.0" y="341" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1119.05" y="351.5" ></text>
</g>
<g >
<title>cpuidle_idle_call (516,584,157 samples, 4.23%)</title><rect x="1130.1" y="485" width="49.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1133.13" y="495.5" >cpuid..</text>
</g>
<g >
<title>leave_mm (3,723,054 samples, 0.03%)</title><rect x="1147.8" y="437" width="0.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1150.80" y="447.5" ></text>
</g>
<g >
<title>postgres (10,147,595,545 samples, 83.07%)</title><rect x="117.6" y="565" width="980.2" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text  x="120.56" y="575.5" >postgres</text>
</g>
<g >
<title>x86_pmu_enable (14,465,449 samples, 0.12%)</title><rect x="66.1" y="229" width="1.4" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text  x="69.15" y="239.5" ></text>
</g>
<g >
<title>perf_evlist__poll_thread (217,655,204 samples, 1.78%)</title><rect x="96.5" y="533" width="21.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text  x="99.53" y="543.5" ></text>
</g>
<g >
<title>wb_writeback (74,661,841 samples, 0.61%)</title><rect x="38.3" y="453" width="7.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="41.33" y="463.5" ></text>
</g>
<g >
<title>zap_pte_range (73,446,926 samples, 0.60%)</title><rect x="45.5" y="261" width="7.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text  x="48.55" y="271.5" ></text>
</g>
<g >
<title>blk_mq_sched_dispatch_requests (81,184,559 samples, 0.66%)</title><rect x="577.5" y="213" width="7.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text  x="580.49" y="223.5" ></text>
</g>
<g >
<title>unix_stream_recvmsg (30,907,983 samples, 0.25%)</title><rect x="1117.3" y="325" width="3.0" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="1120.34" y="335.5" ></text>
</g>
<g >
<title>mpage_prepare_extent_to_map (74,661,841 samples, 0.61%)</title><rect x="38.3" y="357" width="7.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="41.33" y="367.5" ></text>
</g>
<g >
<title>native_write_msr (8,698,892 samples, 0.07%)</title><rect x="66.7" y="197" width="0.8" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="69.71" y="207.5" ></text>
</g>
<g >
<title>find_busiest_group (19,744,926 samples, 0.16%)</title><rect x="403.3" y="389" width="1.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="406.30" y="399.5" ></text>
</g>
<g >
<title>do_sys_poll (15,971,698 samples, 0.13%)</title><rect x="1121.7" y="373" width="1.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1124.69" y="383.5" ></text>
</g>
<g >
<title>psi_task_switch (1,591,709 samples, 0.01%)</title><rect x="1122.9" y="277" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1125.90" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (82,051,342 samples, 0.67%)</title><rect x="81.3" y="517" width="7.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="84.28" y="527.5" ></text>
</g>
<g >
<title>exc_page_fault (1,860,090 samples, 0.02%)</title><rect x="1127.4" y="517" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1130.42" y="527.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_statistics.constprop.0 (22,409,228 samples, 0.18%)</title><rect x="559.5" y="277" width="2.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="562.54" y="287.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.0 (73,446,926 samples, 0.60%)</title><rect x="45.5" y="485" width="7.1" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="48.55" y="495.5" ></text>
</g>
<g >
<title>bprm_execve.part.0 (73,446,926 samples, 0.60%)</title><rect x="45.5" y="453" width="7.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="48.55" y="463.5" ></text>
</g>
<g >
<title>submit_bio (74,661,841 samples, 0.61%)</title><rect x="38.3" y="293" width="7.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="41.33" y="303.5" ></text>
</g>
<g >
<title>simple_copy_to_iter (5,734,510 samples, 0.05%)</title><rect x="1119.8" y="245" width="0.5" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="1122.77" y="255.5" ></text>
</g>
<g >
<title>__x64_sys_poll (17,375,591 samples, 0.14%)</title><rect x="1121.6" y="389" width="1.6" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="1124.56" y="399.5" ></text>
</g>
<g >
<title>ksys_read (67,058,175 samples, 0.55%)</title><rect x="10.0" y="469" width="6.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="13.00" y="479.5" ></text>
</g>
<g >
<title>__schedule (37,186,050 samples, 0.30%)</title><rect x="70.3" y="277" width="3.6" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="73.27" y="287.5" ></text>
</g>
<g >
<title>ext4_readahead (66,651,781 samples, 0.55%)</title><rect x="585.3" y="325" width="6.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="588.33" y="335.5" ></text>
</g>
<g >
<title>handle_pte_fault (17,088,464 samples, 0.14%)</title><rect x="1125.3" y="453" width="1.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1128.26" y="463.5" ></text>
</g>
<g >
<title>do_sys_poll (82,051,342 samples, 0.67%)</title><rect x="81.3" y="469" width="7.9" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="84.28" y="479.5" ></text>
</g>
<g >
<title>ext4_writepages (74,661,841 samples, 0.61%)</title><rect x="38.3" y="373" width="7.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="41.33" y="383.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (73,446,926 samples, 0.60%)</title><rect x="45.5" y="533" width="7.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="48.55" y="543.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_insert (63,281,290 samples, 0.52%)</title><rect x="429.4" y="373" width="6.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="432.37" y="383.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range_clock (4,707,790 samples, 0.04%)</title><rect x="1122.6" y="325" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1125.60" y="335.5" ></text>
</g>
<g >
<title>palloc (17,212,353 samples, 0.14%)</title><rect x="1020.3" y="549" width="1.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text  x="1023.29" y="559.5" ></text>
</g>
<g >
<title>__x64_sys_execve (73,446,926 samples, 0.60%)</title><rect x="45.5" y="501" width="7.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text  x="48.55" y="511.5" ></text>
</g>
<g >
<title>LockBufHdr (19,917,325 samples, 0.16%)</title><rect x="126.3" y="549" width="2.0" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text  x="129.34" y="559.5" ></text>
</g>
<g >
<title>lru_cache_add (1,369,283 samples, 0.01%)</title><rect x="1126.6" y="405" width="0.2" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="1129.64" y="415.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (2,126,169 samples, 0.02%)</title><rect x="1182.3" y="453" width="0.2" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text  x="1185.26" y="463.5" ></text>
</g>
<g >
<title>ata_qc_complete_multiple (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="293" width="1.9" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text  x="1133.35" y="303.5" ></text>
</g>
<g >
<title>__libc_recv (1,547,083 samples, 0.01%)</title><rect x="1097.8" y="533" width="0.1" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1100.78" y="543.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="485" width="2.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1016.44" y="495.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (1,409,510 samples, 0.01%)</title><rect x="1126.8" y="405" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text  x="1129.77" y="415.5" ></text>
</g>
<g >
<title>__pagevec_lru_add_fn (1,369,283 samples, 0.01%)</title><rect x="1126.6" y="373" width="0.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="1129.64" y="383.5" ></text>
</g>
<g >
<title>free_unref_page (4,157,215 samples, 0.03%)</title><rect x="1118.8" y="229" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1121.75" y="239.5" ></text>
</g>
<g >
<title>__ata_qc_complete (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="261" width="1.9" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1133.35" y="271.5" ></text>
</g>
<g >
<title>scsi_init_command (20,347,661 samples, 0.17%)</title><rect x="583.4" y="101" width="1.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="586.37" y="111.5" ></text>
</g>
<g >
<title>irq_exit_rcu (158,193,906 samples, 1.29%)</title><rect x="1132.5" y="405" width="15.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1135.52" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (98,687,853 samples, 0.81%)</title><rect x="58.9" y="437" width="9.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="61.93" y="447.5" ></text>
</g>
<g >
<title>ext4_bio_write_page (74,661,841 samples, 0.61%)</title><rect x="38.3" y="309" width="7.2" height="15.0" fill="rgb(228,105,25)" rx="2" ry="2" />
<text  x="41.33" y="319.5" ></text>
</g>
<g >
<title>stop_one_cpu_nowait (8,265,745 samples, 0.07%)</title><rect x="69.5" y="325" width="0.8" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" />
<text  x="72.47" y="335.5" ></text>
</g>
<g >
<title>security_file_permission (40,015,512 samples, 0.33%)</title><rect x="593.7" y="453" width="3.9" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text  x="596.73" y="463.5" ></text>
</g>
<g >
<title>native_write_msr (3,175,974 samples, 0.03%)</title><rect x="1179.3" y="373" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="1182.32" y="383.5" ></text>
</g>
<g >
<title>__x64_sys_recvfrom (33,278,762 samples, 0.27%)</title><rect x="1117.1" y="373" width="3.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1120.11" y="383.5" ></text>
</g>
<g >
<title>record__mmap_read_evlist.constprop.0 (75,847,424 samples, 0.62%)</title><rect x="89.2" y="533" width="7.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="92.20" y="543.5" ></text>
</g>
<g >
<title>poll_freewait (67,377,381 samples, 0.55%)</title><rect x="104.7" y="437" width="6.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="107.71" y="447.5" ></text>
</g>
<g >
<title>rcu_idle_exit (1,375,369 samples, 0.01%)</title><rect x="1189.8" y="389" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="1192.75" y="399.5" ></text>
</g>
<g >
<title>scsi_complete (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="437" width="2.1" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text  x="1016.44" y="447.5" ></text>
</g>
<g >
<title>irq_enter_rcu (1,563,961 samples, 0.01%)</title><rect x="1132.4" y="405" width="0.1" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
<text  x="1135.37" y="415.5" ></text>
</g>
<g >
<title>ctx_resched (25,908,748 samples, 0.21%)</title><rect x="65.0" y="245" width="2.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="68.04" y="255.5" ></text>
</g>
<g >
<title>tick_sched_timer (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="293" width="7.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1185.46" y="303.5" ></text>
</g>
<g >
<title>seq_read_iter (67,058,175 samples, 0.55%)</title><rect x="10.0" y="405" width="6.5" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="13.00" y="415.5" ></text>
</g>
<g >
<title>ahci_single_level_irq_intr (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="341" width="1.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1133.35" y="351.5" ></text>
</g>
<g >
<title>bprm_execve (73,446,926 samples, 0.60%)</title><rect x="45.5" y="469" width="7.1" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="48.55" y="479.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (28,280,564 samples, 0.23%)</title><rect x="1124.5" y="533" width="2.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1127.52" y="543.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,119,473 samples, 0.01%)</title><rect x="62.3" y="245" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="65.25" y="255.5" ></text>
</g>
<g >
<title>cmd_record (157,898,766 samples, 1.29%)</title><rect x="81.3" y="549" width="15.2" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="84.28" y="559.5" ></text>
</g>
<g >
<title>__add_to_page_cache_locked (85,577,876 samples, 0.70%)</title><rect x="476.7" y="341" width="8.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="479.65" y="351.5" ></text>
</g>
<g >
<title>remove_wait_queue (67,377,381 samples, 0.55%)</title><rect x="104.7" y="421" width="6.5" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="107.71" y="431.5" ></text>
</g>
<g >
<title>__poll (82,051,342 samples, 0.67%)</title><rect x="81.3" y="533" width="7.9" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="84.28" y="543.5" ></text>
</g>
<g >
<title>smp_call_function_single (75,599,353 samples, 0.62%)</title><rect x="60.3" y="325" width="7.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text  x="63.31" y="335.5" ></text>
</g>
<g >
<title>worker_thread (87,484,032 samples, 0.72%)</title><rect x="29.9" y="517" width="8.4" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="32.88" y="527.5" ></text>
</g>
<g >
<title>alloc_skb_with_frags (39,667,816 samples, 0.32%)</title><rect x="605.5" y="421" width="3.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text  x="608.53" y="431.5" ></text>
</g>
<g >
<title>record__pushfn (74,457,327 samples, 0.61%)</title><rect x="74.1" y="453" width="7.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="77.09" y="463.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="405" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1123.49" y="415.5" ></text>
</g>
<g >
<title>kthread (74,392,349 samples, 0.61%)</title><rect x="22.7" y="533" width="7.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="25.70" y="543.5" ></text>
</g>
<g >
<title>do_idle (541,804,420 samples, 4.44%)</title><rect x="1130.1" y="501" width="52.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1133.13" y="511.5" >do_idle</text>
</g>
<g >
<title>proc_reg_read_iter (67,058,175 samples, 0.55%)</title><rect x="10.0" y="421" width="6.5" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text  x="13.00" y="431.5" ></text>
</g>
<g >
<title>__blk_mq_end_request (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="373" width="2.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1016.44" y="383.5" ></text>
</g>
<g >
<title>update_process_times (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="261" width="7.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1185.46" y="271.5" ></text>
</g>
<g >
<title>alloc_pages (39,667,816 samples, 0.32%)</title><rect x="605.5" y="405" width="3.9" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="608.53" y="415.5" ></text>
</g>
<g >
<title>clockevents_program_event (1,211,724 samples, 0.01%)</title><rect x="1189.9" y="341" width="0.1" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="1192.88" y="351.5" ></text>
</g>
<g >
<title>cpuidle_reflect (2,012,759 samples, 0.02%)</title><rect x="1178.5" y="469" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1181.49" y="479.5" ></text>
</g>
<g >
<title>cpuidle_enter_state (75,452,531 samples, 0.62%)</title><rect x="1182.5" y="389" width="7.3" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="1185.46" y="399.5" ></text>
</g>
<g >
<title>__switch_to (2,113,978 samples, 0.02%)</title><rect x="1121.4" y="421" width="0.2" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="1124.35" y="431.5" ></text>
</g>
<g >
<title>asm_common_interrupt (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="533" width="2.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1016.44" y="543.5" ></text>
</g>
<g >
<title>tick_nohz_get_sleep_length (2,867,390 samples, 0.02%)</title><rect x="1178.8" y="437" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text  x="1181.81" y="447.5" ></text>
</g>
<g >
<title>blk_mq_complete_request (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="229" width="1.9" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text  x="1133.35" y="239.5" ></text>
</g>
<g >
<title>asm_common_interrupt (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="437" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1133.35" y="447.5" ></text>
</g>
<g >
<title>x86_64_start_reservations (78,039,624 samples, 0.64%)</title><rect x="1182.5" y="517" width="7.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1185.46" y="527.5" ></text>
</g>
<g >
<title>quiet_vmstat (4,078,914 samples, 0.03%)</title><rect x="1179.6" y="437" width="0.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text  x="1182.63" y="447.5" ></text>
</g>
<g >
<title>AllocSetAlloc (19,054,494 samples, 0.16%)</title><rect x="117.6" y="549" width="1.8" height="15.0" fill="rgb(231,124,29)" rx="2" ry="2" />
<text  x="120.56" y="559.5" ></text>
</g>
<g >
<title>mmput (73,446,926 samples, 0.60%)</title><rect x="45.5" y="357" width="7.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text  x="48.55" y="367.5" ></text>
</g>
<g >
<title>add_wait_queue (82,051,342 samples, 0.67%)</title><rect x="81.3" y="405" width="7.9" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="84.28" y="415.5" ></text>
</g>
<g >
<title>heapgetpage (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="549" width="2.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text  x="1016.44" y="559.5" ></text>
</g>
<g >
<title>ata_scsi_queuecmd (20,981,727 samples, 0.17%)</title><rect x="581.3" y="101" width="2.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="584.34" y="111.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (73,446,926 samples, 0.60%)</title><rect x="45.5" y="277" width="7.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="48.55" y="287.5" ></text>
</g>
<g >
<title>standard_ExecutorRun (40,428,180 samples, 0.33%)</title><rect x="423.6" y="533" width="3.9" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="426.62" y="543.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (1,119,473 samples, 0.01%)</title><rect x="62.3" y="229" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="65.25" y="239.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (59,843,630 samples, 0.49%)</title><rect x="599.7" y="549" width="5.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="602.74" y="559.5" ></text>
</g>
<g >
<title>worker_thread (74,392,349 samples, 0.61%)</title><rect x="22.7" y="517" width="7.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="25.70" y="527.5" ></text>
</g>
<g >
<title>__writeback_single_inode (74,661,841 samples, 0.61%)</title><rect x="38.3" y="405" width="7.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="41.33" y="415.5" ></text>
</g>
<g >
<title>schedule (4,707,790 samples, 0.04%)</title><rect x="1122.6" y="309" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1125.60" y="319.5" ></text>
</g>
<g >
<title>__pagevec_lru_add_fn (19,097,493 samples, 0.16%)</title><rect x="575.6" y="293" width="1.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text  x="578.65" y="303.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (82,051,342 samples, 0.67%)</title><rect x="81.3" y="389" width="7.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="84.28" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,289,518 samples, 0.04%)</title><rect x="1116.3" y="341" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1119.29" y="351.5" ></text>
</g>
<g >
<title>skb_copy_datagram_iter (7,875,520 samples, 0.06%)</title><rect x="1119.6" y="277" width="0.7" height="15.0" fill="rgb(245,188,45)" rx="2" ry="2" />
<text  x="1122.56" y="287.5" ></text>
</g>
<g >
<title>filemap_get_read_batch (40,693,412 samples, 0.33%)</title><rect x="472.7" y="389" width="4.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" />
<text  x="475.72" y="399.5" ></text>
</g>
<g >
<title>__sched_setaffinity (45,451,795 samples, 0.37%)</title><rect x="69.5" y="373" width="4.4" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="72.47" y="383.5" ></text>
</g>
<g >
<title>__fget_light (20,149,182 samples, 0.16%)</title><rect x="437.3" y="485" width="1.9" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="440.29" y="495.5" ></text>
</g>
<g >
<title>load_elf_binary (73,446,926 samples, 0.60%)</title><rect x="45.5" y="405" width="7.1" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text  x="48.55" y="415.5" ></text>
</g>
<g >
<title>__writeback_inodes_wb (74,661,841 samples, 0.61%)</title><rect x="38.3" y="437" width="7.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text  x="41.33" y="447.5" ></text>
</g>
<g >
<title>cpuidle_enter_state (498,788,144 samples, 4.08%)</title><rect x="1130.3" y="453" width="48.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="1133.31" y="463.5" >cpui..</text>
</g>
<g >
<title>update_process_times (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="309" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="1123.49" y="319.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (1,119,473 samples, 0.01%)</title><rect x="62.3" y="277" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="65.25" y="287.5" ></text>
</g>
<g >
<title>handle_edge_irq (22,118,264 samples, 0.18%)</title><rect x="1018.2" y="485" width="2.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1021.15" y="495.5" ></text>
</g>
<g >
<title>main (296,475,790 samples, 2.43%)</title><rect x="52.6" y="533" width="28.7" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
<text  x="55.64" y="543.5" >main</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (1,768,336 samples, 0.01%)</title><rect x="1132.2" y="405" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1135.20" y="415.5" ></text>
</g>
<g >
<title>asm_common_interrupt (22,118,264 samples, 0.18%)</title><rect x="1018.2" y="533" width="2.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1021.15" y="543.5" ></text>
</g>
<g >
<title>__rq_qos_throttle (74,661,841 samples, 0.61%)</title><rect x="38.3" y="229" width="7.2" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" />
<text  x="41.33" y="239.5" ></text>
</g>
<g >
<title>prepare_task_switch (1,851,827 samples, 0.02%)</title><rect x="1181.6" y="453" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="1184.61" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (67,058,175 samples, 0.55%)</title><rect x="10.0" y="501" width="6.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="13.00" y="511.5" ></text>
</g>
<g >
<title>update_load_avg (3,429,478 samples, 0.03%)</title><rect x="1180.4" y="373" width="0.3" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text  x="1183.37" y="383.5" ></text>
</g>
<g >
<title>flush_smp_call_function_queue (9,953,266 samples, 0.08%)</title><rect x="1180.0" y="469" width="1.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="1183.03" y="479.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="373" width="7.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="1185.46" y="383.5" ></text>
</g>
<g >
<title>load_balance (71,808,717 samples, 0.59%)</title><rect x="1132.6" y="325" width="7.0" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text  x="1135.63" y="335.5" ></text>
</g>
<g >
<title>do_user_addr_fault (1,860,090 samples, 0.02%)</title><rect x="1127.4" y="501" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1130.42" y="511.5" ></text>
</g>
<g >
<title>free_unref_page_commit.constprop.0 (4,157,215 samples, 0.03%)</title><rect x="1118.8" y="213" width="0.4" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1121.75" y="223.5" ></text>
</g>
<g >
<title>page_add_new_anon_rmap (1,409,510 samples, 0.01%)</title><rect x="1126.8" y="421" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="1129.77" y="431.5" ></text>
</g>
<g >
<title>__common_interrupt (22,118,264 samples, 0.18%)</title><rect x="1018.2" y="501" width="2.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="1021.15" y="511.5" ></text>
</g>
<g >
<title>uncharge_batch (9,283,557 samples, 0.08%)</title><rect x="1117.9" y="213" width="0.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text  x="1120.85" y="223.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (99,426,929 samples, 0.81%)</title><rect x="58.9" y="453" width="9.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="61.85" y="463.5" ></text>
</g>
<g >
<title>kworker/u288:2- (74,392,349 samples, 0.61%)</title><rect x="22.7" y="565" width="7.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="25.70" y="575.5" ></text>
</g>
<g >
<title>do_user_addr_fault (7,841,531 samples, 0.06%)</title><rect x="1116.0" y="373" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1119.05" y="383.5" ></text>
</g>
<g >
<title>run_rebalance_domains (72,206,882 samples, 0.59%)</title><rect x="1132.6" y="373" width="7.0" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1135.63" y="383.5" ></text>
</g>
<g >
<title>__cond_resched (37,186,050 samples, 0.30%)</title><rect x="70.3" y="293" width="3.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text  x="73.27" y="303.5" ></text>
</g>
<g >
<title>worker_thread (74,661,841 samples, 0.61%)</title><rect x="38.3" y="517" width="7.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="41.33" y="527.5" ></text>
</g>
<g >
<title>tick_nohz_idle_got_tick (2,012,759 samples, 0.02%)</title><rect x="1178.5" y="437" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text  x="1181.49" y="447.5" ></text>
</g>
<g >
<title>_nohz_idle_balance.constprop.0.isra.0 (4,493,289 samples, 0.04%)</title><rect x="1181.0" y="469" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1183.99" y="479.5" ></text>
</g>
<g >
<title>common_interrupt (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="517" width="2.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1016.44" y="527.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (45,121,120 samples, 0.37%)</title><rect x="559.5" y="309" width="4.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="562.54" y="319.5" ></text>
</g>
<g >
<title>_perf_event_enable (82,798,934 samples, 0.68%)</title><rect x="59.6" y="357" width="8.0" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text  x="62.62" y="367.5" ></text>
</g>
<g >
<title>schedule_idle (3,800,951 samples, 0.03%)</title><rect x="1181.4" y="485" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="1184.42" y="495.5" ></text>
</g>
<g >
<title>irq_exit_rcu (19,744,926 samples, 0.16%)</title><rect x="403.3" y="469" width="1.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="406.30" y="479.5" ></text>
</g>
<g >
<title>get_page_from_freelist (223,601,796 samples, 1.83%)</title><rect x="484.9" y="293" width="21.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="487.92" y="303.5" >g..</text>
</g>
<g >
<title>[unknown] (67,058,175 samples, 0.55%)</title><rect x="10.0" y="549" width="6.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="13.00" y="559.5" ></text>
</g>
<g >
<title>lru_cache_add (62,987,950 samples, 0.52%)</title><rect x="571.4" y="325" width="6.1" height="15.0" fill="rgb(247,196,47)" rx="2" ry="2" />
<text  x="574.41" y="335.5" ></text>
</g>
<g >
<title>blk_stat_timer_fn (42,042,575 samples, 0.34%)</title><rect x="1139.6" y="325" width="4.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" />
<text  x="1142.60" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1,860,090 samples, 0.02%)</title><rect x="1127.4" y="469" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text  x="1130.42" y="479.5" ></text>
</g>
<g >
<title>kthread (74,661,841 samples, 0.61%)</title><rect x="38.3" y="533" width="7.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="41.33" y="543.5" ></text>
</g>
<g >
<title>[libpq.so.5.14] (110,085,985 samples, 0.90%)</title><rect x="1106.2" y="421" width="10.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1109.17" y="431.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (2,225,939 samples, 0.02%)</title><rect x="1123.5" y="373" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1126.47" y="383.5" ></text>
</g>
<g >
<title>swapper (619,844,044 samples, 5.07%)</title><rect x="1130.1" y="565" width="59.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text  x="1133.13" y="575.5" >swapper</text>
</g>
<g >
<title>ret_from_fork (74,661,841 samples, 0.61%)</title><rect x="38.3" y="549" width="7.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="41.33" y="559.5" ></text>
</g>
<g >
<title>cgroup_rstat_flush_irqsafe (87,484,032 samples, 0.72%)</title><rect x="29.9" y="453" width="8.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="32.88" y="463.5" ></text>
</g>
<g >
<title>anon_vma_fork (63,281,290 samples, 0.52%)</title><rect x="429.4" y="405" width="6.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="432.37" y="415.5" ></text>
</g>
<g >
<title>tick_nohz_idle_stop_tick (9,667,506 samples, 0.08%)</title><rect x="1179.1" y="469" width="0.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="1182.09" y="479.5" ></text>
</g>
<g >
<title>blk_flush_plug_list (81,184,559 samples, 0.66%)</title><rect x="577.5" y="309" width="7.8" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="580.49" y="319.5" ></text>
</g>
<g >
<title>irq_exit_rcu (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="501" width="2.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1016.44" y="511.5" ></text>
</g>
<g >
<title>ExecScan (38,067,093 samples, 0.31%)</title><rect x="144.7" y="533" width="3.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text  x="147.69" y="543.5" ></text>
</g>
<g >
<title>record__mmap_read_evlist.constprop.0 (74,457,327 samples, 0.61%)</title><rect x="74.1" y="485" width="7.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text  x="77.09" y="495.5" ></text>
</g>
<g >
<title>do_poll.constprop.0 (84,622,241 samples, 0.69%)</title><rect x="96.5" y="437" width="8.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
<text  x="99.53" y="447.5" ></text>
</g>
<g >
<title>tick_nohz_restart (1,211,724 samples, 0.01%)</title><rect x="1189.9" y="405" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1192.88" y="415.5" ></text>
</g>
<g >
<title>charge_memcg (7,189,802 samples, 0.06%)</title><rect x="1125.4" y="405" width="0.7" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text  x="1128.41" y="415.5" ></text>
</g>
<g >
<title>blk_mq_submit_bio (74,661,841 samples, 0.61%)</title><rect x="38.3" y="245" width="7.2" height="15.0" fill="rgb(224,89,21)" rx="2" ry="2" />
<text  x="41.33" y="255.5" ></text>
</g>
<g >
<title>__put_page (17,226,814 samples, 0.14%)</title><rect x="1117.5" y="261" width="1.7" height="15.0" fill="rgb(225,96,22)" rx="2" ry="2" />
<text  x="1120.49" y="271.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (11,595,991 samples, 0.09%)</title><rect x="66.4" y="213" width="1.1" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="69.43" y="223.5" ></text>
</g>
<g >
<title>[libpq.so.5.14] (266,677,017 samples, 2.18%)</title><rect x="1097.9" y="469" width="25.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1100.93" y="479.5" >[..</text>
</g>
<g >
<title>__x64_sys_sched_setaffinity (1,172,608 samples, 0.01%)</title><rect x="69.2" y="421" width="0.2" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" />
<text  x="72.24" y="431.5" ></text>
</g>
<g >
<title>mem_cgroup_charge_statistics.constprop.0 (1,281,512 samples, 0.01%)</title><rect x="1125.6" y="389" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1128.62" y="399.5" ></text>
</g>
<g >
<title>unix_stream_read_generic (30,907,983 samples, 0.25%)</title><rect x="1117.3" y="309" width="3.0" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text  x="1120.34" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (82,051,342 samples, 0.67%)</title><rect x="81.3" y="501" width="7.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="84.28" y="511.5" ></text>
</g>
<g >
<title>sched_ttwu_pending (9,953,266 samples, 0.08%)</title><rect x="1180.0" y="453" width="1.0" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="1183.03" y="463.5" ></text>
</g>
<g >
<title>__mem_cgroup_flush_stats (87,484,032 samples, 0.72%)</title><rect x="29.9" y="469" width="8.4" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text  x="32.88" y="479.5" ></text>
</g>
<g >
<title>vfs_read (22,222,357 samples, 0.18%)</title><rect x="597.6" y="501" width="2.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="600.60" y="511.5" ></text>
</g>
<g >
<title>vfs_read (67,058,175 samples, 0.55%)</title><rect x="10.0" y="453" width="6.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="13.00" y="463.5" ></text>
</g>
<g >
<title>read_pages (147,836,340 samples, 1.21%)</title><rect x="577.5" y="341" width="14.3" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="580.49" y="351.5" ></text>
</g>
<g >
<title>byteain (4,144,652,616 samples, 33.93%)</title><rect x="609.4" y="549" width="400.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="612.36" y="559.5" >byteain</text>
</g>
<g >
<title>blk_mq_flush_plug_list (81,184,559 samples, 0.66%)</title><rect x="577.5" y="293" width="7.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="580.49" y="303.5" ></text>
</g>
<g >
<title>exc_page_fault (7,841,531 samples, 0.06%)</title><rect x="1116.0" y="389" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text  x="1119.05" y="399.5" ></text>
</g>
<g >
<title>xas_find_conflict (40,940,264 samples, 0.34%)</title><rect x="563.9" y="309" width="4.0" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
<text  x="566.90" y="319.5" ></text>
</g>
<g >
<title>pq_sendcountedtext (19,799,567 samples, 0.16%)</title><rect x="407.5" y="517" width="1.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text  x="410.53" y="527.5" ></text>
</g>
<g >
<title>__libc_start_call_main (266,677,017 samples, 2.18%)</title><rect x="1097.9" y="549" width="25.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="1100.93" y="559.5" >_..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (161,526,203 samples, 1.32%)</title><rect x="1132.2" y="421" width="15.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1135.20" y="431.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (158,193,906 samples, 1.29%)</title><rect x="1132.5" y="389" width="15.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1135.52" y="399.5" ></text>
</g>
<g >
<title>perf_event_for_each_child (84,328,208 samples, 0.69%)</title><rect x="59.5" y="373" width="8.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="62.47" y="383.5" ></text>
</g>
<g >
<title>scsi_finish_command (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="421" width="2.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text  x="1016.44" y="431.5" ></text>
</g>
<g >
<title>run_rebalance_domains (19,744,926 samples, 0.16%)</title><rect x="403.3" y="437" width="1.9" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="406.30" y="447.5" ></text>
</g>
<g >
<title>update_process_times (1,119,473 samples, 0.01%)</title><rect x="62.3" y="181" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text  x="65.25" y="191.5" ></text>
</g>
<g >
<title>__mem_cgroup_uncharge (13,069,599 samples, 0.11%)</title><rect x="1117.5" y="229" width="1.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text  x="1120.49" y="239.5" ></text>
</g>
<g >
<title>ttwu_do_activate (9,953,266 samples, 0.08%)</title><rect x="1180.0" y="437" width="1.0" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text  x="1183.03" y="447.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (64,385,252 samples, 0.53%)</title><rect x="16.5" y="229" width="6.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text  x="19.48" y="239.5" ></text>
</g>
<g >
<title>touch_atime (20,295,239 samples, 0.17%)</title><rect x="591.8" y="421" width="1.9" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text  x="594.77" y="431.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (82,517,600 samples, 0.68%)</title><rect x="409.4" y="533" width="8.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="412.44" y="543.5" ></text>
</g>
<g >
<title>__x64_sys_poll (82,051,342 samples, 0.67%)</title><rect x="81.3" y="485" width="7.9" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="84.28" y="495.5" ></text>
</g>
<g >
<title>_raw_spin_lock (2,670,030 samples, 0.02%)</title><rect x="1178.8" y="405" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text  x="1181.81" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (39,667,816 samples, 0.32%)</title><rect x="605.5" y="533" width="3.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="608.53" y="543.5" ></text>
</g>
<g >
<title>__errno_location (1,608,855 samples, 0.01%)</title><rect x="1116.8" y="421" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="1119.80" y="431.5" ></text>
</g>
<g >
<title>page_cache_async_ra (1,191,779,499 samples, 9.76%)</title><rect x="476.7" y="389" width="115.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="479.65" y="399.5" >page_cache_asy..</text>
</g>
<g >
<title>pud_val (3,512,982 samples, 0.03%)</title><rect x="1126.9" y="469" width="0.3" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" />
<text  x="1129.91" y="479.5" ></text>
</g>
<g >
<title>handle_irq_event (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="373" width="1.9" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1133.35" y="383.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="357" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1123.49" y="367.5" ></text>
</g>
<g >
<title>sched_clock_idle_sleep_event (1,411,083 samples, 0.01%)</title><rect x="1181.8" y="469" width="0.1" height="15.0" fill="rgb(250,210,50)" rx="2" ry="2" />
<text  x="1184.79" y="479.5" ></text>
</g>
<g >
<title>__page_cache_alloc (223,601,796 samples, 1.83%)</title><rect x="484.9" y="341" width="21.6" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="487.92" y="351.5" >_..</text>
</g>
<g >
<title>process_one_work (74,661,841 samples, 0.61%)</title><rect x="38.3" y="501" width="7.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="41.33" y="511.5" ></text>
</g>
<g >
<title>__sys_sendto (39,667,816 samples, 0.32%)</title><rect x="605.5" y="485" width="3.9" height="15.0" fill="rgb(236,146,34)" rx="2" ry="2" />
<text  x="608.53" y="495.5" ></text>
</g>
<g >
<title>ata_qc_complete (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="277" width="1.9" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="1133.35" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (151,999,622 samples, 1.24%)</title><rect x="96.5" y="501" width="14.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="99.53" y="511.5" ></text>
</g>
<g >
<title>rb_insert_color (2,229,102 samples, 0.02%)</title><rect x="1179.1" y="389" width="0.2" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
<text  x="1182.09" y="399.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3,419,088 samples, 0.03%)</title><rect x="1116.5" y="293" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1119.47" y="303.5" ></text>
</g>
<g >
<title>alloc_cpumask_var (1,206,176 samples, 0.01%)</title><rect x="69.4" y="389" width="0.1" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text  x="72.36" y="399.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (10,973,383 samples, 0.09%)</title><rect x="1125.3" y="421" width="1.0" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text  x="1128.26" y="431.5" ></text>
</g>
<g >
<title>start_kernel (78,039,624 samples, 0.64%)</title><rect x="1182.5" y="501" width="7.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="1185.46" y="511.5" ></text>
</g>
<g >
<title>cgroup_rstat_flush_locked (87,484,032 samples, 0.72%)</title><rect x="29.9" y="437" width="8.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="32.88" y="447.5" ></text>
</g>
<g >
<title>switch_mm_irqs_off (3,723,054 samples, 0.03%)</title><rect x="1147.8" y="421" width="0.4" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1150.80" y="431.5" ></text>
</g>
<g >
<title>hash_search_with_hash_value (17,364,509 samples, 0.14%)</title><rect x="1011.8" y="549" width="1.6" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text  x="1014.77" y="559.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (21,080,461 samples, 0.17%)</title><rect x="573.6" y="293" width="2.0" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="576.61" y="303.5" ></text>
</g>
<g >
<title>__evlist__enable.constprop.0 (155,371,669 samples, 1.27%)</title><rect x="58.9" y="485" width="15.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="61.85" y="495.5" ></text>
</g>
<g >
<title>[unknown] (3,096,818,329 samples, 25.35%)</title><rect x="130.2" y="549" width="299.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="133.23" y="559.5" >[unknown]</text>
</g>
<g >
<title>do_user_addr_fault (26,647,528 samples, 0.22%)</title><rect x="1124.7" y="501" width="2.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1127.67" y="511.5" ></text>
</g>
<g >
<title>skb_release_head_state (1,936,961 samples, 0.02%)</title><rect x="1119.4" y="277" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1122.38" y="287.5" ></text>
</g>
<g >
<title>enqueue_task (9,953,266 samples, 0.08%)</title><rect x="1180.0" y="421" width="1.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1183.03" y="431.5" ></text>
</g>
<g >
<title>do_syscall_64 (22,032,287 samples, 0.18%)</title><rect x="1121.6" y="405" width="2.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="1124.56" y="415.5" ></text>
</g>
<g >
<title>[psql] (266,677,017 samples, 2.18%)</title><rect x="1097.9" y="533" width="25.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="1100.93" y="543.5" >[..</text>
</g>
<g >
<title>alloc_pages (223,601,796 samples, 1.83%)</title><rect x="484.9" y="325" width="21.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text  x="487.92" y="335.5" >a..</text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="341" width="7.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1185.46" y="351.5" ></text>
</g>
<g >
<title>clear_page_erms (1,500,491 samples, 0.01%)</title><rect x="1116.7" y="245" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1119.66" y="255.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (1,547,083 samples, 0.01%)</title><rect x="1097.8" y="517" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1100.78" y="527.5" ></text>
</g>
<g >
<title>ondemand_readahead (1,191,779,499 samples, 9.76%)</title><rect x="476.7" y="373" width="115.1" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" />
<text  x="479.65" y="383.5" >ondemand_reada..</text>
</g>
<g >
<title>evlist_cpu_iterator__next (64,324,564 samples, 0.53%)</title><rect x="52.6" y="469" width="6.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="55.64" y="479.5" ></text>
</g>
<g >
<title>ahci_handle_port_intr (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="325" width="1.9" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1133.35" y="335.5" ></text>
</g>
<g >
<title>tick_sched_timer (1,119,473 samples, 0.01%)</title><rect x="62.3" y="213" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="65.25" y="223.5" ></text>
</g>
<g >
<title>psi_task_switch (24,729,624 samples, 0.20%)</title><rect x="71.5" y="261" width="2.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="74.47" y="271.5" ></text>
</g>
<g >
<title>clear_page_erms (84,511,679 samples, 0.69%)</title><rect x="484.9" y="277" width="8.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="487.92" y="287.5" ></text>
</g>
<g >
<title>mpage_process_page_bufs (74,661,841 samples, 0.61%)</title><rect x="38.3" y="341" width="7.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text  x="41.33" y="351.5" ></text>
</g>
<g >
<title>perf_ioctl (92,563,920 samples, 0.76%)</title><rect x="59.2" y="405" width="9.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="62.21" y="415.5" ></text>
</g>
<g >
<title>psi_task_switch (25,681,033 samples, 0.21%)</title><rect x="1127.6" y="469" width="2.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text  x="1130.64" y="479.5" ></text>
</g>
<g >
<title>[unknown]  (67,058,175 samples, 0.55%)</title><rect x="10.0" y="533" width="6.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text  x="13.00" y="543.5" ></text>
</g>
<g >
<title>kworker/u289:3- (87,484,032 samples, 0.72%)</title><rect x="29.9" y="565" width="8.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="32.88" y="575.5" ></text>
</g>
<g >
<title>do_sys_poll (151,999,622 samples, 1.24%)</title><rect x="96.5" y="453" width="14.7" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="99.53" y="463.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3,336,288 samples, 0.03%)</title><rect x="1126.3" y="421" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text  x="1129.32" y="431.5" ></text>
</g>
<g >
<title>security_socket_recvmsg (2,370,779 samples, 0.02%)</title><rect x="1117.1" y="341" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1120.11" y="351.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (64,385,252 samples, 0.53%)</title><rect x="16.5" y="453" width="6.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="19.48" y="463.5" ></text>
</g>
<g >
<title>unmap_page_range (73,446,926 samples, 0.60%)</title><rect x="45.5" y="293" width="7.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="48.55" y="303.5" ></text>
</g>
<g >
<title>UnpinBufferNoOwner (18,425,308 samples, 0.15%)</title><rect x="150.2" y="533" width="1.8" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="153.20" y="543.5" ></text>
</g>
<g >
<title>__schedule (3,800,951 samples, 0.03%)</title><rect x="1181.4" y="469" width="0.4" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1184.42" y="479.5" ></text>
</g>
<g >
<title>pglz_decompress (645,305,044 samples, 5.28%)</title><rect x="1029.5" y="549" width="62.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="1032.52" y="559.5" >pglz_d..</text>
</g>
<g >
<title>do_anonymous_page (3,419,088 samples, 0.03%)</title><rect x="1116.5" y="309" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1119.47" y="319.5" ></text>
</g>
<g >
<title>hrtimer_cancel (1,844,927 samples, 0.02%)</title><rect x="1182.1" y="453" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text  x="1185.08" y="463.5" ></text>
</g>
<g >
<title>FileReadV (24,009,024 samples, 0.20%)</title><rect x="124.0" y="549" width="2.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="127.03" y="559.5" ></text>
</g>
<g >
<title>enlargeStringInfo (24,258,203 samples, 0.20%)</title><rect x="162.7" y="517" width="2.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="165.68" y="527.5" ></text>
</g>
<g >
<title>__ata_scsi_queuecmd (20,981,727 samples, 0.17%)</title><rect x="581.3" y="85" width="2.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="584.34" y="95.5" ></text>
</g>
<g >
<title>generic_file_read_iter (1,578,471,971 samples, 12.92%)</title><rect x="441.3" y="437" width="152.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text  x="444.26" y="447.5" >generic_file_read_i..</text>
</g>
<g >
<title>kthread (87,484,032 samples, 0.72%)</title><rect x="29.9" y="533" width="8.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="32.88" y="543.5" ></text>
</g>
<g >
<title>common_interrupt (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="421" width="1.9" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1133.35" y="431.5" ></text>
</g>
<g >
<title>ext4_mpage_readpages (66,651,781 samples, 0.55%)</title><rect x="585.3" y="309" width="6.5" height="15.0" fill="rgb(228,110,26)" rx="2" ry="2" />
<text  x="588.33" y="319.5" ></text>
</g>
<g >
<title>ktime_get (1,563,961 samples, 0.01%)</title><rect x="1132.4" y="373" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text  x="1135.37" y="383.5" ></text>
</g>
<g >
<title>scsi_end_request (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="389" width="2.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text  x="1016.44" y="399.5" ></text>
</g>
<g >
<title>ixgbe_read_reg (74,392,349 samples, 0.61%)</title><rect x="22.7" y="453" width="7.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="25.70" y="463.5" ></text>
</g>
<g >
<title>unix_stream_read_actor (7,875,520 samples, 0.06%)</title><rect x="1119.6" y="293" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1122.56" y="303.5" ></text>
</g>
<g >
<title>ahci_single_level_irq_intr (22,118,264 samples, 0.18%)</title><rect x="1018.2" y="437" width="2.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1021.15" y="447.5" ></text>
</g>
<g >
<title>__blk_mq_delay_run_hw_queue (64,385,252 samples, 0.53%)</title><rect x="16.5" y="437" width="6.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="19.48" y="447.5" ></text>
</g>
<g >
<title>consume_skb (21,495,742 samples, 0.18%)</title><rect x="1117.5" y="293" width="2.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1120.49" y="303.5" ></text>
</g>
<g >
<title>handle_pte_fault (1,860,090 samples, 0.02%)</title><rect x="1127.4" y="453" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="1130.42" y="463.5" ></text>
</g>
<g >
<title>cpu_startup_entry (541,804,420 samples, 4.44%)</title><rect x="1130.1" y="517" width="52.4" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1133.13" y="527.5" >cpu_s..</text>
</g>
<g >
<title>nohz_run_idle_balance (4,493,289 samples, 0.04%)</title><rect x="1181.0" y="485" width="0.4" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text  x="1183.99" y="495.5" ></text>
</g>
<g >
<title>__run_timers.part.0 (84,901,418 samples, 0.70%)</title><rect x="1139.6" y="357" width="8.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="1142.60" y="367.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (1,168,523 samples, 0.01%)</title><rect x="68.5" y="453" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="71.46" y="463.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="389" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text  x="1123.49" y="399.5" ></text>
</g>
<g >
<title>pick_next_task (12,456,426 samples, 0.10%)</title><rect x="70.3" y="261" width="1.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text  x="73.27" y="271.5" ></text>
</g>
<g >
<title>lock_timer_base (64,385,252 samples, 0.53%)</title><rect x="16.5" y="261" width="6.2" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="19.48" y="271.5" ></text>
</g>
<g >
<title>perf_mmap__push (74,457,327 samples, 0.61%)</title><rect x="74.1" y="469" width="7.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
<text  x="77.09" y="479.5" ></text>
</g>
<g >
<title>dup_mmap (63,281,290 samples, 0.52%)</title><rect x="429.4" y="421" width="6.1" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="432.37" y="431.5" ></text>
</g>
<g >
<title>seq_printf (67,058,175 samples, 0.55%)</title><rect x="10.0" y="373" width="6.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="13.00" y="383.5" ></text>
</g>
<g >
<title>kworker/117:1H- (64,385,252 samples, 0.53%)</title><rect x="16.5" y="565" width="6.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="19.48" y="575.5" ></text>
</g>
<g >
<title>__blk_mq_run_hw_queue (64,385,252 samples, 0.53%)</title><rect x="16.5" y="421" width="6.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text  x="19.48" y="431.5" ></text>
</g>
<g >
<title>__blk_mq_do_dispatch_sched (60,273,008 samples, 0.49%)</title><rect x="579.5" y="165" width="5.8" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text  x="582.51" y="175.5" ></text>
</g>
<g >
<title>sched_clock_cpu (1,393,531 samples, 0.01%)</title><rect x="1178.4" y="437" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text  x="1181.35" y="447.5" ></text>
</g>
<g >
<title>__do_sys_clone (63,281,290 samples, 0.52%)</title><rect x="429.4" y="485" width="6.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="432.37" y="495.5" ></text>
</g>
<g >
<title>rcu_gp_kthread (26,186,933 samples, 0.21%)</title><rect x="1127.6" y="517" width="2.5" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text  x="1130.60" y="527.5" ></text>
</g>
<g >
<title>ata_tf_to_fis (20,981,727 samples, 0.17%)</title><rect x="581.3" y="37" width="2.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="584.34" y="47.5" ></text>
</g>
<g >
<title>kthread (64,385,252 samples, 0.53%)</title><rect x="16.5" y="533" width="6.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="19.48" y="543.5" ></text>
</g>
<g >
<title>all (12,215,775,337 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>native_sched_clock (1,411,083 samples, 0.01%)</title><rect x="1181.8" y="421" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text  x="1184.79" y="431.5" ></text>
</g>
<g >
<title>propagate_protected_usage (2,265,626 samples, 0.02%)</title><rect x="1118.5" y="165" width="0.3" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text  x="1121.53" y="175.5" ></text>
</g>
<g >
<title>do_syscall_64 (39,667,816 samples, 0.32%)</title><rect x="605.5" y="517" width="3.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="608.53" y="527.5" ></text>
</g>
<g >
<title>__pagevec_lru_add (40,177,954 samples, 0.33%)</title><rect x="573.6" y="309" width="3.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text  x="576.61" y="319.5" ></text>
</g>
<g >
<title>enqueue_task_fair (8,385,341 samples, 0.07%)</title><rect x="1180.0" y="405" width="0.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1183.03" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (46,657,971 samples, 0.38%)</title><rect x="69.4" y="421" width="4.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="72.36" y="431.5" ></text>
</g>
<g >
<title>__blk_mq_alloc_request (22,302,984 samples, 0.18%)</title><rect x="589.6" y="229" width="2.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="592.62" y="239.5" ></text>
</g>
<g >
<title>blk_mq_run_hw_queue (81,184,559 samples, 0.66%)</title><rect x="577.5" y="261" width="7.8" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text  x="580.49" y="271.5" ></text>
</g>
<g >
<title>memchr_inv (2,293,990 samples, 0.02%)</title><rect x="1179.6" y="421" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text  x="1182.63" y="431.5" ></text>
</g>
<g >
<title>writeback_sb_inodes (74,661,841 samples, 0.61%)</title><rect x="38.3" y="421" width="7.2" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text  x="41.33" y="431.5" ></text>
</g>
<g >
<title>__alloc_pages (223,601,796 samples, 1.83%)</title><rect x="484.9" y="309" width="21.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text  x="487.92" y="319.5" >_..</text>
</g>
<g >
<title>psi_group_change (1,591,709 samples, 0.01%)</title><rect x="1122.9" y="261" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="1125.90" y="271.5" ></text>
</g>
<g >
<title>__libc_start_call_main (296,475,790 samples, 2.43%)</title><rect x="52.6" y="549" width="28.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="55.64" y="559.5" >__..</text>
</g>
<g >
<title>intel_pmu_enable_all (2,812,603 samples, 0.02%)</title><rect x="65.9" y="229" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text  x="68.88" y="239.5" ></text>
</g>
<g >
<title>sock_alloc_send_pskb (39,667,816 samples, 0.32%)</title><rect x="605.5" y="437" width="3.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text  x="608.53" y="447.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (47,830,579 samples, 0.39%)</title><rect x="69.2" y="437" width="4.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="72.24" y="447.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="325" width="7.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1185.46" y="335.5" ></text>
</g>
<g >
<title>load_new_mm_cr3 (1,769,721 samples, 0.01%)</title><rect x="1148.0" y="405" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1150.99" y="415.5" ></text>
</g>
<g >
<title>rcu_sched (26,186,933 samples, 0.21%)</title><rect x="1127.6" y="565" width="2.5" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="1130.60" y="575.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (1,659,513,994 samples, 13.59%)</title><rect x="437.3" y="501" width="160.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text  x="440.29" y="511.5" >__x64_sys_pread64</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (22,032,287 samples, 0.18%)</title><rect x="1121.6" y="421" width="2.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1124.56" y="431.5" ></text>
</g>
<g >
<title>[libpq.so.5.14] (235,797,432 samples, 1.93%)</title><rect x="1097.9" y="437" width="22.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text  x="1100.93" y="447.5" >[..</text>
</g>
<g >
<title>secondary_startup_64_no_verify (619,844,044 samples, 5.07%)</title><rect x="1130.1" y="549" width="59.9" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text  x="1133.13" y="559.5" >second..</text>
</g>
<g >
<title>syscall_exit_to_user_mode (1,973,246 samples, 0.02%)</title><rect x="68.3" y="421" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text  x="71.27" y="431.5" ></text>
</g>
<g >
<title>blk_mq_sched_insert_requests (81,184,559 samples, 0.66%)</title><rect x="577.5" y="277" width="7.8" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text  x="580.49" y="287.5" ></text>
</g>
<g >
<title>process_one_work (64,385,252 samples, 0.53%)</title><rect x="16.5" y="501" width="6.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text  x="19.48" y="511.5" ></text>
</g>
<g >
<title>ixgbe_service_task (74,392,349 samples, 0.61%)</title><rect x="22.7" y="485" width="7.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text  x="25.70" y="495.5" ></text>
</g>
<g >
<title>schedule (25,681,033 samples, 0.21%)</title><rect x="1127.6" y="501" width="2.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text  x="1130.64" y="511.5" ></text>
</g>
<g >
<title>kblockd_mod_delayed_work_on (64,385,252 samples, 0.53%)</title><rect x="16.5" y="341" width="6.2" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text  x="19.48" y="351.5" ></text>
</g>
<g >
<title>kmalloc_slab (1,206,176 samples, 0.01%)</title><rect x="69.4" y="357" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text  x="72.36" y="367.5" ></text>
</g>
<g >
<title>__x64_sys_ioctl (95,540,776 samples, 0.78%)</title><rect x="58.9" y="421" width="9.3" height="15.0" fill="rgb(249,204,49)" rx="2" ry="2" />
<text  x="61.93" y="431.5" ></text>
</g>
<g >
<title>arch_local_irq_enable (1,565,635 samples, 0.01%)</title><rect x="1126.0" y="373" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text  x="1128.95" y="383.5" ></text>
</g>
<g >
<title>affine_move_task (45,451,795 samples, 0.37%)</title><rect x="69.5" y="341" width="4.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text  x="72.47" y="351.5" ></text>
</g>
<g >
<title>__x64_sys_clone (63,281,290 samples, 0.52%)</title><rect x="429.4" y="501" width="6.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="432.37" y="511.5" ></text>
</g>
<g >
<title>rq_qos_wait (74,661,841 samples, 0.61%)</title><rect x="38.3" y="213" width="7.2" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text  x="41.33" y="223.5" ></text>
</g>
<g >
<title>psi_group_change (1,567,925 samples, 0.01%)</title><rect x="1180.8" y="389" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text  x="1183.84" y="399.5" ></text>
</g>
<g >
<title>__x64_sys_poll (151,999,622 samples, 1.24%)</title><rect x="96.5" y="469" width="14.7" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text  x="99.53" y="479.5" ></text>
</g>
<g >
<title>evlist_cpu_iterator__next (54,776,217 samples, 0.45%)</title><rect x="68.6" y="469" width="5.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="71.57" y="479.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="373" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1123.49" y="383.5" ></text>
</g>
<g >
<title>__poll (151,999,622 samples, 1.24%)</title><rect x="96.5" y="517" width="14.7" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="99.53" y="527.5" ></text>
</g>
<g >
<title>scsi_dispatch_cmd (20,981,727 samples, 0.17%)</title><rect x="581.3" y="117" width="2.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="584.34" y="127.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (34,851,992 samples, 0.29%)</title><rect x="1117.0" y="405" width="3.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="1119.96" y="415.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (1,191,779,499 samples, 9.76%)</title><rect x="476.7" y="357" width="115.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="479.65" y="367.5" >page_cache_ra_..</text>
</g>
<g >
<title>anon_vma_clone (63,281,290 samples, 0.52%)</title><rect x="429.4" y="389" width="6.1" height="15.0" fill="rgb(211,27,6)" rx="2" ry="2" />
<text  x="432.37" y="399.5" ></text>
</g>
<g >
<title>__fget_light (3,452,519 samples, 0.03%)</title><rect x="1122.3" y="341" width="0.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text  x="1125.27" y="351.5" ></text>
</g>
<g >
<title>__perf_event_enable (33,912,525 samples, 0.28%)</title><rect x="64.3" y="261" width="3.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text  x="67.27" y="271.5" ></text>
</g>
<g >
<title>irqbalance (67,058,175 samples, 0.55%)</title><rect x="10.0" y="565" width="6.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text  x="13.00" y="575.5" ></text>
</g>
<g >
<title>rb_erase (1,768,336 samples, 0.01%)</title><rect x="1132.2" y="341" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1135.20" y="351.5" ></text>
</g>
<g >
<title>blk_done_softirq (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="469" width="2.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text  x="1016.44" y="479.5" ></text>
</g>
<g >
<title>__queue_work (42,858,843 samples, 0.35%)</title><rect x="1143.7" y="309" width="4.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text  x="1146.66" y="319.5" ></text>
</g>
<g >
<title>submit_bio (22,302,984 samples, 0.18%)</title><rect x="589.6" y="293" width="2.2" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text  x="592.62" y="303.5" ></text>
</g>
<g >
<title>xas_descend (40,940,264 samples, 0.34%)</title><rect x="563.9" y="293" width="4.0" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text  x="566.90" y="303.5" ></text>
</g>
<g >
<title>handle_mm_fault (26,647,528 samples, 0.22%)</title><rect x="1124.7" y="485" width="2.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1127.67" y="495.5" ></text>
</g>
<g >
<title>psql (308,690,480 samples, 2.53%)</title><rect x="1097.8" y="565" width="29.8" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text  x="1100.78" y="575.5" >psql</text>
</g>
<g >
<title>cpuidle_select (4,243,293 samples, 0.03%)</title><rect x="1178.7" y="469" width="0.4" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" />
<text  x="1181.68" y="479.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (1,211,724 samples, 0.01%)</title><rect x="1189.9" y="373" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text  x="1192.88" y="383.5" ></text>
</g>
<g >
<title>sysmalloc (1,860,090 samples, 0.02%)</title><rect x="1127.4" y="549" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="1130.42" y="559.5" ></text>
</g>
<g >
<title>__poll (24,146,265 samples, 0.20%)</title><rect x="1121.4" y="437" width="2.3" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text  x="1124.35" y="447.5" ></text>
</g>
<g >
<title>begin_new_exec (73,446,926 samples, 0.60%)</title><rect x="45.5" y="389" width="7.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text  x="48.55" y="399.5" ></text>
</g>
<g >
<title>do_writepages (74,661,841 samples, 0.61%)</title><rect x="38.3" y="389" width="7.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="41.33" y="399.5" ></text>
</g>
<g >
<title>wb_do_writeback (74,661,841 samples, 0.61%)</title><rect x="38.3" y="469" width="7.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text  x="41.33" y="479.5" ></text>
</g>
<g >
<title>sched_setaffinity@@GLIBC_2.3.4 (47,830,579 samples, 0.39%)</title><rect x="69.2" y="453" width="4.7" height="15.0" fill="rgb(206,6,1)" rx="2" ry="2" />
<text  x="72.24" y="463.5" ></text>
</g>
<g >
<title>schedule_hrtimeout_range (4,707,790 samples, 0.04%)</title><rect x="1122.6" y="341" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text  x="1125.60" y="351.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (2,430,757 samples, 0.02%)</title><rect x="1123.2" y="373" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text  x="1126.24" y="383.5" ></text>
</g>
<g >
<title>__submit_bio (74,661,841 samples, 0.61%)</title><rect x="38.3" y="261" width="7.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="41.33" y="271.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (255,747,209 samples, 2.09%)</title><rect x="445.8" y="405" width="24.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="448.84" y="415.5" >c..</text>
</g>
<g >
<title>UnpinBufferNoOwner (20,332,682 samples, 0.17%)</title><rect x="128.3" y="549" width="1.9" height="15.0" fill="rgb(253,221,53)" rx="2" ry="2" />
<text  x="131.27" y="559.5" ></text>
</g>
<g >
<title>[psql] (266,677,017 samples, 2.18%)</title><rect x="1097.9" y="485" width="25.8" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="1100.93" y="495.5" >[..</text>
</g>
<g >
<title>__blk_mq_delay_run_hw_queue (64,385,252 samples, 0.53%)</title><rect x="16.5" y="357" width="6.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="19.48" y="367.5" ></text>
</g>
<g >
<title>record__pushfn (75,847,424 samples, 0.62%)</title><rect x="89.2" y="501" width="7.3" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text  x="92.20" y="511.5" ></text>
</g>
<g >
<title>handle_irq_event (22,118,264 samples, 0.18%)</title><rect x="1018.2" y="469" width="2.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="1021.15" y="479.5" ></text>
</g>
<g >
<title>__GI___ioctl (100,595,452 samples, 0.82%)</title><rect x="58.9" y="469" width="9.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
<text  x="61.85" y="479.5" ></text>
</g>
<g >
<title>ret_from_fork (74,392,349 samples, 0.61%)</title><rect x="22.7" y="549" width="7.2" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="25.70" y="559.5" ></text>
</g>
<g >
<title>vfs_read (1,618,487,483 samples, 13.25%)</title><rect x="441.3" y="485" width="156.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text  x="444.26" y="495.5" >vfs_read</text>
</g>
<g >
<title>__libc_recv (34,851,992 samples, 0.29%)</title><rect x="1117.0" y="421" width="3.3" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" />
<text  x="1119.96" y="431.5" ></text>
</g>
<g >
<title>ahci_handle_port_interrupt (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="309" width="1.9" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="1133.35" y="319.5" ></text>
</g>
<g >
<title>xas_nomem (16,812,206 samples, 0.14%)</title><rect x="567.9" y="309" width="1.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text  x="570.85" y="319.5" ></text>
</g>
<g >
<title>evlist_cpu_iterator__next (2,322,230 samples, 0.02%)</title><rect x="73.9" y="485" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text  x="76.86" y="495.5" ></text>
</g>
<g >
<title>_find_next_bit (71,808,717 samples, 0.59%)</title><rect x="1132.6" y="309" width="7.0" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text  x="1135.63" y="319.5" ></text>
</g>
<g >
<title>mem_cgroup_css_rstat_flush (87,484,032 samples, 0.72%)</title><rect x="29.9" y="421" width="8.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text  x="32.88" y="431.5" ></text>
</g>
<g >
<title>find_vma (2,552,013 samples, 0.02%)</title><rect x="1116.0" y="357" width="0.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text  x="1119.05" y="367.5" ></text>
</g>
<g >
<title>cpu_startup_entry (78,039,624 samples, 0.64%)</title><rect x="1182.5" y="453" width="7.5" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text  x="1185.46" y="463.5" ></text>
</g>
<g >
<title>scheduler_tick (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="245" width="7.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text  x="1185.46" y="255.5" ></text>
</g>
<g >
<title>tick_nohz_restart (3,971,096 samples, 0.03%)</title><rect x="1182.1" y="469" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text  x="1185.08" y="479.5" ></text>
</g>
<g >
<title>pg_popcount (2,486,527,712 samples, 20.36%)</title><rect x="165.0" y="517" width="240.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text  x="168.02" y="527.5" >pg_popcount</text>
</g>
<g >
<title>__hrtimer_run_queues (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="309" width="7.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1185.46" y="319.5" ></text>
</g>
<g >
<title>event_function (44,807,491 samples, 0.37%)</title><rect x="63.2" y="277" width="4.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text  x="66.22" y="287.5" ></text>
</g>
<g >
<title>exec_mmap (73,446,926 samples, 0.60%)</title><rect x="45.5" y="373" width="7.1" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="48.55" y="383.5" ></text>
</g>
<g >
<title>[unknown] (2,665,355,715 samples, 21.82%)</title><rect x="152.0" y="533" width="257.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="154.98" y="543.5" >[unknown]</text>
</g>
<g >
<title>handle_edge_irq (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="389" width="1.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="1133.35" y="399.5" ></text>
</g>
<g >
<title>ahci_handle_port_intr (22,118,264 samples, 0.18%)</title><rect x="1018.2" y="421" width="2.1" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text  x="1021.15" y="431.5" ></text>
</g>
<g >
<title>alloc_cpumask_var_node (1,206,176 samples, 0.01%)</title><rect x="69.4" y="373" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text  x="72.36" y="383.5" ></text>
</g>
<g >
<title>text_to_cstring (19,137,829 samples, 0.16%)</title><rect x="427.5" y="533" width="1.9" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
<text  x="430.53" y="543.5" ></text>
</g>
<g >
<title>tts_buffer_heap_getsomeattrs (37,819,216 samples, 0.31%)</title><rect x="1094.1" y="549" width="3.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text  x="1097.12" y="559.5" ></text>
</g>
<g >
<title>vsnprintf (67,058,175 samples, 0.55%)</title><rect x="10.0" y="357" width="6.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text  x="13.00" y="367.5" ></text>
</g>
<g >
<title>__memcg_kmem_charge_page (18,724,499 samples, 0.15%)</title><rect x="605.5" y="373" width="1.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="608.53" y="383.5" ></text>
</g>
<g >
<title>rebalance_domains (71,808,717 samples, 0.59%)</title><rect x="1132.6" y="341" width="7.0" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text  x="1135.63" y="351.5" ></text>
</g>
<g >
<title>worker_thread (64,385,252 samples, 0.53%)</title><rect x="16.5" y="517" width="6.2" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text  x="19.48" y="527.5" ></text>
</g>
<g >
<title>skb_free_head (2,331,967 samples, 0.02%)</title><rect x="1119.2" y="261" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text  x="1122.15" y="271.5" ></text>
</g>
<g >
<title>mutex_lock (84,409,880 samples, 0.69%)</title><rect x="96.5" y="405" width="8.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text  x="99.53" y="415.5" ></text>
</g>
<g >
<title>blk_stat_add (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="357" width="2.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1016.44" y="367.5" ></text>
</g>
<g >
<title>blk_finish_plug (81,184,559 samples, 0.66%)</title><rect x="577.5" y="325" width="7.8" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="580.49" y="335.5" ></text>
</g>
<g >
<title>x86_64_start_kernel (78,039,624 samples, 0.64%)</title><rect x="1182.5" y="533" width="7.5" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text  x="1185.46" y="543.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,700,456,947 samples, 13.92%)</title><rect x="435.5" y="533" width="164.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="438.49" y="543.5" >entry_SYSCALL_64_afte..</text>
</g>
<g >
<title>sched_clock (1,411,083 samples, 0.01%)</title><rect x="1181.8" y="437" width="0.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text  x="1184.79" y="447.5" ></text>
</g>
<g >
<title>common_interrupt (22,118,264 samples, 0.18%)</title><rect x="1018.2" y="517" width="2.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text  x="1021.15" y="527.5" ></text>
</g>
<g >
<title>__set_cpus_allowed_ptr_locked (45,451,795 samples, 0.37%)</title><rect x="69.5" y="357" width="4.4" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text  x="72.47" y="367.5" ></text>
</g>
<g >
<title>__send (39,667,816 samples, 0.32%)</title><rect x="605.5" y="549" width="3.9" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="608.53" y="559.5" ></text>
</g>
<g >
<title>__blk_mq_sched_dispatch_requests (64,385,252 samples, 0.53%)</title><rect x="16.5" y="389" width="6.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
<text  x="19.48" y="399.5" ></text>
</g>
<g >
<title>generic_exec_single (65,900,767 samples, 0.54%)</title><rect x="61.2" y="309" width="6.3" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
<text  x="64.18" y="319.5" ></text>
</g>
<g >
<title>copy_process (63,281,290 samples, 0.52%)</title><rect x="429.4" y="453" width="6.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text  x="432.37" y="463.5" ></text>
</g>
<g >
<title>scsi_io_completion (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="405" width="2.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text  x="1016.44" y="415.5" ></text>
</g>
<g >
<title>__handle_irq_event_percpu (19,168,502 samples, 0.16%)</title><rect x="1130.3" y="357" width="1.9" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
<text  x="1133.35" y="367.5" ></text>
</g>
<g >
<title>wait_for_completion (37,186,050 samples, 0.30%)</title><rect x="70.3" y="325" width="3.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text  x="73.27" y="335.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (19,744,926 samples, 0.16%)</title><rect x="403.3" y="485" width="1.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text  x="406.30" y="495.5" ></text>
</g>
<g >
<title>show_interrupts (67,058,175 samples, 0.55%)</title><rect x="10.0" y="389" width="6.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text  x="13.00" y="399.5" ></text>
</g>
<g >
<title>obj_cgroup_charge_pages (18,724,499 samples, 0.15%)</title><rect x="605.5" y="357" width="1.8" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text  x="608.53" y="367.5" ></text>
</g>
<g >
<title>ret_from_fork (87,484,032 samples, 0.72%)</title><rect x="29.9" y="549" width="8.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text  x="32.88" y="559.5" ></text>
</g>
<g >
<title>__submit_bio (22,302,984 samples, 0.18%)</title><rect x="589.6" y="261" width="2.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text  x="592.62" y="271.5" ></text>
</g>
<g >
<title>unmap_vmas (73,446,926 samples, 0.60%)</title><rect x="45.5" y="325" width="7.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text  x="48.55" y="335.5" ></text>
</g>
<g >
<title>tick_sched_handle (2,202,851 samples, 0.02%)</title><rect x="1120.5" y="325" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="1123.49" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (5,289,518 samples, 0.04%)</title><rect x="1116.3" y="357" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1119.29" y="367.5" ></text>
</g>
<g >
<title>update_rq_clock (74,143,072 samples, 0.61%)</title><rect x="1182.5" y="229" width="7.1" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text  x="1185.46" y="239.5" ></text>
</g>
<g >
<title>blk_complete_reqs (21,218,658 samples, 0.17%)</title><rect x="1013.4" y="453" width="2.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text  x="1016.44" y="463.5" ></text>
</g>
<g >
<title>mpage_submit_page (74,661,841 samples, 0.61%)</title><rect x="38.3" y="325" width="7.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="41.33" y="335.5" ></text>
</g>
<g >
<title>handle_mm_fault (1,860,090 samples, 0.02%)</title><rect x="1127.4" y="485" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text  x="1130.42" y="495.5" ></text>
</g>
<g >
<title>dequeue_task_fair (1,794,773 samples, 0.01%)</title><rect x="1122.6" y="261" width="0.2" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="1125.60" y="271.5" ></text>
</g>
<g >
<title>__schedule (25,681,033 samples, 0.21%)</title><rect x="1127.6" y="485" width="2.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text  x="1130.64" y="495.5" ></text>
</g>
<g >
<title>tick_sched_handle (1,119,473 samples, 0.01%)</title><rect x="62.3" y="197" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text  x="65.25" y="207.5" ></text>
</g>
<g >
<title>do_anonymous_page (17,088,464 samples, 0.14%)</title><rect x="1125.3" y="437" width="1.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text  x="1128.26" y="447.5" ></text>
</g>
<g >
<title>__wait_for_common (37,186,050 samples, 0.30%)</title><rect x="70.3" y="309" width="3.6" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text  x="73.27" y="319.5" ></text>
</g>
<g >
<title>flush_memcg_stats_dwork (87,484,032 samples, 0.72%)</title><rect x="29.9" y="485" width="8.4" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text  x="32.88" y="495.5" ></text>
</g>
<g >
<title>refresh_cpu_vm_stats (1,784,924 samples, 0.01%)</title><rect x="1179.9" y="421" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text  x="1182.85" y="431.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (64,385,252 samples, 0.53%)</title><rect x="16.5" y="245" width="6.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text  x="19.48" y="255.5" ></text>
</g>
<g >
<title>ata_qc_issue (20,981,727 samples, 0.17%)</title><rect x="581.3" y="53" width="2.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text  x="584.34" y="63.5" ></text>
</g>
<g >
<title>rmqueue_bulk (92,259,596 samples, 0.76%)</title><rect x="497.6" y="261" width="8.9" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text  x="500.60" y="271.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (1,768,336 samples, 0.01%)</title><rect x="1132.2" y="389" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text  x="1135.20" y="399.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,681,736,351 samples, 13.77%)</title><rect x="437.3" y="517" width="162.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text  x="440.29" y="527.5" >do_syscall_64</text>
</g>
<g >
<title>get_page_from_freelist (20,943,317 samples, 0.17%)</title><rect x="607.3" y="373" width="2.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text  x="610.33" y="383.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath.part.0 (64,385,252 samples, 0.53%)</title><rect x="16.5" y="213" width="6.2" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text  x="19.48" y="223.5" ></text>
</g>
<g >
<title>kthread (26,186,933 samples, 0.21%)</title><rect x="1127.6" y="533" width="2.5" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text  x="1130.60" y="543.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (1,119,473 samples, 0.01%)</title><rect x="62.3" y="293" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text  x="65.25" y="303.5" ></text>
</g>
<g >
<title>enlargeStringInfo (21,222,511 samples, 0.17%)</title><rect x="1009.7" y="549" width="2.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text  x="1012.72" y="559.5" ></text>
</g>
<g >
<title>CheckForSerializableConflictOutNeeded (26,318,112 samples, 0.22%)</title><rect x="119.4" y="549" width="2.5" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
<text  x="122.40" y="559.5" ></text>
</g>
<g >
<title>__memmove_evex_unaligned_erms (6,733,320 samples, 0.06%)</title><rect x="1120.7" y="437" width="0.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text  x="1123.70" y="447.5" ></text>
</g>
<g >
<title>new_sync_read (67,058,175 samples, 0.55%)</title><rect x="10.0" y="437" width="6.5" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text  x="13.00" y="447.5" ></text>
</g>
<g >
<title>[unknown] (1,547,083 samples, 0.01%)</title><rect x="1097.8" y="549" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text  x="1100.78" y="559.5" ></text>
</g>
<g >
<title>tick_program_event (1,844,927 samples, 0.02%)</title><rect x="1182.1" y="405" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text  x="1185.08" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (67,058,175 samples, 0.55%)</title><rect x="10.0" y="517" width="6.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text  x="13.00" y="527.5" ></text>
</g>
</g>
</svg>