[pgpool-hackers: 3237] Re: pgbench: Flamegraph

Tatsuo Ishii ishii at sraoss.co.jp
Fri Feb 8 11:54:35 JST 2019


> Hi,
> 
> On 2/6/19 7:53 PM, Tatsuo Ishii wrote:
>> You are right. If the message kind is not either Error nor Notice,
>> there's no need to call pool_extract_error_message at all and this is
>> for most cases. Attached patch implements it (against master HEAD).
>> Unfortunately I was not able to see any performance enhancement using
>> pgbench though.
>> 
> 
> I see a difference, and the patch looks ok. Even for back ports ;)

Ok, looking forward to back-patching...

>>> Sure.
>> Thanks! This helps me a lot.
>> 
> 
> Are you able to generate these now ? I can keep sending to the mailing
> list, but if you can create locally then I guess no need.

Yes but there's something weird with the SVG. I see [unknown] at left
most at the graph and it's very tall...

This is Ubuntu 18.04.1 LTS.

Best regards,
--
Tatsuo Ishii
SRA OSS, Inc. Japan
English: http://www.sraoss.co.jp/index_en.php
Japanese:http://www.sraoss.co.jp
-------------- next part --------------
<?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="1734" onload="init(evt)" viewBox="0 0 1200 1734" 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">
	.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
	var details, searchbtn, matchedtxt, svg;
	function init(evt) {
		details = document.getElementById("details").firstChild;
		searchbtn = document.getElementById("search");
		matchedtxt = document.getElementById("matched");
		svg = document.getElementsByTagName("svg")[0];
		searching = 0;
	}

	// mouse-over for info
	function s(node) {		// show
		info = g_to_text(node);
		details.nodeValue = "Function: " + info;
	}
	function c() {			// clear
		details.nodeValue = ' ';
	}

	// ctrl-F for search
	window.addEventListener("keydown",function (e) {
		if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
			e.preventDefault();
			search_prompt();
		}
	})

	// functions
	function find_child(parent, name, attr) {
		var children = parent.childNodes;
		for (var i=0; i<children.length;i++) {
			if (children[i].tagName == name)
				return (attr != undefined) ? children[i].attributes[attr].value : children[i];
		}
		return;
	}
	function orig_save(e, attr, val) {
		if (e.attributes["_orig_"+attr] != undefined) return;
		if (e.attributes[attr] == undefined) return;
		if (val == undefined) val = e.attributes[attr].value;
		e.setAttribute("_orig_"+attr, val);
	}
	function orig_load(e, attr) {
		if (e.attributes["_orig_"+attr] == undefined) return;
		e.attributes[attr].value = e.attributes["_orig_"+attr].value;
		e.removeAttribute("_orig_"+attr);
	}
	function g_to_text(e) {
		var text = find_child(e, "title").firstChild.nodeValue;
		return (text)
	}
	function g_to_func(e) {
		var func = g_to_text(e);
		// if there's any manipulation we want to do to the function
		// name before it's searched, do it here before returning.
		return (func);
	}
	function update_text(e) {
		var r = find_child(e, "rect");
		var t = find_child(e, "text");
		var w = parseFloat(r.attributes["width"].value) -3;
		var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
		t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;

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

		t.textContent = txt;
		// Fit in full text width
		if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
			return;

		for (var x=txt.length-2; x>0; x--) {
			if (t.getSubStringLength(0, x+2) <= w) {
				t.textContent = txt.substring(0,x) + "..";
				return;
			}
		}
		t.textContent = "";
	}

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

		var unzoombtn = document.getElementById("unzoom");
		unzoombtn.style["opacity"] = "1.0";

		var el = document.getElementsByTagName("g");
		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);
			// Is it an ancestor
			if (0 == 0) {
				var upstack = parseFloat(a["y"].value) > ymin;
			} else {
				var upstack = parseFloat(a["y"].value) < ymin;
			}
			if (upstack) {
				// Direct ancestor
				if (ex <= xmin && (ex+ew+fudge) >= xmax) {
					e.style["opacity"] = "0.5";
					zoom_parent(e);
					e.onclick = function(e){unzoom(); zoom(this);};
					update_text(e);
				}
				// not in current path
				else
					e.style["display"] = "none";
			}
			// Children maybe
			else {
				// no common path
				if (ex < xmin || ex + fudge >= xmax) {
					e.style["display"] = "none";
				}
				else {
					zoom_child(e, xmin, ratio);
					e.onclick = function(e){zoom(this);};
					update_text(e);
				}
			}
		}
	}
	function unzoom() {
		var unzoombtn = document.getElementById("unzoom");
		unzoombtn.style["opacity"] = "0.0";

		var el = document.getElementsByTagName("g");
		for(i=0;i<el.length;i++) {
			el[i].style["display"] = "block";
			el[i].style["opacity"] = "1";
			zoom_reset(el[i]);
			update_text(el[i]);
		}
	}

	// search
	function reset_search() {
		var el = document.getElementsByTagName("rect");
		for (var i=0; i < el.length; i++) {
			orig_load(el[i], "fill")
		}
	}
	function search_prompt() {
		if (!searching) {
			var term = prompt("Enter a search term (regexp " +
			    "allowed, eg: ^ext4_)", "");
			if (term != null) {
				search(term)
			}
		} else {
			reset_search();
			searching = 0;
			searchbtn.style["opacity"] = "0.1";
			searchbtn.firstChild.nodeValue = "Search"
			matchedtxt.style["opacity"] = "0.0";
			matchedtxt.firstChild.nodeValue = ""
		}
	}
	function search(term) {
		var re = new RegExp(term);
		var el = document.getElementsByTagName("g");
		var matches = new Object();
		var maxwidth = 0;
		for (var i = 0; i < el.length; i++) {
			var e = el[i];
			if (e.attributes["class"].value != "func_g")
				continue;
			var func = g_to_func(e);
			var rect = find_child(e, "rect");
			if (rect == null) {
				// the rect might be wrapped in an anchor
				// if nameattr href is being used
				if (rect = find_child(e, "a")) {
				    rect = find_child(r, "rect");
				}
			}
			if (func == null || rect == null)
				continue;

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

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

				// remember matches
				if (matches[x] == undefined) {
					matches[x] = w;
				} else {
					if (w > matches[x]) {
						// overwrite with parent
						matches[x] = w;
					}
				}
				searching = 1;
			}
		}
		if (!searching)
			return;

		searchbtn.style["opacity"] = "1.0";
		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.style["opacity"] = "1.0";
		pct = 100 * count / maxwidth;
		if (pct == 100)
			pct = "100"
		else
			pct = pct.toFixed(1)
		matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
	}
	function searchover(e) {
		searchbtn.style["opacity"] = "1.0";
	}
	function searchout(e) {
		if (searching) {
			searchbtn.style["opacity"] = "1.0";
		} else {
			searchbtn.style["opacity"] = "0.1";
		}
	}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1734.0" fill="url(#background)"  />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)"  >prepared-master</text>
<text text-anchor="" x="10.00" y="1717" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="1717" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (25 samples, 0.05%)</title><rect x="233.0" y="1397" width="0.7" height="15.0" fill="rgb(222,212,43)" rx="2" ry="2" />
<text text-anchor="" x="236.02" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="805" width="1.3" height="15.0" fill="rgb(244,146,19)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="815.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_add_sent_message (335 samples, 0.73%)</title><rect x="305.0" y="1509" width="8.6" height="15.0" fill="rgb(205,192,38)" rx="2" ry="2" />
<text text-anchor="" x="308.03" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (86 samples, 0.19%)</title><rect x="617.3" y="1525" width="2.2" height="15.0" fill="rgb(233,180,22)" rx="2" ry="2" />
<text text-anchor="" x="620.30" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (24 samples, 0.05%)</title><rect x="531.2" y="1461" width="0.6" height="15.0" fill="rgb(213,40,39)" rx="2" ry="2" />
<text text-anchor="" x="534.23" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (30 samples, 0.07%)</title><rect x="372.6" y="1493" width="0.8" height="15.0" fill="rgb(246,115,39)" rx="2" ry="2" />
<text text-anchor="" x="375.64" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (5 samples, 0.01%)</title><rect x="1028.1" y="1429" width="0.1" height="15.0" fill="rgb(219,107,34)" rx="2" ry="2" />
<text text-anchor="" x="1031.06" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (26 samples, 0.06%)</title><rect x="426.3" y="1477" width="0.7" height="15.0" fill="rgb(239,32,50)" rx="2" ry="2" />
<text text-anchor="" x="429.32" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (25 samples, 0.05%)</title><rect x="451.8" y="1317" width="0.6" height="15.0" fill="rgb(214,161,23)" rx="2" ry="2" />
<text text-anchor="" x="454.79" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_or_rollback_query (10 samples, 0.02%)</title><rect x="317.0" y="1493" width="0.3" height="15.0" fill="rgb(228,134,45)" rx="2" ry="2" />
<text text-anchor="" x="320.01" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (6 samples, 0.01%)</title><rect x="399.4" y="1221" width="0.1" height="15.0" fill="rgb(210,175,32)" rx="2" ry="2" />
<text text-anchor="" x="402.37" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (6 samples, 0.01%)</title><rect x="466.0" y="1189" width="0.2" height="15.0" fill="rgb(209,148,0)" rx="2" ry="2" />
<text text-anchor="" x="469.04" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (470 samples, 1.02%)</title><rect x="393.7" y="1477" width="12.1" height="15.0" fill="rgb(237,7,31)" rx="2" ry="2" />
<text text-anchor="" x="396.72" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (7 samples, 0.02%)</title><rect x="286.7" y="1253" width="0.2" height="15.0" fill="rgb(251,168,18)" rx="2" ry="2" />
<text text-anchor="" x="289.67" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (7 samples, 0.02%)</title><rect x="432.2" y="1477" width="0.2" height="15.0" fill="rgb(238,161,9)" rx="2" ry="2" />
<text text-anchor="" x="435.20" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (843 samples, 1.84%)</title><rect x="465.8" y="1205" width="21.7" height="15.0" fill="rgb(220,132,7)" rx="2" ry="2" />
<text text-anchor="" x="468.80" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_major_version (4 samples, 0.01%)</title><rect x="133.5" y="1509" width="0.1" height="15.0" fill="rgb(230,200,46)" rx="2" ry="2" />
<text text-anchor="" x="136.53" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (9 samples, 0.02%)</title><rect x="60.0" y="1493" width="0.2" height="15.0" fill="rgb(235,199,33)" rx="2" ry="2" />
<text text-anchor="" x="62.95" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (1,111 samples, 2.42%)</title><rect x="1064.6" y="1445" width="28.5" height="15.0" fill="rgb(217,176,23)" rx="2" ry="2" />
<text text-anchor="" x="1067.57" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (8 samples, 0.02%)</title><rect x="12.6" y="1461" width="0.2" height="15.0" fill="rgb(212,204,48)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (401 samples, 0.87%)</title><rect x="320.8" y="1349" width="10.3" height="15.0" fill="rgb(216,190,1)" rx="2" ry="2" />
<text text-anchor="" x="323.78" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy at plt (6 samples, 0.01%)</title><rect x="728.8" y="1461" width="0.1" height="15.0" fill="rgb(216,6,20)" rx="2" ry="2" />
<text text-anchor="" x="731.77" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (487 samples, 1.06%)</title><rect x="319.5" y="1413" width="12.5" height="15.0" fill="rgb(207,38,22)" rx="2" ry="2" />
<text text-anchor="" x="322.47" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (89 samples, 0.19%)</title><rect x="1020.8" y="1285" width="2.3" height="15.0" fill="rgb(236,40,9)" rx="2" ry="2" />
<text text-anchor="" x="1023.84" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (25 samples, 0.05%)</title><rect x="432.0" y="1493" width="0.6" height="15.0" fill="rgb(243,155,41)" rx="2" ry="2" />
<text text-anchor="" x="435.00" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reweight_entity (4 samples, 0.01%)</title><rect x="777.2" y="1061" width="0.1" height="15.0" fill="rgb(234,166,29)" rx="2" ry="2" />
<text text-anchor="" x="780.21" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (61 samples, 0.13%)</title><rect x="149.1" y="1509" width="1.5" height="15.0" fill="rgb(225,102,23)" rx="2" ry="2" />
<text text-anchor="" x="152.08" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (198 samples, 0.43%)</title><rect x="691.4" y="1381" width="5.1" height="15.0" fill="rgb(227,191,51)" rx="2" ry="2" />
<text text-anchor="" x="694.39" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (36 samples, 0.08%)</title><rect x="881.7" y="1397" width="1.0" height="15.0" fill="rgb(248,44,38)" rx="2" ry="2" />
<text text-anchor="" x="884.73" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_extended_send_and_wait (8 samples, 0.02%)</title><rect x="502.7" y="1525" width="0.2" height="15.0" fill="rgb(250,130,44)" rx="2" ry="2" />
<text text-anchor="" x="505.72" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_and_flush (548 samples, 1.19%)</title><rect x="730.9" y="1477" width="14.1" height="15.0" fill="rgb(252,10,5)" rx="2" ry="2" />
<text text-anchor="" x="733.91" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (13 samples, 0.03%)</title><rect x="329.9" y="1221" width="0.3" height="15.0" fill="rgb(216,46,43)" rx="2" ry="2" />
<text text-anchor="" x="332.91" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="659.5" y="1429" width="0.1" height="15.0" fill="rgb(219,44,52)" rx="2" ry="2" />
<text text-anchor="" x="662.49" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="369.1" y="1445" width="0.1" height="15.0" fill="rgb(213,96,22)" rx="2" ry="2" />
<text text-anchor="" x="372.09" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (4 samples, 0.01%)</title><rect x="782.4" y="1045" width="0.1" height="15.0" fill="rgb(234,43,11)" rx="2" ry="2" />
<text text-anchor="" x="785.40" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="411.2" y="1285" width="0.1" height="15.0" fill="rgb(239,202,15)" rx="2" ry="2" />
<text text-anchor="" x="414.20" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="146.4" y="1477" width="0.1" height="15.0" fill="rgb(251,221,28)" rx="2" ry="2" />
<text text-anchor="" x="149.36" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (409 samples, 0.89%)</title><rect x="320.6" y="1365" width="10.5" height="15.0" fill="rgb(214,81,17)" rx="2" ry="2" />
<text text-anchor="" x="323.58" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (10 samples, 0.02%)</title><rect x="153.5" y="1461" width="0.3" height="15.0" fill="rgb(235,103,31)" rx="2" ry="2" />
<text text-anchor="" x="156.53" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_in_progress (9 samples, 0.02%)</title><rect x="821.8" y="1477" width="0.2" height="15.0" fill="rgb(205,50,12)" rx="2" ry="2" />
<text text-anchor="" x="824.76" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (981 samples, 2.14%)</title><rect x="463.9" y="1253" width="25.2" height="15.0" fill="rgb(207,81,28)" rx="2" ry="2" />
<text text-anchor="" x="466.85" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>temp_table_walker (294 samples, 0.64%)</title><rect x="858.2" y="1445" width="7.6" height="15.0" fill="rgb(217,167,28)" rx="2" ry="2" />
<text text-anchor="" x="861.24" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (48 samples, 0.10%)</title><rect x="813.5" y="1477" width="1.2" height="15.0" fill="rgb(224,133,36)" rx="2" ry="2" />
<text text-anchor="" x="816.51" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (29 samples, 0.06%)</title><rect x="153.8" y="1525" width="0.8" height="15.0" fill="rgb(251,194,33)" rx="2" ry="2" />
<text text-anchor="" x="156.84" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yy_load_buffer_state (9 samples, 0.02%)</title><rect x="1003.9" y="1429" width="0.2" height="15.0" fill="rgb(234,94,1)" rx="2" ry="2" />
<text text-anchor="" x="1006.90" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (4 samples, 0.01%)</title><rect x="473.5" y="1109" width="0.1" height="15.0" fill="rgb(217,12,3)" rx="2" ry="2" />
<text text-anchor="" x="476.46" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (5 samples, 0.01%)</title><rect x="115.2" y="1509" width="0.2" height="15.0" fill="rgb(230,12,29)" rx="2" ry="2" />
<text text-anchor="" x="118.22" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (297 samples, 0.65%)</title><rect x="1043.4" y="1461" width="7.6" height="15.0" fill="rgb(231,79,50)" rx="2" ry="2" />
<text text-anchor="" x="1046.36" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (41 samples, 0.09%)</title><rect x="684.6" y="1237" width="1.1" height="15.0" fill="rgb(217,210,38)" rx="2" ry="2" />
<text text-anchor="" x="687.63" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (7 samples, 0.02%)</title><rect x="678.5" y="1445" width="0.2" height="15.0" fill="rgb(218,61,23)" rx="2" ry="2" />
<text text-anchor="" x="681.49" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yyensure_buffer_stack (6 samples, 0.01%)</title><rect x="1005.5" y="1445" width="0.2" height="15.0" fill="rgb(237,160,44)" rx="2" ry="2" />
<text text-anchor="" x="1008.54" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enter_lazy_tlb (6 samples, 0.01%)</title><rect x="283.5" y="1301" width="0.2" height="15.0" fill="rgb(251,122,5)" rx="2" ry="2" />
<text text-anchor="" x="286.51" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (16 samples, 0.03%)</title><rect x="583.8" y="1333" width="0.4" height="15.0" fill="rgb(241,10,33)" rx="2" ry="2" />
<text text-anchor="" x="586.75" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (6 samples, 0.01%)</title><rect x="1059.2" y="1477" width="0.2" height="15.0" fill="rgb(233,135,7)" rx="2" ry="2" />
<text text-anchor="" x="1062.25" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (20 samples, 0.04%)</title><rect x="507.9" y="1493" width="0.5" height="15.0" fill="rgb(241,136,40)" rx="2" ry="2" />
<text text-anchor="" x="510.91" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (418 samples, 0.91%)</title><rect x="355.4" y="1381" width="10.7" height="15.0" fill="rgb(225,134,50)" rx="2" ry="2" />
<text text-anchor="" x="358.39" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (40 samples, 0.09%)</title><rect x="1109.7" y="1365" width="1.0" height="15.0" fill="rgb(227,226,16)" rx="2" ry="2" />
<text text-anchor="" x="1112.66" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (6 samples, 0.01%)</title><rect x="685.9" y="1301" width="0.1" height="15.0" fill="rgb(210,68,46)" rx="2" ry="2" />
<text text-anchor="" x="688.89" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (67 samples, 0.15%)</title><rect x="458.9" y="1269" width="1.7" height="15.0" fill="rgb(229,173,40)" rx="2" ry="2" />
<text text-anchor="" x="461.86" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (4 samples, 0.01%)</title><rect x="700.1" y="1509" width="0.1" height="15.0" fill="rgb(254,39,42)" rx="2" ry="2" />
<text text-anchor="" x="703.08" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (5 samples, 0.01%)</title><rect x="76.6" y="1269" width="0.1" height="15.0" fill="rgb(240,110,24)" rx="2" ry="2" />
<text text-anchor="" x="79.58" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (5 samples, 0.01%)</title><rect x="408.8" y="1317" width="0.1" height="15.0" fill="rgb(244,55,7)" rx="2" ry="2" />
<text text-anchor="" x="411.76" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (8 samples, 0.02%)</title><rect x="12.6" y="1541" width="0.2" height="15.0" fill="rgb(205,214,25)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksize (14 samples, 0.03%)</title><rect x="760.4" y="1253" width="0.4" height="15.0" fill="rgb(252,68,10)" rx="2" ry="2" />
<text text-anchor="" x="763.42" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (53 samples, 0.12%)</title><rect x="414.8" y="1269" width="1.4" height="15.0" fill="rgb(225,128,31)" rx="2" ry="2" />
<text text-anchor="" x="417.82" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="965" width="1.3" height="15.0" fill="rgb(211,194,33)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="975.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (14 samples, 0.03%)</title><rect x="330.6" y="1301" width="0.4" height="15.0" fill="rgb(212,108,39)" rx="2" ry="2" />
<text text-anchor="" x="333.61" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (267 samples, 0.58%)</title><rect x="396.1" y="1317" width="6.9" height="15.0" fill="rgb(229,56,53)" rx="2" ry="2" />
<text text-anchor="" x="399.14" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (18 samples, 0.04%)</title><rect x="676.1" y="1477" width="0.5" height="15.0" fill="rgb(227,63,53)" rx="2" ry="2" />
<text text-anchor="" x="679.10" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (8 samples, 0.02%)</title><rect x="735.8" y="1285" width="0.2" height="15.0" fill="rgb(252,133,38)" rx="2" ry="2" />
<text text-anchor="" x="738.82" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (70 samples, 0.15%)</title><rect x="780.8" y="1093" width="1.8" height="15.0" fill="rgb(235,94,41)" rx="2" ry="2" />
<text text-anchor="" x="783.78" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (369 samples, 0.80%)</title><rect x="394.2" y="1429" width="9.4" height="15.0" fill="rgb(211,58,28)" rx="2" ry="2" />
<text text-anchor="" x="397.16" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_fd (20 samples, 0.04%)</title><rect x="697.7" y="1461" width="0.5" height="15.0" fill="rgb(212,114,23)" rx="2" ry="2" />
<text text-anchor="" x="700.69" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (25 samples, 0.05%)</title><rect x="983.9" y="1381" width="0.6" height="15.0" fill="rgb(229,169,38)" rx="2" ry="2" />
<text text-anchor="" x="986.90" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (983 samples, 2.14%)</title><rect x="1149.7" y="1653" width="25.3" height="15.0" fill="rgb(244,194,23)" rx="2" ry="2" />
<text text-anchor="" x="1152.72" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x2apic_send_IPI_dest (20 samples, 0.04%)</title><rect x="485.5" y="1061" width="0.5" height="15.0" fill="rgb(238,97,29)" rx="2" ry="2" />
<text text-anchor="" x="488.47" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (7 samples, 0.02%)</title><rect x="1188.3" y="1621" width="0.2" height="15.0" fill="rgb(236,141,11)" rx="2" ry="2" />
<text text-anchor="" x="1191.33" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (9 samples, 0.02%)</title><rect x="417.8" y="1429" width="0.2" height="15.0" fill="rgb(238,138,51)" rx="2" ry="2" />
<text text-anchor="" x="420.76" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_find_next_bit (5 samples, 0.01%)</title><rect x="771.0" y="1093" width="0.2" height="15.0" fill="rgb(223,13,1)" rx="2" ry="2" />
<text text-anchor="" x="774.04" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (942 samples, 2.05%)</title><rect x="762.1" y="1269" width="24.3" height="15.0" fill="rgb(220,143,8)" rx="2" ry="2" />
<text text-anchor="" x="765.14" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_need_to_treat_as_if_default_transaction (4 samples, 0.01%)</title><rect x="318.3" y="1493" width="0.1" height="15.0" fill="rgb(240,162,17)" rx="2" ry="2" />
<text text-anchor="" x="321.27" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (108 samples, 0.24%)</title><rect x="179.3" y="1509" width="2.8" height="15.0" fill="rgb(218,65,7)" rx="2" ry="2" />
<text text-anchor="" x="182.29" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (167 samples, 0.36%)</title><rect x="469.3" y="1173" width="4.3" height="15.0" fill="rgb(220,2,33)" rx="2" ry="2" />
<text text-anchor="" x="472.27" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (68 samples, 0.15%)</title><rect x="1146.9" y="1477" width="1.8" height="15.0" fill="rgb(246,23,43)" rx="2" ry="2" />
<text text-anchor="" x="1149.94" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_system_catalog (592 samples, 1.29%)</title><rect x="842.1" y="1477" width="15.2" height="15.0" fill="rgb(252,85,6)" rx="2" ry="2" />
<text text-anchor="" x="845.09" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (10 samples, 0.02%)</title><rect x="787.6" y="1365" width="0.2" height="15.0" fill="rgb(210,69,36)" rx="2" ry="2" />
<text text-anchor="" x="790.59" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (735 samples, 1.60%)</title><rect x="69.4" y="1381" width="18.9" height="15.0" fill="rgb(230,67,18)" rx="2" ry="2" />
<text text-anchor="" x="72.41" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (57 samples, 0.12%)</title><rect x="1132.9" y="1605" width="1.4" height="15.0" fill="rgb(238,70,37)" rx="2" ry="2" />
<text text-anchor="" x="1135.88" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (11 samples, 0.02%)</title><rect x="188.2" y="1509" width="0.3" height="15.0" fill="rgb(205,142,16)" rx="2" ry="2" />
<text text-anchor="" x="191.18" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="885" width="1.3" height="15.0" fill="rgb(251,110,20)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="895.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (4 samples, 0.01%)</title><rect x="571.5" y="1333" width="0.1" height="15.0" fill="rgb(215,183,39)" rx="2" ry="2" />
<text text-anchor="" x="574.49" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_insertinto_or_locking_clause (5 samples, 0.01%)</title><rect x="842.0" y="1477" width="0.1" height="15.0" fill="rgb(243,187,43)" rx="2" ry="2" />
<text text-anchor="" x="844.96" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (8 samples, 0.02%)</title><rect x="776.3" y="1077" width="0.2" height="15.0" fill="rgb(223,145,22)" rx="2" ry="2" />
<text text-anchor="" x="779.33" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (5 samples, 0.01%)</title><rect x="856.1" y="1365" width="0.1" height="15.0" fill="rgb(222,16,23)" rx="2" ry="2" />
<text text-anchor="" x="859.10" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (42 samples, 0.09%)</title><rect x="369.3" y="1477" width="1.1" height="15.0" fill="rgb(227,121,9)" rx="2" ry="2" />
<text text-anchor="" x="372.32" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="305.9" y="1477" width="0.1" height="15.0" fill="rgb(227,135,38)" rx="2" ry="2" />
<text text-anchor="" x="308.87" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (13 samples, 0.03%)</title><rect x="247.7" y="1269" width="0.4" height="15.0" fill="rgb(235,180,38)" rx="2" ry="2" />
<text text-anchor="" x="250.75" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_head (5 samples, 0.01%)</title><rect x="894.3" y="1397" width="0.1" height="15.0" fill="rgb(246,196,37)" rx="2" ry="2" />
<text text-anchor="" x="897.28" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (5 samples, 0.01%)</title><rect x="874.3" y="1381" width="0.2" height="15.0" fill="rgb(224,200,41)" rx="2" ry="2" />
<text text-anchor="" x="877.33" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>downcase_identifier (5 samples, 0.01%)</title><rect x="980.5" y="1429" width="0.1" height="15.0" fill="rgb(215,49,2)" rx="2" ry="2" />
<text text-anchor="" x="983.45" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (383 samples, 0.83%)</title><rect x="321.1" y="1333" width="9.9" height="15.0" fill="rgb(230,194,5)" rx="2" ry="2" />
<text text-anchor="" x="324.12" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_fd (13 samples, 0.03%)</title><rect x="1036.8" y="1509" width="0.3" height="15.0" fill="rgb(223,95,1)" rx="2" ry="2" />
<text text-anchor="" x="1039.75" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (32 samples, 0.07%)</title><rect x="747.2" y="1381" width="0.8" height="15.0" fill="rgb(240,26,28)" rx="2" ry="2" />
<text text-anchor="" x="750.20" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (7 samples, 0.02%)</title><rect x="577.7" y="1317" width="0.2" height="15.0" fill="rgb(241,214,1)" rx="2" ry="2" />
<text text-anchor="" x="580.71" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (218 samples, 0.47%)</title><rect x="775.2" y="1093" width="5.6" height="15.0" fill="rgb(210,98,42)" rx="2" ry="2" />
<text text-anchor="" x="778.17" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (30 samples, 0.07%)</title><rect x="684.9" y="1205" width="0.8" height="15.0" fill="rgb(229,85,10)" rx="2" ry="2" />
<text text-anchor="" x="687.91" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="362.4" y="1221" width="0.1" height="15.0" fill="rgb(215,9,3)" rx="2" ry="2" />
<text text-anchor="" x="365.43" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_system_catalog (392 samples, 0.85%)</title><rect x="845.1" y="1397" width="10.1" height="15.0" fill="rgb(232,207,33)" rx="2" ry="2" />
<text text-anchor="" x="848.10" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (9 samples, 0.02%)</title><rect x="234.0" y="1477" width="0.2" height="15.0" fill="rgb(254,157,12)" rx="2" ry="2" />
<text text-anchor="" x="236.97" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (36 samples, 0.08%)</title><rect x="307.8" y="1461" width="0.9" height="15.0" fill="rgb(206,183,48)" rx="2" ry="2" />
<text text-anchor="" x="310.75" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="995.1" y="1397" width="0.1" height="15.0" fill="rgb(250,175,54)" rx="2" ry="2" />
<text text-anchor="" x="998.11" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read at plt (4 samples, 0.01%)</title><rect x="1056.3" y="1509" width="0.1" height="15.0" fill="rgb(215,195,16)" rx="2" ry="2" />
<text text-anchor="" x="1059.34" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (85 samples, 0.19%)</title><rect x="398.6" y="1269" width="2.2" height="15.0" fill="rgb(229,147,21)" rx="2" ry="2" />
<text text-anchor="" x="401.58" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_actor (187 samples, 0.41%)</title><rect x="1085.1" y="1317" width="4.8" height="15.0" fill="rgb(237,74,51)" rx="2" ry="2" />
<text text-anchor="" x="1088.14" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (25 samples, 0.05%)</title><rect x="863.8" y="1365" width="0.7" height="15.0" fill="rgb(241,114,8)" rx="2" ry="2" />
<text text-anchor="" x="866.82" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAlloc (16 samples, 0.03%)</title><rect x="314.8" y="1461" width="0.4" height="15.0" fill="rgb(237,83,20)" rx="2" ry="2" />
<text text-anchor="" x="317.79" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stack_object (5 samples, 0.01%)</title><rect x="290.2" y="1365" width="0.2" height="15.0" fill="rgb(247,56,24)" rx="2" ry="2" />
<text text-anchor="" x="293.24" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BindComplete (11 samples, 0.02%)</title><rect x="653.7" y="1509" width="0.3" height="15.0" fill="rgb(254,167,32)" rx="2" ry="2" />
<text text-anchor="" x="656.68" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (121 samples, 0.26%)</title><rect x="692.6" y="1317" width="3.1" height="15.0" fill="rgb(221,102,18)" rx="2" ry="2" />
<text text-anchor="" x="695.63" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_add_sent_message (266 samples, 0.58%)</title><rect x="713.4" y="1493" width="6.8" height="15.0" fill="rgb(222,103,3)" rx="2" ry="2" />
<text text-anchor="" x="716.37" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Bind (1,871 samples, 4.08%)</title><rect x="300.7" y="1525" width="48.1" height="15.0" fill="rgb(227,119,35)" rx="2" ry="2" />
<text text-anchor="" x="303.68" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Bind</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (42 samples, 0.09%)</title><rect x="1026.4" y="1285" width="1.1" height="15.0" fill="rgb(217,129,44)" rx="2" ry="2" />
<text text-anchor="" x="1029.45" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (125 samples, 0.27%)</title><rect x="483.6" y="1141" width="3.2" height="15.0" fill="rgb(226,100,46)" rx="2" ry="2" />
<text text-anchor="" x="486.57" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (16 samples, 0.03%)</title><rect x="628.2" y="1525" width="0.4" height="15.0" fill="rgb(238,142,25)" rx="2" ry="2" />
<text text-anchor="" x="631.23" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAllocZeroAligned (16 samples, 0.03%)</title><rect x="995.6" y="1445" width="0.4" height="15.0" fill="rgb(235,154,41)" rx="2" ry="2" />
<text text-anchor="" x="998.60" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>insertinto_or_locking_clause_walker (11 samples, 0.02%)</title><rect x="891.7" y="1381" width="0.3" height="15.0" fill="rgb(243,146,47)" rx="2" ry="2" />
<text text-anchor="" x="894.74" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (5 samples, 0.01%)</title><rect x="308.5" y="1429" width="0.1" height="15.0" fill="rgb(243,129,28)" rx="2" ry="2" />
<text text-anchor="" x="311.47" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (7 samples, 0.02%)</title><rect x="178.5" y="1317" width="0.2" height="15.0" fill="rgb(205,221,8)" rx="2" ry="2" />
<text text-anchor="" x="181.54" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (31 samples, 0.07%)</title><rect x="618.7" y="1509" width="0.8" height="15.0" fill="rgb(208,215,32)" rx="2" ry="2" />
<text text-anchor="" x="621.72" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (15 samples, 0.03%)</title><rect x="1082.8" y="1285" width="0.4" height="15.0" fill="rgb(220,36,47)" rx="2" ry="2" />
<text text-anchor="" x="1085.80" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_kind_from_one_backend (5 samples, 0.01%)</title><rect x="296.3" y="1525" width="0.1" height="15.0" fill="rgb(221,168,38)" rx="2" ry="2" />
<text text-anchor="" x="299.26" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (4 samples, 0.01%)</title><rect x="748.2" y="1381" width="0.1" height="15.0" fill="rgb(227,219,45)" rx="2" ry="2" />
<text text-anchor="" x="751.23" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (59 samples, 0.13%)</title><rect x="401.2" y="1285" width="1.5" height="15.0" fill="rgb(207,20,28)" rx="2" ry="2" />
<text text-anchor="" x="404.20" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (21 samples, 0.05%)</title><rect x="740.1" y="1173" width="0.5" height="15.0" fill="rgb(206,164,40)" rx="2" ry="2" />
<text text-anchor="" x="743.11" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (4 samples, 0.01%)</title><rect x="374.9" y="1493" width="0.1" height="15.0" fill="rgb(217,215,38)" rx="2" ry="2" />
<text text-anchor="" x="377.87" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (15 samples, 0.03%)</title><rect x="1095.7" y="1493" width="0.3" height="15.0" fill="rgb(222,228,35)" rx="2" ry="2" />
<text text-anchor="" x="1098.65" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (8 samples, 0.02%)</title><rect x="1090.3" y="1413" width="0.2" height="15.0" fill="rgb(214,91,35)" rx="2" ry="2" />
<text text-anchor="" x="1093.28" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (64 samples, 0.14%)</title><rect x="673.5" y="1477" width="1.7" height="15.0" fill="rgb(226,32,18)" rx="2" ry="2" />
<text text-anchor="" x="676.53" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (12 samples, 0.03%)</title><rect x="58.3" y="1477" width="0.3" height="15.0" fill="rgb(240,172,26)" rx="2" ry="2" />
<text text-anchor="" x="61.33" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1,695 samples, 3.69%)</title><rect x="447.4" y="1397" width="43.6" height="15.0" fill="rgb(222,189,6)" rx="2" ry="2" />
<text text-anchor="" x="450.40" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__vf..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_get_previous_message (9 samples, 0.02%)</title><rect x="198.5" y="1509" width="0.3" height="15.0" fill="rgb(238,169,22)" rx="2" ry="2" />
<text text-anchor="" x="201.54" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ReadyForQuery (1,649 samples, 3.59%)</title><rect x="101.2" y="1525" width="42.4" height="15.0" fill="rgb(209,101,32)" rx="2" ry="2" />
<text text-anchor="" x="104.24" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Rea..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (7 samples, 0.02%)</title><rect x="750.0" y="1317" width="0.2" height="15.0" fill="rgb(207,186,47)" rx="2" ry="2" />
<text text-anchor="" x="753.01" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="581" width="1.3" height="15.0" fill="rgb(212,119,28)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextStrdup (12 samples, 0.03%)</title><rect x="822.0" y="1461" width="0.3" height="15.0" fill="rgb(212,122,20)" rx="2" ry="2" />
<text text-anchor="" x="825.04" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (938 samples, 2.04%)</title><rect x="762.2" y="1253" width="24.1" height="15.0" fill="rgb(221,214,53)" rx="2" ry="2" />
<text text-anchor="" x="765.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (6 samples, 0.01%)</title><rect x="813.4" y="1477" width="0.1" height="15.0" fill="rgb(254,153,20)" rx="2" ry="2" />
<text text-anchor="" x="816.35" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (15 samples, 0.03%)</title><rect x="92.8" y="1493" width="0.4" height="15.0" fill="rgb(239,188,9)" rx="2" ry="2" />
<text text-anchor="" x="95.83" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yy_switch_to_buffer (7 samples, 0.02%)</title><rect x="1005.7" y="1461" width="0.2" height="15.0" fill="rgb(252,121,2)" rx="2" ry="2" />
<text text-anchor="" x="1008.70" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm (9 samples, 0.02%)</title><rect x="694.5" y="1269" width="0.2" height="15.0" fill="rgb(226,55,40)" rx="2" ry="2" />
<text text-anchor="" x="697.50" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_free (24 samples, 0.05%)</title><rect x="224.9" y="1493" width="0.6" height="15.0" fill="rgb(227,191,9)" rx="2" ry="2" />
<text text-anchor="" x="227.92" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (10 samples, 0.02%)</title><rect x="691.6" y="1365" width="0.3" height="15.0" fill="rgb(247,203,36)" rx="2" ry="2" />
<text text-anchor="" x="694.62" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cgroup_account_cputime (10 samples, 0.02%)</title><rect x="281.5" y="1237" width="0.3" height="15.0" fill="rgb(235,207,34)" rx="2" ry="2" />
<text text-anchor="" x="284.53" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (65 samples, 0.14%)</title><rect x="13.8" y="1605" width="1.7" height="15.0" fill="rgb(212,197,47)" rx="2" ry="2" />
<text text-anchor="" x="16.80" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_next (4 samples, 0.01%)</title><rect x="577.9" y="1333" width="0.1" height="15.0" fill="rgb(210,20,31)" rx="2" ry="2" />
<text text-anchor="" x="580.89" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (8 samples, 0.02%)</title><rect x="753.4" y="1253" width="0.2" height="15.0" fill="rgb(246,206,46)" rx="2" ry="2" />
<text text-anchor="" x="756.40" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_select_query (10 samples, 0.02%)</title><rect x="387.7" y="1509" width="0.2" height="15.0" fill="rgb(250,92,50)" rx="2" ry="2" />
<text text-anchor="" x="390.68" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (5 samples, 0.01%)</title><rect x="283.9" y="1141" width="0.2" height="15.0" fill="rgb(241,151,4)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (17 samples, 0.04%)</title><rect x="327.6" y="1285" width="0.5" height="15.0" fill="rgb(217,138,28)" rx="2" ry="2" />
<text text-anchor="" x="330.65" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (50 samples, 0.11%)</title><rect x="20.3" y="1621" width="1.2" height="15.0" fill="rgb(250,3,40)" rx="2" ry="2" />
<text text-anchor="" x="23.26" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (339 samples, 0.74%)</title><rect x="408.0" y="1365" width="8.8" height="15.0" fill="rgb(254,48,10)" rx="2" ry="2" />
<text text-anchor="" x="411.04" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (14 samples, 0.03%)</title><rect x="1104.3" y="1397" width="0.4" height="15.0" fill="rgb(238,56,52)" rx="2" ry="2" />
<text text-anchor="" x="1107.34" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (5 samples, 0.01%)</title><rect x="74.3" y="1253" width="0.2" height="15.0" fill="rgb(212,180,39)" rx="2" ry="2" />
<text text-anchor="" x="77.32" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (10 samples, 0.02%)</title><rect x="138.0" y="1493" width="0.3" height="15.0" fill="rgb(233,77,42)" rx="2" ry="2" />
<text text-anchor="" x="141.00" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (41 samples, 0.09%)</title><rect x="142.0" y="1493" width="1.1" height="15.0" fill="rgb(215,222,24)" rx="2" ry="2" />
<text text-anchor="" x="145.04" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (11 samples, 0.02%)</title><rect x="877.3" y="1349" width="0.2" height="15.0" fill="rgb(237,37,14)" rx="2" ry="2" />
<text text-anchor="" x="880.26" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.01%)</title><rect x="178.4" y="1317" width="0.1" height="15.0" fill="rgb(234,214,10)" rx="2" ry="2" />
<text text-anchor="" x="181.39" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (7 samples, 0.02%)</title><rect x="787.2" y="1317" width="0.2" height="15.0" fill="rgb(239,191,24)" rx="2" ry="2" />
<text text-anchor="" x="790.23" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="164.8" y="1493" width="0.1" height="15.0" fill="rgb(239,169,33)" rx="2" ry="2" />
<text text-anchor="" x="167.84" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="373" width="1.1" height="15.0" fill="rgb(233,116,38)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_vsnprintf (13 samples, 0.03%)</title><rect x="1011.4" y="1509" width="0.3" height="15.0" fill="rgb(242,195,9)" rx="2" ry="2" />
<text text-anchor="" x="1014.38" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (495 samples, 1.08%)</title><rect x="354.4" y="1429" width="12.7" height="15.0" fill="rgb(210,45,48)" rx="2" ry="2" />
<text text-anchor="" x="357.39" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (6 samples, 0.01%)</title><rect x="767.1" y="1141" width="0.2" height="15.0" fill="rgb(212,62,37)" rx="2" ry="2" />
<text text-anchor="" x="770.10" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (6 samples, 0.01%)</title><rect x="806.8" y="1493" width="0.1" height="15.0" fill="rgb(251,202,45)" rx="2" ry="2" />
<text text-anchor="" x="809.80" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (6 samples, 0.01%)</title><rect x="1009.3" y="1445" width="0.2" height="15.0" fill="rgb(206,157,36)" rx="2" ry="2" />
<text text-anchor="" x="1012.35" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scanner_finish (6 samples, 0.01%)</title><rect x="1009.7" y="1493" width="0.1" height="15.0" fill="rgb(230,174,3)" rx="2" ry="2" />
<text text-anchor="" x="1012.68" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free at plt (5 samples, 0.01%)</title><rect x="680.1" y="1445" width="0.2" height="15.0" fill="rgb(216,127,50)" rx="2" ry="2" />
<text text-anchor="" x="683.13" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (25 samples, 0.05%)</title><rect x="366.5" y="1381" width="0.6" height="15.0" fill="rgb(244,12,28)" rx="2" ry="2" />
<text text-anchor="" x="369.47" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (13 samples, 0.03%)</title><rect x="139.6" y="1493" width="0.3" height="15.0" fill="rgb(211,145,7)" rx="2" ry="2" />
<text text-anchor="" x="142.59" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (54 samples, 0.12%)</title><rect x="480.2" y="1109" width="1.4" height="15.0" fill="rgb(250,202,22)" rx="2" ry="2" />
<text text-anchor="" x="483.20" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (4 samples, 0.01%)</title><rect x="504.9" y="1509" width="0.1" height="15.0" fill="rgb(230,30,17)" rx="2" ry="2" />
<text text-anchor="" x="507.88" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cgroup_account_cputime (28 samples, 0.06%)</title><rect x="565.6" y="1301" width="0.7" height="15.0" fill="rgb(235,124,23)" rx="2" ry="2" />
<text text-anchor="" x="568.60" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (10 samples, 0.02%)</title><rect x="677.7" y="1429" width="0.2" height="15.0" fill="rgb(227,115,41)" rx="2" ry="2" />
<text text-anchor="" x="680.69" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (7 samples, 0.02%)</title><rect x="321.4" y="1317" width="0.2" height="15.0" fill="rgb(213,97,47)" rx="2" ry="2" />
<text text-anchor="" x="324.40" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (18 samples, 0.04%)</title><rect x="895.4" y="1445" width="0.5" height="15.0" fill="rgb(251,82,15)" rx="2" ry="2" />
<text text-anchor="" x="898.44" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (6 samples, 0.01%)</title><rect x="129.7" y="1189" width="0.1" height="15.0" fill="rgb(219,202,13)" rx="2" ry="2" />
<text text-anchor="" x="132.67" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (11 samples, 0.02%)</title><rect x="1067.2" y="1349" width="0.3" height="15.0" fill="rgb(254,225,39)" rx="2" ry="2" />
<text text-anchor="" x="1070.22" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree at GLIBC_2.2.5 (17 samples, 0.04%)</title><rect x="198.1" y="1477" width="0.4" height="15.0" fill="rgb(247,62,40)" rx="2" ry="2" />
<text text-anchor="" x="201.08" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (6 samples, 0.01%)</title><rect x="178.9" y="1413" width="0.1" height="15.0" fill="rgb(212,91,41)" rx="2" ry="2" />
<text text-anchor="" x="181.85" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="134.1" y="1493" width="0.1" height="15.0" fill="rgb(222,46,9)" rx="2" ry="2" />
<text text-anchor="" x="137.12" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcasecmp_l_avx (59 samples, 0.13%)</title><rect x="860.5" y="1381" width="1.5" height="15.0" fill="rgb(215,68,26)" rx="2" ry="2" />
<text text-anchor="" x="863.50" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (8 samples, 0.02%)</title><rect x="390.1" y="1493" width="0.3" height="15.0" fill="rgb(253,90,53)" rx="2" ry="2" />
<text text-anchor="" x="393.15" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="151.3" y="1493" width="0.2" height="15.0" fill="rgb(230,180,9)" rx="2" ry="2" />
<text text-anchor="" x="154.34" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (6 samples, 0.01%)</title><rect x="1138.9" y="1653" width="0.2" height="15.0" fill="rgb(231,61,44)" rx="2" ry="2" />
<text text-anchor="" x="1141.94" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (6 samples, 0.01%)</title><rect x="514.6" y="1493" width="0.2" height="15.0" fill="rgb(238,115,12)" rx="2" ry="2" />
<text text-anchor="" x="517.65" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (6 samples, 0.01%)</title><rect x="12.1" y="1461" width="0.1" height="15.0" fill="rgb(248,158,9)" rx="2" ry="2" />
<text text-anchor="" x="15.08" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>temp_table_walker (45 samples, 0.10%)</title><rect x="865.8" y="1461" width="1.2" height="15.0" fill="rgb(251,73,0)" rx="2" ry="2" />
<text text-anchor="" x="868.80" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (5 samples, 0.01%)</title><rect x="401.9" y="1173" width="0.1" height="15.0" fill="rgb(246,114,46)" rx="2" ry="2" />
<text text-anchor="" x="404.87" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>system_catalog_walker (9 samples, 0.02%)</title><rect x="856.4" y="1429" width="0.2" height="15.0" fill="rgb(223,214,48)" rx="2" ry="2" />
<text text-anchor="" x="859.39" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (4 samples, 0.01%)</title><rect x="1143.3" y="1557" width="0.1" height="15.0" fill="rgb(205,146,33)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detect_postmaster_down_error (6 samples, 0.01%)</title><rect x="613.9" y="1541" width="0.2" height="15.0" fill="rgb(249,200,37)" rx="2" ry="2" />
<text text-anchor="" x="616.93" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (9 samples, 0.02%)</title><rect x="338.9" y="1445" width="0.2" height="15.0" fill="rgb(250,79,12)" rx="2" ry="2" />
<text text-anchor="" x="341.91" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc0 (212 samples, 0.46%)</title><rect x="801.3" y="1477" width="5.5" height="15.0" fill="rgb(205,163,30)" rx="2" ry="2" />
<text text-anchor="" x="804.35" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (4 samples, 0.01%)</title><rect x="397.2" y="1269" width="0.1" height="15.0" fill="rgb(225,48,27)" rx="2" ry="2" />
<text text-anchor="" x="400.24" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (9 samples, 0.02%)</title><rect x="735.1" y="1253" width="0.3" height="15.0" fill="rgb(243,162,46)" rx="2" ry="2" />
<text text-anchor="" x="738.12" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="678.6" y="1429" width="0.1" height="15.0" fill="rgb(236,154,41)" rx="2" ry="2" />
<text text-anchor="" x="681.56" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (423 samples, 0.92%)</title><rect x="773.3" y="1141" width="10.9" height="15.0" fill="rgb(235,202,54)" rx="2" ry="2" />
<text text-anchor="" x="776.30" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_unlogged_table (312 samples, 0.68%)</title><rect x="872.1" y="1397" width="8.0" height="15.0" fill="rgb(240,195,45)" rx="2" ry="2" />
<text text-anchor="" x="875.07" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lappend (21 samples, 0.05%)</title><rect x="424.8" y="1493" width="0.6" height="15.0" fill="rgb(238,196,0)" rx="2" ry="2" />
<text text-anchor="" x="427.83" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_find_next_bit (10 samples, 0.02%)</title><rect x="770.7" y="1093" width="0.3" height="15.0" fill="rgb(240,209,0)" rx="2" ry="2" />
<text text-anchor="" x="773.73" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (17 samples, 0.04%)</title><rect x="272.0" y="1397" width="0.4" height="15.0" fill="rgb(235,180,34)" rx="2" ry="2" />
<text text-anchor="" x="274.97" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_free_private (9 samples, 0.02%)</title><rect x="223.8" y="1477" width="0.2" height="15.0" fill="rgb(243,125,25)" rx="2" ry="2" />
<text text-anchor="" x="226.76" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="441.6" y="1461" width="1.1" height="15.0" fill="rgb(226,198,16)" rx="2" ry="2" />
<text text-anchor="" x="444.59" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_start_transaction_query (6 samples, 0.01%)</title><rect x="728.3" y="1461" width="0.1" height="15.0" fill="rgb(228,8,49)" rx="2" ry="2" />
<text text-anchor="" x="731.28" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (64 samples, 0.14%)</title><rect x="1100.8" y="1461" width="1.7" height="15.0" fill="rgb(223,39,19)" rx="2" ry="2" />
<text text-anchor="" x="1103.84" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_fd (41 samples, 0.09%)</title><rect x="1053.0" y="1493" width="1.0" height="15.0" fill="rgb(206,64,37)" rx="2" ry="2" />
<text text-anchor="" x="1055.95" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (4 samples, 0.01%)</title><rect x="72.6" y="1301" width="0.1" height="15.0" fill="rgb(230,143,27)" rx="2" ry="2" />
<text text-anchor="" x="75.62" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetDelete (54 samples, 0.12%)</title><rect x="309.9" y="1429" width="1.3" height="15.0" fill="rgb(212,107,1)" rx="2" ry="2" />
<text text-anchor="" x="312.86" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (137 samples, 0.30%)</title><rect x="483.5" y="1157" width="3.5" height="15.0" fill="rgb(234,15,50)" rx="2" ry="2" />
<text text-anchor="" x="486.49" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (63 samples, 0.14%)</title><rect x="457.2" y="1253" width="1.7" height="15.0" fill="rgb(219,129,5)" rx="2" ry="2" />
<text text-anchor="" x="460.24" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ctype_b_loc (24 samples, 0.05%)</title><rect x="827.1" y="1477" width="0.6" height="15.0" fill="rgb(232,9,10)" rx="2" ry="2" />
<text text-anchor="" x="830.11" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1253" width="1.4" height="15.0" fill="rgb(207,26,17)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (11 samples, 0.02%)</title><rect x="364.8" y="1221" width="0.3" height="15.0" fill="rgb(243,69,45)" rx="2" ry="2" />
<text text-anchor="" x="367.82" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pollwake (37 samples, 0.08%)</title><rect x="128.9" y="1269" width="1.0" height="15.0" fill="rgb(231,194,41)" rx="2" ry="2" />
<text text-anchor="" x="131.90" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (217 samples, 0.47%)</title><rect x="767.3" y="1141" width="5.6" height="15.0" fill="rgb(235,30,14)" rx="2" ry="2" />
<text text-anchor="" x="770.31" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_entity (5 samples, 0.01%)</title><rect x="694.9" y="1269" width="0.2" height="15.0" fill="rgb(217,71,16)" rx="2" ry="2" />
<text text-anchor="" x="697.94" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (9 samples, 0.02%)</title><rect x="586.1" y="1445" width="0.2" height="15.0" fill="rgb(209,5,4)" rx="2" ry="2" />
<text text-anchor="" x="589.07" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksize (11 samples, 0.02%)</title><rect x="460.6" y="1285" width="0.3" height="15.0" fill="rgb(232,203,35)" rx="2" ry="2" />
<text text-anchor="" x="463.61" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (201 samples, 0.44%)</title><rect x="682.7" y="1445" width="5.2" height="15.0" fill="rgb(246,10,31)" rx="2" ry="2" />
<text text-anchor="" x="685.73" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (8 samples, 0.02%)</title><rect x="12.6" y="1525" width="0.2" height="15.0" fill="rgb(210,82,13)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (94 samples, 0.20%)</title><rect x="287.3" y="1381" width="2.4" height="15.0" fill="rgb(211,39,7)" rx="2" ry="2" />
<text text-anchor="" x="290.31" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (6 samples, 0.01%)</title><rect x="403.1" y="1381" width="0.2" height="15.0" fill="rgb(220,132,12)" rx="2" ry="2" />
<text text-anchor="" x="406.13" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree at GLIBC_2.2.5 (12 samples, 0.03%)</title><rect x="229.0" y="1461" width="0.3" height="15.0" fill="rgb(214,158,54)" rx="2" ry="2" />
<text text-anchor="" x="231.98" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (91 samples, 0.20%)</title><rect x="484.0" y="1125" width="2.3" height="15.0" fill="rgb(213,40,42)" rx="2" ry="2" />
<text text-anchor="" x="487.01" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (534 samples, 1.16%)</title><rect x="244.2" y="1381" width="13.8" height="15.0" fill="rgb(218,173,50)" rx="2" ry="2" />
<text text-anchor="" x="247.23" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (35 samples, 0.08%)</title><rect x="741.9" y="1365" width="0.9" height="15.0" fill="rgb(222,143,32)" rx="2" ry="2" />
<text text-anchor="" x="744.91" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (8 samples, 0.02%)</title><rect x="382.6" y="1477" width="0.2" height="15.0" fill="rgb(214,181,54)" rx="2" ry="2" />
<text text-anchor="" x="385.61" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (34 samples, 0.07%)</title><rect x="804.7" y="1461" width="0.9" height="15.0" fill="rgb(245,31,0)" rx="2" ry="2" />
<text text-anchor="" x="807.74" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (5 samples, 0.01%)</title><rect x="325.6" y="1221" width="0.1" height="15.0" fill="rgb(235,99,54)" rx="2" ry="2" />
<text text-anchor="" x="328.62" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (20 samples, 0.04%)</title><rect x="751.0" y="1301" width="0.5" height="15.0" fill="rgb(252,36,31)" rx="2" ry="2" />
<text text-anchor="" x="753.98" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pollwait (26 samples, 0.06%)</title><rect x="289.1" y="1349" width="0.6" height="15.0" fill="rgb(212,101,49)" rx="2" ry="2" />
<text text-anchor="" x="292.06" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (9 samples, 0.02%)</title><rect x="178.0" y="1205" width="0.2" height="15.0" fill="rgb(209,5,42)" rx="2" ry="2" />
<text text-anchor="" x="180.98" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (52 samples, 0.11%)</title><rect x="1051.2" y="1477" width="1.3" height="15.0" fill="rgb(252,189,30)" rx="2" ry="2" />
<text text-anchor="" x="1054.20" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (557 samples, 1.21%)</title><rect x="243.8" y="1413" width="14.4" height="15.0" fill="rgb(224,59,37)" rx="2" ry="2" />
<text text-anchor="" x="246.84" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_extended_send_and_wait (2,775 samples, 6.05%)</title><rect x="722.5" y="1493" width="71.3" height="15.0" fill="rgb(205,208,51)" rx="2" ry="2" />
<text text-anchor="" x="725.47" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >pool_ext..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (15 samples, 0.03%)</title><rect x="350.9" y="1509" width="0.3" height="15.0" fill="rgb(242,111,1)" rx="2" ry="2" />
<text text-anchor="" x="353.86" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_create_sent_message (65 samples, 0.14%)</title><rect x="313.6" y="1509" width="1.7" height="15.0" fill="rgb(205,217,3)" rx="2" ry="2" />
<text text-anchor="" x="316.64" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (11 samples, 0.02%)</title><rect x="1020.4" y="1253" width="0.2" height="15.0" fill="rgb(226,78,19)" rx="2" ry="2" />
<text text-anchor="" x="1023.35" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (16 samples, 0.03%)</title><rect x="415.3" y="1221" width="0.4" height="15.0" fill="rgb(214,97,29)" rx="2" ry="2" />
<text text-anchor="" x="418.29" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (265 samples, 0.58%)</title><rect x="1076.0" y="1269" width="6.8" height="15.0" fill="rgb(249,106,2)" rx="2" ry="2" />
<text text-anchor="" x="1078.98" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (8 samples, 0.02%)</title><rect x="12.6" y="1477" width="0.2" height="15.0" fill="rgb(238,52,38)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="373.4" y="1493" width="0.1" height="15.0" fill="rgb(239,22,37)" rx="2" ry="2" />
<text text-anchor="" x="376.41" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (11 samples, 0.02%)</title><rect x="894.7" y="1461" width="0.3" height="15.0" fill="rgb(233,26,50)" rx="2" ry="2" />
<text text-anchor="" x="897.69" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (5 samples, 0.01%)</title><rect x="163.4" y="1493" width="0.2" height="15.0" fill="rgb(208,25,52)" rx="2" ry="2" />
<text text-anchor="" x="166.43" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (584 samples, 1.27%)</title><rect x="1039.7" y="1509" width="15.0" height="15.0" fill="rgb(254,77,32)" rx="2" ry="2" />
<text text-anchor="" x="1042.74" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_sent_message (15 samples, 0.03%)</title><rect x="421.6" y="1509" width="0.4" height="15.0" fill="rgb(221,90,37)" rx="2" ry="2" />
<text text-anchor="" x="424.61" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_local_session_id (5 samples, 0.01%)</title><rect x="863.7" y="1365" width="0.1" height="15.0" fill="rgb(254,77,19)" rx="2" ry="2" />
<text text-anchor="" x="866.69" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (31 samples, 0.07%)</title><rect x="686.3" y="1285" width="0.8" height="15.0" fill="rgb(226,121,8)" rx="2" ry="2" />
<text text-anchor="" x="689.33" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (2,559 samples, 5.58%)</title><rect x="536.6" y="1461" width="65.7" height="15.0" fill="rgb(207,33,33)" rx="2" ry="2" />
<text text-anchor="" x="539.55" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_select</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (10 samples, 0.02%)</title><rect x="235.9" y="1477" width="0.3" height="15.0" fill="rgb(226,61,8)" rx="2" ry="2" />
<text text-anchor="" x="238.92" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iter (41 samples, 0.09%)</title><rect x="734.7" y="1285" width="1.1" height="15.0" fill="rgb(243,181,19)" rx="2" ry="2" />
<text text-anchor="" x="737.71" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (14 samples, 0.03%)</title><rect x="690.1" y="1445" width="0.3" height="15.0" fill="rgb(220,38,29)" rx="2" ry="2" />
<text text-anchor="" x="693.06" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (63 samples, 0.14%)</title><rect x="258.9" y="1397" width="1.6" height="15.0" fill="rgb(212,211,17)" rx="2" ry="2" />
<text text-anchor="" x="261.91" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (39 samples, 0.08%)</title><rect x="439.1" y="1493" width="1.0" height="15.0" fill="rgb(237,110,19)" rx="2" ry="2" />
<text text-anchor="" x="442.12" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_free (46 samples, 0.10%)</title><rect x="222.6" y="1477" width="1.2" height="15.0" fill="rgb(248,175,24)" rx="2" ry="2" />
<text text-anchor="" x="225.58" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (41 samples, 0.09%)</title><rect x="411.8" y="1237" width="1.1" height="15.0" fill="rgb(219,141,5)" rx="2" ry="2" />
<text text-anchor="" x="414.84" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (76 samples, 0.17%)</title><rect x="391.7" y="1493" width="1.9" height="15.0" fill="rgb(239,19,51)" rx="2" ry="2" />
<text text-anchor="" x="394.69" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (86 samples, 0.19%)</title><rect x="1073.5" y="1253" width="2.3" height="15.0" fill="rgb(254,90,0)" rx="2" ry="2" />
<text text-anchor="" x="1076.54" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (26 samples, 0.06%)</title><rect x="1122.0" y="1509" width="0.7" height="15.0" fill="rgb(226,59,45)" rx="2" ry="2" />
<text text-anchor="" x="1125.00" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (8 samples, 0.02%)</title><rect x="339.9" y="1445" width="0.2" height="15.0" fill="rgb(230,88,37)" rx="2" ry="2" />
<text text-anchor="" x="342.89" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (9 samples, 0.02%)</title><rect x="1067.8" y="1333" width="0.2" height="15.0" fill="rgb(219,82,47)" rx="2" ry="2" />
<text text-anchor="" x="1070.76" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (8 samples, 0.02%)</title><rect x="262.2" y="1493" width="0.2" height="15.0" fill="rgb(222,212,23)" rx="2" ry="2" />
<text text-anchor="" x="265.22" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (251 samples, 0.55%)</title><rect x="690.5" y="1445" width="6.4" height="15.0" fill="rgb(217,186,36)" rx="2" ry="2" />
<text text-anchor="" x="693.49" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (45 samples, 0.10%)</title><rect x="132.0" y="1477" width="1.1" height="15.0" fill="rgb(234,196,34)" rx="2" ry="2" />
<text text-anchor="" x="134.98" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_need_to_treat_as_if_default_transaction (13 samples, 0.03%)</title><rect x="728.1" y="1477" width="0.3" height="15.0" fill="rgb(229,143,19)" rx="2" ry="2" />
<text text-anchor="" x="731.10" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (20 samples, 0.04%)</title><rect x="626.1" y="1525" width="0.5" height="15.0" fill="rgb(227,73,17)" rx="2" ry="2" />
<text text-anchor="" x="629.09" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (45 samples, 0.10%)</title><rect x="1019.5" y="1269" width="1.2" height="15.0" fill="rgb(212,117,29)" rx="2" ry="2" />
<text text-anchor="" x="1022.50" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (18 samples, 0.04%)</title><rect x="1005.1" y="1429" width="0.4" height="15.0" fill="rgb(237,113,9)" rx="2" ry="2" />
<text text-anchor="" x="1008.08" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (63 samples, 0.14%)</title><rect x="401.1" y="1301" width="1.6" height="15.0" fill="rgb(252,169,49)" rx="2" ry="2" />
<text text-anchor="" x="404.10" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (6 samples, 0.01%)</title><rect x="347.1" y="1477" width="0.1" height="15.0" fill="rgb(214,157,43)" rx="2" ry="2" />
<text text-anchor="" x="350.06" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (34 samples, 0.07%)</title><rect x="819.5" y="1493" width="0.9" height="15.0" fill="rgb(248,222,15)" rx="2" ry="2" />
<text text-anchor="" x="822.55" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (4 samples, 0.01%)</title><rect x="10.6" y="1573" width="0.1" height="15.0" fill="rgb(207,85,37)" rx="2" ry="2" />
<text text-anchor="" x="13.57" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (9 samples, 0.02%)</title><rect x="745.5" y="1445" width="0.2" height="15.0" fill="rgb(214,22,28)" rx="2" ry="2" />
<text text-anchor="" x="748.51" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlogged_table_walker (34 samples, 0.07%)</title><rect x="883.4" y="1461" width="0.9" height="15.0" fill="rgb(244,9,53)" rx="2" ry="2" />
<text text-anchor="" x="886.41" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_command_success (6 samples, 0.01%)</title><rect x="663.1" y="1509" width="0.2" height="15.0" fill="rgb(249,102,35)" rx="2" ry="2" />
<text text-anchor="" x="666.14" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (52 samples, 0.11%)</title><rect x="28.1" y="1621" width="1.3" height="15.0" fill="rgb(213,21,38)" rx="2" ry="2" />
<text text-anchor="" x="31.10" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dump_sent_message (9 samples, 0.02%)</title><rect x="718.0" y="1445" width="0.2" height="15.0" fill="rgb(235,199,15)" rx="2" ry="2" />
<text text-anchor="" x="721.00" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (5 samples, 0.01%)</title><rect x="1050.3" y="1413" width="0.1" height="15.0" fill="rgb(227,41,27)" rx="2" ry="2" />
<text text-anchor="" x="1053.25" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_backend_cache_empty (5 samples, 0.01%)</title><rect x="30.8" y="1557" width="0.2" height="15.0" fill="rgb(253,205,42)" rx="2" ry="2" />
<text text-anchor="" x="33.85" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (6 samples, 0.01%)</title><rect x="263.2" y="1477" width="0.2" height="15.0" fill="rgb(216,154,49)" rx="2" ry="2" />
<text text-anchor="" x="266.22" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (22 samples, 0.05%)</title><rect x="710.3" y="1493" width="0.6" height="15.0" fill="rgb(213,215,1)" rx="2" ry="2" />
<text text-anchor="" x="713.34" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (368 samples, 0.80%)</title><rect x="688.8" y="1477" width="9.4" height="15.0" fill="rgb(221,216,49)" rx="2" ry="2" />
<text text-anchor="" x="691.77" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (19 samples, 0.04%)</title><rect x="177.8" y="1301" width="0.5" height="15.0" fill="rgb(234,114,9)" rx="2" ry="2" />
<text text-anchor="" x="180.77" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (11 samples, 0.02%)</title><rect x="694.1" y="1253" width="0.3" height="15.0" fill="rgb(253,134,46)" rx="2" ry="2" />
<text text-anchor="" x="697.12" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="980.2" y="1413" width="0.2" height="15.0" fill="rgb(241,145,5)" rx="2" ry="2" />
<text text-anchor="" x="983.20" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (17 samples, 0.04%)</title><rect x="334.7" y="1461" width="0.5" height="15.0" fill="rgb(214,141,49)" rx="2" ry="2" />
<text text-anchor="" x="337.72" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (21 samples, 0.05%)</title><rect x="619.0" y="1493" width="0.5" height="15.0" fill="rgb(205,221,5)" rx="2" ry="2" />
<text text-anchor="" x="621.97" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_idle_core (4 samples, 0.01%)</title><rect x="695.2" y="1269" width="0.1" height="15.0" fill="rgb(218,143,17)" rx="2" ry="2" />
<text text-anchor="" x="698.20" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (11 samples, 0.02%)</title><rect x="475.9" y="1125" width="0.2" height="15.0" fill="rgb(209,108,40)" rx="2" ry="2" />
<text text-anchor="" x="478.86" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_entity (6 samples, 0.01%)</title><rect x="284.6" y="1285" width="0.2" height="15.0" fill="rgb(242,10,7)" rx="2" ry="2" />
<text text-anchor="" x="287.61" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_sse2_unaligned (72 samples, 0.16%)</title><rect x="828.0" y="1477" width="1.8" height="15.0" fill="rgb(205,75,12)" rx="2" ry="2" />
<text text-anchor="" x="830.98" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="399.2" y="1221" width="0.1" height="15.0" fill="rgb(250,61,9)" rx="2" ry="2" />
<text text-anchor="" x="402.25" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="133.6" y="1509" width="0.1" height="15.0" fill="rgb(221,110,18)" rx="2" ry="2" />
<text text-anchor="" x="136.63" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProcessBackendResponse (1,792 samples, 3.90%)</title><rect x="652.2" y="1525" width="46.1" height="15.0" fill="rgb(224,124,2)" rx="2" ry="2" />
<text text-anchor="" x="655.21" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Proc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (35 samples, 0.08%)</title><rect x="445.2" y="1397" width="0.9" height="15.0" fill="rgb(219,181,30)" rx="2" ry="2" />
<text text-anchor="" x="448.21" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (15 samples, 0.03%)</title><rect x="401.8" y="1221" width="0.4" height="15.0" fill="rgb(211,131,16)" rx="2" ry="2" />
<text text-anchor="" x="404.79" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProcessFrontendResponse (8,602 samples, 18.74%)</title><rect x="296.4" y="1541" width="221.1" height="15.0" fill="rgb(212,96,20)" rx="2" ry="2" />
<text text-anchor="" x="299.39" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ProcessFrontendResponse</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (5 samples, 0.01%)</title><rect x="348.3" y="1477" width="0.2" height="15.0" fill="rgb(220,92,13)" rx="2" ry="2" />
<text text-anchor="" x="351.34" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree at GLIBC_2.2.5 (4 samples, 0.01%)</title><rect x="432.5" y="1477" width="0.1" height="15.0" fill="rgb(232,74,52)" rx="2" ry="2" />
<text text-anchor="" x="435.51" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (26 samples, 0.06%)</title><rect x="424.1" y="1477" width="0.6" height="15.0" fill="rgb(242,74,25)" rx="2" ry="2" />
<text text-anchor="" x="427.05" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (4 samples, 0.01%)</title><rect x="1134.5" y="1605" width="0.1" height="15.0" fill="rgb(208,7,30)" rx="2" ry="2" />
<text text-anchor="" x="1137.47" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (25 samples, 0.05%)</title><rect x="854.4" y="1365" width="0.6" height="15.0" fill="rgb(244,214,41)" rx="2" ry="2" />
<text text-anchor="" x="857.38" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (29 samples, 0.06%)</title><rect x="505.7" y="1477" width="0.8" height="15.0" fill="rgb(248,120,3)" rx="2" ry="2" />
<text text-anchor="" x="508.73" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_list (7 samples, 0.02%)</title><rect x="812.1" y="1477" width="0.1" height="15.0" fill="rgb(242,118,25)" rx="2" ry="2" />
<text text-anchor="" x="815.07" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (5 samples, 0.01%)</title><rect x="726.9" y="1477" width="0.1" height="15.0" fill="rgb(251,36,28)" rx="2" ry="2" />
<text text-anchor="" x="729.87" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select at plt (16 samples, 0.03%)</title><rect x="1118.0" y="1477" width="0.5" height="15.0" fill="rgb(221,33,27)" rx="2" ry="2" />
<text text-anchor="" x="1121.04" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (462 samples, 1.01%)</title><rect x="119.8" y="1461" width="11.9" height="15.0" fill="rgb(233,18,19)" rx="2" ry="2" />
<text text-anchor="" x="122.80" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (60 samples, 0.13%)</title><rect x="332.1" y="1445" width="1.6" height="15.0" fill="rgb(241,29,41)" rx="2" ry="2" />
<text text-anchor="" x="335.12" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_or_rollback_query (12 samples, 0.03%)</title><rect x="91.8" y="1509" width="0.3" height="15.0" fill="rgb(251,220,22)" rx="2" ry="2" />
<text text-anchor="" x="94.80" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (12 samples, 0.03%)</title><rect x="751.2" y="1285" width="0.3" height="15.0" fill="rgb(221,108,49)" rx="2" ry="2" />
<text text-anchor="" x="754.19" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (4 samples, 0.01%)</title><rect x="69.3" y="1381" width="0.1" height="15.0" fill="rgb(228,115,10)" rx="2" ry="2" />
<text text-anchor="" x="72.26" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (5 samples, 0.01%)</title><rect x="558.8" y="1349" width="0.1" height="15.0" fill="rgb(253,111,40)" rx="2" ry="2" />
<text text-anchor="" x="561.76" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (25 samples, 0.05%)</title><rect x="551.4" y="1413" width="0.6" height="15.0" fill="rgb(245,86,51)" rx="2" ry="2" />
<text text-anchor="" x="554.36" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (6 samples, 0.01%)</title><rect x="402.2" y="1221" width="0.2" height="15.0" fill="rgb(226,208,31)" rx="2" ry="2" />
<text text-anchor="" x="405.20" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (6 samples, 0.01%)</title><rect x="425.2" y="1429" width="0.2" height="15.0" fill="rgb(232,97,16)" rx="2" ry="2" />
<text text-anchor="" x="428.21" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_find_next_bit (4 samples, 0.01%)</title><rect x="472.2" y="1125" width="0.1" height="15.0" fill="rgb(208,7,1)" rx="2" ry="2" />
<text text-anchor="" x="475.23" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (8 samples, 0.02%)</title><rect x="531.8" y="1461" width="0.3" height="15.0" fill="rgb(234,29,41)" rx="2" ry="2" />
<text text-anchor="" x="534.85" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (9 samples, 0.02%)</title><rect x="491.0" y="1397" width="0.2" height="15.0" fill="rgb(226,218,48)" rx="2" ry="2" />
<text text-anchor="" x="493.97" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_dest_set (175 samples, 0.38%)</title><rect x="376.1" y="1509" width="4.5" height="15.0" fill="rgb(207,204,33)" rx="2" ry="2" />
<text text-anchor="" x="379.06" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (8 samples, 0.02%)</title><rect x="326.6" y="1237" width="0.2" height="15.0" fill="rgb(225,225,41)" rx="2" ry="2" />
<text text-anchor="" x="329.57" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enter_lazy_tlb (9 samples, 0.02%)</title><rect x="694.5" y="1285" width="0.2" height="15.0" fill="rgb(242,83,29)" rx="2" ry="2" />
<text text-anchor="" x="697.50" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stop_request (6 samples, 0.01%)</title><rect x="613.8" y="1541" width="0.1" height="15.0" fill="rgb(254,55,8)" rx="2" ry="2" />
<text text-anchor="" x="616.78" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (4 samples, 0.01%)</title><rect x="331.1" y="1365" width="0.1" height="15.0" fill="rgb(233,107,30)" rx="2" ry="2" />
<text text-anchor="" x="334.09" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (347 samples, 0.76%)</title><rect x="773.7" y="1109" width="8.9" height="15.0" fill="rgb(228,177,49)" rx="2" ry="2" />
<text text-anchor="" x="776.66" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (18 samples, 0.04%)</title><rect x="58.2" y="1493" width="0.4" height="15.0" fill="rgb(231,39,39)" rx="2" ry="2" />
<text text-anchor="" x="61.18" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>parser_init (15 samples, 0.03%)</title><rect x="712.4" y="1493" width="0.4" height="15.0" fill="rgb(239,154,51)" rx="2" ry="2" />
<text text-anchor="" x="715.45" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1317" width="1.4" height="15.0" fill="rgb(252,31,1)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (13 samples, 0.03%)</title><rect x="265.6" y="1477" width="0.3" height="15.0" fill="rgb(247,111,30)" rx="2" ry="2" />
<text text-anchor="" x="268.59" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (6 samples, 0.01%)</title><rect x="527.8" y="1493" width="0.2" height="15.0" fill="rgb(229,189,43)" rx="2" ry="2" />
<text text-anchor="" x="530.81" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (286 samples, 0.62%)</title><rect x="1043.6" y="1445" width="7.4" height="15.0" fill="rgb(249,154,38)" rx="2" ry="2" />
<text text-anchor="" x="1046.64" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (24 samples, 0.05%)</title><rect x="851.8" y="1365" width="0.6" height="15.0" fill="rgb(222,219,41)" rx="2" ry="2" />
<text text-anchor="" x="854.78" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (6 samples, 0.01%)</title><rect x="312.9" y="1429" width="0.2" height="15.0" fill="rgb(239,114,5)" rx="2" ry="2" />
<text text-anchor="" x="315.94" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl at plt (8 samples, 0.02%)</title><rect x="711.0" y="1493" width="0.2" height="15.0" fill="rgb(241,85,39)" rx="2" ry="2" />
<text text-anchor="" x="713.96" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location at plt (11 samples, 0.02%)</title><rect x="265.3" y="1477" width="0.3" height="15.0" fill="rgb(222,190,7)" rx="2" ry="2" />
<text text-anchor="" x="268.31" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_to_regclass (5 samples, 0.01%)</title><rect x="855.2" y="1397" width="0.1" height="15.0" fill="rgb(236,140,2)" rx="2" ry="2" />
<text text-anchor="" x="858.18" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (8 samples, 0.02%)</title><rect x="756.8" y="1205" width="0.2" height="15.0" fill="rgb(231,48,16)" rx="2" ry="2" />
<text text-anchor="" x="759.79" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (12 samples, 0.03%)</title><rect x="191.9" y="1493" width="0.3" height="15.0" fill="rgb(219,117,10)" rx="2" ry="2" />
<text text-anchor="" x="194.86" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (452 samples, 0.98%)</title><rect x="393.8" y="1461" width="11.6" height="15.0" fill="rgb(205,122,6)" rx="2" ry="2" />
<text text-anchor="" x="396.77" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stack_object (11 samples, 0.02%)</title><rect x="531.6" y="1445" width="0.2" height="15.0" fill="rgb(211,129,4)" rx="2" ry="2" />
<text text-anchor="" x="534.57" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (22 samples, 0.05%)</title><rect x="1105.3" y="1397" width="0.5" height="15.0" fill="rgb(212,144,3)" rx="2" ry="2" />
<text text-anchor="" x="1108.27" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (23 samples, 0.05%)</title><rect x="87.7" y="1349" width="0.6" height="15.0" fill="rgb(223,176,18)" rx="2" ry="2" />
<text text-anchor="" x="90.72" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_call_function_single_interrupt (5 samples, 0.01%)</title><rect x="283.9" y="1269" width="0.2" height="15.0" fill="rgb(251,76,18)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (10 samples, 0.02%)</title><rect x="124.7" y="1301" width="0.3" height="15.0" fill="rgb(254,74,1)" rx="2" ry="2" />
<text text-anchor="" x="127.71" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (37 samples, 0.08%)</title><rect x="130.7" y="1413" width="1.0" height="15.0" fill="rgb(228,112,40)" rx="2" ry="2" />
<text text-anchor="" x="133.73" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_major_version (9 samples, 0.02%)</title><rect x="158.4" y="1525" width="0.2" height="15.0" fill="rgb(220,142,7)" rx="2" ry="2" />
<text text-anchor="" x="161.41" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (10 samples, 0.02%)</title><rect x="1115.1" y="1477" width="0.2" height="15.0" fill="rgb(205,121,25)" rx="2" ry="2" />
<text text-anchor="" x="1118.09" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_or_rollback_query (10 samples, 0.02%)</title><rect x="352.6" y="1493" width="0.2" height="15.0" fill="rgb(211,15,26)" rx="2" ry="2" />
<text text-anchor="" x="355.59" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.01%)</title><rect x="402.4" y="1253" width="0.1" height="15.0" fill="rgb(211,181,21)" rx="2" ry="2" />
<text text-anchor="" x="405.36" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (289 samples, 0.63%)</title><rect x="561.6" y="1333" width="7.4" height="15.0" fill="rgb(248,68,12)" rx="2" ry="2" />
<text text-anchor="" x="564.59" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (5 samples, 0.01%)</title><rect x="1055.3" y="1509" width="0.2" height="15.0" fill="rgb(207,108,28)" rx="2" ry="2" />
<text text-anchor="" x="1058.34" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter (22 samples, 0.05%)</title><rect x="754.1" y="1269" width="0.6" height="15.0" fill="rgb(228,161,6)" rx="2" ry="2" />
<text text-anchor="" x="757.15" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (56 samples, 0.12%)</title><rect x="626.6" y="1525" width="1.4" height="15.0" fill="rgb(205,115,5)" rx="2" ry="2" />
<text text-anchor="" x="629.61" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (493 samples, 1.07%)</title><rect x="406.5" y="1461" width="12.7" height="15.0" fill="rgb(214,75,46)" rx="2" ry="2" />
<text text-anchor="" x="409.52" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (4 samples, 0.01%)</title><rect x="312.8" y="1429" width="0.1" height="15.0" fill="rgb(237,19,17)" rx="2" ry="2" />
<text text-anchor="" x="315.84" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (36 samples, 0.08%)</title><rect x="1048.6" y="1381" width="0.9" height="15.0" fill="rgb(241,225,20)" rx="2" ry="2" />
<text text-anchor="" x="1051.55" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (28 samples, 0.06%)</title><rect x="876.9" y="1365" width="0.7" height="15.0" fill="rgb(241,86,46)" rx="2" ry="2" />
<text text-anchor="" x="879.88" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.01%)</title><rect x="741.0" y="1237" width="0.1" height="15.0" fill="rgb(212,108,45)" rx="2" ry="2" />
<text text-anchor="" x="743.98" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (11 samples, 0.02%)</title><rect x="696.2" y="1349" width="0.3" height="15.0" fill="rgb(254,191,32)" rx="2" ry="2" />
<text text-anchor="" x="699.17" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="901" width="1.3" height="15.0" fill="rgb(241,88,32)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="911.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (168 samples, 0.37%)</title><rect x="217.0" y="1477" width="4.3" height="15.0" fill="rgb(219,123,11)" rx="2" ry="2" />
<text text-anchor="" x="220.03" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (10 samples, 0.02%)</title><rect x="714.6" y="1461" width="0.2" height="15.0" fill="rgb(235,45,49)" rx="2" ry="2" />
<text text-anchor="" x="717.56" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (211 samples, 0.46%)</title><rect x="1143.4" y="1541" width="5.4" height="15.0" fill="rgb(249,229,35)" rx="2" ry="2" />
<text text-anchor="" x="1146.37" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.01%)</title><rect x="12.9" y="1445" width="0.1" height="15.0" fill="rgb(240,28,14)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (56 samples, 0.12%)</title><rect x="1029.0" y="1381" width="1.5" height="15.0" fill="rgb(205,171,4)" rx="2" ry="2" />
<text text-anchor="" x="1032.04" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (120 samples, 0.26%)</title><rect x="324.6" y="1285" width="3.0" height="15.0" fill="rgb(216,23,5)" rx="2" ry="2" />
<text text-anchor="" x="327.56" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.01%)</title><rect x="13.6" y="1605" width="0.2" height="15.0" fill="rgb(248,150,37)" rx="2" ry="2" />
<text text-anchor="" x="16.60" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (5 samples, 0.01%)</title><rect x="455.8" y="1301" width="0.1" height="15.0" fill="rgb(216,79,8)" rx="2" ry="2" />
<text text-anchor="" x="458.80" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (9 samples, 0.02%)</title><rect x="416.5" y="1333" width="0.3" height="15.0" fill="rgb(208,103,24)" rx="2" ry="2" />
<text text-anchor="" x="419.52" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmpxchg_double_slab.isra.61 (8 samples, 0.02%)</title><rect x="247.9" y="1253" width="0.2" height="15.0" fill="rgb(246,195,37)" rx="2" ry="2" />
<text text-anchor="" x="250.88" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl (14 samples, 0.03%)</title><rect x="659.7" y="1493" width="0.4" height="15.0" fill="rgb(206,203,1)" rx="2" ry="2" />
<text text-anchor="" x="662.72" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (8 samples, 0.02%)</title><rect x="687.6" y="1349" width="0.2" height="15.0" fill="rgb(250,159,45)" rx="2" ry="2" />
<text text-anchor="" x="690.56" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__indirect_thunk_start (4 samples, 0.01%)</title><rect x="395.6" y="1317" width="0.1" height="15.0" fill="rgb(243,55,47)" rx="2" ry="2" />
<text text-anchor="" x="398.57" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_to_where (395 samples, 0.86%)</title><rect x="884.8" y="1477" width="10.2" height="15.0" fill="rgb(219,37,44)" rx="2" ry="2" />
<text text-anchor="" x="887.82" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (19 samples, 0.04%)</title><rect x="696.9" y="1445" width="0.5" height="15.0" fill="rgb(246,100,13)" rx="2" ry="2" />
<text text-anchor="" x="699.95" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (98 samples, 0.21%)</title><rect x="125.6" y="1317" width="2.6" height="15.0" fill="rgb(231,63,12)" rx="2" ry="2" />
<text text-anchor="" x="128.63" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iter (42 samples, 0.09%)</title><rect x="410.0" y="1301" width="1.1" height="15.0" fill="rgb(242,147,39)" rx="2" ry="2" />
<text text-anchor="" x="413.02" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read2 (25 samples, 0.05%)</title><rect x="59.3" y="1493" width="0.7" height="15.0" fill="rgb(234,79,23)" rx="2" ry="2" />
<text text-anchor="" x="62.31" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (7 samples, 0.02%)</title><rect x="412.7" y="1221" width="0.2" height="15.0" fill="rgb(224,198,3)" rx="2" ry="2" />
<text text-anchor="" x="415.69" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (1,289 samples, 2.81%)</title><rect x="1062.5" y="1493" width="33.2" height="15.0" fill="rgb(218,116,10)" rx="2" ry="2" />
<text text-anchor="" x="1065.51" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_freewait (33 samples, 0.07%)</title><rect x="275.7" y="1381" width="0.9" height="15.0" fill="rgb(210,29,25)" rx="2" ry="2" />
<text text-anchor="" x="278.74" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (85 samples, 0.19%)</title><rect x="363.5" y="1285" width="2.2" height="15.0" fill="rgb(250,183,9)" rx="2" ry="2" />
<text text-anchor="" x="366.54" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl (4 samples, 0.01%)</title><rect x="100.9" y="1509" width="0.1" height="15.0" fill="rgb(211,5,35)" rx="2" ry="2" />
<text text-anchor="" x="103.93" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (5 samples, 0.01%)</title><rect x="112.3" y="1493" width="0.2" height="15.0" fill="rgb(214,188,29)" rx="2" ry="2" />
<text text-anchor="" x="115.34" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (16 samples, 0.03%)</title><rect x="414.3" y="1285" width="0.4" height="15.0" fill="rgb(231,125,15)" rx="2" ry="2" />
<text text-anchor="" x="417.28" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (505 samples, 1.10%)</title><rect x="319.1" y="1445" width="13.0" height="15.0" fill="rgb(226,100,10)" rx="2" ry="2" />
<text text-anchor="" x="322.14" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_and_flush (14 samples, 0.03%)</title><rect x="91.3" y="1493" width="0.3" height="15.0" fill="rgb(213,143,18)" rx="2" ry="2" />
<text text-anchor="" x="94.29" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="933" width="1.3" height="15.0" fill="rgb(223,204,41)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="943.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (14 samples, 0.03%)</title><rect x="822.6" y="1493" width="0.3" height="15.0" fill="rgb(242,187,0)" rx="2" ry="2" />
<text text-anchor="" x="825.55" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (550 samples, 1.20%)</title><rect x="243.9" y="1397" width="14.1" height="15.0" fill="rgb(207,22,32)" rx="2" ry="2" />
<text text-anchor="" x="246.89" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (89 samples, 0.19%)</title><rect x="151.5" y="1493" width="2.3" height="15.0" fill="rgb(238,192,43)" rx="2" ry="2" />
<text text-anchor="" x="154.52" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (282 samples, 0.61%)</title><rect x="191.3" y="1509" width="7.2" height="15.0" fill="rgb(207,90,10)" rx="2" ry="2" />
<text text-anchor="" x="194.29" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (9 samples, 0.02%)</title><rect x="13.4" y="1461" width="0.2" height="15.0" fill="rgb(247,111,49)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__indirect_thunk_start (5 samples, 0.01%)</title><rect x="321.2" y="1317" width="0.2" height="15.0" fill="rgb(233,188,41)" rx="2" ry="2" />
<text text-anchor="" x="324.22" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (76 samples, 0.17%)</title><rect x="728.9" y="1461" width="2.0" height="15.0" fill="rgb(236,177,21)" rx="2" ry="2" />
<text text-anchor="" x="731.93" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__indirect_thunk_start (4 samples, 0.01%)</title><rect x="321.0" y="1333" width="0.1" height="15.0" fill="rgb(249,23,32)" rx="2" ry="2" />
<text text-anchor="" x="324.02" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (106 samples, 0.23%)</title><rect x="1073.0" y="1285" width="2.8" height="15.0" fill="rgb(244,169,54)" rx="2" ry="2" />
<text text-anchor="" x="1076.03" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent (12 samples, 0.03%)</title><rect x="317.8" y="1477" width="0.3" height="15.0" fill="rgb(215,218,3)" rx="2" ry="2" />
<text text-anchor="" x="320.80" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (4 samples, 0.01%)</title><rect x="895.9" y="1477" width="0.1" height="15.0" fill="rgb(231,208,50)" rx="2" ry="2" />
<text text-anchor="" x="898.93" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="1129.2" y="1621" width="0.1" height="15.0" fill="rgb(226,77,48)" rx="2" ry="2" />
<text text-anchor="" x="1132.17" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (8 samples, 0.02%)</title><rect x="416.3" y="1301" width="0.2" height="15.0" fill="rgb(217,128,52)" rx="2" ry="2" />
<text text-anchor="" x="419.32" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlcpy (8 samples, 0.02%)</title><rect x="517.3" y="1525" width="0.2" height="15.0" fill="rgb(214,38,9)" rx="2" ry="2" />
<text text-anchor="" x="520.27" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_select_query (19 samples, 0.04%)</title><rect x="819.0" y="1477" width="0.5" height="15.0" fill="rgb(247,155,25)" rx="2" ry="2" />
<text text-anchor="" x="822.03" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>base_yylex (1,673 samples, 3.64%)</title><rect x="943.7" y="1461" width="43.1" height="15.0" fill="rgb(221,89,44)" rx="2" ry="2" />
<text text-anchor="" x="946.74" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >base..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (14 samples, 0.03%)</title><rect x="331.6" y="1349" width="0.3" height="15.0" fill="rgb(245,203,9)" rx="2" ry="2" />
<text text-anchor="" x="334.58" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (12 samples, 0.03%)</title><rect x="127.7" y="1269" width="0.3" height="15.0" fill="rgb(225,0,44)" rx="2" ry="2" />
<text text-anchor="" x="130.67" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (7 samples, 0.02%)</title><rect x="660.8" y="1509" width="0.2" height="15.0" fill="rgb(231,129,15)" rx="2" ry="2" />
<text text-anchor="" x="663.77" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (8 samples, 0.02%)</title><rect x="633.0" y="1541" width="0.2" height="15.0" fill="rgb(236,174,27)" rx="2" ry="2" />
<text text-anchor="" x="635.98" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (8 samples, 0.02%)</title><rect x="57.9" y="1493" width="0.2" height="15.0" fill="rgb(224,84,28)" rx="2" ry="2" />
<text text-anchor="" x="60.92" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (206 samples, 0.45%)</title><rect x="755.5" y="1269" width="5.3" height="15.0" fill="rgb(251,147,47)" rx="2" ry="2" />
<text text-anchor="" x="758.48" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (4 samples, 0.01%)</title><rect x="660.3" y="1493" width="0.1" height="15.0" fill="rgb(216,79,28)" rx="2" ry="2" />
<text text-anchor="" x="663.31" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (37 samples, 0.08%)</title><rect x="227.7" y="1461" width="0.9" height="15.0" fill="rgb(210,158,54)" rx="2" ry="2" />
<text text-anchor="" x="230.67" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1381" width="1.4" height="15.0" fill="rgb(209,13,32)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (671 samples, 1.46%)</title><rect x="70.1" y="1365" width="17.3" height="15.0" fill="rgb(205,69,41)" rx="2" ry="2" />
<text text-anchor="" x="73.13" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (116 samples, 0.25%)</title><rect x="359.7" y="1269" width="3.0" height="15.0" fill="rgb(245,49,50)" rx="2" ry="2" />
<text text-anchor="" x="362.71" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (5 samples, 0.01%)</title><rect x="1137.6" y="1653" width="0.2" height="15.0" fill="rgb(253,217,5)" rx="2" ry="2" />
<text text-anchor="" x="1140.63" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree at GLIBC_2.2.5 (13 samples, 0.03%)</title><rect x="830.2" y="1477" width="0.3" height="15.0" fill="rgb(249,59,23)" rx="2" ry="2" />
<text text-anchor="" x="833.19" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (6 samples, 0.01%)</title><rect x="370.8" y="1509" width="0.2" height="15.0" fill="rgb(215,33,32)" rx="2" ry="2" />
<text text-anchor="" x="373.84" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (5 samples, 0.01%)</title><rect x="232.2" y="1381" width="0.1" height="15.0" fill="rgb(223,29,36)" rx="2" ry="2" />
<text text-anchor="" x="235.22" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (18 samples, 0.04%)</title><rect x="752.6" y="1285" width="0.4" height="15.0" fill="rgb(212,140,3)" rx="2" ry="2" />
<text text-anchor="" x="755.55" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bsearch (14 samples, 0.03%)</title><rect x="829.8" y="1477" width="0.4" height="15.0" fill="rgb(209,187,38)" rx="2" ry="2" />
<text text-anchor="" x="832.83" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (23 samples, 0.05%)</title><rect x="1093.2" y="1461" width="0.6" height="15.0" fill="rgb(214,196,27)" rx="2" ry="2" />
<text text-anchor="" x="1096.18" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (40 samples, 0.09%)</title><rect x="1091.4" y="1365" width="1.0" height="15.0" fill="rgb(219,157,29)" rx="2" ry="2" />
<text text-anchor="" x="1094.38" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (5 samples, 0.01%)</title><rect x="444.3" y="1349" width="0.1" height="15.0" fill="rgb(221,40,29)" rx="2" ry="2" />
<text text-anchor="" x="447.26" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (23 samples, 0.05%)</title><rect x="508.5" y="1525" width="0.5" height="15.0" fill="rgb(236,44,40)" rx="2" ry="2" />
<text text-anchor="" x="511.45" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (111 samples, 0.24%)</title><rect x="1130.0" y="1621" width="2.9" height="15.0" fill="rgb(226,96,18)" rx="2" ry="2" />
<text text-anchor="" x="1133.02" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (9 samples, 0.02%)</title><rect x="356.2" y="1317" width="0.2" height="15.0" fill="rgb(216,188,43)" rx="2" ry="2" />
<text text-anchor="" x="359.18" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (24 samples, 0.05%)</title><rect x="314.1" y="1493" width="0.6" height="15.0" fill="rgb(217,162,23)" rx="2" ry="2" />
<text text-anchor="" x="317.10" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (10 samples, 0.02%)</title><rect x="177.5" y="1285" width="0.3" height="15.0" fill="rgb(226,42,12)" rx="2" ry="2" />
<text text-anchor="" x="180.51" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (45,900 samples, 100%)</title><rect x="10.0" y="1685" width="1180.0" height="15.0" fill="rgb(214,183,44)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1695.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (126 samples, 0.27%)</title><rect x="692.5" y="1333" width="3.2" height="15.0" fill="rgb(226,174,34)" rx="2" ry="2" />
<text text-anchor="" x="695.50" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (5 samples, 0.01%)</title><rect x="88.2" y="1301" width="0.1" height="15.0" fill="rgb(232,170,10)" rx="2" ry="2" />
<text text-anchor="" x="91.15" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy at plt (9 samples, 0.02%)</title><rect x="1119.9" y="1525" width="0.3" height="15.0" fill="rgb(214,91,10)" rx="2" ry="2" />
<text text-anchor="" x="1122.92" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_query (6 samples, 0.01%)</title><rect x="352.7" y="1477" width="0.1" height="15.0" fill="rgb(233,149,46)" rx="2" ry="2" />
<text text-anchor="" x="355.66" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (19 samples, 0.04%)</title><rect x="686.3" y="1269" width="0.5" height="15.0" fill="rgb(227,183,19)" rx="2" ry="2" />
<text text-anchor="" x="689.33" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (299 samples, 0.65%)</title><rect x="887.0" y="1445" width="7.7" height="15.0" fill="rgb(222,17,53)" rx="2" ry="2" />
<text text-anchor="" x="890.00" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (171 samples, 0.37%)</title><rect x="1106.4" y="1397" width="4.4" height="15.0" fill="rgb(206,123,25)" rx="2" ry="2" />
<text text-anchor="" x="1109.45" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (18 samples, 0.04%)</title><rect x="232.6" y="1381" width="0.4" height="15.0" fill="rgb(225,129,6)" rx="2" ry="2" />
<text text-anchor="" x="235.55" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_remove_sent_message (6 samples, 0.01%)</title><rect x="820.4" y="1493" width="0.2" height="15.0" fill="rgb(234,55,53)" rx="2" ry="2" />
<text text-anchor="" x="823.42" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (29 samples, 0.06%)</title><rect x="811.3" y="1429" width="0.8" height="15.0" fill="rgb(223,94,14)" rx="2" ry="2" />
<text text-anchor="" x="814.32" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (7 samples, 0.02%)</title><rect x="129.6" y="1205" width="0.2" height="15.0" fill="rgb(222,110,4)" rx="2" ry="2" />
<text text-anchor="" x="132.65" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (42 samples, 0.09%)</title><rect x="128.8" y="1285" width="1.1" height="15.0" fill="rgb(229,7,52)" rx="2" ry="2" />
<text text-anchor="" x="131.77" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (20 samples, 0.04%)</title><rect x="120.2" y="1429" width="0.6" height="15.0" fill="rgb(251,65,22)" rx="2" ry="2" />
<text text-anchor="" x="123.24" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAlloc (7 samples, 0.02%)</title><rect x="822.2" y="1445" width="0.1" height="15.0" fill="rgb(212,32,3)" rx="2" ry="2" />
<text text-anchor="" x="825.17" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (10 samples, 0.02%)</title><rect x="691.6" y="1349" width="0.3" height="15.0" fill="rgb(239,25,37)" rx="2" ry="2" />
<text text-anchor="" x="694.62" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (11 samples, 0.02%)</title><rect x="453.4" y="1285" width="0.3" height="15.0" fill="rgb(247,172,27)" rx="2" ry="2" />
<text text-anchor="" x="456.41" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_local_session_id (4 samples, 0.01%)</title><rect x="879.3" y="1365" width="0.1" height="15.0" fill="rgb(225,189,25)" rx="2" ry="2" />
<text text-anchor="" x="882.27" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (8 samples, 0.02%)</title><rect x="396.6" y="1301" width="0.2" height="15.0" fill="rgb(237,227,15)" rx="2" ry="2" />
<text text-anchor="" x="399.57" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ntohl at plt (7 samples, 0.02%)</title><rect x="623.2" y="1541" width="0.1" height="15.0" fill="rgb(235,9,29)" rx="2" ry="2" />
<text text-anchor="" x="626.16" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (11 samples, 0.02%)</title><rect x="734.4" y="1285" width="0.3" height="15.0" fill="rgb(244,22,15)" rx="2" ry="2" />
<text text-anchor="" x="737.38" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (62 samples, 0.14%)</title><rect x="77.4" y="1221" width="1.6" height="15.0" fill="rgb(234,121,48)" rx="2" ry="2" />
<text text-anchor="" x="80.38" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (11 samples, 0.02%)</title><rect x="139.3" y="1493" width="0.2" height="15.0" fill="rgb(231,218,24)" rx="2" ry="2" />
<text text-anchor="" x="142.26" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="59.7" y="1477" width="0.1" height="15.0" fill="rgb(222,54,38)" rx="2" ry="2" />
<text text-anchor="" x="62.67" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (72 samples, 0.16%)</title><rect x="176.9" y="1413" width="1.8" height="15.0" fill="rgb(218,217,33)" rx="2" ry="2" />
<text text-anchor="" x="179.87" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__set_task_blocked (34 samples, 0.07%)</title><rect x="110.2" y="1413" width="0.9" height="15.0" fill="rgb(244,83,18)" rx="2" ry="2" />
<text text-anchor="" x="113.24" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_in_progress (4 samples, 0.01%)</title><rect x="347.4" y="1509" width="0.1" height="15.0" fill="rgb(231,100,51)" rx="2" ry="2" />
<text text-anchor="" x="350.37" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (17 samples, 0.04%)</title><rect x="424.9" y="1461" width="0.5" height="15.0" fill="rgb(226,125,30)" rx="2" ry="2" />
<text text-anchor="" x="427.93" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapgs_restore_regs_and_return_to_usermode (6 samples, 0.01%)</title><rect x="1000.6" y="1461" width="0.2" height="15.0" fill="rgb(248,118,13)" rx="2" ry="2" />
<text text-anchor="" x="1003.61" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_major_version (19 samples, 0.04%)</title><rect x="623.5" y="1541" width="0.5" height="15.0" fill="rgb(232,207,32)" rx="2" ry="2" />
<text text-anchor="" x="626.55" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (6 samples, 0.01%)</title><rect x="553.9" y="1397" width="0.2" height="15.0" fill="rgb(238,132,53)" rx="2" ry="2" />
<text text-anchor="" x="556.91" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (114 samples, 0.25%)</title><rect x="279.8" y="1269" width="2.9" height="15.0" fill="rgb(216,156,14)" rx="2" ry="2" />
<text text-anchor="" x="282.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (17 samples, 0.04%)</title><rect x="72.1" y="1285" width="0.5" height="15.0" fill="rgb(208,61,19)" rx="2" ry="2" />
<text text-anchor="" x="75.14" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (54 samples, 0.12%)</title><rect x="128.8" y="1317" width="1.4" height="15.0" fill="rgb(212,186,20)" rx="2" ry="2" />
<text text-anchor="" x="131.77" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (89 samples, 0.19%)</title><rect x="987.9" y="1429" width="2.3" height="15.0" fill="rgb(239,211,32)" rx="2" ry="2" />
<text text-anchor="" x="990.93" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pstrdup (33 samples, 0.07%)</title><rect x="895.2" y="1493" width="0.9" height="15.0" fill="rgb(240,123,29)" rx="2" ry="2" />
<text text-anchor="" x="898.23" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (9 samples, 0.02%)</title><rect x="854.8" y="1349" width="0.2" height="15.0" fill="rgb(232,65,45)" rx="2" ry="2" />
<text text-anchor="" x="857.79" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (29 samples, 0.06%)</title><rect x="68.4" y="1365" width="0.8" height="15.0" fill="rgb(247,57,29)" rx="2" ry="2" />
<text text-anchor="" x="71.43" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (21 samples, 0.05%)</title><rect x="1072.2" y="1269" width="0.6" height="15.0" fill="rgb(254,31,51)" rx="2" ry="2" />
<text text-anchor="" x="1075.23" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="391.4" y="1461" width="0.1" height="15.0" fill="rgb(228,35,25)" rx="2" ry="2" />
<text text-anchor="" x="394.35" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (22 samples, 0.05%)</title><rect x="302.4" y="1509" width="0.5" height="15.0" fill="rgb(215,139,8)" rx="2" ry="2" />
<text text-anchor="" x="305.35" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>function_call_walker (38 samples, 0.08%)</title><rect x="836.6" y="1461" width="1.0" height="15.0" fill="rgb(218,12,15)" rx="2" ry="2" />
<text text-anchor="" x="839.62" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (52 samples, 0.11%)</title><rect x="1034.9" y="1509" width="1.3" height="15.0" fill="rgb(230,76,35)" rx="2" ry="2" />
<text text-anchor="" x="1037.90" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_smp_call_function_single_interrupt (5 samples, 0.01%)</title><rect x="283.9" y="1253" width="0.2" height="15.0" fill="rgb(228,109,42)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (6 samples, 0.01%)</title><rect x="1073.4" y="1253" width="0.1" height="15.0" fill="rgb(238,6,12)" rx="2" ry="2" />
<text text-anchor="" x="1076.39" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (11 samples, 0.02%)</title><rect x="742.3" y="1317" width="0.3" height="15.0" fill="rgb(223,176,31)" rx="2" ry="2" />
<text text-anchor="" x="745.32" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (8 samples, 0.02%)</title><rect x="782.8" y="1125" width="0.2" height="15.0" fill="rgb(248,135,44)" rx="2" ry="2" />
<text text-anchor="" x="785.76" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_start_query (54 samples, 0.12%)</title><rect x="821.2" y="1493" width="1.4" height="15.0" fill="rgb(205,155,44)" rx="2" ry="2" />
<text text-anchor="" x="824.17" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (13 samples, 0.03%)</title><rect x="97.6" y="1509" width="0.3" height="15.0" fill="rgb(238,25,44)" rx="2" ry="2" />
<text text-anchor="" x="100.61" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yyensure_buffer_stack (35 samples, 0.08%)</title><rect x="1004.1" y="1429" width="0.9" height="15.0" fill="rgb(254,59,10)" rx="2" ry="2" />
<text text-anchor="" x="1007.13" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (12 samples, 0.03%)</title><rect x="118.7" y="1509" width="0.3" height="15.0" fill="rgb(223,76,8)" rx="2" ry="2" />
<text text-anchor="" x="121.72" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (844 samples, 1.84%)</title><rect x="269.6" y="1461" width="21.7" height="15.0" fill="rgb(252,192,16)" rx="2" ry="2" />
<text text-anchor="" x="272.60" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_process_query (42,543 samples, 92.69%)</title><rect x="31.5" y="1557" width="1093.7" height="15.0" fill="rgb(233,89,18)" rx="2" ry="2" />
<text text-anchor="" x="34.52" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >pool_process_query</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="715.6" y="1477" width="0.1" height="15.0" fill="rgb(246,143,3)" rx="2" ry="2" />
<text text-anchor="" x="718.61" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAllocZeroAligned (28 samples, 0.06%)</title><rect x="994.5" y="1429" width="0.7" height="15.0" fill="rgb(245,201,29)" rx="2" ry="2" />
<text text-anchor="" x="997.52" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>function_call_walker (8 samples, 0.02%)</title><rect x="841.6" y="1381" width="0.2" height="15.0" fill="rgb(231,48,13)" rx="2" ry="2" />
<text text-anchor="" x="844.60" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.01%)</title><rect x="416.0" y="1253" width="0.1" height="15.0" fill="rgb(234,156,33)" rx="2" ry="2" />
<text text-anchor="" x="418.96" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (4 samples, 0.01%)</title><rect x="584.3" y="1381" width="0.1" height="15.0" fill="rgb(238,4,1)" rx="2" ry="2" />
<text text-anchor="" x="587.27" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (5 samples, 0.01%)</title><rect x="742.0" y="1349" width="0.1" height="15.0" fill="rgb(246,84,4)" rx="2" ry="2" />
<text text-anchor="" x="744.96" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (15 samples, 0.03%)</title><rect x="160.3" y="1525" width="0.3" height="15.0" fill="rgb(211,111,15)" rx="2" ry="2" />
<text text-anchor="" x="163.26" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (16 samples, 0.03%)</title><rect x="558.5" y="1365" width="0.4" height="15.0" fill="rgb(230,26,30)" rx="2" ry="2" />
<text text-anchor="" x="561.48" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (7 samples, 0.02%)</title><rect x="943.5" y="1429" width="0.2" height="15.0" fill="rgb(221,71,21)" rx="2" ry="2" />
<text text-anchor="" x="946.49" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="714.8" y="1477" width="0.2" height="15.0" fill="rgb(208,12,24)" rx="2" ry="2" />
<text text-anchor="" x="717.81" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (88 samples, 0.19%)</title><rect x="231.7" y="1461" width="2.2" height="15.0" fill="rgb(208,215,17)" rx="2" ry="2" />
<text text-anchor="" x="234.65" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (5 samples, 0.01%)</title><rect x="124.2" y="1301" width="0.1" height="15.0" fill="rgb(243,133,50)" rx="2" ry="2" />
<text text-anchor="" x="127.22" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (462 samples, 1.01%)</title><rect x="320.1" y="1397" width="11.9" height="15.0" fill="rgb(249,142,38)" rx="2" ry="2" />
<text text-anchor="" x="323.12" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter (51 samples, 0.11%)</title><rect x="74.8" y="1269" width="1.3" height="15.0" fill="rgb(251,46,19)" rx="2" ry="2" />
<text text-anchor="" x="77.81" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_smp_call_function_single_interrupt (4 samples, 0.01%)</title><rect x="789.0" y="1269" width="0.1" height="15.0" fill="rgb(234,217,8)" rx="2" ry="2" />
<text text-anchor="" x="792.03" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (8 samples, 0.02%)</title><rect x="1019.0" y="1285" width="0.2" height="15.0" fill="rgb(235,153,43)" rx="2" ry="2" />
<text text-anchor="" x="1021.99" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (8 samples, 0.02%)</title><rect x="783.9" y="1109" width="0.2" height="15.0" fill="rgb(214,48,46)" rx="2" ry="2" />
<text text-anchor="" x="786.94" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (9 samples, 0.02%)</title><rect x="13.4" y="1589" width="0.2" height="15.0" fill="rgb(246,208,49)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (10 samples, 0.02%)</title><rect x="177.5" y="1301" width="0.3" height="15.0" fill="rgb(237,76,1)" rx="2" ry="2" />
<text text-anchor="" x="180.51" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (15 samples, 0.03%)</title><rect x="165.0" y="1525" width="0.4" height="15.0" fill="rgb(227,131,30)" rx="2" ry="2" />
<text text-anchor="" x="168.05" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unread (7 samples, 0.02%)</title><rect x="1057.7" y="1493" width="0.2" height="15.0" fill="rgb(238,22,44)" rx="2" ry="2" />
<text text-anchor="" x="1060.73" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (886 samples, 1.93%)</title><rect x="465.0" y="1237" width="22.8" height="15.0" fill="rgb(223,73,23)" rx="2" ry="2" />
<text text-anchor="" x="468.01" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (6 samples, 0.01%)</title><rect x="148.6" y="1493" width="0.2" height="15.0" fill="rgb(212,164,28)" rx="2" ry="2" />
<text text-anchor="" x="151.64" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (66 samples, 0.14%)</title><rect x="177.0" y="1381" width="1.7" height="15.0" fill="rgb(226,187,48)" rx="2" ry="2" />
<text text-anchor="" x="180.03" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase_cached (17 samples, 0.04%)</title><rect x="577.5" y="1333" width="0.4" height="15.0" fill="rgb(248,77,6)" rx="2" ry="2" />
<text text-anchor="" x="580.45" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (18 samples, 0.04%)</title><rect x="264.8" y="1477" width="0.5" height="15.0" fill="rgb(249,5,47)" rx="2" ry="2" />
<text text-anchor="" x="267.84" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (14 samples, 0.03%)</title><rect x="403.3" y="1381" width="0.3" height="15.0" fill="rgb(237,102,51)" rx="2" ry="2" />
<text text-anchor="" x="406.28" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (469 samples, 1.02%)</title><rect x="355.1" y="1397" width="12.0" height="15.0" fill="rgb(228,44,30)" rx="2" ry="2" />
<text text-anchor="" x="358.05" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>base_yyparse (14 samples, 0.03%)</title><rect x="709.6" y="1493" width="0.4" height="15.0" fill="rgb(220,124,30)" rx="2" ry="2" />
<text text-anchor="" x="712.59" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_all_qs (5 samples, 0.01%)</title><rect x="130.3" y="1317" width="0.1" height="15.0" fill="rgb(229,225,49)" rx="2" ry="2" />
<text text-anchor="" x="133.29" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (7 samples, 0.02%)</title><rect x="746.8" y="1381" width="0.1" height="15.0" fill="rgb(244,140,38)" rx="2" ry="2" />
<text text-anchor="" x="749.77" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (14 samples, 0.03%)</title><rect x="998.2" y="1429" width="0.4" height="15.0" fill="rgb(225,188,31)" rx="2" ry="2" />
<text text-anchor="" x="1001.24" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_new_mm_cr3 (13 samples, 0.03%)</title><rect x="1144.8" y="1445" width="0.3" height="15.0" fill="rgb(214,111,13)" rx="2" ry="2" />
<text text-anchor="" x="1147.81" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (8 samples, 0.02%)</title><rect x="671.8" y="1461" width="0.2" height="15.0" fill="rgb(247,140,3)" rx="2" ry="2" />
<text text-anchor="" x="674.75" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_dest_set (187 samples, 0.41%)</title><rect x="814.7" y="1493" width="4.8" height="15.0" fill="rgb(233,154,53)" rx="2" ry="2" />
<text text-anchor="" x="817.74" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (9 samples, 0.02%)</title><rect x="150.2" y="1477" width="0.2" height="15.0" fill="rgb(251,12,18)" rx="2" ry="2" />
<text text-anchor="" x="153.21" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__accumulate_pelt_segments (4 samples, 0.01%)</title><rect x="480.7" y="1093" width="0.1" height="15.0" fill="rgb(240,21,53)" rx="2" ry="2" />
<text text-anchor="" x="483.69" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (8 samples, 0.02%)</title><rect x="746.3" y="1429" width="0.2" height="15.0" fill="rgb(240,36,17)" rx="2" ry="2" />
<text text-anchor="" x="749.28" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>insertinto_or_locking_clause_walker (30 samples, 0.07%)</title><rect x="893.5" y="1365" width="0.8" height="15.0" fill="rgb(215,162,40)" rx="2" ry="2" />
<text text-anchor="" x="896.48" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_select_query (8 samples, 0.02%)</title><rect x="380.3" y="1493" width="0.2" height="15.0" fill="rgb(244,49,24)" rx="2" ry="2" />
<text text-anchor="" x="383.30" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_freewait (209 samples, 0.46%)</title><rect x="546.6" y="1445" width="5.4" height="15.0" fill="rgb(210,22,45)" rx="2" ry="2" />
<text text-anchor="" x="549.63" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (17 samples, 0.04%)</title><rect x="85.4" y="1125" width="0.4" height="15.0" fill="rgb(214,63,51)" rx="2" ry="2" />
<text text-anchor="" x="88.40" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (1,260 samples, 2.75%)</title><rect x="263.7" y="1493" width="32.4" height="15.0" fill="rgb(207,179,7)" rx="2" ry="2" />
<text text-anchor="" x="266.66" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >po..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (8 samples, 0.02%)</title><rect x="12.6" y="1557" width="0.2" height="15.0" fill="rgb(243,35,9)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (4 samples, 0.01%)</title><rect x="11.9" y="485" width="0.1" height="15.0" fill="rgb(230,124,13)" rx="2" ry="2" />
<text text-anchor="" x="14.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (7 samples, 0.02%)</title><rect x="675.6" y="1477" width="0.2" height="15.0" fill="rgb(249,61,31)" rx="2" ry="2" />
<text text-anchor="" x="678.58" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_query_string (13 samples, 0.03%)</title><rect x="96.6" y="1493" width="0.4" height="15.0" fill="rgb(222,155,13)" rx="2" ry="2" />
<text text-anchor="" x="99.64" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (15 samples, 0.03%)</title><rect x="373.8" y="1445" width="0.4" height="15.0" fill="rgb(250,120,29)" rx="2" ry="2" />
<text text-anchor="" x="376.85" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (17 samples, 0.04%)</title><rect x="1138.2" y="1573" width="0.5" height="15.0" fill="rgb(251,35,1)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (8 samples, 0.02%)</title><rect x="584.4" y="1381" width="0.2" height="15.0" fill="rgb(245,166,10)" rx="2" ry="2" />
<text text-anchor="" x="587.40" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (17 samples, 0.04%)</title><rect x="1084.5" y="1301" width="0.4" height="15.0" fill="rgb(209,28,8)" rx="2" ry="2" />
<text text-anchor="" x="1087.47" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (11 samples, 0.02%)</title><rect x="1129.6" y="1637" width="0.3" height="15.0" fill="rgb(236,103,54)" rx="2" ry="2" />
<text text-anchor="" x="1132.64" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (4 samples, 0.01%)</title><rect x="400.1" y="1237" width="0.1" height="15.0" fill="rgb(227,29,38)" rx="2" ry="2" />
<text text-anchor="" x="403.09" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (902 samples, 1.97%)</title><rect x="67.1" y="1461" width="23.2" height="15.0" fill="rgb(208,123,4)" rx="2" ry="2" />
<text text-anchor="" x="70.07" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="342.0" y="1461" width="0.1" height="15.0" fill="rgb(210,222,15)" rx="2" ry="2" />
<text text-anchor="" x="344.97" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (39 samples, 0.08%)</title><rect x="676.9" y="1445" width="1.0" height="15.0" fill="rgb(225,112,40)" rx="2" ry="2" />
<text text-anchor="" x="679.94" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enter_lazy_tlb (74 samples, 0.16%)</title><rect x="1144.8" y="1477" width="1.9" height="15.0" fill="rgb(232,20,33)" rx="2" ry="2" />
<text text-anchor="" x="1147.78" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_resched (5 samples, 0.01%)</title><rect x="283.9" y="1173" width="0.2" height="15.0" fill="rgb(224,154,50)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextCallResetCallbacks (18 samples, 0.04%)</title><rect x="51.5" y="1509" width="0.5" height="15.0" fill="rgb(206,88,25)" rx="2" ry="2" />
<text text-anchor="" x="54.49" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (57 samples, 0.12%)</title><rect x="248.4" y="1253" width="1.4" height="15.0" fill="rgb(238,217,23)" rx="2" ry="2" />
<text text-anchor="" x="251.37" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_create (68 samples, 0.15%)</title><rect x="374.3" y="1509" width="1.8" height="15.0" fill="rgb(223,79,10)" rx="2" ry="2" />
<text text-anchor="" x="377.31" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (34 samples, 0.07%)</title><rect x="197.1" y="1477" width="0.8" height="15.0" fill="rgb(239,9,50)" rx="2" ry="2" />
<text text-anchor="" x="200.05" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_sent_message (6 samples, 0.01%)</title><rect x="306.3" y="1493" width="0.1" height="15.0" fill="rgb(232,139,36)" rx="2" ry="2" />
<text text-anchor="" x="309.26" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (7 samples, 0.02%)</title><rect x="402.0" y="1205" width="0.2" height="15.0" fill="rgb(245,126,16)" rx="2" ry="2" />
<text text-anchor="" x="405.00" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (19 samples, 0.04%)</title><rect x="87.8" y="1317" width="0.5" height="15.0" fill="rgb(218,136,37)" rx="2" ry="2" />
<text text-anchor="" x="90.79" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strncat at plt (8 samples, 0.02%)</title><rect x="882.7" y="1397" width="0.2" height="15.0" fill="rgb(249,117,40)" rx="2" ry="2" />
<text text-anchor="" x="885.66" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wakeup_preempt_entity.isra.69 (6 samples, 0.01%)</title><rect x="783.6" y="1077" width="0.1" height="15.0" fill="rgb(254,190,32)" rx="2" ry="2" />
<text text-anchor="" x="786.58" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_and_flush (489 samples, 1.07%)</title><rect x="393.6" y="1493" width="12.6" height="15.0" fill="rgb(247,170,16)" rx="2" ry="2" />
<text text-anchor="" x="396.64" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_wait_queue (12 samples, 0.03%)</title><rect x="1108.8" y="1365" width="0.3" height="15.0" fill="rgb(252,188,45)" rx="2" ry="2" />
<text text-anchor="" x="1111.81" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prefetch_freepointer (7 samples, 0.02%)</title><rect x="760.2" y="1221" width="0.2" height="15.0" fill="rgb(212,177,48)" rx="2" ry="2" />
<text text-anchor="" x="763.19" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeRangeVar (24 samples, 0.05%)</title><rect x="995.4" y="1461" width="0.6" height="15.0" fill="rgb(250,103,33)" rx="2" ry="2" />
<text text-anchor="" x="998.39" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,930 samples, 4.20%)</title><rect x="443.0" y="1445" width="49.6" height="15.0" fill="rgb(226,148,0)" rx="2" ry="2" />
<text text-anchor="" x="446.00" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_sy..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (4 samples, 0.01%)</title><rect x="287.2" y="1381" width="0.1" height="15.0" fill="rgb(225,82,19)" rx="2" ry="2" />
<text text-anchor="" x="290.21" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (6 samples, 0.01%)</title><rect x="1111.1" y="1365" width="0.2" height="15.0" fill="rgb(230,212,37)" rx="2" ry="2" />
<text text-anchor="" x="1114.10" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (476 samples, 1.04%)</title><rect x="559.4" y="1349" width="12.3" height="15.0" fill="rgb(206,114,6)" rx="2" ry="2" />
<text text-anchor="" x="562.43" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (8 samples, 0.02%)</title><rect x="12.6" y="1509" width="0.2" height="15.0" fill="rgb(252,113,51)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (475 samples, 1.03%)</title><rect x="119.8" y="1477" width="12.2" height="15.0" fill="rgb(252,70,35)" rx="2" ry="2" />
<text text-anchor="" x="122.77" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (451 samples, 0.98%)</title><rect x="120.1" y="1445" width="11.6" height="15.0" fill="rgb(214,146,39)" rx="2" ry="2" />
<text text-anchor="" x="123.08" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (57 samples, 0.12%)</title><rect x="363.7" y="1253" width="1.5" height="15.0" fill="rgb(251,21,1)" rx="2" ry="2" />
<text text-anchor="" x="366.69" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="177.2" y="1333" width="0.1" height="15.0" fill="rgb(244,102,15)" rx="2" ry="2" />
<text text-anchor="" x="180.21" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (10 samples, 0.02%)</title><rect x="195.6" y="1461" width="0.2" height="15.0" fill="rgb(241,89,12)" rx="2" ry="2" />
<text text-anchor="" x="198.56" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (54 samples, 0.12%)</title><rect x="743.0" y="1429" width="1.4" height="15.0" fill="rgb(247,118,46)" rx="2" ry="2" />
<text text-anchor="" x="745.96" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (4 samples, 0.01%)</title><rect x="1073.3" y="1269" width="0.1" height="15.0" fill="rgb(216,127,4)" rx="2" ry="2" />
<text text-anchor="" x="1076.29" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_add (125 samples, 0.27%)</title><rect x="422.3" y="1509" width="3.2" height="15.0" fill="rgb(227,177,46)" rx="2" ry="2" />
<text text-anchor="" x="425.28" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (4 samples, 0.01%)</title><rect x="657.0" y="1461" width="0.1" height="15.0" fill="rgb(215,191,11)" rx="2" ry="2" />
<text text-anchor="" x="660.05" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (34 samples, 0.07%)</title><rect x="334.3" y="1477" width="0.9" height="15.0" fill="rgb(231,56,26)" rx="2" ry="2" />
<text text-anchor="" x="337.28" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (16 samples, 0.03%)</title><rect x="449.8" y="1317" width="0.4" height="15.0" fill="rgb(211,193,16)" rx="2" ry="2" />
<text text-anchor="" x="452.76" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (17 samples, 0.04%)</title><rect x="508.6" y="1509" width="0.4" height="15.0" fill="rgb(246,85,8)" rx="2" ry="2" />
<text text-anchor="" x="511.61" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reweight_entity (10 samples, 0.02%)</title><rect x="283.0" y="1253" width="0.2" height="15.0" fill="rgb(236,130,16)" rx="2" ry="2" />
<text text-anchor="" x="285.97" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="789" width="1.3" height="15.0" fill="rgb(217,96,2)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="799.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iter (43 samples, 0.09%)</title><rect x="397.1" y="1301" width="1.1" height="15.0" fill="rgb(246,181,0)" rx="2" ry="2" />
<text text-anchor="" x="400.06" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (82 samples, 0.18%)</title><rect x="363.5" y="1269" width="2.1" height="15.0" fill="rgb(206,180,12)" rx="2" ry="2" />
<text text-anchor="" x="366.54" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>save_pending_data (14 samples, 0.03%)</title><rect x="1117.7" y="1477" width="0.3" height="15.0" fill="rgb(208,126,41)" rx="2" ry="2" />
<text text-anchor="" x="1120.68" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (4 samples, 0.01%)</title><rect x="314.0" y="1493" width="0.1" height="15.0" fill="rgb(238,26,0)" rx="2" ry="2" />
<text text-anchor="" x="317.00" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (55 samples, 0.12%)</title><rect x="787.9" y="1365" width="1.4" height="15.0" fill="rgb(207,200,20)" rx="2" ry="2" />
<text text-anchor="" x="790.87" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sigprocmask at plt (9 samples, 0.02%)</title><rect x="143.4" y="1509" width="0.2" height="15.0" fill="rgb(232,176,17)" rx="2" ry="2" />
<text text-anchor="" x="146.37" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (39 samples, 0.08%)</title><rect x="505.5" y="1509" width="1.0" height="15.0" fill="rgb(245,47,29)" rx="2" ry="2" />
<text text-anchor="" x="508.47" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (1,378 samples, 3.00%)</title><rect x="751.8" y="1301" width="35.4" height="15.0" fill="rgb(247,57,42)" rx="2" ry="2" />
<text text-anchor="" x="754.81" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >uni..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (706 samples, 1.54%)</title><rect x="242.7" y="1477" width="18.2" height="15.0" fill="rgb(238,29,33)" rx="2" ry="2" />
<text text-anchor="" x="245.71" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (15 samples, 0.03%)</title><rect x="339.7" y="1461" width="0.4" height="15.0" fill="rgb(250,226,37)" rx="2" ry="2" />
<text text-anchor="" x="342.71" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (29 samples, 0.06%)</title><rect x="420.0" y="1461" width="0.7" height="15.0" fill="rgb(253,153,33)" rx="2" ry="2" />
<text text-anchor="" x="422.97" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (27 samples, 0.06%)</title><rect x="822.9" y="1493" width="0.7" height="15.0" fill="rgb(217,100,31)" rx="2" ry="2" />
<text text-anchor="" x="825.91" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlcpy (99 samples, 0.22%)</title><rect x="434.2" y="1509" width="2.5" height="15.0" fill="rgb(208,216,46)" rx="2" ry="2" />
<text text-anchor="" x="437.18" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (274 samples, 0.60%)</title><rect x="1075.8" y="1285" width="7.0" height="15.0" fill="rgb(231,177,39)" rx="2" ry="2" />
<text text-anchor="" x="1078.75" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (11 samples, 0.02%)</title><rect x="1090.7" y="1397" width="0.3" height="15.0" fill="rgb(238,28,7)" rx="2" ry="2" />
<text text-anchor="" x="1093.72" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (17 samples, 0.04%)</title><rect x="583.7" y="1349" width="0.5" height="15.0" fill="rgb(230,39,41)" rx="2" ry="2" />
<text text-anchor="" x="586.73" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (27 samples, 0.06%)</title><rect x="657.1" y="1477" width="0.7" height="15.0" fill="rgb(215,223,30)" rx="2" ry="2" />
<text text-anchor="" x="660.15" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prefetch_freepointer (5 samples, 0.01%)</title><rect x="738.6" y="1221" width="0.2" height="15.0" fill="rgb(215,195,31)" rx="2" ry="2" />
<text text-anchor="" x="741.64" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="663.6" y="1493" width="0.1" height="15.0" fill="rgb(238,214,17)" rx="2" ry="2" />
<text text-anchor="" x="666.55" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="680.5" y="1477" width="0.1" height="15.0" fill="rgb(217,181,47)" rx="2" ry="2" />
<text text-anchor="" x="683.52" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy at plt (4 samples, 0.01%)</title><rect x="212.0" y="1493" width="0.1" height="15.0" fill="rgb(240,7,20)" rx="2" ry="2" />
<text text-anchor="" x="215.01" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (65 samples, 0.14%)</title><rect x="13.8" y="1621" width="1.7" height="15.0" fill="rgb(232,70,45)" rx="2" ry="2" />
<text text-anchor="" x="16.80" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (7 samples, 0.02%)</title><rect x="1110.3" y="1317" width="0.2" height="15.0" fill="rgb(224,138,30)" rx="2" ry="2" />
<text text-anchor="" x="1113.33" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (60 samples, 0.13%)</title><rect x="1145.1" y="1445" width="1.6" height="15.0" fill="rgb(244,106,35)" rx="2" ry="2" />
<text text-anchor="" x="1148.14" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strncpy_sse2_unaligned (68 samples, 0.15%)</title><rect x="302.9" y="1509" width="1.8" height="15.0" fill="rgb(232,81,29)" rx="2" ry="2" />
<text text-anchor="" x="305.92" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (24 samples, 0.05%)</title><rect x="74.2" y="1269" width="0.6" height="15.0" fill="rgb(241,59,51)" rx="2" ry="2" />
<text text-anchor="" x="77.17" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (20 samples, 0.04%)</title><rect x="131.0" y="1381" width="0.5" height="15.0" fill="rgb(219,175,5)" rx="2" ry="2" />
<text text-anchor="" x="134.01" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (28 samples, 0.06%)</title><rect x="369.7" y="1461" width="0.7" height="15.0" fill="rgb(238,223,0)" rx="2" ry="2" />
<text text-anchor="" x="372.68" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_search_relcache (65 samples, 0.14%)</title><rect x="875.2" y="1365" width="1.7" height="15.0" fill="rgb(241,139,37)" rx="2" ry="2" />
<text text-anchor="" x="878.20" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (33 samples, 0.07%)</title><rect x="197.1" y="1461" width="0.8" height="15.0" fill="rgb(230,212,28)" rx="2" ry="2" />
<text text-anchor="" x="200.05" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (20 samples, 0.04%)</title><rect x="671.2" y="1461" width="0.6" height="15.0" fill="rgb(221,6,32)" rx="2" ry="2" />
<text text-anchor="" x="674.24" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (11 samples, 0.02%)</title><rect x="722.2" y="1429" width="0.2" height="15.0" fill="rgb(226,28,50)" rx="2" ry="2" />
<text text-anchor="" x="725.16" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (9 samples, 0.02%)</title><rect x="422.0" y="1509" width="0.2" height="15.0" fill="rgb(247,211,46)" rx="2" ry="2" />
<text text-anchor="" x="425.00" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_wait_queue (129 samples, 0.28%)</title><rect x="548.7" y="1429" width="3.3" height="15.0" fill="rgb(246,108,53)" rx="2" ry="2" />
<text text-anchor="" x="551.69" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>make_table_name_from_rangevar (59 samples, 0.13%)</title><rect x="880.1" y="1397" width="1.5" height="15.0" fill="rgb(244,191,36)" rx="2" ry="2" />
<text text-anchor="" x="883.09" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (357 samples, 0.78%)</title><rect x="121.4" y="1413" width="9.2" height="15.0" fill="rgb(254,228,10)" rx="2" ry="2" />
<text text-anchor="" x="124.42" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (8 samples, 0.02%)</title><rect x="748.0" y="1381" width="0.2" height="15.0" fill="rgb(210,116,52)" rx="2" ry="2" />
<text text-anchor="" x="751.03" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="680.8" y="1477" width="0.1" height="15.0" fill="rgb(224,179,45)" rx="2" ry="2" />
<text text-anchor="" x="683.83" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (7 samples, 0.02%)</title><rect x="108.8" y="1445" width="0.2" height="15.0" fill="rgb(222,96,1)" rx="2" ry="2" />
<text text-anchor="" x="111.85" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (25 samples, 0.05%)</title><rect x="375.2" y="1477" width="0.7" height="15.0" fill="rgb(242,190,48)" rx="2" ry="2" />
<text text-anchor="" x="378.23" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl (5 samples, 0.01%)</title><rect x="91.1" y="1493" width="0.1" height="15.0" fill="rgb(235,21,37)" rx="2" ry="2" />
<text text-anchor="" x="94.06" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to (13 samples, 0.03%)</title><rect x="1137.8" y="1637" width="0.3" height="15.0" fill="rgb(219,199,24)" rx="2" ry="2" />
<text text-anchor="" x="1140.76" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_ssl_pending (5 samples, 0.01%)</title><rect x="295.7" y="1461" width="0.1" height="15.0" fill="rgb(225,39,22)" rx="2" ry="2" />
<text text-anchor="" x="298.72" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (16 samples, 0.03%)</title><rect x="140.5" y="1477" width="0.5" height="15.0" fill="rgb(252,92,25)" rx="2" ry="2" />
<text text-anchor="" x="143.55" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="381.6" y="1493" width="0.1" height="15.0" fill="rgb(254,219,14)" rx="2" ry="2" />
<text text-anchor="" x="384.56" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (355 samples, 0.77%)</title><rect x="121.4" y="1397" width="9.2" height="15.0" fill="rgb(224,109,3)" rx="2" ry="2" />
<text text-anchor="" x="124.44" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="412.5" y="1221" width="0.1" height="15.0" fill="rgb(225,84,35)" rx="2" ry="2" />
<text text-anchor="" x="415.54" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (10 samples, 0.02%)</title><rect x="1092.9" y="1381" width="0.2" height="15.0" fill="rgb(249,62,7)" rx="2" ry="2" />
<text text-anchor="" x="1095.87" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (92 samples, 0.20%)</title><rect x="1073.4" y="1269" width="2.4" height="15.0" fill="rgb(236,36,14)" rx="2" ry="2" />
<text text-anchor="" x="1076.39" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (45 samples, 0.10%)</title><rect x="399.6" y="1253" width="1.1" height="15.0" fill="rgb(222,31,0)" rx="2" ry="2" />
<text text-anchor="" x="402.58" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeString (42 samples, 0.09%)</title><rect x="994.2" y="1445" width="1.0" height="15.0" fill="rgb(230,90,0)" rx="2" ry="2" />
<text text-anchor="" x="997.16" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_doing_extended_query_message (4 samples, 0.01%)</title><rect x="662.2" y="1509" width="0.1" height="15.0" fill="rgb(210,85,21)" rx="2" ry="2" />
<text text-anchor="" x="665.16" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (10 samples, 0.02%)</title><rect x="680.8" y="1493" width="0.2" height="15.0" fill="rgb(233,121,8)" rx="2" ry="2" />
<text text-anchor="" x="683.77" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_all_qs (5 samples, 0.01%)</title><rect x="330.8" y="1285" width="0.2" height="15.0" fill="rgb(249,213,24)" rx="2" ry="2" />
<text text-anchor="" x="333.84" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1,647 samples, 3.59%)</title><rect x="746.9" y="1397" width="42.4" height="15.0" fill="rgb(227,199,4)" rx="2" ry="2" />
<text text-anchor="" x="749.95" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sys..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (18 samples, 0.04%)</title><rect x="1022.5" y="1237" width="0.4" height="15.0" fill="rgb(214,46,13)" rx="2" ry="2" />
<text text-anchor="" x="1025.49" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_sse2_unaligned (8 samples, 0.02%)</title><rect x="384.8" y="1509" width="0.3" height="15.0" fill="rgb(219,81,5)" rx="2" ry="2" />
<text text-anchor="" x="387.85" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (43 samples, 0.09%)</title><rect x="109.0" y="1445" width="1.1" height="15.0" fill="rgb(238,137,13)" rx="2" ry="2" />
<text text-anchor="" x="112.03" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_delete_cell (15 samples, 0.03%)</title><rect x="187.6" y="1509" width="0.4" height="15.0" fill="rgb(223,109,34)" rx="2" ry="2" />
<text text-anchor="" x="190.57" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (6 samples, 0.01%)</title><rect x="822.4" y="1461" width="0.1" height="15.0" fill="rgb(228,154,12)" rx="2" ry="2" />
<text text-anchor="" x="825.37" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_generic (139 samples, 0.30%)</title><rect x="683.6" y="1317" width="3.5" height="15.0" fill="rgb(212,200,38)" rx="2" ry="2" />
<text text-anchor="" x="686.55" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (170 samples, 0.37%)</title><rect x="837.6" y="1461" width="4.4" height="15.0" fill="rgb(225,170,28)" rx="2" ry="2" />
<text text-anchor="" x="840.59" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (346 samples, 0.75%)</title><rect x="732.8" y="1333" width="8.9" height="15.0" fill="rgb(243,124,37)" rx="2" ry="2" />
<text text-anchor="" x="735.76" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (15 samples, 0.03%)</title><rect x="624.0" y="1541" width="0.4" height="15.0" fill="rgb(250,91,20)" rx="2" ry="2" />
<text text-anchor="" x="627.04" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter (23 samples, 0.05%)</title><rect x="323.7" y="1285" width="0.6" height="15.0" fill="rgb(244,153,36)" rx="2" ry="2" />
<text text-anchor="" x="326.74" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (57 samples, 0.12%)</title><rect x="325.8" y="1253" width="1.5" height="15.0" fill="rgb(221,218,53)" rx="2" ry="2" />
<text text-anchor="" x="328.85" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (9 samples, 0.02%)</title><rect x="741.1" y="1237" width="0.2" height="15.0" fill="rgb(253,184,8)" rx="2" ry="2" />
<text text-anchor="" x="744.11" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (399 samples, 0.87%)</title><rect x="1139.3" y="1653" width="10.2" height="15.0" fill="rgb(235,62,31)" rx="2" ry="2" />
<text text-anchor="" x="1142.25" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (6 samples, 0.01%)</title><rect x="822.2" y="1429" width="0.1" height="15.0" fill="rgb(218,47,32)" rx="2" ry="2" />
<text text-anchor="" x="825.19" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (13 samples, 0.03%)</title><rect x="271.2" y="1397" width="0.4" height="15.0" fill="rgb(220,14,32)" rx="2" ry="2" />
<text text-anchor="" x="274.22" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (10 samples, 0.02%)</title><rect x="407.4" y="1381" width="0.3" height="15.0" fill="rgb(214,113,13)" rx="2" ry="2" />
<text text-anchor="" x="410.42" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="681.1" y="1477" width="0.1" height="15.0" fill="rgb(245,189,53)" rx="2" ry="2" />
<text text-anchor="" x="684.06" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (30 samples, 0.07%)</title><rect x="71.8" y="1301" width="0.8" height="15.0" fill="rgb(250,152,3)" rx="2" ry="2" />
<text text-anchor="" x="74.80" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_next_buddy (11 samples, 0.02%)</title><rect x="571.7" y="1349" width="0.3" height="15.0" fill="rgb(223,114,42)" rx="2" ry="2" />
<text text-anchor="" x="574.75" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.01%)</title><rect x="319.4" y="1397" width="0.1" height="15.0" fill="rgb(206,158,19)" rx="2" ry="2" />
<text text-anchor="" x="322.37" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (14 samples, 0.03%)</title><rect x="851.4" y="1349" width="0.4" height="15.0" fill="rgb(218,89,5)" rx="2" ry="2" />
<text text-anchor="" x="854.42" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (416 samples, 0.91%)</title><rect x="320.5" y="1381" width="10.7" height="15.0" fill="rgb(249,228,28)" rx="2" ry="2" />
<text text-anchor="" x="323.50" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (26 samples, 0.06%)</title><rect x="417.1" y="1381" width="0.6" height="15.0" fill="rgb(240,6,1)" rx="2" ry="2" />
<text text-anchor="" x="420.06" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (18 samples, 0.04%)</title><rect x="364.3" y="1173" width="0.4" height="15.0" fill="rgb(214,140,22)" rx="2" ry="2" />
<text text-anchor="" x="367.28" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_select_query (43 samples, 0.09%)</title><rect x="95.4" y="1493" width="1.1" height="15.0" fill="rgb(222,84,15)" rx="2" ry="2" />
<text text-anchor="" x="98.35" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (4 samples, 0.01%)</title><rect x="1090.1" y="1381" width="0.2" height="15.0" fill="rgb(241,84,18)" rx="2" ry="2" />
<text text-anchor="" x="1093.15" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (9 samples, 0.02%)</title><rect x="280.3" y="1253" width="0.3" height="15.0" fill="rgb(246,144,26)" rx="2" ry="2" />
<text text-anchor="" x="283.32" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (33 samples, 0.07%)</title><rect x="491.7" y="1365" width="0.9" height="15.0" fill="rgb(229,134,15)" rx="2" ry="2" />
<text text-anchor="" x="494.72" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (33 samples, 0.07%)</title><rect x="259.2" y="1365" width="0.8" height="15.0" fill="rgb(229,8,28)" rx="2" ry="2" />
<text text-anchor="" x="262.19" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy at plt (4 samples, 0.01%)</title><rect x="225.9" y="1493" width="0.2" height="15.0" fill="rgb(210,122,13)" rx="2" ry="2" />
<text text-anchor="" x="228.95" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetDatabaseEncoding (8 samples, 0.02%)</title><rect x="983.2" y="1397" width="0.2" height="15.0" fill="rgb(237,92,44)" rx="2" ry="2" />
<text text-anchor="" x="986.18" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (4 samples, 0.01%)</title><rect x="660.5" y="1493" width="0.1" height="15.0" fill="rgb(254,139,46)" rx="2" ry="2" />
<text text-anchor="" x="663.49" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_writing_transaction (8 samples, 0.02%)</title><rect x="806.9" y="1493" width="0.3" height="15.0" fill="rgb(227,11,48)" rx="2" ry="2" />
<text text-anchor="" x="809.95" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_vsnprintf (410 samples, 0.89%)</title><rect x="17.5" y="1637" width="10.6" height="15.0" fill="rgb(214,15,32)" rx="2" ry="2" />
<text text-anchor="" x="20.53" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (121 samples, 0.26%)</title><rect x="359.7" y="1285" width="3.1" height="15.0" fill="rgb(235,205,35)" rx="2" ry="2" />
<text text-anchor="" x="362.68" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (18 samples, 0.04%)</title><rect x="232.6" y="1333" width="0.4" height="15.0" fill="rgb(216,63,14)" rx="2" ry="2" />
<text text-anchor="" x="235.55" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__set_current_blocked (73 samples, 0.16%)</title><rect x="110.2" y="1429" width="1.9" height="15.0" fill="rgb(215,94,46)" rx="2" ry="2" />
<text text-anchor="" x="113.18" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (8 samples, 0.02%)</title><rect x="411.1" y="1301" width="0.2" height="15.0" fill="rgb(207,152,25)" rx="2" ry="2" />
<text text-anchor="" x="414.10" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (5 samples, 0.01%)</title><rect x="232.6" y="1285" width="0.2" height="15.0" fill="rgb(223,28,48)" rx="2" ry="2" />
<text text-anchor="" x="235.63" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lappend (52 samples, 0.11%)</title><rect x="810.7" y="1477" width="1.4" height="15.0" fill="rgb(219,104,10)" rx="2" ry="2" />
<text text-anchor="" x="813.73" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (7 samples, 0.02%)</title><rect x="528.9" y="1477" width="0.2" height="15.0" fill="rgb(208,64,52)" rx="2" ry="2" />
<text text-anchor="" x="531.94" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (7 samples, 0.02%)</title><rect x="785.7" y="1237" width="0.2" height="15.0" fill="rgb(235,187,1)" rx="2" ry="2" />
<text text-anchor="" x="788.72" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.02%)</title><rect x="13.4" y="1605" width="0.2" height="15.0" fill="rgb(241,174,37)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (4 samples, 0.01%)</title><rect x="12.9" y="1509" width="0.1" height="15.0" fill="rgb(224,39,12)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (11 samples, 0.02%)</title><rect x="1138.4" y="1557" width="0.3" height="15.0" fill="rgb(230,65,48)" rx="2" ry="2" />
<text text-anchor="" x="1141.38" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1,672 samples, 3.64%)</title><rect x="447.9" y="1365" width="42.9" height="15.0" fill="rgb(217,115,52)" rx="2" ry="2" />
<text text-anchor="" x="450.86" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sock..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (293 samples, 0.64%)</title><rect x="246.9" y="1317" width="7.6" height="15.0" fill="rgb(231,182,48)" rx="2" ry="2" />
<text text-anchor="" x="249.93" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (56 samples, 0.12%)</title><rect x="658.2" y="1461" width="1.4" height="15.0" fill="rgb(218,198,20)" rx="2" ry="2" />
<text text-anchor="" x="661.20" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (233 samples, 0.51%)</title><rect x="76.7" y="1285" width="6.0" height="15.0" fill="rgb(225,117,5)" rx="2" ry="2" />
<text text-anchor="" x="79.71" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_fd_set (4 samples, 0.01%)</title><rect x="233.7" y="1413" width="0.1" height="15.0" fill="rgb(245,98,36)" rx="2" ry="2" />
<text text-anchor="" x="236.66" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_dest_set (185 samples, 0.40%)</title><rect x="427.1" y="1509" width="4.8" height="15.0" fill="rgb(242,128,39)" rx="2" ry="2" />
<text text-anchor="" x="430.14" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (5 samples, 0.01%)</title><rect x="502.1" y="1493" width="0.1" height="15.0" fill="rgb(246,128,15)" rx="2" ry="2" />
<text text-anchor="" x="505.05" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_command_success (13 samples, 0.03%)</title><rect x="629.2" y="1541" width="0.3" height="15.0" fill="rgb(227,78,28)" rx="2" ry="2" />
<text text-anchor="" x="632.15" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (62 samples, 0.14%)</title><rect x="189.7" y="1509" width="1.6" height="15.0" fill="rgb(212,143,17)" rx="2" ry="2" />
<text text-anchor="" x="192.67" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (39 samples, 0.08%)</title><rect x="468.1" y="1173" width="1.0" height="15.0" fill="rgb(237,54,27)" rx="2" ry="2" />
<text text-anchor="" x="471.07" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (24 samples, 0.05%)</title><rect x="601.2" y="1381" width="0.6" height="15.0" fill="rgb(246,132,16)" rx="2" ry="2" />
<text text-anchor="" x="604.21" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="864.3" y="1333" width="0.1" height="15.0" fill="rgb(215,213,51)" rx="2" ry="2" />
<text text-anchor="" x="867.28" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (4 samples, 0.01%)</title><rect x="1111.4" y="1381" width="0.1" height="15.0" fill="rgb(244,197,7)" rx="2" ry="2" />
<text text-anchor="" x="1114.41" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (10 samples, 0.02%)</title><rect x="943.2" y="1461" width="0.3" height="15.0" fill="rgb(245,211,35)" rx="2" ry="2" />
<text text-anchor="" x="946.23" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (4 samples, 0.01%)</title><rect x="985.5" y="1413" width="0.1" height="15.0" fill="rgb(254,14,36)" rx="2" ry="2" />
<text text-anchor="" x="988.52" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (52 samples, 0.11%)</title><rect x="739.6" y="1221" width="1.4" height="15.0" fill="rgb(250,92,5)" rx="2" ry="2" />
<text text-anchor="" x="742.65" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextReset (11 samples, 0.02%)</title><rect x="29.5" y="1557" width="0.2" height="15.0" fill="rgb(213,22,11)" rx="2" ry="2" />
<text text-anchor="" x="32.46" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (117 samples, 0.25%)</title><rect x="213.8" y="1493" width="3.0" height="15.0" fill="rgb(218,152,18)" rx="2" ry="2" />
<text text-anchor="" x="216.76" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (30 samples, 0.07%)</title><rect x="274.9" y="1365" width="0.7" height="15.0" fill="rgb(251,13,28)" rx="2" ry="2" />
<text text-anchor="" x="277.87" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (15 samples, 0.03%)</title><rect x="419.2" y="1461" width="0.4" height="15.0" fill="rgb(244,191,54)" rx="2" ry="2" />
<text text-anchor="" x="422.20" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (6 samples, 0.01%)</title><rect x="1084.2" y="1317" width="0.1" height="15.0" fill="rgb(252,229,40)" rx="2" ry="2" />
<text text-anchor="" x="1087.19" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (4 samples, 0.01%)</title><rect x="367.0" y="1349" width="0.1" height="15.0" fill="rgb(210,52,35)" rx="2" ry="2" />
<text text-anchor="" x="370.01" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (8 samples, 0.02%)</title><rect x="1089.9" y="1365" width="0.2" height="15.0" fill="rgb(233,33,10)" rx="2" ry="2" />
<text text-anchor="" x="1092.94" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (32 samples, 0.07%)</title><rect x="85.1" y="1141" width="0.9" height="15.0" fill="rgb(230,226,22)" rx="2" ry="2" />
<text text-anchor="" x="88.14" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dump_sent_message (8 samples, 0.02%)</title><rect x="305.8" y="1493" width="0.2" height="15.0" fill="rgb(227,85,22)" rx="2" ry="2" />
<text text-anchor="" x="308.82" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_doing_extended_query_message (6 samples, 0.01%)</title><rect x="670.0" y="1493" width="0.1" height="15.0" fill="rgb(224,166,10)" rx="2" ry="2" />
<text text-anchor="" x="672.98" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (6 samples, 0.01%)</title><rect x="943.5" y="1413" width="0.2" height="15.0" fill="rgb(249,159,5)" rx="2" ry="2" />
<text text-anchor="" x="946.51" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (47 samples, 0.10%)</title><rect x="412.9" y="1253" width="1.2" height="15.0" fill="rgb(230,78,48)" rx="2" ry="2" />
<text text-anchor="" x="415.92" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (4 samples, 0.01%)</title><rect x="72.0" y="1285" width="0.1" height="15.0" fill="rgb(243,83,5)" rx="2" ry="2" />
<text text-anchor="" x="75.03" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (366 samples, 0.80%)</title><rect x="732.3" y="1365" width="9.4" height="15.0" fill="rgb(207,98,29)" rx="2" ry="2" />
<text text-anchor="" x="735.32" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>flush_smp_call_function_queue (5 samples, 0.01%)</title><rect x="444.0" y="1317" width="0.1" height="15.0" fill="rgb(243,103,45)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.01%)</title><rect x="1013.9" y="1445" width="0.1" height="15.0" fill="rgb(253,216,0)" rx="2" ry="2" />
<text text-anchor="" x="1016.93" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (39 samples, 0.08%)</title><rect x="603.5" y="1445" width="1.0" height="15.0" fill="rgb(226,73,18)" rx="2" ry="2" />
<text text-anchor="" x="606.47" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (5 samples, 0.01%)</title><rect x="562.5" y="1317" width="0.1" height="15.0" fill="rgb(218,67,49)" rx="2" ry="2" />
<text text-anchor="" x="565.52" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (7 samples, 0.02%)</title><rect x="304.7" y="1509" width="0.1" height="15.0" fill="rgb(225,89,18)" rx="2" ry="2" />
<text text-anchor="" x="307.67" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="317.4" y="1493" width="0.1" height="15.0" fill="rgb(253,56,14)" rx="2" ry="2" />
<text text-anchor="" x="320.37" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_node_to_be_sent (8 samples, 0.02%)</title><rect x="820.6" y="1493" width="0.2" height="15.0" fill="rgb(244,77,17)" rx="2" ry="2" />
<text text-anchor="" x="823.58" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (8 samples, 0.02%)</title><rect x="253.8" y="1189" width="0.2" height="15.0" fill="rgb(210,180,10)" rx="2" ry="2" />
<text text-anchor="" x="256.76" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (1,017 samples, 2.22%)</title><rect x="267.1" y="1477" width="26.1" height="15.0" fill="rgb(236,35,28)" rx="2" ry="2" />
<text text-anchor="" x="270.08" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (86 samples, 0.19%)</title><rect x="258.3" y="1413" width="2.2" height="15.0" fill="rgb(246,192,49)" rx="2" ry="2" />
<text text-anchor="" x="261.31" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_to_where (21 samples, 0.05%)</title><rect x="1010.3" y="1493" width="0.6" height="15.0" fill="rgb(234,99,0)" rx="2" ry="2" />
<text text-anchor="" x="1013.33" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_query_context (23 samples, 0.05%)</title><rect x="498.2" y="1525" width="0.6" height="15.0" fill="rgb(221,109,34)" rx="2" ry="2" />
<text text-anchor="" x="501.20" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (4 samples, 0.01%)</title><rect x="478.5" y="1109" width="0.1" height="15.0" fill="rgb(217,120,6)" rx="2" ry="2" />
<text text-anchor="" x="481.45" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,163 samples, 2.53%)</title><rect x="1063.9" y="1477" width="29.9" height="15.0" fill="rgb(231,91,30)" rx="2" ry="2" />
<text text-anchor="" x="1066.88" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >en..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (19 samples, 0.04%)</title><rect x="505.0" y="1509" width="0.5" height="15.0" fill="rgb(221,58,33)" rx="2" ry="2" />
<text text-anchor="" x="507.98" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (93 samples, 0.20%)</title><rect x="1007.1" y="1461" width="2.4" height="15.0" fill="rgb(250,154,35)" rx="2" ry="2" />
<text text-anchor="" x="1010.11" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_to_iter (42 samples, 0.09%)</title><rect x="256.7" y="1285" width="1.1" height="15.0" fill="rgb(253,18,46)" rx="2" ry="2" />
<text text-anchor="" x="259.69" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (674 samples, 1.47%)</title><rect x="243.2" y="1445" width="17.3" height="15.0" fill="rgb(205,135,17)" rx="2" ry="2" />
<text text-anchor="" x="246.20" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (9 samples, 0.02%)</title><rect x="231.4" y="1477" width="0.3" height="15.0" fill="rgb(221,141,29)" rx="2" ry="2" />
<text text-anchor="" x="234.42" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (31 samples, 0.07%)</title><rect x="293.2" y="1477" width="0.8" height="15.0" fill="rgb(232,170,47)" rx="2" ry="2" />
<text text-anchor="" x="296.23" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (5 samples, 0.01%)</title><rect x="432.7" y="1509" width="0.1" height="15.0" fill="rgb(232,156,50)" rx="2" ry="2" />
<text text-anchor="" x="435.67" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (21 samples, 0.05%)</title><rect x="608.0" y="1525" width="0.6" height="15.0" fill="rgb(228,169,25)" rx="2" ry="2" />
<text text-anchor="" x="611.02" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (5 samples, 0.01%)</title><rect x="473.4" y="1141" width="0.2" height="15.0" fill="rgb(236,25,41)" rx="2" ry="2" />
<text text-anchor="" x="476.44" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (36 samples, 0.08%)</title><rect x="509.2" y="1525" width="0.9" height="15.0" fill="rgb(234,204,6)" rx="2" ry="2" />
<text text-anchor="" x="512.17" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (8 samples, 0.02%)</title><rect x="784.4" y="1173" width="0.2" height="15.0" fill="rgb(207,77,23)" rx="2" ry="2" />
<text text-anchor="" x="787.38" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (19 samples, 0.04%)</title><rect x="1067.5" y="1349" width="0.5" height="15.0" fill="rgb(242,18,8)" rx="2" ry="2" />
<text text-anchor="" x="1070.50" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location at plt (4 samples, 0.01%)</title><rect x="67.4" y="1445" width="0.1" height="15.0" fill="rgb(237,15,0)" rx="2" ry="2" />
<text text-anchor="" x="70.35" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (17 samples, 0.04%)</title><rect x="776.5" y="1077" width="0.5" height="15.0" fill="rgb(211,180,51)" rx="2" ry="2" />
<text text-anchor="" x="779.54" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (12 samples, 0.03%)</title><rect x="122.8" y="1349" width="0.3" height="15.0" fill="rgb(209,93,39)" rx="2" ry="2" />
<text text-anchor="" x="125.76" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse (6 samples, 0.01%)</title><rect x="651.8" y="1525" width="0.1" height="15.0" fill="rgb(222,170,47)" rx="2" ry="2" />
<text text-anchor="" x="654.78" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (32 samples, 0.07%)</title><rect x="401.5" y="1237" width="0.9" height="15.0" fill="rgb(252,94,4)" rx="2" ry="2" />
<text text-anchor="" x="404.53" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="12.9" y="1589" width="0.1" height="15.0" fill="rgb(245,97,27)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (20 samples, 0.04%)</title><rect x="1138.2" y="1637" width="0.5" height="15.0" fill="rgb(249,158,50)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (5 samples, 0.01%)</title><rect x="146.8" y="1493" width="0.2" height="15.0" fill="rgb(208,203,12)" rx="2" ry="2" />
<text text-anchor="" x="149.84" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (5 samples, 0.01%)</title><rect x="323.3" y="1269" width="0.1" height="15.0" fill="rgb(213,55,44)" rx="2" ry="2" />
<text text-anchor="" x="326.30" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (42 samples, 0.09%)</title><rect x="443.7" y="1397" width="1.1" height="15.0" fill="rgb(222,228,41)" rx="2" ry="2" />
<text text-anchor="" x="446.69" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_delete_cell (22 samples, 0.05%)</title><rect x="678.2" y="1477" width="0.6" height="15.0" fill="rgb(226,77,16)" rx="2" ry="2" />
<text text-anchor="" x="681.20" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (831 samples, 1.81%)</title><rect x="269.8" y="1445" width="21.4" height="15.0" fill="rgb(229,145,22)" rx="2" ry="2" />
<text text-anchor="" x="272.81" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >d..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (534 samples, 1.16%)</title><rect x="730.9" y="1461" width="13.7" height="15.0" fill="rgb(244,74,26)" rx="2" ry="2" />
<text text-anchor="" x="733.91" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (12 samples, 0.03%)</title><rect x="407.4" y="1397" width="0.3" height="15.0" fill="rgb(236,185,1)" rx="2" ry="2" />
<text text-anchor="" x="410.37" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (4 samples, 0.01%)</title><rect x="491.6" y="1381" width="0.1" height="15.0" fill="rgb(252,90,29)" rx="2" ry="2" />
<text text-anchor="" x="494.59" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (3,130 samples, 6.82%)</title><rect x="527.1" y="1509" width="80.4" height="15.0" fill="rgb(228,188,12)" rx="2" ry="2" />
<text text-anchor="" x="530.07" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_syscal..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1269" width="1.4" height="15.0" fill="rgb(207,17,19)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (58 samples, 0.13%)</title><rect x="438.6" y="1509" width="1.5" height="15.0" fill="rgb(208,3,11)" rx="2" ry="2" />
<text text-anchor="" x="441.63" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (10 samples, 0.02%)</title><rect x="226.1" y="1493" width="0.3" height="15.0" fill="rgb(245,137,37)" rx="2" ry="2" />
<text text-anchor="" x="229.13" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (8 samples, 0.02%)</title><rect x="12.6" y="1493" width="0.2" height="15.0" fill="rgb(216,119,0)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (19 samples, 0.04%)</title><rect x="1081.5" y="1189" width="0.4" height="15.0" fill="rgb(238,62,42)" rx="2" ry="2" />
<text text-anchor="" x="1084.46" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (20 samples, 0.04%)</title><rect x="1023.5" y="1333" width="0.6" height="15.0" fill="rgb(222,133,27)" rx="2" ry="2" />
<text text-anchor="" x="1026.54" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (17 samples, 0.04%)</title><rect x="1060.1" y="1477" width="0.5" height="15.0" fill="rgb(234,91,29)" rx="2" ry="2" />
<text text-anchor="" x="1063.12" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (8 samples, 0.02%)</title><rect x="692.1" y="1333" width="0.2" height="15.0" fill="rgb(252,209,46)" rx="2" ry="2" />
<text text-anchor="" x="695.11" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (6 samples, 0.01%)</title><rect x="329.8" y="1205" width="0.1" height="15.0" fill="rgb(238,122,50)" rx="2" ry="2" />
<text text-anchor="" x="332.76" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (5 samples, 0.01%)</title><rect x="1120.9" y="1525" width="0.2" height="15.0" fill="rgb(253,54,34)" rx="2" ry="2" />
<text text-anchor="" x="1123.92" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>atol at plt (7 samples, 0.02%)</title><rect x="946.0" y="1445" width="0.2" height="15.0" fill="rgb(233,14,8)" rx="2" ry="2" />
<text text-anchor="" x="948.98" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (21 samples, 0.05%)</title><rect x="800.1" y="1461" width="0.6" height="15.0" fill="rgb(253,157,50)" rx="2" ry="2" />
<text text-anchor="" x="803.11" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (34 samples, 0.07%)</title><rect x="788.3" y="1317" width="0.8" height="15.0" fill="rgb(246,228,13)" rx="2" ry="2" />
<text text-anchor="" x="791.26" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1285" width="1.4" height="15.0" fill="rgb(219,169,0)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (17 samples, 0.04%)</title><rect x="326.8" y="1237" width="0.4" height="15.0" fill="rgb(254,27,36)" rx="2" ry="2" />
<text text-anchor="" x="329.77" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (33 samples, 0.07%)</title><rect x="10.7" y="261" width="0.8" height="15.0" fill="rgb(206,89,36)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (17 samples, 0.04%)</title><rect x="687.5" y="1381" width="0.4" height="15.0" fill="rgb(216,167,19)" rx="2" ry="2" />
<text text-anchor="" x="690.46" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_ignore_till_sync (4 samples, 0.01%)</title><rect x="164.0" y="1525" width="0.1" height="15.0" fill="rgb(247,106,36)" rx="2" ry="2" />
<text text-anchor="" x="166.97" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (13 samples, 0.03%)</title><rect x="366.1" y="1381" width="0.4" height="15.0" fill="rgb(243,106,50)" rx="2" ry="2" />
<text text-anchor="" x="369.13" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (107 samples, 0.23%)</title><rect x="411.5" y="1285" width="2.8" height="15.0" fill="rgb(205,154,16)" rx="2" ry="2" />
<text text-anchor="" x="414.53" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_free_private (36 samples, 0.08%)</title><rect x="222.7" y="1461" width="0.9" height="15.0" fill="rgb(248,23,50)" rx="2" ry="2" />
<text text-anchor="" x="225.66" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (10 samples, 0.02%)</title><rect x="265.7" y="1461" width="0.2" height="15.0" fill="rgb(230,21,43)" rx="2" ry="2" />
<text text-anchor="" x="268.67" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (6 samples, 0.01%)</title><rect x="820.1" y="1461" width="0.2" height="15.0" fill="rgb(208,172,50)" rx="2" ry="2" />
<text text-anchor="" x="823.14" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_extended_protocol_message (1,896 samples, 4.13%)</title><rect x="745.0" y="1477" width="48.7" height="15.0" fill="rgb(240,128,25)" rx="2" ry="2" />
<text text-anchor="" x="747.99" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >send..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (4 samples, 0.01%)</title><rect x="470.3" y="1157" width="0.1" height="15.0" fill="rgb(208,10,12)" rx="2" ry="2" />
<text text-anchor="" x="473.25" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_parser (20 samples, 0.04%)</title><rect x="1055.8" y="1509" width="0.5" height="15.0" fill="rgb(217,65,1)" rx="2" ry="2" />
<text text-anchor="" x="1058.80" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (10 samples, 0.02%)</title><rect x="1174.7" y="1589" width="0.3" height="15.0" fill="rgb(235,130,17)" rx="2" ry="2" />
<text text-anchor="" x="1177.73" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeString (11 samples, 0.02%)</title><rect x="1000.2" y="1461" width="0.3" height="15.0" fill="rgb(208,11,19)" rx="2" ry="2" />
<text text-anchor="" x="1003.17" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_backend_cache_empty (210 samples, 0.46%)</title><rect x="614.8" y="1541" width="5.4" height="15.0" fill="rgb(233,89,12)" rx="2" ry="2" />
<text text-anchor="" x="617.81" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (57 samples, 0.12%)</title><rect x="248.4" y="1269" width="1.4" height="15.0" fill="rgb(215,210,30)" rx="2" ry="2" />
<text text-anchor="" x="251.37" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (19 samples, 0.04%)</title><rect x="562.0" y="1317" width="0.5" height="15.0" fill="rgb(216,24,39)" rx="2" ry="2" />
<text text-anchor="" x="565.03" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yylex (5 samples, 0.01%)</title><rect x="1184.7" y="1653" width="0.1" height="15.0" fill="rgb(234,3,7)" rx="2" ry="2" />
<text text-anchor="" x="1187.70" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (406 samples, 0.88%)</title><rect x="355.6" y="1349" width="10.4" height="15.0" fill="rgb(224,4,40)" rx="2" ry="2" />
<text text-anchor="" x="358.57" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.01%)</title><rect x="324.4" y="1285" width="0.1" height="15.0" fill="rgb(206,43,45)" rx="2" ry="2" />
<text text-anchor="" x="327.38" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (19 samples, 0.04%)</title><rect x="12.3" y="1589" width="0.5" height="15.0" fill="rgb(210,191,10)" rx="2" ry="2" />
<text text-anchor="" x="15.34" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (8 samples, 0.02%)</title><rect x="179.1" y="1493" width="0.2" height="15.0" fill="rgb(232,182,37)" rx="2" ry="2" />
<text text-anchor="" x="182.06" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlogged_table_walker (12 samples, 0.03%)</title><rect x="882.4" y="1381" width="0.3" height="15.0" fill="rgb(210,65,23)" rx="2" ry="2" />
<text text-anchor="" x="885.35" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>yy_get_next_buffer (18 samples, 0.04%)</title><rect x="985.6" y="1429" width="0.5" height="15.0" fill="rgb(253,44,25)" rx="2" ry="2" />
<text text-anchor="" x="988.62" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (14 samples, 0.03%)</title><rect x="368.9" y="1461" width="0.3" height="15.0" fill="rgb(242,92,9)" rx="2" ry="2" />
<text text-anchor="" x="371.88" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pstrdup (22 samples, 0.05%)</title><rect x="822.0" y="1477" width="0.6" height="15.0" fill="rgb(210,38,31)" rx="2" ry="2" />
<text text-anchor="" x="824.99" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (34 samples, 0.07%)</title><rect x="60.2" y="1493" width="0.9" height="15.0" fill="rgb(241,15,37)" rx="2" ry="2" />
<text text-anchor="" x="63.18" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="981" width="1.3" height="15.0" fill="rgb(227,115,27)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="991.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (95 samples, 0.21%)</title><rect x="569.0" y="1333" width="2.5" height="15.0" fill="rgb(230,182,39)" rx="2" ry="2" />
<text text-anchor="" x="572.05" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (10 samples, 0.02%)</title><rect x="1098.9" y="1461" width="0.3" height="15.0" fill="rgb(224,189,26)" rx="2" ry="2" />
<text text-anchor="" x="1101.94" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="365.4" y="1253" width="0.1" height="15.0" fill="rgb(245,55,0)" rx="2" ry="2" />
<text text-anchor="" x="368.41" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_extended_send_and_wait (1,310 samples, 2.85%)</title><rect x="387.9" y="1509" width="33.7" height="15.0" fill="rgb(241,51,11)" rx="2" ry="2" />
<text text-anchor="" x="390.93" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >po..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (8 samples, 0.02%)</title><rect x="99.9" y="1493" width="0.2" height="15.0" fill="rgb(238,42,46)" rx="2" ry="2" />
<text text-anchor="" x="102.88" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>snprintf at plt (4 samples, 0.01%)</title><rect x="1056.4" y="1509" width="0.1" height="15.0" fill="rgb(236,47,39)" rx="2" ry="2" />
<text text-anchor="" x="1059.45" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (7 samples, 0.02%)</title><rect x="823.4" y="1477" width="0.1" height="15.0" fill="rgb(249,182,0)" rx="2" ry="2" />
<text text-anchor="" x="826.35" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (17 samples, 0.04%)</title><rect x="413.5" y="1237" width="0.5" height="15.0" fill="rgb(240,166,28)" rx="2" ry="2" />
<text text-anchor="" x="416.54" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (13 samples, 0.03%)</title><rect x="290.0" y="1381" width="0.4" height="15.0" fill="rgb(239,70,20)" rx="2" ry="2" />
<text text-anchor="" x="293.04" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (9 samples, 0.02%)</title><rect x="777.1" y="1077" width="0.2" height="15.0" fill="rgb(219,173,29)" rx="2" ry="2" />
<text text-anchor="" x="780.08" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (63 samples, 0.14%)</title><rect x="481.6" y="1125" width="1.6" height="15.0" fill="rgb(223,36,35)" rx="2" ry="2" />
<text text-anchor="" x="484.61" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_call_function_single_interrupt (5 samples, 0.01%)</title><rect x="444.0" y="1349" width="0.1" height="15.0" fill="rgb(243,27,7)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (1,014 samples, 2.21%)</title><rect x="463.0" y="1269" width="26.1" height="15.0" fill="rgb(215,139,45)" rx="2" ry="2" />
<text text-anchor="" x="466.00" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (12 samples, 0.03%)</title><rect x="245.0" y="1349" width="0.3" height="15.0" fill="rgb(245,135,9)" rx="2" ry="2" />
<text text-anchor="" x="247.97" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (35 samples, 0.08%)</title><rect x="495.5" y="1477" width="0.9" height="15.0" fill="rgb(215,227,17)" rx="2" ry="2" />
<text text-anchor="" x="498.50" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (14 samples, 0.03%)</title><rect x="738.8" y="1269" width="0.4" height="15.0" fill="rgb(221,202,53)" rx="2" ry="2" />
<text text-anchor="" x="741.82" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (9 samples, 0.02%)</title><rect x="1096.2" y="1493" width="0.3" height="15.0" fill="rgb(212,102,39)" rx="2" ry="2" />
<text text-anchor="" x="1099.24" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_skip_reading_from_backends (7 samples, 0.02%)</title><rect x="160.1" y="1525" width="0.2" height="15.0" fill="rgb(216,210,46)" rx="2" ry="2" />
<text text-anchor="" x="163.08" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_ssl_pending (9 samples, 0.02%)</title><rect x="622.1" y="1509" width="0.2" height="15.0" fill="rgb(207,145,41)" rx="2" ry="2" />
<text text-anchor="" x="625.08" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ntohl at plt (11 samples, 0.02%)</title><rect x="1120.2" y="1525" width="0.2" height="15.0" fill="rgb(213,43,6)" rx="2" ry="2" />
<text text-anchor="" x="1123.15" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_head (13 samples, 0.03%)</title><rect x="712.0" y="1493" width="0.3" height="15.0" fill="rgb(213,191,42)" rx="2" ry="2" />
<text text-anchor="" x="715.01" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (45 samples, 0.10%)</title><rect x="65.7" y="1477" width="1.1" height="15.0" fill="rgb(242,135,6)" rx="2" ry="2" />
<text text-anchor="" x="68.68" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (6 samples, 0.01%)</title><rect x="226.7" y="1477" width="0.2" height="15.0" fill="rgb(235,81,31)" rx="2" ry="2" />
<text text-anchor="" x="229.72" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (422 samples, 0.92%)</title><rect x="406.9" y="1429" width="10.9" height="15.0" fill="rgb(248,208,12)" rx="2" ry="2" />
<text text-anchor="" x="409.91" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>@plt (4 samples, 0.01%)</title><rect x="10.0" y="1653" width="0.1" height="15.0" fill="rgb(222,53,2)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (23 samples, 0.05%)</title><rect x="687.3" y="1397" width="0.6" height="15.0" fill="rgb(238,153,6)" rx="2" ry="2" />
<text text-anchor="" x="690.30" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (1,859 samples, 4.05%)</title><rect x="444.8" y="1429" width="47.8" height="15.0" fill="rgb(234,39,11)" rx="2" ry="2" />
<text text-anchor="" x="447.80" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sys_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irq (34 samples, 0.07%)</title><rect x="111.1" y="1413" width="0.9" height="15.0" fill="rgb(219,209,33)" rx="2" ry="2" />
<text text-anchor="" x="114.11" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (22 samples, 0.05%)</title><rect x="312.5" y="1445" width="0.6" height="15.0" fill="rgb(211,223,32)" rx="2" ry="2" />
<text text-anchor="" x="315.53" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (13 samples, 0.03%)</title><rect x="348.1" y="1493" width="0.4" height="15.0" fill="rgb(240,4,54)" rx="2" ry="2" />
<text text-anchor="" x="351.14" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (88 samples, 0.19%)</title><rect x="176.7" y="1445" width="2.3" height="15.0" fill="rgb(226,104,19)" rx="2" ry="2" />
<text text-anchor="" x="179.74" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (19 samples, 0.04%)</title><rect x="1129.1" y="1637" width="0.5" height="15.0" fill="rgb(243,1,37)" rx="2" ry="2" />
<text text-anchor="" x="1132.15" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (9 samples, 0.02%)</title><rect x="730.6" y="1429" width="0.2" height="15.0" fill="rgb(227,181,10)" rx="2" ry="2" />
<text text-anchor="" x="733.60" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (23 samples, 0.05%)</title><rect x="661.0" y="1509" width="0.5" height="15.0" fill="rgb(243,115,33)" rx="2" ry="2" />
<text text-anchor="" x="663.95" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>maybe_add_creds (12 samples, 0.03%)</title><rect x="71.5" y="1301" width="0.3" height="15.0" fill="rgb(220,108,9)" rx="2" ry="2" />
<text text-anchor="" x="74.47" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (92 samples, 0.20%)</title><rect x="1079.1" y="1173" width="2.4" height="15.0" fill="rgb(225,119,5)" rx="2" ry="2" />
<text text-anchor="" x="1082.10" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (33 samples, 0.07%)</title><rect x="1188.5" y="1621" width="0.9" height="15.0" fill="rgb(214,48,25)" rx="2" ry="2" />
<text text-anchor="" x="1191.51" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (6 samples, 0.01%)</title><rect x="365.7" y="1301" width="0.2" height="15.0" fill="rgb(210,14,45)" rx="2" ry="2" />
<text text-anchor="" x="368.75" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_list (46 samples, 0.10%)</title><rect x="810.9" y="1461" width="1.2" height="15.0" fill="rgb(238,151,37)" rx="2" ry="2" />
<text text-anchor="" x="813.88" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl (6 samples, 0.01%)</title><rect x="614.7" y="1541" width="0.1" height="15.0" fill="rgb(223,72,37)" rx="2" ry="2" />
<text text-anchor="" x="617.65" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="253.4" y="1157" width="0.1" height="15.0" fill="rgb(240,148,1)" rx="2" ry="2" />
<text text-anchor="" x="256.35" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="869" width="1.3" height="15.0" fill="rgb(216,195,23)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="879.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAlloc (15 samples, 0.03%)</title><rect x="722.1" y="1445" width="0.3" height="15.0" fill="rgb(236,102,9)" rx="2" ry="2" />
<text text-anchor="" x="725.06" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_pull_out (175 samples, 0.38%)</title><rect x="675.8" y="1493" width="4.5" height="15.0" fill="rgb(234,6,7)" rx="2" ry="2" />
<text text-anchor="" x="678.76" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (95 samples, 0.21%)</title><rect x="176.6" y="1493" width="2.5" height="15.0" fill="rgb(211,43,49)" rx="2" ry="2" />
<text text-anchor="" x="179.61" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (14 samples, 0.03%)</title><rect x="482.8" y="1077" width="0.3" height="15.0" fill="rgb(219,17,19)" rx="2" ry="2" />
<text text-anchor="" x="485.77" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (33 samples, 0.07%)</title><rect x="1018.4" y="1301" width="0.8" height="15.0" fill="rgb(208,85,23)" rx="2" ry="2" />
<text text-anchor="" x="1021.37" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="433.4" y="1477" width="0.1" height="15.0" fill="rgb(220,24,6)" rx="2" ry="2" />
<text text-anchor="" x="436.36" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (52 samples, 0.11%)</title><rect x="693.1" y="1285" width="1.3" height="15.0" fill="rgb(244,229,49)" rx="2" ry="2" />
<text text-anchor="" x="696.09" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (1,797 samples, 3.92%)</title><rect x="745.4" y="1461" width="46.2" height="15.0" fill="rgb(205,66,27)" rx="2" ry="2" />
<text text-anchor="" x="748.35" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >pool..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scanner_init (6 samples, 0.01%)</title><rect x="1009.8" y="1493" width="0.2" height="15.0" fill="rgb(253,158,0)" rx="2" ry="2" />
<text text-anchor="" x="1012.84" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (25 samples, 0.05%)</title><rect x="317.5" y="1493" width="0.7" height="15.0" fill="rgb(248,128,8)" rx="2" ry="2" />
<text text-anchor="" x="320.55" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (45 samples, 0.10%)</title><rect x="466.9" y="1173" width="1.2" height="15.0" fill="rgb(245,127,26)" rx="2" ry="2" />
<text text-anchor="" x="469.91" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_suspend_reading_from_frontend (6 samples, 0.01%)</title><rect x="633.2" y="1541" width="0.1" height="15.0" fill="rgb(244,131,49)" rx="2" ry="2" />
<text text-anchor="" x="636.19" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="1057.1" y="1493" width="0.1" height="15.0" fill="rgb(221,61,6)" rx="2" ry="2" />
<text text-anchor="" x="1060.12" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>downcase_truncate_identifier (9 samples, 0.02%)</title><rect x="986.5" y="1445" width="0.2" height="15.0" fill="rgb(227,225,12)" rx="2" ry="2" />
<text text-anchor="" x="989.47" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (13 samples, 0.03%)</title><rect x="415.3" y="1205" width="0.3" height="15.0" fill="rgb(213,102,6)" rx="2" ry="2" />
<text text-anchor="" x="418.29" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pattern_compare (18 samples, 0.04%)</title><rect x="712.8" y="1493" width="0.5" height="15.0" fill="rgb(230,198,48)" rx="2" ry="2" />
<text text-anchor="" x="715.83" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (4 samples, 0.01%)</title><rect x="12.9" y="1557" width="0.1" height="15.0" fill="rgb(238,227,39)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (12 samples, 0.03%)</title><rect x="82.4" y="1269" width="0.3" height="15.0" fill="rgb(239,189,22)" rx="2" ry="2" />
<text text-anchor="" x="85.39" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="405.7" y="1445" width="0.1" height="15.0" fill="rgb(207,153,20)" rx="2" ry="2" />
<text text-anchor="" x="408.67" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (7 samples, 0.02%)</title><rect x="98.4" y="1493" width="0.1" height="15.0" fill="rgb(242,7,11)" rx="2" ry="2" />
<text text-anchor="" x="101.36" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (102 samples, 0.22%)</title><rect x="411.6" y="1269" width="2.6" height="15.0" fill="rgb(228,35,34)" rx="2" ry="2" />
<text text-anchor="" x="414.59" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (7 samples, 0.02%)</title><rect x="182.4" y="1509" width="0.2" height="15.0" fill="rgb(214,101,28)" rx="2" ry="2" />
<text text-anchor="" x="185.45" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (9 samples, 0.02%)</title><rect x="757.0" y="1205" width="0.2" height="15.0" fill="rgb(208,140,48)" rx="2" ry="2" />
<text text-anchor="" x="760.00" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (6 samples, 0.01%)</title><rect x="394.3" y="1397" width="0.2" height="15.0" fill="rgb(240,80,25)" rx="2" ry="2" />
<text text-anchor="" x="397.34" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__indirect_thunk_start (5 samples, 0.01%)</title><rect x="733.1" y="1301" width="0.2" height="15.0" fill="rgb(222,139,11)" rx="2" ry="2" />
<text text-anchor="" x="736.14" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (6 samples, 0.01%)</title><rect x="546.4" y="1445" width="0.1" height="15.0" fill="rgb(222,81,27)" rx="2" ry="2" />
<text text-anchor="" x="549.37" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (60 samples, 0.13%)</title><rect x="10.7" y="1493" width="1.5" height="15.0" fill="rgb(248,23,27)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (5 samples, 0.01%)</title><rect x="811.9" y="1413" width="0.2" height="15.0" fill="rgb(238,181,1)" rx="2" ry="2" />
<text text-anchor="" x="814.94" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>recalc_sigpending_tsk (16 samples, 0.03%)</title><rect x="110.7" y="1397" width="0.4" height="15.0" fill="rgb(246,115,9)" rx="2" ry="2" />
<text text-anchor="" x="113.70" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_tail_cell (19 samples, 0.04%)</title><rect x="506.6" y="1493" width="0.5" height="15.0" fill="rgb(207,82,21)" rx="2" ry="2" />
<text text-anchor="" x="509.63" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>PgpoolMain (42,664 samples, 92.95%)</title><rect x="29.5" y="1605" width="1096.8" height="15.0" fill="rgb(247,113,37)" rx="2" ry="2" />
<text text-anchor="" x="32.46" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >PgpoolMain</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Execute (2,091 samples, 4.56%)</title><rect x="383.0" y="1525" width="53.7" height="15.0" fill="rgb(205,184,40)" rx="2" ry="2" />
<text text-anchor="" x="385.97" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Execute</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>function_call_walker (13 samples, 0.03%)</title><rect x="839.3" y="1429" width="0.3" height="15.0" fill="rgb(244,32,29)" rx="2" ry="2" />
<text text-anchor="" x="842.29" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_generic (477 samples, 1.04%)</title><rect x="245.6" y="1333" width="12.2" height="15.0" fill="rgb(206,40,23)" rx="2" ry="2" />
<text text-anchor="" x="248.56" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (445 samples, 0.97%)</title><rect x="731.4" y="1413" width="11.4" height="15.0" fill="rgb(228,62,53)" rx="2" ry="2" />
<text text-anchor="" x="734.37" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (7 samples, 0.02%)</title><rect x="159.8" y="1525" width="0.2" height="15.0" fill="rgb(253,47,5)" rx="2" ry="2" />
<text text-anchor="" x="162.83" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (14 samples, 0.03%)</title><rect x="731.5" y="1381" width="0.4" height="15.0" fill="rgb(240,183,28)" rx="2" ry="2" />
<text text-anchor="" x="734.55" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="127.9" y="1253" width="0.1" height="15.0" fill="rgb(252,153,34)" rx="2" ry="2" />
<text text-anchor="" x="130.87" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent (5 samples, 0.01%)</title><rect x="353.4" y="1477" width="0.1" height="15.0" fill="rgb(236,174,45)" rx="2" ry="2" />
<text text-anchor="" x="356.41" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (7 samples, 0.02%)</title><rect x="353.2" y="1477" width="0.2" height="15.0" fill="rgb(253,61,54)" rx="2" ry="2" />
<text text-anchor="" x="356.23" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (7 samples, 0.02%)</title><rect x="1184.9" y="1653" width="0.1" height="15.0" fill="rgb(219,35,52)" rx="2" ry="2" />
<text text-anchor="" x="1187.86" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (119 samples, 0.26%)</title><rect x="521.1" y="1525" width="3.0" height="15.0" fill="rgb(245,50,18)" rx="2" ry="2" />
<text text-anchor="" x="524.05" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (29 samples, 0.06%)</title><rect x="352.9" y="1493" width="0.8" height="15.0" fill="rgb(223,182,2)" rx="2" ry="2" />
<text text-anchor="" x="355.92" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_ps_display (61 samples, 0.13%)</title><rect x="135.9" y="1493" width="1.5" height="15.0" fill="rgb(232,115,53)" rx="2" ry="2" />
<text text-anchor="" x="138.87" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (19 samples, 0.04%)</title><rect x="790.8" y="1445" width="0.5" height="15.0" fill="rgb(237,146,22)" rx="2" ry="2" />
<text text-anchor="" x="793.78" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_sent_message (5 samples, 0.01%)</title><rect x="794.3" y="1493" width="0.1" height="15.0" fill="rgb(242,184,1)" rx="2" ry="2" />
<text text-anchor="" x="797.28" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (6 samples, 0.01%)</title><rect x="1037.8" y="1509" width="0.1" height="15.0" fill="rgb(250,123,16)" rx="2" ry="2" />
<text text-anchor="" x="1040.78" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (9 samples, 0.02%)</title><rect x="395.7" y="1317" width="0.2" height="15.0" fill="rgb(244,90,3)" rx="2" ry="2" />
<text text-anchor="" x="398.67" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (20 samples, 0.04%)</title><rect x="444.1" y="1381" width="0.5" height="15.0" fill="rgb(214,0,4)" rx="2" ry="2" />
<text text-anchor="" x="447.08" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_all_qs (5 samples, 0.01%)</title><rect x="416.4" y="1285" width="0.1" height="15.0" fill="rgb(235,177,38)" rx="2" ry="2" />
<text text-anchor="" x="419.39" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (483 samples, 1.05%)</title><rect x="1070.9" y="1317" width="12.5" height="15.0" fill="rgb(250,153,3)" rx="2" ry="2" />
<text text-anchor="" x="1073.95" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sigsetjmp at plt (4 samples, 0.01%)</title><rect x="704.5" y="1493" width="0.1" height="15.0" fill="rgb(254,181,23)" rx="2" ry="2" />
<text text-anchor="" x="707.48" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_to_thread_stack (8 samples, 0.02%)</title><rect x="1031.7" y="1493" width="0.2" height="15.0" fill="rgb(233,140,8)" rx="2" ry="2" />
<text text-anchor="" x="1034.74" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (31 samples, 0.07%)</title><rect x="739.9" y="1205" width="0.8" height="15.0" fill="rgb(246,3,47)" rx="2" ry="2" />
<text text-anchor="" x="742.90" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_load_avg_se.isra.38 (11 samples, 0.02%)</title><rect x="578.2" y="1317" width="0.3" height="15.0" fill="rgb(221,60,54)" rx="2" ry="2" />
<text text-anchor="" x="581.23" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAllocZeroAligned (63 samples, 0.14%)</title><rect x="996.2" y="1445" width="1.6" height="15.0" fill="rgb(242,197,18)" rx="2" ry="2" />
<text text-anchor="" x="999.19" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (15 samples, 0.03%)</title><rect x="163.2" y="1509" width="0.4" height="15.0" fill="rgb(247,182,17)" rx="2" ry="2" />
<text text-anchor="" x="166.17" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="307.6" y="1445" width="0.1" height="15.0" fill="rgb(231,213,15)" rx="2" ry="2" />
<text text-anchor="" x="310.62" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_kind_from_backend (5 samples, 0.01%)</title><rect x="1184.9" y="1621" width="0.1" height="15.0" fill="rgb(215,83,7)" rx="2" ry="2" />
<text text-anchor="" x="1187.86" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reweight_entity (4 samples, 0.01%)</title><rect x="563.1" y="1301" width="0.1" height="15.0" fill="rgb(225,136,24)" rx="2" ry="2" />
<text text-anchor="" x="566.11" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="126.7" y="1237" width="0.1" height="15.0" fill="rgb(211,229,6)" rx="2" ry="2" />
<text text-anchor="" x="129.74" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (7 samples, 0.02%)</title><rect x="129.6" y="1221" width="0.2" height="15.0" fill="rgb(249,220,36)" rx="2" ry="2" />
<text text-anchor="" x="132.65" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_ignore_till_sync (7 samples, 0.02%)</title><rect x="159.6" y="1525" width="0.2" height="15.0" fill="rgb(210,10,43)" rx="2" ry="2" />
<text text-anchor="" x="162.65" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (1,219 samples, 2.66%)</title><rect x="554.1" y="1397" width="31.3" height="15.0" fill="rgb(240,139,4)" rx="2" ry="2" />
<text text-anchor="" x="557.06" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_wait_queue (12 samples, 0.03%)</title><rect x="1047.4" y="1381" width="0.4" height="15.0" fill="rgb(233,217,38)" rx="2" ry="2" />
<text text-anchor="" x="1050.45" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1,592 samples, 3.47%)</title><rect x="748.4" y="1381" width="40.9" height="15.0" fill="rgb(206,185,41)" rx="2" ry="2" />
<text text-anchor="" x="751.36" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >vfs..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (228 samples, 0.50%)</title><rect x="682.4" y="1477" width="5.9" height="15.0" fill="rgb(249,200,10)" rx="2" ry="2" />
<text text-anchor="" x="685.45" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (1,246 samples, 2.71%)</title><rect x="553.4" y="1429" width="32.0" height="15.0" fill="rgb(220,175,13)" rx="2" ry="2" />
<text text-anchor="" x="556.37" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree at GLIBC_2.2.5 (6 samples, 0.01%)</title><rect x="680.0" y="1445" width="0.1" height="15.0" fill="rgb(231,175,42)" rx="2" ry="2" />
<text text-anchor="" x="682.98" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (10 samples, 0.02%)</title><rect x="177.5" y="1269" width="0.3" height="15.0" fill="rgb(208,80,2)" rx="2" ry="2" />
<text text-anchor="" x="180.51" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (10 samples, 0.02%)</title><rect x="487.2" y="1141" width="0.2" height="15.0" fill="rgb(254,195,39)" rx="2" ry="2" />
<text text-anchor="" x="490.17" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_head (22 samples, 0.05%)</title><rect x="889.5" y="1413" width="0.5" height="15.0" fill="rgb(250,154,2)" rx="2" ry="2" />
<text text-anchor="" x="892.47" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (44 samples, 0.10%)</title><rect x="626.9" y="1509" width="1.1" height="15.0" fill="rgb(213,95,53)" rx="2" ry="2" />
<text text-anchor="" x="629.92" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl (15 samples, 0.03%)</title><rect x="1119.5" y="1525" width="0.4" height="15.0" fill="rgb(231,222,0)" rx="2" ry="2" />
<text text-anchor="" x="1122.53" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (5 samples, 0.01%)</title><rect x="324.4" y="1301" width="0.1" height="15.0" fill="rgb(253,149,41)" rx="2" ry="2" />
<text text-anchor="" x="327.38" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (35 samples, 0.08%)</title><rect x="765.3" y="1141" width="0.9" height="15.0" fill="rgb(223,181,23)" rx="2" ry="2" />
<text text-anchor="" x="768.30" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (79 samples, 0.17%)</title><rect x="739.3" y="1253" width="2.0" height="15.0" fill="rgb(205,60,38)" rx="2" ry="2" />
<text text-anchor="" x="742.31" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (145 samples, 0.32%)</title><rect x="82.7" y="1285" width="3.7" height="15.0" fill="rgb(251,190,1)" rx="2" ry="2" />
<text text-anchor="" x="85.70" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (8 samples, 0.02%)</title><rect x="686.5" y="1253" width="0.2" height="15.0" fill="rgb(236,87,25)" rx="2" ry="2" />
<text text-anchor="" x="689.51" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stack_object (4 samples, 0.01%)</title><rect x="1050.1" y="1397" width="0.2" height="15.0" fill="rgb(217,176,49)" rx="2" ry="2" />
<text text-anchor="" x="1053.15" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (131 samples, 0.29%)</title><rect x="624.7" y="1541" width="3.3" height="15.0" fill="rgb(219,104,26)" rx="2" ry="2" />
<text text-anchor="" x="627.68" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (4 samples, 0.01%)</title><rect x="339.1" y="1461" width="0.1" height="15.0" fill="rgb(245,48,25)" rx="2" ry="2" />
<text text-anchor="" x="342.14" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (70 samples, 0.15%)</title><rect x="280.6" y="1253" width="1.8" height="15.0" fill="rgb(232,10,21)" rx="2" ry="2" />
<text text-anchor="" x="283.55" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (15 samples, 0.03%)</title><rect x="687.9" y="1461" width="0.4" height="15.0" fill="rgb(215,142,11)" rx="2" ry="2" />
<text text-anchor="" x="690.92" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (18 samples, 0.04%)</title><rect x="893.8" y="1349" width="0.5" height="15.0" fill="rgb(211,223,47)" rx="2" ry="2" />
<text text-anchor="" x="896.79" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (8 samples, 0.02%)</title><rect x="687.6" y="1365" width="0.2" height="15.0" fill="rgb(222,105,25)" rx="2" ry="2" />
<text text-anchor="" x="690.56" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_backend_cache_empty (58 samples, 0.13%)</title><rect x="620.8" y="1525" width="1.5" height="15.0" fill="rgb(214,214,46)" rx="2" ry="2" />
<text text-anchor="" x="623.82" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (10 samples, 0.02%)</title><rect x="1057.5" y="1477" width="0.2" height="15.0" fill="rgb(215,13,29)" rx="2" ry="2" />
<text text-anchor="" x="1060.47" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (190 samples, 0.41%)</title><rect x="755.5" y="1253" width="4.9" height="15.0" fill="rgb(207,119,35)" rx="2" ry="2" />
<text text-anchor="" x="758.53" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (45 samples, 0.10%)</title><rect x="88.5" y="1429" width="1.2" height="15.0" fill="rgb(212,116,14)" rx="2" ry="2" />
<text text-anchor="" x="91.51" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (22 samples, 0.05%)</title><rect x="476.9" y="1109" width="0.6" height="15.0" fill="rgb(227,36,8)" rx="2" ry="2" />
<text text-anchor="" x="479.94" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_new_mm_cr3 (7 samples, 0.02%)</title><rect x="1146.7" y="1477" width="0.2" height="15.0" fill="rgb(237,147,51)" rx="2" ry="2" />
<text text-anchor="" x="1149.68" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_fd (8 samples, 0.02%)</title><rect x="262.4" y="1493" width="0.2" height="15.0" fill="rgb(241,101,4)" rx="2" ry="2" />
<text text-anchor="" x="265.43" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iter (92 samples, 0.20%)</title><rect x="452.9" y="1317" width="2.4" height="15.0" fill="rgb(236,105,40)" rx="2" ry="2" />
<text text-anchor="" x="455.92" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (14 samples, 0.03%)</title><rect x="282.4" y="1253" width="0.3" height="15.0" fill="rgb(248,214,13)" rx="2" ry="2" />
<text text-anchor="" x="285.35" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (5 samples, 0.01%)</title><rect x="356.0" y="1317" width="0.1" height="15.0" fill="rgb(215,112,44)" rx="2" ry="2" />
<text text-anchor="" x="358.95" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (47 samples, 0.10%)</title><rect x="418.0" y="1445" width="1.2" height="15.0" fill="rgb(224,198,43)" rx="2" ry="2" />
<text text-anchor="" x="420.99" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (63 samples, 0.14%)</title><rect x="128.5" y="1333" width="1.7" height="15.0" fill="rgb(240,129,49)" rx="2" ry="2" />
<text text-anchor="" x="131.54" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_task_cpu (9 samples, 0.02%)</title><rect x="473.6" y="1173" width="0.2" height="15.0" fill="rgb(253,160,31)" rx="2" ry="2" />
<text text-anchor="" x="476.57" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (23 samples, 0.05%)</title><rect x="455.3" y="1317" width="0.6" height="15.0" fill="rgb(211,227,39)" rx="2" ry="2" />
<text text-anchor="" x="458.34" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (1,059 samples, 2.31%)</title><rect x="462.8" y="1301" width="27.3" height="15.0" fill="rgb(214,213,25)" rx="2" ry="2" />
<text text-anchor="" x="465.85" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.43 (65 samples, 0.14%)</title><rect x="457.2" y="1269" width="1.7" height="15.0" fill="rgb(236,44,43)" rx="2" ry="2" />
<text text-anchor="" x="460.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (16 samples, 0.03%)</title><rect x="231.0" y="1493" width="0.4" height="15.0" fill="rgb(222,187,34)" rx="2" ry="2" />
<text text-anchor="" x="233.99" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (4 samples, 0.01%)</title><rect x="10.6" y="1589" width="0.1" height="15.0" fill="rgb(236,126,36)" rx="2" ry="2" />
<text text-anchor="" x="13.57" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (17 samples, 0.04%)</title><rect x="308.2" y="1445" width="0.4" height="15.0" fill="rgb(231,101,42)" rx="2" ry="2" />
<text text-anchor="" x="311.19" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlen at plt (4 samples, 0.01%)</title><rect x="348.6" y="1509" width="0.1" height="15.0" fill="rgb(207,214,47)" rx="2" ry="2" />
<text text-anchor="" x="351.63" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (512 samples, 1.12%)</title><rect x="406.4" y="1477" width="13.2" height="15.0" fill="rgb(212,58,14)" rx="2" ry="2" />
<text text-anchor="" x="409.44" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_doing_extended_query_message (38 samples, 0.08%)</title><rect x="514.0" y="1525" width="1.0" height="15.0" fill="rgb(224,85,54)" rx="2" ry="2" />
<text text-anchor="" x="516.98" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (7 samples, 0.02%)</title><rect x="789.3" y="1413" width="0.2" height="15.0" fill="rgb(243,48,4)" rx="2" ry="2" />
<text text-anchor="" x="792.29" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (101 samples, 0.22%)</title><rect x="1090.5" y="1413" width="2.6" height="15.0" fill="rgb(217,100,52)" rx="2" ry="2" />
<text text-anchor="" x="1093.54" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (146 samples, 0.32%)</title><rect x="359.5" y="1301" width="3.8" height="15.0" fill="rgb(216,25,0)" rx="2" ry="2" />
<text text-anchor="" x="362.53" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (6 samples, 0.01%)</title><rect x="129.5" y="1221" width="0.1" height="15.0" fill="rgb(209,190,8)" rx="2" ry="2" />
<text text-anchor="" x="132.49" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="415.1" y="1237" width="0.1" height="15.0" fill="rgb(246,171,16)" rx="2" ry="2" />
<text text-anchor="" x="418.06" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (578 samples, 1.26%)</title><rect x="1100.2" y="1477" width="14.9" height="15.0" fill="rgb(237,74,52)" rx="2" ry="2" />
<text text-anchor="" x="1103.23" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (13 samples, 0.03%)</title><rect x="314.4" y="1477" width="0.3" height="15.0" fill="rgb(252,173,52)" rx="2" ry="2" />
<text text-anchor="" x="317.36" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (7 samples, 0.02%)</title><rect x="746.8" y="1365" width="0.1" height="15.0" fill="rgb(225,111,6)" rx="2" ry="2" />
<text text-anchor="" x="749.77" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (19 samples, 0.04%)</title><rect x="362.8" y="1285" width="0.5" height="15.0" fill="rgb(244,79,11)" rx="2" ry="2" />
<text text-anchor="" x="365.79" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1061" width="1.4" height="15.0" fill="rgb(218,53,2)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_select_query (8 samples, 0.02%)</title><rect x="92.1" y="1509" width="0.2" height="15.0" fill="rgb(207,55,34)" rx="2" ry="2" />
<text text-anchor="" x="95.11" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (4 samples, 0.01%)</title><rect x="670.8" y="1477" width="0.1" height="15.0" fill="rgb(243,166,22)" rx="2" ry="2" />
<text text-anchor="" x="673.80" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (10 samples, 0.02%)</title><rect x="1046.8" y="1397" width="0.3" height="15.0" fill="rgb(244,104,49)" rx="2" ry="2" />
<text text-anchor="" x="1049.83" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (19 samples, 0.04%)</title><rect x="329.2" y="1173" width="0.5" height="15.0" fill="rgb(212,39,46)" rx="2" ry="2" />
<text text-anchor="" x="332.22" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl (6 samples, 0.01%)</title><rect x="725.7" y="1477" width="0.1" height="15.0" fill="rgb(240,117,54)" rx="2" ry="2" />
<text text-anchor="" x="728.69" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (6 samples, 0.01%)</title><rect x="108.7" y="1445" width="0.1" height="15.0" fill="rgb(218,138,32)" rx="2" ry="2" />
<text text-anchor="" x="111.67" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (165 samples, 0.36%)</title><rect x="250.0" y="1269" width="4.3" height="15.0" fill="rgb(234,159,21)" rx="2" ry="2" />
<text text-anchor="" x="253.01" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (57 samples, 0.12%)</title><rect x="401.2" y="1269" width="1.5" height="15.0" fill="rgb(247,169,12)" rx="2" ry="2" />
<text text-anchor="" x="404.20" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (294 samples, 0.64%)</title><rect x="594.3" y="1429" width="7.6" height="15.0" fill="rgb(223,69,27)" rx="2" ry="2" />
<text text-anchor="" x="597.32" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (53 samples, 0.12%)</title><rect x="155.4" y="1525" width="1.3" height="15.0" fill="rgb(243,102,3)" rx="2" ry="2" />
<text text-anchor="" x="158.35" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (8 samples, 0.02%)</title><rect x="357.2" y="1301" width="0.2" height="15.0" fill="rgb(221,15,43)" rx="2" ry="2" />
<text text-anchor="" x="360.19" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (410 samples, 0.89%)</title><rect x="355.5" y="1365" width="10.5" height="15.0" fill="rgb(244,18,26)" rx="2" ry="2" />
<text text-anchor="" x="358.46" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (103 samples, 0.22%)</title><rect x="1028.8" y="1413" width="2.7" height="15.0" fill="rgb(213,34,47)" rx="2" ry="2" />
<text text-anchor="" x="1031.81" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (4 samples, 0.01%)</title><rect x="282.2" y="1237" width="0.2" height="15.0" fill="rgb(214,68,44)" rx="2" ry="2" />
<text text-anchor="" x="285.25" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (7 samples, 0.02%)</title><rect x="746.8" y="1397" width="0.1" height="15.0" fill="rgb(212,161,18)" rx="2" ry="2" />
<text text-anchor="" x="749.77" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (53 samples, 0.12%)</title><rect x="720.6" y="1477" width="1.4" height="15.0" fill="rgb(217,144,0)" rx="2" ry="2" />
<text text-anchor="" x="723.62" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (17 samples, 0.04%)</title><rect x="448.5" y="1333" width="0.4" height="15.0" fill="rgb(237,143,12)" rx="2" ry="2" />
<text text-anchor="" x="451.48" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>migrate_task_rq_fair (11 samples, 0.02%)</title><rect x="773.0" y="1125" width="0.3" height="15.0" fill="rgb(217,221,12)" rx="2" ry="2" />
<text text-anchor="" x="775.99" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>system_catalog_walker (11 samples, 0.02%)</title><rect x="855.9" y="1381" width="0.3" height="15.0" fill="rgb(211,2,31)" rx="2" ry="2" />
<text text-anchor="" x="858.95" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmpxchg_double_slab.isra.61 (13 samples, 0.03%)</title><rect x="249.4" y="1221" width="0.3" height="15.0" fill="rgb(216,40,1)" rx="2" ry="2" />
<text text-anchor="" x="252.39" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (30 samples, 0.07%)</title><rect x="1025.6" y="1285" width="0.7" height="15.0" fill="rgb(213,21,3)" rx="2" ry="2" />
<text text-anchor="" x="1028.57" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (199 samples, 0.43%)</title><rect x="1077.3" y="1237" width="5.1" height="15.0" fill="rgb(228,10,18)" rx="2" ry="2" />
<text text-anchor="" x="1080.27" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (17 samples, 0.04%)</title><rect x="1138.2" y="1605" width="0.5" height="15.0" fill="rgb(234,180,24)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_sse2_unaligned (191 samples, 0.42%)</title><rect x="974.3" y="1429" width="4.9" height="15.0" fill="rgb(231,127,36)" rx="2" ry="2" />
<text text-anchor="" x="977.34" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (4 samples, 0.01%)</title><rect x="391.4" y="1477" width="0.1" height="15.0" fill="rgb(230,49,24)" rx="2" ry="2" />
<text text-anchor="" x="394.35" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (18 samples, 0.04%)</title><rect x="232.6" y="1365" width="0.4" height="15.0" fill="rgb(240,188,31)" rx="2" ry="2" />
<text text-anchor="" x="235.55" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_major_version (9 samples, 0.02%)</title><rect x="1120.7" y="1525" width="0.2" height="15.0" fill="rgb(231,75,5)" rx="2" ry="2" />
<text text-anchor="" x="1123.69" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_clear_node_to_be_sent (5 samples, 0.01%)</title><rect x="836.3" y="1477" width="0.1" height="15.0" fill="rgb(228,209,48)" rx="2" ry="2" />
<text text-anchor="" x="839.28" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_ssl_pending (39 samples, 0.08%)</title><rect x="629.8" y="1541" width="1.0" height="15.0" fill="rgb(251,224,9)" rx="2" ry="2" />
<text text-anchor="" x="632.80" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_child (42,663 samples, 92.95%)</title><rect x="29.5" y="1573" width="1096.7" height="15.0" fill="rgb(222,93,12)" rx="2" ry="2" />
<text text-anchor="" x="32.46" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_child</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_extended_protocol_message (654 samples, 1.42%)</title><rect x="318.4" y="1493" width="16.8" height="15.0" fill="rgb(228,12,37)" rx="2" ry="2" />
<text text-anchor="" x="321.37" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_stacklen (4 samples, 0.01%)</title><rect x="1125.4" y="1557" width="0.1" height="15.0" fill="rgb(236,101,14)" rx="2" ry="2" />
<text text-anchor="" x="1128.45" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="347.6" y="1493" width="0.1" height="15.0" fill="rgb(215,97,7)" rx="2" ry="2" />
<text text-anchor="" x="350.60" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (5 samples, 0.01%)</title><rect x="93.6" y="1493" width="0.1" height="15.0" fill="rgb(226,142,43)" rx="2" ry="2" />
<text text-anchor="" x="96.60" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (70 samples, 0.15%)</title><rect x="391.8" y="1477" width="1.8" height="15.0" fill="rgb(241,101,46)" rx="2" ry="2" />
<text text-anchor="" x="394.84" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (21 samples, 0.05%)</title><rect x="670.2" y="1493" width="0.5" height="15.0" fill="rgb(216,42,47)" rx="2" ry="2" />
<text text-anchor="" x="673.18" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (8 samples, 0.02%)</title><rect x="598.6" y="1397" width="0.2" height="15.0" fill="rgb(233,41,33)" rx="2" ry="2" />
<text text-anchor="" x="601.59" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_extended_send_and_wait (112 samples, 0.24%)</title><rect x="1130.0" y="1637" width="2.9" height="15.0" fill="rgb(209,158,24)" rx="2" ry="2" />
<text text-anchor="" x="1133.00" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (16 samples, 0.03%)</title><rect x="1028.4" y="1413" width="0.4" height="15.0" fill="rgb(227,133,17)" rx="2" ry="2" />
<text text-anchor="" x="1031.40" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (678 samples, 1.48%)</title><rect x="1014.0" y="1461" width="17.5" height="15.0" fill="rgb(215,25,44)" rx="2" ry="2" />
<text text-anchor="" x="1017.03" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (9 samples, 0.02%)</title><rect x="31.3" y="1557" width="0.2" height="15.0" fill="rgb(233,54,37)" rx="2" ry="2" />
<text text-anchor="" x="34.26" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (40 samples, 0.09%)</title><rect x="1099.2" y="1477" width="1.0" height="15.0" fill="rgb(250,151,2)" rx="2" ry="2" />
<text text-anchor="" x="1102.20" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (890 samples, 1.94%)</title><rect x="762.8" y="1221" width="22.9" height="15.0" fill="rgb(241,66,48)" rx="2" ry="2" />
<text text-anchor="" x="765.83" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (54 samples, 0.12%)</title><rect x="10.7" y="1461" width="1.4" height="15.0" fill="rgb(232,14,33)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_sent_message (20 samples, 0.04%)</title><rect x="335.2" y="1509" width="0.5" height="15.0" fill="rgb(238,70,18)" rx="2" ry="2" />
<text text-anchor="" x="338.21" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (12 samples, 0.03%)</title><rect x="661.5" y="1509" width="0.4" height="15.0" fill="rgb(235,83,14)" rx="2" ry="2" />
<text text-anchor="" x="664.55" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (9 samples, 0.02%)</title><rect x="13.4" y="1477" width="0.2" height="15.0" fill="rgb(233,122,18)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (950 samples, 2.07%)</title><rect x="1065.9" y="1413" width="24.4" height="15.0" fill="rgb(246,10,11)" rx="2" ry="2" />
<text text-anchor="" x="1068.86" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (22 samples, 0.05%)</title><rect x="92.7" y="1509" width="0.5" height="15.0" fill="rgb(226,100,22)" rx="2" ry="2" />
<text text-anchor="" x="95.65" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI_strtoll (28 samples, 0.06%)</title><rect x="944.8" y="1445" width="0.8" height="15.0" fill="rgb(238,135,44)" rx="2" ry="2" />
<text text-anchor="" x="947.85" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAllocZeroAligned (46 samples, 0.10%)</title><rect x="991.1" y="1445" width="1.2" height="15.0" fill="rgb(228,200,41)" rx="2" ry="2" />
<text text-anchor="" x="994.07" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.43 (34 samples, 0.07%)</title><rect x="736.3" y="1237" width="0.9" height="15.0" fill="rgb(225,167,2)" rx="2" ry="2" />
<text text-anchor="" x="739.33" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (441 samples, 0.96%)</title><rect x="731.5" y="1397" width="11.3" height="15.0" fill="rgb(214,184,41)" rx="2" ry="2" />
<text text-anchor="" x="734.47" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detect_serialization_error (2,262 samples, 4.93%)</title><rect x="1061.1" y="1525" width="58.1" height="15.0" fill="rgb(213,18,20)" rx="2" ry="2" />
<text text-anchor="" x="1064.07" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >detect..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_set_previous_message (7 samples, 0.02%)</title><rect x="161.4" y="1525" width="0.1" height="15.0" fill="rgb(231,150,36)" rx="2" ry="2" />
<text text-anchor="" x="164.37" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copyin (4 samples, 0.01%)</title><rect x="754.8" y="1269" width="0.1" height="15.0" fill="rgb(216,158,2)" rx="2" ry="2" />
<text text-anchor="" x="757.76" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (7 samples, 0.02%)</title><rect x="87.2" y="1349" width="0.2" height="15.0" fill="rgb(221,155,41)" rx="2" ry="2" />
<text text-anchor="" x="90.20" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>compare (14 samples, 0.03%)</title><rect x="1184.3" y="1653" width="0.3" height="15.0" fill="rgb(225,22,54)" rx="2" ry="2" />
<text text-anchor="" x="1187.27" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (8 samples, 0.02%)</title><rect x="1051.0" y="1461" width="0.2" height="15.0" fill="rgb(216,3,9)" rx="2" ry="2" />
<text text-anchor="" x="1054.00" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (20 samples, 0.04%)</title><rect x="357.8" y="1285" width="0.5" height="15.0" fill="rgb(205,126,41)" rx="2" ry="2" />
<text text-anchor="" x="360.80" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProcessFrontendResponse (10 samples, 0.02%)</title><rect x="30.1" y="1557" width="0.3" height="15.0" fill="rgb(223,45,39)" rx="2" ry="2" />
<text text-anchor="" x="33.13" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reweight_entity (31 samples, 0.07%)</title><rect x="482.4" y="1109" width="0.8" height="15.0" fill="rgb(209,18,46)" rx="2" ry="2" />
<text text-anchor="" x="485.41" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>@plt (7 samples, 0.02%)</title><rect x="17.9" y="1621" width="0.2" height="15.0" fill="rgb(213,82,27)" rx="2" ry="2" />
<text text-anchor="" x="20.92" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (123 samples, 0.27%)</title><rect x="150.6" y="1509" width="3.2" height="15.0" fill="rgb(218,223,22)" rx="2" ry="2" />
<text text-anchor="" x="153.65" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read at plt (4 samples, 0.01%)</title><rect x="1118.9" y="1493" width="0.1" height="15.0" fill="rgb(209,6,53)" rx="2" ry="2" />
<text text-anchor="" x="1121.89" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (37 samples, 0.08%)</title><rect x="134.6" y="1493" width="0.9" height="15.0" fill="rgb(217,72,32)" rx="2" ry="2" />
<text text-anchor="" x="137.56" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="1024.5" y="1317" width="0.1" height="15.0" fill="rgb(214,46,3)" rx="2" ry="2" />
<text text-anchor="" x="1027.54" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (26 samples, 0.06%)</title><rect x="154.6" y="1525" width="0.7" height="15.0" fill="rgb(210,115,18)" rx="2" ry="2" />
<text text-anchor="" x="157.58" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_wait_queue (118 samples, 0.26%)</title><rect x="598.8" y="1397" width="3.0" height="15.0" fill="rgb(227,156,51)" rx="2" ry="2" />
<text text-anchor="" x="601.79" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (9 samples, 0.02%)</title><rect x="657.6" y="1461" width="0.2" height="15.0" fill="rgb(212,160,45)" rx="2" ry="2" />
<text text-anchor="" x="660.59" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (10 samples, 0.02%)</title><rect x="487.2" y="1125" width="0.2" height="15.0" fill="rgb(220,21,3)" rx="2" ry="2" />
<text text-anchor="" x="490.17" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (7 samples, 0.02%)</title><rect x="223.4" y="1429" width="0.2" height="15.0" fill="rgb(233,67,51)" rx="2" ry="2" />
<text text-anchor="" x="226.40" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (11 samples, 0.02%)</title><rect x="148.8" y="1493" width="0.3" height="15.0" fill="rgb(206,10,51)" rx="2" ry="2" />
<text text-anchor="" x="151.80" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (7 samples, 0.02%)</title><rect x="697.5" y="1461" width="0.1" height="15.0" fill="rgb(248,87,24)" rx="2" ry="2" />
<text text-anchor="" x="700.46" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_idle_core (14 samples, 0.03%)</title><rect x="285.2" y="1285" width="0.4" height="15.0" fill="rgb(241,77,53)" rx="2" ry="2" />
<text text-anchor="" x="288.23" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.01%)</title><rect x="1064.5" y="1413" width="0.1" height="15.0" fill="rgb(245,88,33)" rx="2" ry="2" />
<text text-anchor="" x="1067.47" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (17 samples, 0.04%)</title><rect x="684.2" y="1269" width="0.4" height="15.0" fill="rgb(215,118,40)" rx="2" ry="2" />
<text text-anchor="" x="687.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strncpy_sse2_unaligned (114 samples, 0.25%)</title><rect x="706.7" y="1493" width="2.9" height="15.0" fill="rgb(217,16,11)" rx="2" ry="2" />
<text text-anchor="" x="709.66" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (11 samples, 0.02%)</title><rect x="832.2" y="1461" width="0.3" height="15.0" fill="rgb(233,112,50)" rx="2" ry="2" />
<text text-anchor="" x="835.22" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (30 samples, 0.07%)</title><rect x="129.1" y="1253" width="0.7" height="15.0" fill="rgb(228,80,16)" rx="2" ry="2" />
<text text-anchor="" x="132.05" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (28 samples, 0.06%)</title><rect x="739.9" y="1189" width="0.7" height="15.0" fill="rgb(220,131,4)" rx="2" ry="2" />
<text text-anchor="" x="742.93" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (171 samples, 0.37%)</title><rect x="563.2" y="1317" width="4.4" height="15.0" fill="rgb(228,144,15)" rx="2" ry="2" />
<text text-anchor="" x="566.21" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (13 samples, 0.03%)</title><rect x="346.7" y="1477" width="0.4" height="15.0" fill="rgb(253,83,35)" rx="2" ry="2" />
<text text-anchor="" x="349.72" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strncat_sse2_unaligned (50 samples, 0.11%)</title><rect x="870.7" y="1397" width="1.3" height="15.0" fill="rgb(217,109,32)" rx="2" ry="2" />
<text text-anchor="" x="873.71" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (4 samples, 0.01%)</title><rect x="178.9" y="1397" width="0.1" height="15.0" fill="rgb(216,186,28)" rx="2" ry="2" />
<text text-anchor="" x="181.88" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (24 samples, 0.05%)</title><rect x="364.2" y="1205" width="0.6" height="15.0" fill="rgb(209,127,12)" rx="2" ry="2" />
<text text-anchor="" x="367.15" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__indirect_thunk_start (7 samples, 0.02%)</title><rect x="448.3" y="1333" width="0.2" height="15.0" fill="rgb(209,134,16)" rx="2" ry="2" />
<text text-anchor="" x="451.30" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (64 samples, 0.14%)</title><rect x="10.7" y="1589" width="1.6" height="15.0" fill="rgb(211,167,40)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lappend (20 samples, 0.04%)</title><rect x="506.6" y="1509" width="0.5" height="15.0" fill="rgb(239,174,45)" rx="2" ry="2" />
<text text-anchor="" x="509.60" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>make_table_name_from_rangevar (8 samples, 0.02%)</title><rect x="869.9" y="1413" width="0.2" height="15.0" fill="rgb(237,6,37)" rx="2" ry="2" />
<text text-anchor="" x="872.86" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="1132.3" y="1589" width="0.2" height="15.0" fill="rgb(253,5,4)" rx="2" ry="2" />
<text text-anchor="" x="1135.31" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_add (164 samples, 0.36%)</title><rect x="336.0" y="1509" width="4.2" height="15.0" fill="rgb(242,118,14)" rx="2" ry="2" />
<text text-anchor="" x="339.00" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (50 samples, 0.11%)</title><rect x="392.2" y="1461" width="1.3" height="15.0" fill="rgb(216,139,54)" rx="2" ry="2" />
<text text-anchor="" x="395.18" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_state (4 samples, 0.01%)</title><rect x="163.8" y="1525" width="0.1" height="15.0" fill="rgb(246,11,20)" rx="2" ry="2" />
<text text-anchor="" x="166.81" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="384.7" y="1509" width="0.1" height="15.0" fill="rgb(225,57,30)" rx="2" ry="2" />
<text text-anchor="" x="387.75" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (41 samples, 0.09%)</title><rect x="993.0" y="1397" width="1.1" height="15.0" fill="rgb(228,72,5)" rx="2" ry="2" />
<text text-anchor="" x="996.00" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (64 samples, 0.14%)</title><rect x="10.7" y="1541" width="1.6" height="15.0" fill="rgb(228,128,50)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (5 samples, 0.01%)</title><rect x="1034.6" y="1493" width="0.1" height="15.0" fill="rgb(230,13,48)" rx="2" ry="2" />
<text text-anchor="" x="1037.59" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmpxchg_double_slab.isra.61 (13 samples, 0.03%)</title><rect x="1072.4" y="1253" width="0.4" height="15.0" fill="rgb(216,55,39)" rx="2" ry="2" />
<text text-anchor="" x="1075.44" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (30 samples, 0.07%)</title><rect x="467.3" y="1157" width="0.8" height="15.0" fill="rgb(232,221,11)" rx="2" ry="2" />
<text text-anchor="" x="470.29" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (125 samples, 0.27%)</title><rect x="470.4" y="1157" width="3.2" height="15.0" fill="rgb(219,225,10)" rx="2" ry="2" />
<text text-anchor="" x="473.35" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>downcase_identifier (166 samples, 0.36%)</title><rect x="980.7" y="1413" width="4.2" height="15.0" fill="rgb(216,116,0)" rx="2" ry="2" />
<text text-anchor="" x="983.66" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="645" width="1.3" height="15.0" fill="rgb(225,4,50)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_select_query (20 samples, 0.04%)</title><rect x="831.0" y="1477" width="0.5" height="15.0" fill="rgb(248,222,45)" rx="2" ry="2" />
<text text-anchor="" x="834.01" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yyalloc (12 samples, 0.03%)</title><rect x="1005.9" y="1461" width="0.3" height="15.0" fill="rgb(228,204,48)" rx="2" ry="2" />
<text text-anchor="" x="1008.88" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (4 samples, 0.01%)</title><rect x="367.1" y="1429" width="0.1" height="15.0" fill="rgb(224,169,52)" rx="2" ry="2" />
<text text-anchor="" x="370.11" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="853" width="1.3" height="15.0" fill="rgb(210,27,8)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="863.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (104 samples, 0.23%)</title><rect x="736.1" y="1253" width="2.7" height="15.0" fill="rgb(226,165,14)" rx="2" ry="2" />
<text text-anchor="" x="739.10" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (10 samples, 0.02%)</title><rect x="884.6" y="1477" width="0.2" height="15.0" fill="rgb(244,218,14)" rx="2" ry="2" />
<text text-anchor="" x="887.56" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_function_call (5 samples, 0.01%)</title><rect x="794.6" y="1493" width="0.1" height="15.0" fill="rgb(208,192,52)" rx="2" ry="2" />
<text text-anchor="" x="797.56" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (99 samples, 0.22%)</title><rect x="226.9" y="1477" width="2.5" height="15.0" fill="rgb(250,132,34)" rx="2" ry="2" />
<text text-anchor="" x="229.87" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_init_query_context (6 samples, 0.01%)</title><rect x="1037.9" y="1509" width="0.2" height="15.0" fill="rgb(231,219,17)" rx="2" ry="2" />
<text text-anchor="" x="1040.94" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (30 samples, 0.07%)</title><rect x="1097.8" y="1477" width="0.8" height="15.0" fill="rgb(230,50,43)" rx="2" ry="2" />
<text text-anchor="" x="1100.84" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (80 samples, 0.17%)</title><rect x="193.8" y="1477" width="2.0" height="15.0" fill="rgb(211,110,41)" rx="2" ry="2" />
<text text-anchor="" x="196.76" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_sse2_unaligned (7 samples, 0.02%)</title><rect x="305.6" y="1493" width="0.2" height="15.0" fill="rgb(210,220,5)" rx="2" ry="2" />
<text text-anchor="" x="308.64" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="1029" width="1.3" height="15.0" fill="rgb(238,109,53)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1039.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="744.6" y="1445" width="0.1" height="15.0" fill="rgb(251,99,7)" rx="2" ry="2" />
<text text-anchor="" x="747.63" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="453" width="1.1" height="15.0" fill="rgb(228,211,49)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (24 samples, 0.05%)</title><rect x="573.1" y="1365" width="0.6" height="15.0" fill="rgb(244,70,14)" rx="2" ry="2" />
<text text-anchor="" x="576.08" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (23 samples, 0.05%)</title><rect x="695.9" y="1365" width="0.6" height="15.0" fill="rgb(240,28,52)" rx="2" ry="2" />
<text text-anchor="" x="698.87" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (8 samples, 0.02%)</title><rect x="12.6" y="1429" width="0.2" height="15.0" fill="rgb(246,199,31)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (12 samples, 0.03%)</title><rect x="255.2" y="1301" width="0.3" height="15.0" fill="rgb(210,125,18)" rx="2" ry="2" />
<text text-anchor="" x="258.18" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (10 samples, 0.02%)</title><rect x="744.7" y="1445" width="0.3" height="15.0" fill="rgb(221,90,36)" rx="2" ry="2" />
<text text-anchor="" x="747.74" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (158 samples, 0.34%)</title><rect x="683.2" y="1397" width="4.0" height="15.0" fill="rgb(236,227,52)" rx="2" ry="2" />
<text text-anchor="" x="686.17" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (61 samples, 0.13%)</title><rect x="328.8" y="1237" width="1.5" height="15.0" fill="rgb(211,58,16)" rx="2" ry="2" />
<text text-anchor="" x="331.75" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (29 samples, 0.06%)</title><rect x="809.8" y="1445" width="0.7" height="15.0" fill="rgb(237,3,8)" rx="2" ry="2" />
<text text-anchor="" x="812.78" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.43 (27 samples, 0.06%)</title><rect x="398.9" y="1253" width="0.7" height="15.0" fill="rgb(222,156,14)" rx="2" ry="2" />
<text text-anchor="" x="401.89" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.02%)</title><rect x="365.2" y="1253" width="0.2" height="15.0" fill="rgb(215,142,26)" rx="2" ry="2" />
<text text-anchor="" x="368.16" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (4 samples, 0.01%)</title><rect x="396.0" y="1317" width="0.1" height="15.0" fill="rgb(225,135,38)" rx="2" ry="2" />
<text text-anchor="" x="399.03" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (4 samples, 0.01%)</title><rect x="444.4" y="1365" width="0.1" height="15.0" fill="rgb(233,39,51)" rx="2" ry="2" />
<text text-anchor="" x="447.44" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_rt_sigprocmask (10 samples, 0.02%)</title><rect x="112.1" y="1477" width="0.2" height="15.0" fill="rgb(209,94,28)" rx="2" ry="2" />
<text text-anchor="" x="115.09" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (21 samples, 0.05%)</title><rect x="1034.2" y="1509" width="0.5" height="15.0" fill="rgb(229,134,12)" rx="2" ry="2" />
<text text-anchor="" x="1037.18" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter (23 samples, 0.05%)</title><rect x="397.5" y="1285" width="0.6" height="15.0" fill="rgb(206,78,37)" rx="2" ry="2" />
<text text-anchor="" x="400.55" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextResetOnly (264 samples, 0.58%)</title><rect x="45.2" y="1525" width="6.8" height="15.0" fill="rgb(211,140,28)" rx="2" ry="2" />
<text text-anchor="" x="48.19" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_pending_message_and_reply (4 samples, 0.01%)</title><rect x="669.8" y="1493" width="0.1" height="15.0" fill="rgb(246,102,27)" rx="2" ry="2" />
<text text-anchor="" x="672.82" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="387.0" y="1493" width="0.1" height="15.0" fill="rgb(251,94,27)" rx="2" ry="2" />
<text text-anchor="" x="390.01" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lcons (72 samples, 0.16%)</title><rect x="992.3" y="1445" width="1.8" height="15.0" fill="rgb(207,58,10)" rx="2" ry="2" />
<text text-anchor="" x="995.25" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_wrap (13 samples, 0.03%)</title><rect x="771.0" y="1109" width="0.3" height="15.0" fill="rgb(210,212,6)" rx="2" ry="2" />
<text text-anchor="" x="773.98" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_search_relcache (97 samples, 0.21%)</title><rect x="877.6" y="1381" width="2.5" height="15.0" fill="rgb(222,176,8)" rx="2" ry="2" />
<text text-anchor="" x="880.60" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_extended_send_and_wait (738 samples, 1.61%)</title><rect x="351.4" y="1509" width="19.0" height="15.0" fill="rgb(253,43,14)" rx="2" ry="2" />
<text text-anchor="" x="354.43" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (101 samples, 0.22%)</title><rect x="548.8" y="1413" width="2.6" height="15.0" fill="rgb(225,170,37)" rx="2" ry="2" />
<text text-anchor="" x="551.76" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_ps_idle_display (127 samples, 0.28%)</title><rect x="134.4" y="1509" width="3.2" height="15.0" fill="rgb(206,176,34)" rx="2" ry="2" />
<text text-anchor="" x="137.38" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (43 samples, 0.09%)</title><rect x="633.3" y="1541" width="1.1" height="15.0" fill="rgb(212,69,9)" rx="2" ry="2" />
<text text-anchor="" x="636.34" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>base_yyparse (4,005 samples, 8.73%)</title><rect x="897.9" y="1477" width="102.9" height="15.0" fill="rgb(215,168,30)" rx="2" ry="2" />
<text text-anchor="" x="900.85" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >base_yyparse</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset_erms (18 samples, 0.04%)</title><rect x="1050.5" y="1429" width="0.4" height="15.0" fill="rgb(230,79,31)" rx="2" ry="2" />
<text text-anchor="" x="1053.46" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="821.8" y="1461" width="0.1" height="15.0" fill="rgb(234,172,39)" rx="2" ry="2" />
<text text-anchor="" x="824.83" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (7 samples, 0.02%)</title><rect x="897.6" y="1477" width="0.2" height="15.0" fill="rgb(245,57,49)" rx="2" ry="2" />
<text text-anchor="" x="900.62" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_setb (10 samples, 0.02%)</title><rect x="16.6" y="1637" width="0.2" height="15.0" fill="rgb(253,32,12)" rx="2" ry="2" />
<text text-anchor="" x="19.58" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wakeup_preempt_entity.isra.69 (5 samples, 0.01%)</title><rect x="486.2" y="1109" width="0.1" height="15.0" fill="rgb(213,197,23)" rx="2" ry="2" />
<text text-anchor="" x="489.22" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (362 samples, 0.79%)</title><rect x="773.3" y="1125" width="9.4" height="15.0" fill="rgb(206,75,33)" rx="2" ry="2" />
<text text-anchor="" x="776.35" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_in_progress (7 samples, 0.02%)</title><rect x="681.0" y="1493" width="0.2" height="15.0" fill="rgb(248,2,7)" rx="2" ry="2" />
<text text-anchor="" x="684.03" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (118 samples, 0.26%)</title><rect x="226.4" y="1493" width="3.0" height="15.0" fill="rgb(253,197,4)" rx="2" ry="2" />
<text text-anchor="" x="229.38" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (7 samples, 0.02%)</title><rect x="785.5" y="1205" width="0.2" height="15.0" fill="rgb(224,229,7)" rx="2" ry="2" />
<text text-anchor="" x="788.54" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (7 samples, 0.02%)</title><rect x="59.8" y="1477" width="0.2" height="15.0" fill="rgb(225,209,6)" rx="2" ry="2" />
<text text-anchor="" x="62.77" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (4 samples, 0.01%)</title><rect x="1013.9" y="1461" width="0.1" height="15.0" fill="rgb(218,43,54)" rx="2" ry="2" />
<text text-anchor="" x="1016.93" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (20 samples, 0.04%)</title><rect x="133.7" y="1509" width="0.5" height="15.0" fill="rgb(223,3,43)" rx="2" ry="2" />
<text text-anchor="" x="136.73" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (5 samples, 0.01%)</title><rect x="738.4" y="1205" width="0.2" height="15.0" fill="rgb(244,115,1)" rx="2" ry="2" />
<text text-anchor="" x="741.44" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="150.5" y="1493" width="0.1" height="15.0" fill="rgb(242,176,25)" rx="2" ry="2" />
<text text-anchor="" x="153.47" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (37 samples, 0.08%)</title><rect x="727.2" y="1477" width="0.9" height="15.0" fill="rgb(227,192,0)" rx="2" ry="2" />
<text text-anchor="" x="730.15" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_query_context_destroy (5 samples, 0.01%)</title><rect x="306.8" y="1477" width="0.1" height="15.0" fill="rgb(246,94,33)" rx="2" ry="2" />
<text text-anchor="" x="309.77" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>function_call_walker (12 samples, 0.03%)</title><rect x="840.7" y="1397" width="0.3" height="15.0" fill="rgb(219,199,45)" rx="2" ry="2" />
<text text-anchor="" x="843.65" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sigsetjmp (21 samples, 0.05%)</title><rect x="703.9" y="1493" width="0.6" height="15.0" fill="rgb(215,116,54)" rx="2" ry="2" />
<text text-anchor="" x="706.94" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (30 samples, 0.07%)</title><rect x="516.3" y="1525" width="0.7" height="15.0" fill="rgb(247,161,40)" rx="2" ry="2" />
<text text-anchor="" x="519.27" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (33 samples, 0.07%)</title><rect x="329.1" y="1221" width="0.8" height="15.0" fill="rgb(241,120,33)" rx="2" ry="2" />
<text text-anchor="" x="332.06" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ctype_b_loc (6 samples, 0.01%)</title><rect x="818.8" y="1477" width="0.2" height="15.0" fill="rgb(229,193,31)" rx="2" ry="2" />
<text text-anchor="" x="821.83" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (78 samples, 0.17%)</title><rect x="231.8" y="1429" width="2.0" height="15.0" fill="rgb(218,21,44)" rx="2" ry="2" />
<text text-anchor="" x="234.78" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (13 samples, 0.03%)</title><rect x="294.0" y="1477" width="0.4" height="15.0" fill="rgb(234,141,52)" rx="2" ry="2" />
<text text-anchor="" x="297.02" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>temp_table_walker (225 samples, 0.49%)</title><rect x="859.8" y="1413" width="5.8" height="15.0" fill="rgb(214,165,13)" rx="2" ry="2" />
<text text-anchor="" x="862.81" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextReset (340 samples, 0.74%)</title><rect x="43.2" y="1541" width="8.8" height="15.0" fill="rgb(224,176,22)" rx="2" ry="2" />
<text text-anchor="" x="46.24" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BindComplete (8 samples, 0.02%)</title><rect x="42.0" y="1541" width="0.2" height="15.0" fill="rgb(220,87,1)" rx="2" ry="2" />
<text text-anchor="" x="44.98" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock (11 samples, 0.02%)</title><rect x="286.6" y="1301" width="0.3" height="15.0" fill="rgb(206,75,35)" rx="2" ry="2" />
<text text-anchor="" x="289.57" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset at plt (4 samples, 0.01%)</title><rect x="831.5" y="1477" width="0.1" height="15.0" fill="rgb(244,119,23)" rx="2" ry="2" />
<text text-anchor="" x="834.53" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_node_info (7 samples, 0.02%)</title><rect x="794.1" y="1493" width="0.2" height="15.0" fill="rgb(237,35,26)" rx="2" ry="2" />
<text text-anchor="" x="797.10" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>bsearch (47 samples, 0.10%)</title><rect x="1175.2" y="1653" width="1.2" height="15.0" fill="rgb(227,48,35)" rx="2" ry="2" />
<text text-anchor="" x="1178.17" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (5 samples, 0.01%)</title><rect x="997.6" y="1429" width="0.2" height="15.0" fill="rgb(212,2,46)" rx="2" ry="2" />
<text text-anchor="" x="1000.63" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (15 samples, 0.03%)</title><rect x="100.5" y="1493" width="0.4" height="15.0" fill="rgb(249,101,26)" rx="2" ry="2" />
<text text-anchor="" x="103.49" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (4 samples, 0.01%)</title><rect x="1096.1" y="1477" width="0.1" height="15.0" fill="rgb(243,78,36)" rx="2" ry="2" />
<text text-anchor="" x="1099.11" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (12 samples, 0.03%)</title><rect x="74.5" y="1253" width="0.3" height="15.0" fill="rgb(207,14,33)" rx="2" ry="2" />
<text text-anchor="" x="77.45" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_ps_idle_display (27 samples, 0.06%)</title><rect x="161.5" y="1525" width="0.7" height="15.0" fill="rgb(238,209,52)" rx="2" ry="2" />
<text text-anchor="" x="164.55" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (2,133 samples, 4.65%)</title><rect x="440.7" y="1477" width="54.8" height="15.0" fill="rgb(220,193,17)" rx="2" ry="2" />
<text text-anchor="" x="443.66" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__lib..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (60 samples, 0.13%)</title><rect x="718.4" y="1445" width="1.6" height="15.0" fill="rgb(229,129,15)" rx="2" ry="2" />
<text text-anchor="" x="721.44" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent (8 samples, 0.02%)</title><rect x="147.5" y="1493" width="0.2" height="15.0" fill="rgb(208,42,54)" rx="2" ry="2" />
<text text-anchor="" x="150.54" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_sent_message_destroy (260 samples, 0.57%)</title><rect x="306.9" y="1477" width="6.7" height="15.0" fill="rgb(222,224,25)" rx="2" ry="2" />
<text text-anchor="" x="309.90" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decay_load (7 samples, 0.02%)</title><rect x="481.4" y="1093" width="0.2" height="15.0" fill="rgb(206,181,15)" rx="2" ry="2" />
<text text-anchor="" x="484.41" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (33 samples, 0.07%)</title><rect x="347.7" y="1509" width="0.9" height="15.0" fill="rgb(230,69,44)" rx="2" ry="2" />
<text text-anchor="" x="350.73" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_system_catalog (9 samples, 0.02%)</title><rect x="844.1" y="1413" width="0.3" height="15.0" fill="rgb(234,29,27)" rx="2" ry="2" />
<text text-anchor="" x="847.15" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (12 samples, 0.03%)</title><rect x="10.7" y="53" width="0.3" height="15.0" fill="rgb(231,7,51)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (4 samples, 0.01%)</title><rect x="319.4" y="1413" width="0.1" height="15.0" fill="rgb(219,170,9)" rx="2" ry="2" />
<text text-anchor="" x="322.37" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (32 samples, 0.07%)</title><rect x="783.1" y="1109" width="0.8" height="15.0" fill="rgb(252,63,20)" rx="2" ry="2" />
<text text-anchor="" x="786.12" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lappend (28 samples, 0.06%)</title><rect x="373.5" y="1493" width="0.7" height="15.0" fill="rgb(226,47,36)" rx="2" ry="2" />
<text text-anchor="" x="376.51" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (659 samples, 1.44%)</title><rect x="70.3" y="1349" width="16.9" height="15.0" fill="rgb(205,208,17)" rx="2" ry="2" />
<text text-anchor="" x="73.26" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="897.5" y="1477" width="0.1" height="15.0" fill="rgb(215,131,20)" rx="2" ry="2" />
<text text-anchor="" x="900.52" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (28 samples, 0.06%)</title><rect x="424.0" y="1493" width="0.7" height="15.0" fill="rgb(229,199,49)" rx="2" ry="2" />
<text text-anchor="" x="427.00" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (4 samples, 0.01%)</title><rect x="403.6" y="1429" width="0.1" height="15.0" fill="rgb(239,110,43)" rx="2" ry="2" />
<text text-anchor="" x="406.64" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (418 samples, 0.91%)</title><rect x="732.1" y="1381" width="10.7" height="15.0" fill="rgb(246,163,24)" rx="2" ry="2" />
<text text-anchor="" x="735.06" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (11 samples, 0.02%)</title><rect x="361.1" y="1221" width="0.3" height="15.0" fill="rgb(207,40,49)" rx="2" ry="2" />
<text text-anchor="" x="364.12" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (816 samples, 1.78%)</title><rect x="270.2" y="1429" width="21.0" height="15.0" fill="rgb(249,4,5)" rx="2" ry="2" />
<text text-anchor="" x="273.19" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (48 samples, 0.10%)</title><rect x="460.9" y="1301" width="1.2" height="15.0" fill="rgb(251,144,20)" rx="2" ry="2" />
<text text-anchor="" x="463.89" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (11 samples, 0.02%)</title><rect x="200.7" y="1493" width="0.3" height="15.0" fill="rgb(213,158,12)" rx="2" ry="2" />
<text text-anchor="" x="203.68" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree (14 samples, 0.03%)</title><rect x="684.3" y="1237" width="0.3" height="15.0" fill="rgb(213,27,54)" rx="2" ry="2" />
<text text-anchor="" x="687.27" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (4 samples, 0.01%)</title><rect x="86.0" y="1157" width="0.1" height="15.0" fill="rgb(228,200,42)" rx="2" ry="2" />
<text text-anchor="" x="88.97" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_sse2_unaligned (20 samples, 0.04%)</title><rect x="713.9" y="1477" width="0.5" height="15.0" fill="rgb(212,76,33)" rx="2" ry="2" />
<text text-anchor="" x="716.91" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (28 samples, 0.06%)</title><rect x="1084.4" y="1317" width="0.7" height="15.0" fill="rgb(213,114,50)" rx="2" ry="2" />
<text text-anchor="" x="1087.42" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (324 samples, 0.71%)</title><rect x="122.1" y="1365" width="8.4" height="15.0" fill="rgb(219,51,39)" rx="2" ry="2" />
<text text-anchor="" x="125.14" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="725" width="1.3" height="15.0" fill="rgb(220,59,7)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (12 samples, 0.03%)</title><rect x="453.7" y="1285" width="0.3" height="15.0" fill="rgb(240,38,4)" rx="2" ry="2" />
<text text-anchor="" x="456.70" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (40 samples, 0.09%)</title><rect x="75.1" y="1253" width="1.0" height="15.0" fill="rgb(205,107,32)" rx="2" ry="2" />
<text text-anchor="" x="78.07" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (33 samples, 0.07%)</title><rect x="10.7" y="213" width="0.8" height="15.0" fill="rgb(216,16,53)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_alloc (4 samples, 0.01%)</title><rect x="361.8" y="1237" width="0.1" height="15.0" fill="rgb(246,204,19)" rx="2" ry="2" />
<text text-anchor="" x="364.84" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_command_success (5 samples, 0.01%)</title><rect x="308.7" y="1461" width="0.1" height="15.0" fill="rgb(219,34,52)" rx="2" ry="2" />
<text text-anchor="" x="311.68" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (116 samples, 0.25%)</title><rect x="79.0" y="1237" width="3.0" height="15.0" fill="rgb(238,6,35)" rx="2" ry="2" />
<text text-anchor="" x="82.03" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="415.5" y="1157" width="0.1" height="15.0" fill="rgb(253,87,33)" rx="2" ry="2" />
<text text-anchor="" x="418.49" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextCallResetCallbacks (12 samples, 0.03%)</title><rect x="44.9" y="1525" width="0.3" height="15.0" fill="rgb(216,138,48)" rx="2" ry="2" />
<text text-anchor="" x="47.89" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="421" width="1.1" height="15.0" fill="rgb(205,97,48)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (7 samples, 0.02%)</title><rect x="782.4" y="1061" width="0.2" height="15.0" fill="rgb(224,188,38)" rx="2" ry="2" />
<text text-anchor="" x="785.37" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (191 samples, 0.42%)</title><rect x="683.0" y="1413" width="4.9" height="15.0" fill="rgb(217,183,7)" rx="2" ry="2" />
<text text-anchor="" x="685.99" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_kind_from_backend (5,085 samples, 11.08%)</title><rect x="165.5" y="1525" width="130.8" height="15.0" fill="rgb(250,58,1)" rx="2" ry="2" />
<text text-anchor="" x="168.53" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >read_kind_from_b..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (9 samples, 0.02%)</title><rect x="941.3" y="1445" width="0.2" height="15.0" fill="rgb(214,124,9)" rx="2" ry="2" />
<text text-anchor="" x="944.30" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (15 samples, 0.03%)</title><rect x="774.8" y="1093" width="0.4" height="15.0" fill="rgb(225,103,29)" rx="2" ry="2" />
<text text-anchor="" x="777.79" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strncasecmp_l_avx (50 samples, 0.11%)</title><rect x="705.4" y="1493" width="1.3" height="15.0" fill="rgb(243,97,40)" rx="2" ry="2" />
<text text-anchor="" x="708.38" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (88 samples, 0.19%)</title><rect x="598.9" y="1381" width="2.3" height="15.0" fill="rgb(217,132,13)" rx="2" ry="2" />
<text text-anchor="" x="601.95" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="862.1" y="1381" width="0.1" height="15.0" fill="rgb(231,226,15)" rx="2" ry="2" />
<text text-anchor="" x="865.07" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (4 samples, 0.01%)</title><rect x="753.0" y="1285" width="0.1" height="15.0" fill="rgb(210,196,30)" rx="2" ry="2" />
<text text-anchor="" x="756.01" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (6 samples, 0.01%)</title><rect x="1124.6" y="1509" width="0.2" height="15.0" fill="rgb(223,228,17)" rx="2" ry="2" />
<text text-anchor="" x="1127.62" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (21 samples, 0.05%)</title><rect x="999.1" y="1397" width="0.5" height="15.0" fill="rgb(214,82,1)" rx="2" ry="2" />
<text text-anchor="" x="1002.07" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (121 samples, 0.26%)</title><rect x="237.6" y="1509" width="3.1" height="15.0" fill="rgb(216,28,49)" rx="2" ry="2" />
<text text-anchor="" x="240.59" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_doing_extended_query_message (12 samples, 0.03%)</title><rect x="632.7" y="1541" width="0.3" height="15.0" fill="rgb(243,63,35)" rx="2" ry="2" />
<text text-anchor="" x="635.67" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="141.9" y="1493" width="0.1" height="15.0" fill="rgb(245,212,43)" rx="2" ry="2" />
<text text-anchor="" x="144.93" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (8 samples, 0.02%)</title><rect x="686.1" y="1301" width="0.2" height="15.0" fill="rgb(250,54,40)" rx="2" ry="2" />
<text text-anchor="" x="689.10" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unread (17 samples, 0.04%)</title><rect x="1060.6" y="1493" width="0.4" height="15.0" fill="rgb(251,212,26)" rx="2" ry="2" />
<text text-anchor="" x="1063.59" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (76 samples, 0.17%)</title><rect x="328.4" y="1253" width="1.9" height="15.0" fill="rgb(247,202,25)" rx="2" ry="2" />
<text text-anchor="" x="331.37" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_generic (833 samples, 1.81%)</title><rect x="1068.5" y="1333" width="21.4" height="15.0" fill="rgb(249,191,8)" rx="2" ry="2" />
<text text-anchor="" x="1071.53" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_load_tls (10 samples, 0.02%)</title><rect x="1148.8" y="1637" width="0.2" height="15.0" fill="rgb(209,196,16)" rx="2" ry="2" />
<text text-anchor="" x="1151.79" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (8 samples, 0.02%)</title><rect x="127.5" y="1269" width="0.2" height="15.0" fill="rgb(220,73,33)" rx="2" ry="2" />
<text text-anchor="" x="130.46" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (48 samples, 0.10%)</title><rect x="809.3" y="1461" width="1.3" height="15.0" fill="rgb(214,217,52)" rx="2" ry="2" />
<text text-anchor="" x="812.34" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.43 (40 samples, 0.09%)</title><rect x="324.8" y="1253" width="1.0" height="15.0" fill="rgb(233,72,14)" rx="2" ry="2" />
<text text-anchor="" x="327.82" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_doing_extended_query_message (6 samples, 0.01%)</title><rect x="1123.1" y="1525" width="0.1" height="15.0" fill="rgb(246,152,23)" rx="2" ry="2" />
<text text-anchor="" x="1126.08" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (19 samples, 0.04%)</title><rect x="232.5" y="1397" width="0.5" height="15.0" fill="rgb(214,6,41)" rx="2" ry="2" />
<text text-anchor="" x="235.53" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (10 samples, 0.02%)</title><rect x="716.5" y="1461" width="0.2" height="15.0" fill="rgb(221,45,10)" rx="2" ry="2" />
<text text-anchor="" x="719.48" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (9 samples, 0.02%)</title><rect x="1084.9" y="1301" width="0.2" height="15.0" fill="rgb(209,159,21)" rx="2" ry="2" />
<text text-anchor="" x="1087.91" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (5 samples, 0.01%)</title><rect x="490.8" y="1381" width="0.2" height="15.0" fill="rgb(211,127,38)" rx="2" ry="2" />
<text text-anchor="" x="493.84" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (39 samples, 0.08%)</title><rect x="177.3" y="1333" width="1.0" height="15.0" fill="rgb(206,171,1)" rx="2" ry="2" />
<text text-anchor="" x="180.31" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (4 samples, 0.01%)</title><rect x="330.5" y="1253" width="0.1" height="15.0" fill="rgb(235,105,35)" rx="2" ry="2" />
<text text-anchor="" x="333.45" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (1,087 samples, 2.37%)</title><rect x="462.1" y="1317" width="28.0" height="15.0" fill="rgb(221,202,31)" rx="2" ry="2" />
<text text-anchor="" x="465.13" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (10 samples, 0.02%)</title><rect x="347.5" y="1509" width="0.2" height="15.0" fill="rgb(243,80,41)" rx="2" ry="2" />
<text text-anchor="" x="350.47" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (11 samples, 0.02%)</title><rect x="98.6" y="1509" width="0.3" height="15.0" fill="rgb(247,10,48)" rx="2" ry="2" />
<text text-anchor="" x="101.62" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (10 samples, 0.02%)</title><rect x="323.4" y="1269" width="0.3" height="15.0" fill="rgb(248,203,2)" rx="2" ry="2" />
<text text-anchor="" x="326.43" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="810.6" y="1477" width="0.1" height="15.0" fill="rgb(206,61,1)" rx="2" ry="2" />
<text text-anchor="" x="813.57" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlen at plt (4 samples, 0.01%)</title><rect x="985.4" y="1429" width="0.1" height="15.0" fill="rgb(210,202,4)" rx="2" ry="2" />
<text text-anchor="" x="988.42" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (16 samples, 0.03%)</title><rect x="496.4" y="1493" width="0.4" height="15.0" fill="rgb(212,26,36)" rx="2" ry="2" />
<text text-anchor="" x="499.40" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (18 samples, 0.04%)</title><rect x="515.7" y="1509" width="0.5" height="15.0" fill="rgb(206,118,5)" rx="2" ry="2" />
<text text-anchor="" x="518.70" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (7 samples, 0.02%)</title><rect x="733.5" y="1301" width="0.2" height="15.0" fill="rgb(212,162,29)" rx="2" ry="2" />
<text text-anchor="" x="736.50" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_head (6 samples, 0.01%)</title><rect x="223.6" y="1461" width="0.1" height="15.0" fill="rgb(230,182,39)" rx="2" ry="2" />
<text text-anchor="" x="226.58" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_search_relcache (89 samples, 0.19%)</title><rect x="862.2" y="1381" width="2.3" height="15.0" fill="rgb(248,66,26)" rx="2" ry="2" />
<text text-anchor="" x="865.17" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (5 samples, 0.01%)</title><rect x="85.8" y="1125" width="0.2" height="15.0" fill="rgb(228,158,34)" rx="2" ry="2" />
<text text-anchor="" x="88.84" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>write at plt (4 samples, 0.01%)</title><rect x="90.2" y="1445" width="0.1" height="15.0" fill="rgb(243,101,19)" rx="2" ry="2" />
<text text-anchor="" x="93.16" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (32 samples, 0.07%)</title><rect x="491.7" y="1349" width="0.9" height="15.0" fill="rgb(241,88,36)" rx="2" ry="2" />
<text text-anchor="" x="494.74" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlcpy (43 samples, 0.09%)</title><rect x="136.3" y="1477" width="1.1" height="15.0" fill="rgb(214,158,53)" rx="2" ry="2" />
<text text-anchor="" x="139.33" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>end_internal_transaction (86 samples, 0.19%)</title><rect x="116.5" y="1509" width="2.2" height="15.0" fill="rgb(249,198,44)" rx="2" ry="2" />
<text text-anchor="" x="119.51" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Parse (12,085 samples, 26.33%)</title><rect x="700.7" y="1509" width="310.7" height="15.0" fill="rgb(241,5,43)" rx="2" ry="2" />
<text text-anchor="" x="703.67" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Parse</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (8 samples, 0.02%)</title><rect x="742.6" y="1333" width="0.2" height="15.0" fill="rgb(226,32,46)" rx="2" ry="2" />
<text text-anchor="" x="745.60" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (333 samples, 0.73%)</title><rect x="408.2" y="1349" width="8.6" height="15.0" fill="rgb(251,52,10)" rx="2" ry="2" />
<text text-anchor="" x="411.19" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (108 samples, 0.24%)</title><rect x="533.8" y="1461" width="2.8" height="15.0" fill="rgb(215,105,20)" rx="2" ry="2" />
<text text-anchor="" x="536.78" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (6 samples, 0.01%)</title><rect x="394.3" y="1381" width="0.2" height="15.0" fill="rgb(208,14,23)" rx="2" ry="2" />
<text text-anchor="" x="397.34" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1141" width="1.4" height="15.0" fill="rgb(219,157,52)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent (4 samples, 0.01%)</title><rect x="688.4" y="1477" width="0.1" height="15.0" fill="rgb(216,21,6)" rx="2" ry="2" />
<text text-anchor="" x="691.41" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (14 samples, 0.03%)</title><rect x="72.2" y="1269" width="0.3" height="15.0" fill="rgb(235,162,9)" rx="2" ry="2" />
<text text-anchor="" x="75.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (157 samples, 0.34%)</title><rect x="683.2" y="1381" width="4.0" height="15.0" fill="rgb(223,6,8)" rx="2" ry="2" />
<text text-anchor="" x="686.17" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (6 samples, 0.01%)</title><rect x="1111.6" y="1397" width="0.1" height="15.0" fill="rgb(249,180,50)" rx="2" ry="2" />
<text text-anchor="" x="1114.56" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (11 samples, 0.02%)</title><rect x="284.8" y="1285" width="0.3" height="15.0" fill="rgb(253,54,24)" rx="2" ry="2" />
<text text-anchor="" x="287.84" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (16 samples, 0.03%)</title><rect x="1004.6" y="1381" width="0.4" height="15.0" fill="rgb(211,12,7)" rx="2" ry="2" />
<text text-anchor="" x="1007.62" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_unlogged_table (5 samples, 0.01%)</title><rect x="869.6" y="1413" width="0.2" height="15.0" fill="rgb(254,53,51)" rx="2" ry="2" />
<text text-anchor="" x="872.63" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stop_request (18 samples, 0.04%)</title><rect x="30.4" y="1557" width="0.4" height="15.0" fill="rgb(225,136,26)" rx="2" ry="2" />
<text text-anchor="" x="33.39" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (22 samples, 0.05%)</title><rect x="1115.3" y="1477" width="0.6" height="15.0" fill="rgb(206,184,5)" rx="2" ry="2" />
<text text-anchor="" x="1118.34" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (355 samples, 0.77%)</title><rect x="394.5" y="1397" width="9.1" height="15.0" fill="rgb(248,129,50)" rx="2" ry="2" />
<text text-anchor="" x="397.52" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_enqueue (12 samples, 0.03%)</title><rect x="477.6" y="1109" width="0.3" height="15.0" fill="rgb(225,129,43)" rx="2" ry="2" />
<text text-anchor="" x="480.55" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (16 samples, 0.03%)</title><rect x="1004.6" y="1397" width="0.4" height="15.0" fill="rgb(211,27,44)" rx="2" ry="2" />
<text text-anchor="" x="1007.62" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (4 samples, 0.01%)</title><rect x="254.3" y="1285" width="0.1" height="15.0" fill="rgb(218,89,38)" rx="2" ry="2" />
<text text-anchor="" x="257.25" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_to_iter (11 samples, 0.02%)</title><rect x="686.8" y="1269" width="0.3" height="15.0" fill="rgb(217,58,1)" rx="2" ry="2" />
<text text-anchor="" x="689.82" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (6 samples, 0.01%)</title><rect x="123.7" y="1333" width="0.2" height="15.0" fill="rgb(211,96,35)" rx="2" ry="2" />
<text text-anchor="" x="126.73" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (6 samples, 0.01%)</title><rect x="671.6" y="1445" width="0.2" height="15.0" fill="rgb(226,147,50)" rx="2" ry="2" />
<text text-anchor="" x="674.60" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pstrdup (23 samples, 0.05%)</title><rect x="314.7" y="1493" width="0.6" height="15.0" fill="rgb(221,200,7)" rx="2" ry="2" />
<text text-anchor="" x="317.72" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (96 samples, 0.21%)</title><rect x="728.4" y="1477" width="2.5" height="15.0" fill="rgb(214,81,1)" rx="2" ry="2" />
<text text-anchor="" x="731.44" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (64 samples, 0.14%)</title><rect x="10.7" y="1557" width="1.6" height="15.0" fill="rgb(222,151,13)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="1006.7" y="1397" width="0.1" height="15.0" fill="rgb(252,70,28)" rx="2" ry="2" />
<text text-anchor="" x="1009.65" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (18 samples, 0.04%)</title><rect x="754.2" y="1253" width="0.5" height="15.0" fill="rgb(250,43,14)" rx="2" ry="2" />
<text text-anchor="" x="757.25" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strncasecmp_avx (21 samples, 0.05%)</title><rect x="704.8" y="1493" width="0.6" height="15.0" fill="rgb(242,172,50)" rx="2" ry="2" />
<text text-anchor="" x="707.84" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_freewait (4 samples, 0.01%)</title><rect x="232.4" y="1397" width="0.1" height="15.0" fill="rgb(242,29,11)" rx="2" ry="2" />
<text text-anchor="" x="235.43" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_delete_cell (116 samples, 0.25%)</title><rect x="221.9" y="1493" width="3.0" height="15.0" fill="rgb(219,62,28)" rx="2" ry="2" />
<text text-anchor="" x="224.94" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (6 samples, 0.01%)</title><rect x="146.7" y="1493" width="0.1" height="15.0" fill="rgb(242,76,23)" rx="2" ry="2" />
<text text-anchor="" x="149.69" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="309" width="1.1" height="15.0" fill="rgb(250,17,11)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="549" width="1.3" height="15.0" fill="rgb(231,31,12)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.43 (44 samples, 0.10%)</title><rect x="411.8" y="1253" width="1.1" height="15.0" fill="rgb(233,191,14)" rx="2" ry="2" />
<text text-anchor="" x="414.79" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="656.9" y="1461" width="0.1" height="15.0" fill="rgb(210,53,0)" rx="2" ry="2" />
<text text-anchor="" x="659.87" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (4 samples, 0.01%)</title><rect x="129.5" y="1205" width="0.1" height="15.0" fill="rgb(232,32,35)" rx="2" ry="2" />
<text text-anchor="" x="132.54" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (7 samples, 0.02%)</title><rect x="980.2" y="1429" width="0.2" height="15.0" fill="rgb(225,121,53)" rx="2" ry="2" />
<text text-anchor="" x="983.20" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (41 samples, 0.09%)</title><rect x="499.6" y="1509" width="1.1" height="15.0" fill="rgb(221,59,53)" rx="2" ry="2" />
<text text-anchor="" x="502.64" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseComplete (11 samples, 0.02%)</title><rect x="651.9" y="1525" width="0.3" height="15.0" fill="rgb(234,110,1)" rx="2" ry="2" />
<text text-anchor="" x="654.93" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlogged_table_walker (10 samples, 0.02%)</title><rect x="882.9" y="1397" width="0.2" height="15.0" fill="rgb(229,23,28)" rx="2" ry="2" />
<text text-anchor="" x="885.87" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (40 samples, 0.09%)</title><rect x="401.3" y="1253" width="1.1" height="15.0" fill="rgb(218,9,12)" rx="2" ry="2" />
<text text-anchor="" x="404.33" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="1013" width="1.3" height="15.0" fill="rgb(235,35,18)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1023.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (30 samples, 0.07%)</title><rect x="497.4" y="1525" width="0.8" height="15.0" fill="rgb(230,58,27)" rx="2" ry="2" />
<text text-anchor="" x="500.42" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (112 samples, 0.24%)</title><rect x="1126.3" y="1637" width="2.8" height="15.0" fill="rgb(245,134,38)" rx="2" ry="2" />
<text text-anchor="" x="1129.27" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (475 samples, 1.03%)</title><rect x="1015.6" y="1397" width="12.2" height="15.0" fill="rgb(233,164,47)" rx="2" ry="2" />
<text text-anchor="" x="1018.62" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAlloc (41 samples, 0.09%)</title><rect x="797.8" y="1445" width="1.1" height="15.0" fill="rgb(245,113,51)" rx="2" ry="2" />
<text text-anchor="" x="800.80" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="877.4" y="1333" width="0.1" height="15.0" fill="rgb(209,111,5)" rx="2" ry="2" />
<text text-anchor="" x="880.44" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (7 samples, 0.02%)</title><rect x="93.4" y="1493" width="0.2" height="15.0" fill="rgb(210,210,21)" rx="2" ry="2" />
<text text-anchor="" x="96.42" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (4 samples, 0.01%)</title><rect x="365.9" y="1333" width="0.1" height="15.0" fill="rgb(215,207,13)" rx="2" ry="2" />
<text text-anchor="" x="368.90" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_add (109 samples, 0.24%)</title><rect x="504.3" y="1525" width="2.8" height="15.0" fill="rgb(252,50,18)" rx="2" ry="2" />
<text text-anchor="" x="507.34" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detect_idle_in_transaction_sesion_timeout_error (48 samples, 0.10%)</title><rect x="1056.7" y="1525" width="1.3" height="15.0" fill="rgb(241,144,4)" rx="2" ry="2" />
<text text-anchor="" x="1059.73" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (33 samples, 0.07%)</title><rect x="10.7" y="245" width="0.8" height="15.0" fill="rgb(250,203,52)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (5 samples, 0.01%)</title><rect x="122.6" y="1333" width="0.2" height="15.0" fill="rgb(241,219,20)" rx="2" ry="2" />
<text text-anchor="" x="125.63" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (7 samples, 0.02%)</title><rect x="741.7" y="1365" width="0.2" height="15.0" fill="rgb(221,79,34)" rx="2" ry="2" />
<text text-anchor="" x="744.73" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_wait_queue (23 samples, 0.05%)</title><rect x="276.0" y="1365" width="0.6" height="15.0" fill="rgb(248,3,39)" rx="2" ry="2" />
<text text-anchor="" x="279.00" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (7 samples, 0.02%)</title><rect x="1036.4" y="1493" width="0.2" height="15.0" fill="rgb(229,212,19)" rx="2" ry="2" />
<text text-anchor="" x="1039.42" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (9 samples, 0.02%)</title><rect x="175.9" y="1509" width="0.3" height="15.0" fill="rgb(242,22,27)" rx="2" ry="2" />
<text text-anchor="" x="178.95" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree at GLIBC_2.2.5 (307 samples, 0.67%)</title><rect x="1176.4" y="1653" width="7.9" height="15.0" fill="rgb(249,193,6)" rx="2" ry="2" />
<text text-anchor="" x="1179.37" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (45 samples, 0.10%)</title><rect x="1059.4" y="1493" width="1.2" height="15.0" fill="rgb(224,32,3)" rx="2" ry="2" />
<text text-anchor="" x="1062.43" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (10 samples, 0.02%)</title><rect x="487.2" y="1157" width="0.2" height="15.0" fill="rgb(237,111,16)" rx="2" ry="2" />
<text text-anchor="" x="490.17" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (14 samples, 0.03%)</title><rect x="362.0" y="1237" width="0.4" height="15.0" fill="rgb(246,117,36)" rx="2" ry="2" />
<text text-anchor="" x="364.99" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="682.0" y="1477" width="0.1" height="15.0" fill="rgb(252,17,0)" rx="2" ry="2" />
<text text-anchor="" x="684.96" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>base_yyparse (5 samples, 0.01%)</title><rect x="1175.0" y="1653" width="0.2" height="15.0" fill="rgb(220,72,21)" rx="2" ry="2" />
<text text-anchor="" x="1178.04" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (6 samples, 0.01%)</title><rect x="695.2" y="1285" width="0.1" height="15.0" fill="rgb(239,207,38)" rx="2" ry="2" />
<text text-anchor="" x="698.17" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Execute (26 samples, 0.06%)</title><rect x="42.6" y="1541" width="0.6" height="15.0" fill="rgb(226,2,44)" rx="2" ry="2" />
<text text-anchor="" x="45.57" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (6 samples, 0.01%)</title><rect x="623.4" y="1541" width="0.1" height="15.0" fill="rgb(235,34,16)" rx="2" ry="2" />
<text text-anchor="" x="626.39" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (20 samples, 0.04%)</title><rect x="221.3" y="1493" width="0.6" height="15.0" fill="rgb(232,6,49)" rx="2" ry="2" />
<text text-anchor="" x="224.35" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (454 samples, 0.99%)</title><rect x="731.3" y="1429" width="11.7" height="15.0" fill="rgb(229,81,26)" rx="2" ry="2" />
<text text-anchor="" x="734.29" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (6 samples, 0.01%)</title><rect x="1122.5" y="1493" width="0.2" height="15.0" fill="rgb(222,24,33)" rx="2" ry="2" />
<text text-anchor="" x="1125.52" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (18 samples, 0.04%)</title><rect x="281.8" y="1237" width="0.4" height="15.0" fill="rgb(234,99,19)" rx="2" ry="2" />
<text text-anchor="" x="284.79" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (7 samples, 0.02%)</title><rect x="1096.0" y="1493" width="0.2" height="15.0" fill="rgb(229,152,43)" rx="2" ry="2" />
<text text-anchor="" x="1099.04" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (19 samples, 0.04%)</title><rect x="254.5" y="1317" width="0.5" height="15.0" fill="rgb(237,179,2)" rx="2" ry="2" />
<text text-anchor="" x="257.48" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_get_previous_message (13 samples, 0.03%)</title><rect x="160.6" y="1525" width="0.4" height="15.0" fill="rgb(213,177,34)" rx="2" ry="2" />
<text text-anchor="" x="163.65" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.01%)</title><rect x="330.3" y="1253" width="0.1" height="15.0" fill="rgb(208,52,14)" rx="2" ry="2" />
<text text-anchor="" x="333.32" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strncasecmp at plt (8 samples, 0.02%)</title><rect x="1010.9" y="1493" width="0.2" height="15.0" fill="rgb(206,99,44)" rx="2" ry="2" />
<text text-anchor="" x="1013.92" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="416.2" y="1269" width="0.1" height="15.0" fill="rgb(252,143,40)" rx="2" ry="2" />
<text text-anchor="" x="419.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (40 samples, 0.09%)</title><rect x="547.7" y="1429" width="1.0" height="15.0" fill="rgb(230,103,50)" rx="2" ry="2" />
<text text-anchor="" x="550.66" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_freewait (21 samples, 0.05%)</title><rect x="1047.2" y="1397" width="0.6" height="15.0" fill="rgb(229,164,37)" rx="2" ry="2" />
<text text-anchor="" x="1050.22" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (66 samples, 0.14%)</title><rect x="1132.9" y="1637" width="1.7" height="15.0" fill="rgb(239,108,0)" rx="2" ry="2" />
<text text-anchor="" x="1135.88" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (299 samples, 0.65%)</title><rect x="689.7" y="1461" width="7.7" height="15.0" fill="rgb(221,101,33)" rx="2" ry="2" />
<text text-anchor="" x="692.75" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (5 samples, 0.01%)</title><rect x="257.8" y="1365" width="0.2" height="15.0" fill="rgb(236,160,39)" rx="2" ry="2" />
<text text-anchor="" x="260.83" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (8 samples, 0.02%)</title><rect x="881.3" y="1381" width="0.3" height="15.0" fill="rgb(237,205,3)" rx="2" ry="2" />
<text text-anchor="" x="884.35" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (24 samples, 0.05%)</title><rect x="501.6" y="1509" width="0.6" height="15.0" fill="rgb(209,4,33)" rx="2" ry="2" />
<text text-anchor="" x="504.56" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_next_buddy (10 samples, 0.02%)</title><rect x="486.5" y="1125" width="0.3" height="15.0" fill="rgb(226,88,1)" rx="2" ry="2" />
<text text-anchor="" x="489.52" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (5 samples, 0.01%)</title><rect x="177.4" y="1317" width="0.1" height="15.0" fill="rgb(251,124,27)" rx="2" ry="2" />
<text text-anchor="" x="180.39" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1445" width="1.4" height="15.0" fill="rgb(219,169,53)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="997" width="1.3" height="15.0" fill="rgb(205,56,10)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1007.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_create_sent_message (83 samples, 0.18%)</title><rect x="720.3" y="1493" width="2.2" height="15.0" fill="rgb(211,141,3)" rx="2" ry="2" />
<text text-anchor="" x="723.34" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (7 samples, 0.02%)</title><rect x="253.5" y="1189" width="0.1" height="15.0" fill="rgb(205,153,19)" rx="2" ry="2" />
<text text-anchor="" x="256.46" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (83 samples, 0.18%)</title><rect x="1091.0" y="1397" width="2.1" height="15.0" fill="rgb(224,37,53)" rx="2" ry="2" />
<text text-anchor="" x="1094.00" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (7 samples, 0.02%)</title><rect x="573.5" y="1349" width="0.2" height="15.0" fill="rgb(223,18,16)" rx="2" ry="2" />
<text text-anchor="" x="576.52" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>flush_smp_call_function_queue (4 samples, 0.01%)</title><rect x="789.0" y="1253" width="0.1" height="15.0" fill="rgb(234,53,29)" rx="2" ry="2" />
<text text-anchor="" x="792.03" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (5 samples, 0.01%)</title><rect x="349.5" y="1509" width="0.1" height="15.0" fill="rgb(216,171,40)" rx="2" ry="2" />
<text text-anchor="" x="352.47" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (16 samples, 0.03%)</title><rect x="60.6" y="1477" width="0.4" height="15.0" fill="rgb(209,3,36)" rx="2" ry="2" />
<text text-anchor="" x="63.62" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (4 samples, 0.01%)</title><rect x="733.3" y="1301" width="0.1" height="15.0" fill="rgb(216,62,54)" rx="2" ry="2" />
<text text-anchor="" x="736.30" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (7 samples, 0.02%)</title><rect x="573.5" y="1317" width="0.2" height="15.0" fill="rgb(254,32,15)" rx="2" ry="2" />
<text text-anchor="" x="576.52" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (39 samples, 0.08%)</title><rect x="85.1" y="1173" width="1.0" height="15.0" fill="rgb(240,186,37)" rx="2" ry="2" />
<text text-anchor="" x="88.07" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (293 samples, 0.64%)</title><rect x="409.0" y="1317" width="7.5" height="15.0" fill="rgb(217,156,44)" rx="2" ry="2" />
<text text-anchor="" x="411.99" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (10 samples, 0.02%)</title><rect x="1022.5" y="1205" width="0.3" height="15.0" fill="rgb(251,124,45)" rx="2" ry="2" />
<text text-anchor="" x="1025.51" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reweight_entity (55 samples, 0.12%)</title><rect x="570.1" y="1317" width="1.4" height="15.0" fill="rgb(223,206,8)" rx="2" ry="2" />
<text text-anchor="" x="573.08" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (32 samples, 0.07%)</title><rect x="346.5" y="1493" width="0.8" height="15.0" fill="rgb(210,6,22)" rx="2" ry="2" />
<text text-anchor="" x="349.49" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>can_query_context_destroy (31 samples, 0.07%)</title><rect x="717.2" y="1445" width="0.8" height="15.0" fill="rgb(207,103,24)" rx="2" ry="2" />
<text text-anchor="" x="720.20" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location at plt (5 samples, 0.01%)</title><rect x="689.3" y="1461" width="0.2" height="15.0" fill="rgb(248,83,6)" rx="2" ry="2" />
<text text-anchor="" x="692.34" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (182 samples, 0.40%)</title><rect x="107.4" y="1477" width="4.7" height="15.0" fill="rgb(224,66,5)" rx="2" ry="2" />
<text text-anchor="" x="110.41" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_generic (421 samples, 0.92%)</title><rect x="1016.8" y="1349" width="10.8" height="15.0" fill="rgb(216,28,14)" rx="2" ry="2" />
<text text-anchor="" x="1019.75" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (4 samples, 0.01%)</title><rect x="694.0" y="1237" width="0.1" height="15.0" fill="rgb(227,66,42)" rx="2" ry="2" />
<text text-anchor="" x="697.01" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ScanKeywordLookup (406 samples, 0.88%)</title><rect x="963.9" y="1429" width="10.4" height="15.0" fill="rgb(211,52,12)" rx="2" ry="2" />
<text text-anchor="" x="966.90" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (4 samples, 0.01%)</title><rect x="358.4" y="1269" width="0.1" height="15.0" fill="rgb(205,147,26)" rx="2" ry="2" />
<text text-anchor="" x="361.42" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (45 samples, 0.10%)</title><rect x="443.6" y="1413" width="1.2" height="15.0" fill="rgb(226,163,40)" rx="2" ry="2" />
<text text-anchor="" x="446.64" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcasecmp_l_avx (44 samples, 0.10%)</title><rect x="848.2" y="1365" width="1.2" height="15.0" fill="rgb(208,42,33)" rx="2" ry="2" />
<text text-anchor="" x="851.24" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>flush_smp_call_function_queue (5 samples, 0.01%)</title><rect x="283.9" y="1237" width="0.2" height="15.0" fill="rgb(244,17,30)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (4 samples, 0.01%)</title><rect x="1020.7" y="1285" width="0.1" height="15.0" fill="rgb(236,113,8)" rx="2" ry="2" />
<text text-anchor="" x="1023.74" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (4 samples, 0.01%)</title><rect x="130.5" y="1365" width="0.1" height="15.0" fill="rgb(211,123,33)" rx="2" ry="2" />
<text text-anchor="" x="133.47" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (7 samples, 0.02%)</title><rect x="278.9" y="1301" width="0.2" height="15.0" fill="rgb(208,155,48)" rx="2" ry="2" />
<text text-anchor="" x="281.93" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>can_query_context_destroy (16 samples, 0.03%)</title><rect x="716.0" y="1461" width="0.4" height="15.0" fill="rgb(210,87,6)" rx="2" ry="2" />
<text text-anchor="" x="718.99" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (64 samples, 0.14%)</title><rect x="478.6" y="1109" width="1.6" height="15.0" fill="rgb(228,209,26)" rx="2" ry="2" />
<text text-anchor="" x="481.56" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (14 samples, 0.03%)</title><rect x="331.6" y="1333" width="0.3" height="15.0" fill="rgb(209,144,35)" rx="2" ry="2" />
<text text-anchor="" x="334.58" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (4 samples, 0.01%)</title><rect x="393.4" y="1445" width="0.1" height="15.0" fill="rgb(215,21,42)" rx="2" ry="2" />
<text text-anchor="" x="396.36" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (4 samples, 0.01%)</title><rect x="427.0" y="1477" width="0.1" height="15.0" fill="rgb(253,168,9)" rx="2" ry="2" />
<text text-anchor="" x="429.98" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prefetch_freepointer (5 samples, 0.01%)</title><rect x="460.4" y="1253" width="0.1" height="15.0" fill="rgb(253,47,7)" rx="2" ry="2" />
<text text-anchor="" x="463.41" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (35 samples, 0.08%)</title><rect x="85.1" y="1157" width="0.9" height="15.0" fill="rgb(208,43,53)" rx="2" ry="2" />
<text text-anchor="" x="88.07" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (22 samples, 0.05%)</title><rect x="90.4" y="1461" width="0.6" height="15.0" fill="rgb(217,118,12)" rx="2" ry="2" />
<text text-anchor="" x="93.44" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (29 samples, 0.06%)</title><rect x="371.9" y="1493" width="0.7" height="15.0" fill="rgb(215,146,5)" rx="2" ry="2" />
<text text-anchor="" x="374.89" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapgs_restore_regs_and_return_to_usermode (4 samples, 0.01%)</title><rect x="1124.9" y="1525" width="0.1" height="15.0" fill="rgb(213,119,32)" rx="2" ry="2" />
<text text-anchor="" x="1127.91" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iter (81 samples, 0.18%)</title><rect x="74.1" y="1285" width="2.1" height="15.0" fill="rgb(254,98,26)" rx="2" ry="2" />
<text text-anchor="" x="77.12" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_select_query (22 samples, 0.05%)</title><rect x="431.3" y="1493" width="0.6" height="15.0" fill="rgb(219,87,7)" rx="2" ry="2" />
<text text-anchor="" x="434.30" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (4 samples, 0.01%)</title><rect x="980.2" y="1381" width="0.1" height="15.0" fill="rgb(228,8,42)" rx="2" ry="2" />
<text text-anchor="" x="983.20" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (10 samples, 0.02%)</title><rect x="1174.7" y="1605" width="0.3" height="15.0" fill="rgb(245,114,4)" rx="2" ry="2" />
<text text-anchor="" x="1177.73" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (14 samples, 0.03%)</title><rect x="397.2" y="1285" width="0.3" height="15.0" fill="rgb(209,132,0)" rx="2" ry="2" />
<text text-anchor="" x="400.19" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (5 samples, 0.01%)</title><rect x="735.6" y="1253" width="0.1" height="15.0" fill="rgb(234,195,34)" rx="2" ry="2" />
<text text-anchor="" x="738.58" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (9 samples, 0.02%)</title><rect x="515.9" y="1493" width="0.3" height="15.0" fill="rgb(252,211,44)" rx="2" ry="2" />
<text text-anchor="" x="518.93" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>save_pending_data (4 samples, 0.01%)</title><rect x="1054.2" y="1493" width="0.1" height="15.0" fill="rgb(206,105,29)" rx="2" ry="2" />
<text text-anchor="" x="1057.21" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_rollback_query (5 samples, 0.01%)</title><rect x="317.1" y="1477" width="0.2" height="15.0" fill="rgb(217,44,10)" rx="2" ry="2" />
<text text-anchor="" x="320.13" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (7 samples, 0.02%)</title><rect x="339.2" y="1493" width="0.2" height="15.0" fill="rgb(245,42,43)" rx="2" ry="2" />
<text text-anchor="" x="342.24" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (28 samples, 0.06%)</title><rect x="331.3" y="1381" width="0.7" height="15.0" fill="rgb(234,108,13)" rx="2" ry="2" />
<text text-anchor="" x="334.27" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_function (5 samples, 0.01%)</title><rect x="444.0" y="1285" width="0.1" height="15.0" fill="rgb(221,165,46)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_major_version (11 samples, 0.02%)</title><rect x="793.8" y="1493" width="0.3" height="15.0" fill="rgb(248,72,13)" rx="2" ry="2" />
<text text-anchor="" x="796.81" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1301" width="1.4" height="15.0" fill="rgb(224,188,8)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (4 samples, 0.01%)</title><rect x="565.5" y="1301" width="0.1" height="15.0" fill="rgb(249,65,2)" rx="2" ry="2" />
<text text-anchor="" x="568.50" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (16 samples, 0.03%)</title><rect x="1036.2" y="1509" width="0.5" height="15.0" fill="rgb(206,76,16)" rx="2" ry="2" />
<text text-anchor="" x="1039.24" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (606 samples, 1.32%)</title><rect x="586.3" y="1445" width="15.6" height="15.0" fill="rgb(223,73,26)" rx="2" ry="2" />
<text text-anchor="" x="589.30" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (27 samples, 0.06%)</title><rect x="329.1" y="1205" width="0.7" height="15.0" fill="rgb(224,228,43)" rx="2" ry="2" />
<text text-anchor="" x="332.06" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (10 samples, 0.02%)</title><rect x="409.7" y="1301" width="0.3" height="15.0" fill="rgb(210,143,37)" rx="2" ry="2" />
<text text-anchor="" x="412.73" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (57 samples, 0.12%)</title><rect x="1132.9" y="1621" width="1.4" height="15.0" fill="rgb(228,90,1)" rx="2" ry="2" />
<text text-anchor="" x="1135.88" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="844.9" y="1397" width="0.1" height="15.0" fill="rgb(207,30,51)" rx="2" ry="2" />
<text text-anchor="" x="847.92" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (8 samples, 0.02%)</title><rect x="401.8" y="1205" width="0.2" height="15.0" fill="rgb(222,158,53)" rx="2" ry="2" />
<text text-anchor="" x="404.79" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (10 samples, 0.02%)</title><rect x="400.8" y="1285" width="0.3" height="15.0" fill="rgb(244,70,47)" rx="2" ry="2" />
<text text-anchor="" x="403.84" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_command_success (4 samples, 0.01%)</title><rect x="97.4" y="1509" width="0.1" height="15.0" fill="rgb(243,158,15)" rx="2" ry="2" />
<text text-anchor="" x="100.41" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (887 samples, 1.93%)</title><rect x="1067.1" y="1365" width="22.8" height="15.0" fill="rgb(231,20,43)" rx="2" ry="2" />
<text text-anchor="" x="1070.14" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="821.7" y="1477" width="0.1" height="15.0" fill="rgb(222,118,9)" rx="2" ry="2" />
<text text-anchor="" x="824.65" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.02%)</title><rect x="740.3" y="1141" width="0.3" height="15.0" fill="rgb(211,58,29)" rx="2" ry="2" />
<text text-anchor="" x="743.31" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (16 samples, 0.03%)</title><rect x="511.4" y="1509" width="0.4" height="15.0" fill="rgb(222,131,19)" rx="2" ry="2" />
<text text-anchor="" x="514.44" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pollwake (101 samples, 0.22%)</title><rect x="83.5" y="1221" width="2.6" height="15.0" fill="rgb(252,181,14)" rx="2" ry="2" />
<text text-anchor="" x="86.53" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_parser (43 samples, 0.09%)</title><rect x="896.1" y="1493" width="1.1" height="15.0" fill="rgb(210,77,33)" rx="2" ry="2" />
<text text-anchor="" x="899.08" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="325" width="1.1" height="15.0" fill="rgb(241,219,52)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1125" width="1.4" height="15.0" fill="rgb(208,83,19)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (36 samples, 0.08%)</title><rect x="617.8" y="1509" width="0.9" height="15.0" fill="rgb(232,220,49)" rx="2" ry="2" />
<text text-anchor="" x="620.79" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (6 samples, 0.01%)</title><rect x="794.4" y="1493" width="0.2" height="15.0" fill="rgb(224,90,5)" rx="2" ry="2" />
<text text-anchor="" x="797.40" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_load_avg_se.isra.38 (17 samples, 0.04%)</title><rect x="780.2" y="1061" width="0.5" height="15.0" fill="rgb(227,115,32)" rx="2" ry="2" />
<text text-anchor="" x="783.21" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (13 samples, 0.03%)</title><rect x="66.5" y="1445" width="0.3" height="15.0" fill="rgb(247,213,8)" rx="2" ry="2" />
<text text-anchor="" x="69.48" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_function_single_interrupt (5 samples, 0.01%)</title><rect x="283.9" y="1285" width="0.2" height="15.0" fill="rgb(205,77,54)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (71 samples, 0.15%)</title><rect x="1021.1" y="1269" width="1.8" height="15.0" fill="rgb(229,169,52)" rx="2" ry="2" />
<text text-anchor="" x="1024.12" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (27 samples, 0.06%)</title><rect x="511.8" y="1509" width="0.7" height="15.0" fill="rgb(206,107,15)" rx="2" ry="2" />
<text text-anchor="" x="514.85" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (44 samples, 0.10%)</title><rect x="684.6" y="1269" width="1.2" height="15.0" fill="rgb(220,117,45)" rx="2" ry="2" />
<text text-anchor="" x="687.63" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read2 (27 samples, 0.06%)</title><rect x="147.9" y="1509" width="0.7" height="15.0" fill="rgb(223,5,32)" rx="2" ry="2" />
<text text-anchor="" x="150.95" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAllocZero (4 samples, 0.01%)</title><rect x="897.3" y="1477" width="0.1" height="15.0" fill="rgb(249,173,48)" rx="2" ry="2" />
<text text-anchor="" x="900.34" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_doing_extended_query_message (13 samples, 0.03%)</title><rect x="189.3" y="1509" width="0.3" height="15.0" fill="rgb(240,144,43)" rx="2" ry="2" />
<text text-anchor="" x="192.26" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (4 samples, 0.01%)</title><rect x="296.2" y="1477" width="0.1" height="15.0" fill="rgb(229,212,25)" rx="2" ry="2" />
<text text-anchor="" x="299.16" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (776 samples, 1.69%)</title><rect x="270.6" y="1413" width="20.0" height="15.0" fill="rgb(220,40,2)" rx="2" ry="2" />
<text text-anchor="" x="273.60" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (534 samples, 1.16%)</title><rect x="119.4" y="1493" width="13.7" height="15.0" fill="rgb(205,219,39)" rx="2" ry="2" />
<text text-anchor="" x="122.41" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (10 samples, 0.02%)</title><rect x="1014.1" y="1445" width="0.2" height="15.0" fill="rgb(216,199,12)" rx="2" ry="2" />
<text text-anchor="" x="1017.08" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_temp_table (375 samples, 0.82%)</title><rect x="857.3" y="1477" width="9.7" height="15.0" fill="rgb(213,1,17)" rx="2" ry="2" />
<text text-anchor="" x="860.31" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (9 samples, 0.02%)</title><rect x="240.1" y="1477" width="0.3" height="15.0" fill="rgb(208,168,11)" rx="2" ry="2" />
<text text-anchor="" x="243.14" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (13 samples, 0.03%)</title><rect x="994.9" y="1413" width="0.3" height="15.0" fill="rgb(219,189,19)" rx="2" ry="2" />
<text text-anchor="" x="997.88" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.01%)</title><rect x="86.1" y="1237" width="0.2" height="15.0" fill="rgb(234,156,15)" rx="2" ry="2" />
<text text-anchor="" x="89.12" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (6 samples, 0.01%)</title><rect x="100.3" y="1493" width="0.2" height="15.0" fill="rgb(242,199,42)" rx="2" ry="2" />
<text text-anchor="" x="103.34" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (6 samples, 0.01%)</title><rect x="122.3" y="1349" width="0.1" height="15.0" fill="rgb(230,19,27)" rx="2" ry="2" />
<text text-anchor="" x="125.29" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_pull_out (10 samples, 0.02%)</title><rect x="161.1" y="1525" width="0.2" height="15.0" fill="rgb(205,71,20)" rx="2" ry="2" />
<text text-anchor="" x="164.06" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1109" width="1.4" height="15.0" fill="rgb(221,149,25)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (21 samples, 0.05%)</title><rect x="366.6" y="1365" width="0.5" height="15.0" fill="rgb(230,156,43)" rx="2" ry="2" />
<text text-anchor="" x="369.57" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (13 samples, 0.03%)</title><rect x="156.4" y="1509" width="0.3" height="15.0" fill="rgb(209,50,33)" rx="2" ry="2" />
<text text-anchor="" x="159.38" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmpxchg_double_slab.isra.61 (21 samples, 0.05%)</title><rect x="1075.1" y="1221" width="0.6" height="15.0" fill="rgb(237,51,42)" rx="2" ry="2" />
<text text-anchor="" x="1078.14" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.01%)</title><rect x="398.2" y="1285" width="0.2" height="15.0" fill="rgb(221,7,25)" rx="2" ry="2" />
<text text-anchor="" x="401.24" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_temp_table (164 samples, 0.36%)</title><rect x="860.3" y="1397" width="4.2" height="15.0" fill="rgb(205,177,42)" rx="2" ry="2" />
<text text-anchor="" x="863.27" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stack_object (10 samples, 0.02%)</title><rect x="604.2" y="1429" width="0.3" height="15.0" fill="rgb(253,67,44)" rx="2" ry="2" />
<text text-anchor="" x="607.22" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (11 samples, 0.02%)</title><rect x="506.8" y="1461" width="0.3" height="15.0" fill="rgb(243,187,46)" rx="2" ry="2" />
<text text-anchor="" x="509.81" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (7 samples, 0.02%)</title><rect x="1022.9" y="1269" width="0.2" height="15.0" fill="rgb(236,147,44)" rx="2" ry="2" />
<text text-anchor="" x="1025.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (4 samples, 0.01%)</title><rect x="1043.5" y="1445" width="0.1" height="15.0" fill="rgb(249,11,16)" rx="2" ry="2" />
<text text-anchor="" x="1046.46" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (560 samples, 1.22%)</title><rect x="842.2" y="1461" width="14.4" height="15.0" fill="rgb(249,40,14)" rx="2" ry="2" />
<text text-anchor="" x="845.22" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (10 samples, 0.02%)</title><rect x="11.5" y="293" width="0.3" height="15.0" fill="rgb(217,132,45)" rx="2" ry="2" />
<text text-anchor="" x="14.54" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (10 samples, 0.02%)</title><rect x="1120.4" y="1525" width="0.3" height="15.0" fill="rgb(247,8,33)" rx="2" ry="2" />
<text text-anchor="" x="1123.43" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (25 samples, 0.05%)</title><rect x="188.6" y="1509" width="0.7" height="15.0" fill="rgb(229,135,38)" rx="2" ry="2" />
<text text-anchor="" x="191.62" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>scanner_init (283 samples, 0.62%)</title><rect x="1002.3" y="1477" width="7.3" height="15.0" fill="rgb(254,84,28)" rx="2" ry="2" />
<text text-anchor="" x="1005.31" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (316 samples, 0.69%)</title><rect x="394.9" y="1365" width="8.2" height="15.0" fill="rgb(241,2,14)" rx="2" ry="2" />
<text text-anchor="" x="397.93" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pollwait (7 samples, 0.02%)</title><rect x="696.3" y="1333" width="0.2" height="15.0" fill="rgb(246,114,10)" rx="2" ry="2" />
<text text-anchor="" x="699.28" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>yy_get_previous_state (15 samples, 0.03%)</title><rect x="986.1" y="1429" width="0.4" height="15.0" fill="rgb(239,26,10)" rx="2" ry="2" />
<text text-anchor="" x="989.08" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (17 samples, 0.04%)</title><rect x="382.4" y="1493" width="0.4" height="15.0" fill="rgb(226,102,51)" rx="2" ry="2" />
<text text-anchor="" x="385.38" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apic_timer_interrupt (10 samples, 0.02%)</title><rect x="943.5" y="1461" width="0.2" height="15.0" fill="rgb(226,221,20)" rx="2" ry="2" />
<text text-anchor="" x="946.49" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (18 samples, 0.04%)</title><rect x="1024.2" y="1333" width="0.4" height="15.0" fill="rgb(230,35,22)" rx="2" ry="2" />
<text text-anchor="" x="1027.18" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (86 samples, 0.19%)</title><rect x="839.7" y="1429" width="2.2" height="15.0" fill="rgb(231,182,30)" rx="2" ry="2" />
<text text-anchor="" x="842.65" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (4 samples, 0.01%)</title><rect x="473.5" y="1125" width="0.1" height="15.0" fill="rgb(213,117,36)" rx="2" ry="2" />
<text text-anchor="" x="476.46" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcasecmp_l_avx (88 samples, 0.19%)</title><rect x="845.4" y="1381" width="2.2" height="15.0" fill="rgb(211,108,43)" rx="2" ry="2" />
<text text-anchor="" x="848.36" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (29 samples, 0.06%)</title><rect x="681.3" y="1493" width="0.8" height="15.0" fill="rgb(248,44,30)" rx="2" ry="2" />
<text text-anchor="" x="684.34" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (244 samples, 0.53%)</title><rect x="248.1" y="1301" width="6.3" height="15.0" fill="rgb(209,41,51)" rx="2" ry="2" />
<text text-anchor="" x="251.08" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (18 samples, 0.04%)</title><rect x="489.1" y="1269" width="0.4" height="15.0" fill="rgb(254,14,39)" rx="2" ry="2" />
<text text-anchor="" x="492.07" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (80 samples, 0.17%)</title><rect x="683.8" y="1301" width="2.1" height="15.0" fill="rgb(235,135,29)" rx="2" ry="2" />
<text text-anchor="" x="686.83" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (18 samples, 0.04%)</title><rect x="89.7" y="1445" width="0.5" height="15.0" fill="rgb(219,127,41)" rx="2" ry="2" />
<text text-anchor="" x="92.69" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (11 samples, 0.02%)</title><rect x="1031.5" y="1477" width="0.2" height="15.0" fill="rgb(211,227,36)" rx="2" ry="2" />
<text text-anchor="" x="1034.46" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (4 samples, 0.01%)</title><rect x="178.9" y="1381" width="0.1" height="15.0" fill="rgb(215,120,31)" rx="2" ry="2" />
<text text-anchor="" x="181.88" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (19 samples, 0.04%)</title><rect x="490.1" y="1317" width="0.5" height="15.0" fill="rgb(237,175,0)" rx="2" ry="2" />
<text text-anchor="" x="493.12" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (76 samples, 0.17%)</title><rect x="500.7" y="1525" width="2.0" height="15.0" fill="rgb(252,158,25)" rx="2" ry="2" />
<text text-anchor="" x="503.72" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unread (5 samples, 0.01%)</title><rect x="681.2" y="1493" width="0.1" height="15.0" fill="rgb(245,199,8)" rx="2" ry="2" />
<text text-anchor="" x="684.21" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pollwait (15 samples, 0.03%)</title><rect x="1048.2" y="1381" width="0.4" height="15.0" fill="rgb(210,121,18)" rx="2" ry="2" />
<text text-anchor="" x="1051.17" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (4 samples, 0.01%)</title><rect x="222.5" y="1477" width="0.1" height="15.0" fill="rgb(240,122,41)" rx="2" ry="2" />
<text text-anchor="" x="225.48" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (30 samples, 0.07%)</title><rect x="432.8" y="1509" width="0.8" height="15.0" fill="rgb(227,170,36)" rx="2" ry="2" />
<text text-anchor="" x="435.79" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (97 samples, 0.21%)</title><rect x="328.1" y="1301" width="2.5" height="15.0" fill="rgb(250,209,0)" rx="2" ry="2" />
<text text-anchor="" x="331.09" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (325 samples, 0.71%)</title><rect x="857.4" y="1461" width="8.4" height="15.0" fill="rgb(235,89,45)" rx="2" ry="2" />
<text text-anchor="" x="860.44" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (13 samples, 0.03%)</title><rect x="438.7" y="1493" width="0.4" height="15.0" fill="rgb(241,150,8)" rx="2" ry="2" />
<text text-anchor="" x="441.73" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (9 samples, 0.02%)</title><rect x="126.6" y="1253" width="0.2" height="15.0" fill="rgb(251,73,42)" rx="2" ry="2" />
<text text-anchor="" x="129.61" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (14 samples, 0.03%)</title><rect x="73.4" y="1285" width="0.4" height="15.0" fill="rgb(221,219,37)" rx="2" ry="2" />
<text text-anchor="" x="76.45" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm (6 samples, 0.01%)</title><rect x="283.5" y="1285" width="0.2" height="15.0" fill="rgb(205,150,38)" rx="2" ry="2" />
<text text-anchor="" x="286.51" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (12 samples, 0.03%)</title><rect x="145.3" y="1509" width="0.3" height="15.0" fill="rgb(230,13,37)" rx="2" ry="2" />
<text text-anchor="" x="148.33" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (8 samples, 0.02%)</title><rect x="751.6" y="1301" width="0.2" height="15.0" fill="rgb(242,221,45)" rx="2" ry="2" />
<text text-anchor="" x="754.60" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetReset (43 samples, 0.09%)</title><rect x="43.8" y="1525" width="1.1" height="15.0" fill="rgb(253,17,5)" rx="2" ry="2" />
<text text-anchor="" x="46.78" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcasecmp_l_avx (78 samples, 0.17%)</title><rect x="872.3" y="1381" width="2.0" height="15.0" fill="rgb(242,21,8)" rx="2" ry="2" />
<text text-anchor="" x="875.30" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read2 (25 samples, 0.05%)</title><rect x="656.4" y="1477" width="0.6" height="15.0" fill="rgb(230,128,7)" rx="2" ry="2" />
<text text-anchor="" x="659.38" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (9 samples, 0.02%)</title><rect x="710.0" y="1493" width="0.2" height="15.0" fill="rgb(254,171,13)" rx="2" ry="2" />
<text text-anchor="" x="712.95" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapgs_restore_regs_and_return_to_usermode (4 samples, 0.01%)</title><rect x="296.2" y="1509" width="0.1" height="15.0" fill="rgb(208,14,30)" rx="2" ry="2" />
<text text-anchor="" x="299.16" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (11 samples, 0.02%)</title><rect x="415.3" y="1173" width="0.3" height="15.0" fill="rgb(213,94,33)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (16 samples, 0.03%)</title><rect x="334.3" y="1461" width="0.4" height="15.0" fill="rgb(250,24,8)" rx="2" ry="2" />
<text text-anchor="" x="337.31" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (173 samples, 0.38%)</title><rect x="609.3" y="1525" width="4.5" height="15.0" fill="rgb(244,229,54)" rx="2" ry="2" />
<text text-anchor="" x="612.31" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (8 samples, 0.02%)</title><rect x="1027.9" y="1413" width="0.2" height="15.0" fill="rgb(224,25,22)" rx="2" ry="2" />
<text text-anchor="" x="1030.86" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (8 samples, 0.02%)</title><rect x="408.6" y="1317" width="0.2" height="15.0" fill="rgb(236,215,32)" rx="2" ry="2" />
<text text-anchor="" x="411.55" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_freewait (5 samples, 0.01%)</title><rect x="602.3" y="1461" width="0.2" height="15.0" fill="rgb(214,178,33)" rx="2" ry="2" />
<text text-anchor="" x="605.34" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="65.0" y="1509" width="0.1" height="15.0" fill="rgb(228,19,29)" rx="2" ry="2" />
<text text-anchor="" x="67.99" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleForwardToFrontend (55 samples, 0.12%)</title><rect x="99.5" y="1509" width="1.4" height="15.0" fill="rgb(229,217,24)" rx="2" ry="2" />
<text text-anchor="" x="102.46" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (5 samples, 0.01%)</title><rect x="1075.9" y="1269" width="0.1" height="15.0" fill="rgb(210,129,8)" rx="2" ry="2" />
<text text-anchor="" x="1078.86" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (3,181 samples, 6.93%)</title><rect x="526.2" y="1525" width="81.8" height="15.0" fill="rgb(214,185,28)" rx="2" ry="2" />
<text text-anchor="" x="529.24" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >entry_SYS..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (9 samples, 0.02%)</title><rect x="321.6" y="1317" width="0.2" height="15.0" fill="rgb(230,136,48)" rx="2" ry="2" />
<text text-anchor="" x="324.58" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (360 samples, 0.78%)</title><rect x="732.4" y="1349" width="9.3" height="15.0" fill="rgb(223,227,21)" rx="2" ry="2" />
<text text-anchor="" x="735.40" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (195 samples, 0.42%)</title><rect x="77.0" y="1253" width="5.0" height="15.0" fill="rgb(238,28,24)" rx="2" ry="2" />
<text text-anchor="" x="80.00" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (17 samples, 0.04%)</title><rect x="372.9" y="1461" width="0.5" height="15.0" fill="rgb(233,30,12)" rx="2" ry="2" />
<text text-anchor="" x="375.95" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (11 samples, 0.02%)</title><rect x="129.2" y="1221" width="0.3" height="15.0" fill="rgb(231,131,42)" rx="2" ry="2" />
<text text-anchor="" x="132.18" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (319 samples, 0.69%)</title><rect x="394.9" y="1381" width="8.2" height="15.0" fill="rgb(246,151,29)" rx="2" ry="2" />
<text text-anchor="" x="397.93" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (142 samples, 0.31%)</title><rect x="683.5" y="1333" width="3.6" height="15.0" fill="rgb(210,204,54)" rx="2" ry="2" />
<text text-anchor="" x="686.47" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (10 samples, 0.02%)</title><rect x="786.0" y="1237" width="0.3" height="15.0" fill="rgb(212,196,43)" rx="2" ry="2" />
<text text-anchor="" x="789.05" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (24 samples, 0.05%)</title><rect x="380.8" y="1493" width="0.6" height="15.0" fill="rgb(212,42,17)" rx="2" ry="2" />
<text text-anchor="" x="383.76" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (15 samples, 0.03%)</title><rect x="224.3" y="1461" width="0.4" height="15.0" fill="rgb(209,77,12)" rx="2" ry="2" />
<text text-anchor="" x="227.30" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (41 samples, 0.09%)</title><rect x="1091.4" y="1381" width="1.0" height="15.0" fill="rgb(246,9,19)" rx="2" ry="2" />
<text text-anchor="" x="1094.36" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (117 samples, 0.25%)</title><rect x="1185.1" y="1653" width="3.0" height="15.0" fill="rgb(248,162,19)" rx="2" ry="2" />
<text text-anchor="" x="1188.14" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>___slab_alloc (4 samples, 0.01%)</title><rect x="361.8" y="1221" width="0.1" height="15.0" fill="rgb(231,64,23)" rx="2" ry="2" />
<text text-anchor="" x="364.84" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_and_flush (5 samples, 0.01%)</title><rect x="517.1" y="1525" width="0.2" height="15.0" fill="rgb(227,191,23)" rx="2" ry="2" />
<text text-anchor="" x="520.14" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (4 samples, 0.01%)</title><rect x="375.8" y="1461" width="0.1" height="15.0" fill="rgb(207,56,12)" rx="2" ry="2" />
<text text-anchor="" x="378.77" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (5 samples, 0.01%)</title><rect x="356.5" y="1317" width="0.1" height="15.0" fill="rgb(208,86,7)" rx="2" ry="2" />
<text text-anchor="" x="359.49" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (58 samples, 0.13%)</title><rect x="1029.0" y="1397" width="1.5" height="15.0" fill="rgb(225,132,28)" rx="2" ry="2" />
<text text-anchor="" x="1031.99" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location at plt (4 samples, 0.01%)</title><rect x="318.7" y="1461" width="0.1" height="15.0" fill="rgb(214,60,17)" rx="2" ry="2" />
<text text-anchor="" x="321.70" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (9 samples, 0.02%)</title><rect x="210.3" y="1445" width="0.2" height="15.0" fill="rgb(221,30,41)" rx="2" ry="2" />
<text text-anchor="" x="213.29" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm (74 samples, 0.16%)</title><rect x="1144.8" y="1461" width="1.9" height="15.0" fill="rgb(243,53,27)" rx="2" ry="2" />
<text text-anchor="" x="1147.78" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (184 samples, 0.40%)</title><rect x="230.5" y="1509" width="4.8" height="15.0" fill="rgb(234,163,0)" rx="2" ry="2" />
<text text-anchor="" x="233.55" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (20 samples, 0.04%)</title><rect x="424.2" y="1461" width="0.5" height="15.0" fill="rgb(228,214,19)" rx="2" ry="2" />
<text text-anchor="" x="427.18" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reweight_entity (29 samples, 0.06%)</title><rect x="781.8" y="1077" width="0.8" height="15.0" fill="rgb(211,123,20)" rx="2" ry="2" />
<text text-anchor="" x="784.81" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_list (34 samples, 0.07%)</title><rect x="998.7" y="1429" width="0.9" height="15.0" fill="rgb(247,140,45)" rx="2" ry="2" />
<text text-anchor="" x="1001.73" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_queued_spin_lock_slowpath (27 samples, 0.06%)</title><rect x="765.5" y="1125" width="0.7" height="15.0" fill="rgb(237,9,29)" rx="2" ry="2" />
<text text-anchor="" x="768.51" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to (11 samples, 0.02%)</title><rect x="13.0" y="1605" width="0.3" height="15.0" fill="rgb(247,104,18)" rx="2" ry="2" />
<text text-anchor="" x="16.03" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (4 samples, 0.01%)</title><rect x="1050.0" y="1381" width="0.1" height="15.0" fill="rgb(238,179,40)" rx="2" ry="2" />
<text text-anchor="" x="1052.97" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (6 samples, 0.01%)</title><rect x="73.9" y="1285" width="0.2" height="15.0" fill="rgb(225,106,26)" rx="2" ry="2" />
<text text-anchor="" x="76.94" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (99 samples, 0.22%)</title><rect x="1126.3" y="1621" width="2.5" height="15.0" fill="rgb(223,119,18)" rx="2" ry="2" />
<text text-anchor="" x="1129.27" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1205" width="1.4" height="15.0" fill="rgb(213,137,15)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_entity (4 samples, 0.01%)</title><rect x="577.0" y="1349" width="0.1" height="15.0" fill="rgb(217,13,44)" rx="2" ry="2" />
<text text-anchor="" x="579.99" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (8 samples, 0.02%)</title><rect x="398.2" y="1301" width="0.2" height="15.0" fill="rgb(214,45,28)" rx="2" ry="2" />
<text text-anchor="" x="401.19" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_extended_protocol_message (649 samples, 1.41%)</title><rect x="353.7" y="1493" width="16.7" height="15.0" fill="rgb(226,184,20)" rx="2" ry="2" />
<text text-anchor="" x="356.72" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (15 samples, 0.03%)</title><rect x="452.5" y="1317" width="0.4" height="15.0" fill="rgb(246,133,8)" rx="2" ry="2" />
<text text-anchor="" x="455.51" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_create (92 samples, 0.20%)</title><rect x="812.4" y="1493" width="2.3" height="15.0" fill="rgb(218,15,33)" rx="2" ry="2" />
<text text-anchor="" x="815.37" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree at GLIBC_2.2.5 (10 samples, 0.02%)</title><rect x="311.6" y="1429" width="0.3" height="15.0" fill="rgb(210,58,39)" rx="2" ry="2" />
<text text-anchor="" x="314.61" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (8 samples, 0.02%)</title><rect x="489.5" y="1269" width="0.2" height="15.0" fill="rgb(245,115,32)" rx="2" ry="2" />
<text text-anchor="" x="492.53" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (9 samples, 0.02%)</title><rect x="13.4" y="1509" width="0.2" height="15.0" fill="rgb(241,218,6)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (118 samples, 0.26%)</title><rect x="176.2" y="1509" width="3.1" height="15.0" fill="rgb(208,120,9)" rx="2" ry="2" />
<text text-anchor="" x="179.23" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__indirect_thunk_start (4 samples, 0.01%)</title><rect x="122.2" y="1349" width="0.1" height="15.0" fill="rgb(235,81,49)" rx="2" ry="2" />
<text text-anchor="" x="125.19" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to_asm (40 samples, 0.09%)</title><rect x="1142.2" y="1637" width="1.1" height="15.0" fill="rgb(251,32,1)" rx="2" ry="2" />
<text text-anchor="" x="1145.23" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (91 samples, 0.20%)</title><rect x="398.5" y="1285" width="2.3" height="15.0" fill="rgb(224,147,47)" rx="2" ry="2" />
<text text-anchor="" x="401.50" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (4 samples, 0.01%)</title><rect x="98.1" y="1509" width="0.1" height="15.0" fill="rgb(207,166,21)" rx="2" ry="2" />
<text text-anchor="" x="101.05" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (10 samples, 0.02%)</title><rect x="764.7" y="1157" width="0.2" height="15.0" fill="rgb(220,184,6)" rx="2" ry="2" />
<text text-anchor="" x="767.66" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (9 samples, 0.02%)</title><rect x="628.9" y="1541" width="0.2" height="15.0" fill="rgb(211,181,46)" rx="2" ry="2" />
<text text-anchor="" x="631.87" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (7 samples, 0.02%)</title><rect x="787.4" y="1349" width="0.2" height="15.0" fill="rgb(206,34,35)" rx="2" ry="2" />
<text text-anchor="" x="790.41" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (113 samples, 0.25%)</title><rect x="692.7" y="1301" width="2.9" height="15.0" fill="rgb(245,70,45)" rx="2" ry="2" />
<text text-anchor="" x="695.68" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (38 samples, 0.08%)</title><rect x="668.3" y="1493" width="1.0" height="15.0" fill="rgb(240,55,46)" rx="2" ry="2" />
<text text-anchor="" x="671.33" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1157" width="1.4" height="15.0" fill="rgb(239,46,22)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (80 samples, 0.17%)</title><rect x="777.3" y="1077" width="2.1" height="15.0" fill="rgb(222,92,10)" rx="2" ry="2" />
<text text-anchor="" x="780.31" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (123 samples, 0.27%)</title><rect x="736.0" y="1285" width="3.2" height="15.0" fill="rgb(211,228,30)" rx="2" ry="2" />
<text text-anchor="" x="739.02" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_query (4 samples, 0.01%)</title><rect x="95.1" y="1477" width="0.1" height="15.0" fill="rgb(241,70,50)" rx="2" ry="2" />
<text text-anchor="" x="98.15" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleForwardToBackend (2,337 samples, 5.09%)</title><rect x="436.8" y="1525" width="60.0" height="15.0" fill="rgb(208,121,2)" rx="2" ry="2" />
<text text-anchor="" x="439.75" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Simple..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (391 samples, 0.85%)</title><rect x="355.9" y="1333" width="10.0" height="15.0" fill="rgb(239,116,24)" rx="2" ry="2" />
<text text-anchor="" x="358.85" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (64 samples, 0.14%)</title><rect x="367.2" y="1445" width="1.7" height="15.0" fill="rgb(246,66,5)" rx="2" ry="2" />
<text text-anchor="" x="370.21" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="515.2" y="1509" width="0.1" height="15.0" fill="rgb(234,7,0)" rx="2" ry="2" />
<text text-anchor="" x="518.19" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter (22 samples, 0.05%)</title><rect x="124.4" y="1317" width="0.6" height="15.0" fill="rgb(242,81,45)" rx="2" ry="2" />
<text text-anchor="" x="127.40" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (10 samples, 0.02%)</title><rect x="688.5" y="1477" width="0.3" height="15.0" fill="rgb(240,157,52)" rx="2" ry="2" />
<text text-anchor="" x="691.51" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (6 samples, 0.01%)</title><rect x="283.4" y="1301" width="0.1" height="15.0" fill="rgb(242,105,6)" rx="2" ry="2" />
<text text-anchor="" x="286.35" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProcessBackendResponse (10 samples, 0.02%)</title><rect x="29.9" y="1557" width="0.2" height="15.0" fill="rgb(232,202,46)" rx="2" ry="2" />
<text text-anchor="" x="32.87" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (24 samples, 0.05%)</title><rect x="1025.0" y="1285" width="0.6" height="15.0" fill="rgb(231,119,13)" rx="2" ry="2" />
<text text-anchor="" x="1027.95" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.01%)</title><rect x="1064.5" y="1429" width="0.1" height="15.0" fill="rgb(227,0,32)" rx="2" ry="2" />
<text text-anchor="" x="1067.47" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (10 samples, 0.02%)</title><rect x="750.3" y="1301" width="0.3" height="15.0" fill="rgb(231,196,53)" rx="2" ry="2" />
<text text-anchor="" x="753.34" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pgpool (45,900 samples, 100.00%)</title><rect x="10.0" y="1669" width="1180.0" height="15.0" fill="rgb(222,229,42)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1679.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >pgpool</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (297 samples, 0.65%)</title><rect x="733.8" y="1301" width="7.7" height="15.0" fill="rgb(247,58,43)" rx="2" ry="2" />
<text text-anchor="" x="736.84" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcasecmp_l_avx (19 samples, 0.04%)</title><rect x="874.7" y="1365" width="0.5" height="15.0" fill="rgb(205,36,0)" rx="2" ry="2" />
<text text-anchor="" x="877.69" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (74 samples, 0.16%)</title><rect x="291.3" y="1461" width="1.9" height="15.0" fill="rgb(250,77,53)" rx="2" ry="2" />
<text text-anchor="" x="294.32" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (504 samples, 1.10%)</title><rect x="354.3" y="1445" width="12.9" height="15.0" fill="rgb(252,17,51)" rx="2" ry="2" />
<text text-anchor="" x="357.26" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (10 samples, 0.02%)</title><rect x="832.5" y="1461" width="0.3" height="15.0" fill="rgb(239,29,18)" rx="2" ry="2" />
<text text-anchor="" x="835.53" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (9 samples, 0.02%)</title><rect x="263.4" y="1477" width="0.3" height="15.0" fill="rgb(219,61,50)" rx="2" ry="2" />
<text text-anchor="" x="266.43" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (145 samples, 0.32%)</title><rect x="1046.0" y="1413" width="3.7" height="15.0" fill="rgb(224,67,7)" rx="2" ry="2" />
<text text-anchor="" x="1048.98" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProcessBackendResponse (7 samples, 0.02%)</title><rect x="10.5" y="1621" width="0.2" height="15.0" fill="rgb(254,154,10)" rx="2" ry="2" />
<text text-anchor="" x="13.51" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>time at plt (7 samples, 0.02%)</title><rect x="852.4" y="1365" width="0.2" height="15.0" fill="rgb(210,210,32)" rx="2" ry="2" />
<text text-anchor="" x="855.40" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextStrdup (17 samples, 0.04%)</title><rect x="314.8" y="1477" width="0.4" height="15.0" fill="rgb(218,1,5)" rx="2" ry="2" />
<text text-anchor="" x="317.77" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (18 samples, 0.04%)</title><rect x="679.4" y="1445" width="0.5" height="15.0" fill="rgb(228,198,22)" rx="2" ry="2" />
<text text-anchor="" x="682.44" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseComplete (251 samples, 0.55%)</title><rect x="654.0" y="1509" width="6.4" height="15.0" fill="rgb(234,103,30)" rx="2" ry="2" />
<text text-anchor="" x="656.96" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (4 samples, 0.01%)</title><rect x="85.5" y="1109" width="0.1" height="15.0" fill="rgb(205,103,53)" rx="2" ry="2" />
<text text-anchor="" x="88.53" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (42 samples, 0.09%)</title><rect x="1188.3" y="1653" width="1.1" height="15.0" fill="rgb(217,199,53)" rx="2" ry="2" />
<text text-anchor="" x="1191.28" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (947 samples, 2.06%)</title><rect x="1065.9" y="1397" width="24.4" height="15.0" fill="rgb(245,27,10)" rx="2" ry="2" />
<text text-anchor="" x="1068.91" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >n..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (9 samples, 0.02%)</title><rect x="1064.8" y="1413" width="0.2" height="15.0" fill="rgb(217,176,15)" rx="2" ry="2" />
<text text-anchor="" x="1067.75" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (1,301 samples, 2.83%)</title><rect x="552.0" y="1445" width="33.4" height="15.0" fill="rgb(205,193,37)" rx="2" ry="2" />
<text text-anchor="" x="555.00" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >po..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (11 samples, 0.02%)</title><rect x="1064.7" y="1429" width="0.3" height="15.0" fill="rgb(235,201,4)" rx="2" ry="2" />
<text text-anchor="" x="1067.70" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="254.0" y="1205" width="0.1" height="15.0" fill="rgb(252,205,41)" rx="2" ry="2" />
<text text-anchor="" x="256.97" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (15 samples, 0.03%)</title><rect x="1006.4" y="1429" width="0.4" height="15.0" fill="rgb(224,9,18)" rx="2" ry="2" />
<text text-anchor="" x="1009.37" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (6 samples, 0.01%)</title><rect x="87.4" y="1365" width="0.1" height="15.0" fill="rgb(239,182,53)" rx="2" ry="2" />
<text text-anchor="" x="90.38" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (5 samples, 0.01%)</title><rect x="403.5" y="1349" width="0.1" height="15.0" fill="rgb(218,15,50)" rx="2" ry="2" />
<text text-anchor="" x="406.49" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (8 samples, 0.02%)</title><rect x="178.0" y="1189" width="0.2" height="15.0" fill="rgb(231,66,28)" rx="2" ry="2" />
<text text-anchor="" x="181.00" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>temp_table_walker (9 samples, 0.02%)</title><rect x="865.4" y="1397" width="0.2" height="15.0" fill="rgb(226,207,7)" rx="2" ry="2" />
<text text-anchor="" x="868.36" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (864 samples, 1.88%)</title><rect x="67.5" y="1445" width="22.2" height="15.0" fill="rgb(209,206,28)" rx="2" ry="2" />
<text text-anchor="" x="70.46" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (57 samples, 0.12%)</title><rect x="1123.3" y="1525" width="1.5" height="15.0" fill="rgb(245,112,25)" rx="2" ry="2" />
<text text-anchor="" x="1126.31" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_length (8 samples, 0.02%)</title><rect x="678.8" y="1477" width="0.3" height="15.0" fill="rgb(238,210,29)" rx="2" ry="2" />
<text text-anchor="" x="681.85" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (45 samples, 0.10%)</title><rect x="805.6" y="1461" width="1.2" height="15.0" fill="rgb(249,62,34)" rx="2" ry="2" />
<text text-anchor="" x="808.61" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (4 samples, 0.01%)</title><rect x="329.6" y="1125" width="0.1" height="15.0" fill="rgb(205,208,20)" rx="2" ry="2" />
<text text-anchor="" x="332.58" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (12 samples, 0.03%)</title><rect x="257.4" y="1269" width="0.3" height="15.0" fill="rgb(211,52,14)" rx="2" ry="2" />
<text text-anchor="" x="260.36" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (7 samples, 0.02%)</title><rect x="397.3" y="1269" width="0.2" height="15.0" fill="rgb(212,133,46)" rx="2" ry="2" />
<text text-anchor="" x="400.34" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (29 samples, 0.06%)</title><rect x="68.4" y="1381" width="0.8" height="15.0" fill="rgb(227,112,28)" rx="2" ry="2" />
<text text-anchor="" x="71.43" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (15 samples, 0.03%)</title><rect x="572.1" y="1365" width="0.4" height="15.0" fill="rgb(230,182,12)" rx="2" ry="2" />
<text text-anchor="" x="575.08" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>insertinto_or_locking_clause_walker (63 samples, 0.14%)</title><rect x="885.4" y="1445" width="1.6" height="15.0" fill="rgb(218,112,33)" rx="2" ry="2" />
<text text-anchor="" x="888.39" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_query_set (5 samples, 0.01%)</title><rect x="509.0" y="1525" width="0.2" height="15.0" fill="rgb(228,220,20)" rx="2" ry="2" />
<text text-anchor="" x="512.04" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (12 samples, 0.03%)</title><rect x="1108.1" y="1365" width="0.3" height="15.0" fill="rgb(253,196,51)" rx="2" ry="2" />
<text text-anchor="" x="1111.07" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (4 samples, 0.01%)</title><rect x="331.4" y="1365" width="0.1" height="15.0" fill="rgb(251,165,4)" rx="2" ry="2" />
<text text-anchor="" x="334.43" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_lock (31 samples, 0.07%)</title><rect x="1083.4" y="1317" width="0.8" height="15.0" fill="rgb(235,139,19)" rx="2" ry="2" />
<text text-anchor="" x="1086.39" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (398 samples, 0.87%)</title><rect x="1102.7" y="1445" width="10.3" height="15.0" fill="rgb(217,198,27)" rx="2" ry="2" />
<text text-anchor="" x="1105.72" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (4 samples, 0.01%)</title><rect x="686.7" y="1253" width="0.1" height="15.0" fill="rgb(234,57,30)" rx="2" ry="2" />
<text text-anchor="" x="689.71" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (55 samples, 0.12%)</title><rect x="779.4" y="1077" width="1.4" height="15.0" fill="rgb(226,5,47)" rx="2" ry="2" />
<text text-anchor="" x="782.37" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (17 samples, 0.04%)</title><rect x="1111.0" y="1381" width="0.4" height="15.0" fill="rgb(231,73,7)" rx="2" ry="2" />
<text text-anchor="" x="1113.97" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (19 samples, 0.04%)</title><rect x="703.4" y="1493" width="0.5" height="15.0" fill="rgb(222,19,40)" rx="2" ry="2" />
<text text-anchor="" x="706.45" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="100.8" y="1461" width="0.1" height="15.0" fill="rgb(246,173,13)" rx="2" ry="2" />
<text text-anchor="" x="103.78" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (25 samples, 0.05%)</title><rect x="222.9" y="1445" width="0.7" height="15.0" fill="rgb(212,51,46)" rx="2" ry="2" />
<text text-anchor="" x="225.94" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset_erms (38 samples, 0.08%)</title><rect x="1111.7" y="1413" width="1.0" height="15.0" fill="rgb(223,68,24)" rx="2" ry="2" />
<text text-anchor="" x="1114.74" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (195 samples, 0.42%)</title><rect x="682.9" y="1429" width="5.0" height="15.0" fill="rgb(241,15,25)" rx="2" ry="2" />
<text text-anchor="" x="685.88" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_head_message (136 samples, 0.30%)</title><rect x="672.3" y="1493" width="3.5" height="15.0" fill="rgb(251,160,12)" rx="2" ry="2" />
<text text-anchor="" x="675.27" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (13 samples, 0.03%)</title><rect x="223.0" y="1429" width="0.4" height="15.0" fill="rgb(244,187,37)" rx="2" ry="2" />
<text text-anchor="" x="226.04" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (165 samples, 0.36%)</title><rect x="279.1" y="1301" width="4.3" height="15.0" fill="rgb(227,35,21)" rx="2" ry="2" />
<text text-anchor="" x="282.11" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (5 samples, 0.01%)</title><rect x="670.0" y="1477" width="0.1" height="15.0" fill="rgb(240,60,32)" rx="2" ry="2" />
<text text-anchor="" x="673.00" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (25 samples, 0.05%)</title><rect x="999.0" y="1413" width="0.6" height="15.0" fill="rgb(217,221,32)" rx="2" ry="2" />
<text text-anchor="" x="1001.96" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (6 samples, 0.01%)</title><rect x="865.2" y="1365" width="0.2" height="15.0" fill="rgb(222,209,31)" rx="2" ry="2" />
<text text-anchor="" x="868.20" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (386 samples, 0.84%)</title><rect x="407.8" y="1397" width="9.9" height="15.0" fill="rgb(215,16,10)" rx="2" ry="2" />
<text text-anchor="" x="410.81" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>maybe_add_creds (4 samples, 0.01%)</title><rect x="733.4" y="1301" width="0.1" height="15.0" fill="rgb(207,39,14)" rx="2" ry="2" />
<text text-anchor="" x="736.40" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (8 samples, 0.02%)</title><rect x="496.1" y="1461" width="0.2" height="15.0" fill="rgb(207,207,5)" rx="2" ry="2" />
<text text-anchor="" x="499.14" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.02%)</title><rect x="12.6" y="1573" width="0.2" height="15.0" fill="rgb(209,23,5)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_get_previous_message (8 samples, 0.02%)</title><rect x="662.4" y="1509" width="0.3" height="15.0" fill="rgb(232,112,47)" rx="2" ry="2" />
<text text-anchor="" x="665.44" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (5 samples, 0.01%)</title><rect x="737.0" y="1205" width="0.2" height="15.0" fill="rgb(250,124,3)" rx="2" ry="2" />
<text text-anchor="" x="740.02" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (10 samples, 0.02%)</title><rect x="359.2" y="1285" width="0.3" height="15.0" fill="rgb(251,208,21)" rx="2" ry="2" />
<text text-anchor="" x="362.22" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (488 samples, 1.06%)</title><rect x="245.3" y="1349" width="12.5" height="15.0" fill="rgb(239,102,45)" rx="2" ry="2" />
<text text-anchor="" x="248.28" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent (10 samples, 0.02%)</title><rect x="190.9" y="1493" width="0.2" height="15.0" fill="rgb(231,214,18)" rx="2" ry="2" />
<text text-anchor="" x="193.88" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (37 samples, 0.08%)</title><rect x="758.2" y="1221" width="1.0" height="15.0" fill="rgb(213,118,27)" rx="2" ry="2" />
<text text-anchor="" x="761.23" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (4 samples, 0.01%)</title><rect x="841.9" y="1445" width="0.1" height="15.0" fill="rgb(253,62,3)" rx="2" ry="2" />
<text text-anchor="" x="844.86" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_parser (4,370 samples, 9.52%)</title><rect x="897.3" y="1493" width="112.4" height="15.0" fill="rgb(227,125,17)" rx="2" ry="2" />
<text text-anchor="" x="900.34" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >raw_parser</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="393.5" y="1461" width="0.1" height="15.0" fill="rgb(229,75,22)" rx="2" ry="2" />
<text text-anchor="" x="396.46" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (91 samples, 0.20%)</title><rect x="176.7" y="1461" width="2.3" height="15.0" fill="rgb(241,139,18)" rx="2" ry="2" />
<text text-anchor="" x="179.67" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (17 samples, 0.04%)</title><rect x="783.3" y="1093" width="0.4" height="15.0" fill="rgb(221,189,44)" rx="2" ry="2" />
<text text-anchor="" x="786.30" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (17 samples, 0.04%)</title><rect x="233.2" y="1381" width="0.5" height="15.0" fill="rgb(254,121,45)" rx="2" ry="2" />
<text text-anchor="" x="236.22" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (70 samples, 0.15%)</title><rect x="657.8" y="1477" width="1.8" height="15.0" fill="rgb(212,75,43)" rx="2" ry="2" />
<text text-anchor="" x="660.84" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_create (79 samples, 0.17%)</title><rect x="340.2" y="1509" width="2.1" height="15.0" fill="rgb(250,33,7)" rx="2" ry="2" />
<text text-anchor="" x="343.22" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (50 samples, 0.11%)</title><rect x="186.0" y="1493" width="1.3" height="15.0" fill="rgb(223,173,5)" rx="2" ry="2" />
<text text-anchor="" x="189.05" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_in_progress (39 samples, 0.08%)</title><rect x="235.3" y="1509" width="1.0" height="15.0" fill="rgb(229,134,13)" rx="2" ry="2" />
<text text-anchor="" x="238.28" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CommandComplete (15 samples, 0.03%)</title><rect x="42.2" y="1541" width="0.4" height="15.0" fill="rgb(207,149,0)" rx="2" ry="2" />
<text text-anchor="" x="45.19" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (8 samples, 0.02%)</title><rect x="779.2" y="1061" width="0.2" height="15.0" fill="rgb(218,169,16)" rx="2" ry="2" />
<text text-anchor="" x="782.16" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_function_single_interrupt (5 samples, 0.01%)</title><rect x="444.0" y="1365" width="0.1" height="15.0" fill="rgb(222,38,28)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (14 samples, 0.03%)</title><rect x="1024.2" y="1317" width="0.3" height="15.0" fill="rgb(225,126,11)" rx="2" ry="2" />
<text text-anchor="" x="1027.18" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (19 samples, 0.04%)</title><rect x="721.5" y="1461" width="0.5" height="15.0" fill="rgb(236,89,6)" rx="2" ry="2" />
<text text-anchor="" x="724.50" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (68 samples, 0.15%)</title><rect x="177.0" y="1397" width="1.7" height="15.0" fill="rgb(231,219,30)" rx="2" ry="2" />
<text text-anchor="" x="179.97" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.01%)</title><rect x="1108.9" y="1349" width="0.1" height="15.0" fill="rgb(224,19,51)" rx="2" ry="2" />
<text text-anchor="" x="1111.87" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yy_switch_to_buffer (55 samples, 0.12%)</title><rect x="1003.6" y="1445" width="1.5" height="15.0" fill="rgb(243,3,33)" rx="2" ry="2" />
<text text-anchor="" x="1006.64" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>CommandComplete (1,410 samples, 3.07%)</title><rect x="63.2" y="1525" width="36.2" height="15.0" fill="rgb(249,102,19)" rx="2" ry="2" />
<text text-anchor="" x="66.19" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >Com..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (49 samples, 0.11%)</title><rect x="693.1" y="1269" width="1.3" height="15.0" fill="rgb(229,78,53)" rx="2" ry="2" />
<text text-anchor="" x="696.14" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (94 samples, 0.20%)</title><rect x="83.7" y="1205" width="2.4" height="15.0" fill="rgb(247,56,38)" rx="2" ry="2" />
<text text-anchor="" x="86.71" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (66 samples, 0.14%)</title><rect x="1024.7" y="1301" width="1.7" height="15.0" fill="rgb(217,92,43)" rx="2" ry="2" />
<text text-anchor="" x="1027.67" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pollwake (4 samples, 0.01%)</title><rect x="130.0" y="1285" width="0.1" height="15.0" fill="rgb(248,167,44)" rx="2" ry="2" />
<text text-anchor="" x="133.01" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (56 samples, 0.12%)</title><rect x="1088.4" y="1269" width="1.4" height="15.0" fill="rgb(223,124,0)" rx="2" ry="2" />
<text text-anchor="" x="1091.35" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (4 samples, 0.01%)</title><rect x="124.6" y="1301" width="0.1" height="15.0" fill="rgb(252,212,17)" rx="2" ry="2" />
<text text-anchor="" x="127.61" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decay_load (4 samples, 0.01%)</title><rect x="780.5" y="1045" width="0.2" height="15.0" fill="rgb(219,213,20)" rx="2" ry="2" />
<text text-anchor="" x="783.55" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (209 samples, 0.46%)</title><rect x="22.7" y="1621" width="5.4" height="15.0" fill="rgb(226,99,17)" rx="2" ry="2" />
<text text-anchor="" x="25.70" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (632 samples, 1.38%)</title><rect x="273.5" y="1397" width="16.3" height="15.0" fill="rgb(207,32,27)" rx="2" ry="2" />
<text text-anchor="" x="276.51" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (15 samples, 0.03%)</title><rect x="405.8" y="1461" width="0.4" height="15.0" fill="rgb(221,174,54)" rx="2" ry="2" />
<text text-anchor="" x="408.83" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_all_qs (4 samples, 0.01%)</title><rect x="695.7" y="1365" width="0.1" height="15.0" fill="rgb(240,188,4)" rx="2" ry="2" />
<text text-anchor="" x="698.74" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (41 samples, 0.09%)</title><rect x="375.0" y="1493" width="1.0" height="15.0" fill="rgb(225,227,53)" rx="2" ry="2" />
<text text-anchor="" x="377.98" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_wakeup (9 samples, 0.02%)</title><rect x="486.8" y="1141" width="0.2" height="15.0" fill="rgb(251,193,52)" rx="2" ry="2" />
<text text-anchor="" x="489.78" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (6 samples, 0.01%)</title><rect x="130.8" y="1397" width="0.1" height="15.0" fill="rgb(243,169,49)" rx="2" ry="2" />
<text text-anchor="" x="133.75" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (38 samples, 0.08%)</title><rect x="759.2" y="1221" width="1.0" height="15.0" fill="rgb(207,169,51)" rx="2" ry="2" />
<text text-anchor="" x="762.18" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iter (59 samples, 0.13%)</title><rect x="357.6" y="1301" width="1.5" height="15.0" fill="rgb(208,104,3)" rx="2" ry="2" />
<text text-anchor="" x="360.60" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (37 samples, 0.08%)</title><rect x="1086.0" y="1269" width="0.9" height="15.0" fill="rgb(212,24,10)" rx="2" ry="2" />
<text text-anchor="" x="1088.96" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_head_message (9 samples, 0.02%)</title><rect x="662.7" y="1509" width="0.2" height="15.0" fill="rgb(250,168,14)" rx="2" ry="2" />
<text text-anchor="" x="665.65" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleForwardToBackend (9 samples, 0.02%)</title><rect x="517.7" y="1541" width="0.2" height="15.0" fill="rgb(215,213,21)" rx="2" ry="2" />
<text text-anchor="" x="520.68" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (114 samples, 0.25%)</title><rect x="1024.6" y="1317" width="3.0" height="15.0" fill="rgb(205,170,31)" rx="2" ry="2" />
<text text-anchor="" x="1027.65" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (37 samples, 0.08%)</title><rect x="262.7" y="1493" width="1.0" height="15.0" fill="rgb(219,146,43)" rx="2" ry="2" />
<text text-anchor="" x="265.71" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (17 samples, 0.04%)</title><rect x="1022.5" y="1221" width="0.4" height="15.0" fill="rgb(253,24,37)" rx="2" ry="2" />
<text text-anchor="" x="1025.49" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___sigprocmask (449 samples, 0.98%)</title><rect x="103.7" y="1509" width="11.5" height="15.0" fill="rgb(235,202,19)" rx="2" ry="2" />
<text text-anchor="" x="106.68" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (15 samples, 0.03%)</title><rect x="10.7" y="101" width="0.4" height="15.0" fill="rgb(224,117,23)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (49 samples, 0.11%)</title><rect x="260.9" y="1477" width="1.2" height="15.0" fill="rgb(231,33,19)" rx="2" ry="2" />
<text text-anchor="" x="263.86" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detect_serialization_error (13 samples, 0.03%)</title><rect x="614.1" y="1541" width="0.3" height="15.0" fill="rgb(210,112,3)" rx="2" ry="2" />
<text text-anchor="" x="617.09" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_insertinto_or_locking_clause (376 samples, 0.82%)</title><rect x="885.0" y="1461" width="9.7" height="15.0" fill="rgb(251,19,52)" rx="2" ry="2" />
<text text-anchor="" x="888.03" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_load_avg_se.isra.38 (21 samples, 0.05%)</title><rect x="480.8" y="1093" width="0.5" height="15.0" fill="rgb(224,17,15)" rx="2" ry="2" />
<text text-anchor="" x="483.79" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (127 samples, 0.28%)</title><rect x="1028.2" y="1429" width="3.3" height="15.0" fill="rgb(246,20,30)" rx="2" ry="2" />
<text text-anchor="" x="1031.19" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>generic_smp_call_function_single_interrupt (5 samples, 0.01%)</title><rect x="444.0" y="1333" width="0.1" height="15.0" fill="rgb(241,215,18)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="863.7" y="1349" width="0.1" height="15.0" fill="rgb(230,36,34)" rx="2" ry="2" />
<text text-anchor="" x="866.71" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (20 samples, 0.04%)</title><rect x="87.8" y="1333" width="0.5" height="15.0" fill="rgb(236,119,47)" rx="2" ry="2" />
<text text-anchor="" x="90.77" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (972 samples, 2.12%)</title><rect x="761.4" y="1285" width="25.0" height="15.0" fill="rgb(206,107,25)" rx="2" ry="2" />
<text text-anchor="" x="764.37" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (4 samples, 0.01%)</title><rect x="655.8" y="1461" width="0.1" height="15.0" fill="rgb(239,187,45)" rx="2" ry="2" />
<text text-anchor="" x="658.76" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enter_lazy_tlb (24 samples, 0.05%)</title><rect x="572.5" y="1365" width="0.6" height="15.0" fill="rgb(243,166,40)" rx="2" ry="2" />
<text text-anchor="" x="575.47" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>yy_init_globals (8 samples, 0.02%)</title><rect x="1006.8" y="1445" width="0.2" height="15.0" fill="rgb(248,207,39)" rx="2" ry="2" />
<text text-anchor="" x="1009.83" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (20 samples, 0.04%)</title><rect x="249.2" y="1237" width="0.5" height="15.0" fill="rgb(210,113,54)" rx="2" ry="2" />
<text text-anchor="" x="252.21" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_find_next_bit (6 samples, 0.01%)</title><rect x="471.8" y="1125" width="0.2" height="15.0" fill="rgb(232,98,32)" rx="2" ry="2" />
<text text-anchor="" x="474.82" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (64 samples, 0.14%)</title><rect x="403.7" y="1445" width="1.7" height="15.0" fill="rgb(223,183,43)" rx="2" ry="2" />
<text text-anchor="" x="406.74" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (449 samples, 0.98%)</title><rect x="1016.0" y="1381" width="11.6" height="15.0" fill="rgb(254,212,15)" rx="2" ry="2" />
<text text-anchor="" x="1019.03" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_load_tls (9 samples, 0.02%)</title><rect x="608.6" y="1525" width="0.2" height="15.0" fill="rgb(239,94,28)" rx="2" ry="2" />
<text text-anchor="" x="611.56" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_select_query (30 samples, 0.07%)</title><rect x="711.2" y="1493" width="0.8" height="15.0" fill="rgb(221,59,42)" rx="2" ry="2" />
<text text-anchor="" x="714.19" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent (4 samples, 0.01%)</title><rect x="391.3" y="1477" width="0.1" height="15.0" fill="rgb(243,227,47)" rx="2" ry="2" />
<text text-anchor="" x="394.25" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (370 samples, 0.81%)</title><rect x="277.6" y="1333" width="9.5" height="15.0" fill="rgb(248,202,33)" rx="2" ry="2" />
<text text-anchor="" x="280.60" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (599 samples, 1.31%)</title><rect x="353.9" y="1477" width="15.4" height="15.0" fill="rgb(219,84,13)" rx="2" ry="2" />
<text text-anchor="" x="356.87" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (654 samples, 1.42%)</title><rect x="1014.6" y="1445" width="16.9" height="15.0" fill="rgb(252,62,36)" rx="2" ry="2" />
<text text-anchor="" x="1017.65" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_add_sent_message (4 samples, 0.01%)</title><rect x="1036.7" y="1509" width="0.1" height="15.0" fill="rgb(253,66,13)" rx="2" ry="2" />
<text text-anchor="" x="1039.65" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="97.0" y="1493" width="0.1" height="15.0" fill="rgb(243,157,17)" rx="2" ry="2" />
<text text-anchor="" x="99.97" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location at plt (7 samples, 0.02%)</title><rect x="1098.6" y="1477" width="0.2" height="15.0" fill="rgb(216,82,14)" rx="2" ry="2" />
<text text-anchor="" x="1101.61" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (15 samples, 0.03%)</title><rect x="84.6" y="1157" width="0.3" height="15.0" fill="rgb(250,188,7)" rx="2" ry="2" />
<text text-anchor="" x="87.55" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__mempcpy_avx_unaligned_erms (6 samples, 0.01%)</title><rect x="1139.1" y="1653" width="0.2" height="15.0" fill="rgb(219,181,11)" rx="2" ry="2" />
<text text-anchor="" x="1142.10" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (14 samples, 0.03%)</title><rect x="1023.1" y="1301" width="0.4" height="15.0" fill="rgb(238,178,12)" rx="2" ry="2" />
<text text-anchor="" x="1026.13" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_wait_queue (14 samples, 0.03%)</title><rect x="1110.3" y="1333" width="0.4" height="15.0" fill="rgb(228,3,52)" rx="2" ry="2" />
<text text-anchor="" x="1113.33" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (4 samples, 0.01%)</title><rect x="414.0" y="1237" width="0.1" height="15.0" fill="rgb(209,139,7)" rx="2" ry="2" />
<text text-anchor="" x="416.98" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (4 samples, 0.01%)</title><rect x="410.3" y="1269" width="0.1" height="15.0" fill="rgb(245,136,24)" rx="2" ry="2" />
<text text-anchor="" x="413.27" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_doing_extended_query_message (34 samples, 0.07%)</title><rect x="515.4" y="1525" width="0.9" height="15.0" fill="rgb(234,107,2)" rx="2" ry="2" />
<text text-anchor="" x="518.39" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (215 samples, 0.47%)</title><rect x="1143.3" y="1621" width="5.5" height="15.0" fill="rgb(233,44,19)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (10 samples, 0.02%)</title><rect x="178.0" y="1237" width="0.2" height="15.0" fill="rgb(246,155,51)" rx="2" ry="2" />
<text text-anchor="" x="180.98" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (8 samples, 0.02%)</title><rect x="189.4" y="1493" width="0.2" height="15.0" fill="rgb(231,120,48)" rx="2" ry="2" />
<text text-anchor="" x="192.39" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>extract_message (101 samples, 0.22%)</title><rect x="1058.4" y="1509" width="2.6" height="15.0" fill="rgb(217,22,28)" rx="2" ry="2" />
<text text-anchor="" x="1061.43" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_doing_extended_query_message (4 samples, 0.01%)</title><rect x="629.5" y="1541" width="0.1" height="15.0" fill="rgb(207,122,35)" rx="2" ry="2" />
<text text-anchor="" x="632.49" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>foward_command_complete (1,032 samples, 2.25%)</title><rect x="65.1" y="1509" width="26.5" height="15.0" fill="rgb(221,84,31)" rx="2" ry="2" />
<text text-anchor="" x="68.12" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (17 samples, 0.04%)</title><rect x="685.1" y="1157" width="0.4" height="15.0" fill="rgb(248,143,12)" rx="2" ry="2" />
<text text-anchor="" x="688.07" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (46 samples, 0.10%)</title><rect x="10.7" y="485" width="1.2" height="15.0" fill="rgb(252,60,27)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (46 samples, 0.10%)</title><rect x="1137.8" y="1653" width="1.1" height="15.0" fill="rgb(236,112,3)" rx="2" ry="2" />
<text text-anchor="" x="1140.76" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (75 samples, 0.16%)</title><rect x="176.8" y="1429" width="2.0" height="15.0" fill="rgb(253,124,44)" rx="2" ry="2" />
<text text-anchor="" x="179.85" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (6 samples, 0.01%)</title><rect x="375.9" y="1477" width="0.1" height="15.0" fill="rgb(254,13,37)" rx="2" ry="2" />
<text text-anchor="" x="378.88" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1189" width="1.4" height="15.0" fill="rgb(207,219,10)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (23 samples, 0.05%)</title><rect x="760.8" y="1269" width="0.6" height="15.0" fill="rgb(248,56,22)" rx="2" ry="2" />
<text text-anchor="" x="763.78" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_select_copy_remaining (7 samples, 0.02%)</title><rect x="1112.7" y="1413" width="0.2" height="15.0" fill="rgb(210,159,30)" rx="2" ry="2" />
<text text-anchor="" x="1115.72" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_recvmsg (6 samples, 0.01%)</title><rect x="1016.4" y="1365" width="0.1" height="15.0" fill="rgb(243,0,6)" rx="2" ry="2" />
<text text-anchor="" x="1019.37" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (10 samples, 0.02%)</title><rect x="1119.2" y="1525" width="0.3" height="15.0" fill="rgb(245,54,45)" rx="2" ry="2" />
<text text-anchor="" x="1122.23" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (15 samples, 0.03%)</title><rect x="694.8" y="1285" width="0.4" height="15.0" fill="rgb(230,98,51)" rx="2" ry="2" />
<text text-anchor="" x="697.79" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1365" width="1.4" height="15.0" fill="rgb(239,118,19)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (419 samples, 0.91%)</title><rect x="1102.6" y="1461" width="10.7" height="15.0" fill="rgb(226,92,10)" rx="2" ry="2" />
<text text-anchor="" x="1105.57" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (313 samples, 0.68%)</title><rect x="408.5" y="1333" width="8.0" height="15.0" fill="rgb(254,80,47)" rx="2" ry="2" />
<text text-anchor="" x="411.47" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (20 samples, 0.04%)</title><rect x="329.2" y="1189" width="0.5" height="15.0" fill="rgb(224,53,36)" rx="2" ry="2" />
<text text-anchor="" x="332.19" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (56 samples, 0.12%)</title><rect x="809.1" y="1477" width="1.5" height="15.0" fill="rgb(246,163,23)" rx="2" ry="2" />
<text text-anchor="" x="812.14" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (16 samples, 0.03%)</title><rect x="283.7" y="1301" width="0.4" height="15.0" fill="rgb(253,174,29)" rx="2" ry="2" />
<text text-anchor="" x="286.66" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeRawStmt (4 samples, 0.01%)</title><rect x="1001.8" y="1477" width="0.1" height="15.0" fill="rgb(245,69,11)" rx="2" ry="2" />
<text text-anchor="" x="1004.84" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (20 samples, 0.04%)</title><rect x="76.2" y="1285" width="0.5" height="15.0" fill="rgb(239,25,27)" rx="2" ry="2" />
<text text-anchor="" x="79.20" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (30 samples, 0.07%)</title><rect x="10.7" y="149" width="0.8" height="15.0" fill="rgb(209,158,42)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (209 samples, 0.46%)</title><rect x="205.8" y="1477" width="5.3" height="15.0" fill="rgb(254,127,31)" rx="2" ry="2" />
<text text-anchor="" x="208.77" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (27 samples, 0.06%)</title><rect x="808.4" y="1477" width="0.7" height="15.0" fill="rgb(238,70,5)" rx="2" ry="2" />
<text text-anchor="" x="811.44" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (9 samples, 0.02%)</title><rect x="13.4" y="1573" width="0.2" height="15.0" fill="rgb(228,148,11)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_query_context_destroy (183 samples, 0.40%)</title><rect x="308.9" y="1461" width="4.7" height="15.0" fill="rgb(227,146,32)" rx="2" ry="2" />
<text text-anchor="" x="311.88" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (44 samples, 0.10%)</title><rect x="792.6" y="1445" width="1.1" height="15.0" fill="rgb(205,47,47)" rx="2" ry="2" />
<text text-anchor="" x="795.55" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI_____strtoll_l_internal (30 samples, 0.07%)</title><rect x="1136.7" y="1653" width="0.8" height="15.0" fill="rgb(234,120,42)" rx="2" ry="2" />
<text text-anchor="" x="1139.73" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_ignore_till_sync (12 samples, 0.03%)</title><rect x="236.9" y="1509" width="0.3" height="15.0" fill="rgb(225,139,1)" rx="2" ry="2" />
<text text-anchor="" x="239.90" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (42,664 samples, 92.95%)</title><rect x="29.5" y="1637" width="1096.8" height="15.0" fill="rgb(244,212,42)" rx="2" ry="2" />
<text text-anchor="" x="32.46" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (36 samples, 0.08%)</title><rect x="672.6" y="1477" width="0.9" height="15.0" fill="rgb(227,21,20)" rx="2" ry="2" />
<text text-anchor="" x="675.60" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (133 samples, 0.29%)</title><rect x="250.7" y="1237" width="3.4" height="15.0" fill="rgb(232,192,12)" rx="2" ry="2" />
<text text-anchor="" x="253.65" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (181 samples, 0.39%)</title><rect x="1085.3" y="1301" width="4.6" height="15.0" fill="rgb(239,21,9)" rx="2" ry="2" />
<text text-anchor="" x="1088.29" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleForwardToFrontend (219 samples, 0.48%)</title><rect x="654.1" y="1493" width="5.6" height="15.0" fill="rgb(232,155,42)" rx="2" ry="2" />
<text text-anchor="" x="657.06" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="460.3" y="1237" width="0.1" height="15.0" fill="rgb(239,73,48)" rx="2" ry="2" />
<text text-anchor="" x="463.30" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="1045" width="1.3" height="15.0" fill="rgb(233,85,29)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_state (14 samples, 0.03%)</title><rect x="98.9" y="1509" width="0.4" height="15.0" fill="rgb(232,184,8)" rx="2" ry="2" />
<text text-anchor="" x="101.90" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remote_function (5 samples, 0.01%)</title><rect x="444.0" y="1301" width="0.1" height="15.0" fill="rgb(226,40,40)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>handle_query_context (15 samples, 0.03%)</title><rect x="387.1" y="1509" width="0.4" height="15.0" fill="rgb(244,134,3)" rx="2" ry="2" />
<text text-anchor="" x="390.11" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (51 samples, 0.11%)</title><rect x="363.8" y="1237" width="1.4" height="15.0" fill="rgb(225,215,7)" rx="2" ry="2" />
<text text-anchor="" x="366.85" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (202 samples, 0.44%)</title><rect x="682.7" y="1461" width="5.2" height="15.0" fill="rgb(226,73,21)" rx="2" ry="2" />
<text text-anchor="" x="685.73" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (14 samples, 0.03%)</title><rect x="731.5" y="1365" width="0.4" height="15.0" fill="rgb(218,91,43)" rx="2" ry="2" />
<text text-anchor="" x="734.55" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (10 samples, 0.02%)</title><rect x="704.6" y="1493" width="0.2" height="15.0" fill="rgb(236,0,8)" rx="2" ry="2" />
<text text-anchor="" x="707.58" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (211 samples, 0.46%)</title><rect x="1143.4" y="1509" width="5.4" height="15.0" fill="rgb(251,162,44)" rx="2" ry="2" />
<text text-anchor="" x="1146.37" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to_asm (24 samples, 0.05%)</title><rect x="525.5" y="1525" width="0.6" height="15.0" fill="rgb(244,154,36)" rx="2" ry="2" />
<text text-anchor="" x="528.47" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (68 samples, 0.15%)</title><rect x="1113.3" y="1461" width="1.8" height="15.0" fill="rgb(205,144,8)" rx="2" ry="2" />
<text text-anchor="" x="1116.34" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (11 samples, 0.02%)</title><rect x="547.4" y="1429" width="0.3" height="15.0" fill="rgb(217,131,53)" rx="2" ry="2" />
<text text-anchor="" x="550.38" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (20 samples, 0.04%)</title><rect x="252.8" y="1157" width="0.6" height="15.0" fill="rgb(234,182,28)" rx="2" ry="2" />
<text text-anchor="" x="255.84" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_set_owner_w (14 samples, 0.03%)</title><rect x="128.2" y="1317" width="0.3" height="15.0" fill="rgb(230,3,48)" rx="2" ry="2" />
<text text-anchor="" x="131.18" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (35 samples, 0.08%)</title><rect x="491.7" y="1381" width="0.9" height="15.0" fill="rgb(208,104,33)" rx="2" ry="2" />
<text text-anchor="" x="494.69" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (6 samples, 0.01%)</title><rect x="71.1" y="1317" width="0.1" height="15.0" fill="rgb(229,7,20)" rx="2" ry="2" />
<text text-anchor="" x="74.06" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_function_call (211 samples, 0.46%)</title><rect x="836.5" y="1477" width="5.5" height="15.0" fill="rgb(205,102,39)" rx="2" ry="2" />
<text text-anchor="" x="839.54" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (25 samples, 0.05%)</title><rect x="879.4" y="1365" width="0.7" height="15.0" fill="rgb(206,38,9)" rx="2" ry="2" />
<text text-anchor="" x="882.42" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (790 samples, 1.72%)</title><rect x="68.0" y="1413" width="20.3" height="15.0" fill="rgb(251,135,25)" rx="2" ry="2" />
<text text-anchor="" x="71.00" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (10 samples, 0.02%)</title><rect x="496.9" y="1525" width="0.3" height="15.0" fill="rgb(206,139,53)" rx="2" ry="2" />
<text text-anchor="" x="499.94" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl (8 samples, 0.02%)</title><rect x="156.9" y="1525" width="0.2" height="15.0" fill="rgb(206,140,7)" rx="2" ry="2" />
<text text-anchor="" x="159.90" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (1,142 samples, 2.49%)</title><rect x="554.8" y="1381" width="29.4" height="15.0" fill="rgb(205,82,2)" rx="2" ry="2" />
<text text-anchor="" x="557.81" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (18 samples, 0.04%)</title><rect x="1087.9" y="1269" width="0.5" height="15.0" fill="rgb(218,112,27)" rx="2" ry="2" />
<text text-anchor="" x="1090.89" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_doing_extended_query_message (4 samples, 0.01%)</title><rect x="97.5" y="1509" width="0.1" height="15.0" fill="rgb(229,20,11)" rx="2" ry="2" />
<text text-anchor="" x="100.51" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_tail_cell (25 samples, 0.05%)</title><rect x="373.6" y="1477" width="0.6" height="15.0" fill="rgb(208,198,30)" rx="2" ry="2" />
<text text-anchor="" x="376.59" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_command_success (31 samples, 0.07%)</title><rect x="162.9" y="1525" width="0.8" height="15.0" fill="rgb(219,129,26)" rx="2" ry="2" />
<text text-anchor="" x="165.86" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1333" width="1.4" height="15.0" fill="rgb(216,125,28)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_unlogged_table (674 samples, 1.47%)</title><rect x="867.0" y="1477" width="17.3" height="15.0" fill="rgb(207,20,15)" rx="2" ry="2" />
<text text-anchor="" x="869.95" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (2,985 samples, 6.50%)</title><rect x="529.3" y="1477" width="76.8" height="15.0" fill="rgb(243,149,0)" rx="2" ry="2" />
<text text-anchor="" x="532.33" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >core_sys..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (5 samples, 0.01%)</title><rect x="331.0" y="1333" width="0.1" height="15.0" fill="rgb(229,110,10)" rx="2" ry="2" />
<text text-anchor="" x="333.97" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (12 samples, 0.03%)</title><rect x="830.5" y="1477" width="0.3" height="15.0" fill="rgb(224,216,9)" rx="2" ry="2" />
<text text-anchor="" x="833.52" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_create (64 samples, 0.14%)</title><rect x="425.5" y="1509" width="1.6" height="15.0" fill="rgb(224,26,0)" rx="2" ry="2" />
<text text-anchor="" x="428.49" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (19 samples, 0.04%)</title><rect x="285.2" y="1301" width="0.5" height="15.0" fill="rgb(216,179,11)" rx="2" ry="2" />
<text text-anchor="" x="288.20" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextCreate (102 samples, 0.22%)</title><rect x="796.3" y="1461" width="2.6" height="15.0" fill="rgb(238,134,12)" rx="2" ry="2" />
<text text-anchor="" x="799.26" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1,483 samples, 3.23%)</title><rect x="749.3" y="1349" width="38.1" height="15.0" fill="rgb(224,84,43)" rx="2" ry="2" />
<text text-anchor="" x="752.29" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >new..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (124 samples, 0.27%)</title><rect x="83.2" y="1269" width="3.2" height="15.0" fill="rgb(220,180,13)" rx="2" ry="2" />
<text text-anchor="" x="86.24" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strncpy_sse2_unaligned (45 samples, 0.10%)</title><rect x="349.7" y="1509" width="1.1" height="15.0" fill="rgb(211,147,6)" rx="2" ry="2" />
<text text-anchor="" x="352.68" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next_wrap (11 samples, 0.02%)</title><rect x="472.1" y="1141" width="0.2" height="15.0" fill="rgb(244,191,41)" rx="2" ry="2" />
<text text-anchor="" x="475.05" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_sent_message (16 samples, 0.03%)</title><rect x="503.0" y="1525" width="0.4" height="15.0" fill="rgb(229,7,29)" rx="2" ry="2" />
<text text-anchor="" x="506.03" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (4 samples, 0.01%)</title><rect x="12.9" y="1477" width="0.1" height="15.0" fill="rgb(220,35,40)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (15 samples, 0.03%)</title><rect x="1059.0" y="1493" width="0.4" height="15.0" fill="rgb(214,37,3)" rx="2" ry="2" />
<text text-anchor="" x="1062.02" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (17 samples, 0.04%)</title><rect x="1138.2" y="1589" width="0.5" height="15.0" fill="rgb(207,13,37)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_ssl_pending (8 samples, 0.02%)</title><rect x="1054.0" y="1493" width="0.2" height="15.0" fill="rgb(226,118,11)" rx="2" ry="2" />
<text text-anchor="" x="1057.00" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_all_qs (5 samples, 0.01%)</title><rect x="1109.1" y="1381" width="0.2" height="15.0" fill="rgb(245,120,41)" rx="2" ry="2" />
<text text-anchor="" x="1112.15" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (7 samples, 0.02%)</title><rect x="781.6" y="1077" width="0.2" height="15.0" fill="rgb(236,209,12)" rx="2" ry="2" />
<text text-anchor="" x="784.58" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (183 samples, 0.40%)</title><rect x="541.2" y="1429" width="4.7" height="15.0" fill="rgb(220,197,24)" rx="2" ry="2" />
<text text-anchor="" x="544.23" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (13 samples, 0.03%)</title><rect x="420.4" y="1445" width="0.3" height="15.0" fill="rgb(251,197,15)" rx="2" ry="2" />
<text text-anchor="" x="423.38" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1349" width="1.4" height="15.0" fill="rgb(205,76,21)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (14 samples, 0.03%)</title><rect x="1132.5" y="1589" width="0.4" height="15.0" fill="rgb(211,211,28)" rx="2" ry="2" />
<text text-anchor="" x="1135.49" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (554 samples, 1.21%)</title><rect x="119.2" y="1509" width="14.3" height="15.0" fill="rgb(208,107,54)" rx="2" ry="2" />
<text text-anchor="" x="122.23" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (60 samples, 0.13%)</title><rect x="1121.2" y="1525" width="1.5" height="15.0" fill="rgb(227,137,47)" rx="2" ry="2" />
<text text-anchor="" x="1124.18" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="949" width="1.3" height="15.0" fill="rgb(230,76,37)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="959.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_parser2 (6 samples, 0.01%)</title><rect x="897.2" y="1493" width="0.1" height="15.0" fill="rgb(231,94,10)" rx="2" ry="2" />
<text text-anchor="" x="900.19" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_at_command_success (23 samples, 0.05%)</title><rect x="157.7" y="1525" width="0.6" height="15.0" fill="rgb(231,20,8)" rx="2" ry="2" />
<text text-anchor="" x="160.67" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (5 samples, 0.01%)</title><rect x="674.7" y="1429" width="0.2" height="15.0" fill="rgb(210,179,37)" rx="2" ry="2" />
<text text-anchor="" x="677.73" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (28 samples, 0.06%)</title><rect x="742.1" y="1349" width="0.7" height="15.0" fill="rgb(229,178,36)" rx="2" ry="2" />
<text text-anchor="" x="745.09" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (16 samples, 0.03%)</title><rect x="989.8" y="1397" width="0.4" height="15.0" fill="rgb(244,85,7)" rx="2" ry="2" />
<text text-anchor="" x="992.76" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock (7 samples, 0.02%)</title><rect x="286.7" y="1269" width="0.2" height="15.0" fill="rgb(206,11,28)" rx="2" ry="2" />
<text text-anchor="" x="289.67" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="854.9" y="1333" width="0.1" height="15.0" fill="rgb(239,27,16)" rx="2" ry="2" />
<text text-anchor="" x="857.92" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (5 samples, 0.01%)</title><rect x="1057.0" y="1493" width="0.1" height="15.0" fill="rgb(245,22,47)" rx="2" ry="2" />
<text text-anchor="" x="1059.96" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next (10 samples, 0.02%)</title><rect x="471.8" y="1141" width="0.3" height="15.0" fill="rgb(225,50,30)" rx="2" ry="2" />
<text text-anchor="" x="474.79" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (14 samples, 0.03%)</title><rect x="10.7" y="85" width="0.4" height="15.0" fill="rgb(239,48,8)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (86 samples, 0.19%)</title><rect x="231.7" y="1445" width="2.2" height="15.0" fill="rgb(207,127,22)" rx="2" ry="2" />
<text text-anchor="" x="234.71" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (8 samples, 0.02%)</title><rect x="67.7" y="1429" width="0.2" height="15.0" fill="rgb(251,72,10)" rx="2" ry="2" />
<text text-anchor="" x="70.74" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (24 samples, 0.05%)</title><rect x="137.6" y="1509" width="0.7" height="15.0" fill="rgb(216,62,51)" rx="2" ry="2" />
<text text-anchor="" x="140.64" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_entity (10 samples, 0.02%)</title><rect x="574.1" y="1365" width="0.2" height="15.0" fill="rgb(246,140,46)" rx="2" ry="2" />
<text text-anchor="" x="577.06" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (8 samples, 0.02%)</title><rect x="224.7" y="1461" width="0.2" height="15.0" fill="rgb(243,89,10)" rx="2" ry="2" />
<text text-anchor="" x="227.71" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_fd (5 samples, 0.01%)</title><rect x="235.0" y="1493" width="0.2" height="15.0" fill="rgb(209,37,34)" rx="2" ry="2" />
<text text-anchor="" x="238.05" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="517" width="1.3" height="15.0" fill="rgb(235,17,44)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_task_fair (6 samples, 0.01%)</title><rect x="285.7" y="1301" width="0.2" height="15.0" fill="rgb(217,80,20)" rx="2" ry="2" />
<text text-anchor="" x="288.72" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.43 (53 samples, 0.12%)</title><rect x="360.1" y="1253" width="1.3" height="15.0" fill="rgb(214,158,8)" rx="2" ry="2" />
<text text-anchor="" x="363.07" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_entity (37 samples, 0.08%)</title><rect x="576.0" y="1349" width="1.0" height="15.0" fill="rgb(214,92,41)" rx="2" ry="2" />
<text text-anchor="" x="579.04" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (52 samples, 0.11%)</title><rect x="992.7" y="1413" width="1.4" height="15.0" fill="rgb(215,215,36)" rx="2" ry="2" />
<text text-anchor="" x="995.72" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (62 samples, 0.14%)</title><rect x="414.7" y="1301" width="1.6" height="15.0" fill="rgb(213,112,40)" rx="2" ry="2" />
<text text-anchor="" x="417.70" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (808 samples, 1.76%)</title><rect x="763.8" y="1189" width="20.8" height="15.0" fill="rgb(251,174,47)" rx="2" ry="2" />
<text text-anchor="" x="766.81" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (90 samples, 0.20%)</title><rect x="231.7" y="1477" width="2.3" height="15.0" fill="rgb(239,135,0)" rx="2" ry="2" />
<text text-anchor="" x="234.65" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_major_version (6 samples, 0.01%)</title><rect x="1037.6" y="1509" width="0.2" height="15.0" fill="rgb(252,26,22)" rx="2" ry="2" />
<text text-anchor="" x="1040.63" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (293 samples, 0.64%)</title><rect x="395.5" y="1333" width="7.5" height="15.0" fill="rgb(207,229,50)" rx="2" ry="2" />
<text text-anchor="" x="398.47" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlen at plt (7 samples, 0.02%)</title><rect x="137.5" y="1493" width="0.1" height="15.0" fill="rgb(233,77,12)" rx="2" ry="2" />
<text text-anchor="" x="140.46" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (63 samples, 0.14%)</title><rect x="232.0" y="1413" width="1.7" height="15.0" fill="rgb(225,14,32)" rx="2" ry="2" />
<text text-anchor="" x="235.04" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (10 samples, 0.02%)</title><rect x="256.4" y="1269" width="0.3" height="15.0" fill="rgb(209,218,28)" rx="2" ry="2" />
<text text-anchor="" x="259.44" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (29 samples, 0.06%)</title><rect x="153.0" y="1477" width="0.8" height="15.0" fill="rgb(207,132,21)" rx="2" ry="2" />
<text text-anchor="" x="156.04" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (8 samples, 0.02%)</title><rect x="90.0" y="1429" width="0.2" height="15.0" fill="rgb(210,57,9)" rx="2" ry="2" />
<text text-anchor="" x="92.95" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (13 samples, 0.03%)</title><rect x="228.6" y="1461" width="0.4" height="15.0" fill="rgb(216,101,33)" rx="2" ry="2" />
<text text-anchor="" x="231.65" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (54 samples, 0.12%)</title><rect x="771.4" y="1109" width="1.4" height="15.0" fill="rgb(230,26,17)" rx="2" ry="2" />
<text text-anchor="" x="774.42" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (5 samples, 0.01%)</title><rect x="357.4" y="1301" width="0.1" height="15.0" fill="rgb(211,191,2)" rx="2" ry="2" />
<text text-anchor="" x="360.42" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (27 samples, 0.06%)</title><rect x="81.1" y="1205" width="0.7" height="15.0" fill="rgb(227,220,10)" rx="2" ry="2" />
<text text-anchor="" x="84.13" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (23 samples, 0.05%)</title><rect x="158.6" y="1525" width="0.6" height="15.0" fill="rgb(254,203,1)" rx="2" ry="2" />
<text text-anchor="" x="161.64" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (36 samples, 0.08%)</title><rect x="338.2" y="1461" width="0.9" height="15.0" fill="rgb(221,118,14)" rx="2" ry="2" />
<text text-anchor="" x="341.21" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (421 samples, 0.92%)</title><rect x="120.9" y="1429" width="10.8" height="15.0" fill="rgb(250,110,4)" rx="2" ry="2" />
<text text-anchor="" x="123.85" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (13 samples, 0.03%)</title><rect x="76.2" y="1269" width="0.4" height="15.0" fill="rgb(237,101,43)" rx="2" ry="2" />
<text text-anchor="" x="79.25" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to (53 samples, 0.12%)</title><rect x="524.1" y="1525" width="1.4" height="15.0" fill="rgb(220,59,49)" rx="2" ry="2" />
<text text-anchor="" x="527.11" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (32 samples, 0.07%)</title><rect x="147.0" y="1509" width="0.8" height="15.0" fill="rgb(242,90,22)" rx="2" ry="2" />
<text text-anchor="" x="150.00" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (351 samples, 0.76%)</title><rect x="474.2" y="1141" width="9.0" height="15.0" fill="rgb(213,160,6)" rx="2" ry="2" />
<text text-anchor="" x="477.21" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_select_copy_remaining (5 samples, 0.01%)</title><rect x="607.2" y="1477" width="0.1" height="15.0" fill="rgb(208,58,9)" rx="2" ry="2" />
<text text-anchor="" x="610.17" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memmove at plt (4 samples, 0.01%)</title><rect x="294.4" y="1477" width="0.1" height="15.0" fill="rgb(228,160,34)" rx="2" ry="2" />
<text text-anchor="" x="297.38" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (33 samples, 0.07%)</title><rect x="766.2" y="1141" width="0.9" height="15.0" fill="rgb(238,170,47)" rx="2" ry="2" />
<text text-anchor="" x="769.20" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (23 samples, 0.05%)</title><rect x="734.8" y="1269" width="0.6" height="15.0" fill="rgb(220,60,24)" rx="2" ry="2" />
<text text-anchor="" x="737.76" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_delete_cell (13 samples, 0.03%)</title><rect x="669.3" y="1493" width="0.4" height="15.0" fill="rgb(208,1,30)" rx="2" ry="2" />
<text text-anchor="" x="672.33" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (102 samples, 0.22%)</title><rect x="492.9" y="1461" width="2.6" height="15.0" fill="rgb(237,7,18)" rx="2" ry="2" />
<text text-anchor="" x="495.87" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="370.2" y="1445" width="0.2" height="15.0" fill="rgb(234,180,8)" rx="2" ry="2" />
<text text-anchor="" x="373.25" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_fd (54 samples, 0.12%)</title><rect x="294.5" y="1477" width="1.4" height="15.0" fill="rgb(251,189,18)" rx="2" ry="2" />
<text text-anchor="" x="297.49" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (921 samples, 2.01%)</title><rect x="1066.5" y="1381" width="23.6" height="15.0" fill="rgb(234,154,3)" rx="2" ry="2" />
<text text-anchor="" x="1069.47" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_generic (62 samples, 0.14%)</title><rect x="177.1" y="1349" width="1.6" height="15.0" fill="rgb(214,74,28)" rx="2" ry="2" />
<text text-anchor="" x="180.13" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vdso_time (38 samples, 0.08%)</title><rect x="849.4" y="1365" width="0.9" height="15.0" fill="rgb(210,218,1)" rx="2" ry="2" />
<text text-anchor="" x="852.37" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unread (24 samples, 0.05%)</title><rect x="236.3" y="1509" width="0.6" height="15.0" fill="rgb(237,98,5)" rx="2" ry="2" />
<text text-anchor="" x="239.28" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (190 samples, 0.41%)</title><rect x="541.1" y="1445" width="4.8" height="15.0" fill="rgb(249,2,44)" rx="2" ry="2" />
<text text-anchor="" x="544.05" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_doing_extended_query_message (5 samples, 0.01%)</title><rect x="1054.7" y="1509" width="0.2" height="15.0" fill="rgb(217,22,29)" rx="2" ry="2" />
<text text-anchor="" x="1057.75" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksize (12 samples, 0.03%)</title><rect x="327.3" y="1269" width="0.3" height="15.0" fill="rgb(221,42,43)" rx="2" ry="2" />
<text text-anchor="" x="330.34" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (16 samples, 0.03%)</title><rect x="1031.0" y="1397" width="0.5" height="15.0" fill="rgb(223,66,32)" rx="2" ry="2" />
<text text-anchor="" x="1034.05" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_default_xsputn (24 samples, 0.05%)</title><rect x="18.1" y="1621" width="0.6" height="15.0" fill="rgb(238,155,12)" rx="2" ry="2" />
<text text-anchor="" x="21.10" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>atol (16 samples, 0.03%)</title><rect x="945.6" y="1445" width="0.4" height="15.0" fill="rgb(205,205,10)" rx="2" ry="2" />
<text text-anchor="" x="948.57" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x2apic_send_IPI (36 samples, 0.08%)</title><rect x="485.1" y="1077" width="0.9" height="15.0" fill="rgb(228,93,18)" rx="2" ry="2" />
<text text-anchor="" x="488.08" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>calloc at plt (45 samples, 0.10%)</title><rect x="21.5" y="1621" width="1.2" height="15.0" fill="rgb(222,11,6)" rx="2" ry="2" />
<text text-anchor="" x="24.54" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (33 samples, 0.07%)</title><rect x="10.7" y="293" width="0.8" height="15.0" fill="rgb(216,9,32)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_cache_empty (114 samples, 0.25%)</title><rect x="620.2" y="1541" width="2.9" height="15.0" fill="rgb(236,6,19)" rx="2" ry="2" />
<text text-anchor="" x="623.21" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc at plt (5 samples, 0.01%)</title><rect x="211.0" y="1461" width="0.1" height="15.0" fill="rgb(253,143,37)" rx="2" ry="2" />
<text text-anchor="" x="214.01" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (11 samples, 0.02%)</title><rect x="842.7" y="1445" width="0.2" height="15.0" fill="rgb(250,105,12)" rx="2" ry="2" />
<text text-anchor="" x="845.66" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (1,558 samples, 3.39%)</title><rect x="450.6" y="1333" width="40.0" height="15.0" fill="rgb(231,94,11)" rx="2" ry="2" />
<text text-anchor="" x="453.56" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >uni..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (29 samples, 0.06%)</title><rect x="129.1" y="1237" width="0.7" height="15.0" fill="rgb(246,52,41)" rx="2" ry="2" />
<text text-anchor="" x="132.08" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yylex (1,566 samples, 3.41%)</title><rect x="946.2" y="1445" width="40.3" height="15.0" fill="rgb(229,229,1)" rx="2" ry="2" />
<text text-anchor="" x="949.21" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >cor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (10 samples, 0.02%)</title><rect x="178.0" y="1221" width="0.2" height="15.0" fill="rgb(209,21,38)" rx="2" ry="2" />
<text text-anchor="" x="180.98" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (4 samples, 0.01%)</title><rect x="12.9" y="1541" width="0.1" height="15.0" fill="rgb(221,168,40)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="361.0" y="1221" width="0.1" height="15.0" fill="rgb(233,48,37)" rx="2" ry="2" />
<text text-anchor="" x="363.99" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (40 samples, 0.09%)</title><rect x="472.4" y="1141" width="1.0" height="15.0" fill="rgb(248,7,9)" rx="2" ry="2" />
<text text-anchor="" x="475.39" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_pending_message_and_reply (5 samples, 0.01%)</title><rect x="188.5" y="1509" width="0.1" height="15.0" fill="rgb(237,11,1)" rx="2" ry="2" />
<text text-anchor="" x="191.49" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_fd_set (9 samples, 0.02%)</title><rect x="607.3" y="1477" width="0.2" height="15.0" fill="rgb(250,24,1)" rx="2" ry="2" />
<text text-anchor="" x="610.30" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (10 samples, 0.02%)</title><rect x="943.5" y="1445" width="0.2" height="15.0" fill="rgb(230,130,1)" rx="2" ry="2" />
<text text-anchor="" x="946.49" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (66 samples, 0.14%)</title><rect x="684.1" y="1285" width="1.7" height="15.0" fill="rgb(244,166,12)" rx="2" ry="2" />
<text text-anchor="" x="687.14" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (6 samples, 0.01%)</title><rect x="805.5" y="1445" width="0.1" height="15.0" fill="rgb(254,37,18)" rx="2" ry="2" />
<text text-anchor="" x="808.46" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (8 samples, 0.02%)</title><rect x="685.3" y="1141" width="0.2" height="15.0" fill="rgb(237,4,12)" rx="2" ry="2" />
<text text-anchor="" x="688.27" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (4 samples, 0.01%)</title><rect x="258.2" y="1413" width="0.1" height="15.0" fill="rgb(232,168,11)" rx="2" ry="2" />
<text text-anchor="" x="261.16" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (61 samples, 0.13%)</title><rect x="676.6" y="1477" width="1.5" height="15.0" fill="rgb(213,128,45)" rx="2" ry="2" />
<text text-anchor="" x="679.56" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (38 samples, 0.08%)</title><rect x="164.1" y="1525" width="0.9" height="15.0" fill="rgb(241,30,36)" rx="2" ry="2" />
<text text-anchor="" x="167.07" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>foward_packet_to_frontend (1,004 samples, 2.19%)</title><rect x="65.2" y="1493" width="25.9" height="15.0" fill="rgb(225,112,28)" rx="2" ry="2" />
<text text-anchor="" x="68.25" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >f..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (5 samples, 0.01%)</title><rect x="148.3" y="1493" width="0.1" height="15.0" fill="rgb(229,42,54)" rx="2" ry="2" />
<text text-anchor="" x="151.26" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_str_init_static_internal (27 samples, 0.06%)</title><rect x="16.8" y="1637" width="0.7" height="15.0" fill="rgb(252,80,9)" rx="2" ry="2" />
<text text-anchor="" x="19.84" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (6 samples, 0.01%)</title><rect x="271.8" y="1397" width="0.1" height="15.0" fill="rgb(221,0,2)" rx="2" ry="2" />
<text text-anchor="" x="274.76" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (12 samples, 0.03%)</title><rect x="319.8" y="1381" width="0.3" height="15.0" fill="rgb(218,99,52)" rx="2" ry="2" />
<text text-anchor="" x="322.78" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (12 samples, 0.03%)</title><rect x="164.6" y="1509" width="0.3" height="15.0" fill="rgb(225,86,26)" rx="2" ry="2" />
<text text-anchor="" x="167.63" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (18 samples, 0.04%)</title><rect x="719.3" y="1429" width="0.4" height="15.0" fill="rgb(208,158,8)" rx="2" ry="2" />
<text text-anchor="" x="722.26" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmpxchg_double_slab.isra.61 (8 samples, 0.02%)</title><rect x="1019.0" y="1269" width="0.2" height="15.0" fill="rgb(205,39,39)" rx="2" ry="2" />
<text text-anchor="" x="1021.99" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (35 samples, 0.08%)</title><rect x="788.2" y="1333" width="0.9" height="15.0" fill="rgb(250,15,6)" rx="2" ry="2" />
<text text-anchor="" x="791.23" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (13 samples, 0.03%)</title><rect x="289.3" y="1317" width="0.4" height="15.0" fill="rgb(231,159,0)" rx="2" ry="2" />
<text text-anchor="" x="292.32" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (121 samples, 0.26%)</title><rect x="757.3" y="1237" width="3.1" height="15.0" fill="rgb(207,216,25)" rx="2" ry="2" />
<text text-anchor="" x="760.28" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cgroup_account_cputime (10 samples, 0.02%)</title><rect x="479.5" y="1093" width="0.2" height="15.0" fill="rgb(252,47,52)" rx="2" ry="2" />
<text text-anchor="" x="482.48" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (702 samples, 1.53%)</title><rect x="1013.7" y="1493" width="18.0" height="15.0" fill="rgb(226,78,19)" rx="2" ry="2" />
<text text-anchor="" x="1016.69" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_packets_and_process (19,076 samples, 41.56%)</title><rect x="634.6" y="1541" width="490.4" height="15.0" fill="rgb(244,198,19)" rx="2" ry="2" />
<text text-anchor="" x="637.60" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >read_packets_and_process</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="392.2" y="1445" width="1.1" height="15.0" fill="rgb(245,69,30)" rx="2" ry="2" />
<text text-anchor="" x="395.18" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (57 samples, 0.12%)</title><rect x="414.8" y="1285" width="1.5" height="15.0" fill="rgb(254,189,42)" rx="2" ry="2" />
<text text-anchor="" x="417.82" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_head (4 samples, 0.01%)</title><rect x="869.8" y="1413" width="0.1" height="15.0" fill="rgb(247,157,32)" rx="2" ry="2" />
<text text-anchor="" x="872.75" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextDelete (104 samples, 0.23%)</title><rect x="309.8" y="1445" width="2.7" height="15.0" fill="rgb(250,143,48)" rx="2" ry="2" />
<text text-anchor="" x="312.78" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (5 samples, 0.01%)</title><rect x="1047.3" y="1381" width="0.1" height="15.0" fill="rgb(246,172,27)" rx="2" ry="2" />
<text text-anchor="" x="1050.32" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (5 samples, 0.01%)</title><rect x="365.5" y="1253" width="0.1" height="15.0" fill="rgb(231,142,12)" rx="2" ry="2" />
<text text-anchor="" x="368.52" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (8 samples, 0.02%)</title><rect x="354.8" y="1397" width="0.2" height="15.0" fill="rgb(242,155,1)" rx="2" ry="2" />
<text text-anchor="" x="357.77" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (8 samples, 0.02%)</title><rect x="827.8" y="1477" width="0.2" height="15.0" fill="rgb(218,20,26)" rx="2" ry="2" />
<text text-anchor="" x="830.77" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (229 samples, 0.50%)</title><rect x="205.3" y="1493" width="5.8" height="15.0" fill="rgb(247,83,34)" rx="2" ry="2" />
<text text-anchor="" x="208.25" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (5 samples, 0.01%)</title><rect x="687.0" y="1253" width="0.1" height="15.0" fill="rgb(247,19,33)" rx="2" ry="2" />
<text text-anchor="" x="689.97" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (5 samples, 0.01%)</title><rect x="401.9" y="1189" width="0.1" height="15.0" fill="rgb(243,224,36)" rx="2" ry="2" />
<text text-anchor="" x="404.87" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (30 samples, 0.07%)</title><rect x="759.4" y="1205" width="0.8" height="15.0" fill="rgb(243,95,33)" rx="2" ry="2" />
<text text-anchor="" x="762.39" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (8 samples, 0.02%)</title><rect x="454.3" y="1285" width="0.2" height="15.0" fill="rgb(245,125,12)" rx="2" ry="2" />
<text text-anchor="" x="457.29" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (9 samples, 0.02%)</title><rect x="1033.1" y="1509" width="0.2" height="15.0" fill="rgb(240,218,18)" rx="2" ry="2" />
<text text-anchor="" x="1036.05" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (19 samples, 0.04%)</title><rect x="607.5" y="1509" width="0.5" height="15.0" fill="rgb(248,216,0)" rx="2" ry="2" />
<text text-anchor="" x="610.53" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (19 samples, 0.04%)</title><rect x="120.3" y="1413" width="0.5" height="15.0" fill="rgb(211,196,26)" rx="2" ry="2" />
<text text-anchor="" x="123.26" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (4 samples, 0.01%)</title><rect x="287.0" y="1317" width="0.1" height="15.0" fill="rgb(208,5,29)" rx="2" ry="2" />
<text text-anchor="" x="289.98" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (9 samples, 0.02%)</title><rect x="683.9" y="1285" width="0.2" height="15.0" fill="rgb(236,156,47)" rx="2" ry="2" />
<text text-anchor="" x="686.91" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>detect_postmaster_down_error (121 samples, 0.26%)</title><rect x="1058.0" y="1525" width="3.1" height="15.0" fill="rgb(217,147,46)" rx="2" ry="2" />
<text text-anchor="" x="1060.96" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (35 samples, 0.08%)</title><rect x="324.9" y="1237" width="0.9" height="15.0" fill="rgb(248,78,30)" rx="2" ry="2" />
<text text-anchor="" x="327.87" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_idle (29 samples, 0.06%)</title><rect x="578.8" y="1365" width="0.7" height="15.0" fill="rgb(249,51,44)" rx="2" ry="2" />
<text text-anchor="" x="581.79" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="885.2" y="1445" width="0.2" height="15.0" fill="rgb(217,26,15)" rx="2" ry="2" />
<text text-anchor="" x="888.23" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (83 samples, 0.18%)</title><rect x="511.8" y="1525" width="2.2" height="15.0" fill="rgb(210,148,30)" rx="2" ry="2" />
<text text-anchor="" x="514.85" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>extract_message (2,245 samples, 4.89%)</title><rect x="1061.4" y="1509" width="57.7" height="15.0" fill="rgb(214,153,24)" rx="2" ry="2" />
<text text-anchor="" x="1064.43" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >extrac..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_getpeersec_dgram (7 samples, 0.02%)</title><rect x="123.9" y="1333" width="0.2" height="15.0" fill="rgb(206,148,38)" rx="2" ry="2" />
<text text-anchor="" x="126.89" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>save_pending_data (4 samples, 0.01%)</title><rect x="295.9" y="1477" width="0.1" height="15.0" fill="rgb(208,133,18)" rx="2" ry="2" />
<text text-anchor="" x="298.87" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1077" width="1.4" height="15.0" fill="rgb(248,87,9)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (18 samples, 0.04%)</title><rect x="621.6" y="1509" width="0.5" height="15.0" fill="rgb(245,172,18)" rx="2" ry="2" />
<text text-anchor="" x="624.62" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select at plt (7 samples, 0.02%)</title><rect x="1125.0" y="1541" width="0.2" height="15.0" fill="rgb(231,127,30)" rx="2" ry="2" />
<text text-anchor="" x="1128.01" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (63 samples, 0.14%)</title><rect x="248.2" y="1285" width="1.6" height="15.0" fill="rgb(233,186,48)" rx="2" ry="2" />
<text text-anchor="" x="251.21" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset_erms (39 samples, 0.08%)</title><rect x="606.2" y="1477" width="1.0" height="15.0" fill="rgb(243,56,4)" rx="2" ry="2" />
<text text-anchor="" x="609.17" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_query_context_dest_set (4 samples, 0.01%)</title><rect x="662.9" y="1509" width="0.1" height="15.0" fill="rgb(243,98,32)" rx="2" ry="2" />
<text text-anchor="" x="665.91" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fput (6 samples, 0.01%)</title><rect x="1108.7" y="1365" width="0.1" height="15.0" fill="rgb(225,130,40)" rx="2" ry="2" />
<text text-anchor="" x="1111.66" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_length (14 samples, 0.03%)</title><rect x="211.7" y="1493" width="0.3" height="15.0" fill="rgb(213,169,16)" rx="2" ry="2" />
<text text-anchor="" x="214.65" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (875 samples, 1.91%)</title><rect x="465.1" y="1221" width="22.5" height="15.0" fill="rgb(215,61,32)" rx="2" ry="2" />
<text text-anchor="" x="468.06" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (11 samples, 0.02%)</title><rect x="415.3" y="1189" width="0.3" height="15.0" fill="rgb(238,191,50)" rx="2" ry="2" />
<text text-anchor="" x="418.34" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (18 samples, 0.04%)</title><rect x="1063.4" y="1477" width="0.5" height="15.0" fill="rgb(208,171,25)" rx="2" ry="2" />
<text text-anchor="" x="1066.39" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (9 samples, 0.02%)</title><rect x="738.3" y="1221" width="0.3" height="15.0" fill="rgb(239,167,35)" rx="2" ry="2" />
<text text-anchor="" x="741.34" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prefetch_freepointer (4 samples, 0.01%)</title><rect x="327.2" y="1237" width="0.1" height="15.0" fill="rgb(246,160,47)" rx="2" ry="2" />
<text text-anchor="" x="330.21" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProcessBackendResponse (9,481 samples, 20.66%)</title><rect x="52.6" y="1541" width="243.8" height="15.0" fill="rgb(222,43,35)" rx="2" ry="2" />
<text text-anchor="" x="55.65" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ProcessBackendResponse</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (12 samples, 0.03%)</title><rect x="151.0" y="1493" width="0.3" height="15.0" fill="rgb(216,78,18)" rx="2" ry="2" />
<text text-anchor="" x="154.03" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yyset_extra (5 samples, 0.01%)</title><rect x="1001.3" y="1477" width="0.1" height="15.0" fill="rgb(236,7,12)" rx="2" ry="2" />
<text text-anchor="" x="1004.25" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="860.1" y="1397" width="0.1" height="15.0" fill="rgb(244,221,7)" rx="2" ry="2" />
<text text-anchor="" x="863.11" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stack_object (6 samples, 0.01%)</title><rect x="1111.3" y="1365" width="0.1" height="15.0" fill="rgb(226,134,27)" rx="2" ry="2" />
<text text-anchor="" x="1114.26" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>compare (38 samples, 0.08%)</title><rect x="1175.4" y="1637" width="1.0" height="15.0" fill="rgb(254,159,31)" rx="2" ry="2" />
<text text-anchor="" x="1178.40" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>intel_pmu_enable_all (5 samples, 0.01%)</title><rect x="444.0" y="1221" width="0.1" height="15.0" fill="rgb(220,161,51)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (4 samples, 0.01%)</title><rect x="656.7" y="1461" width="0.1" height="15.0" fill="rgb(227,83,49)" rx="2" ry="2" />
<text text-anchor="" x="659.74" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (22 samples, 0.05%)</title><rect x="311.9" y="1429" width="0.6" height="15.0" fill="rgb(231,220,38)" rx="2" ry="2" />
<text text-anchor="" x="314.89" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (172 samples, 0.37%)</title><rect x="249.8" y="1285" width="4.5" height="15.0" fill="rgb(240,140,33)" rx="2" ry="2" />
<text text-anchor="" x="252.83" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="629" width="1.3" height="15.0" fill="rgb(214,132,0)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>maybe_add_creds (12 samples, 0.03%)</title><rect x="750.6" y="1301" width="0.3" height="15.0" fill="rgb(238,187,28)" rx="2" ry="2" />
<text text-anchor="" x="753.60" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (4 samples, 0.01%)</title><rect x="11.4" y="133" width="0.1" height="15.0" fill="rgb(223,147,35)" rx="2" ry="2" />
<text text-anchor="" x="14.36" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pollwait (20 samples, 0.04%)</title><rect x="593.8" y="1429" width="0.5" height="15.0" fill="rgb(210,200,28)" rx="2" ry="2" />
<text text-anchor="" x="596.78" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (175 samples, 0.38%)</title><rect x="890.0" y="1413" width="4.5" height="15.0" fill="rgb(251,13,15)" rx="2" ry="2" />
<text text-anchor="" x="893.04" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (215 samples, 0.47%)</title><rect x="1143.3" y="1573" width="5.5" height="15.0" fill="rgb(228,173,13)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (35 samples, 0.08%)</title><rect x="1042.4" y="1477" width="0.9" height="15.0" fill="rgb(222,87,11)" rx="2" ry="2" />
<text text-anchor="" x="1045.38" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (10 samples, 0.02%)</title><rect x="148.4" y="1493" width="0.2" height="15.0" fill="rgb(244,217,37)" rx="2" ry="2" />
<text text-anchor="" x="151.39" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (30 samples, 0.07%)</title><rect x="10.7" y="165" width="0.8" height="15.0" fill="rgb(213,79,38)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_wakeup (47 samples, 0.10%)</title><rect x="783.0" y="1125" width="1.2" height="15.0" fill="rgb(243,36,11)" rx="2" ry="2" />
<text text-anchor="" x="785.96" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent (6 samples, 0.01%)</title><rect x="727.0" y="1477" width="0.2" height="15.0" fill="rgb(226,178,23)" rx="2" ry="2" />
<text text-anchor="" x="730.00" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (7 samples, 0.02%)</title><rect x="1081.9" y="1189" width="0.2" height="15.0" fill="rgb(211,36,12)" rx="2" ry="2" />
<text text-anchor="" x="1084.95" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (10 samples, 0.02%)</title><rect x="381.8" y="1509" width="0.3" height="15.0" fill="rgb(227,23,16)" rx="2" ry="2" />
<text text-anchor="" x="384.82" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (9 samples, 0.02%)</title><rect x="306.0" y="1493" width="0.3" height="15.0" fill="rgb(246,189,44)" rx="2" ry="2" />
<text text-anchor="" x="309.03" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (313 samples, 0.68%)</title><rect x="1103.7" y="1413" width="8.0" height="15.0" fill="rgb(212,41,3)" rx="2" ry="2" />
<text text-anchor="" x="1106.67" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>temp_table_walker (15 samples, 0.03%)</title><rect x="865.0" y="1381" width="0.4" height="15.0" fill="rgb(238,140,9)" rx="2" ry="2" />
<text text-anchor="" x="867.97" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (81 samples, 0.18%)</title><rect x="1007.2" y="1445" width="2.1" height="15.0" fill="rgb(217,58,26)" rx="2" ry="2" />
<text text-anchor="" x="1010.19" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_load_avg_se.isra.38 (4 samples, 0.01%)</title><rect x="285.0" y="1253" width="0.1" height="15.0" fill="rgb(254,117,11)" rx="2" ry="2" />
<text text-anchor="" x="288.02" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sigprocmask (76 samples, 0.17%)</title><rect x="110.1" y="1445" width="2.0" height="15.0" fill="rgb(237,52,27)" rx="2" ry="2" />
<text text-anchor="" x="113.13" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcpy_sse2_unaligned (48 samples, 0.10%)</title><rect x="798.9" y="1461" width="1.2" height="15.0" fill="rgb(239,27,38)" rx="2" ry="2" />
<text text-anchor="" x="801.88" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeRangeVar (11 samples, 0.02%)</title><rect x="1001.6" y="1477" width="0.2" height="15.0" fill="rgb(222,163,54)" rx="2" ry="2" />
<text text-anchor="" x="1004.56" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (6 samples, 0.01%)</title><rect x="789.1" y="1333" width="0.2" height="15.0" fill="rgb(246,12,28)" rx="2" ry="2" />
<text text-anchor="" x="792.13" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (32 samples, 0.07%)</title><rect x="145.6" y="1509" width="0.9" height="15.0" fill="rgb(237,160,14)" rx="2" ry="2" />
<text text-anchor="" x="148.64" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pstrdup (19 samples, 0.04%)</title><rect x="722.0" y="1477" width="0.5" height="15.0" fill="rgb(218,116,4)" rx="2" ry="2" />
<text text-anchor="" x="724.98" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_old_init (15 samples, 0.03%)</title><rect x="16.2" y="1637" width="0.4" height="15.0" fill="rgb(213,108,22)" rx="2" ry="2" />
<text text-anchor="" x="19.20" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (16 samples, 0.03%)</title><rect x="177.8" y="1269" width="0.4" height="15.0" fill="rgb(249,73,43)" rx="2" ry="2" />
<text text-anchor="" x="180.82" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (46 samples, 0.10%)</title><rect x="1019.5" y="1285" width="1.2" height="15.0" fill="rgb(212,114,20)" rx="2" ry="2" />
<text text-anchor="" x="1022.48" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (5 samples, 0.01%)</title><rect x="100.0" y="1477" width="0.1" height="15.0" fill="rgb(215,204,26)" rx="2" ry="2" />
<text text-anchor="" x="102.95" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (6 samples, 0.01%)</title><rect x="358.0" y="1269" width="0.2" height="15.0" fill="rgb(245,119,51)" rx="2" ry="2" />
<text text-anchor="" x="361.01" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm (24 samples, 0.05%)</title><rect x="572.5" y="1349" width="0.6" height="15.0" fill="rgb(239,106,19)" rx="2" ry="2" />
<text text-anchor="" x="575.47" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (8 samples, 0.02%)</title><rect x="187.4" y="1509" width="0.2" height="15.0" fill="rgb(228,65,18)" rx="2" ry="2" />
<text text-anchor="" x="190.36" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (121 samples, 0.26%)</title><rect x="125.4" y="1333" width="3.1" height="15.0" fill="rgb(230,91,19)" rx="2" ry="2" />
<text text-anchor="" x="128.43" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (607 samples, 1.32%)</title><rect x="318.6" y="1477" width="15.6" height="15.0" fill="rgb(241,211,38)" rx="2" ry="2" />
<text text-anchor="" x="321.63" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_r9 (6 samples, 0.01%)</title><rect x="532.1" y="1461" width="0.1" height="15.0" fill="rgb(215,201,34)" rx="2" ry="2" />
<text text-anchor="" x="535.05" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (59 samples, 0.13%)</title><rect x="340.7" y="1493" width="1.6" height="15.0" fill="rgb(238,40,34)" rx="2" ry="2" />
<text text-anchor="" x="343.73" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (9 samples, 0.02%)</title><rect x="1134.3" y="1621" width="0.3" height="15.0" fill="rgb(223,35,49)" rx="2" ry="2" />
<text text-anchor="" x="1137.34" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (41 samples, 0.09%)</title><rect x="79.8" y="1221" width="1.1" height="15.0" fill="rgb(251,43,25)" rx="2" ry="2" />
<text text-anchor="" x="82.85" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="613" width="1.3" height="15.0" fill="rgb(248,198,23)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pollwait (172 samples, 0.37%)</title><rect x="597.4" y="1413" width="4.4" height="15.0" fill="rgb(238,47,26)" rx="2" ry="2" />
<text text-anchor="" x="600.40" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (79 samples, 0.17%)</title><rect x="791.7" y="1461" width="2.0" height="15.0" fill="rgb(239,8,35)" rx="2" ry="2" />
<text text-anchor="" x="794.65" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (20 samples, 0.04%)</title><rect x="1138.2" y="1621" width="0.5" height="15.0" fill="rgb(211,121,9)" rx="2" ry="2" />
<text text-anchor="" x="1141.22" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (9 samples, 0.02%)</title><rect x="1049.2" y="1333" width="0.2" height="15.0" fill="rgb(237,184,51)" rx="2" ry="2" />
<text text-anchor="" x="1052.17" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (9 samples, 0.02%)</title><rect x="487.6" y="1221" width="0.2" height="15.0" fill="rgb(210,53,25)" rx="2" ry="2" />
<text text-anchor="" x="490.55" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (9 samples, 0.02%)</title><rect x="122.5" y="1349" width="0.3" height="15.0" fill="rgb(231,116,11)" rx="2" ry="2" />
<text text-anchor="" x="125.52" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>stat_count_up (34 samples, 0.07%)</title><rect x="420.7" y="1493" width="0.9" height="15.0" fill="rgb(248,177,39)" rx="2" ry="2" />
<text text-anchor="" x="423.71" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.43 (61 samples, 0.13%)</title><rect x="755.7" y="1237" width="1.6" height="15.0" fill="rgb(230,58,9)" rx="2" ry="2" />
<text text-anchor="" x="758.71" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="313.4" y="1429" width="0.2" height="15.0" fill="rgb(205,128,51)" rx="2" ry="2" />
<text text-anchor="" x="316.41" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_create (51 samples, 0.11%)</title><rect x="507.1" y="1525" width="1.4" height="15.0" fill="rgb(253,172,54)" rx="2" ry="2" />
<text text-anchor="" x="510.14" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (7 samples, 0.02%)</title><rect x="1044.9" y="1413" width="0.2" height="15.0" fill="rgb(243,185,50)" rx="2" ry="2" />
<text text-anchor="" x="1047.90" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (6 samples, 0.01%)</title><rect x="336.9" y="1493" width="0.2" height="15.0" fill="rgb(220,27,38)" rx="2" ry="2" />
<text text-anchor="" x="339.90" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (214 samples, 0.47%)</title><rect x="76.9" y="1269" width="5.5" height="15.0" fill="rgb(232,134,7)" rx="2" ry="2" />
<text text-anchor="" x="79.89" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetInit (6 samples, 0.01%)</title><rect x="796.1" y="1461" width="0.1" height="15.0" fill="rgb(209,20,3)" rx="2" ry="2" />
<text text-anchor="" x="799.08" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (7 samples, 0.02%)</title><rect x="145.5" y="1493" width="0.1" height="15.0" fill="rgb(228,223,18)" rx="2" ry="2" />
<text text-anchor="" x="148.46" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="357" width="1.1" height="15.0" fill="rgb(249,45,5)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (31 samples, 0.07%)</title><rect x="786.4" y="1285" width="0.8" height="15.0" fill="rgb(237,15,27)" rx="2" ry="2" />
<text text-anchor="" x="789.43" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (64 samples, 0.14%)</title><rect x="10.7" y="1573" width="1.6" height="15.0" fill="rgb(250,194,42)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_freewait (16 samples, 0.03%)</title><rect x="691.9" y="1365" width="0.4" height="15.0" fill="rgb(209,219,22)" rx="2" ry="2" />
<text text-anchor="" x="694.93" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (14 samples, 0.03%)</title><rect x="1103.3" y="1413" width="0.4" height="15.0" fill="rgb(229,75,53)" rx="2" ry="2" />
<text text-anchor="" x="1106.31" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (15 samples, 0.03%)</title><rect x="517.9" y="1541" width="0.4" height="15.0" fill="rgb(234,219,23)" rx="2" ry="2" />
<text text-anchor="" x="520.94" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (691 samples, 1.51%)</title><rect x="1013.7" y="1477" width="17.8" height="15.0" fill="rgb(239,75,34)" rx="2" ry="2" />
<text text-anchor="" x="1016.69" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (212 samples, 0.46%)</title><rect x="476.2" y="1125" width="5.4" height="15.0" fill="rgb(218,164,27)" rx="2" ry="2" />
<text text-anchor="" x="479.16" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (7 samples, 0.02%)</title><rect x="99.3" y="1509" width="0.1" height="15.0" fill="rgb(208,39,15)" rx="2" ry="2" />
<text text-anchor="" x="102.26" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (28 samples, 0.06%)</title><rect x="819.7" y="1477" width="0.7" height="15.0" fill="rgb(221,215,39)" rx="2" ry="2" />
<text text-anchor="" x="822.70" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (5 samples, 0.01%)</title><rect x="1014.5" y="1445" width="0.1" height="15.0" fill="rgb(211,78,43)" rx="2" ry="2" />
<text text-anchor="" x="1017.52" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (6 samples, 0.01%)</title><rect x="992.1" y="1413" width="0.1" height="15.0" fill="rgb(231,148,28)" rx="2" ry="2" />
<text text-anchor="" x="995.07" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (12 samples, 0.03%)</title><rect x="1049.8" y="1397" width="0.3" height="15.0" fill="rgb(253,56,18)" rx="2" ry="2" />
<text text-anchor="" x="1052.84" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (644 samples, 1.40%)</title><rect x="70.6" y="1333" width="16.6" height="15.0" fill="rgb(229,8,49)" rx="2" ry="2" />
<text text-anchor="" x="73.65" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.06%)</title><rect x="10.7" y="133" width="0.7" height="15.0" fill="rgb(223,90,37)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_length (11 samples, 0.02%)</title><rect x="675.2" y="1477" width="0.3" height="15.0" fill="rgb(236,21,10)" rx="2" ry="2" />
<text text-anchor="" x="678.25" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (105 samples, 0.23%)</title><rect x="251.3" y="1205" width="2.7" height="15.0" fill="rgb(213,151,21)" rx="2" ry="2" />
<text text-anchor="" x="254.27" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (9 samples, 0.02%)</title><rect x="98.7" y="1493" width="0.2" height="15.0" fill="rgb(220,142,17)" rx="2" ry="2" />
<text text-anchor="" x="101.67" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (44 samples, 0.10%)</title><rect x="195.9" y="1477" width="1.1" height="15.0" fill="rgb(240,77,46)" rx="2" ry="2" />
<text text-anchor="" x="198.87" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (6 samples, 0.01%)</title><rect x="396.9" y="1301" width="0.1" height="15.0" fill="rgb(243,45,44)" rx="2" ry="2" />
<text text-anchor="" x="399.88" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (4 samples, 0.01%)</title><rect x="672.0" y="1461" width="0.1" height="15.0" fill="rgb(221,122,9)" rx="2" ry="2" />
<text text-anchor="" x="674.96" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>temp_table_walker (8 samples, 0.02%)</title><rect x="865.6" y="1429" width="0.2" height="15.0" fill="rgb(206,106,1)" rx="2" ry="2" />
<text text-anchor="" x="868.59" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (6 samples, 0.01%)</title><rect x="510.8" y="1493" width="0.1" height="15.0" fill="rgb(242,32,43)" rx="2" ry="2" />
<text text-anchor="" x="513.77" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (4 samples, 0.01%)</title><rect x="894.6" y="1429" width="0.1" height="15.0" fill="rgb(215,69,25)" rx="2" ry="2" />
<text text-anchor="" x="897.56" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read2 (34 samples, 0.07%)</title><rect x="1038.9" y="1509" width="0.8" height="15.0" fill="rgb(234,94,22)" rx="2" ry="2" />
<text text-anchor="" x="1041.86" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_start_transaction_query (12 samples, 0.03%)</title><rect x="92.3" y="1509" width="0.4" height="15.0" fill="rgb(252,57,28)" rx="2" ry="2" />
<text text-anchor="" x="95.34" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (139 samples, 0.30%)</title><rect x="324.5" y="1301" width="3.6" height="15.0" fill="rgb(246,204,39)" rx="2" ry="2" />
<text text-anchor="" x="327.51" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (32 samples, 0.07%)</title><rect x="126.0" y="1269" width="0.9" height="15.0" fill="rgb(233,146,22)" rx="2" ry="2" />
<text text-anchor="" x="129.05" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (581 samples, 1.27%)</title><rect x="353.9" y="1461" width="15.0" height="15.0" fill="rgb(223,173,39)" rx="2" ry="2" />
<text text-anchor="" x="356.92" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (286 samples, 0.62%)</title><rect x="123.1" y="1349" width="7.3" height="15.0" fill="rgb(210,132,40)" rx="2" ry="2" />
<text text-anchor="" x="126.06" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="718.0" y="1429" width="0.2" height="15.0" fill="rgb(216,56,16)" rx="2" ry="2" />
<text text-anchor="" x="721.03" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_sendmsg (8 samples, 0.02%)</title><rect x="71.3" y="1301" width="0.2" height="15.0" fill="rgb(215,176,7)" rx="2" ry="2" />
<text text-anchor="" x="74.26" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (10 samples, 0.02%)</title><rect x="726.6" y="1477" width="0.3" height="15.0" fill="rgb(248,213,2)" rx="2" ry="2" />
<text text-anchor="" x="729.61" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yyalloc (15 samples, 0.03%)</title><rect x="1006.4" y="1445" width="0.4" height="15.0" fill="rgb(229,115,23)" rx="2" ry="2" />
<text text-anchor="" x="1009.37" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (54 samples, 0.12%)</title><rect x="604.7" y="1461" width="1.4" height="15.0" fill="rgb(221,39,16)" rx="2" ry="2" />
<text text-anchor="" x="607.68" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (5 samples, 0.01%)</title><rect x="941.0" y="1461" width="0.2" height="15.0" fill="rgb(229,192,15)" rx="2" ry="2" />
<text text-anchor="" x="944.04" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strncpy_sse2_unaligned (51 samples, 0.11%)</title><rect x="385.1" y="1509" width="1.3" height="15.0" fill="rgb(215,149,25)" rx="2" ry="2" />
<text text-anchor="" x="388.05" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush (2,185 samples, 4.76%)</title><rect x="440.2" y="1493" width="56.2" height="15.0" fill="rgb(231,216,28)" rx="2" ry="2" />
<text text-anchor="" x="443.22" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >pool_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="727.6" y="1461" width="0.1" height="15.0" fill="rgb(217,146,16)" rx="2" ry="2" />
<text text-anchor="" x="730.59" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_in_progress (15 samples, 0.03%)</title><rect x="820.8" y="1493" width="0.4" height="15.0" fill="rgb(248,44,51)" rx="2" ry="2" />
<text text-anchor="" x="823.78" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (200 samples, 0.44%)</title><rect x="107.2" y="1493" width="5.1" height="15.0" fill="rgb(234,120,44)" rx="2" ry="2" />
<text text-anchor="" x="110.20" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_new_mm_cr3 (14 samples, 0.03%)</title><rect x="573.7" y="1365" width="0.4" height="15.0" fill="rgb(205,10,26)" rx="2" ry="2" />
<text text-anchor="" x="576.70" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (42 samples, 0.09%)</title><rect x="1080.3" y="1157" width="1.0" height="15.0" fill="rgb(239,84,4)" rx="2" ry="2" />
<text text-anchor="" x="1083.25" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (45 samples, 0.10%)</title><rect x="265.9" y="1477" width="1.2" height="15.0" fill="rgb(239,107,23)" rx="2" ry="2" />
<text text-anchor="" x="268.92" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pg_database_encoding_max_length (6 samples, 0.01%)</title><rect x="985.0" y="1413" width="0.2" height="15.0" fill="rgb(206,21,30)" rx="2" ry="2" />
<text text-anchor="" x="988.00" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (42 samples, 0.09%)</title><rect x="288.6" y="1365" width="1.1" height="15.0" fill="rgb(253,97,6)" rx="2" ry="2" />
<text text-anchor="" x="291.65" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleForwardToFrontend (5 samples, 0.01%)</title><rect x="660.6" y="1509" width="0.2" height="15.0" fill="rgb(245,83,46)" rx="2" ry="2" />
<text text-anchor="" x="663.65" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (8 samples, 0.02%)</title><rect x="879.9" y="1349" width="0.2" height="15.0" fill="rgb(225,178,42)" rx="2" ry="2" />
<text text-anchor="" x="882.86" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (237 samples, 0.52%)</title><rect x="755.3" y="1285" width="6.1" height="15.0" fill="rgb(247,119,47)" rx="2" ry="2" />
<text text-anchor="" x="758.28" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (46 samples, 0.10%)</title><rect x="983.4" y="1397" width="1.2" height="15.0" fill="rgb(205,47,36)" rx="2" ry="2" />
<text text-anchor="" x="986.38" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__x86_indirect_thunk_r9 (4 samples, 0.01%)</title><rect x="271.6" y="1397" width="0.1" height="15.0" fill="rgb(225,212,21)" rx="2" ry="2" />
<text text-anchor="" x="274.61" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (9 samples, 0.02%)</title><rect x="380.9" y="1477" width="0.2" height="15.0" fill="rgb(252,46,22)" rx="2" ry="2" />
<text text-anchor="" x="383.86" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_fd (16 samples, 0.03%)</title><rect x="1096.6" y="1493" width="0.4" height="15.0" fill="rgb(248,122,10)" rx="2" ry="2" />
<text text-anchor="" x="1099.55" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (493 samples, 1.07%)</title><rect x="843.7" y="1429" width="12.7" height="15.0" fill="rgb(245,21,15)" rx="2" ry="2" />
<text text-anchor="" x="846.69" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="465.9" y="1189" width="0.1" height="15.0" fill="rgb(217,163,35)" rx="2" ry="2" />
<text text-anchor="" x="468.93" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_remove_sent_message (278 samples, 0.61%)</title><rect x="306.4" y="1493" width="7.2" height="15.0" fill="rgb(249,50,47)" rx="2" ry="2" />
<text text-anchor="" x="309.44" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (156 samples, 0.34%)</title><rect x="279.3" y="1285" width="4.0" height="15.0" fill="rgb(220,75,24)" rx="2" ry="2" />
<text text-anchor="" x="282.27" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (6 samples, 0.01%)</title><rect x="559.3" y="1349" width="0.1" height="15.0" fill="rgb(236,35,42)" rx="2" ry="2" />
<text text-anchor="" x="562.28" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_start_transaction_query (6 samples, 0.01%)</title><rect x="1034.7" y="1509" width="0.2" height="15.0" fill="rgb(231,147,49)" rx="2" ry="2" />
<text text-anchor="" x="1037.75" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_to_iter (45 samples, 0.10%)</title><rect x="1026.4" y="1301" width="1.1" height="15.0" fill="rgb(248,27,49)" rx="2" ry="2" />
<text text-anchor="" x="1029.37" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (11 samples, 0.02%)</title><rect x="10.7" y="37" width="0.3" height="15.0" fill="rgb(230,49,32)" rx="2" ry="2" />
<text text-anchor="" x="13.72" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (24 samples, 0.05%)</title><rect x="1070.1" y="1317" width="0.7" height="15.0" fill="rgb(228,106,7)" rx="2" ry="2" />
<text text-anchor="" x="1073.15" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (17 samples, 0.04%)</title><rect x="131.1" y="1365" width="0.4" height="15.0" fill="rgb(243,136,29)" rx="2" ry="2" />
<text text-anchor="" x="134.08" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (568 samples, 1.24%)</title><rect x="868.5" y="1429" width="14.6" height="15.0" fill="rgb(243,166,17)" rx="2" ry="2" />
<text text-anchor="" x="871.52" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="1098.8" y="1461" width="0.1" height="15.0" fill="rgb(212,192,28)" rx="2" ry="2" />
<text text-anchor="" x="1101.81" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (514 samples, 1.12%)</title><rect x="473.8" y="1173" width="13.2" height="15.0" fill="rgb(253,7,32)" rx="2" ry="2" />
<text text-anchor="" x="476.80" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (7 samples, 0.02%)</title><rect x="364.4" y="1157" width="0.1" height="15.0" fill="rgb(212,111,41)" rx="2" ry="2" />
<text text-anchor="" x="367.36" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (4 samples, 0.01%)</title><rect x="296.2" y="1493" width="0.1" height="15.0" fill="rgb(213,191,8)" rx="2" ry="2" />
<text text-anchor="" x="299.16" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlogged_table_walker (11 samples, 0.02%)</title><rect x="883.1" y="1429" width="0.3" height="15.0" fill="rgb(225,154,46)" rx="2" ry="2" />
<text text-anchor="" x="886.12" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (5 samples, 0.01%)</title><rect x="479.7" y="1093" width="0.2" height="15.0" fill="rgb(230,123,43)" rx="2" ry="2" />
<text text-anchor="" x="482.74" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (89 samples, 0.19%)</title><rect x="328.3" y="1285" width="2.3" height="15.0" fill="rgb(241,227,27)" rx="2" ry="2" />
<text text-anchor="" x="331.29" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (5 samples, 0.01%)</title><rect x="291.2" y="1445" width="0.1" height="15.0" fill="rgb(236,103,38)" rx="2" ry="2" />
<text text-anchor="" x="294.17" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (111 samples, 0.24%)</title><rect x="1130.0" y="1605" width="2.9" height="15.0" fill="rgb(223,143,37)" rx="2" ry="2" />
<text text-anchor="" x="1133.02" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (10 samples, 0.02%)</title><rect x="1043.9" y="1429" width="0.2" height="15.0" fill="rgb(253,108,28)" rx="2" ry="2" />
<text text-anchor="" x="1046.88" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_ignore_till_sync (8 samples, 0.02%)</title><rect x="503.9" y="1525" width="0.2" height="15.0" fill="rgb(214,201,21)" rx="2" ry="2" />
<text text-anchor="" x="506.90" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (4 samples, 0.01%)</title><rect x="283.9" y="1109" width="0.1" height="15.0" fill="rgb(209,88,26)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_need_to_treat_as_if_default_transaction (5 samples, 0.01%)</title><rect x="391.6" y="1493" width="0.1" height="15.0" fill="rgb(236,209,37)" rx="2" ry="2" />
<text text-anchor="" x="394.56" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (11 samples, 0.02%)</title><rect x="744.4" y="1445" width="0.2" height="15.0" fill="rgb(206,169,25)" rx="2" ry="2" />
<text text-anchor="" x="747.35" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree at GLIBC_2.2.5 (4 samples, 0.01%)</title><rect x="347.2" y="1477" width="0.1" height="15.0" fill="rgb(212,187,37)" rx="2" ry="2" />
<text text-anchor="" x="350.21" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.01%)</title><rect x="1013.9" y="1429" width="0.1" height="15.0" fill="rgb(210,84,14)" rx="2" ry="2" />
<text text-anchor="" x="1016.93" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (26 samples, 0.06%)</title><rect x="10.7" y="117" width="0.7" height="15.0" fill="rgb(242,151,19)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (88 samples, 0.19%)</title><rect x="328.3" y="1269" width="2.3" height="15.0" fill="rgb(215,87,19)" rx="2" ry="2" />
<text text-anchor="" x="331.29" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lcons (134 samples, 0.29%)</title><rect x="986.8" y="1461" width="3.5" height="15.0" fill="rgb(234,224,24)" rx="2" ry="2" />
<text text-anchor="" x="989.83" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="469" width="1.1" height="15.0" fill="rgb(245,85,13)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_getpeersec_dgram (5 samples, 0.01%)</title><rect x="322.9" y="1301" width="0.1" height="15.0" fill="rgb(243,186,54)" rx="2" ry="2" />
<text text-anchor="" x="325.89" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_task_fair (7 samples, 0.02%)</title><rect x="483.3" y="1157" width="0.2" height="15.0" fill="rgb(232,60,20)" rx="2" ry="2" />
<text text-anchor="" x="486.31" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>call_function_single_interrupt (4 samples, 0.01%)</title><rect x="789.0" y="1301" width="0.1" height="15.0" fill="rgb(253,68,5)" rx="2" ry="2" />
<text text-anchor="" x="792.03" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (59 samples, 0.13%)</title><rect x="61.1" y="1493" width="1.5" height="15.0" fill="rgb(242,163,25)" rx="2" ry="2" />
<text text-anchor="" x="64.06" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (4 samples, 0.01%)</title><rect x="283.1" y="1221" width="0.1" height="15.0" fill="rgb(233,19,40)" rx="2" ry="2" />
<text text-anchor="" x="286.12" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (1,493 samples, 3.25%)</title><rect x="749.2" y="1365" width="38.4" height="15.0" fill="rgb(217,141,46)" rx="2" ry="2" />
<text text-anchor="" x="752.21" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="621.9" y="1493" width="0.1" height="15.0" fill="rgb(212,130,50)" rx="2" ry="2" />
<text text-anchor="" x="624.90" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (211 samples, 0.46%)</title><rect x="1143.4" y="1557" width="5.4" height="15.0" fill="rgb(205,80,27)" rx="2" ry="2" />
<text text-anchor="" x="1146.37" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>enqueue_entity (5 samples, 0.01%)</title><rect x="129.7" y="1173" width="0.1" height="15.0" fill="rgb(235,174,13)" rx="2" ry="2" />
<text text-anchor="" x="132.70" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (21 samples, 0.05%)</title><rect x="140.0" y="1477" width="0.5" height="15.0" fill="rgb(239,95,22)" rx="2" ry="2" />
<text text-anchor="" x="143.01" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl at plt (4 samples, 0.01%)</title><rect x="62.9" y="1509" width="0.1" height="15.0" fill="rgb(231,217,36)" rx="2" ry="2" />
<text text-anchor="" x="65.91" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="741" width="1.3" height="15.0" fill="rgb(234,140,54)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="751.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (64 samples, 0.14%)</title><rect x="1047.8" y="1397" width="1.7" height="15.0" fill="rgb(206,122,31)" rx="2" ry="2" />
<text text-anchor="" x="1050.83" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (20 samples, 0.04%)</title><rect x="86.6" y="1285" width="0.5" height="15.0" fill="rgb(246,171,52)" rx="2" ry="2" />
<text text-anchor="" x="89.56" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (312 samples, 0.68%)</title><rect x="395.0" y="1349" width="8.1" height="15.0" fill="rgb(226,197,39)" rx="2" ry="2" />
<text text-anchor="" x="398.03" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1237" width="1.4" height="15.0" fill="rgb(238,172,47)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (15 samples, 0.03%)</title><rect x="655.3" y="1461" width="0.4" height="15.0" fill="rgb(229,68,18)" rx="2" ry="2" />
<text text-anchor="" x="658.27" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (4 samples, 0.01%)</title><rect x="432.4" y="1477" width="0.1" height="15.0" fill="rgb(211,76,17)" rx="2" ry="2" />
<text text-anchor="" x="435.41" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (4 samples, 0.01%)</title><rect x="678.7" y="1445" width="0.1" height="15.0" fill="rgb(252,219,21)" rx="2" ry="2" />
<text text-anchor="" x="681.67" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_node_to_be_sent (8 samples, 0.02%)</title><rect x="884.4" y="1477" width="0.2" height="15.0" fill="rgb(219,163,7)" rx="2" ry="2" />
<text text-anchor="" x="887.36" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>foward_packet_to_frontend (6 samples, 0.01%)</title><rect x="91.6" y="1509" width="0.2" height="15.0" fill="rgb(219,191,23)" rx="2" ry="2" />
<text text-anchor="" x="94.65" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to_asm (4 samples, 0.01%)</title><rect x="584.2" y="1381" width="0.1" height="15.0" fill="rgb(213,96,22)" rx="2" ry="2" />
<text text-anchor="" x="587.16" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (6 samples, 0.01%)</title><rect x="669.7" y="1493" width="0.1" height="15.0" fill="rgb(246,18,22)" rx="2" ry="2" />
<text text-anchor="" x="672.67" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_vsnprintf (26 samples, 0.06%)</title><rect x="103.0" y="1509" width="0.7" height="15.0" fill="rgb(253,63,38)" rx="2" ry="2" />
<text text-anchor="" x="106.01" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prepare_exit_to_usermode (10 samples, 0.02%)</title><rect x="1174.7" y="1621" width="0.3" height="15.0" fill="rgb(211,208,38)" rx="2" ry="2" />
<text text-anchor="" x="1177.73" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (7 samples, 0.02%)</title><rect x="569.8" y="1317" width="0.2" height="15.0" fill="rgb(231,11,20)" rx="2" ry="2" />
<text text-anchor="" x="572.84" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (21 samples, 0.05%)</title><rect x="477.9" y="1109" width="0.5" height="15.0" fill="rgb(213,20,0)" rx="2" ry="2" />
<text text-anchor="" x="480.89" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_in_progress (14 samples, 0.03%)</title><rect x="515.0" y="1525" width="0.3" height="15.0" fill="rgb(241,199,9)" rx="2" ry="2" />
<text text-anchor="" x="517.96" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (25 samples, 0.05%)</title><rect x="1086.9" y="1269" width="0.7" height="15.0" fill="rgb(216,182,42)" rx="2" ry="2" />
<text text-anchor="" x="1089.91" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (54 samples, 0.12%)</title><rect x="491.2" y="1397" width="1.4" height="15.0" fill="rgb(252,223,22)" rx="2" ry="2" />
<text text-anchor="" x="494.20" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (32 samples, 0.07%)</title><rect x="10.7" y="181" width="0.8" height="15.0" fill="rgb(254,108,17)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strip_quote (131 samples, 0.29%)</title><rect x="832.9" y="1461" width="3.3" height="15.0" fill="rgb(225,159,7)" rx="2" ry="2" />
<text text-anchor="" x="835.86" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (6 samples, 0.01%)</title><rect x="13.4" y="1445" width="0.2" height="15.0" fill="rgb(241,76,39)" rx="2" ry="2" />
<text text-anchor="" x="16.44" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc at plt (5 samples, 0.01%)</title><rect x="342.1" y="1477" width="0.2" height="15.0" fill="rgb(225,32,38)" rx="2" ry="2" />
<text text-anchor="" x="345.12" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,132 samples, 2.47%)</title><rect x="1064.1" y="1461" width="29.1" height="15.0" fill="rgb(237,26,34)" rx="2" ry="2" />
<text text-anchor="" x="1067.08" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (215 samples, 0.47%)</title><rect x="1143.3" y="1605" width="5.5" height="15.0" fill="rgb(221,42,41)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pattern_compare (181 samples, 0.39%)</title><rect x="831.6" y="1477" width="4.7" height="15.0" fill="rgb(254,141,19)" rx="2" ry="2" />
<text text-anchor="" x="834.63" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (43 samples, 0.09%)</title><rect x="284.1" y="1301" width="1.1" height="15.0" fill="rgb(241,89,49)" rx="2" ry="2" />
<text text-anchor="" x="287.10" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="440.0" y="1477" width="0.1" height="15.0" fill="rgb(252,3,14)" rx="2" ry="2" />
<text text-anchor="" x="442.97" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (167 samples, 0.36%)</title><rect x="201.0" y="1493" width="4.3" height="15.0" fill="rgb(238,142,15)" rx="2" ry="2" />
<text text-anchor="" x="203.96" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapgs_restore_regs_and_return_to_usermode (4 samples, 0.01%)</title><rect x="985.5" y="1429" width="0.1" height="15.0" fill="rgb(215,221,19)" rx="2" ry="2" />
<text text-anchor="" x="988.52" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (7 samples, 0.02%)</title><rect x="1110.5" y="1317" width="0.2" height="15.0" fill="rgb(223,7,16)" rx="2" ry="2" />
<text text-anchor="" x="1113.51" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (6 samples, 0.01%)</title><rect x="579.3" y="1333" width="0.1" height="15.0" fill="rgb(242,30,15)" rx="2" ry="2" />
<text text-anchor="" x="582.25" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (43 samples, 0.09%)</title><rect x="272.4" y="1397" width="1.1" height="15.0" fill="rgb(216,207,42)" rx="2" ry="2" />
<text text-anchor="" x="275.40" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_next_entity (49 samples, 0.11%)</title><rect x="577.3" y="1349" width="1.2" height="15.0" fill="rgb(242,28,14)" rx="2" ry="2" />
<text text-anchor="" x="580.27" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (25 samples, 0.05%)</title><rect x="235.5" y="1493" width="0.7" height="15.0" fill="rgb(211,131,38)" rx="2" ry="2" />
<text text-anchor="" x="238.54" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (36 samples, 0.08%)</title><rect x="1074.8" y="1237" width="0.9" height="15.0" fill="rgb(209,71,39)" rx="2" ry="2" />
<text text-anchor="" x="1077.75" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (1,469 samples, 3.20%)</title><rect x="749.6" y="1333" width="37.8" height="15.0" fill="rgb(224,222,47)" rx="2" ry="2" />
<text text-anchor="" x="752.65" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >soc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (15 samples, 0.03%)</title><rect x="84.0" y="1173" width="0.3" height="15.0" fill="rgb(219,166,40)" rx="2" ry="2" />
<text text-anchor="" x="86.96" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (140 samples, 0.31%)</title><rect x="206.9" y="1461" width="3.6" height="15.0" fill="rgb(251,211,19)" rx="2" ry="2" />
<text text-anchor="" x="209.92" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_iter (85 samples, 0.19%)</title><rect x="255.6" y="1301" width="2.2" height="15.0" fill="rgb(248,113,36)" rx="2" ry="2" />
<text text-anchor="" x="258.64" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>swapgs_restore_regs_and_return_to_usermode (12 samples, 0.03%)</title><rect x="1174.7" y="1637" width="0.3" height="15.0" fill="rgb(250,166,32)" rx="2" ry="2" />
<text text-anchor="" x="1177.68" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter (29 samples, 0.06%)</title><rect x="358.3" y="1285" width="0.8" height="15.0" fill="rgb(237,127,11)" rx="2" ry="2" />
<text text-anchor="" x="361.32" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (24 samples, 0.05%)</title><rect x="572.5" y="1333" width="0.6" height="15.0" fill="rgb(214,143,10)" rx="2" ry="2" />
<text text-anchor="" x="575.47" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (184 samples, 0.40%)</title><rect x="456.2" y="1301" width="4.7" height="15.0" fill="rgb(222,176,13)" rx="2" ry="2" />
<text text-anchor="" x="459.16" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (26 samples, 0.06%)</title><rect x="791.9" y="1445" width="0.6" height="15.0" fill="rgb(235,25,10)" rx="2" ry="2" />
<text text-anchor="" x="794.86" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (12 samples, 0.03%)</title><rect x="659.3" y="1445" width="0.3" height="15.0" fill="rgb(233,173,1)" rx="2" ry="2" />
<text text-anchor="" x="662.28" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset at plt (4 samples, 0.01%)</title><rect x="157.4" y="1525" width="0.1" height="15.0" fill="rgb(237,127,0)" rx="2" ry="2" />
<text text-anchor="" x="160.41" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_where_to_send (7 samples, 0.02%)</title><rect x="1055.5" y="1509" width="0.2" height="15.0" fill="rgb(207,70,4)" rx="2" ry="2" />
<text text-anchor="" x="1058.52" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>system_catalog_walker (27 samples, 0.06%)</title><rect x="856.6" y="1461" width="0.7" height="15.0" fill="rgb(230,85,53)" rx="2" ry="2" />
<text text-anchor="" x="859.62" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1397" width="1.4" height="15.0" fill="rgb(248,199,2)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (20 samples, 0.04%)</title><rect x="93.2" y="1509" width="0.5" height="15.0" fill="rgb(249,33,42)" rx="2" ry="2" />
<text text-anchor="" x="96.22" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_ssl_pending (29 samples, 0.06%)</title><rect x="622.4" y="1525" width="0.7" height="15.0" fill="rgb(251,140,26)" rx="2" ry="2" />
<text text-anchor="" x="625.39" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAllocZeroAligned (65 samples, 0.14%)</title><rect x="941.6" y="1461" width="1.6" height="15.0" fill="rgb(222,209,23)" rx="2" ry="2" />
<text text-anchor="" x="944.56" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_load_avg_se.isra.38 (4 samples, 0.01%)</title><rect x="774.7" y="1093" width="0.1" height="15.0" fill="rgb(209,187,50)" rx="2" ry="2" />
<text text-anchor="" x="777.69" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (15 samples, 0.03%)</title><rect x="366.6" y="1333" width="0.4" height="15.0" fill="rgb(228,62,26)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_list (66 samples, 0.14%)</title><rect x="992.4" y="1429" width="1.7" height="15.0" fill="rgb(208,49,50)" rx="2" ry="2" />
<text text-anchor="" x="995.36" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_ignore_till_sync (5 samples, 0.01%)</title><rect x="1121.1" y="1525" width="0.1" height="15.0" fill="rgb(238,38,46)" rx="2" ry="2" />
<text text-anchor="" x="1124.05" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (6 samples, 0.01%)</title><rect x="1110.7" y="1381" width="0.1" height="15.0" fill="rgb(252,206,43)" rx="2" ry="2" />
<text text-anchor="" x="1113.69" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_parse_tree (7 samples, 0.02%)</title><rect x="97.2" y="1509" width="0.2" height="15.0" fill="rgb(241,192,11)" rx="2" ry="2" />
<text text-anchor="" x="100.18" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcasecmp_avx (8 samples, 0.02%)</title><rect x="848.0" y="1365" width="0.2" height="15.0" fill="rgb(250,32,47)" rx="2" ry="2" />
<text text-anchor="" x="851.03" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (31 samples, 0.07%)</title><rect x="876.1" y="1349" width="0.8" height="15.0" fill="rgb(252,43,19)" rx="2" ry="2" />
<text text-anchor="" x="879.08" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (34 samples, 0.07%)</title><rect x="1018.3" y="1317" width="0.9" height="15.0" fill="rgb(244,167,51)" rx="2" ry="2" />
<text text-anchor="" x="1021.35" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (162 samples, 0.35%)</title><rect x="1078.2" y="1221" width="4.2" height="15.0" fill="rgb(234,127,15)" rx="2" ry="2" />
<text text-anchor="" x="1081.22" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (16 samples, 0.03%)</title><rect x="410.6" y="1269" width="0.4" height="15.0" fill="rgb(222,122,26)" rx="2" ry="2" />
<text text-anchor="" x="413.63" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_enable (5 samples, 0.01%)</title><rect x="283.9" y="1189" width="0.2" height="15.0" fill="rgb(239,137,35)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (114 samples, 0.25%)</title><rect x="251.1" y="1221" width="3.0" height="15.0" fill="rgb(223,126,18)" rx="2" ry="2" />
<text text-anchor="" x="254.14" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (33 samples, 0.07%)</title><rect x="234.2" y="1493" width="0.8" height="15.0" fill="rgb(239,57,24)" rx="2" ry="2" />
<text text-anchor="" x="237.20" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (20 samples, 0.04%)</title><rect x="323.2" y="1285" width="0.5" height="15.0" fill="rgb(218,43,50)" rx="2" ry="2" />
<text text-anchor="" x="326.23" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dump_sent_message (6 samples, 0.01%)</title><rect x="710.2" y="1493" width="0.1" height="15.0" fill="rgb(231,18,34)" rx="2" ry="2" />
<text text-anchor="" x="713.18" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (6 samples, 0.01%)</title><rect x="444.6" y="1381" width="0.2" height="15.0" fill="rgb(212,156,48)" rx="2" ry="2" />
<text text-anchor="" x="447.62" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (52 samples, 0.11%)</title><rect x="360.1" y="1237" width="1.3" height="15.0" fill="rgb(246,216,27)" rx="2" ry="2" />
<text text-anchor="" x="363.09" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_or_rollback_query (5 samples, 0.01%)</title><rect x="95.1" y="1493" width="0.1" height="15.0" fill="rgb(215,156,6)" rx="2" ry="2" />
<text text-anchor="" x="98.12" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (95 samples, 0.21%)</title><rect x="363.3" y="1301" width="2.4" height="15.0" fill="rgb(235,163,4)" rx="2" ry="2" />
<text text-anchor="" x="366.28" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (14 samples, 0.03%)</title><rect x="506.7" y="1477" width="0.4" height="15.0" fill="rgb(249,52,17)" rx="2" ry="2" />
<text text-anchor="" x="509.73" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (20 samples, 0.04%)</title><rect x="608.8" y="1525" width="0.5" height="15.0" fill="rgb(209,101,46)" rx="2" ry="2" />
<text text-anchor="" x="611.79" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (8 samples, 0.02%)</title><rect x="490.6" y="1349" width="0.2" height="15.0" fill="rgb(234,206,9)" rx="2" ry="2" />
<text text-anchor="" x="493.64" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (19 samples, 0.04%)</title><rect x="358.5" y="1269" width="0.5" height="15.0" fill="rgb(237,39,17)" rx="2" ry="2" />
<text text-anchor="" x="361.52" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (512 samples, 1.12%)</title><rect x="244.7" y="1365" width="13.1" height="15.0" fill="rgb(217,47,53)" rx="2" ry="2" />
<text text-anchor="" x="247.66" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yyalloc (19 samples, 0.04%)</title><rect x="1005.1" y="1445" width="0.4" height="15.0" fill="rgb(252,87,15)" rx="2" ry="2" />
<text text-anchor="" x="1008.06" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (17 samples, 0.04%)</title><rect x="373.8" y="1461" width="0.4" height="15.0" fill="rgb(231,135,43)" rx="2" ry="2" />
<text text-anchor="" x="376.79" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (5 samples, 0.01%)</title><rect x="182.3" y="1509" width="0.1" height="15.0" fill="rgb(216,85,37)" rx="2" ry="2" />
<text text-anchor="" x="185.32" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSetParent (12 samples, 0.03%)</title><rect x="311.3" y="1429" width="0.3" height="15.0" fill="rgb(224,68,45)" rx="2" ry="2" />
<text text-anchor="" x="314.30" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_next_bit (6 samples, 0.01%)</title><rect x="771.2" y="1093" width="0.1" height="15.0" fill="rgb(249,50,7)" rx="2" ry="2" />
<text text-anchor="" x="774.16" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (6 samples, 0.01%)</title><rect x="228.5" y="1445" width="0.1" height="15.0" fill="rgb(236,122,26)" rx="2" ry="2" />
<text text-anchor="" x="231.47" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (163 samples, 0.36%)</title><rect x="456.4" y="1285" width="4.2" height="15.0" fill="rgb(251,30,10)" rx="2" ry="2" />
<text text-anchor="" x="459.42" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>prefetch_freepointer (6 samples, 0.01%)</title><rect x="81.8" y="1221" width="0.2" height="15.0" fill="rgb(243,180,53)" rx="2" ry="2" />
<text text-anchor="" x="84.83" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (32 samples, 0.07%)</title><rect x="380.6" y="1509" width="0.8" height="15.0" fill="rgb(244,35,1)" rx="2" ry="2" />
<text text-anchor="" x="383.56" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="693" width="1.3" height="15.0" fill="rgb(233,136,53)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (10 samples, 0.02%)</title><rect x="403.4" y="1365" width="0.2" height="15.0" fill="rgb(247,36,40)" rx="2" ry="2" />
<text text-anchor="" x="406.38" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (26 samples, 0.06%)</title><rect x="991.6" y="1429" width="0.6" height="15.0" fill="rgb(209,18,43)" rx="2" ry="2" />
<text text-anchor="" x="994.56" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_kind_from_backend (6 samples, 0.01%)</title><rect x="634.4" y="1541" width="0.2" height="15.0" fill="rgb(216,198,20)" rx="2" ry="2" />
<text text-anchor="" x="637.45" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (5 samples, 0.01%)</title><rect x="305.5" y="1493" width="0.1" height="15.0" fill="rgb(237,117,4)" rx="2" ry="2" />
<text text-anchor="" x="308.51" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to_asm (5 samples, 0.01%)</title><rect x="1138.1" y="1637" width="0.1" height="15.0" fill="rgb(243,209,21)" rx="2" ry="2" />
<text text-anchor="" x="1141.10" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlogged_table_walker (610 samples, 1.33%)</title><rect x="867.7" y="1445" width="15.7" height="15.0" fill="rgb(253,196,17)" rx="2" ry="2" />
<text text-anchor="" x="870.72" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (91 samples, 0.20%)</title><rect x="10.7" y="1621" width="2.3" height="15.0" fill="rgb(207,47,42)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (22 samples, 0.05%)</title><rect x="52.0" y="1541" width="0.6" height="15.0" fill="rgb(214,88,18)" rx="2" ry="2" />
<text text-anchor="" x="55.01" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_extended_protocol_message (562 samples, 1.22%)</title><rect x="406.3" y="1493" width="14.4" height="15.0" fill="rgb(229,186,38)" rx="2" ry="2" />
<text text-anchor="" x="409.26" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (5 samples, 0.01%)</title><rect x="679.8" y="1429" width="0.1" height="15.0" fill="rgb(212,29,8)" rx="2" ry="2" />
<text text-anchor="" x="682.77" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (14 samples, 0.03%)</title><rect x="1005.2" y="1413" width="0.3" height="15.0" fill="rgb(247,192,9)" rx="2" ry="2" />
<text text-anchor="" x="1008.18" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (5 samples, 0.01%)</title><rect x="177.4" y="1301" width="0.1" height="15.0" fill="rgb(207,132,51)" rx="2" ry="2" />
<text text-anchor="" x="180.39" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (7 samples, 0.02%)</title><rect x="254.1" y="1253" width="0.2" height="15.0" fill="rgb(223,64,54)" rx="2" ry="2" />
<text text-anchor="" x="257.07" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="773" width="1.3" height="15.0" fill="rgb(210,152,1)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="783.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>function_call_walker (138 samples, 0.30%)</title><rect x="838.3" y="1445" width="3.6" height="15.0" fill="rgb(208,33,28)" rx="2" ry="2" />
<text text-anchor="" x="841.31" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>find_next_bit (4 samples, 0.01%)</title><rect x="771.3" y="1109" width="0.1" height="15.0" fill="rgb(216,140,19)" rx="2" ry="2" />
<text text-anchor="" x="774.32" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (19 samples, 0.04%)</title><rect x="220.4" y="1445" width="0.5" height="15.0" fill="rgb(207,214,23)" rx="2" ry="2" />
<text text-anchor="" x="223.42" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decay_load (4 samples, 0.01%)</title><rect x="481.2" y="1077" width="0.1" height="15.0" fill="rgb(231,217,28)" rx="2" ry="2" />
<text text-anchor="" x="484.23" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_kind_from_backend (5 samples, 0.01%)</title><rect x="1124.8" y="1525" width="0.1" height="15.0" fill="rgb(238,115,54)" rx="2" ry="2" />
<text text-anchor="" x="1127.78" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (9 samples, 0.02%)</title><rect x="260.3" y="1381" width="0.2" height="15.0" fill="rgb(244,142,31)" rx="2" ry="2" />
<text text-anchor="" x="263.29" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>insertinto_or_locking_clause_walker (121 samples, 0.26%)</title><rect x="891.2" y="1397" width="3.1" height="15.0" fill="rgb(229,213,12)" rx="2" ry="2" />
<text text-anchor="" x="894.17" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_search_relcache (52 samples, 0.11%)</title><rect x="850.4" y="1365" width="1.4" height="15.0" fill="rgb(240,3,53)" rx="2" ry="2" />
<text text-anchor="" x="853.45" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (15 samples, 0.03%)</title><rect x="678.4" y="1461" width="0.4" height="15.0" fill="rgb(239,88,43)" rx="2" ry="2" />
<text text-anchor="" x="681.38" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProcessFrontendResponse (13,936 samples, 30.36%)</title><rect x="698.3" y="1525" width="358.2" height="15.0" fill="rgb(221,202,34)" rx="2" ry="2" />
<text text-anchor="" x="701.28" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ProcessFrontendResponse</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (16 samples, 0.03%)</title><rect x="1008.8" y="1429" width="0.4" height="15.0" fill="rgb(252,119,54)" rx="2" ry="2" />
<text text-anchor="" x="1011.78" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (43 samples, 0.09%)</title><rect x="487.8" y="1237" width="1.1" height="15.0" fill="rgb(222,59,15)" rx="2" ry="2" />
<text text-anchor="" x="490.78" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__enqueue_entity (19 samples, 0.04%)</title><rect x="775.8" y="1077" width="0.5" height="15.0" fill="rgb(251,185,30)" rx="2" ry="2" />
<text text-anchor="" x="778.82" y="1087.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (34 samples, 0.07%)</title><rect x="841.0" y="1397" width="0.8" height="15.0" fill="rgb(246,173,44)" rx="2" ry="2" />
<text text-anchor="" x="843.96" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (357 samples, 0.78%)</title><rect x="277.7" y="1317" width="9.2" height="15.0" fill="rgb(217,197,13)" rx="2" ry="2" />
<text text-anchor="" x="280.67" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_fd_set (28 samples, 0.06%)</title><rect x="1110.8" y="1397" width="0.8" height="15.0" fill="rgb(208,80,26)" rx="2" ry="2" />
<text text-anchor="" x="1113.84" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_task_cpu (16 samples, 0.03%)</title><rect x="772.9" y="1141" width="0.4" height="15.0" fill="rgb(206,166,21)" rx="2" ry="2" />
<text text-anchor="" x="775.89" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (30 samples, 0.07%)</title><rect x="87.5" y="1365" width="0.8" height="15.0" fill="rgb(226,55,54)" rx="2" ry="2" />
<text text-anchor="" x="90.54" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="99.3" y="1493" width="0.1" height="15.0" fill="rgb(215,185,30)" rx="2" ry="2" />
<text text-anchor="" x="102.31" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (5 samples, 0.01%)</title><rect x="440.5" y="1477" width="0.1" height="15.0" fill="rgb(209,2,8)" rx="2" ry="2" />
<text text-anchor="" x="443.48" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (619 samples, 1.35%)</title><rect x="71.2" y="1317" width="15.9" height="15.0" fill="rgb(218,21,45)" rx="2" ry="2" />
<text text-anchor="" x="74.21" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (30 samples, 0.07%)</title><rect x="747.3" y="1365" width="0.7" height="15.0" fill="rgb(234,198,28)" rx="2" ry="2" />
<text text-anchor="" x="750.26" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (228 samples, 0.50%)</title><rect x="690.8" y="1397" width="5.9" height="15.0" fill="rgb(211,40,31)" rx="2" ry="2" />
<text text-anchor="" x="693.83" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (151 samples, 0.33%)</title><rect x="250.2" y="1253" width="3.9" height="15.0" fill="rgb(246,171,34)" rx="2" ry="2" />
<text text-anchor="" x="253.19" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strcmp at plt (10 samples, 0.02%)</title><rect x="985.2" y="1429" width="0.2" height="15.0" fill="rgb(220,64,8)" rx="2" ry="2" />
<text text-anchor="" x="988.16" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (4 samples, 0.01%)</title><rect x="10.2" y="1653" width="0.1" height="15.0" fill="rgb(219,106,9)" rx="2" ry="2" />
<text text-anchor="" x="13.23" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dump_sent_message (15 samples, 0.03%)</title><rect x="714.4" y="1477" width="0.4" height="15.0" fill="rgb(250,145,12)" rx="2" ry="2" />
<text text-anchor="" x="717.43" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (408 samples, 0.89%)</title><rect x="407.2" y="1413" width="10.5" height="15.0" fill="rgb(242,215,52)" rx="2" ry="2" />
<text text-anchor="" x="410.24" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (1,244 samples, 2.71%)</title><rect x="553.4" y="1413" width="32.0" height="15.0" fill="rgb(216,93,30)" rx="2" ry="2" />
<text text-anchor="" x="556.42" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__GI___sigprocmask (9 samples, 0.02%)</title><rect x="1188.3" y="1637" width="0.2" height="15.0" fill="rgb(213,36,47)" rx="2" ry="2" />
<text text-anchor="" x="1191.28" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (10 samples, 0.02%)</title><rect x="178.0" y="1253" width="0.2" height="15.0" fill="rgb(210,215,14)" rx="2" ry="2" />
<text text-anchor="" x="180.98" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_task_fair (10 samples, 0.02%)</title><rect x="232.6" y="1301" width="0.2" height="15.0" fill="rgb(233,141,50)" rx="2" ry="2" />
<text text-anchor="" x="235.58" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (4 samples, 0.01%)</title><rect x="1040.6" y="1477" width="0.1" height="15.0" fill="rgb(249,13,9)" rx="2" ry="2" />
<text text-anchor="" x="1043.56" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter (25 samples, 0.05%)</title><rect x="410.4" y="1285" width="0.6" height="15.0" fill="rgb(214,221,27)" rx="2" ry="2" />
<text text-anchor="" x="413.40" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_scm_to_skb (4 samples, 0.01%)</title><rect x="402.7" y="1301" width="0.1" height="15.0" fill="rgb(250,95,52)" rx="2" ry="2" />
<text text-anchor="" x="405.72" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (11 samples, 0.02%)</title><rect x="118.0" y="1493" width="0.3" height="15.0" fill="rgb(248,60,50)" rx="2" ry="2" />
<text text-anchor="" x="120.97" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>save_pending_data (6 samples, 0.01%)</title><rect x="1119.0" y="1493" width="0.1" height="15.0" fill="rgb(225,68,16)" rx="2" ry="2" />
<text text-anchor="" x="1121.99" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.01%)</title><rect x="415.4" y="1157" width="0.1" height="15.0" fill="rgb(218,33,40)" rx="2" ry="2" />
<text text-anchor="" x="418.39" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (9 samples, 0.02%)</title><rect x="190.7" y="1493" width="0.2" height="15.0" fill="rgb(220,220,26)" rx="2" ry="2" />
<text text-anchor="" x="193.65" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter (16 samples, 0.03%)</title><rect x="735.4" y="1269" width="0.4" height="15.0" fill="rgb(251,175,9)" rx="2" ry="2" />
<text text-anchor="" x="738.35" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>insertinto_or_locking_clause_walker (7 samples, 0.02%)</title><rect x="889.3" y="1413" width="0.2" height="15.0" fill="rgb(239,78,54)" rx="2" ry="2" />
<text text-anchor="" x="892.29" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (20 samples, 0.04%)</title><rect x="753.6" y="1253" width="0.5" height="15.0" fill="rgb(246,185,47)" rx="2" ry="2" />
<text text-anchor="" x="756.61" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfprintf (33 samples, 0.07%)</title><rect x="1134.6" y="1637" width="0.8" height="15.0" fill="rgb(243,103,41)" rx="2" ry="2" />
<text text-anchor="" x="1137.57" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (7 samples, 0.02%)</title><rect x="419.8" y="1461" width="0.1" height="15.0" fill="rgb(249,112,1)" rx="2" ry="2" />
<text text-anchor="" x="422.76" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="1055.2" y="1493" width="0.1" height="15.0" fill="rgb(226,200,51)" rx="2" ry="2" />
<text text-anchor="" x="1058.21" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to (7 samples, 0.02%)</title><rect x="12.3" y="1573" width="0.2" height="15.0" fill="rgb(248,207,38)" rx="2" ry="2" />
<text text-anchor="" x="15.34" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strlen at plt (12 samples, 0.03%)</title><rect x="800.7" y="1461" width="0.3" height="15.0" fill="rgb(243,222,31)" rx="2" ry="2" />
<text text-anchor="" x="803.65" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (18 samples, 0.04%)</title><rect x="331.5" y="1365" width="0.5" height="15.0" fill="rgb(247,43,40)" rx="2" ry="2" />
<text text-anchor="" x="334.53" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>Describe (1,330 samples, 2.90%)</title><rect x="348.8" y="1525" width="34.2" height="15.0" fill="rgb(213,4,38)" rx="2" ry="2" />
<text text-anchor="" x="351.78" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >De..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (8 samples, 0.02%)</title><rect x="334.0" y="1445" width="0.2" height="15.0" fill="rgb(240,150,10)" rx="2" ry="2" />
<text text-anchor="" x="337.00" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (5 samples, 0.01%)</title><rect x="232.2" y="1397" width="0.1" height="15.0" fill="rgb(214,12,10)" rx="2" ry="2" />
<text text-anchor="" x="235.22" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (12 samples, 0.03%)</title><rect x="496.5" y="1477" width="0.3" height="15.0" fill="rgb(248,153,33)" rx="2" ry="2" />
<text text-anchor="" x="499.50" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (558 samples, 1.22%)</title><rect x="72.7" y="1301" width="14.4" height="15.0" fill="rgb(253,183,33)" rx="2" ry="2" />
<text text-anchor="" x="75.73" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (52 samples, 0.11%)</title><rect x="128.8" y="1301" width="1.3" height="15.0" fill="rgb(221,111,37)" rx="2" ry="2" />
<text text-anchor="" x="131.77" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (10 samples, 0.02%)</title><rect x="433.2" y="1493" width="0.3" height="15.0" fill="rgb(247,158,10)" rx="2" ry="2" />
<text text-anchor="" x="436.21" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (243 samples, 0.53%)</title><rect x="1044.1" y="1429" width="6.3" height="15.0" fill="rgb(211,151,23)" rx="2" ry="2" />
<text text-anchor="" x="1047.13" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (16 samples, 0.03%)</title><rect x="459.7" y="1253" width="0.4" height="15.0" fill="rgb(225,75,40)" rx="2" ry="2" />
<text text-anchor="" x="462.66" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (174 samples, 0.38%)</title><rect x="574.3" y="1365" width="4.5" height="15.0" fill="rgb(254,121,29)" rx="2" ry="2" />
<text text-anchor="" x="577.32" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset_erms (6 samples, 0.01%)</title><rect x="696.7" y="1397" width="0.1" height="15.0" fill="rgb(218,175,31)" rx="2" ry="2" />
<text text-anchor="" x="699.69" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (23 samples, 0.05%)</title><rect x="417.1" y="1365" width="0.6" height="15.0" fill="rgb(211,105,27)" rx="2" ry="2" />
<text text-anchor="" x="420.14" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (4 samples, 0.01%)</title><rect x="12.9" y="1493" width="0.1" height="15.0" fill="rgb(239,65,13)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock (7 samples, 0.02%)</title><rect x="784.2" y="1141" width="0.2" height="15.0" fill="rgb(208,29,28)" rx="2" ry="2" />
<text text-anchor="" x="787.20" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (9 samples, 0.02%)</title><rect x="13.4" y="1541" width="0.2" height="15.0" fill="rgb(207,202,17)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (25 samples, 0.05%)</title><rect x="337.1" y="1493" width="0.6" height="15.0" fill="rgb(223,136,36)" rx="2" ry="2" />
<text text-anchor="" x="340.06" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="837" width="1.3" height="15.0" fill="rgb(240,149,26)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="847.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (9 samples, 0.02%)</title><rect x="13.4" y="1557" width="0.2" height="15.0" fill="rgb(241,189,7)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (88 samples, 0.19%)</title><rect x="892.0" y="1381" width="2.3" height="15.0" fill="rgb(222,76,36)" rx="2" ry="2" />
<text text-anchor="" x="895.02" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="141.5" y="1493" width="0.1" height="15.0" fill="rgb(210,147,44)" rx="2" ry="2" />
<text text-anchor="" x="144.47" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (23 samples, 0.05%)</title><rect x="674.3" y="1445" width="0.6" height="15.0" fill="rgb(234,66,4)" rx="2" ry="2" />
<text text-anchor="" x="677.27" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (23 samples, 0.05%)</title><rect x="628.0" y="1541" width="0.6" height="15.0" fill="rgb(244,0,52)" rx="2" ry="2" />
<text text-anchor="" x="631.05" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (66 samples, 0.14%)</title><rect x="484.5" y="1109" width="1.7" height="15.0" fill="rgb(218,104,46)" rx="2" ry="2" />
<text text-anchor="" x="487.49" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (7 samples, 0.02%)</title><rect x="381.1" y="1477" width="0.2" height="15.0" fill="rgb(242,224,4)" rx="2" ry="2" />
<text text-anchor="" x="384.10" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (404 samples, 0.88%)</title><rect x="1072.8" y="1301" width="10.4" height="15.0" fill="rgb(236,13,32)" rx="2" ry="2" />
<text text-anchor="" x="1075.80" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="1039.4" y="1493" width="0.1" height="15.0" fill="rgb(247,31,19)" rx="2" ry="2" />
<text text-anchor="" x="1042.43" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (16 samples, 0.03%)</title><rect x="1082.4" y="1253" width="0.4" height="15.0" fill="rgb(221,22,44)" rx="2" ry="2" />
<text text-anchor="" x="1085.39" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="709" width="1.3" height="15.0" fill="rgb(221,38,51)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (6 samples, 0.01%)</title><rect x="1138.8" y="1637" width="0.1" height="15.0" fill="rgb(248,21,13)" rx="2" ry="2" />
<text text-anchor="" x="1141.79" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (16 samples, 0.03%)</title><rect x="455.4" y="1301" width="0.4" height="15.0" fill="rgb(210,32,47)" rx="2" ry="2" />
<text text-anchor="" x="458.39" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (44 samples, 0.10%)</title><rect x="684.6" y="1253" width="1.2" height="15.0" fill="rgb(254,41,25)" rx="2" ry="2" />
<text text-anchor="" x="687.63" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (17 samples, 0.04%)</title><rect x="148.6" y="1509" width="0.5" height="15.0" fill="rgb(232,57,1)" rx="2" ry="2" />
<text text-anchor="" x="151.64" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (416 samples, 0.91%)</title><rect x="1041.8" y="1493" width="10.7" height="15.0" fill="rgb(243,173,46)" rx="2" ry="2" />
<text text-anchor="" x="1044.84" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (21 samples, 0.05%)</title><rect x="578.0" y="1333" width="0.5" height="15.0" fill="rgb(238,63,21)" rx="2" ry="2" />
<text text-anchor="" x="580.99" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (20 samples, 0.04%)</title><rect x="282.7" y="1269" width="0.6" height="15.0" fill="rgb(251,145,6)" rx="2" ry="2" />
<text text-anchor="" x="285.74" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (8 samples, 0.02%)</title><rect x="438.4" y="1509" width="0.2" height="15.0" fill="rgb(245,229,18)" rx="2" ry="2" />
<text text-anchor="" x="441.42" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (9 samples, 0.02%)</title><rect x="13.4" y="1493" width="0.2" height="15.0" fill="rgb(245,9,10)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (7 samples, 0.02%)</title><rect x="486.3" y="1125" width="0.2" height="15.0" fill="rgb(233,163,21)" rx="2" ry="2" />
<text text-anchor="" x="489.34" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (107 samples, 0.23%)</title><rect x="324.6" y="1269" width="2.7" height="15.0" fill="rgb(253,136,13)" rx="2" ry="2" />
<text text-anchor="" x="327.59" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (20 samples, 0.04%)</title><rect x="1035.7" y="1493" width="0.5" height="15.0" fill="rgb(230,25,1)" rx="2" ry="2" />
<text text-anchor="" x="1038.70" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__snprintf (24 samples, 0.05%)</title><rect x="1033.3" y="1509" width="0.6" height="15.0" fill="rgb(227,14,29)" rx="2" ry="2" />
<text text-anchor="" x="1036.28" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_to_iter (89 samples, 0.19%)</title><rect x="1087.6" y="1285" width="2.3" height="15.0" fill="rgb(214,31,45)" rx="2" ry="2" />
<text text-anchor="" x="1090.58" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1413" width="1.4" height="15.0" fill="rgb(222,94,35)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1,441 samples, 3.14%)</title><rect x="750.2" y="1317" width="37.0" height="15.0" fill="rgb(205,1,54)" rx="2" ry="2" />
<text text-anchor="" x="753.19" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >soc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (62 samples, 0.14%)</title><rect x="177.1" y="1365" width="1.6" height="15.0" fill="rgb(222,105,18)" rx="2" ry="2" />
<text text-anchor="" x="180.13" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="669.2" y="1477" width="0.1" height="15.0" fill="rgb(247,139,36)" rx="2" ry="2" />
<text text-anchor="" x="672.21" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_new_mm_cr3 (5 samples, 0.01%)</title><rect x="573.0" y="1317" width="0.1" height="15.0" fill="rgb(231,205,8)" rx="2" ry="2" />
<text text-anchor="" x="575.96" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (4 samples, 0.01%)</title><rect x="130.6" y="1413" width="0.1" height="15.0" fill="rgb(216,210,16)" rx="2" ry="2" />
<text text-anchor="" x="133.62" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (14 samples, 0.03%)</title><rect x="397.8" y="1269" width="0.3" height="15.0" fill="rgb(248,133,11)" rx="2" ry="2" />
<text text-anchor="" x="400.75" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_packets_and_process (25 samples, 0.05%)</title><rect x="1125.6" y="1557" width="0.6" height="15.0" fill="rgb(207,29,19)" rx="2" ry="2" />
<text text-anchor="" x="1128.60" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (4 samples, 0.01%)</title><rect x="67.3" y="1445" width="0.1" height="15.0" fill="rgb(219,117,46)" rx="2" ry="2" />
<text text-anchor="" x="70.25" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (71 samples, 0.15%)</title><rect x="251.6" y="1189" width="1.9" height="15.0" fill="rgb(216,15,43)" rx="2" ry="2" />
<text text-anchor="" x="254.63" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (7 samples, 0.02%)</title><rect x="62.3" y="1445" width="0.2" height="15.0" fill="rgb(227,227,40)" rx="2" ry="2" />
<text text-anchor="" x="65.34" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_tail_cell (19 samples, 0.04%)</title><rect x="424.9" y="1477" width="0.5" height="15.0" fill="rgb(218,36,23)" rx="2" ry="2" />
<text text-anchor="" x="427.88" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (14 samples, 0.03%)</title><rect x="663.3" y="1509" width="0.4" height="15.0" fill="rgb(214,184,21)" rx="2" ry="2" />
<text text-anchor="" x="666.34" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAllocZeroAligned (14 samples, 0.03%)</title><rect x="999.8" y="1429" width="0.4" height="15.0" fill="rgb(230,28,19)" rx="2" ry="2" />
<text text-anchor="" x="1002.81" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="568.8" y="1301" width="0.1" height="15.0" fill="rgb(251,217,54)" rx="2" ry="2" />
<text text-anchor="" x="571.84" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (12 samples, 0.03%)</title><rect x="754.9" y="1269" width="0.4" height="15.0" fill="rgb(245,61,45)" rx="2" ry="2" />
<text text-anchor="" x="757.94" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (10 samples, 0.02%)</title><rect x="400.2" y="1237" width="0.3" height="15.0" fill="rgb(211,11,7)" rx="2" ry="2" />
<text text-anchor="" x="403.25" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (5 samples, 0.01%)</title><rect x="657.0" y="1477" width="0.1" height="15.0" fill="rgb(244,65,24)" rx="2" ry="2" />
<text text-anchor="" x="660.02" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase_cached (4 samples, 0.01%)</title><rect x="444.4" y="1349" width="0.1" height="15.0" fill="rgb(209,31,42)" rx="2" ry="2" />
<text text-anchor="" x="447.44" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (107 samples, 0.23%)</title><rect x="112.5" y="1493" width="2.7" height="15.0" fill="rgb(248,208,2)" rx="2" ry="2" />
<text text-anchor="" x="115.47" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_ps_display (10 samples, 0.02%)</title><rect x="143.1" y="1509" width="0.3" height="15.0" fill="rgb(228,105,2)" rx="2" ry="2" />
<text text-anchor="" x="146.12" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (46 samples, 0.10%)</title><rect x="361.5" y="1253" width="1.1" height="15.0" fill="rgb(238,163,11)" rx="2" ry="2" />
<text text-anchor="" x="364.45" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (10 samples, 0.02%)</title><rect x="689.5" y="1461" width="0.2" height="15.0" fill="rgb(223,27,53)" rx="2" ry="2" />
<text text-anchor="" x="692.49" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (520 samples, 1.13%)</title><rect x="731.0" y="1445" width="13.4" height="15.0" fill="rgb(250,84,32)" rx="2" ry="2" />
<text text-anchor="" x="733.98" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeColumnRef (196 samples, 0.43%)</title><rect x="990.4" y="1461" width="5.0" height="15.0" fill="rgb(229,102,32)" rx="2" ry="2" />
<text text-anchor="" x="993.35" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (8 samples, 0.02%)</title><rect x="354.8" y="1381" width="0.2" height="15.0" fill="rgb(238,161,43)" rx="2" ry="2" />
<text text-anchor="" x="357.77" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (91 samples, 0.20%)</title><rect x="104.8" y="1493" width="2.3" height="15.0" fill="rgb(216,127,40)" rx="2" ry="2" />
<text text-anchor="" x="107.79" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (11 samples, 0.02%)</title><rect x="1128.9" y="1621" width="0.2" height="15.0" fill="rgb(252,17,0)" rx="2" ry="2" />
<text text-anchor="" x="1131.87" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (31 samples, 0.07%)</title><rect x="274.8" y="1381" width="0.8" height="15.0" fill="rgb(240,92,0)" rx="2" ry="2" />
<text text-anchor="" x="277.84" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (252 samples, 0.55%)</title><rect x="859.1" y="1429" width="6.5" height="15.0" fill="rgb(245,194,49)" rx="2" ry="2" />
<text text-anchor="" x="862.11" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_new_mm_cr3 (42 samples, 0.09%)</title><rect x="1145.6" y="1429" width="1.1" height="15.0" fill="rgb(241,103,6)" rx="2" ry="2" />
<text text-anchor="" x="1148.60" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (57 samples, 0.12%)</title><rect x="1071.3" y="1285" width="1.5" height="15.0" fill="rgb(221,50,50)" rx="2" ry="2" />
<text text-anchor="" x="1074.31" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (44 samples, 0.10%)</title><rect x="996.5" y="1429" width="1.1" height="15.0" fill="rgb(236,220,54)" rx="2" ry="2" />
<text text-anchor="" x="999.47" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (7 samples, 0.02%)</title><rect x="1047.6" y="1365" width="0.1" height="15.0" fill="rgb(215,104,15)" rx="2" ry="2" />
<text text-anchor="" x="1050.55" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_list (6 samples, 0.01%)</title><rect x="995.2" y="1445" width="0.2" height="15.0" fill="rgb(254,128,42)" rx="2" ry="2" />
<text text-anchor="" x="998.24" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_extended_send_and_wait (774 samples, 1.69%)</title><rect x="315.3" y="1509" width="19.9" height="15.0" fill="rgb(239,1,38)" rx="2" ry="2" />
<text text-anchor="" x="318.31" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (37 samples, 0.08%)</title><rect x="811.1" y="1445" width="1.0" height="15.0" fill="rgb(254,208,40)" rx="2" ry="2" />
<text text-anchor="" x="814.11" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (8 samples, 0.02%)</title><rect x="662.0" y="1509" width="0.2" height="15.0" fill="rgb(230,58,18)" rx="2" ry="2" />
<text text-anchor="" x="664.96" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (20 samples, 0.04%)</title><rect x="485.5" y="1045" width="0.5" height="15.0" fill="rgb(250,113,35)" rx="2" ry="2" />
<text text-anchor="" x="488.47" y="1055.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (246 samples, 0.54%)</title><rect x="690.6" y="1429" width="6.3" height="15.0" fill="rgb(205,77,41)" rx="2" ry="2" />
<text text-anchor="" x="693.60" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>finish_task_switch (5 samples, 0.01%)</title><rect x="444.0" y="1381" width="0.1" height="15.0" fill="rgb(237,133,16)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (18 samples, 0.04%)</title><rect x="1149.0" y="1637" width="0.5" height="15.0" fill="rgb(216,76,7)" rx="2" ry="2" />
<text text-anchor="" x="1152.05" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (42 samples, 0.09%)</title><rect x="419.6" y="1477" width="1.1" height="15.0" fill="rgb(220,123,17)" rx="2" ry="2" />
<text text-anchor="" x="422.63" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>list_length (13 samples, 0.03%)</title><rect x="225.6" y="1493" width="0.3" height="15.0" fill="rgb(218,131,23)" rx="2" ry="2" />
<text text-anchor="" x="228.61" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__cgroup_account_cputime (21 samples, 0.05%)</title><rect x="778.5" y="1061" width="0.5" height="15.0" fill="rgb(229,181,37)" rx="2" ry="2" />
<text text-anchor="" x="781.47" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (6 samples, 0.01%)</title><rect x="784.6" y="1189" width="0.1" height="15.0" fill="rgb(212,220,43)" rx="2" ry="2" />
<text text-anchor="" x="787.58" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="757" width="1.3" height="15.0" fill="rgb(244,106,51)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="767.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextStrdup (16 samples, 0.03%)</title><rect x="722.0" y="1461" width="0.4" height="15.0" fill="rgb(208,73,36)" rx="2" ry="2" />
<text text-anchor="" x="725.04" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ProcessBackendResponse (5 samples, 0.01%)</title><rect x="1184.9" y="1637" width="0.1" height="15.0" fill="rgb(231,98,31)" rx="2" ry="2" />
<text text-anchor="" x="1187.86" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="565" width="1.3" height="15.0" fill="rgb(237,15,19)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (13 samples, 0.03%)</title><rect x="458.5" y="1237" width="0.4" height="15.0" fill="rgb(231,62,0)" rx="2" ry="2" />
<text text-anchor="" x="461.53" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1429" width="1.4" height="15.0" fill="rgb(237,87,39)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (12 samples, 0.03%)</title><rect x="62.2" y="1461" width="0.3" height="15.0" fill="rgb(252,203,29)" rx="2" ry="2" />
<text text-anchor="" x="65.21" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="437" width="1.1" height="15.0" fill="rgb(254,144,7)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (16 samples, 0.03%)</title><rect x="545.9" y="1445" width="0.4" height="15.0" fill="rgb(223,97,9)" rx="2" ry="2" />
<text text-anchor="" x="548.94" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (12 samples, 0.03%)</title><rect x="1052.5" y="1493" width="0.3" height="15.0" fill="rgb(254,195,12)" rx="2" ry="2" />
<text text-anchor="" x="1055.54" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="432.7" y="1493" width="0.1" height="15.0" fill="rgb(241,87,50)" rx="2" ry="2" />
<text text-anchor="" x="435.69" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (14 samples, 0.03%)</title><rect x="603.9" y="1429" width="0.3" height="15.0" fill="rgb(234,84,12)" rx="2" ry="2" />
<text text-anchor="" x="606.86" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (41 samples, 0.09%)</title><rect x="422.9" y="1493" width="1.1" height="15.0" fill="rgb(224,207,23)" rx="2" ry="2" />
<text text-anchor="" x="425.95" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>event_function (5 samples, 0.01%)</title><rect x="283.9" y="1205" width="0.2" height="15.0" fill="rgb(229,132,28)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (39 samples, 0.08%)</title><rect x="1021.9" y="1253" width="1.0" height="15.0" fill="rgb(211,64,32)" rx="2" ry="2" />
<text text-anchor="" x="1024.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (511 samples, 1.11%)</title><rect x="558.9" y="1365" width="13.2" height="15.0" fill="rgb(220,205,45)" rx="2" ry="2" />
<text text-anchor="" x="561.94" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_kind_from_one_backend (2,156 samples, 4.70%)</title><rect x="240.7" y="1509" width="55.5" height="15.0" fill="rgb(237,102,10)" rx="2" ry="2" />
<text text-anchor="" x="243.73" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >read_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (7 samples, 0.02%)</title><rect x="237.0" y="1493" width="0.2" height="15.0" fill="rgb(242,6,6)" rx="2" ry="2" />
<text text-anchor="" x="240.03" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (4 samples, 0.01%)</title><rect x="819.6" y="1477" width="0.1" height="15.0" fill="rgb(249,210,26)" rx="2" ry="2" />
<text text-anchor="" x="822.60" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read2 (18 samples, 0.04%)</title><rect x="98.2" y="1509" width="0.4" height="15.0" fill="rgb(229,169,35)" rx="2" ry="2" />
<text text-anchor="" x="101.15" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_sched_clock (16 samples, 0.03%)</title><rect x="583.8" y="1317" width="0.4" height="15.0" fill="rgb(217,227,3)" rx="2" ry="2" />
<text text-anchor="" x="586.75" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pollwait (29 samples, 0.06%)</title><rect x="1109.9" y="1349" width="0.8" height="15.0" fill="rgb(215,223,14)" rx="2" ry="2" />
<text text-anchor="" x="1112.95" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (5 samples, 0.01%)</title><rect x="1104.8" y="1397" width="0.1" height="15.0" fill="rgb(252,95,8)" rx="2" ry="2" />
<text text-anchor="" x="1107.78" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.constprop.19 (5 samples, 0.01%)</title><rect x="444.0" y="1205" width="0.1" height="15.0" fill="rgb(226,54,43)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (11 samples, 0.02%)</title><rect x="1044.5" y="1413" width="0.3" height="15.0" fill="rgb(240,193,37)" rx="2" ry="2" />
<text text-anchor="" x="1047.49" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (830 samples, 1.81%)</title><rect x="1011.7" y="1509" width="21.4" height="15.0" fill="rgb(249,185,44)" rx="2" ry="2" />
<text text-anchor="" x="1014.71" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (60 samples, 0.13%)</title><rect x="499.2" y="1525" width="1.5" height="15.0" fill="rgb(237,71,3)" rx="2" ry="2" />
<text text-anchor="" x="502.17" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_tail_cell (22 samples, 0.05%)</title><rect x="339.5" y="1477" width="0.6" height="15.0" fill="rgb(208,106,18)" rx="2" ry="2" />
<text text-anchor="" x="342.53" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_check_fd (60 samples, 0.13%)</title><rect x="1116.1" y="1477" width="1.5" height="15.0" fill="rgb(236,59,41)" rx="2" ry="2" />
<text text-anchor="" x="1119.06" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (9 samples, 0.02%)</title><rect x="683.9" y="1269" width="0.2" height="15.0" fill="rgb(241,122,18)" rx="2" ry="2" />
<text text-anchor="" x="686.91" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAllocZeroAligned (25 samples, 0.05%)</title><rect x="998.0" y="1445" width="0.6" height="15.0" fill="rgb(233,187,6)" rx="2" ry="2" />
<text text-anchor="" x="1000.99" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (4 samples, 0.01%)</title><rect x="395.9" y="1317" width="0.1" height="15.0" fill="rgb(213,160,21)" rx="2" ry="2" />
<text text-anchor="" x="398.93" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (4 samples, 0.01%)</title><rect x="12.2" y="1509" width="0.1" height="15.0" fill="rgb(207,10,22)" rx="2" ry="2" />
<text text-anchor="" x="15.24" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free at plt (5 samples, 0.01%)</title><rect x="229.3" y="1461" width="0.1" height="15.0" fill="rgb(219,59,4)" rx="2" ry="2" />
<text text-anchor="" x="232.29" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (18 samples, 0.04%)</title><rect x="1092.4" y="1381" width="0.5" height="15.0" fill="rgb(244,170,36)" rx="2" ry="2" />
<text text-anchor="" x="1095.41" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_start_transaction_query (8 samples, 0.02%)</title><rect x="157.2" y="1525" width="0.2" height="15.0" fill="rgb(209,219,19)" rx="2" ry="2" />
<text text-anchor="" x="160.18" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (3,089 samples, 6.73%)</title><rect x="528.1" y="1493" width="79.4" height="15.0" fill="rgb(225,192,36)" rx="2" ry="2" />
<text text-anchor="" x="531.12" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sys_select</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (33 samples, 0.07%)</title><rect x="10.7" y="229" width="0.8" height="15.0" fill="rgb(249,42,24)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>decay_load (4 samples, 0.01%)</title><rect x="780.7" y="1061" width="0.1" height="15.0" fill="rgb(245,105,52)" rx="2" ry="2" />
<text text-anchor="" x="783.68" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (241 samples, 0.53%)</title><rect x="455.9" y="1317" width="6.2" height="15.0" fill="rgb(223,184,10)" rx="2" ry="2" />
<text text-anchor="" x="458.93" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_query_context_dest_set (28 samples, 0.06%)</title><rect x="229.4" y="1509" width="0.7" height="15.0" fill="rgb(215,2,3)" rx="2" ry="2" />
<text text-anchor="" x="232.42" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (36 samples, 0.08%)</title><rect x="532.9" y="1461" width="0.9" height="15.0" fill="rgb(236,127,27)" rx="2" ry="2" />
<text text-anchor="" x="535.85" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (37 samples, 0.08%)</title><rect x="979.2" y="1429" width="1.0" height="15.0" fill="rgb(254,229,8)" rx="2" ry="2" />
<text text-anchor="" x="982.25" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_kind_from_one_backend (628 samples, 1.37%)</title><rect x="682.1" y="1493" width="16.1" height="15.0" fill="rgb(226,132,24)" rx="2" ry="2" />
<text text-anchor="" x="685.09" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (21 samples, 0.05%)</title><rect x="333.7" y="1461" width="0.5" height="15.0" fill="rgb(222,73,7)" rx="2" ry="2" />
<text text-anchor="" x="336.66" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (21 samples, 0.05%)</title><rect x="1045.4" y="1413" width="0.6" height="15.0" fill="rgb(208,126,13)" rx="2" ry="2" />
<text text-anchor="" x="1048.44" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (27 samples, 0.06%)</title><rect x="372.7" y="1477" width="0.7" height="15.0" fill="rgb(221,38,17)" rx="2" ry="2" />
<text text-anchor="" x="375.72" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (119 samples, 0.26%)</title><rect x="1078.4" y="1189" width="3.1" height="15.0" fill="rgb(205,61,5)" rx="2" ry="2" />
<text text-anchor="" x="1081.40" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_extended_send_and_wait (8 samples, 0.02%)</title><rect x="1037.4" y="1509" width="0.2" height="15.0" fill="rgb(220,210,18)" rx="2" ry="2" />
<text text-anchor="" x="1040.42" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (247 samples, 0.54%)</title><rect x="192.2" y="1493" width="6.3" height="15.0" fill="rgb(228,191,20)" rx="2" ry="2" />
<text text-anchor="" x="195.19" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_write (1,687 samples, 3.68%)</title><rect x="447.5" y="1381" width="43.3" height="15.0" fill="rgb(230,140,41)" rx="2" ry="2" />
<text text-anchor="" x="450.47" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >new_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="822.7" y="1477" width="0.2" height="15.0" fill="rgb(214,144,25)" rx="2" ry="2" />
<text text-anchor="" x="825.73" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (126 samples, 0.27%)</title><rect x="692.5" y="1349" width="3.2" height="15.0" fill="rgb(220,143,52)" rx="2" ry="2" />
<text text-anchor="" x="695.50" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (4 samples, 0.01%)</title><rect x="304.9" y="1509" width="0.1" height="15.0" fill="rgb(207,65,14)" rx="2" ry="2" />
<text text-anchor="" x="307.92" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.43 (66 samples, 0.14%)</title><rect x="77.3" y="1237" width="1.7" height="15.0" fill="rgb(253,134,4)" rx="2" ry="2" />
<text text-anchor="" x="80.30" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (37 samples, 0.08%)</title><rect x="505.5" y="1493" width="1.0" height="15.0" fill="rgb(233,226,10)" rx="2" ry="2" />
<text text-anchor="" x="508.52" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mutex_unlock (6 samples, 0.01%)</title><rect x="255.0" y="1317" width="0.1" height="15.0" fill="rgb(241,184,10)" rx="2" ry="2" />
<text text-anchor="" x="257.97" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (5 samples, 0.01%)</title><rect x="325.4" y="1221" width="0.1" height="15.0" fill="rgb(222,73,5)" rx="2" ry="2" />
<text text-anchor="" x="328.41" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (35 samples, 0.08%)</title><rect x="346.4" y="1509" width="0.9" height="15.0" fill="rgb(242,117,24)" rx="2" ry="2" />
<text text-anchor="" x="349.42" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (12 samples, 0.03%)</title><rect x="674.9" y="1445" width="0.3" height="15.0" fill="rgb(211,185,47)" rx="2" ry="2" />
<text text-anchor="" x="677.86" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (43 samples, 0.09%)</title><rect x="1031.9" y="1493" width="1.2" height="15.0" fill="rgb(223,162,27)" rx="2" ry="2" />
<text text-anchor="" x="1034.95" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (8 samples, 0.02%)</title><rect x="694.5" y="1253" width="0.2" height="15.0" fill="rgb(233,111,49)" rx="2" ry="2" />
<text text-anchor="" x="697.53" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (7 samples, 0.02%)</title><rect x="15.3" y="1589" width="0.2" height="15.0" fill="rgb(231,175,37)" rx="2" ry="2" />
<text text-anchor="" x="18.27" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_actor (32 samples, 0.07%)</title><rect x="686.3" y="1301" width="0.8" height="15.0" fill="rgb(222,130,34)" rx="2" ry="2" />
<text text-anchor="" x="689.30" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memmove at plt (5 samples, 0.01%)</title><rect x="715.0" y="1477" width="0.1" height="15.0" fill="rgb(217,210,24)" rx="2" ry="2" />
<text text-anchor="" x="717.97" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (35 samples, 0.08%)</title><rect x="855.3" y="1397" width="0.9" height="15.0" fill="rgb(226,138,51)" rx="2" ry="2" />
<text text-anchor="" x="858.33" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (816 samples, 1.78%)</title><rect x="763.8" y="1205" width="20.9" height="15.0" fill="rgb(235,75,8)" rx="2" ry="2" />
<text text-anchor="" x="766.76" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (86 samples, 0.19%)</title><rect x="739.2" y="1285" width="2.2" height="15.0" fill="rgb(226,130,2)" rx="2" ry="2" />
<text text-anchor="" x="742.18" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (4 samples, 0.01%)</title><rect x="410.2" y="1269" width="0.1" height="15.0" fill="rgb(242,23,9)" rx="2" ry="2" />
<text text-anchor="" x="413.17" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (4 samples, 0.01%)</title><rect x="1040.6" y="1493" width="0.1" height="15.0" fill="rgb(205,204,24)" rx="2" ry="2" />
<text text-anchor="" x="1043.56" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (6 samples, 0.01%)</title><rect x="213.6" y="1493" width="0.2" height="15.0" fill="rgb(242,93,26)" rx="2" ry="2" />
<text text-anchor="" x="216.61" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_new_mm_cr3 (7 samples, 0.02%)</title><rect x="1138.5" y="1541" width="0.2" height="15.0" fill="rgb(215,95,38)" rx="2" ry="2" />
<text text-anchor="" x="1141.48" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_sent_message (17 samples, 0.04%)</title><rect x="370.4" y="1509" width="0.4" height="15.0" fill="rgb(245,227,30)" rx="2" ry="2" />
<text text-anchor="" x="373.40" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (7 samples, 0.02%)</title><rect x="1016.2" y="1365" width="0.2" height="15.0" fill="rgb(242,101,21)" rx="2" ry="2" />
<text text-anchor="" x="1019.19" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_sent_message (20 samples, 0.04%)</title><rect x="715.1" y="1477" width="0.5" height="15.0" fill="rgb(211,138,49)" rx="2" ry="2" />
<text text-anchor="" x="718.09" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (4 samples, 0.01%)</title><rect x="426.0" y="1493" width="0.1" height="15.0" fill="rgb(227,84,4)" rx="2" ry="2" />
<text text-anchor="" x="429.03" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (5 samples, 0.01%)</title><rect x="492.7" y="1445" width="0.1" height="15.0" fill="rgb(225,190,7)" rx="2" ry="2" />
<text text-anchor="" x="495.67" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (13 samples, 0.03%)</title><rect x="1129.3" y="1621" width="0.3" height="15.0" fill="rgb(227,167,35)" rx="2" ry="2" />
<text text-anchor="" x="1132.30" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__indirect_thunk_start (6 samples, 0.01%)</title><rect x="593.6" y="1429" width="0.2" height="15.0" fill="rgb(220,43,8)" rx="2" ry="2" />
<text text-anchor="" x="596.62" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (57 samples, 0.12%)</title><rect x="13.8" y="1589" width="1.5" height="15.0" fill="rgb(249,166,21)" rx="2" ry="2" />
<text text-anchor="" x="16.80" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_add (201 samples, 0.44%)</title><rect x="807.2" y="1493" width="5.2" height="15.0" fill="rgb(249,58,16)" rx="2" ry="2" />
<text text-anchor="" x="810.21" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (184 samples, 0.40%)</title><rect x="182.6" y="1509" width="4.8" height="15.0" fill="rgb(230,3,35)" rx="2" ry="2" />
<text text-anchor="" x="185.63" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (5 samples, 0.01%)</title><rect x="403.5" y="1333" width="0.1" height="15.0" fill="rgb(214,40,4)" rx="2" ry="2" />
<text text-anchor="" x="406.49" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (45 samples, 0.10%)</title><rect x="126.9" y="1285" width="1.2" height="15.0" fill="rgb(234,78,41)" rx="2" ry="2" />
<text text-anchor="" x="129.92" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (53 samples, 0.12%)</title><rect x="28.1" y="1637" width="1.4" height="15.0" fill="rgb(229,155,12)" rx="2" ry="2" />
<text text-anchor="" x="31.10" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (1,057 samples, 2.30%)</title><rect x="462.8" y="1285" width="27.2" height="15.0" fill="rgb(235,63,40)" rx="2" ry="2" />
<text text-anchor="" x="465.85" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (13 samples, 0.03%)</title><rect x="460.1" y="1253" width="0.3" height="15.0" fill="rgb(240,132,33)" rx="2" ry="2" />
<text text-anchor="" x="463.07" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__indirect_thunk_start (4 samples, 0.01%)</title><rect x="750.2" y="1301" width="0.1" height="15.0" fill="rgb(254,35,15)" rx="2" ry="2" />
<text text-anchor="" x="753.24" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="533" width="1.3" height="15.0" fill="rgb(220,159,34)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeSimpleA_Expr (10 samples, 0.02%)</title><rect x="1001.9" y="1477" width="0.3" height="15.0" fill="rgb(247,75,49)" rx="2" ry="2" />
<text text-anchor="" x="1004.95" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (24 samples, 0.05%)</title><rect x="1105.8" y="1397" width="0.6" height="15.0" fill="rgb(247,38,49)" rx="2" ry="2" />
<text text-anchor="" x="1108.83" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_set_previous_message (6 samples, 0.01%)</title><rect x="680.6" y="1493" width="0.2" height="15.0" fill="rgb(217,68,5)" rx="2" ry="2" />
<text text-anchor="" x="683.62" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_fd_set (21 samples, 0.05%)</title><rect x="1049.7" y="1413" width="0.6" height="15.0" fill="rgb(254,166,38)" rx="2" ry="2" />
<text text-anchor="" x="1052.71" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (6 samples, 0.01%)</title><rect x="686.1" y="1285" width="0.2" height="15.0" fill="rgb(230,146,18)" rx="2" ry="2" />
<text text-anchor="" x="689.15" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (37 samples, 0.08%)</title><rect x="247.1" y="1301" width="1.0" height="15.0" fill="rgb(221,210,30)" rx="2" ry="2" />
<text text-anchor="" x="250.13" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (60 samples, 0.13%)</title><rect x="337.7" y="1493" width="1.5" height="15.0" fill="rgb(218,36,47)" rx="2" ry="2" />
<text text-anchor="" x="340.70" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="681.9" y="1477" width="0.1" height="15.0" fill="rgb(215,74,27)" rx="2" ry="2" />
<text text-anchor="" x="684.85" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (30 samples, 0.07%)</title><rect x="130.9" y="1397" width="0.8" height="15.0" fill="rgb(231,48,48)" rx="2" ry="2" />
<text text-anchor="" x="133.91" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ctx_resched (5 samples, 0.01%)</title><rect x="444.0" y="1253" width="0.1" height="15.0" fill="rgb(246,174,31)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="506.5" y="1509" width="0.1" height="15.0" fill="rgb(231,60,26)" rx="2" ry="2" />
<text text-anchor="" x="509.47" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmpxchg_double_slab.isra.61 (4 samples, 0.01%)</title><rect x="249.7" y="1237" width="0.1" height="15.0" fill="rgb(217,221,20)" rx="2" ry="2" />
<text text-anchor="" x="252.73" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (16 samples, 0.03%)</title><rect x="425.0" y="1445" width="0.4" height="15.0" fill="rgb(205,167,39)" rx="2" ry="2" />
<text text-anchor="" x="427.95" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (7 samples, 0.02%)</title><rect x="741.5" y="1317" width="0.2" height="15.0" fill="rgb(239,94,17)" rx="2" ry="2" />
<text text-anchor="" x="744.47" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (109 samples, 0.24%)</title><rect x="218.1" y="1461" width="2.8" height="15.0" fill="rgb(227,190,33)" rx="2" ry="2" />
<text text-anchor="" x="221.13" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (661 samples, 1.44%)</title><rect x="243.5" y="1429" width="17.0" height="15.0" fill="rgb(225,65,25)" rx="2" ry="2" />
<text text-anchor="" x="246.53" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (14 samples, 0.03%)</title><rect x="744.6" y="1461" width="0.4" height="15.0" fill="rgb(240,55,39)" rx="2" ry="2" />
<text text-anchor="" x="747.63" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (5 samples, 0.01%)</title><rect x="242.6" y="1477" width="0.1" height="15.0" fill="rgb(244,51,26)" rx="2" ry="2" />
<text text-anchor="" x="245.56" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (770 samples, 1.68%)</title><rect x="764.6" y="1173" width="19.8" height="15.0" fill="rgb(224,151,21)" rx="2" ry="2" />
<text text-anchor="" x="767.58" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (5 samples, 0.01%)</title><rect x="346.9" y="1461" width="0.2" height="15.0" fill="rgb(241,22,17)" rx="2" ry="2" />
<text text-anchor="" x="349.93" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_to_regclass (122 samples, 0.27%)</title><rect x="874.5" y="1381" width="3.1" height="15.0" fill="rgb(218,198,31)" rx="2" ry="2" />
<text text-anchor="" x="877.46" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_preempt_curr (4 samples, 0.01%)</title><rect x="782.7" y="1125" width="0.1" height="15.0" fill="rgb(226,220,51)" rx="2" ry="2" />
<text text-anchor="" x="785.66" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_add (127 samples, 0.28%)</title><rect x="371.0" y="1509" width="3.3" height="15.0" fill="rgb(211,25,43)" rx="2" ry="2" />
<text text-anchor="" x="374.04" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>recalc_sigpending (11 samples, 0.02%)</title><rect x="110.4" y="1397" width="0.3" height="15.0" fill="rgb(229,33,29)" rx="2" ry="2" />
<text text-anchor="" x="113.42" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (4 samples, 0.01%)</title><rect x="768.7" y="1125" width="0.1" height="15.0" fill="rgb(240,208,31)" rx="2" ry="2" />
<text text-anchor="" x="771.72" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (9 samples, 0.02%)</title><rect x="286.6" y="1285" width="0.3" height="15.0" fill="rgb(225,70,6)" rx="2" ry="2" />
<text text-anchor="" x="289.62" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_idle_core (24 samples, 0.05%)</title><rect x="578.8" y="1349" width="0.6" height="15.0" fill="rgb(248,84,31)" rx="2" ry="2" />
<text text-anchor="" x="581.79" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__slab_free (4 samples, 0.01%)</title><rect x="684.0" y="1253" width="0.1" height="15.0" fill="rgb(207,30,33)" rx="2" ry="2" />
<text text-anchor="" x="687.04" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_fd_set (22 samples, 0.05%)</title><rect x="289.8" y="1397" width="0.6" height="15.0" fill="rgb(208,53,17)" rx="2" ry="2" />
<text text-anchor="" x="292.83" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (60 samples, 0.13%)</title><rect x="10.7" y="1477" width="1.5" height="15.0" fill="rgb(247,130,17)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ReadyForQuery (9 samples, 0.02%)</title><rect x="660.4" y="1509" width="0.2" height="15.0" fill="rgb(217,214,29)" rx="2" ry="2" />
<text text-anchor="" x="663.41" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (5 samples, 0.01%)</title><rect x="1000.0" y="1413" width="0.2" height="15.0" fill="rgb(216,112,1)" rx="2" ry="2" />
<text text-anchor="" x="1003.04" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (18 samples, 0.04%)</title><rect x="118.3" y="1493" width="0.4" height="15.0" fill="rgb(212,92,35)" rx="2" ry="2" />
<text text-anchor="" x="121.26" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read_message_length (23 samples, 0.05%)</title><rect x="162.3" y="1525" width="0.6" height="15.0" fill="rgb(209,34,2)" rx="2" ry="2" />
<text text-anchor="" x="165.27" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (329 samples, 0.72%)</title><rect x="733.0" y="1317" width="8.5" height="15.0" fill="rgb(218,87,27)" rx="2" ry="2" />
<text text-anchor="" x="736.01" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iter (37 samples, 0.08%)</title><rect x="124.1" y="1333" width="0.9" height="15.0" fill="rgb(245,218,39)" rx="2" ry="2" />
<text text-anchor="" x="127.07" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (7 samples, 0.02%)</title><rect x="571.3" y="1285" width="0.2" height="15.0" fill="rgb(238,6,42)" rx="2" ry="2" />
<text text-anchor="" x="574.31" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (1,751 samples, 3.81%)</title><rect x="745.7" y="1445" width="45.1" height="15.0" fill="rgb(207,98,16)" rx="2" ry="2" />
<text text-anchor="" x="748.74" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__li..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (37 samples, 0.08%)</title><rect x="239.4" y="1493" width="1.0" height="15.0" fill="rgb(222,43,40)" rx="2" ry="2" />
<text text-anchor="" x="242.42" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (7 samples, 0.02%)</title><rect x="402.8" y="1301" width="0.2" height="15.0" fill="rgb(210,174,27)" rx="2" ry="2" />
<text text-anchor="" x="405.82" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_read (12 samples, 0.03%)</title><rect x="260.6" y="1461" width="0.3" height="15.0" fill="rgb(254,139,9)" rx="2" ry="2" />
<text text-anchor="" x="263.55" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_idle_sibling (158 samples, 0.34%)</title><rect x="768.8" y="1125" width="4.1" height="15.0" fill="rgb(230,181,26)" rx="2" ry="2" />
<text text-anchor="" x="771.82" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__hrtimer_run_queues (5 samples, 0.01%)</title><rect x="573.5" y="1301" width="0.1" height="15.0" fill="rgb(205,155,30)" rx="2" ry="2" />
<text text-anchor="" x="576.52" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yylex_init (33 samples, 0.07%)</title><rect x="1006.2" y="1461" width="0.8" height="15.0" fill="rgb(215,3,44)" rx="2" ry="2" />
<text text-anchor="" x="1009.19" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (59 samples, 0.13%)</title><rect x="755.7" y="1221" width="1.5" height="15.0" fill="rgb(218,18,32)" rx="2" ry="2" />
<text text-anchor="" x="758.71" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextStrdup (23 samples, 0.05%)</title><rect x="895.3" y="1477" width="0.6" height="15.0" fill="rgb(251,64,10)" rx="2" ry="2" />
<text text-anchor="" x="898.31" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (18 samples, 0.04%)</title><rect x="700.2" y="1509" width="0.5" height="15.0" fill="rgb(223,32,49)" rx="2" ry="2" />
<text text-anchor="" x="703.21" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_query (12 samples, 0.03%)</title><rect x="726.0" y="1461" width="0.3" height="15.0" fill="rgb(239,99,23)" rx="2" ry="2" />
<text text-anchor="" x="728.97" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="526.1" y="1525" width="0.1" height="15.0" fill="rgb(229,9,44)" rx="2" ry="2" />
<text text-anchor="" x="529.09" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="677" width="1.3" height="15.0" fill="rgb(238,0,16)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_locked (26 samples, 0.06%)</title><rect x="364.2" y="1221" width="0.6" height="15.0" fill="rgb(239,6,26)" rx="2" ry="2" />
<text text-anchor="" x="367.15" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_default_xsputn (51 samples, 0.11%)</title><rect x="1135.4" y="1653" width="1.3" height="15.0" fill="rgb(217,114,15)" rx="2" ry="2" />
<text text-anchor="" x="1138.42" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>system_catalog_walker (5 samples, 0.01%)</title><rect x="856.2" y="1397" width="0.2" height="15.0" fill="rgb(239,121,39)" rx="2" ry="2" />
<text text-anchor="" x="859.23" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_doing_extended_query_message (16 samples, 0.03%)</title><rect x="159.2" y="1525" width="0.4" height="15.0" fill="rgb(226,36,46)" rx="2" ry="2" />
<text text-anchor="" x="162.24" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (16 samples, 0.03%)</title><rect x="359.1" y="1301" width="0.4" height="15.0" fill="rgb(229,199,24)" rx="2" ry="2" />
<text text-anchor="" x="362.12" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (5 samples, 0.01%)</title><rect x="733.7" y="1301" width="0.1" height="15.0" fill="rgb(207,4,27)" rx="2" ry="2" />
<text text-anchor="" x="736.71" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (52 samples, 0.11%)</title><rect x="567.6" y="1317" width="1.3" height="15.0" fill="rgb(250,225,25)" rx="2" ry="2" />
<text text-anchor="" x="570.61" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (5 samples, 0.01%)</title><rect x="364.6" y="1157" width="0.1" height="15.0" fill="rgb(212,59,53)" rx="2" ry="2" />
<text text-anchor="" x="367.62" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (19 samples, 0.04%)</title><rect x="210.5" y="1461" width="0.5" height="15.0" fill="rgb(246,27,3)" rx="2" ry="2" />
<text text-anchor="" x="213.52" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (12 samples, 0.03%)</title><rect x="738.0" y="1221" width="0.3" height="15.0" fill="rgb(215,73,41)" rx="2" ry="2" />
<text text-anchor="" x="741.03" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_has_to_regclass (192 samples, 0.42%)</title><rect x="847.6" y="1381" width="5.0" height="15.0" fill="rgb(218,78,26)" rx="2" ry="2" />
<text text-anchor="" x="850.65" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (211 samples, 0.46%)</title><rect x="1143.4" y="1525" width="5.4" height="15.0" fill="rgb(252,1,39)" rx="2" ry="2" />
<text text-anchor="" x="1146.37" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_or_rollback_query (8 samples, 0.02%)</title><rect x="390.4" y="1493" width="0.2" height="15.0" fill="rgb(227,117,15)" rx="2" ry="2" />
<text text-anchor="" x="393.35" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_free_head (15 samples, 0.03%)</title><rect x="684.2" y="1253" width="0.4" height="15.0" fill="rgb(208,194,5)" rx="2" ry="2" />
<text text-anchor="" x="687.25" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (32 samples, 0.07%)</title><rect x="864.5" y="1397" width="0.9" height="15.0" fill="rgb(235,75,35)" rx="2" ry="2" />
<text text-anchor="" x="867.54" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_sent_message_destroy (125 samples, 0.27%)</title><rect x="716.9" y="1461" width="3.2" height="15.0" fill="rgb(250,27,28)" rx="2" ry="2" />
<text text-anchor="" x="719.87" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (11 samples, 0.02%)</title><rect x="176.3" y="1493" width="0.3" height="15.0" fill="rgb(221,15,1)" rx="2" ry="2" />
<text text-anchor="" x="179.33" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (15 samples, 0.03%)</title><rect x="1113.0" y="1445" width="0.3" height="15.0" fill="rgb(211,76,17)" rx="2" ry="2" />
<text text-anchor="" x="1115.95" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range_clock (377 samples, 0.82%)</title><rect x="277.4" y="1349" width="9.7" height="15.0" fill="rgb(227,92,21)" rx="2" ry="2" />
<text text-anchor="" x="280.42" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (52 samples, 0.11%)</title><rect x="512.5" y="1509" width="1.4" height="15.0" fill="rgb(250,217,45)" rx="2" ry="2" />
<text text-anchor="" x="515.54" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_start_transaction_query (5 samples, 0.01%)</title><rect x="726.5" y="1477" width="0.1" height="15.0" fill="rgb(205,10,4)" rx="2" ry="2" />
<text text-anchor="" x="729.48" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_ssl_pending (9 samples, 0.02%)</title><rect x="1125.2" y="1557" width="0.2" height="15.0" fill="rgb(207,119,28)" rx="2" ry="2" />
<text text-anchor="" x="1128.22" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (4 samples, 0.01%)</title><rect x="10.1" y="1653" width="0.1" height="15.0" fill="rgb(253,89,39)" rx="2" ry="2" />
<text text-anchor="" x="13.10" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (58 samples, 0.13%)</title><rect x="729.3" y="1445" width="1.5" height="15.0" fill="rgb(215,74,48)" rx="2" ry="2" />
<text text-anchor="" x="732.34" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (6 samples, 0.01%)</title><rect x="1058.9" y="1493" width="0.1" height="15.0" fill="rgb(232,194,29)" rx="2" ry="2" />
<text text-anchor="" x="1061.86" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="504.0" y="1509" width="0.1" height="15.0" fill="rgb(215,113,4)" rx="2" ry="2" />
<text text-anchor="" x="507.01" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (374 samples, 0.81%)</title><rect x="394.1" y="1445" width="9.6" height="15.0" fill="rgb(207,48,35)" rx="2" ry="2" />
<text text-anchor="" x="397.13" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>downcase_truncate_identifier (178 samples, 0.39%)</title><rect x="980.6" y="1429" width="4.6" height="15.0" fill="rgb(230,145,13)" rx="2" ry="2" />
<text text-anchor="" x="983.58" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (366 samples, 0.80%)</title><rect x="394.2" y="1413" width="9.4" height="15.0" fill="rgb(246,224,14)" rx="2" ry="2" />
<text text-anchor="" x="397.23" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (18 samples, 0.04%)</title><rect x="232.6" y="1349" width="0.4" height="15.0" fill="rgb(224,170,27)" rx="2" ry="2" />
<text text-anchor="" x="235.55" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (37 samples, 0.08%)</title><rect x="445.2" y="1413" width="0.9" height="15.0" fill="rgb(219,76,20)" rx="2" ry="2" />
<text text-anchor="" x="448.16" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleForwardToFrontend (397 samples, 0.86%)</title><rect x="143.6" y="1525" width="10.2" height="15.0" fill="rgb(208,98,28)" rx="2" ry="2" />
<text text-anchor="" x="146.63" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (4 samples, 0.01%)</title><rect x="85.7" y="1109" width="0.1" height="15.0" fill="rgb(216,106,46)" rx="2" ry="2" />
<text text-anchor="" x="88.66" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (9 samples, 0.02%)</title><rect x="13.4" y="1525" width="0.2" height="15.0" fill="rgb(251,217,1)" rx="2" ry="2" />
<text text-anchor="" x="16.37" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (4 samples, 0.01%)</title><rect x="1064.5" y="1445" width="0.1" height="15.0" fill="rgb(253,117,20)" rx="2" ry="2" />
<text text-anchor="" x="1067.47" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_all_qs (5 samples, 0.01%)</title><rect x="490.5" y="1301" width="0.1" height="15.0" fill="rgb(211,1,20)" rx="2" ry="2" />
<text text-anchor="" x="493.48" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (9 samples, 0.02%)</title><rect x="740.7" y="1205" width="0.2" height="15.0" fill="rgb(230,12,23)" rx="2" ry="2" />
<text text-anchor="" x="743.70" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (194 samples, 0.42%)</title><rect x="10.5" y="1637" width="5.0" height="15.0" fill="rgb(235,157,45)" rx="2" ry="2" />
<text text-anchor="" x="13.49" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_no_init (26 samples, 0.06%)</title><rect x="15.5" y="1637" width="0.7" height="15.0" fill="rgb(242,200,10)" rx="2" ry="2" />
<text text-anchor="" x="18.53" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (12 samples, 0.03%)</title><rect x="131.7" y="1461" width="0.3" height="15.0" fill="rgb(231,149,15)" rx="2" ry="2" />
<text text-anchor="" x="134.68" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_query_context_dest_set (14 samples, 0.03%)</title><rect x="680.3" y="1493" width="0.3" height="15.0" fill="rgb(217,201,35)" rx="2" ry="2" />
<text text-anchor="" x="683.26" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (60 samples, 0.13%)</title><rect x="673.6" y="1461" width="1.6" height="15.0" fill="rgb(214,18,21)" rx="2" ry="2" />
<text text-anchor="" x="676.63" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (5 samples, 0.01%)</title><rect x="147.8" y="1509" width="0.1" height="15.0" fill="rgb(211,142,16)" rx="2" ry="2" />
<text text-anchor="" x="150.82" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>stat_count_up (15 samples, 0.03%)</title><rect x="433.8" y="1509" width="0.4" height="15.0" fill="rgb(235,119,53)" rx="2" ry="2" />
<text text-anchor="" x="436.80" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (9 samples, 0.02%)</title><rect x="1014.1" y="1429" width="0.2" height="15.0" fill="rgb(205,122,50)" rx="2" ry="2" />
<text text-anchor="" x="1017.11" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>foward_command_complete (7 samples, 0.02%)</title><rect x="156.7" y="1525" width="0.2" height="15.0" fill="rgb(249,48,48)" rx="2" ry="2" />
<text text-anchor="" x="159.72" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (12 samples, 0.03%)</title><rect x="133.1" y="1493" width="0.4" height="15.0" fill="rgb(221,103,50)" rx="2" ry="2" />
<text text-anchor="" x="136.14" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to (116 samples, 0.25%)</title><rect x="1139.3" y="1637" width="2.9" height="15.0" fill="rgb(238,6,0)" rx="2" ry="2" />
<text text-anchor="" x="1142.25" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (22 samples, 0.05%)</title><rect x="1038.3" y="1509" width="0.6" height="15.0" fill="rgb(225,157,34)" rx="2" ry="2" />
<text text-anchor="" x="1041.30" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_start_query (8 samples, 0.02%)</title><rect x="1055.0" y="1509" width="0.2" height="15.0" fill="rgb(235,34,2)" rx="2" ry="2" />
<text text-anchor="" x="1057.96" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (5 samples, 0.01%)</title><rect x="858.1" y="1445" width="0.1" height="15.0" fill="rgb(221,119,50)" rx="2" ry="2" />
<text text-anchor="" x="861.11" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeRawStmt (70 samples, 0.15%)</title><rect x="996.0" y="1461" width="1.8" height="15.0" fill="rgb(221,174,52)" rx="2" ry="2" />
<text text-anchor="" x="999.01" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (57 samples, 0.12%)</title><rect x="670.7" y="1493" width="1.5" height="15.0" fill="rgb(218,169,27)" rx="2" ry="2" />
<text text-anchor="" x="673.72" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yyalloc (21 samples, 0.05%)</title><rect x="1004.5" y="1413" width="0.5" height="15.0" fill="rgb(251,58,10)" rx="2" ry="2" />
<text text-anchor="" x="1007.49" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unread (17 samples, 0.04%)</title><rect x="1118.5" y="1493" width="0.4" height="15.0" fill="rgb(211,45,53)" rx="2" ry="2" />
<text text-anchor="" x="1121.45" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (60 samples, 0.13%)</title><rect x="10.7" y="1509" width="1.5" height="15.0" fill="rgb(244,207,8)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_fd_set (6 samples, 0.01%)</title><rect x="696.5" y="1381" width="0.1" height="15.0" fill="rgb(205,72,37)" rx="2" ry="2" />
<text text-anchor="" x="699.48" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (361 samples, 0.79%)</title><rect x="356.6" y="1317" width="9.3" height="15.0" fill="rgb(239,129,42)" rx="2" ry="2" />
<text text-anchor="" x="359.62" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (14 samples, 0.03%)</title><rect x="125.0" y="1317" width="0.4" height="15.0" fill="rgb(210,175,3)" rx="2" ry="2" />
<text text-anchor="" x="128.02" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (5 samples, 0.01%)</title><rect x="283.1" y="1237" width="0.1" height="15.0" fill="rgb(247,226,44)" rx="2" ry="2" />
<text text-anchor="" x="286.10" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (4 samples, 0.01%)</title><rect x="408.9" y="1317" width="0.1" height="15.0" fill="rgb(220,219,34)" rx="2" ry="2" />
<text text-anchor="" x="411.89" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (16 samples, 0.03%)</title><rect x="405.4" y="1461" width="0.4" height="15.0" fill="rgb(249,49,10)" rx="2" ry="2" />
<text text-anchor="" x="408.39" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (28 samples, 0.06%)</title><rect x="13.0" y="1621" width="0.8" height="15.0" fill="rgb(248,221,44)" rx="2" ry="2" />
<text text-anchor="" x="16.03" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (4 samples, 0.01%)</title><rect x="329.6" y="1141" width="0.1" height="15.0" fill="rgb(239,8,49)" rx="2" ry="2" />
<text text-anchor="" x="332.58" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fork_a_child (42,663 samples, 92.95%)</title><rect x="29.5" y="1589" width="1096.7" height="15.0" fill="rgb(213,103,38)" rx="2" ry="2" />
<text text-anchor="" x="32.46" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >fork_a_child</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yy_scan_buffer (88 samples, 0.19%)</title><rect x="1003.4" y="1461" width="2.3" height="15.0" fill="rgb(209,220,24)" rx="2" ry="2" />
<text text-anchor="" x="1006.44" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__alloc_skb (95 samples, 0.21%)</title><rect x="125.7" y="1301" width="2.4" height="15.0" fill="rgb(233,86,31)" rx="2" ry="2" />
<text text-anchor="" x="128.66" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>get_mem_cgroup_from_mm (8 samples, 0.02%)</title><rect x="327.0" y="1221" width="0.2" height="15.0" fill="rgb(243,228,35)" rx="2" ry="2" />
<text text-anchor="" x="330.01" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="65.9" y="1461" width="0.1" height="15.0" fill="rgb(247,122,6)" rx="2" ry="2" />
<text text-anchor="" x="68.86" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pollwait (5 samples, 0.01%)</title><rect x="288.5" y="1365" width="0.1" height="15.0" fill="rgb(234,146,28)" rx="2" ry="2" />
<text text-anchor="" x="291.52" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (33 samples, 0.07%)</title><rect x="66.0" y="1461" width="0.8" height="15.0" fill="rgb(243,152,47)" rx="2" ry="2" />
<text text-anchor="" x="68.99" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>fsnotify (9 samples, 0.02%)</title><rect x="416.8" y="1381" width="0.2" height="15.0" fill="rgb(234,118,28)" rx="2" ry="2" />
<text text-anchor="" x="419.80" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>default_wake_function (18 samples, 0.04%)</title><rect x="364.3" y="1189" width="0.4" height="15.0" fill="rgb(254,113,35)" rx="2" ry="2" />
<text text-anchor="" x="367.28" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (34 samples, 0.07%)</title><rect x="149.6" y="1493" width="0.9" height="15.0" fill="rgb(232,17,27)" rx="2" ry="2" />
<text text-anchor="" x="152.59" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (5 samples, 0.01%)</title><rect x="197.9" y="1477" width="0.2" height="15.0" fill="rgb(248,72,0)" rx="2" ry="2" />
<text text-anchor="" x="200.93" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (6 samples, 0.01%)</title><rect x="855.0" y="1381" width="0.2" height="15.0" fill="rgb(214,21,54)" rx="2" ry="2" />
<text text-anchor="" x="858.02" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (9 samples, 0.02%)</title><rect x="60.8" y="1461" width="0.2" height="15.0" fill="rgb(222,0,27)" rx="2" ry="2" />
<text text-anchor="" x="63.80" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (30 samples, 0.07%)</title><rect x="145.7" y="1493" width="0.8" height="15.0" fill="rgb(247,105,20)" rx="2" ry="2" />
<text text-anchor="" x="148.69" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wakeup_preempt_entity.isra.69 (6 samples, 0.01%)</title><rect x="578.6" y="1349" width="0.2" height="15.0" fill="rgb(209,148,5)" rx="2" ry="2" />
<text text-anchor="" x="581.64" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_sync_read (495 samples, 1.08%)</title><rect x="1015.1" y="1413" width="12.8" height="15.0" fill="rgb(234,186,7)" rx="2" ry="2" />
<text text-anchor="" x="1018.13" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color_cached (9 samples, 0.02%)</title><rect x="477.3" y="1093" width="0.2" height="15.0" fill="rgb(247,175,9)" rx="2" ry="2" />
<text text-anchor="" x="480.27" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_def_readable (13 samples, 0.03%)</title><rect x="450.2" y="1333" width="0.3" height="15.0" fill="rgb(223,226,25)" rx="2" ry="2" />
<text text-anchor="" x="453.20" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (10 samples, 0.02%)</title><rect x="240.4" y="1493" width="0.3" height="15.0" fill="rgb(240,73,0)" rx="2" ry="2" />
<text text-anchor="" x="243.45" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (14 samples, 0.03%)</title><rect x="449.8" y="1301" width="0.3" height="15.0" fill="rgb(228,7,44)" rx="2" ry="2" />
<text text-anchor="" x="452.76" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (19 samples, 0.04%)</title><rect x="1057.2" y="1493" width="0.5" height="15.0" fill="rgb(220,147,27)" rx="2" ry="2" />
<text text-anchor="" x="1060.24" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (33 samples, 0.07%)</title><rect x="736.3" y="1221" width="0.9" height="15.0" fill="rgb(250,213,38)" rx="2" ry="2" />
<text text-anchor="" x="739.33" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (123 samples, 0.27%)</title><rect x="83.2" y="1253" width="3.2" height="15.0" fill="rgb(220,177,48)" rx="2" ry="2" />
<text text-anchor="" x="86.24" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_free (37 samples, 0.08%)</title><rect x="247.1" y="1285" width="1.0" height="15.0" fill="rgb(213,45,11)" rx="2" ry="2" />
<text text-anchor="" x="250.13" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (17 samples, 0.04%)</title><rect x="90.6" y="1445" width="0.4" height="15.0" fill="rgb(234,194,0)" rx="2" ry="2" />
<text text-anchor="" x="93.57" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (7 samples, 0.02%)</title><rect x="415.7" y="1221" width="0.2" height="15.0" fill="rgb(230,110,30)" rx="2" ry="2" />
<text text-anchor="" x="418.70" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (8 samples, 0.02%)</title><rect x="655.7" y="1477" width="0.2" height="15.0" fill="rgb(251,115,25)" rx="2" ry="2" />
<text text-anchor="" x="658.66" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_data (50 samples, 0.11%)</title><rect x="1019.4" y="1301" width="1.3" height="15.0" fill="rgb(237,189,22)" rx="2" ry="2" />
<text text-anchor="" x="1022.38" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (7 samples, 0.02%)</title><rect x="374.1" y="1429" width="0.1" height="15.0" fill="rgb(224,97,45)" rx="2" ry="2" />
<text text-anchor="" x="377.05" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="573.5" y="1333" width="0.2" height="15.0" fill="rgb(236,179,9)" rx="2" ry="2" />
<text text-anchor="" x="576.52" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (27 samples, 0.06%)</title><rect x="386.4" y="1509" width="0.7" height="15.0" fill="rgb(214,130,46)" rx="2" ry="2" />
<text text-anchor="" x="389.42" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_node_track_caller (26 samples, 0.06%)</title><rect x="398.9" y="1237" width="0.7" height="15.0" fill="rgb(224,214,51)" rx="2" ry="2" />
<text text-anchor="" x="401.89" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="389" width="1.1" height="15.0" fill="rgb(221,13,18)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="501" width="1.3" height="15.0" fill="rgb(216,100,28)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pick_next_task_fair (25 samples, 0.05%)</title><rect x="584.6" y="1381" width="0.6" height="15.0" fill="rgb(226,139,25)" rx="2" ry="2" />
<text text-anchor="" x="587.60" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (4 samples, 0.01%)</title><rect x="735.8" y="1269" width="0.1" height="15.0" fill="rgb(247,113,22)" rx="2" ry="2" />
<text text-anchor="" x="738.84" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (10 samples, 0.02%)</title><rect x="1082.1" y="1189" width="0.3" height="15.0" fill="rgb(230,163,48)" rx="2" ry="2" />
<text text-anchor="" x="1085.13" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAlloc (21 samples, 0.05%)</title><rect x="895.4" y="1461" width="0.5" height="15.0" fill="rgb(231,121,52)" rx="2" ry="2" />
<text text-anchor="" x="898.36" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (5 samples, 0.01%)</title><rect x="137.9" y="1493" width="0.1" height="15.0" fill="rgb(213,10,10)" rx="2" ry="2" />
<text text-anchor="" x="140.87" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (31 samples, 0.07%)</title><rect x="415.2" y="1237" width="0.8" height="15.0" fill="rgb(254,27,13)" rx="2" ry="2" />
<text text-anchor="" x="418.16" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strchrnul_avx2 (60 samples, 0.13%)</title><rect x="18.7" y="1621" width="1.6" height="15.0" fill="rgb(242,91,11)" rx="2" ry="2" />
<text text-anchor="" x="21.72" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (36 samples, 0.08%)</title><rect x="80.9" y="1221" width="0.9" height="15.0" fill="rgb(229,155,29)" rx="2" ry="2" />
<text text-anchor="" x="83.90" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1221" width="1.4" height="15.0" fill="rgb(242,85,10)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (757 samples, 1.65%)</title><rect x="764.9" y="1157" width="19.5" height="15.0" fill="rgb(247,211,40)" rx="2" ry="2" />
<text text-anchor="" x="767.92" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_new_mm_cr3 (43 samples, 0.09%)</title><rect x="582.4" y="1349" width="1.1" height="15.0" fill="rgb(234,45,25)" rx="2" ry="2" />
<text text-anchor="" x="585.42" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (5 samples, 0.01%)</title><rect x="366.0" y="1365" width="0.1" height="15.0" fill="rgb(206,135,39)" rx="2" ry="2" />
<text text-anchor="" x="369.01" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (207 samples, 0.45%)</title><rect x="1143.4" y="1493" width="5.3" height="15.0" fill="rgb(216,126,22)" rx="2" ry="2" />
<text text-anchor="" x="1146.37" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (19 samples, 0.04%)</title><rect x="510.9" y="1509" width="0.5" height="15.0" fill="rgb(217,156,25)" rx="2" ry="2" />
<text text-anchor="" x="513.92" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_or_rollback_query (19 samples, 0.04%)</title><rect x="725.9" y="1477" width="0.5" height="15.0" fill="rgb(205,137,15)" rx="2" ry="2" />
<text text-anchor="" x="728.87" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmalloc_slab (6 samples, 0.01%)</title><rect x="458.4" y="1237" width="0.1" height="15.0" fill="rgb(227,49,21)" rx="2" ry="2" />
<text text-anchor="" x="461.37" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (73 samples, 0.16%)</title><rect x="1093.8" y="1477" width="1.9" height="15.0" fill="rgb(243,104,40)" rx="2" ry="2" />
<text text-anchor="" x="1096.77" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (6 samples, 0.01%)</title><rect x="178.4" y="1333" width="0.1" height="15.0" fill="rgb(213,153,39)" rx="2" ry="2" />
<text text-anchor="" x="181.39" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (111 samples, 0.24%)</title><rect x="83.3" y="1237" width="2.8" height="15.0" fill="rgb(232,147,30)" rx="2" ry="2" />
<text text-anchor="" x="86.27" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="12.9" y="1573" width="0.1" height="15.0" fill="rgb(221,156,27)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>clear_buddies (14 samples, 0.03%)</title><rect x="576.6" y="1333" width="0.3" height="15.0" fill="rgb(245,120,43)" rx="2" ry="2" />
<text text-anchor="" x="579.58" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (33 samples, 0.07%)</title><rect x="753.3" y="1269" width="0.8" height="15.0" fill="rgb(244,13,11)" rx="2" ry="2" />
<text text-anchor="" x="756.27" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sched_clock_cpu (5 samples, 0.01%)</title><rect x="784.2" y="1125" width="0.2" height="15.0" fill="rgb(245,19,51)" rx="2" ry="2" />
<text text-anchor="" x="787.25" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (4 samples, 0.01%)</title><rect x="687.3" y="1381" width="0.1" height="15.0" fill="rgb(224,27,45)" rx="2" ry="2" />
<text text-anchor="" x="690.33" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextAllocZero (15 samples, 0.03%)</title><rect x="941.2" y="1461" width="0.4" height="15.0" fill="rgb(215,190,5)" rx="2" ry="2" />
<text text-anchor="" x="944.17" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="269.5" y="1461" width="0.1" height="15.0" fill="rgb(249,27,30)" rx="2" ry="2" />
<text text-anchor="" x="272.50" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (8 samples, 0.02%)</title><rect x="993.8" y="1381" width="0.3" height="15.0" fill="rgb(207,205,7)" rx="2" ry="2" />
<text text-anchor="" x="996.85" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yy_scan_buffer (4 samples, 0.01%)</title><rect x="1000.8" y="1477" width="0.1" height="15.0" fill="rgb(221,74,12)" rx="2" ry="2" />
<text text-anchor="" x="1003.81" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_cfs_group (20 samples, 0.04%)</title><rect x="562.7" y="1317" width="0.5" height="15.0" fill="rgb(212,209,36)" rx="2" ry="2" />
<text text-anchor="" x="565.70" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>send_extended_protocol_message (13 samples, 0.03%)</title><rect x="1010.0" y="1493" width="0.3" height="15.0" fill="rgb(224,175,16)" rx="2" ry="2" />
<text text-anchor="" x="1012.99" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (7 samples, 0.02%)</title><rect x="302.0" y="1509" width="0.1" height="15.0" fill="rgb(236,79,17)" rx="2" ry="2" />
<text text-anchor="" x="304.97" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetDelete (9 samples, 0.02%)</title><rect x="309.6" y="1445" width="0.2" height="15.0" fill="rgb(251,168,13)" rx="2" ry="2" />
<text text-anchor="" x="312.55" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cfree at GLIBC_2.2.5 (6 samples, 0.01%)</title><rect x="508.9" y="1493" width="0.1" height="15.0" fill="rgb(234,211,50)" rx="2" ry="2" />
<text text-anchor="" x="511.89" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_init_query_context (469 samples, 1.02%)</title><rect x="794.7" y="1493" width="12.1" height="15.0" fill="rgb(240,165,10)" rx="2" ry="2" />
<text text-anchor="" x="797.74" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_cond_resched (7 samples, 0.02%)</title><rect x="532.2" y="1461" width="0.2" height="15.0" fill="rgb(214,95,12)" rx="2" ry="2" />
<text text-anchor="" x="535.21" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_pending_message (178 samples, 0.39%)</title><rect x="216.8" y="1493" width="4.5" height="15.0" fill="rgb(238,75,45)" rx="2" ry="2" />
<text text-anchor="" x="219.77" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl (4 samples, 0.01%)</title><rect x="119.0" y="1509" width="0.1" height="15.0" fill="rgb(248,171,25)" rx="2" ry="2" />
<text text-anchor="" x="122.03" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (46 samples, 0.10%)</title><rect x="1040.7" y="1493" width="1.1" height="15.0" fill="rgb(206,18,43)" rx="2" ry="2" />
<text text-anchor="" x="1043.66" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (492 samples, 1.07%)</title><rect x="354.5" y="1413" width="12.6" height="15.0" fill="rgb(231,84,35)" rx="2" ry="2" />
<text text-anchor="" x="357.46" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_sendmsg (1,651 samples, 3.60%)</title><rect x="448.2" y="1349" width="42.4" height="15.0" fill="rgb(225,225,0)" rx="2" ry="2" />
<text text-anchor="" x="451.19" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >soc..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_actor (7 samples, 0.02%)</title><rect x="178.5" y="1333" width="0.2" height="15.0" fill="rgb(232,83,36)" rx="2" ry="2" />
<text text-anchor="" x="181.54" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (5 samples, 0.01%)</title><rect x="258.0" y="1397" width="0.2" height="15.0" fill="rgb(223,102,2)" rx="2" ry="2" />
<text text-anchor="" x="261.03" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (4 samples, 0.01%)</title><rect x="1056.5" y="1525" width="0.2" height="15.0" fill="rgb(245,3,46)" rx="2" ry="2" />
<text text-anchor="" x="1059.55" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reweight_entity (7 samples, 0.02%)</title><rect x="694.2" y="1237" width="0.2" height="15.0" fill="rgb(213,222,25)" rx="2" ry="2" />
<text text-anchor="" x="697.22" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (36 samples, 0.08%)</title><rect x="570.6" y="1301" width="0.9" height="15.0" fill="rgb(220,98,49)" rx="2" ry="2" />
<text text-anchor="" x="573.56" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (39 samples, 0.08%)</title><rect x="426.1" y="1493" width="1.0" height="15.0" fill="rgb(218,141,22)" rx="2" ry="2" />
<text text-anchor="" x="429.14" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (21 samples, 0.05%)</title><rect x="570.8" y="1285" width="0.5" height="15.0" fill="rgb(246,222,34)" rx="2" ry="2" />
<text text-anchor="" x="573.77" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iter (65 samples, 0.14%)</title><rect x="753.2" y="1285" width="1.7" height="15.0" fill="rgb(205,108,7)" rx="2" ry="2" />
<text text-anchor="" x="756.19" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeString (22 samples, 0.05%)</title><rect x="999.6" y="1445" width="0.6" height="15.0" fill="rgb(230,166,4)" rx="2" ry="2" />
<text text-anchor="" x="1002.61" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (33 samples, 0.07%)</title><rect x="10.7" y="277" width="0.8" height="15.0" fill="rgb(213,42,53)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_in_progress (15 samples, 0.03%)</title><rect x="381.4" y="1509" width="0.4" height="15.0" fill="rgb(246,19,17)" rx="2" ry="2" />
<text text-anchor="" x="384.43" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (8 samples, 0.02%)</title><rect x="529.1" y="1477" width="0.2" height="15.0" fill="rgb(207,34,32)" rx="2" ry="2" />
<text text-anchor="" x="532.12" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc at plt (8 samples, 0.02%)</title><rect x="814.5" y="1461" width="0.2" height="15.0" fill="rgb(233,53,20)" rx="2" ry="2" />
<text text-anchor="" x="817.53" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (689 samples, 1.50%)</title><rect x="242.8" y="1461" width="17.8" height="15.0" fill="rgb(253,118,30)" rx="2" ry="2" />
<text text-anchor="" x="245.84" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_recvmsg (145 samples, 0.32%)</title><rect x="683.4" y="1349" width="3.7" height="15.0" fill="rgb(232,187,15)" rx="2" ry="2" />
<text text-anchor="" x="686.40" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (15 samples, 0.03%)</title><rect x="237.2" y="1509" width="0.4" height="15.0" fill="rgb(206,81,22)" rx="2" ry="2" />
<text text-anchor="" x="240.21" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1173" width="1.4" height="15.0" fill="rgb(205,116,29)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (5 samples, 0.01%)</title><rect x="283.5" y="1269" width="0.2" height="15.0" fill="rgb(220,188,0)" rx="2" ry="2" />
<text text-anchor="" x="286.53" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeColumnRef (5 samples, 0.01%)</title><rect x="1001.4" y="1477" width="0.2" height="15.0" fill="rgb(227,163,4)" rx="2" ry="2" />
<text text-anchor="" x="1004.43" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_socket_sendmsg (24 samples, 0.05%)</title><rect x="449.6" y="1333" width="0.6" height="15.0" fill="rgb(209,8,10)" rx="2" ry="2" />
<text text-anchor="" x="452.56" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>reweight_entity (4 samples, 0.01%)</title><rect x="280.4" y="1237" width="0.2" height="15.0" fill="rgb(219,160,4)" rx="2" ry="2" />
<text text-anchor="" x="283.45" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (11 samples, 0.02%)</title><rect x="322.6" y="1301" width="0.3" height="15.0" fill="rgb(222,125,25)" rx="2" ry="2" />
<text text-anchor="" x="325.58" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="353.6" y="1461" width="0.1" height="15.0" fill="rgb(215,172,48)" rx="2" ry="2" />
<text text-anchor="" x="356.56" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="655.0" y="1477" width="0.1" height="15.0" fill="rgb(214,88,12)" rx="2" ry="2" />
<text text-anchor="" x="658.02" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_2pc_transaction_query (5 samples, 0.01%)</title><rect x="95.0" y="1493" width="0.1" height="15.0" fill="rgb(205,44,38)" rx="2" ry="2" />
<text text-anchor="" x="97.99" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (4 samples, 0.01%)</title><rect x="660.5" y="1477" width="0.1" height="15.0" fill="rgb(233,104,4)" rx="2" ry="2" />
<text text-anchor="" x="663.49" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (4 samples, 0.01%)</title><rect x="417.6" y="1349" width="0.1" height="15.0" fill="rgb(231,72,17)" rx="2" ry="2" />
<text text-anchor="" x="420.63" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (40 samples, 0.09%)</title><rect x="139.9" y="1493" width="1.1" height="15.0" fill="rgb(214,150,4)" rx="2" ry="2" />
<text text-anchor="" x="142.93" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>makeSimpleA_Expr (92 samples, 0.20%)</title><rect x="997.8" y="1461" width="2.4" height="15.0" fill="rgb(215,187,32)" rx="2" ry="2" />
<text text-anchor="" x="1000.81" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (7 samples, 0.02%)</title><rect x="362.4" y="1237" width="0.1" height="15.0" fill="rgb(222,47,39)" rx="2" ry="2" />
<text text-anchor="" x="365.35" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_search_relcache (95 samples, 0.21%)</title><rect x="852.6" y="1381" width="2.4" height="15.0" fill="rgb(245,142,44)" rx="2" ry="2" />
<text text-anchor="" x="855.58" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (8 samples, 0.02%)</title><rect x="60.0" y="1477" width="0.2" height="15.0" fill="rgb(240,105,37)" rx="2" ry="2" />
<text text-anchor="" x="62.98" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (24 samples, 0.05%)</title><rect x="566.3" y="1301" width="0.6" height="15.0" fill="rgb(238,96,0)" rx="2" ry="2" />
<text text-anchor="" x="569.32" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_actor (86 samples, 0.19%)</title><rect x="255.6" y="1317" width="2.2" height="15.0" fill="rgb(215,38,24)" rx="2" ry="2" />
<text text-anchor="" x="258.61" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_read_iter (149 samples, 0.32%)</title><rect x="683.3" y="1365" width="3.9" height="15.0" fill="rgb(238,71,25)" rx="2" ry="2" />
<text text-anchor="" x="686.35" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (22 samples, 0.05%)</title><rect x="1030.5" y="1397" width="0.5" height="15.0" fill="rgb(239,147,18)" rx="2" ry="2" />
<text text-anchor="" x="1033.48" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (161 samples, 0.35%)</title><rect x="1078.2" y="1205" width="4.2" height="15.0" fill="rgb(236,61,32)" rx="2" ry="2" />
<text text-anchor="" x="1081.25" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (42 samples, 0.09%)</title><rect x="679.2" y="1477" width="1.1" height="15.0" fill="rgb(243,100,17)" rx="2" ry="2" />
<text text-anchor="" x="682.18" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (782 samples, 1.70%)</title><rect x="68.2" y="1397" width="20.1" height="15.0" fill="rgb(242,116,16)" rx="2" ry="2" />
<text text-anchor="" x="71.20" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__kmalloc_reserve.isra.43 (35 samples, 0.08%)</title><rect x="126.0" y="1285" width="0.9" height="15.0" fill="rgb(241,140,38)" rx="2" ry="2" />
<text text-anchor="" x="128.99" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (5 samples, 0.01%)</title><rect x="731.9" y="1381" width="0.1" height="15.0" fill="rgb(230,202,32)" rx="2" ry="2" />
<text text-anchor="" x="734.91" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (1,661 samples, 3.62%)</title><rect x="746.6" y="1413" width="42.7" height="15.0" fill="rgb(243,53,11)" rx="2" ry="2" />
<text text-anchor="" x="749.59" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (12 samples, 0.03%)</title><rect x="532.4" y="1461" width="0.3" height="15.0" fill="rgb(254,22,1)" rx="2" ry="2" />
<text text-anchor="" x="535.39" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (49 samples, 0.11%)</title><rect x="670.9" y="1477" width="1.3" height="15.0" fill="rgb(211,160,36)" rx="2" ry="2" />
<text text-anchor="" x="673.93" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_cache_empty (11 samples, 0.02%)</title><rect x="31.0" y="1557" width="0.3" height="15.0" fill="rgb(243,64,24)" rx="2" ry="2" />
<text text-anchor="" x="33.98" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select at plt (17 samples, 0.04%)</title><rect x="1054.3" y="1493" width="0.4" height="15.0" fill="rgb(251,88,14)" rx="2" ry="2" />
<text text-anchor="" x="1057.31" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__calc_delta (6 samples, 0.01%)</title><rect x="281.4" y="1237" width="0.1" height="15.0" fill="rgb(206,57,5)" rx="2" ry="2" />
<text text-anchor="" x="284.37" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (5 samples, 0.01%)</title><rect x="514.8" y="1509" width="0.2" height="15.0" fill="rgb(234,186,0)" rx="2" ry="2" />
<text text-anchor="" x="517.83" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kfree_skbmem (58 samples, 0.13%)</title><rect x="1071.3" y="1301" width="1.5" height="15.0" fill="rgb(248,42,35)" rx="2" ry="2" />
<text text-anchor="" x="1074.28" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ParseComplete (70 samples, 0.15%)</title><rect x="99.4" y="1525" width="1.8" height="15.0" fill="rgb(246,177,35)" rx="2" ry="2" />
<text text-anchor="" x="102.44" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (5 samples, 0.01%)</title><rect x="58.6" y="1493" width="0.2" height="15.0" fill="rgb(228,98,49)" rx="2" ry="2" />
<text text-anchor="" x="61.64" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_kind_from_backend (5 samples, 0.01%)</title><rect x="10.6" y="1605" width="0.1" height="15.0" fill="rgb(214,121,52)" rx="2" ry="2" />
<text text-anchor="" x="13.57" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_ignore_till_sync (9 samples, 0.02%)</title><rect x="624.4" y="1541" width="0.3" height="15.0" fill="rgb(243,68,31)" rx="2" ry="2" />
<text text-anchor="" x="627.45" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ttwu_do_activate (4 samples, 0.01%)</title><rect x="329.6" y="1157" width="0.1" height="15.0" fill="rgb(252,210,30)" rx="2" ry="2" />
<text text-anchor="" x="332.58" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x2apic_send_IPI (7 samples, 0.02%)</title><rect x="486.0" y="1093" width="0.2" height="15.0" fill="rgb(225,191,53)" rx="2" ry="2" />
<text text-anchor="" x="489.01" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (9 samples, 0.02%)</title><rect x="1049.5" y="1397" width="0.2" height="15.0" fill="rgb(250,39,5)" rx="2" ry="2" />
<text text-anchor="" x="1052.48" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__perf_event_enable (5 samples, 0.01%)</title><rect x="444.0" y="1269" width="0.1" height="15.0" fill="rgb(246,118,28)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (8 samples, 0.02%)</title><rect x="718.2" y="1445" width="0.2" height="15.0" fill="rgb(225,38,48)" rx="2" ry="2" />
<text text-anchor="" x="721.23" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="237.4" y="1493" width="0.2" height="15.0" fill="rgb(230,118,46)" rx="2" ry="2" />
<text text-anchor="" x="240.41" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="115.2" y="1493" width="0.1" height="15.0" fill="rgb(218,181,34)" rx="2" ry="2" />
<text text-anchor="" x="118.22" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (14 samples, 0.03%)</title><rect x="258.5" y="1397" width="0.4" height="15.0" fill="rgb(249,46,22)" rx="2" ry="2" />
<text text-anchor="" x="261.52" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (53 samples, 0.12%)</title><rect x="10.7" y="1093" width="1.4" height="15.0" fill="rgb(206,147,40)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (11 samples, 0.02%)</title><rect x="124.1" y="1317" width="0.3" height="15.0" fill="rgb(222,152,16)" rx="2" ry="2" />
<text text-anchor="" x="127.12" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_copy_datagram_from_iter (48 samples, 0.10%)</title><rect x="323.1" y="1301" width="1.2" height="15.0" fill="rgb(226,158,27)" rx="2" ry="2" />
<text text-anchor="" x="326.10" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (8 samples, 0.02%)</title><rect x="12.6" y="1445" width="0.2" height="15.0" fill="rgb(205,159,46)" rx="2" ry="2" />
<text text-anchor="" x="15.60" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_write_msr (4 samples, 0.01%)</title><rect x="444.0" y="1189" width="0.1" height="15.0" fill="rgb(211,132,36)" rx="2" ry="2" />
<text text-anchor="" x="446.98" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.01%)</title><rect x="329.3" y="1157" width="0.2" height="15.0" fill="rgb(223,163,35)" rx="2" ry="2" />
<text text-anchor="" x="332.35" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sigsetjmp (21 samples, 0.05%)</title><rect x="115.4" y="1509" width="0.5" height="15.0" fill="rgb(234,38,54)" rx="2" ry="2" />
<text text-anchor="" x="118.38" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (4 samples, 0.01%)</title><rect x="1143.3" y="1525" width="0.1" height="15.0" fill="rgb(235,123,50)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_free_pending_message (29 samples, 0.06%)</title><rect x="431.9" y="1509" width="0.7" height="15.0" fill="rgb(248,18,11)" rx="2" ry="2" />
<text text-anchor="" x="434.89" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (7 samples, 0.02%)</title><rect x="497.2" y="1525" width="0.2" height="15.0" fill="rgb(223,53,28)" rx="2" ry="2" />
<text text-anchor="" x="500.19" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (21 samples, 0.05%)</title><rect x="685.0" y="1173" width="0.5" height="15.0" fill="rgb(208,145,44)" rx="2" ry="2" />
<text text-anchor="" x="687.97" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (5 samples, 0.01%)</title><rect x="233.5" y="1333" width="0.2" height="15.0" fill="rgb(212,70,48)" rx="2" ry="2" />
<text text-anchor="" x="236.53" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (22 samples, 0.05%)</title><rect x="813.7" y="1461" width="0.5" height="15.0" fill="rgb(246,35,23)" rx="2" ry="2" />
<text text-anchor="" x="816.66" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_commit_query (4 samples, 0.01%)</title><rect x="390.4" y="1477" width="0.1" height="15.0" fill="rgb(226,171,10)" rx="2" ry="2" />
<text text-anchor="" x="393.38" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pg_database_encoding_max_length (14 samples, 0.03%)</title><rect x="984.6" y="1397" width="0.3" height="15.0" fill="rgb(218,15,31)" rx="2" ry="2" />
<text text-anchor="" x="987.57" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.01%)</title><rect x="1143.3" y="1541" width="0.1" height="15.0" fill="rgb(235,216,51)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rcu_all_qs (19 samples, 0.04%)</title><rect x="585.4" y="1445" width="0.5" height="15.0" fill="rgb(246,187,37)" rx="2" ry="2" />
<text text-anchor="" x="588.45" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read2 (68 samples, 0.15%)</title><rect x="510.1" y="1525" width="1.7" height="15.0" fill="rgb(234,189,44)" rx="2" ry="2" />
<text text-anchor="" x="513.10" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (6 samples, 0.01%)</title><rect x="785.9" y="1237" width="0.1" height="15.0" fill="rgb(229,112,33)" rx="2" ry="2" />
<text text-anchor="" x="788.89" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (8 samples, 0.02%)</title><rect x="1033.9" y="1509" width="0.2" height="15.0" fill="rgb(250,39,13)" rx="2" ry="2" />
<text text-anchor="" x="1036.90" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="661" width="1.3" height="15.0" fill="rgb(230,142,44)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (109 samples, 0.24%)</title><rect x="231.4" y="1493" width="2.8" height="15.0" fill="rgb(243,96,24)" rx="2" ry="2" />
<text text-anchor="" x="234.40" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (20 samples, 0.04%)</title><rect x="655.1" y="1477" width="0.6" height="15.0" fill="rgb(252,66,20)" rx="2" ry="2" />
<text text-anchor="" x="658.14" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (5 samples, 0.01%)</title><rect x="1070.8" y="1317" width="0.1" height="15.0" fill="rgb(220,214,4)" rx="2" ry="2" />
<text text-anchor="" x="1073.82" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (5 samples, 0.01%)</title><rect x="446.1" y="1413" width="0.1" height="15.0" fill="rgb(223,61,37)" rx="2" ry="2" />
<text text-anchor="" x="449.11" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksize (15 samples, 0.03%)</title><rect x="82.0" y="1253" width="0.4" height="15.0" fill="rgb(228,224,29)" rx="2" ry="2" />
<text text-anchor="" x="85.01" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_pull_out (671 samples, 1.46%)</title><rect x="212.2" y="1509" width="17.2" height="15.0" fill="rgb(239,190,29)" rx="2" ry="2" />
<text text-anchor="" x="215.17" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (836 samples, 1.82%)</title><rect x="1097.0" y="1493" width="21.5" height="15.0" fill="rgb(238,196,47)" rx="2" ry="2" />
<text text-anchor="" x="1099.96" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (5 samples, 0.01%)</title><rect x="191.1" y="1493" width="0.2" height="15.0" fill="rgb(215,218,39)" rx="2" ry="2" />
<text text-anchor="" x="194.14" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>migrate_task_rq_fair (5 samples, 0.01%)</title><rect x="473.7" y="1157" width="0.1" height="15.0" fill="rgb(233,150,20)" rx="2" ry="2" />
<text text-anchor="" x="476.67" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (5 samples, 0.01%)</title><rect x="335.7" y="1509" width="0.1" height="15.0" fill="rgb(235,193,1)" rx="2" ry="2" />
<text text-anchor="" x="338.72" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ksize (4 samples, 0.01%)</title><rect x="362.7" y="1269" width="0.1" height="15.0" fill="rgb(243,33,17)" rx="2" ry="2" />
<text text-anchor="" x="365.69" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_and_flush (2,206 samples, 4.81%)</title><rect x="440.1" y="1509" width="56.7" height="15.0" fill="rgb(225,177,25)" rx="2" ry="2" />
<text text-anchor="" x="443.12" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >pool_w..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock (23 samples, 0.05%)</title><rect x="583.6" y="1365" width="0.6" height="15.0" fill="rgb(241,97,24)" rx="2" ry="2" />
<text text-anchor="" x="586.57" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (4 samples, 0.01%)</title><rect x="696.5" y="1365" width="0.1" height="15.0" fill="rgb(222,164,52)" rx="2" ry="2" />
<text text-anchor="" x="699.53" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_unlink (17 samples, 0.04%)</title><rect x="255.2" y="1317" width="0.4" height="15.0" fill="rgb(214,183,32)" rx="2" ry="2" />
<text text-anchor="" x="258.18" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (6 samples, 0.01%)</title><rect x="178.5" y="1301" width="0.2" height="15.0" fill="rgb(222,202,8)" rx="2" ry="2" />
<text text-anchor="" x="181.54" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (5 samples, 0.01%)</title><rect x="894.4" y="1397" width="0.1" height="15.0" fill="rgb(251,93,3)" rx="2" ry="2" />
<text text-anchor="" x="897.41" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (14 samples, 0.03%)</title><rect x="742.2" y="1333" width="0.4" height="15.0" fill="rgb(237,119,18)" rx="2" ry="2" />
<text text-anchor="" x="745.24" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (5 samples, 0.01%)</title><rect x="444.0" y="1237" width="0.1" height="15.0" fill="rgb(208,36,11)" rx="2" ry="2" />
<text text-anchor="" x="446.95" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>hrtimer_interrupt (4 samples, 0.01%)</title><rect x="980.2" y="1397" width="0.1" height="15.0" fill="rgb(205,106,2)" rx="2" ry="2" />
<text text-anchor="" x="983.20" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_pending_data (8 samples, 0.02%)</title><rect x="1039.5" y="1493" width="0.2" height="15.0" fill="rgb(227,175,15)" rx="2" ry="2" />
<text text-anchor="" x="1042.53" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (55 samples, 0.12%)</title><rect x="1109.3" y="1381" width="1.4" height="15.0" fill="rgb(243,33,15)" rx="2" ry="2" />
<text text-anchor="" x="1112.28" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (4 samples, 0.01%)</title><rect x="141.6" y="1509" width="0.1" height="15.0" fill="rgb(224,16,24)" rx="2" ry="2" />
<text text-anchor="" x="144.63" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (105 samples, 0.23%)</title><rect x="398.4" y="1301" width="2.7" height="15.0" fill="rgb(209,36,45)" rx="2" ry="2" />
<text text-anchor="" x="401.40" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__switch_to_asm (4 samples, 0.01%)</title><rect x="1148.7" y="1493" width="0.1" height="15.0" fill="rgb(222,128,1)" rx="2" ry="2" />
<text text-anchor="" x="1151.69" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (433 samples, 0.94%)</title><rect x="406.9" y="1445" width="11.1" height="15.0" fill="rgb(223,224,48)" rx="2" ry="2" />
<text text-anchor="" x="409.86" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="1134.4" y="1605" width="0.1" height="15.0" fill="rgb(215,61,39)" rx="2" ry="2" />
<text text-anchor="" x="1137.37" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lcons (38 samples, 0.08%)</title><rect x="998.6" y="1445" width="1.0" height="15.0" fill="rgb(220,95,43)" rx="2" ry="2" />
<text text-anchor="" x="1001.63" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (4 samples, 0.01%)</title><rect x="332.0" y="1429" width="0.1" height="15.0" fill="rgb(232,9,12)" rx="2" ry="2" />
<text text-anchor="" x="335.02" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (34 samples, 0.07%)</title><rect x="259.2" y="1381" width="0.8" height="15.0" fill="rgb(236,166,27)" rx="2" ry="2" />
<text text-anchor="" x="262.16" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (4 samples, 0.01%)</title><rect x="689.2" y="1461" width="0.1" height="15.0" fill="rgb(244,211,48)" rx="2" ry="2" />
<text text-anchor="" x="692.23" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (10 samples, 0.02%)</title><rect x="489.7" y="1269" width="0.3" height="15.0" fill="rgb(230,37,25)" rx="2" ry="2" />
<text text-anchor="" x="492.74" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strlen_avx2 (5 samples, 0.01%)</title><rect x="135.5" y="1493" width="0.1" height="15.0" fill="rgb(230,50,39)" rx="2" ry="2" />
<text text-anchor="" x="138.51" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (4 samples, 0.01%)</title><rect x="1083.3" y="1301" width="0.1" height="15.0" fill="rgb(214,209,23)" rx="2" ry="2" />
<text text-anchor="" x="1086.26" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__intel_pmu_enable_all.constprop.19 (5 samples, 0.01%)</title><rect x="283.9" y="1125" width="0.2" height="15.0" fill="rgb(217,185,41)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1135.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (14 samples, 0.03%)</title><rect x="1045.1" y="1413" width="0.3" height="15.0" fill="rgb(211,61,4)" rx="2" ry="2" />
<text text-anchor="" x="1048.08" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_set_previous_message (16 samples, 0.03%)</title><rect x="230.1" y="1509" width="0.4" height="15.0" fill="rgb(220,108,28)" rx="2" ry="2" />
<text text-anchor="" x="233.14" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (4 samples, 0.01%)</title><rect x="687.8" y="1365" width="0.1" height="15.0" fill="rgb(248,12,8)" rx="2" ry="2" />
<text text-anchor="" x="690.77" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (10 samples, 0.02%)</title><rect x="1027.6" y="1381" width="0.2" height="15.0" fill="rgb(232,209,37)" rx="2" ry="2" />
<text text-anchor="" x="1030.58" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_and_flush (6 samples, 0.01%)</title><rect x="895.1" y="1493" width="0.1" height="15.0" fill="rgb(205,172,5)" rx="2" ry="2" />
<text text-anchor="" x="898.08" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="348.5" y="1493" width="0.1" height="15.0" fill="rgb(212,44,0)" rx="2" ry="2" />
<text text-anchor="" x="351.47" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>insertinto_or_locking_clause_walker (238 samples, 0.52%)</title><rect x="888.4" y="1429" width="6.2" height="15.0" fill="rgb(249,145,5)" rx="2" ry="2" />
<text text-anchor="" x="891.44" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (5 samples, 0.01%)</title><rect x="29.7" y="1557" width="0.2" height="15.0" fill="rgb(234,208,53)" rx="2" ry="2" />
<text text-anchor="" x="32.74" y="1567.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (4 samples, 0.01%)</title><rect x="122.6" y="1317" width="0.1" height="15.0" fill="rgb(222,92,30)" rx="2" ry="2" />
<text text-anchor="" x="125.63" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (36 samples, 0.08%)</title><rect x="255.8" y="1285" width="0.9" height="15.0" fill="rgb(235,41,7)" rx="2" ry="2" />
<text text-anchor="" x="258.77" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_read_actor (114 samples, 0.25%)</title><rect x="1024.6" y="1333" width="3.0" height="15.0" fill="rgb(210,116,7)" rx="2" ry="2" />
<text text-anchor="" x="1027.65" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (13 samples, 0.03%)</title><rect x="479.9" y="1093" width="0.3" height="15.0" fill="rgb(252,178,15)" rx="2" ry="2" />
<text text-anchor="" x="482.87" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (56 samples, 0.12%)</title><rect x="337.8" y="1477" width="1.4" height="15.0" fill="rgb(213,198,4)" rx="2" ry="2" />
<text text-anchor="" x="340.80" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_ssl_pending (25 samples, 0.05%)</title><rect x="619.5" y="1525" width="0.7" height="15.0" fill="rgb(206,87,54)" rx="2" ry="2" />
<text text-anchor="" x="622.51" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>resched_curr (5 samples, 0.01%)</title><rect x="783.7" y="1093" width="0.2" height="15.0" fill="rgb(225,126,54)" rx="2" ry="2" />
<text text-anchor="" x="786.74" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_parse_tree (4 samples, 0.01%)</title><rect x="96.5" y="1493" width="0.1" height="15.0" fill="rgb(212,35,12)" rx="2" ry="2" />
<text text-anchor="" x="99.53" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_create_sent_message (13 samples, 0.03%)</title><rect x="1037.1" y="1509" width="0.3" height="15.0" fill="rgb(218,127,23)" rx="2" ry="2" />
<text text-anchor="" x="1040.09" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_select (4 samples, 0.01%)</title><rect x="12.9" y="1525" width="0.1" height="15.0" fill="rgb(242,150,30)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_local_session_id (4 samples, 0.01%)</title><rect x="851.3" y="1349" width="0.1" height="15.0" fill="rgb(210,174,47)" rx="2" ry="2" />
<text text-anchor="" x="854.27" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_suspend_reading_from_frontend (5 samples, 0.01%)</title><rect x="629.7" y="1541" width="0.1" height="15.0" fill="rgb(208,202,16)" rx="2" ry="2" />
<text text-anchor="" x="632.67" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextCreate (13 samples, 0.03%)</title><rect x="801.0" y="1477" width="0.3" height="15.0" fill="rgb(250,126,12)" rx="2" ry="2" />
<text text-anchor="" x="803.96" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_load_avg_se.isra.38 (8 samples, 0.02%)</title><rect x="568.6" y="1301" width="0.2" height="15.0" fill="rgb(242,197,27)" rx="2" ry="2" />
<text text-anchor="" x="571.64" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__ctype_b_loc (33 samples, 0.07%)</title><rect x="94.1" y="1493" width="0.8" height="15.0" fill="rgb(244,24,35)" rx="2" ry="2" />
<text text-anchor="" x="97.09" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_sys_select (215 samples, 0.47%)</title><rect x="1143.3" y="1589" width="5.5" height="15.0" fill="rgb(248,4,26)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_enhanced_fast_string (20 samples, 0.04%)</title><rect x="256.8" y="1269" width="0.6" height="15.0" fill="rgb(212,84,27)" rx="2" ry="2" />
<text text-anchor="" x="259.85" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (26 samples, 0.06%)</title><rect x="667.6" y="1493" width="0.6" height="15.0" fill="rgb(207,199,43)" rx="2" ry="2" />
<text text-anchor="" x="670.56" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (83 samples, 0.18%)</title><rect x="10.7" y="1605" width="2.1" height="15.0" fill="rgb(208,9,22)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (7 samples, 0.02%)</title><rect x="1049.0" y="1333" width="0.2" height="15.0" fill="rgb(229,189,13)" rx="2" ry="2" />
<text text-anchor="" x="1051.99" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>kmem_cache_alloc_node (59 samples, 0.13%)</title><rect x="737.3" y="1237" width="1.5" height="15.0" fill="rgb(225,150,27)" rx="2" ry="2" />
<text text-anchor="" x="740.26" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_wait_queue (10 samples, 0.02%)</title><rect x="692.1" y="1349" width="0.2" height="15.0" fill="rgb(239,13,38)" rx="2" ry="2" />
<text text-anchor="" x="695.09" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_read (1,089 samples, 2.37%)</title><rect x="1065.1" y="1429" width="28.0" height="15.0" fill="rgb(237,141,8)" rx="2" ry="2" />
<text text-anchor="" x="1068.14" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >v..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (14 samples, 0.03%)</title><rect x="280.0" y="1253" width="0.3" height="15.0" fill="rgb(246,147,33)" rx="2" ry="2" />
<text text-anchor="" x="282.96" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (12 samples, 0.03%)</title><rect x="751.2" y="1269" width="0.3" height="15.0" fill="rgb(252,64,2)" rx="2" ry="2" />
<text text-anchor="" x="754.19" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (15 samples, 0.03%)</title><rect x="1017.7" y="1333" width="0.4" height="15.0" fill="rgb(240,116,0)" rx="2" ry="2" />
<text text-anchor="" x="1020.68" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (8 samples, 0.02%)</title><rect x="409.5" y="1301" width="0.2" height="15.0" fill="rgb(254,55,49)" rx="2" ry="2" />
<text text-anchor="" x="412.48" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read_message_length (123 samples, 0.27%)</title><rect x="138.3" y="1509" width="3.1" height="15.0" fill="rgb(241,119,39)" rx="2" ry="2" />
<text text-anchor="" x="141.26" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stack_object (5 samples, 0.01%)</title><rect x="532.7" y="1461" width="0.2" height="15.0" fill="rgb(225,114,20)" rx="2" ry="2" />
<text text-anchor="" x="535.72" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_head_message (521 samples, 1.14%)</title><rect x="198.8" y="1509" width="13.4" height="15.0" fill="rgb(245,54,28)" rx="2" ry="2" />
<text text-anchor="" x="201.77" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (64 samples, 0.14%)</title><rect x="10.7" y="1525" width="1.6" height="15.0" fill="rgb(247,164,25)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (20 samples, 0.04%)</title><rect x="146.5" y="1509" width="0.5" height="15.0" fill="rgb(243,64,23)" rx="2" ry="2" />
<text text-anchor="" x="149.46" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (165 samples, 0.36%)</title><rect x="1019.2" y="1317" width="4.3" height="15.0" fill="rgb(212,158,42)" rx="2" ry="2" />
<text text-anchor="" x="1022.25" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_ignore_till_sync (8 samples, 0.02%)</title><rect x="141.4" y="1509" width="0.2" height="15.0" fill="rgb(238,180,29)" rx="2" ry="2" />
<text text-anchor="" x="144.42" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (53 samples, 0.12%)</title><rect x="988.8" y="1413" width="1.4" height="15.0" fill="rgb(224,16,21)" rx="2" ry="2" />
<text text-anchor="" x="991.83" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (19 samples, 0.04%)</title><rect x="1121.5" y="1509" width="0.5" height="15.0" fill="rgb(236,7,28)" rx="2" ry="2" />
<text text-anchor="" x="1124.51" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="319.0" y="1445" width="0.1" height="15.0" fill="rgb(205,115,33)" rx="2" ry="2" />
<text text-anchor="" x="321.99" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (215 samples, 0.47%)</title><rect x="1143.3" y="1637" width="5.5" height="15.0" fill="rgb(208,153,27)" rx="2" ry="2" />
<text text-anchor="" x="1146.26" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SwitchToConnectionContext (8 samples, 0.02%)</title><rect x="1039.2" y="1493" width="0.2" height="15.0" fill="rgb(238,106,6)" rx="2" ry="2" />
<text text-anchor="" x="1042.22" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_new_mm_cr3 (41 samples, 0.09%)</title><rect x="1147.6" y="1461" width="1.1" height="15.0" fill="rgb(225,115,50)" rx="2" ry="2" />
<text text-anchor="" x="1150.63" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (18 samples, 0.04%)</title><rect x="1003.0" y="1461" width="0.4" height="15.0" fill="rgb(232,5,42)" rx="2" ry="2" />
<text text-anchor="" x="1005.97" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>MemoryContextSwitchTo (15 samples, 0.03%)</title><rect x="703.1" y="1493" width="0.3" height="15.0" fill="rgb(212,99,23)" rx="2" ry="2" />
<text text-anchor="" x="706.06" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common_lock (29 samples, 0.06%)</title><rect x="684.9" y="1189" width="0.8" height="15.0" fill="rgb(224,4,30)" rx="2" ry="2" />
<text text-anchor="" x="687.94" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (10 samples, 0.02%)</title><rect x="1036.0" y="1477" width="0.2" height="15.0" fill="rgb(248,89,43)" rx="2" ry="2" />
<text text-anchor="" x="1038.96" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>native_smp_send_reschedule (45 samples, 0.10%)</title><rect x="484.9" y="1093" width="1.1" height="15.0" fill="rgb(220,126,11)" rx="2" ry="2" />
<text text-anchor="" x="487.85" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_sock_msg_perm (5 samples, 0.01%)</title><rect x="1067.8" y="1317" width="0.1" height="15.0" fill="rgb(211,112,12)" rx="2" ry="2" />
<text text-anchor="" x="1070.81" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>strncpy at plt (8 samples, 0.02%)</title><rect x="1011.1" y="1493" width="0.2" height="15.0" fill="rgb(248,13,12)" rx="2" ry="2" />
<text text-anchor="" x="1014.12" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="821" width="1.3" height="15.0" fill="rgb(232,36,26)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="831.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__indirect_thunk_start (5 samples, 0.01%)</title><rect x="395.3" y="1333" width="0.1" height="15.0" fill="rgb(229,12,42)" rx="2" ry="2" />
<text text-anchor="" x="398.31" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (15 samples, 0.03%)</title><rect x="502.3" y="1509" width="0.3" height="15.0" fill="rgb(233,30,44)" rx="2" ry="2" />
<text text-anchor="" x="505.26" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>deactivate_task (11 samples, 0.02%)</title><rect x="232.6" y="1317" width="0.3" height="15.0" fill="rgb(253,79,18)" rx="2" ry="2" />
<text text-anchor="" x="235.58" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>select_task_rq_fair (24 samples, 0.05%)</title><rect x="84.4" y="1173" width="0.6" height="15.0" fill="rgb(215,166,53)" rx="2" ry="2" />
<text text-anchor="" x="87.37" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (89 samples, 0.19%)</title><rect x="1130.0" y="1589" width="2.3" height="15.0" fill="rgb(242,127,6)" rx="2" ry="2" />
<text text-anchor="" x="1133.02" y="1599.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>set_fd_set (68 samples, 0.15%)</title><rect x="602.9" y="1461" width="1.8" height="15.0" fill="rgb(216,36,4)" rx="2" ry="2" />
<text text-anchor="" x="605.93" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="405" width="1.1" height="15.0" fill="rgb(217,144,50)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>GetMemoryChunkContext (9 samples, 0.02%)</title><rect x="719.7" y="1429" width="0.3" height="15.0" fill="rgb(220,48,45)" rx="2" ry="2" />
<text text-anchor="" x="722.75" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (12 samples, 0.03%)</title><rect x="814.2" y="1461" width="0.3" height="15.0" fill="rgb(252,46,35)" rx="2" ry="2" />
<text text-anchor="" x="817.23" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>maybe_add_creds (22 samples, 0.05%)</title><rect x="448.9" y="1333" width="0.6" height="15.0" fill="rgb(244,131,14)" rx="2" ry="2" />
<text text-anchor="" x="451.91" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>smp_call_function_single_interrupt (4 samples, 0.01%)</title><rect x="789.0" y="1285" width="0.1" height="15.0" fill="rgb(215,99,27)" rx="2" ry="2" />
<text text-anchor="" x="792.03" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_load_avg (5 samples, 0.01%)</title><rect x="285.0" y="1269" width="0.1" height="15.0" fill="rgb(212,56,50)" rx="2" ry="2" />
<text text-anchor="" x="288.00" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (132 samples, 0.29%)</title><rect x="692.3" y="1365" width="3.4" height="15.0" fill="rgb(247,116,38)" rx="2" ry="2" />
<text text-anchor="" x="695.34" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (16 samples, 0.03%)</title><rect x="1098.8" y="1477" width="0.4" height="15.0" fill="rgb(238,110,44)" rx="2" ry="2" />
<text text-anchor="" x="1101.79" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (4 samples, 0.01%)</title><rect x="211.5" y="1477" width="0.1" height="15.0" fill="rgb(211,17,47)" rx="2" ry="2" />
<text text-anchor="" x="214.47" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_freewait (24 samples, 0.05%)</title><rect x="1108.5" y="1381" width="0.6" height="15.0" fill="rgb(212,106,17)" rx="2" ry="2" />
<text text-anchor="" x="1111.53" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (85 samples, 0.19%)</title><rect x="1085.4" y="1285" width="2.2" height="15.0" fill="rgb(246,83,19)" rx="2" ry="2" />
<text text-anchor="" x="1088.39" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (6 samples, 0.01%)</title><rect x="695.4" y="1285" width="0.2" height="15.0" fill="rgb(209,147,27)" rx="2" ry="2" />
<text text-anchor="" x="698.40" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__snprintf (23 samples, 0.05%)</title><rect x="115.9" y="1509" width="0.6" height="15.0" fill="rgb(225,143,27)" rx="2" ry="2" />
<text text-anchor="" x="118.92" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (6 samples, 0.01%)</title><rect x="263.5" y="1461" width="0.2" height="15.0" fill="rgb(245,190,39)" rx="2" ry="2" />
<text text-anchor="" x="266.51" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core_yylex_init (13 samples, 0.03%)</title><rect x="1000.9" y="1477" width="0.4" height="15.0" fill="rgb(208,174,27)" rx="2" ry="2" />
<text text-anchor="" x="1003.92" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_select_query (10 samples, 0.02%)</title><rect x="346.2" y="1493" width="0.2" height="15.0" fill="rgb(238,4,26)" rx="2" ry="2" />
<text text-anchor="" x="349.16" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (911 samples, 1.98%)</title><rect x="762.3" y="1237" width="23.4" height="15.0" fill="rgb(232,205,21)" rx="2" ry="2" />
<text text-anchor="" x="765.29" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (4 samples, 0.01%)</title><rect x="159.7" y="1509" width="0.1" height="15.0" fill="rgb(226,152,13)" rx="2" ry="2" />
<text text-anchor="" x="162.72" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (19 samples, 0.04%)</title><rect x="276.0" y="1349" width="0.5" height="15.0" fill="rgb(244,23,11)" rx="2" ry="2" />
<text text-anchor="" x="279.03" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>idle_cpu (5 samples, 0.01%)</title><rect x="84.8" y="1141" width="0.1" height="15.0" fill="rgb(234,174,33)" rx="2" ry="2" />
<text text-anchor="" x="87.81" y="1151.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget (12 samples, 0.03%)</title><rect x="1108.1" y="1381" width="0.3" height="15.0" fill="rgb(220,63,24)" rx="2" ry="2" />
<text text-anchor="" x="1111.07" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_wait_queue (17 samples, 0.04%)</title><rect x="1049.0" y="1349" width="0.4" height="15.0" fill="rgb(227,93,22)" rx="2" ry="2" />
<text text-anchor="" x="1051.97" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>syscall_return_via_sysret (50 samples, 0.11%)</title><rect x="789.5" y="1429" width="1.3" height="15.0" fill="rgb(229,45,54)" rx="2" ry="2" />
<text text-anchor="" x="792.47" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (4 samples, 0.01%)</title><rect x="319.4" y="1381" width="0.1" height="15.0" fill="rgb(207,82,32)" rx="2" ry="2" />
<text text-anchor="" x="322.37" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetReset (215 samples, 0.47%)</title><rect x="46.0" y="1509" width="5.5" height="15.0" fill="rgb(215,160,25)" rx="2" ry="2" />
<text text-anchor="" x="48.97" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (800 samples, 1.74%)</title><rect x="67.9" y="1429" width="20.6" height="15.0" fill="rgb(222,102,32)" rx="2" ry="2" />
<text text-anchor="" x="70.95" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_where_to_send (2,780 samples, 6.06%)</title><rect x="823.6" y="1493" width="71.5" height="15.0" fill="rgb(254,169,39)" rx="2" ry="2" />
<text text-anchor="" x="826.61" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >pool_whe..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_alloc_send_pskb (132 samples, 0.29%)</title><rect x="411.3" y="1301" width="3.4" height="15.0" fill="rgb(244,112,47)" rx="2" ry="2" />
<text text-anchor="" x="414.30" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_and_flush (8 samples, 0.02%)</title><rect x="433.6" y="1509" width="0.2" height="15.0" fill="rgb(211,0,15)" rx="2" ry="2" />
<text text-anchor="" x="436.57" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_int_malloc (11 samples, 0.02%)</title><rect x="11.1" y="101" width="0.3" height="15.0" fill="rgb(254,159,44)" rx="2" ry="2" />
<text text-anchor="" x="14.08" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (499 samples, 1.09%)</title><rect x="319.2" y="1429" width="12.8" height="15.0" fill="rgb(245,64,16)" rx="2" ry="2" />
<text text-anchor="" x="322.17" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_write_space (34 samples, 0.07%)</title><rect x="684.8" y="1221" width="0.9" height="15.0" fill="rgb(227,49,0)" rx="2" ry="2" />
<text text-anchor="" x="687.81" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleForwardToFrontend (9 samples, 0.02%)</title><rect x="653.7" y="1493" width="0.2" height="15.0" fill="rgb(207,177,21)" rx="2" ry="2" />
<text text-anchor="" x="656.68" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule (4 samples, 0.01%)</title><rect x="12.9" y="1461" width="0.1" height="15.0" fill="rgb(229,60,14)" rx="2" ry="2" />
<text text-anchor="" x="15.91" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (3,712 samples, 8.09%)</title><rect x="518.3" y="1541" width="95.5" height="15.0" fill="rgb(248,34,4)" rx="2" ry="2" />
<text text-anchor="" x="521.33" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__select</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (4 samples, 0.01%)</title><rect x="424.7" y="1493" width="0.1" height="15.0" fill="rgb(246,187,36)" rx="2" ry="2" />
<text text-anchor="" x="427.72" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pollwait (26 samples, 0.06%)</title><rect x="1048.7" y="1365" width="0.7" height="15.0" fill="rgb(222,6,10)" rx="2" ry="2" />
<text text-anchor="" x="1051.73" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (5 samples, 0.01%)</title><rect x="810.4" y="1429" width="0.1" height="15.0" fill="rgb(250,129,16)" rx="2" ry="2" />
<text text-anchor="" x="813.39" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="917" width="1.3" height="15.0" fill="rgb(222,170,22)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="927.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_clear_node_to_be_sent (5 samples, 0.01%)</title><rect x="720.2" y="1493" width="0.1" height="15.0" fill="rgb(235,172,42)" rx="2" ry="2" />
<text text-anchor="" x="723.21" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetContextCreate (230 samples, 0.50%)</title><rect x="795.0" y="1477" width="6.0" height="15.0" fill="rgb(235,10,34)" rx="2" ry="2" />
<text text-anchor="" x="798.05" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (428 samples, 0.93%)</title><rect x="1016.6" y="1365" width="11.0" height="15.0" fill="rgb(235,164,25)" rx="2" ry="2" />
<text text-anchor="" x="1019.57" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (5 samples, 0.01%)</title><rect x="134.2" y="1509" width="0.2" height="15.0" fill="rgb(212,161,16)" rx="2" ry="2" />
<text text-anchor="" x="137.25" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (9 samples, 0.02%)</title><rect x="315.0" y="1445" width="0.2" height="15.0" fill="rgb(206,1,0)" rx="2" ry="2" />
<text text-anchor="" x="317.97" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_rq_clock (16 samples, 0.03%)</title><rect x="487.0" y="1173" width="0.4" height="15.0" fill="rgb(225,93,30)" rx="2" ry="2" />
<text text-anchor="" x="490.01" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="864.2" y="1349" width="0.2" height="15.0" fill="rgb(213,167,22)" rx="2" ry="2" />
<text text-anchor="" x="867.23" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (15 samples, 0.03%)</title><rect x="655.9" y="1477" width="0.4" height="15.0" fill="rgb(221,23,51)" rx="2" ry="2" />
<text text-anchor="" x="658.92" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_min_vruntime (26 samples, 0.06%)</title><rect x="566.9" y="1301" width="0.7" height="15.0" fill="rgb(229,140,15)" rx="2" ry="2" />
<text text-anchor="" x="569.94" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (306 samples, 0.67%)</title><rect x="1043.3" y="1477" width="7.9" height="15.0" fill="rgb(212,229,23)" rx="2" ry="2" />
<text text-anchor="" x="1046.34" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (15 samples, 0.03%)</title><rect x="366.6" y="1349" width="0.4" height="15.0" fill="rgb(235,73,3)" rx="2" ry="2" />
<text text-anchor="" x="369.62" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_iter (47 samples, 0.10%)</title><rect x="454.0" y="1301" width="1.2" height="15.0" fill="rgb(251,5,31)" rx="2" ry="2" />
<text text-anchor="" x="457.03" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (7 samples, 0.02%)</title><rect x="498.0" y="1509" width="0.2" height="15.0" fill="rgb(224,60,52)" rx="2" ry="2" />
<text text-anchor="" x="501.02" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (37 samples, 0.08%)</title><rect x="679.3" y="1461" width="1.0" height="15.0" fill="rgb(232,22,50)" rx="2" ry="2" />
<text text-anchor="" x="682.31" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (578 samples, 1.26%)</title><rect x="318.8" y="1461" width="14.9" height="15.0" fill="rgb(239,104,40)" rx="2" ry="2" />
<text text-anchor="" x="321.81" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (16 samples, 0.03%)</title><rect x="125.0" y="1333" width="0.4" height="15.0" fill="rgb(233,195,47)" rx="2" ry="2" />
<text text-anchor="" x="128.02" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>main (42,664 samples, 92.95%)</title><rect x="29.5" y="1621" width="1096.8" height="15.0" fill="rgb(223,79,0)" rx="2" ry="2" />
<text text-anchor="" x="32.46" y="1631.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (384 samples, 0.84%)</title><rect x="1103.1" y="1429" width="9.9" height="15.0" fill="rgb(251,106,42)" rx="2" ry="2" />
<text text-anchor="" x="1106.08" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (5 samples, 0.01%)</title><rect x="943.1" y="1429" width="0.1" height="15.0" fill="rgb(234,124,45)" rx="2" ry="2" />
<text text-anchor="" x="946.10" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SimpleForwardToFrontend (221 samples, 0.48%)</title><rect x="56.9" y="1509" width="5.7" height="15.0" fill="rgb(238,168,24)" rx="2" ry="2" />
<text text-anchor="" x="59.89" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (15 samples, 0.03%)</title><rect x="78.6" y="1205" width="0.4" height="15.0" fill="rgb(254,94,8)" rx="2" ry="2" />
<text text-anchor="" x="81.59" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_dest_set (162 samples, 0.35%)</title><rect x="342.3" y="1509" width="4.1" height="15.0" fill="rgb(238,58,41)" rx="2" ry="2" />
<text text-anchor="" x="345.25" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (31 samples, 0.07%)</title><rect x="390.7" y="1493" width="0.8" height="15.0" fill="rgb(220,130,12)" rx="2" ry="2" />
<text text-anchor="" x="393.68" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (15 samples, 0.03%)</title><rect x="1059.7" y="1477" width="0.4" height="15.0" fill="rgb(231,81,9)" rx="2" ry="2" />
<text text-anchor="" x="1062.74" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>extract_message (44 samples, 0.10%)</title><rect x="1056.8" y="1509" width="1.1" height="15.0" fill="rgb(228,145,46)" rx="2" ry="2" />
<text text-anchor="" x="1059.78" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_poll (18 samples, 0.04%)</title><rect x="601.9" y="1445" width="0.4" height="15.0" fill="rgb(218,217,50)" rx="2" ry="2" />
<text text-anchor="" x="604.88" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__schedule (9 samples, 0.02%)</title><rect x="1174.8" y="1573" width="0.2" height="15.0" fill="rgb(212,99,24)" rx="2" ry="2" />
<text text-anchor="" x="1177.76" y="1583.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (7 samples, 0.02%)</title><rect x="90.3" y="1461" width="0.1" height="15.0" fill="rgb(238,133,49)" rx="2" ry="2" />
<text text-anchor="" x="93.26" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent_in_current_query (16 samples, 0.03%)</title><rect x="58.8" y="1493" width="0.4" height="15.0" fill="rgb(222,165,34)" rx="2" ry="2" />
<text text-anchor="" x="61.79" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl at plt (4 samples, 0.01%)</title><rect x="498.9" y="1525" width="0.1" height="15.0" fill="rgb(249,169,36)" rx="2" ry="2" />
<text text-anchor="" x="501.86" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_file_permission (16 samples, 0.03%)</title><rect x="417.2" y="1349" width="0.4" height="15.0" fill="rgb(216,47,52)" rx="2" ry="2" />
<text text-anchor="" x="420.22" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (9 samples, 0.02%)</title><rect x="516.7" y="1509" width="0.3" height="15.0" fill="rgb(208,92,43)" rx="2" ry="2" />
<text text-anchor="" x="519.73" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>free at plt (6 samples, 0.01%)</title><rect x="830.8" y="1477" width="0.2" height="15.0" fill="rgb(241,146,35)" rx="2" ry="2" />
<text text-anchor="" x="833.83" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_rt_sigprocmask (153 samples, 0.33%)</title><rect x="108.2" y="1461" width="3.9" height="15.0" fill="rgb(245,195,41)" rx="2" ry="2" />
<text text-anchor="" x="111.15" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (7 samples, 0.02%)</title><rect x="691.2" y="1381" width="0.2" height="15.0" fill="rgb(246,73,30)" rx="2" ry="2" />
<text text-anchor="" x="694.21" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (409 samples, 0.89%)</title><rect x="276.6" y="1381" width="10.5" height="15.0" fill="rgb(209,183,1)" rx="2" ry="2" />
<text text-anchor="" x="279.59" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>system_catalog_walker (532 samples, 1.16%)</title><rect x="842.9" y="1445" width="13.7" height="15.0" fill="rgb(228,7,12)" rx="2" ry="2" />
<text text-anchor="" x="845.94" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_remove_sent_message (170 samples, 0.37%)</title><rect x="715.7" y="1477" width="4.4" height="15.0" fill="rgb(223,144,17)" rx="2" ry="2" />
<text text-anchor="" x="718.71" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpuacct_charge (6 samples, 0.01%)</title><rect x="779.0" y="1061" width="0.2" height="15.0" fill="rgb(230,130,41)" rx="2" ry="2" />
<text text-anchor="" x="782.01" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (35 samples, 0.08%)</title><rect x="453.1" y="1301" width="0.9" height="15.0" fill="rgb(216,52,47)" rx="2" ry="2" />
<text text-anchor="" x="456.13" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_head_state (96 samples, 0.21%)</title><rect x="1020.7" y="1301" width="2.4" height="15.0" fill="rgb(232,38,10)" rx="2" ry="2" />
<text text-anchor="" x="1023.66" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_session_context (18 samples, 0.04%)</title><rect x="503.4" y="1525" width="0.5" height="15.0" fill="rgb(244,22,19)" rx="2" ry="2" />
<text text-anchor="" x="506.44" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__virt_addr_valid (6 samples, 0.01%)</title><rect x="358.2" y="1269" width="0.1" height="15.0" fill="rgb(225,181,13)" rx="2" ry="2" />
<text text-anchor="" x="361.16" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>schedule_hrtimeout_range (379 samples, 0.83%)</title><rect x="277.4" y="1365" width="9.7" height="15.0" fill="rgb(206,152,21)" rx="2" ry="2" />
<text text-anchor="" x="280.36" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (15 samples, 0.03%)</title><rect x="417.2" y="1333" width="0.4" height="15.0" fill="rgb(219,131,28)" rx="2" ry="2" />
<text text-anchor="" x="420.24" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (13 samples, 0.03%)</title><rect x="323.9" y="1269" width="0.4" height="15.0" fill="rgb(253,144,25)" rx="2" ry="2" />
<text text-anchor="" x="326.95" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (5 samples, 0.01%)</title><rect x="658.0" y="1461" width="0.2" height="15.0" fill="rgb(244,57,14)" rx="2" ry="2" />
<text text-anchor="" x="661.02" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (25 samples, 0.05%)</title><rect x="507.8" y="1509" width="0.6" height="15.0" fill="rgb(244,168,33)" rx="2" ry="2" />
<text text-anchor="" x="510.79" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_select (243 samples, 0.53%)</title><rect x="690.7" y="1413" width="6.2" height="15.0" fill="rgb(220,8,21)" rx="2" ry="2" />
<text text-anchor="" x="693.67" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_syscall_64 (94 samples, 0.20%)</title><rect x="176.6" y="1477" width="2.4" height="15.0" fill="rgb(252,11,36)" rx="2" ry="2" />
<text text-anchor="" x="179.61" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_at_command_success (134 samples, 0.29%)</title><rect x="93.7" y="1509" width="3.5" height="15.0" fill="rgb(241,53,25)" rx="2" ry="2" />
<text text-anchor="" x="96.73" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (5 samples, 0.01%)</title><rect x="1081.3" y="1157" width="0.2" height="15.0" fill="rgb(241,137,48)" rx="2" ry="2" />
<text text-anchor="" x="1084.33" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_destruct_scm (19 samples, 0.04%)</title><rect x="177.8" y="1285" width="0.5" height="15.0" fill="rgb(239,157,10)" rx="2" ry="2" />
<text text-anchor="" x="180.77" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copy_user_generic_unrolled (28 samples, 0.06%)</title><rect x="454.5" y="1285" width="0.7" height="15.0" fill="rgb(221,120,15)" rx="2" ry="2" />
<text text-anchor="" x="457.49" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (94 samples, 0.20%)</title><rect x="83.7" y="1189" width="2.4" height="15.0" fill="rgb(235,168,30)" rx="2" ry="2" />
<text text-anchor="" x="86.71" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFree (11 samples, 0.02%)</title><rect x="819.8" y="1461" width="0.3" height="15.0" fill="rgb(252,129,42)" rx="2" ry="2" />
<text text-anchor="" x="822.83" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_copy_from_user (12 samples, 0.03%)</title><rect x="1104.9" y="1397" width="0.3" height="15.0" fill="rgb(251,221,4)" rx="2" ry="2" />
<text text-anchor="" x="1107.91" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (17 samples, 0.04%)</title><rect x="876.4" y="1333" width="0.5" height="15.0" fill="rgb(250,195,29)" rx="2" ry="2" />
<text text-anchor="" x="879.41" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__update_load_avg_se.isra.38 (6 samples, 0.01%)</title><rect x="282.5" y="1237" width="0.2" height="15.0" fill="rgb(232,122,40)" rx="2" ry="2" />
<text text-anchor="" x="285.53" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (20 samples, 0.04%)</title><rect x="514.3" y="1509" width="0.5" height="15.0" fill="rgb(253,67,48)" rx="2" ry="2" />
<text text-anchor="" x="517.29" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (7 samples, 0.02%)</title><rect x="88.3" y="1413" width="0.2" height="15.0" fill="rgb(235,181,35)" rx="2" ry="2" />
<text text-anchor="" x="91.33" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43,759 samples, 95.34%)</title><rect x="10.5" y="1653" width="1124.9" height="15.0" fill="rgb(231,55,13)" rx="2" ry="2" />
<text text-anchor="" x="13.46" y="1663.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >[unknown]</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_read (505 samples, 1.10%)</title><rect x="1015.1" y="1429" width="13.0" height="15.0" fill="rgb(231,26,31)" rx="2" ry="2" />
<text text-anchor="" x="1018.08" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (49 samples, 0.11%)</title><rect x="1012.4" y="1493" width="1.3" height="15.0" fill="rgb(210,81,22)" rx="2" ry="2" />
<text text-anchor="" x="1015.41" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_IO_old_init (5 samples, 0.01%)</title><rect x="1184.9" y="1605" width="0.1" height="15.0" fill="rgb(234,166,31)" rx="2" ry="2" />
<text text-anchor="" x="1187.86" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_erase_cached (7 samples, 0.02%)</title><rect x="577.1" y="1349" width="0.2" height="15.0" fill="rgb(239,75,8)" rx="2" ry="2" />
<text text-anchor="" x="580.09" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_get_major_version (4 samples, 0.01%)</title><rect x="502.9" y="1525" width="0.1" height="15.0" fill="rgb(250,96,8)" rx="2" ry="2" />
<text text-anchor="" x="505.93" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (12 samples, 0.03%)</title><rect x="410.1" y="1285" width="0.3" height="15.0" fill="rgb(251,129,53)" rx="2" ry="2" />
<text text-anchor="" x="413.09" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (4 samples, 0.01%)</title><rect x="97.9" y="1509" width="0.2" height="15.0" fill="rgb(254,33,34)" rx="2" ry="2" />
<text text-anchor="" x="100.95" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__strcmp_sse2_unaligned (8 samples, 0.02%)</title><rect x="302.1" y="1509" width="0.3" height="15.0" fill="rgb(250,222,18)" rx="2" ry="2" />
<text text-anchor="" x="305.15" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_pending_message_set_previous_message (5 samples, 0.01%)</title><rect x="663.0" y="1509" width="0.1" height="15.0" fill="rgb(249,102,20)" rx="2" ry="2" />
<text text-anchor="" x="666.01" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_poll (6 samples, 0.01%)</title><rect x="290.4" y="1397" width="0.2" height="15.0" fill="rgb(230,108,23)" rx="2" ry="2" />
<text text-anchor="" x="293.40" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SwitchToConnectionContext (4 samples, 0.01%)</title><rect x="654.9" y="1477" width="0.1" height="15.0" fill="rgb(244,18,42)" rx="2" ry="2" />
<text text-anchor="" x="657.91" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (14 samples, 0.03%)</title><rect x="942.9" y="1445" width="0.3" height="15.0" fill="rgb(246,92,45)" rx="2" ry="2" />
<text text-anchor="" x="945.87" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (32 samples, 0.07%)</title><rect x="10.7" y="197" width="0.8" height="15.0" fill="rgb(247,144,40)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>new_list (118 samples, 0.26%)</title><rect x="987.2" y="1445" width="3.0" height="15.0" fill="rgb(208,180,52)" rx="2" ry="2" />
<text text-anchor="" x="990.19" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (56 samples, 0.12%)</title><rect x="268.0" y="1461" width="1.5" height="15.0" fill="rgb(249,210,25)" rx="2" ry="2" />
<text text-anchor="" x="271.03" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sys_write (6 samples, 0.01%)</title><rect x="742.8" y="1413" width="0.2" height="15.0" fill="rgb(227,106,45)" rx="2" ry="2" />
<text text-anchor="" x="745.81" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (4 samples, 0.01%)</title><rect x="482.3" y="1109" width="0.1" height="15.0" fill="rgb(235,119,26)" rx="2" ry="2" />
<text text-anchor="" x="485.26" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_stacklen (73 samples, 0.16%)</title><rect x="630.8" y="1541" width="1.9" height="15.0" fill="rgb(205,23,9)" rx="2" ry="2" />
<text text-anchor="" x="633.80" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (4 samples, 0.01%)</title><rect x="165.4" y="1525" width="0.1" height="15.0" fill="rgb(210,192,31)" rx="2" ry="2" />
<text text-anchor="" x="168.43" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ep_poll_callback (57 samples, 0.12%)</title><rect x="252.0" y="1173" width="1.5" height="15.0" fill="rgb(215,17,5)" rx="2" ry="2" />
<text text-anchor="" x="254.99" y="1183.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (16 samples, 0.03%)</title><rect x="405.8" y="1477" width="0.4" height="15.0" fill="rgb(246,45,31)" rx="2" ry="2" />
<text text-anchor="" x="408.80" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remote_function (5 samples, 0.01%)</title><rect x="283.9" y="1221" width="0.2" height="15.0" fill="rgb(252,199,24)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1231.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rb_insert_color_cached (9 samples, 0.02%)</title><rect x="776.1" y="1061" width="0.2" height="15.0" fill="rgb(207,228,7)" rx="2" ry="2" />
<text text-anchor="" x="779.07" y="1071.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write (53 samples, 0.12%)</title><rect x="141.7" y="1509" width="1.4" height="15.0" fill="rgb(254,14,29)" rx="2" ry="2" />
<text text-anchor="" x="144.73" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (43 samples, 0.09%)</title><rect x="10.7" y="341" width="1.1" height="15.0" fill="rgb(241,147,17)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_read (785 samples, 1.71%)</title><rect x="241.9" y="1493" width="20.2" height="15.0" fill="rgb(225,122,26)" rx="2" ry="2" />
<text text-anchor="" x="244.94" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcg_kmem_get_cache (8 samples, 0.02%)</title><rect x="400.5" y="1237" width="0.2" height="15.0" fill="rgb(236,15,3)" rx="2" ry="2" />
<text text-anchor="" x="403.51" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>vfs_write (1,800 samples, 3.92%)</title><rect x="446.3" y="1413" width="46.3" height="15.0" fill="rgb(223,118,20)" rx="2" ry="2" />
<text text-anchor="" x="449.32" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >vfs_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cpumask_next (11 samples, 0.02%)</title><rect x="770.7" y="1109" width="0.3" height="15.0" fill="rgb(214,198,8)" rx="2" ry="2" />
<text text-anchor="" x="773.70" y="1119.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (14 samples, 0.03%)</title><rect x="561.2" y="1333" width="0.3" height="15.0" fill="rgb(209,187,45)" rx="2" ry="2" />
<text text-anchor="" x="564.16" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>consume_skb (208 samples, 0.45%)</title><rect x="1018.2" y="1333" width="5.3" height="15.0" fill="rgb(216,130,52)" rx="2" ry="2" />
<text text-anchor="" x="1021.19" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>palloc (58 samples, 0.13%)</title><rect x="676.6" y="1461" width="1.5" height="15.0" fill="rgb(242,30,15)" rx="2" ry="2" />
<text text-anchor="" x="679.64" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_set_query_in_progress (6 samples, 0.01%)</title><rect x="163.7" y="1525" width="0.1" height="15.0" fill="rgb(254,120,52)" rx="2" ry="2" />
<text text-anchor="" x="166.66" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_recvmsg (851 samples, 1.85%)</title><rect x="1068.1" y="1349" width="21.8" height="15.0" fill="rgb(226,201,39)" rx="2" ry="2" />
<text text-anchor="" x="1071.07" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >u..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__vfs_write (341 samples, 0.74%)</title><rect x="408.0" y="1381" width="8.8" height="15.0" fill="rgb(232,216,42)" rx="2" ry="2" />
<text text-anchor="" x="411.04" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>BindComplete (250 samples, 0.54%)</title><rect x="56.8" y="1525" width="6.4" height="15.0" fill="rgb(218,88,38)" rx="2" ry="2" />
<text text-anchor="" x="59.76" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (7 samples, 0.02%)</title><rect x="135.7" y="1493" width="0.2" height="15.0" fill="rgb(252,22,54)" rx="2" ry="2" />
<text text-anchor="" x="138.69" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_flush_it (4 samples, 0.01%)</title><rect x="791.6" y="1461" width="0.1" height="15.0" fill="rgb(245,5,22)" rx="2" ry="2" />
<text text-anchor="" x="794.55" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>system_catalog_walker (460 samples, 1.00%)</title><rect x="844.5" y="1413" width="11.9" height="15.0" fill="rgb(209,37,36)" rx="2" ry="2" />
<text text-anchor="" x="847.54" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pstrdup (4 samples, 0.01%)</title><rect x="1055.7" y="1509" width="0.1" height="15.0" fill="rgb(212,61,26)" rx="2" ry="2" />
<text text-anchor="" x="1058.70" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_wfree (242 samples, 0.53%)</title><rect x="1076.2" y="1253" width="6.2" height="15.0" fill="rgb(247,42,54)" rx="2" ry="2" />
<text text-anchor="" x="1079.16" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (10 samples, 0.02%)</title><rect x="260.0" y="1381" width="0.3" height="15.0" fill="rgb(207,106,50)" rx="2" ry="2" />
<text text-anchor="" x="263.04" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sock_write_iter (342 samples, 0.75%)</title><rect x="121.8" y="1381" width="8.8" height="15.0" fill="rgb(212,0,42)" rx="2" ry="2" />
<text text-anchor="" x="124.78" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stack_object (6 samples, 0.01%)</title><rect x="604.5" y="1445" width="0.2" height="15.0" fill="rgb(211,58,7)" rx="2" ry="2" />
<text text-anchor="" x="607.52" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (6 samples, 0.01%)</title><rect x="1109.0" y="1349" width="0.1" height="15.0" fill="rgb(231,220,0)" rx="2" ry="2" />
<text text-anchor="" x="1111.97" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>put_prev_entity (8 samples, 0.02%)</title><rect x="444.2" y="1365" width="0.2" height="15.0" fill="rgb(251,104,9)" rx="2" ry="2" />
<text text-anchor="" x="447.23" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,946 samples, 4.24%)</title><rect x="442.8" y="1461" width="50.0" height="15.0" fill="rgb(247,0,22)" rx="2" ry="2" />
<text text-anchor="" x="445.77" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >entry..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_write (33 samples, 0.07%)</title><rect x="1188.5" y="1637" width="0.9" height="15.0" fill="rgb(205,109,45)" rx="2" ry="2" />
<text text-anchor="" x="1191.51" y="1647.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_stream_sendmsg (353 samples, 0.77%)</title><rect x="321.9" y="1317" width="9.1" height="15.0" fill="rgb(250,165,46)" rx="2" ry="2" />
<text text-anchor="" x="324.89" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (12 samples, 0.03%)</title><rect x="1006.4" y="1413" width="0.4" height="15.0" fill="rgb(238,109,24)" rx="2" ry="2" />
<text text-anchor="" x="1009.44" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (17 samples, 0.04%)</title><rect x="211.1" y="1493" width="0.5" height="15.0" fill="rgb(239,205,11)" rx="2" ry="2" />
<text text-anchor="" x="214.14" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memset_avx2_unaligned_erms (7 samples, 0.02%)</title><rect x="182.1" y="1509" width="0.1" height="15.0" fill="rgb(242,27,21)" rx="2" ry="2" />
<text text-anchor="" x="185.06" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>raw_expression_tree_walker (632 samples, 1.38%)</title><rect x="867.2" y="1461" width="16.2" height="15.0" fill="rgb(251,189,54)" rx="2" ry="2" />
<text text-anchor="" x="870.16" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent (4 samples, 0.01%)</title><rect x="688.6" y="1461" width="0.1" height="15.0" fill="rgb(209,179,31)" rx="2" ry="2" />
<text text-anchor="" x="691.64" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (10 samples, 0.02%)</title><rect x="820.9" y="1477" width="0.2" height="15.0" fill="rgb(221,1,43)" rx="2" ry="2" />
<text text-anchor="" x="823.88" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>read_kind_from_backend (1,340 samples, 2.92%)</title><rect x="663.8" y="1509" width="34.4" height="15.0" fill="rgb(243,111,33)" rx="2" ry="2" />
<text text-anchor="" x="666.78" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >re..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>SwitchToConnectionContext (6 samples, 0.01%)</title><rect x="510.8" y="1509" width="0.1" height="15.0" fill="rgb(214,148,18)" rx="2" ry="2" />
<text text-anchor="" x="513.77" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>ReadyForQuery (6 samples, 0.01%)</title><rect x="517.5" y="1541" width="0.2" height="15.0" fill="rgb(233,66,52)" rx="2" ry="2" />
<text text-anchor="" x="520.53" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (4 samples, 0.01%)</title><rect x="672.0" y="1445" width="0.1" height="15.0" fill="rgb(229,118,46)" rx="2" ry="2" />
<text text-anchor="" x="674.96" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>remove_wait_queue (5 samples, 0.01%)</title><rect x="585.9" y="1445" width="0.2" height="15.0" fill="rgb(241,38,45)" rx="2" ry="2" />
<text text-anchor="" x="588.94" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_sync_key (82 samples, 0.18%)</title><rect x="739.3" y="1269" width="2.1" height="15.0" fill="rgb(232,206,14)" rx="2" ry="2" />
<text text-anchor="" x="742.29" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>lappend (26 samples, 0.06%)</title><rect x="339.4" y="1493" width="0.7" height="15.0" fill="rgb(248,161,46)" rx="2" ry="2" />
<text text-anchor="" x="342.45" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>function_call_walker (55 samples, 0.12%)</title><rect x="840.4" y="1413" width="1.4" height="15.0" fill="rgb(227,143,26)" rx="2" ry="2" />
<text text-anchor="" x="843.42" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetFreeIndex (5 samples, 0.01%)</title><rect x="984.4" y="1365" width="0.1" height="15.0" fill="rgb(248,127,42)" rx="2" ry="2" />
<text text-anchor="" x="987.41" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (9 samples, 0.02%)</title><rect x="614.4" y="1541" width="0.3" height="15.0" fill="rgb(210,154,11)" rx="2" ry="2" />
<text text-anchor="" x="617.42" y="1551.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_wait_queue (6 samples, 0.01%)</title><rect x="233.5" y="1349" width="0.2" height="15.0" fill="rgb(250,55,16)" rx="2" ry="2" />
<text text-anchor="" x="236.51" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fget_light (9 samples, 0.02%)</title><rect x="1046.9" y="1381" width="0.2" height="15.0" fill="rgb(212,107,50)" rx="2" ry="2" />
<text text-anchor="" x="1049.86" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (42 samples, 0.09%)</title><rect x="414.9" y="1253" width="1.1" height="15.0" fill="rgb(253,126,8)" rx="2" ry="2" />
<text text-anchor="" x="417.88" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (19 samples, 0.04%)</title><rect x="482.7" y="1093" width="0.5" height="15.0" fill="rgb(237,75,17)" rx="2" ry="2" />
<text text-anchor="" x="485.69" y="1103.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (7 samples, 0.02%)</title><rect x="677.9" y="1445" width="0.2" height="15.0" fill="rgb(250,90,19)" rx="2" ry="2" />
<text text-anchor="" x="680.95" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dump_sent_message (5 samples, 0.01%)</title><rect x="307.6" y="1461" width="0.1" height="15.0" fill="rgb(220,167,34)" rx="2" ry="2" />
<text text-anchor="" x="310.60" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="90.9" y="1429" width="0.1" height="15.0" fill="rgb(254,174,10)" rx="2" ry="2" />
<text text-anchor="" x="93.85" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_query_in_progress (15 samples, 0.03%)</title><rect x="313.2" y="1445" width="0.4" height="15.0" fill="rgb(206,187,42)" rx="2" ry="2" />
<text text-anchor="" x="316.20" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>poll_schedule_timeout (18 samples, 0.04%)</title><rect x="602.5" y="1461" width="0.4" height="15.0" fill="rgb(235,101,45)" rx="2" ry="2" />
<text text-anchor="" x="605.47" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (50 samples, 0.11%)</title><rect x="10.7" y="597" width="1.3" height="15.0" fill="rgb(247,96,2)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>cmpxchg_double_slab.isra.61 (6 samples, 0.01%)</title><rect x="1020.5" y="1237" width="0.1" height="15.0" fill="rgb(249,98,41)" rx="2" ry="2" />
<text text-anchor="" x="1023.48" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rw_verify_area (7 samples, 0.02%)</title><rect x="178.8" y="1429" width="0.2" height="15.0" fill="rgb(243,215,9)" rx="2" ry="2" />
<text text-anchor="" x="181.82" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock (11 samples, 0.02%)</title><rect x="246.6" y="1317" width="0.3" height="15.0" fill="rgb(205,18,39)" rx="2" ry="2" />
<text text-anchor="" x="249.62" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (16 samples, 0.03%)</title><rect x="798.4" y="1429" width="0.5" height="15.0" fill="rgb(224,102,45)" rx="2" ry="2" />
<text text-anchor="" x="801.44" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_queue_tail (16 samples, 0.03%)</title><rect x="754.9" y="1285" width="0.4" height="15.0" fill="rgb(240,44,17)" rx="2" ry="2" />
<text text-anchor="" x="757.87" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__wake_up_common (60 samples, 0.13%)</title><rect x="739.4" y="1237" width="1.6" height="15.0" fill="rgb(233,28,50)" rx="2" ry="2" />
<text text-anchor="" x="742.44" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unlogged_table_walker (506 samples, 1.10%)</title><rect x="870.1" y="1413" width="13.0" height="15.0" fill="rgb(205,100,27)" rx="2" ry="2" />
<text text-anchor="" x="873.11" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>is_log_level_output (5 samples, 0.01%)</title><rect x="876.7" y="1317" width="0.2" height="15.0" fill="rgb(242,94,23)" rx="2" ry="2" />
<text text-anchor="" x="879.72" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (18 samples, 0.04%)</title><rect x="141.0" y="1493" width="0.4" height="15.0" fill="rgb(254,169,47)" rx="2" ry="2" />
<text text-anchor="" x="143.96" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 0.10%)</title><rect x="729.3" y="1429" width="1.2" height="15.0" fill="rgb(205,146,52)" rx="2" ry="2" />
<text text-anchor="" x="732.34" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__fdget_pos (13 samples, 0.03%)</title><rect x="319.8" y="1397" width="0.3" height="15.0" fill="rgb(251,124,7)" rx="2" ry="2" />
<text text-anchor="" x="322.76" y="1407.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (826 samples, 1.80%)</title><rect x="466.2" y="1189" width="21.2" height="15.0" fill="rgb(214,112,2)" rx="2" ry="2" />
<text text-anchor="" x="469.19" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_virtual_master_db_node_id (32 samples, 0.07%)</title><rect x="382.1" y="1509" width="0.8" height="15.0" fill="rgb(221,143,42)" rx="2" ry="2" />
<text text-anchor="" x="385.07" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="851.6" y="1333" width="0.1" height="15.0" fill="rgb(230,116,46)" rx="2" ry="2" />
<text text-anchor="" x="854.60" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_read (7 samples, 0.02%)</title><rect x="1122.9" y="1525" width="0.2" height="15.0" fill="rgb(212,59,32)" rx="2" ry="2" />
<text text-anchor="" x="1125.88" y="1535.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (7 samples, 0.02%)</title><rect x="488.9" y="1237" width="0.2" height="15.0" fill="rgb(231,157,6)" rx="2" ry="2" />
<text text-anchor="" x="491.89" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (145 samples, 0.32%)</title><rect x="579.8" y="1365" width="3.7" height="15.0" fill="rgb(211,199,1)" rx="2" ry="2" />
<text text-anchor="" x="582.79" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__pollwait (10 samples, 0.02%)</title><rect x="233.4" y="1365" width="0.3" height="15.0" fill="rgb(250,215,33)" rx="2" ry="2" />
<text text-anchor="" x="236.40" y="1375.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (12 samples, 0.03%)</title><rect x="369.4" y="1461" width="0.3" height="15.0" fill="rgb(205,50,39)" rx="2" ry="2" />
<text text-anchor="" x="372.37" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (5 samples, 0.01%)</title><rect x="253.6" y="1189" width="0.2" height="15.0" fill="rgb(219,205,29)" rx="2" ry="2" />
<text text-anchor="" x="256.64" y="1199.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>x86_pmu_enable (5 samples, 0.01%)</title><rect x="283.9" y="1157" width="0.2" height="15.0" fill="rgb(211,24,7)" rx="2" ry="2" />
<text text-anchor="" x="286.95" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>common_file_perm (6 samples, 0.01%)</title><rect x="131.5" y="1381" width="0.2" height="15.0" fill="rgb(250,151,48)" rx="2" ry="2" />
<text text-anchor="" x="134.52" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>unix_scm_to_skb (5 samples, 0.01%)</title><rect x="86.4" y="1285" width="0.2" height="15.0" fill="rgb(224,147,18)" rx="2" ry="2" />
<text text-anchor="" x="89.43" y="1295.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>write at plt (11 samples, 0.02%)</title><rect x="791.3" y="1445" width="0.3" height="15.0" fill="rgb(224,179,2)" rx="2" ry="2" />
<text text-anchor="" x="794.27" y="1455.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (37 samples, 0.08%)</title><rect x="341.1" y="1477" width="1.0" height="15.0" fill="rgb(241,57,2)" rx="2" ry="2" />
<text text-anchor="" x="344.12" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (12 samples, 0.03%)</title><rect x="142.8" y="1477" width="0.3" height="15.0" fill="rgb(250,46,39)" rx="2" ry="2" />
<text text-anchor="" x="145.78" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>add_wait_queue (16 samples, 0.03%)</title><rect x="289.3" y="1333" width="0.4" height="15.0" fill="rgb(209,88,35)" rx="2" ry="2" />
<text text-anchor="" x="292.32" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_unset_doing_extended_query_message (7 samples, 0.02%)</title><rect x="1055.2" y="1509" width="0.1" height="15.0" fill="rgb(251,116,50)" rx="2" ry="2" />
<text text-anchor="" x="1058.16" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>exit_to_usermode_loop (50 samples, 0.11%)</title><rect x="443.5" y="1429" width="1.3" height="15.0" fill="rgb(214,105,16)" rx="2" ry="2" />
<text text-anchor="" x="446.52" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (14 samples, 0.03%)</title><rect x="10.7" y="69" width="0.4" height="15.0" fill="rgb(239,132,17)" rx="2" ry="2" />
<text text-anchor="" x="13.69" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_lock_irqsave (31 samples, 0.07%)</title><rect x="784.7" y="1205" width="0.8" height="15.0" fill="rgb(232,190,26)" rx="2" ry="2" />
<text text-anchor="" x="787.74" y="1215.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>copyout (4 samples, 0.01%)</title><rect x="257.7" y="1269" width="0.1" height="15.0" fill="rgb(220,156,53)" rx="2" ry="2" />
<text text-anchor="" x="260.67" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>can_query_context_destroy (21 samples, 0.05%)</title><rect x="307.1" y="1461" width="0.5" height="15.0" fill="rgb(227,0,3)" rx="2" ry="2" />
<text text-anchor="" x="310.06" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>switch_mm_irqs_off (26 samples, 0.06%)</title><rect x="285.9" y="1301" width="0.7" height="15.0" fill="rgb(219,218,42)" rx="2" ry="2" />
<text text-anchor="" x="288.90" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_after_hwframe (1,672 samples, 3.64%)</title><rect x="746.5" y="1429" width="43.0" height="15.0" fill="rgb(207,141,53)" rx="2" ry="2" />
<text text-anchor="" x="749.48" y="1439.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >entr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>wait_for_unix_gc (8 samples, 0.02%)</title><rect x="130.2" y="1333" width="0.2" height="15.0" fill="rgb(241,100,49)" rx="2" ry="2" />
<text text-anchor="" x="133.21" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc_skb_with_frags (107 samples, 0.23%)</title><rect x="736.1" y="1269" width="2.7" height="15.0" fill="rgb(250,19,2)" rx="2" ry="2" />
<text text-anchor="" x="739.07" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (48 samples, 0.10%)</title><rect x="61.3" y="1477" width="1.3" height="15.0" fill="rgb(210,186,21)" rx="2" ry="2" />
<text text-anchor="" x="64.34" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_query_in_progress (5 samples, 0.01%)</title><rect x="353.5" y="1477" width="0.2" height="15.0" fill="rgb(238,124,32)" rx="2" ry="2" />
<text text-anchor="" x="356.54" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (6 samples, 0.01%)</title><rect x="852.2" y="1349" width="0.2" height="15.0" fill="rgb(254,174,51)" rx="2" ry="2" />
<text text-anchor="" x="855.20" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>security_file_permission (43 samples, 0.09%)</title><rect x="788.2" y="1349" width="1.1" height="15.0" fill="rgb(233,197,3)" rx="2" ry="2" />
<text text-anchor="" x="791.18" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_heap_object (14 samples, 0.03%)</title><rect x="256.1" y="1269" width="0.3" height="15.0" fill="rgb(243,172,2)" rx="2" ry="2" />
<text text-anchor="" x="259.08" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>malloc (16 samples, 0.03%)</title><rect x="220.9" y="1461" width="0.4" height="15.0" fill="rgb(219,136,44)" rx="2" ry="2" />
<text text-anchor="" x="223.93" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>entry_SYSCALL_64_stage2 (6 samples, 0.01%)</title><rect x="1033.1" y="1493" width="0.2" height="15.0" fill="rgb(207,225,0)" rx="2" ry="2" />
<text text-anchor="" x="1036.13" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>errstart (5 samples, 0.01%)</title><rect x="725.6" y="1477" width="0.1" height="15.0" fill="rgb(239,72,24)" rx="2" ry="2" />
<text text-anchor="" x="728.56" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_raw_spin_unlock_irqrestore (5 samples, 0.01%)</title><rect x="255.5" y="1301" width="0.1" height="15.0" fill="rgb(215,48,26)" rx="2" ry="2" />
<text text-anchor="" x="258.49" y="1311.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>update_curr (14 samples, 0.03%)</title><rect x="693.7" y="1237" width="0.3" height="15.0" fill="rgb(216,52,38)" rx="2" ry="2" />
<text text-anchor="" x="696.65" y="1247.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>account_entity_dequeue (4 samples, 0.01%)</title><rect x="279.7" y="1269" width="0.1" height="15.0" fill="rgb(208,24,1)" rx="2" ry="2" />
<text text-anchor="" x="282.70" y="1279.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>AllocSetAlloc (4 samples, 0.01%)</title><rect x="205.7" y="1477" width="0.1" height="15.0" fill="rgb(235,100,54)" rx="2" ry="2" />
<text text-anchor="" x="208.66" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__select (8 samples, 0.02%)</title><rect x="12.8" y="1605" width="0.2" height="15.0" fill="rgb(224,49,23)" rx="2" ry="2" />
<text text-anchor="" x="15.83" y="1615.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__errno_location (30 samples, 0.07%)</title><rect x="1039.7" y="1493" width="0.8" height="15.0" fill="rgb(215,210,37)" rx="2" ry="2" />
<text text-anchor="" x="1042.74" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_and_flush (940 samples, 2.05%)</title><rect x="66.8" y="1477" width="24.2" height="15.0" fill="rgb(226,227,33)" rx="2" ry="2" />
<text text-anchor="" x="69.84" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >p..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__check_object_size (6 samples, 0.01%)</title><rect x="231.8" y="1413" width="0.2" height="15.0" fill="rgb(222,110,20)" rx="2" ry="2" />
<text text-anchor="" x="234.81" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>load_new_mm_cr3 (6 samples, 0.01%)</title><rect x="12.6" y="1413" width="0.2" height="15.0" fill="rgb(207,206,39)" rx="2" ry="2" />
<text text-anchor="" x="15.62" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>apparmor_socket_recvmsg (4 samples, 0.01%)</title><rect x="244.9" y="1349" width="0.1" height="15.0" fill="rgb(205,213,39)" rx="2" ry="2" />
<text text-anchor="" x="247.87" y="1359.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_write_noerror (10 samples, 0.02%)</title><rect x="100.6" y="1477" width="0.3" height="15.0" fill="rgb(209,59,43)" rx="2" ry="2" />
<text text-anchor="" x="103.62" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memset_erms (19 samples, 0.04%)</title><rect x="290.6" y="1413" width="0.5" height="15.0" fill="rgb(232,61,30)" rx="2" ry="2" />
<text text-anchor="" x="293.60" y="1423.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pfree (36 samples, 0.08%)</title><rect x="224.0" y="1477" width="0.9" height="15.0" fill="rgb(221,5,54)" rx="2" ry="2" />
<text text-anchor="" x="226.99" y="1487.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>dequeue_entity (24 samples, 0.05%)</title><rect x="693.5" y="1253" width="0.6" height="15.0" fill="rgb(219,73,6)" rx="2" ry="2" />
<text text-anchor="" x="696.50" y="1263.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memmove at plt (4 samples, 0.01%)</title><rect x="1052.8" y="1493" width="0.2" height="15.0" fill="rgb(226,157,31)" rx="2" ry="2" />
<text text-anchor="" x="1055.85" y="1503.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>aa_file_perm (14 samples, 0.03%)</title><rect x="492.2" y="1333" width="0.3" height="15.0" fill="rgb(207,36,23)" rx="2" ry="2" />
<text text-anchor="" x="495.18" y="1343.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>check_stack_object (4 samples, 0.01%)</title><rect x="271.5" y="1381" width="0.1" height="15.0" fill="rgb(234,203,14)" rx="2" ry="2" />
<text text-anchor="" x="274.45" y="1391.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>pool_is_node_to_be_sent (13 samples, 0.03%)</title><rect x="727.7" y="1461" width="0.3" height="15.0" fill="rgb(238,106,37)" rx="2" ry="2" />
<text text-anchor="" x="730.69" y="1471.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>htonl (10 samples, 0.02%)</title><rect x="62.7" y="1509" width="0.2" height="15.0" fill="rgb(207,227,50)" rx="2" ry="2" />
<text text-anchor="" x="65.65" y="1519.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>skb_release_all (31 samples, 0.07%)</title><rect x="177.5" y="1317" width="0.8" height="15.0" fill="rgb(215,56,27)" rx="2" ry="2" />
<text text-anchor="" x="180.51" y="1327.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>try_to_wake_up (21 samples, 0.05%)</title><rect x="740.1" y="1157" width="0.5" height="15.0" fill="rgb(208,228,10)" rx="2" ry="2" />
<text text-anchor="" x="743.11" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>activate_task (365 samples, 0.80%)</title><rect x="473.9" y="1157" width="9.4" height="15.0" fill="rgb(240,91,1)" rx="2" ry="2" />
<text text-anchor="" x="476.90" y="1167.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
</g>
</svg>


More information about the pgpool-hackers mailing list