Project

General

Profile

Bug #4136 » perf-kernel.svg

pespin, 08/02/2019 01:24 PM

 
1
<?xml version="1.0" standalone="no"?>
2
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
<svg version="1.1" width="1200" height="406" onload="init(evt)" viewBox="0 0 1200 406" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
5
<!-- NOTES:  -->
6
<defs >
7
	<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
8
		<stop stop-color="#eeeeee" offset="5%" />
9
		<stop stop-color="#eeeeb0" offset="95%" />
10
	</linearGradient>
11
</defs>
12
<style type="text/css">
13
	.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
14
</style>
15
<script type="text/ecmascript">
16
<![CDATA[
17
	var details, searchbtn, matchedtxt, svg;
18
	function init(evt) {
19
		details = document.getElementById("details").firstChild;
20
		searchbtn = document.getElementById("search");
21
		matchedtxt = document.getElementById("matched");
22
		svg = document.getElementsByTagName("svg")[0];
23
		searching = 0;
24
	}
25

    
26
	// mouse-over for info
27
	function s(node) {		// show
28
		info = g_to_text(node);
29
		details.nodeValue = "Function: " + info;
30
	}
31
	function c() {			// clear
32
		details.nodeValue = ' ';
33
	}
34

    
35
	// ctrl-F for search
36
	window.addEventListener("keydown",function (e) {
37
		if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
38
			e.preventDefault();
39
			search_prompt();
40
		}
41
	})
42

    
43
	// functions
44
	function find_child(parent, name, attr) {
45
		var children = parent.childNodes;
46
		for (var i=0; i<children.length;i++) {
47
			if (children[i].tagName == name)
48
				return (attr != undefined) ? children[i].attributes[attr].value : children[i];
49
		}
50
		return;
51
	}
52
	function orig_save(e, attr, val) {
53
		if (e.attributes["_orig_"+attr] != undefined) return;
54
		if (e.attributes[attr] == undefined) return;
55
		if (val == undefined) val = e.attributes[attr].value;
56
		e.setAttribute("_orig_"+attr, val);
57
	}
58
	function orig_load(e, attr) {
59
		if (e.attributes["_orig_"+attr] == undefined) return;
60
		e.attributes[attr].value = e.attributes["_orig_"+attr].value;
61
		e.removeAttribute("_orig_"+attr);
62
	}
63
	function g_to_text(e) {
64
		var text = find_child(e, "title").firstChild.nodeValue;
65
		return (text)
66
	}
67
	function g_to_func(e) {
68
		var func = g_to_text(e);
69
		// if there's any manipulation we want to do to the function
70
		// name before it's searched, do it here before returning.
71
		return (func);
72
	}
73
	function update_text(e) {
74
		var r = find_child(e, "rect");
75
		var t = find_child(e, "text");
76
		var w = parseFloat(r.attributes["width"].value) -3;
77
		var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
78
		t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
79

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

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

    
91
		for (var x=txt.length-2; x>0; x--) {
92
			if (t.getSubStringLength(0, x+2) <= w) {
93
				t.textContent = txt.substring(0,x) + "..";
94
				return;
95
			}
96
		}
97
		t.textContent = "";
98
	}
99

    
100
	// zoom
101
	function zoom_reset(e) {
102
		if (e.attributes != undefined) {
103
			orig_load(e, "x");
104
			orig_load(e, "width");
105
		}
106
		if (e.childNodes == undefined) return;
107
		for(var i=0, c=e.childNodes; i<c.length; i++) {
108
			zoom_reset(c[i]);
109
		}
110
	}
111
	function zoom_child(e, x, ratio) {
112
		if (e.attributes != undefined) {
113
			if (e.attributes["x"] != undefined) {
114
				orig_save(e, "x");
115
				e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
116
				if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
117
			}
118
			if (e.attributes["width"] != undefined) {
119
				orig_save(e, "width");
120
				e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
121
			}
122
		}
123

    
124
		if (e.childNodes == undefined) return;
125
		for(var i=0, c=e.childNodes; i<c.length; i++) {
126
			zoom_child(c[i], x-10, ratio);
127
		}
128
	}
129
	function zoom_parent(e) {
130
		if (e.attributes) {
131
			if (e.attributes["x"] != undefined) {
132
				orig_save(e, "x");
133
				e.attributes["x"].value = 10;
134
			}
135
			if (e.attributes["width"] != undefined) {
136
				orig_save(e, "width");
137
				e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
138
			}
139
		}
140
		if (e.childNodes == undefined) return;
141
		for(var i=0, c=e.childNodes; i<c.length; i++) {
142
			zoom_parent(c[i]);
143
		}
144
	}
145
	function zoom(node) {
146
		var attr = find_child(node, "rect").attributes;
147
		var width = parseFloat(attr["width"].value);
148
		var xmin = parseFloat(attr["x"].value);
149
		var xmax = parseFloat(xmin + width);
150
		var ymin = parseFloat(attr["y"].value);
151
		var ratio = (svg.width.baseVal.value - 2*10) / width;
152

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

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

    
159
		var el = document.getElementsByTagName("g");
160
		for(var i=0;i<el.length;i++){
161
			var e = el[i];
162
			var a = find_child(e, "rect").attributes;
163
			var ex = parseFloat(a["x"].value);
164
			var ew = parseFloat(a["width"].value);
165
			// Is it an ancestor
166
			if (0 == 0) {
167
				var upstack = parseFloat(a["y"].value) > ymin;
168
			} else {
169
				var upstack = parseFloat(a["y"].value) < ymin;
170
			}
171
			if (upstack) {
172
				// Direct ancestor
173
				if (ex <= xmin && (ex+ew+fudge) >= xmax) {
174
					e.style["opacity"] = "0.5";
175
					zoom_parent(e);
176
					e.onclick = function(e){unzoom(); zoom(this);};
177
					update_text(e);
178
				}
179
				// not in current path
180
				else
181
					e.style["display"] = "none";
182
			}
183
			// Children maybe
184
			else {
185
				// no common path
186
				if (ex < xmin || ex + fudge >= xmax) {
187
					e.style["display"] = "none";
188
				}
189
				else {
190
					zoom_child(e, xmin, ratio);
191
					e.onclick = function(e){zoom(this);};
192
					update_text(e);
193
				}
194
			}
195
		}
196
	}
197
	function unzoom() {
198
		var unzoombtn = document.getElementById("unzoom");
199
		unzoombtn.style["opacity"] = "0.0";
200

    
201
		var el = document.getElementsByTagName("g");
202
		for(i=0;i<el.length;i++) {
203
			el[i].style["display"] = "block";
204
			el[i].style["opacity"] = "1";
205
			zoom_reset(el[i]);
206
			update_text(el[i]);
207
		}
208
	}
209

    
210
	// search
211
	function reset_search() {
212
		var el = document.getElementsByTagName("rect");
213
		for (var i=0; i < el.length; i++) {
214
			orig_load(el[i], "fill")
215
		}
216
	}
217
	function search_prompt() {
218
		if (!searching) {
219
			var term = prompt("Enter a search term (regexp " +
220
			    "allowed, eg: ^ext4_)", "");
221
			if (term != null) {
222
				search(term)
223
			}
224
		} else {
225
			reset_search();
226
			searching = 0;
227
			searchbtn.style["opacity"] = "0.1";
228
			searchbtn.firstChild.nodeValue = "Search"
229
			matchedtxt.style["opacity"] = "0.0";
230
			matchedtxt.firstChild.nodeValue = ""
231
		}
232
	}
233
	function search(term) {
234
		var re = new RegExp(term);
235
		var el = document.getElementsByTagName("g");
236
		var matches = new Object();
237
		var maxwidth = 0;
238
		for (var i = 0; i < el.length; i++) {
239
			var e = el[i];
240
			if (e.attributes["class"].value != "func_g")
241
				continue;
242
			var func = g_to_func(e);
243
			var rect = find_child(e, "rect");
244
			if (rect == null) {
245
				// the rect might be wrapped in an anchor
246
				// if nameattr href is being used
247
				if (rect = find_child(e, "a")) {
248
				    rect = find_child(r, "rect");
249
				}
250
			}
251
			if (func == null || rect == null)
252
				continue;
253

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

    
259
			if (func.match(re)) {
260
				// highlight
261
				var x = parseFloat(rect.attributes["x"].value);
262
				orig_save(rect, "fill");
263
				rect.attributes["fill"].value =
264
				    "rgb(230,0,230)";
265

    
266
				// remember matches
267
				if (matches[x] == undefined) {
268
					matches[x] = w;
269
				} else {
270
					if (w > matches[x]) {
271
						// overwrite with parent
272
						matches[x] = w;
273
					}
274
				}
275
				searching = 1;
276
			}
277
		}
278
		if (!searching)
279
			return;
280

    
281
		searchbtn.style["opacity"] = "1.0";
282
		searchbtn.firstChild.nodeValue = "Reset Search"
283

    
284
		// calculate percent matched, excluding vertical overlap
285
		var count = 0;
286
		var lastx = -1;
287
		var lastw = 0;
288
		var keys = Array();
289
		for (k in matches) {
290
			if (matches.hasOwnProperty(k))
291
				keys.push(k);
292
		}
293
		// sort the matched frames by their x location
294
		// ascending, then width descending
295
		keys.sort(function(a, b){
296
			return a - b;
297
		});
298
		// Step through frames saving only the biggest bottom-up frames
299
		// thanks to the sort order. This relies on the tree property
300
		// where children are always smaller than their parents.
301
		var fudge = 0.0001;	// JavaScript floating point
302
		for (var k in keys) {
303
			var x = parseFloat(keys[k]);
304
			var w = matches[keys[k]];
305
			if (x >= lastx + lastw - fudge) {
306
				count += w;
307
				lastx = x;
308
				lastw = w;
309
			}
310
		}
311
		// display matched percent
312
		matchedtxt.style["opacity"] = "1.0";
313
		pct = 100 * count / maxwidth;
314
		if (pct == 100)
315
			pct = "100"
316
		else
317
			pct = pct.toFixed(1)
318
		matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
319
	}
320
	function searchover(e) {
321
		searchbtn.style["opacity"] = "1.0";
322
	}
323
	function searchout(e) {
324
		if (searching) {
325
			searchbtn.style["opacity"] = "1.0";
326
		} else {
327
			searchbtn.style["opacity"] = "0.1";
328
		}
329
	}
330
]]>
331
</script>
332
<rect x="0.0" y="0" width="1200.0" height="406.0" fill="url(#background)"  />
333
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)"  >Flame Graph</text>
334
<text text-anchor="" x="10.00" y="389" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
335
<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>
336
<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>
337
<text text-anchor="" x="1090.00" y="389" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
338
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
339
<title>libusb_ref_device (3 samples, 0.01%)</title><rect x="1137.6" y="309" width="0.1" height="15.0" fill="rgb(250,137,7)" rx="2" ry="2" />
340
<text text-anchor="" x="1140.57" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
341
</g>
342
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
343
<title>preempt_count_sub (30 samples, 0.09%)</title><rect x="458.0" y="117" width="1.0" height="15.0" fill="rgb(240,71,46)" rx="2" ry="2" />
344
<text text-anchor="" x="460.99" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
345
</g>
346
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
347
<title>timerqueue_add (8 samples, 0.02%)</title><rect x="1111.3" y="165" width="0.2" height="15.0" fill="rgb(212,46,20)" rx="2" ry="2" />
348
<text text-anchor="" x="1114.27" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
349
</g>
350
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
351
<title>native_write_msr (18 samples, 0.05%)</title><rect x="16.1" y="213" width="0.7" height="15.0" fill="rgb(211,195,49)" rx="2" ry="2" />
352
<text text-anchor="" x="19.14" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
353
</g>
354
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
355
<title>pick_next_task_fair (18 samples, 0.05%)</title><rect x="1146.1" y="165" width="0.7" height="15.0" fill="rgb(224,16,31)" rx="2" ry="2" />
356
<text text-anchor="" x="1149.14" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
357
</g>
358
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
359
<title>__this_cpu_preempt_check (12 samples, 0.03%)</title><rect x="550.5" y="69" width="0.4" height="15.0" fill="rgb(234,99,52)" rx="2" ry="2" />
360
<text text-anchor="" x="553.54" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
361
</g>
362
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
363
<title>_dl_sysdep_start (3 samples, 0.01%)</title><rect x="1188.1" y="309" width="0.1" height="15.0" fill="rgb(234,185,35)" rx="2" ry="2" />
364
<text text-anchor="" x="1191.08" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
365
</g>
366
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
367
<title>lockref_put_return (158 samples, 0.46%)</title><rect x="943.1" y="197" width="5.4" height="15.0" fill="rgb(246,80,13)" rx="2" ry="2" />
368
<text text-anchor="" x="946.08" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
369
</g>
370
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
371
<title>hash_futex (3 samples, 0.01%)</title><rect x="1175.7" y="229" width="0.1" height="15.0" fill="rgb(246,67,27)" rx="2" ry="2" />
372
<text text-anchor="" x="1178.67" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
373
</g>
374
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
375
<title>_int_free (15 samples, 0.04%)</title><rect x="1136.1" y="309" width="0.5" height="15.0" fill="rgb(231,44,7)" rx="2" ry="2" />
376
<text text-anchor="" x="1139.13" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
377
</g>
378
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
379
<title>_raw_spin_unlock (47 samples, 0.14%)</title><rect x="396.9" y="197" width="1.6" height="15.0" fill="rgb(222,28,40)" rx="2" ry="2" />
380
<text text-anchor="" x="399.92" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
381
</g>
382
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
383
<title>__clock_gettime (8 samples, 0.02%)</title><rect x="1172.8" y="325" width="0.3" height="15.0" fill="rgb(205,64,33)" rx="2" ry="2" />
384
<text text-anchor="" x="1175.82" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
385
</g>
386
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
387
<title>[libLimeSuite.so.19.04.0] (4 samples, 0.01%)</title><rect x="1178.9" y="309" width="0.1" height="15.0" fill="rgb(226,41,9)" rx="2" ry="2" />
388
<text text-anchor="" x="1181.86" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
389
</g>
390
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
391
<title>hrtimer_interrupt (5 samples, 0.01%)</title><rect x="38.8" y="261" width="0.2" height="15.0" fill="rgb(219,80,10)" rx="2" ry="2" />
392
<text text-anchor="" x="41.84" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
393
</g>
394
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
395
<title>__slab_alloc.isra.0 (245 samples, 0.71%)</title><rect x="468.9" y="149" width="8.4" height="15.0" fill="rgb(213,177,0)" rx="2" ry="2" />
396
<text text-anchor="" x="471.93" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
397
</g>
398
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
399
<title>entry_SYSCALL_64_after_hwframe (157 samples, 0.46%)</title><rect x="1152.1" y="293" width="5.4" height="15.0" fill="rgb(210,208,29)" rx="2" ry="2" />
400
<text text-anchor="" x="1155.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
401
</g>
402
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
403
<title>get_page_from_freelist (25 samples, 0.07%)</title><rect x="473.5" y="85" width="0.8" height="15.0" fill="rgb(220,215,43)" rx="2" ry="2" />
404
<text text-anchor="" x="476.49" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
405
</g>
406
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
407
<title>syscall_slow_exit_work (14 samples, 0.04%)</title><rect x="1120.0" y="261" width="0.5" height="15.0" fill="rgb(229,171,52)" rx="2" ry="2" />
408
<text text-anchor="" x="1122.98" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
409
</g>
410
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
411
<title>do_execve (6 samples, 0.02%)</title><rect x="1187.1" y="261" width="0.2" height="15.0" fill="rgb(211,198,32)" rx="2" ry="2" />
412
<text text-anchor="" x="1190.09" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
413
</g>
414
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
415
<title>thermal_interrupt (4 samples, 0.01%)</title><rect x="1103.0" y="293" width="0.1" height="15.0" fill="rgb(222,85,14)" rx="2" ry="2" />
416
<text text-anchor="" x="1106.01" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
417
</g>
418
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
419
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1173.1" y="277" width="0.1" height="15.0" fill="rgb(229,140,4)" rx="2" ry="2" />
420
<text text-anchor="" x="1176.13" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
421
</g>
422
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
423
<title>pick_next_task_rt (37 samples, 0.11%)</title><rect x="1147.0" y="165" width="1.2" height="15.0" fill="rgb(252,46,20)" rx="2" ry="2" />
424
<text text-anchor="" x="1149.97" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
425
</g>
426
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
427
<title>lock_sock_nested (399 samples, 1.16%)</title><rect x="335.6" y="197" width="13.7" height="15.0" fill="rgb(253,134,20)" rx="2" ry="2" />
428
<text text-anchor="" x="338.65" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
429
</g>
430
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
431
<title>__inc_numa_state (6 samples, 0.02%)</title><rect x="543.1" y="53" width="0.2" height="15.0" fill="rgb(237,208,34)" rx="2" ry="2" />
432
<text text-anchor="" x="546.06" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
433
</g>
434
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
435
<title>__libc_disable_asynccancel (5 samples, 0.01%)</title><rect x="1103.2" y="309" width="0.2" height="15.0" fill="rgb(223,188,25)" rx="2" ry="2" />
436
<text text-anchor="" x="1106.21" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
437
</g>
438
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
439
<title>usbdev_ioctl (246 samples, 0.71%)</title><rect x="1162.4" y="229" width="8.5" height="15.0" fill="rgb(230,65,15)" rx="2" ry="2" />
440
<text text-anchor="" x="1165.43" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
441
</g>
442
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
443
<title>in_lock_functions (31 samples, 0.09%)</title><rect x="374.2" y="181" width="1.1" height="15.0" fill="rgb(247,109,38)" rx="2" ry="2" />
444
<text text-anchor="" x="377.22" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
445
</g>
446
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
447
<title>_raw_spin_lock_bh (335 samples, 0.97%)</title><rect x="336.8" y="181" width="11.5" height="15.0" fill="rgb(213,214,40)" rx="2" ry="2" />
448
<text text-anchor="" x="339.85" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
449
</g>
450
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
451
<title>kick_process (125 samples, 0.36%)</title><rect x="303.8" y="197" width="4.3" height="15.0" fill="rgb(232,0,18)" rx="2" ry="2" />
452
<text text-anchor="" x="306.79" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
453
</g>
454
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
455
<title>do_page_fault (4 samples, 0.01%)</title><rect x="1177.8" y="293" width="0.1" height="15.0" fill="rgb(241,55,27)" rx="2" ry="2" />
456
<text text-anchor="" x="1180.76" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
457
</g>
458
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
459
<title>do_sys_open (5 samples, 0.01%)</title><rect x="12.3" y="229" width="0.2" height="15.0" fill="rgb(216,43,51)" rx="2" ry="2" />
460
<text text-anchor="" x="15.30" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
461
</g>
462
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
463
<title>native_write_msr (7 samples, 0.02%)</title><rect x="1177.2" y="149" width="0.3" height="15.0" fill="rgb(207,42,42)" rx="2" ry="2" />
464
<text text-anchor="" x="1180.21" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
465
</g>
466
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
467
<title>__this_cpu_preempt_check (25 samples, 0.07%)</title><rect x="549.7" y="53" width="0.8" height="15.0" fill="rgb(229,229,16)" rx="2" ry="2" />
468
<text text-anchor="" x="552.68" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
469
</g>
470
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
471
<title>in_lock_functions (18 samples, 0.05%)</title><rect x="873.4" y="101" width="0.7" height="15.0" fill="rgb(212,125,0)" rx="2" ry="2" />
472
<text text-anchor="" x="876.44" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
473
</g>
474
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
475
<title>read_tsc (3 samples, 0.01%)</title><rect x="1119.4" y="213" width="0.1" height="15.0" fill="rgb(238,84,3)" rx="2" ry="2" />
476
<text text-anchor="" x="1122.43" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
477
</g>
478
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
479
<title>__rcu_read_lock (21 samples, 0.06%)</title><rect x="619.7" y="133" width="0.7" height="15.0" fill="rgb(234,34,9)" rx="2" ry="2" />
480
<text text-anchor="" x="622.66" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
481
</g>
482
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
483
<title>pick_next_task_idle (6 samples, 0.02%)</title><rect x="1146.8" y="165" width="0.2" height="15.0" fill="rgb(228,117,12)" rx="2" ry="2" />
484
<text text-anchor="" x="1149.76" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
485
</g>
486
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
487
<title>memset_erms (170 samples, 0.49%)</title><rect x="575.5" y="133" width="5.8" height="15.0" fill="rgb(253,145,49)" rx="2" ry="2" />
488
<text text-anchor="" x="578.47" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
489
</g>
490
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
491
<title>in_lock_functions (47 samples, 0.14%)</title><rect x="1010.7" y="197" width="1.6" height="15.0" fill="rgb(226,60,14)" rx="2" ry="2" />
492
<text text-anchor="" x="1013.67" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
493
</g>
494
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
495
<title>deactivate_task (34 samples, 0.10%)</title><rect x="1143.1" y="165" width="1.2" height="15.0" fill="rgb(232,58,20)" rx="2" ry="2" />
496
<text text-anchor="" x="1146.09" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
497
</g>
498
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
499
<title>preempt_count_sub (121 samples, 0.35%)</title><rect x="331.2" y="181" width="4.1" height="15.0" fill="rgb(213,190,33)" rx="2" ry="2" />
500
<text text-anchor="" x="334.15" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
501
</g>
502
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
503
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1173.1" y="293" width="0.1" height="15.0" fill="rgb(209,73,32)" rx="2" ry="2" />
504
<text text-anchor="" x="1176.13" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
505
</g>
506
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
507
<title>smp_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="38.8" y="277" width="0.3" height="15.0" fill="rgb(241,210,28)" rx="2" ry="2" />
508
<text text-anchor="" x="41.84" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
509
</g>
510
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
511
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="1112.0" y="181" width="0.1" height="15.0" fill="rgb(220,178,21)" rx="2" ry="2" />
512
<text text-anchor="" x="1114.96" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
513
</g>
514
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
515
<title>in_lock_functions (12 samples, 0.03%)</title><rect x="574.2" y="101" width="0.4" height="15.0" fill="rgb(254,17,48)" rx="2" ry="2" />
516
<text text-anchor="" x="577.20" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
517
</g>
518
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
519
<title>_raw_spin_unlock (40 samples, 0.12%)</title><rect x="926.5" y="149" width="1.4" height="15.0" fill="rgb(215,217,31)" rx="2" ry="2" />
520
<text text-anchor="" x="929.52" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
521
</g>
522
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
523
<title>preempt_count_add (97 samples, 0.28%)</title><rect x="884.1" y="117" width="3.3" height="15.0" fill="rgb(209,137,17)" rx="2" ry="2" />
524
<text text-anchor="" x="887.10" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
525
</g>
526
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
527
<title>__rcu_read_lock (10 samples, 0.03%)</title><rect x="957.5" y="197" width="0.4" height="15.0" fill="rgb(205,210,1)" rx="2" ry="2" />
528
<text text-anchor="" x="960.52" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
529
</g>
530
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
531
<title>__x86_indirect_thunk_rax (63 samples, 0.18%)</title><rect x="36.6" y="293" width="2.2" height="15.0" fill="rgb(223,111,3)" rx="2" ry="2" />
532
<text text-anchor="" x="39.64" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
533
</g>
534
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
535
<title>debug_smp_processor_id (245 samples, 0.71%)</title><rect x="39.2" y="293" width="8.4" height="15.0" fill="rgb(237,216,35)" rx="2" ry="2" />
536
<text text-anchor="" x="42.18" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
537
</g>
538
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
539
<title>_copy_to_user (6 samples, 0.02%)</title><rect x="1170.7" y="165" width="0.2" height="15.0" fill="rgb(209,23,8)" rx="2" ry="2" />
540
<text text-anchor="" x="1173.66" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
541
</g>
542
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
543
<title>sock_alloc_inode (1,910 samples, 5.55%)</title><rect x="412.6" y="181" width="65.5" height="15.0" fill="rgb(216,151,19)" rx="2" ry="2" />
544
<text text-anchor="" x="415.63" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sock_al..</text>
545
</g>
546
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
547
<title>destroy_inode (1,715 samples, 4.98%)</title><rect x="785.4" y="165" width="58.8" height="15.0" fill="rgb(234,59,54)" rx="2" ry="2" />
548
<text text-anchor="" x="788.35" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >destro..</text>
549
</g>
550
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
551
<title>fput (13 samples, 0.04%)</title><rect x="280.7" y="229" width="0.5" height="15.0" fill="rgb(220,96,4)" rx="2" ry="2" />
552
<text text-anchor="" x="283.71" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
553
</g>
554
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
555
<title>__sched_text_start (160 samples, 0.46%)</title><rect x="1112.4" y="181" width="5.5" height="15.0" fill="rgb(208,94,12)" rx="2" ry="2" />
556
<text text-anchor="" x="1115.44" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
557
</g>
558
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
559
<title>in_lock_functions (20 samples, 0.06%)</title><rect x="925.8" y="101" width="0.7" height="15.0" fill="rgb(254,7,13)" rx="2" ry="2" />
560
<text text-anchor="" x="928.83" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
561
</g>
562
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
563
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="1112.2" y="165" width="0.1" height="15.0" fill="rgb(219,3,41)" rx="2" ry="2" />
564
<text text-anchor="" x="1115.20" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
565
</g>
566
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
567
<title>__this_cpu_preempt_check (22 samples, 0.06%)</title><rect x="548.7" y="53" width="0.7" height="15.0" fill="rgb(218,55,8)" rx="2" ry="2" />
568
<text text-anchor="" x="551.65" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
569
</g>
570
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
571
<title>__rcu_read_unlock (40 samples, 0.12%)</title><rect x="440.3" y="133" width="1.4" height="15.0" fill="rgb(235,90,2)" rx="2" ry="2" />
572
<text text-anchor="" x="443.33" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
573
</g>
574
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
575
<title>do_syscall_64 (171 samples, 0.50%)</title><rect x="1180.2" y="293" width="5.9" height="15.0" fill="rgb(219,12,28)" rx="2" ry="2" />
576
<text text-anchor="" x="1183.23" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
577
</g>
578
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
579
<title>lock_hrtimer_base.isra.0 (4 samples, 0.01%)</title><rect x="1155.1" y="213" width="0.2" height="15.0" fill="rgb(241,28,9)" rx="2" ry="2" />
580
<text text-anchor="" x="1158.13" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
581
</g>
582
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
583
<title>__x64_sys_poll (3 samples, 0.01%)</title><rect x="1119.6" y="261" width="0.1" height="15.0" fill="rgb(215,164,38)" rx="2" ry="2" />
584
<text text-anchor="" x="1122.60" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
585
</g>
586
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
587
<title>__GI___ioctl (422 samples, 1.23%)</title><rect x="1158.3" y="325" width="14.5" height="15.0" fill="rgb(232,42,54)" rx="2" ry="2" />
588
<text text-anchor="" x="1161.28" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
589
</g>
590
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
591
<title>_raw_spin_lock_irqsave (5 samples, 0.01%)</title><rect x="1163.7" y="181" width="0.1" height="15.0" fill="rgb(254,89,53)" rx="2" ry="2" />
592
<text text-anchor="" x="1166.67" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
593
</g>
594
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
595
<title>iput (508 samples, 1.48%)</title><rect x="910.5" y="165" width="17.4" height="15.0" fill="rgb(209,89,15)" rx="2" ry="2" />
596
<text text-anchor="" x="913.51" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
597
</g>
598
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
599
<title>syscall_return_via_sysret (1,633 samples, 4.75%)</title><rect x="1047.0" y="293" width="56.0" height="15.0" fill="rgb(248,195,12)" rx="2" ry="2" />
600
<text text-anchor="" x="1050.01" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sysca..</text>
601
</g>
602
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
603
<title>enqueue_hrtimer (8 samples, 0.02%)</title><rect x="1111.3" y="181" width="0.2" height="15.0" fill="rgb(209,100,48)" rx="2" ry="2" />
604
<text text-anchor="" x="1114.27" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
605
</g>
606
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
607
<title>mntput_no_expire (29 samples, 0.08%)</title><rect x="956.9" y="213" width="1.0" height="15.0" fill="rgb(220,84,47)" rx="2" ry="2" />
608
<text text-anchor="" x="959.87" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
609
</g>
610
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
611
<title>psi_task_change (21 samples, 0.06%)</title><rect x="1113.4" y="149" width="0.8" height="15.0" fill="rgb(216,30,42)" rx="2" ry="2" />
612
<text text-anchor="" x="1116.43" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
613
</g>
614
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
615
<title>do_sys_open (9 samples, 0.03%)</title><rect x="15.7" y="261" width="0.3" height="15.0" fill="rgb(213,113,27)" rx="2" ry="2" />
616
<text text-anchor="" x="18.69" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
617
</g>
618
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
619
<title>_raw_spin_unlock (43 samples, 0.12%)</title><rect x="482.2" y="197" width="1.5" height="15.0" fill="rgb(208,185,40)" rx="2" ry="2" />
620
<text text-anchor="" x="485.23" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
621
</g>
622
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
623
<title>try_to_wake_up (119 samples, 0.35%)</title><rect x="1181.9" y="213" width="4.1" height="15.0" fill="rgb(212,36,47)" rx="2" ry="2" />
624
<text text-anchor="" x="1184.87" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
625
</g>
626
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
627
<title>_raw_spin_unlock_irq (3 samples, 0.01%)</title><rect x="1115.7" y="149" width="0.1" height="15.0" fill="rgb(239,9,37)" rx="2" ry="2" />
628
<text text-anchor="" x="1118.73" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
629
</g>
630
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
631
<title>truncate_inode_pages_range (511 samples, 1.48%)</title><rect x="892.3" y="149" width="17.5" height="15.0" fill="rgb(240,79,14)" rx="2" ry="2" />
632
<text text-anchor="" x="895.27" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
633
</g>
634
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
635
<title>__se_sys_futex (150 samples, 0.44%)</title><rect x="1180.8" y="277" width="5.2" height="15.0" fill="rgb(237,17,52)" rx="2" ry="2" />
636
<text text-anchor="" x="1183.81" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
637
</g>
638
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
639
<title>switch_fpu_return (7 samples, 0.02%)</title><rect x="1119.7" y="261" width="0.3" height="15.0" fill="rgb(246,227,2)" rx="2" ry="2" />
640
<text text-anchor="" x="1122.74" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
641
</g>
642
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
643
<title>get_timespec64 (5 samples, 0.01%)</title><rect x="1156.8" y="245" width="0.1" height="15.0" fill="rgb(237,192,35)" rx="2" ry="2" />
644
<text text-anchor="" x="1159.77" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
645
</g>
646
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
647
<title>__gconv_find_transform (5 samples, 0.01%)</title><rect x="1189.6" y="309" width="0.1" height="15.0" fill="rgb(244,52,15)" rx="2" ry="2" />
648
<text text-anchor="" x="1192.55" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
649
</g>
650
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
651
<title>do_group_exit (3 samples, 0.01%)</title><rect x="1189.8" y="277" width="0.1" height="15.0" fill="rgb(232,121,36)" rx="2" ry="2" />
652
<text text-anchor="" x="1192.79" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
653
</g>
654
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
655
<title>path_openat (5 samples, 0.01%)</title><rect x="12.3" y="197" width="0.2" height="15.0" fill="rgb(232,65,6)" rx="2" ry="2" />
656
<text text-anchor="" x="15.30" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
657
</g>
658
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
659
<title>[libLimeSuite.so.19.04.0] (7 samples, 0.02%)</title><rect x="10.4" y="325" width="0.2" height="15.0" fill="rgb(221,128,15)" rx="2" ry="2" />
660
<text text-anchor="" x="13.38" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
661
</g>
662
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
663
<title>do_syscall_64 (10 samples, 0.03%)</title><rect x="15.7" y="277" width="0.3" height="15.0" fill="rgb(241,30,48)" rx="2" ry="2" />
664
<text text-anchor="" x="18.69" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
665
</g>
666
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
667
<title>prep_new_page (3 samples, 0.01%)</title><rect x="544.3" y="53" width="0.1" height="15.0" fill="rgb(212,116,23)" rx="2" ry="2" />
668
<text text-anchor="" x="547.30" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
669
</g>
670
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
671
<title>preempt_count_add (4 samples, 0.01%)</title><rect x="1142.0" y="149" width="0.2" height="15.0" fill="rgb(227,176,5)" rx="2" ry="2" />
672
<text text-anchor="" x="1145.03" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
673
</g>
674
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
675
<title>_dl_sysdep_start (3 samples, 0.01%)</title><rect x="1136.0" y="309" width="0.1" height="15.0" fill="rgb(248,224,48)" rx="2" ry="2" />
676
<text text-anchor="" x="1139.03" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
677
</g>
678
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
679
<title>schedule (165 samples, 0.48%)</title><rect x="1112.3" y="197" width="5.7" height="15.0" fill="rgb(249,92,19)" rx="2" ry="2" />
680
<text text-anchor="" x="1115.30" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
681
</g>
682
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
683
<title>syscall_return_via_sysret (19 samples, 0.06%)</title><rect x="1157.5" y="293" width="0.7" height="15.0" fill="rgb(213,110,15)" rx="2" ry="2" />
684
<text text-anchor="" x="1160.53" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
685
</g>
686
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
687
<title>alloc_empty_file (4 samples, 0.01%)</title><rect x="12.3" y="181" width="0.1" height="15.0" fill="rgb(223,55,35)" rx="2" ry="2" />
688
<text text-anchor="" x="15.30" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
689
</g>
690
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
691
<title>__x64_sys_ioctl (272 samples, 0.79%)</title><rect x="1161.7" y="277" width="9.3" height="15.0" fill="rgb(213,158,37)" rx="2" ry="2" />
692
<text text-anchor="" x="1164.68" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
693
</g>
694
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
695
<title>__fget_light (11 samples, 0.03%)</title><rect x="1155.8" y="213" width="0.4" height="15.0" fill="rgb(231,179,18)" rx="2" ry="2" />
696
<text text-anchor="" x="1158.81" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
697
</g>
698
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
699
<title>timerqueue_add (5 samples, 0.01%)</title><rect x="1154.9" y="197" width="0.2" height="15.0" fill="rgb(230,27,35)" rx="2" ry="2" />
700
<text text-anchor="" x="1157.89" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
701
</g>
702
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
703
<title>do_filp_open (5 samples, 0.01%)</title><rect x="12.3" y="213" width="0.2" height="15.0" fill="rgb(232,62,24)" rx="2" ry="2" />
704
<text text-anchor="" x="15.30" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
705
</g>
706
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
707
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="1177.2" y="309" width="0.3" height="15.0" fill="rgb(239,11,6)" rx="2" ry="2" />
708
<text text-anchor="" x="1180.21" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
709
</g>
710
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
711
<title>__audit_syscall_exit (7 samples, 0.02%)</title><rect x="1157.0" y="245" width="0.3" height="15.0" fill="rgb(244,137,4)" rx="2" ry="2" />
712
<text text-anchor="" x="1160.05" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
713
</g>
714
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
715
<title>preempt_count_sub (3 samples, 0.01%)</title><rect x="1154.3" y="213" width="0.1" height="15.0" fill="rgb(213,12,30)" rx="2" ry="2" />
716
<text text-anchor="" x="1157.30" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
717
</g>
718
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
719
<title>[libusb-1.0.so.0.1.0] (8 samples, 0.02%)</title><rect x="14.1" y="293" width="0.3" height="15.0" fill="rgb(241,19,7)" rx="2" ry="2" />
720
<text text-anchor="" x="17.15" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
721
</g>
722
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
723
<title>locks_free_lock_context (24 samples, 0.07%)</title><rect x="805.7" y="133" width="0.8" height="15.0" fill="rgb(252,112,14)" rx="2" ry="2" />
724
<text text-anchor="" x="808.65" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
725
</g>
726
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
727
<title>deactivate_task (24 samples, 0.07%)</title><rect x="1113.3" y="165" width="0.9" height="15.0" fill="rgb(218,6,48)" rx="2" ry="2" />
728
<text text-anchor="" x="1116.33" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
729
</g>
730
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
731
<title>sock_close (788 samples, 2.29%)</title><rect x="967.5" y="213" width="27.0" height="15.0" fill="rgb(210,209,33)" rx="2" ry="2" />
732
<text text-anchor="" x="970.50" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
733
</g>
734
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
735
<title>__intel_pmu_enable_all.constprop.0 (25 samples, 0.07%)</title><rect x="1188.6" y="245" width="0.8" height="15.0" fill="rgb(242,173,19)" rx="2" ry="2" />
736
<text text-anchor="" x="1191.56" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
737
</g>
738
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
739
<title>__init_waitqueue_head (13 samples, 0.04%)</title><rect x="418.7" y="165" width="0.5" height="15.0" fill="rgb(220,108,17)" rx="2" ry="2" />
740
<text text-anchor="" x="421.73" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
741
</g>
742
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
743
<title>_raw_spin_lock_bh (268 samples, 0.78%)</title><rect x="352.2" y="181" width="9.2" height="15.0" fill="rgb(212,194,51)" rx="2" ry="2" />
744
<text text-anchor="" x="355.24" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
745
</g>
746
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
747
<title>hrtimer_start_range_ns (15 samples, 0.04%)</title><rect x="1154.8" y="229" width="0.5" height="15.0" fill="rgb(243,141,51)" rx="2" ry="2" />
748
<text text-anchor="" x="1157.75" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
749
</g>
750
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
751
<title>record_times (4 samples, 0.01%)</title><rect x="1185.2" y="149" width="0.2" height="15.0" fill="rgb(214,145,22)" rx="2" ry="2" />
752
<text text-anchor="" x="1188.23" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
753
</g>
754
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
755
<title>async_getcompleted (14 samples, 0.04%)</title><rect x="1163.5" y="197" width="0.5" height="15.0" fill="rgb(253,85,46)" rx="2" ry="2" />
756
<text text-anchor="" x="1166.49" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
757
</g>
758
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
759
<title>inet_csk_accept (1,460 samples, 4.24%)</title><rect x="315.8" y="213" width="50.1" height="15.0" fill="rgb(223,193,49)" rx="2" ry="2" />
760
<text text-anchor="" x="318.83" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >inet_..</text>
761
</g>
762
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
763
<title>__kmalloc (3 samples, 0.01%)</title><rect x="1166.2" y="181" width="0.1" height="15.0" fill="rgb(218,20,25)" rx="2" ry="2" />
764
<text text-anchor="" x="1169.20" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
765
</g>
766
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
767
<title>__se_sys_futex (281 samples, 0.82%)</title><rect x="1140.6" y="261" width="9.6" height="15.0" fill="rgb(249,183,51)" rx="2" ry="2" />
768
<text text-anchor="" x="1143.55" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
769
</g>
770
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
771
<title>__fsnotify_parent (270 samples, 0.78%)</title><rect x="742.2" y="213" width="9.2" height="15.0" fill="rgb(214,111,6)" rx="2" ry="2" />
772
<text text-anchor="" x="745.18" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
773
</g>
774
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
775
<title>apic_timer_interrupt (3 samples, 0.01%)</title><rect x="686.6" y="261" width="0.1" height="15.0" fill="rgb(206,34,25)" rx="2" ry="2" />
776
<text text-anchor="" x="689.56" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
777
</g>
778
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
779
<title>wake_up_bit (21 samples, 0.06%)</title><rect x="909.8" y="149" width="0.7" height="15.0" fill="rgb(217,164,44)" rx="2" ry="2" />
780
<text text-anchor="" x="912.79" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
781
</g>
782
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
783
<title>kernel_wait4 (7 samples, 0.02%)</title><rect x="1177.2" y="261" width="0.3" height="15.0" fill="rgb(210,178,18)" rx="2" ry="2" />
784
<text text-anchor="" x="1180.21" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
785
</g>
786
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
787
<title>__mod_zone_page_state (6 samples, 0.02%)</title><rect x="543.3" y="53" width="0.2" height="15.0" fill="rgb(225,202,10)" rx="2" ry="2" />
788
<text text-anchor="" x="546.27" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
789
</g>
790
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
791
<title>lock_hrtimer_base.isra.0 (4 samples, 0.01%)</title><rect x="1111.6" y="181" width="0.2" height="15.0" fill="rgb(250,110,54)" rx="2" ry="2" />
792
<text text-anchor="" x="1114.61" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
793
</g>
794
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
795
<title>d_alloc_pseudo (1,438 samples, 4.18%)</title><rect x="589.3" y="197" width="49.3" height="15.0" fill="rgb(212,129,50)" rx="2" ry="2" />
796
<text text-anchor="" x="592.32" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >d_al..</text>
797
</g>
798
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
799
<title>preempt_count_sub (3 samples, 0.01%)</title><rect x="1145.9" y="117" width="0.1" height="15.0" fill="rgb(247,54,7)" rx="2" ry="2" />
800
<text text-anchor="" x="1148.87" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
801
</g>
802
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
803
<title>make_kgid (83 samples, 0.24%)</title><rect x="406.2" y="165" width="2.9" height="15.0" fill="rgb(236,87,34)" rx="2" ry="2" />
804
<text text-anchor="" x="409.21" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
805
</g>
806
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
807
<title>_int_malloc (6 samples, 0.02%)</title><rect x="1136.6" y="309" width="0.3" height="15.0" fill="rgb(228,41,13)" rx="2" ry="2" />
808
<text text-anchor="" x="1139.65" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
809
</g>
810
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
811
<title>inet_release (186 samples, 0.54%)</title><rect x="982.9" y="181" width="6.4" height="15.0" fill="rgb(231,174,1)" rx="2" ry="2" />
812
<text text-anchor="" x="985.89" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
813
</g>
814
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
815
<title>path_openat (9 samples, 0.03%)</title><rect x="15.7" y="229" width="0.3" height="15.0" fill="rgb(230,92,13)" rx="2" ry="2" />
816
<text text-anchor="" x="18.69" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
817
</g>
818
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
819
<title>__pthread_mutex_trylock (7 samples, 0.02%)</title><rect x="1135.0" y="309" width="0.2" height="15.0" fill="rgb(222,73,30)" rx="2" ry="2" />
820
<text text-anchor="" x="1137.97" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
821
</g>
822
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
823
<title>syscall_return_via_sysret (14 samples, 0.04%)</title><rect x="1120.6" y="293" width="0.4" height="15.0" fill="rgb(208,199,46)" rx="2" ry="2" />
824
<text text-anchor="" x="1123.56" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
825
</g>
826
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
827
<title>__fget_light (26 samples, 0.08%)</title><rect x="1108.5" y="229" width="0.9" height="15.0" fill="rgb(252,205,5)" rx="2" ry="2" />
828
<text text-anchor="" x="1111.53" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
829
</g>
830
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
831
<title>__se_sys_futex (17 samples, 0.05%)</title><rect x="1175.2" y="277" width="0.6" height="15.0" fill="rgb(245,157,49)" rx="2" ry="2" />
832
<text text-anchor="" x="1178.19" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
833
</g>
834
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
835
<title>mntput (10 samples, 0.03%)</title><rect x="956.5" y="213" width="0.4" height="15.0" fill="rgb(209,36,38)" rx="2" ry="2" />
836
<text text-anchor="" x="959.52" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
837
</g>
838
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
839
<title>__rcu_read_lock (37 samples, 0.11%)</title><rect x="453.9" y="117" width="1.3" height="15.0" fill="rgb(237,201,23)" rx="2" ry="2" />
840
<text text-anchor="" x="456.94" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
841
</g>
842
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
843
<title>down_write (155 samples, 0.45%)</title><rect x="977.6" y="181" width="5.3" height="15.0" fill="rgb(207,227,12)" rx="2" ry="2" />
844
<text text-anchor="" x="980.58" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
845
</g>
846
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
847
<title>__audit_syscall_entry (5 samples, 0.01%)</title><rect x="1157.4" y="245" width="0.1" height="15.0" fill="rgb(219,81,31)" rx="2" ry="2" />
848
<text text-anchor="" x="1160.36" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
849
</g>
850
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
851
<title>update_rq_clock (5 samples, 0.01%)</title><rect x="1117.8" y="165" width="0.1" height="15.0" fill="rgb(216,14,20)" rx="2" ry="2" />
852
<text text-anchor="" x="1120.75" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
853
</g>
854
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
855
<title>__pthread_mutex_lock (24 samples, 0.07%)</title><rect x="1134.1" y="309" width="0.9" height="15.0" fill="rgb(224,93,42)" rx="2" ry="2" />
856
<text text-anchor="" x="1137.14" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
857
</g>
858
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
859
<title>memcg_kmem_put_cache (150 samples, 0.44%)</title><rect x="570.3" y="133" width="5.1" height="15.0" fill="rgb(229,45,37)" rx="2" ry="2" />
860
<text text-anchor="" x="573.25" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
861
</g>
862
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
863
<title>__se_sys_timerfd_settime (91 samples, 0.26%)</title><rect x="1153.8" y="261" width="3.1" height="15.0" fill="rgb(226,32,32)" rx="2" ry="2" />
864
<text text-anchor="" x="1156.82" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
865
</g>
866
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
867
<title>module_put (14 samples, 0.04%)</title><rect x="989.3" y="181" width="0.5" height="15.0" fill="rgb(218,112,17)" rx="2" ry="2" />
868
<text text-anchor="" x="992.27" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
869
</g>
870
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
871
<title>get_mem_cgroup_from_mm (257 samples, 0.75%)</title><rect x="621.5" y="133" width="8.8" height="15.0" fill="rgb(253,204,29)" rx="2" ry="2" />
872
<text text-anchor="" x="624.48" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
873
</g>
874
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
875
<title>entry_SYSCALL_64 (9 samples, 0.03%)</title><rect x="1139.7" y="293" width="0.3" height="15.0" fill="rgb(230,50,50)" rx="2" ry="2" />
876
<text text-anchor="" x="1142.73" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
877
</g>
878
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
879
<title>preempt_count_add (167 samples, 0.49%)</title><rect x="342.6" y="165" width="5.7" height="15.0" fill="rgb(249,12,4)" rx="2" ry="2" />
880
<text text-anchor="" x="345.61" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
881
</g>
882
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
883
<title>sock_alloc_file (5,456 samples, 15.85%)</title><rect x="478.2" y="229" width="187.0" height="15.0" fill="rgb(254,220,27)" rx="2" ry="2" />
884
<text text-anchor="" x="481.15" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sock_alloc_file</text>
885
</g>
886
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
887
<title>inode_has_buffers (12 samples, 0.03%)</title><rect x="805.2" y="133" width="0.5" height="15.0" fill="rgb(239,200,30)" rx="2" ry="2" />
888
<text text-anchor="" x="808.24" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
889
</g>
890
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
891
<title>sched_clock (3 samples, 0.01%)</title><rect x="1144.2" y="101" width="0.1" height="15.0" fill="rgb(234,64,47)" rx="2" ry="2" />
892
<text text-anchor="" x="1147.16" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
893
</g>
894
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
895
<title>psi_task_change (31 samples, 0.09%)</title><rect x="1143.2" y="149" width="1.1" height="15.0" fill="rgb(211,193,34)" rx="2" ry="2" />
896
<text text-anchor="" x="1146.20" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
897
</g>
898
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
899
<title>_raw_spin_unlock_bh (9 samples, 0.03%)</title><rect x="335.3" y="197" width="0.3" height="15.0" fill="rgb(251,202,47)" rx="2" ry="2" />
900
<text text-anchor="" x="338.30" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
901
</g>
902
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
903
<title>mmput (3 samples, 0.01%)</title><rect x="1189.8" y="245" width="0.1" height="15.0" fill="rgb(233,178,47)" rx="2" ry="2" />
904
<text text-anchor="" x="1192.79" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
905
</g>
906
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
907
<title>osmo-trx-lms (34,319 samples, 99.73%)</title><rect x="10.3" y="341" width="1176.8" height="15.0" fill="rgb(249,145,20)" rx="2" ry="2" />
908
<text text-anchor="" x="13.31" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >osmo-trx-lms</text>
909
</g>
910
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
911
<title>__rcu_read_unlock (25 samples, 0.07%)</title><rect x="565.9" y="101" width="0.9" height="15.0" fill="rgb(215,219,41)" rx="2" ry="2" />
912
<text text-anchor="" x="568.93" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
913
</g>
914
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
915
<title>set_next_entity (3 samples, 0.01%)</title><rect x="1116.1" y="149" width="0.1" height="15.0" fill="rgb(235,79,49)" rx="2" ry="2" />
916
<text text-anchor="" x="1119.14" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
917
</g>
918
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
919
<title>__call_rcu (567 samples, 1.65%)</title><rect x="824.4" y="133" width="19.4" height="15.0" fill="rgb(254,5,50)" rx="2" ry="2" />
920
<text text-anchor="" x="827.37" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
921
</g>
922
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
923
<title>sched_clock_cpu (3 samples, 0.01%)</title><rect x="1113.1" y="133" width="0.1" height="15.0" fill="rgb(223,50,20)" rx="2" ry="2" />
924
<text text-anchor="" x="1116.09" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
925
</g>
926
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
927
<title>syscall_slow_exit_work (413 samples, 1.20%)</title><rect x="1017.3" y="261" width="14.1" height="15.0" fill="rgb(234,31,40)" rx="2" ry="2" />
928
<text text-anchor="" x="1020.28" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
929
</g>
930
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
931
<title>timerfd_fget (13 samples, 0.04%)</title><rect x="1155.7" y="229" width="0.5" height="15.0" fill="rgb(221,58,18)" rx="2" ry="2" />
932
<text text-anchor="" x="1158.74" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
933
</g>
934
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
935
<title>__pthread_mutex_unlock_usercnt (8 samples, 0.02%)</title><rect x="1176.9" y="325" width="0.3" height="15.0" fill="rgb(235,77,43)" rx="2" ry="2" />
936
<text text-anchor="" x="1179.90" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
937
</g>
938
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
939
<title>libusb_submit_transfer (10 samples, 0.03%)</title><rect x="1137.7" y="309" width="0.3" height="15.0" fill="rgb(222,129,54)" rx="2" ry="2" />
940
<text text-anchor="" x="1140.67" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
941
</g>
942
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
943
<title>lime::FPGA::ReadRegister (3 samples, 0.01%)</title><rect x="11.9" y="277" width="0.1" height="15.0" fill="rgb(220,205,12)" rx="2" ry="2" />
944
<text text-anchor="" x="14.85" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
945
</g>
946
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
947
<title>_raw_spin_lock_irqsave (7 samples, 0.02%)</title><rect x="1110.5" y="197" width="0.2" height="15.0" fill="rgb(243,85,44)" rx="2" ry="2" />
948
<text text-anchor="" x="1113.48" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
949
</g>
950
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
951
<title>get_mem_cgroup_from_mm (247 samples, 0.72%)</title><rect x="561.8" y="117" width="8.5" height="15.0" fill="rgb(219,58,23)" rx="2" ry="2" />
952
<text text-anchor="" x="564.78" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
953
</g>
954
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
955
<title>syscall_return_via_sysret (30 samples, 0.09%)</title><rect x="1171.7" y="309" width="1.1" height="15.0" fill="rgb(216,60,37)" rx="2" ry="2" />
956
<text text-anchor="" x="1174.72" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
957
</g>
958
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
959
<title>plist_add (3 samples, 0.01%)</title><rect x="1142.2" y="197" width="0.1" height="15.0" fill="rgb(252,131,32)" rx="2" ry="2" />
960
<text text-anchor="" x="1145.17" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
961
</g>
962
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
963
<title>fput_many (4 samples, 0.01%)</title><rect x="1170.9" y="245" width="0.1" height="15.0" fill="rgb(210,85,28)" rx="2" ry="2" />
964
<text text-anchor="" x="1173.87" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
965
</g>
966
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
967
<title>poll_select_set_timeout (10 samples, 0.03%)</title><rect x="1119.3" y="245" width="0.3" height="15.0" fill="rgb(219,96,44)" rx="2" ry="2" />
968
<text text-anchor="" x="1122.26" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
969
</g>
970
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
971
<title>preempt_count_add (4 samples, 0.01%)</title><rect x="544.1" y="37" width="0.2" height="15.0" fill="rgb(236,179,2)" rx="2" ry="2" />
972
<text text-anchor="" x="547.13" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
973
</g>
974
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
975
<title>__se_sys_wait4 (7 samples, 0.02%)</title><rect x="1177.2" y="277" width="0.3" height="15.0" fill="rgb(223,169,40)" rx="2" ry="2" />
976
<text text-anchor="" x="1180.21" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
977
</g>
978
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
979
<title>__d_instantiate (326 samples, 0.95%)</title><rect x="639.7" y="181" width="11.2" height="15.0" fill="rgb(252,176,7)" rx="2" ry="2" />
980
<text text-anchor="" x="642.69" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
981
</g>
982
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
983
<title>futex_wake (146 samples, 0.42%)</title><rect x="1180.9" y="245" width="5.1" height="15.0" fill="rgb(210,194,49)" rx="2" ry="2" />
984
<text text-anchor="" x="1183.95" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
985
</g>
986
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
987
<title>_raw_spin_lock (270 samples, 0.78%)</title><rect x="768.5" y="165" width="9.3" height="15.0" fill="rgb(253,193,1)" rx="2" ry="2" />
988
<text text-anchor="" x="771.52" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
989
</g>
990
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
991
<title>expand_files (70 samples, 0.20%)</title><rect x="273.8" y="213" width="2.4" height="15.0" fill="rgb(223,188,20)" rx="2" ry="2" />
992
<text text-anchor="" x="276.75" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
993
</g>
994
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
995
<title>get_unused_fd_flags (43 samples, 0.12%)</title><rect x="308.1" y="229" width="1.5" height="15.0" fill="rgb(236,102,27)" rx="2" ry="2" />
996
<text text-anchor="" x="311.08" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
997
</g>
998
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
999
<title>finish_task_switch (26 samples, 0.08%)</title><rect x="1188.6" y="277" width="0.9" height="15.0" fill="rgb(235,87,13)" rx="2" ry="2" />
1000
<text text-anchor="" x="1191.56" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1001
</g>
1002
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1003
<title>__remove_hrtimer (3 samples, 0.01%)</title><rect x="1149.3" y="181" width="0.1" height="15.0" fill="rgb(254,134,32)" rx="2" ry="2" />
1004
<text text-anchor="" x="1152.26" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1005
</g>
1006
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1007
<title>do_wait (7 samples, 0.02%)</title><rect x="1177.2" y="245" width="0.3" height="15.0" fill="rgb(221,47,47)" rx="2" ry="2" />
1008
<text text-anchor="" x="1180.21" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1009
</g>
1010
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1011
<title>Complex&lt;float&gt;::Complex (8 samples, 0.02%)</title><rect x="1103.8" y="149" width="0.3" height="15.0" fill="rgb(231,179,12)" rx="2" ry="2" />
1012
<text text-anchor="" x="1106.80" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1013
</g>
1014
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1015
<title>[libLimeSuite.so.19.04.0] (18 samples, 0.05%)</title><rect x="11.4" y="309" width="0.6" height="15.0" fill="rgb(211,46,9)" rx="2" ry="2" />
1016
<text text-anchor="" x="14.41" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1017
</g>
1018
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1019
<title>__perf_event_task_sched_in (26 samples, 0.08%)</title><rect x="1188.6" y="261" width="0.9" height="15.0" fill="rgb(243,10,22)" rx="2" ry="2" />
1020
<text text-anchor="" x="1191.56" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1021
</g>
1022
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1023
<title>__fget (8 samples, 0.02%)</title><rect x="1162.0" y="229" width="0.3" height="15.0" fill="rgb(217,228,52)" rx="2" ry="2" />
1024
<text text-anchor="" x="1165.02" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1025
</g>
1026
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1027
<title>usb_alloc_urb (7 samples, 0.02%)</title><rect x="1167.3" y="181" width="0.2" height="15.0" fill="rgb(225,229,46)" rx="2" ry="2" />
1028
<text text-anchor="" x="1170.27" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1029
</g>
1030
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1031
<title>remove_wait_queue (7 samples, 0.02%)</title><rect x="1110.5" y="213" width="0.2" height="15.0" fill="rgb(213,113,0)" rx="2" ry="2" />
1032
<text text-anchor="" x="1113.48" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1033
</g>
1034
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1035
<title>__clone (7 samples, 0.02%)</title><rect x="14.6" y="293" width="0.2" height="15.0" fill="rgb(219,87,18)" rx="2" ry="2" />
1036
<text text-anchor="" x="17.56" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1037
</g>
1038
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1039
<title>__intel_pmu_enable_all.constprop.0 (7 samples, 0.02%)</title><rect x="1177.2" y="165" width="0.3" height="15.0" fill="rgb(233,177,13)" rx="2" ry="2" />
1040
<text text-anchor="" x="1180.21" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1041
</g>
1042
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1043
<title>preempt_count_sub (28 samples, 0.08%)</title><rect x="778.4" y="149" width="0.9" height="15.0" fill="rgb(237,220,33)" rx="2" ry="2" />
1044
<text text-anchor="" x="781.36" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1045
</g>
1046
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1047
<title>__perf_event_task_sched_out (17 samples, 0.05%)</title><rect x="1112.7" y="165" width="0.6" height="15.0" fill="rgb(211,218,34)" rx="2" ry="2" />
1048
<text text-anchor="" x="1115.75" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1049
</g>
1050
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1051
<title>dentry_free (17 samples, 0.05%)</title><rect x="935.8" y="181" width="0.6" height="15.0" fill="rgb(239,178,22)" rx="2" ry="2" />
1052
<text text-anchor="" x="938.78" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1053
</g>
1054
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1055
<title>debug_smp_processor_id (16 samples, 0.05%)</title><rect x="304.5" y="181" width="0.5" height="15.0" fill="rgb(211,32,47)" rx="2" ry="2" />
1056
<text text-anchor="" x="307.48" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1057
</g>
1058
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1059
<title>udev_enumerate_scan_devices (3 samples, 0.01%)</title><rect x="1186.9" y="325" width="0.2" height="15.0" fill="rgb(254,43,47)" rx="2" ry="2" />
1060
<text text-anchor="" x="1189.95" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1061
</g>
1062
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1063
<title>copy_user_generic_unrolled (3 samples, 0.01%)</title><rect x="1156.8" y="213" width="0.1" height="15.0" fill="rgb(233,125,15)" rx="2" ry="2" />
1064
<text text-anchor="" x="1159.84" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1065
</g>
1066
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1067
<title>usbfs_increase_memory_usage (3 samples, 0.01%)</title><rect x="1169.7" y="181" width="0.1" height="15.0" fill="rgb(252,49,53)" rx="2" ry="2" />
1068
<text text-anchor="" x="1172.67" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1069
</g>
1070
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1071
<title>__pollwait (3 samples, 0.01%)</title><rect x="1110.0" y="213" width="0.1" height="15.0" fill="rgb(207,179,12)" rx="2" ry="2" />
1072
<text text-anchor="" x="1113.00" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1073
</g>
1074
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1075
<title>smp_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="686.6" y="245" width="0.1" height="15.0" fill="rgb(240,108,23)" rx="2" ry="2" />
1076
<text text-anchor="" x="689.56" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1077
</g>
1078
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1079
<title>try_charge (22 samples, 0.06%)</title><rect x="545.6" y="69" width="0.8" height="15.0" fill="rgb(252,145,32)" rx="2" ry="2" />
1080
<text text-anchor="" x="548.63" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1081
</g>
1082
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1083
<title>__strcmp_avx2 (5 samples, 0.01%)</title><rect x="1189.6" y="293" width="0.1" height="15.0" fill="rgb(213,73,43)" rx="2" ry="2" />
1084
<text text-anchor="" x="1192.55" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1085
</g>
1086
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1087
<title>__put_user_4 (5 samples, 0.01%)</title><rect x="1170.2" y="181" width="0.2" height="15.0" fill="rgb(207,67,42)" rx="2" ry="2" />
1088
<text text-anchor="" x="1173.18" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1089
</g>
1090
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1091
<title>tcp_release_cb (130 samples, 0.38%)</title><rect x="361.4" y="181" width="4.5" height="15.0" fill="rgb(207,27,15)" rx="2" ry="2" />
1092
<text text-anchor="" x="364.43" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1093
</g>
1094
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1095
<title>[[vdso]] (6 samples, 0.02%)</title><rect x="1172.9" y="309" width="0.2" height="15.0" fill="rgb(224,44,23)" rx="2" ry="2" />
1096
<text text-anchor="" x="1175.89" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1097
</g>
1098
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1099
<title>should_failslab (4 samples, 0.01%)</title><rect x="634.4" y="149" width="0.1" height="15.0" fill="rgb(212,11,10)" rx="2" ry="2" />
1100
<text text-anchor="" x="637.41" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1101
</g>
1102
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1103
<title>__alloc_pages_nodemask (29 samples, 0.08%)</title><rect x="473.4" y="101" width="0.9" height="15.0" fill="rgb(205,133,8)" rx="2" ry="2" />
1104
<text text-anchor="" x="476.35" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1105
</g>
1106
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1107
<title>cfree@GLIBC_2.2.5 (4 samples, 0.01%)</title><rect x="1178.0" y="325" width="0.1" height="15.0" fill="rgb(242,226,31)" rx="2" ry="2" />
1108
<text text-anchor="" x="1181.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1109
</g>
1110
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1111
<title>preempt_count_sub (29 samples, 0.08%)</title><rect x="348.3" y="165" width="1.0" height="15.0" fill="rgb(231,141,5)" rx="2" ry="2" />
1112
<text text-anchor="" x="351.33" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1113
</g>
1114
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1115
<title>lock_hrtimer_base.isra.0 (7 samples, 0.02%)</title><rect x="1149.5" y="181" width="0.2" height="15.0" fill="rgb(236,203,31)" rx="2" ry="2" />
1116
<text text-anchor="" x="1152.50" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1117
</g>
1118
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1119
<title>__x2apic_send_IPI_dest (6 samples, 0.02%)</title><rect x="1116.9" y="133" width="0.2" height="15.0" fill="rgb(221,65,4)" rx="2" ry="2" />
1120
<text text-anchor="" x="1119.90" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1121
</g>
1122
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1123
<title>processcompl (32 samples, 0.09%)</title><rect x="1169.8" y="197" width="1.1" height="15.0" fill="rgb(229,52,20)" rx="2" ry="2" />
1124
<text text-anchor="" x="1172.77" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1125
</g>
1126
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1127
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="1177.2" y="293" width="0.3" height="15.0" fill="rgb(233,208,36)" rx="2" ry="2" />
1128
<text text-anchor="" x="1180.21" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1129
</g>
1130
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1131
<title>native_write_msr (25 samples, 0.07%)</title><rect x="1188.6" y="229" width="0.8" height="15.0" fill="rgb(253,45,32)" rx="2" ry="2" />
1132
<text text-anchor="" x="1191.56" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1133
</g>
1134
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1135
<title>_raw_spin_unlock (87 samples, 0.25%)</title><rect x="782.4" y="149" width="3.0" height="15.0" fill="rgb(251,93,38)" rx="2" ry="2" />
1136
<text text-anchor="" x="785.37" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1137
</g>
1138
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1139
<title>__close (4 samples, 0.01%)</title><rect x="1173.7" y="325" width="0.1" height="15.0" fill="rgb(208,150,47)" rx="2" ry="2" />
1140
<text text-anchor="" x="1176.71" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1141
</g>
1142
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1143
<title>poll_freewait (14 samples, 0.04%)</title><rect x="1110.2" y="229" width="0.5" height="15.0" fill="rgb(237,177,49)" rx="2" ry="2" />
1144
<text text-anchor="" x="1113.24" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1145
</g>
1146
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1147
<title>preempt_count_add (76 samples, 0.22%)</title><rect x="962.2" y="197" width="2.6" height="15.0" fill="rgb(252,227,52)" rx="2" ry="2" />
1148
<text text-anchor="" x="965.22" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1149
</g>
1150
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1151
<title>preempt_count_sub (23 samples, 0.07%)</title><rect x="574.6" y="117" width="0.8" height="15.0" fill="rgb(214,9,18)" rx="2" ry="2" />
1152
<text text-anchor="" x="577.61" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1153
</g>
1154
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1155
<title>entry_SYSCALL_64_after_hwframe (171 samples, 0.50%)</title><rect x="1180.2" y="309" width="5.9" height="15.0" fill="rgb(243,115,31)" rx="2" ry="2" />
1156
<text text-anchor="" x="1183.23" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1157
</g>
1158
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1159
<title>cgroup_rstat_updated (5 samples, 0.01%)</title><rect x="1145.2" y="117" width="0.2" height="15.0" fill="rgb(222,144,31)" rx="2" ry="2" />
1160
<text text-anchor="" x="1148.18" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1161
</g>
1162
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1163
<title>preempt_count_add (94 samples, 0.27%)</title><rect x="870.8" y="117" width="3.3" height="15.0" fill="rgb(229,181,53)" rx="2" ry="2" />
1164
<text text-anchor="" x="873.83" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1165
</g>
1166
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1167
<title>__perf_event_task_sched_out (8 samples, 0.02%)</title><rect x="1142.6" y="165" width="0.3" height="15.0" fill="rgb(240,19,4)" rx="2" ry="2" />
1168
<text text-anchor="" x="1145.61" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1169
</g>
1170
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1171
<title>irq_work_interrupt (4 samples, 0.01%)</title><rect x="1046.5" y="293" width="0.1" height="15.0" fill="rgb(219,102,27)" rx="2" ry="2" />
1172
<text text-anchor="" x="1049.46" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1173
</g>
1174
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1175
<title>__x64_sys_exit_group (3 samples, 0.01%)</title><rect x="1189.8" y="293" width="0.1" height="15.0" fill="rgb(221,108,46)" rx="2" ry="2" />
1176
<text text-anchor="" x="1192.79" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1177
</g>
1178
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1179
<title>hrtimer_interrupt (3 samples, 0.01%)</title><rect x="686.6" y="229" width="0.1" height="15.0" fill="rgb(217,129,29)" rx="2" ry="2" />
1180
<text text-anchor="" x="689.56" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1181
</g>
1182
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1183
<title>dequeue_task_rt (37 samples, 0.11%)</title><rect x="1144.3" y="165" width="1.2" height="15.0" fill="rgb(218,71,20)" rx="2" ry="2" />
1184
<text text-anchor="" x="1147.26" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1185
</g>
1186
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1187
<title>entry_SYSCALL_64_after_hwframe (27,232 samples, 79.13%)</title><rect x="112.6" y="293" width="933.8" height="15.0" fill="rgb(206,93,25)" rx="2" ry="2" />
1188
<text text-anchor="" x="115.59" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >entry_SYSCALL_64_after_hwframe</text>
1189
</g>
1190
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1191
<title>preempt_count_add (125 samples, 0.36%)</title><rect x="357.1" y="165" width="4.3" height="15.0" fill="rgb(213,209,35)" rx="2" ry="2" />
1192
<text text-anchor="" x="360.15" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1193
</g>
1194
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1195
<title>memcg_kmem_get_cache (663 samples, 1.93%)</title><rect x="436.3" y="149" width="22.7" height="15.0" fill="rgb(249,110,48)" rx="2" ry="2" />
1196
<text text-anchor="" x="439.29" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >m..</text>
1197
</g>
1198
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1199
<title>do_timerfd_settime (77 samples, 0.22%)</title><rect x="1153.9" y="245" width="2.6" height="15.0" fill="rgb(229,68,22)" rx="2" ry="2" />
1200
<text text-anchor="" x="1156.89" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1201
</g>
1202
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1203
<title>schedule_tail (6 samples, 0.02%)</title><rect x="14.6" y="261" width="0.2" height="15.0" fill="rgb(247,24,52)" rx="2" ry="2" />
1204
<text text-anchor="" x="17.59" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1205
</g>
1206
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1207
<title>__x86_indirect_thunk_rax (3 samples, 0.01%)</title><rect x="807.9" y="149" width="0.2" height="15.0" fill="rgb(220,177,52)" rx="2" ry="2" />
1208
<text text-anchor="" x="810.95" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1209
</g>
1210
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1211
<title>__check_object_size (6 samples, 0.02%)</title><rect x="1170.5" y="165" width="0.2" height="15.0" fill="rgb(210,153,22)" rx="2" ry="2" />
1212
<text text-anchor="" x="1173.46" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1213
</g>
1214
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1215
<title>__destroy_inode (638 samples, 1.85%)</title><rect x="786.1" y="149" width="21.8" height="15.0" fill="rgb(251,31,26)" rx="2" ry="2" />
1216
<text text-anchor="" x="789.07" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
1217
</g>
1218
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1219
<title>entry_SYSCALL_64 (11 samples, 0.03%)</title><rect x="1179.9" y="309" width="0.3" height="15.0" fill="rgb(223,90,31)" rx="2" ry="2" />
1220
<text text-anchor="" x="1182.85" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1221
</g>
1222
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1223
<title>_copy_from_user (7 samples, 0.02%)</title><rect x="1156.5" y="213" width="0.3" height="15.0" fill="rgb(235,158,19)" rx="2" ry="2" />
1224
<text text-anchor="" x="1159.53" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1225
</g>
1226
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1227
<title>__hrtimer_run_queues (3 samples, 0.01%)</title><rect x="686.6" y="213" width="0.1" height="15.0" fill="rgb(224,40,31)" rx="2" ry="2" />
1228
<text text-anchor="" x="689.56" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1229
</g>
1230
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1231
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1189.8" y="325" width="0.1" height="15.0" fill="rgb(232,19,24)" rx="2" ry="2" />
1232
<text text-anchor="" x="1192.79" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1233
</g>
1234
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1235
<title>__strcmp_avx2 (11 samples, 0.03%)</title><rect x="1187.5" y="293" width="0.3" height="15.0" fill="rgb(252,33,29)" rx="2" ry="2" />
1236
<text text-anchor="" x="1190.46" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1237
</g>
1238
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1239
<title>debug_smp_processor_id (10 samples, 0.03%)</title><rect x="837.9" y="101" width="0.4" height="15.0" fill="rgb(218,155,0)" rx="2" ry="2" />
1240
<text text-anchor="" x="840.92" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1241
</g>
1242
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1243
<title>__mod_lruvec_state (133 samples, 0.39%)</title><rect x="546.4" y="85" width="4.5" height="15.0" fill="rgb(238,177,25)" rx="2" ry="2" />
1244
<text text-anchor="" x="549.39" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1245
</g>
1246
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1247
<title>put_pid (11 samples, 0.03%)</title><rect x="1164.7" y="181" width="0.4" height="15.0" fill="rgb(238,73,9)" rx="2" ry="2" />
1248
<text text-anchor="" x="1167.73" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1249
</g>
1250
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1251
<title>dequeue_task_rt (27 samples, 0.08%)</title><rect x="1114.2" y="165" width="0.9" height="15.0" fill="rgb(221,123,18)" rx="2" ry="2" />
1252
<text text-anchor="" x="1117.15" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1253
</g>
1254
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1255
<title>__lll_unlock_wake (70 samples, 0.20%)</title><rect x="1174.0" y="325" width="2.4" height="15.0" fill="rgb(215,158,34)" rx="2" ry="2" />
1256
<text text-anchor="" x="1177.02" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1257
</g>
1258
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1259
<title>prepare_ring (3 samples, 0.01%)</title><rect x="1168.9" y="117" width="0.1" height="15.0" fill="rgb(247,162,41)" rx="2" ry="2" />
1260
<text text-anchor="" x="1171.95" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1261
</g>
1262
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1263
<title>in_lock_functions (24 samples, 0.07%)</title><rect x="763.0" y="165" width="0.8" height="15.0" fill="rgb(234,161,3)" rx="2" ry="2" />
1264
<text text-anchor="" x="765.99" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1265
</g>
1266
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1267
<title>hrtimer_active (3 samples, 0.01%)</title><rect x="1149.4" y="181" width="0.1" height="15.0" fill="rgb(254,140,3)" rx="2" ry="2" />
1268
<text text-anchor="" x="1152.40" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1269
</g>
1270
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1271
<title>__intel_pmu_enable_all.constprop.0 (6 samples, 0.02%)</title><rect x="14.6" y="213" width="0.2" height="15.0" fill="rgb(236,206,26)" rx="2" ry="2" />
1272
<text text-anchor="" x="17.59" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1273
</g>
1274
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1275
<title>__alloc_pages_nodemask (99 samples, 0.29%)</title><rect x="541.0" y="85" width="3.4" height="15.0" fill="rgb(211,127,0)" rx="2" ry="2" />
1276
<text text-anchor="" x="544.01" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1277
</g>
1278
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1279
<title>do_lookup_x (4 samples, 0.01%)</title><rect x="15.3" y="293" width="0.1" height="15.0" fill="rgb(212,20,47)" rx="2" ry="2" />
1280
<text text-anchor="" x="18.28" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1281
</g>
1282
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1283
<title>__zone_watermark_ok (4 samples, 0.01%)</title><rect x="543.5" y="53" width="0.1" height="15.0" fill="rgb(217,28,38)" rx="2" ry="2" />
1284
<text text-anchor="" x="546.47" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1285
</g>
1286
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1287
<title>lime::LMS64CProtocol::PreparePacket (3 samples, 0.01%)</title><rect x="1178.3" y="325" width="0.1" height="15.0" fill="rgb(249,6,23)" rx="2" ry="2" />
1288
<text text-anchor="" x="1181.31" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1289
</g>
1290
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1291
<title>in_lock_functions (15 samples, 0.04%)</title><rect x="587.4" y="133" width="0.5" height="15.0" fill="rgb(222,226,46)" rx="2" ry="2" />
1292
<text text-anchor="" x="590.36" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1293
</g>
1294
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1295
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1187.1" y="293" width="0.2" height="15.0" fill="rgb(235,131,8)" rx="2" ry="2" />
1296
<text text-anchor="" x="1190.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1297
</g>
1298
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1299
<title>sh (79 samples, 0.23%)</title><rect x="1187.3" y="341" width="2.7" height="15.0" fill="rgb(253,33,44)" rx="2" ry="2" />
1300
<text text-anchor="" x="1190.29" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1301
</g>
1302
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1303
<title>__call_rcu (565 samples, 1.64%)</title><rect x="708.3" y="229" width="19.4" height="15.0" fill="rgb(243,196,4)" rx="2" ry="2" />
1304
<text text-anchor="" x="711.34" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1305
</g>
1306
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1307
<title>__rcu_read_lock (15 samples, 0.04%)</title><rect x="685.1" y="181" width="0.5" height="15.0" fill="rgb(252,222,36)" rx="2" ry="2" />
1308
<text text-anchor="" x="688.09" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1309
</g>
1310
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1311
<title>__x64_sys_timerfd_settime (3 samples, 0.01%)</title><rect x="1156.9" y="261" width="0.1" height="15.0" fill="rgb(213,200,43)" rx="2" ry="2" />
1312
<text text-anchor="" x="1159.95" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1313
</g>
1314
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1315
<title>_raw_spin_lock_irq (262 samples, 0.76%)</title><rect x="865.1" y="133" width="9.0" height="15.0" fill="rgb(254,61,54)" rx="2" ry="2" />
1316
<text text-anchor="" x="868.07" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1317
</g>
1318
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1319
<title>_copy_from_user (3 samples, 0.01%)</title><rect x="1163.4" y="197" width="0.1" height="15.0" fill="rgb(243,152,12)" rx="2" ry="2" />
1320
<text text-anchor="" x="1166.39" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1321
</g>
1322
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1323
<title>ctx_sched_out (7 samples, 0.02%)</title><rect x="1142.6" y="149" width="0.3" height="15.0" fill="rgb(212,53,8)" rx="2" ry="2" />
1324
<text text-anchor="" x="1145.65" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1325
</g>
1326
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1327
<title>errseq_sample (18 samples, 0.05%)</title><rect x="588.7" y="181" width="0.6" height="15.0" fill="rgb(226,18,41)" rx="2" ry="2" />
1328
<text text-anchor="" x="591.70" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1329
</g>
1330
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1331
<title>page_counter_try_charge (33 samples, 0.10%)</title><rect x="544.5" y="69" width="1.1" height="15.0" fill="rgb(224,122,2)" rx="2" ry="2" />
1332
<text text-anchor="" x="547.50" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1333
</g>
1334
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1335
<title>sock_alloc (2,978 samples, 8.65%)</title><rect x="376.0" y="229" width="102.2" height="15.0" fill="rgb(211,46,36)" rx="2" ry="2" />
1336
<text text-anchor="" x="379.04" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sock_alloc</text>
1337
</g>
1338
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1339
<title>__clone (18 samples, 0.05%)</title><rect x="1173.1" y="325" width="0.6" height="15.0" fill="rgb(225,124,7)" rx="2" ry="2" />
1340
<text text-anchor="" x="1176.10" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1341
</g>
1342
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1343
<title>new_slab (221 samples, 0.64%)</title><rect x="469.8" y="117" width="7.5" height="15.0" fill="rgb(212,153,24)" rx="2" ry="2" />
1344
<text text-anchor="" x="472.75" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1345
</g>
1346
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1347
<title>preempt_count_sub (37 samples, 0.11%)</title><rect x="461.3" y="133" width="1.3" height="15.0" fill="rgb(226,79,25)" rx="2" ry="2" />
1348
<text text-anchor="" x="464.28" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1349
</g>
1350
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1351
<title>x86_pmu_disable (4 samples, 0.01%)</title><rect x="1113.2" y="133" width="0.1" height="15.0" fill="rgb(218,8,38)" rx="2" ry="2" />
1352
<text text-anchor="" x="1116.19" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1353
</g>
1354
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1355
<title>should_failslab (9 samples, 0.03%)</title><rect x="462.6" y="149" width="0.3" height="15.0" fill="rgb(248,78,31)" rx="2" ry="2" />
1356
<text text-anchor="" x="465.55" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1357
</g>
1358
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1359
<title>_raw_spin_lock_irqsave (19 samples, 0.06%)</title><rect x="543.6" y="53" width="0.7" height="15.0" fill="rgb(224,105,40)" rx="2" ry="2" />
1360
<text text-anchor="" x="546.61" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1361
</g>
1362
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1363
<title>native_write_msr (6 samples, 0.02%)</title><rect x="14.6" y="197" width="0.2" height="15.0" fill="rgb(215,7,41)" rx="2" ry="2" />
1364
<text text-anchor="" x="17.59" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1365
</g>
1366
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1367
<title>__fdget (4 samples, 0.01%)</title><rect x="666.4" y="213" width="0.1" height="15.0" fill="rgb(253,182,44)" rx="2" ry="2" />
1368
<text text-anchor="" x="669.37" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1369
</g>
1370
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1371
<title>path_put (31 samples, 0.09%)</title><rect x="1028.9" y="229" width="1.0" height="15.0" fill="rgb(230,86,2)" rx="2" ry="2" />
1372
<text text-anchor="" x="1031.87" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1373
</g>
1374
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1375
<title>rcu_is_watching (57 samples, 0.17%)</title><rect x="720.6" y="213" width="1.9" height="15.0" fill="rgb(212,215,12)" rx="2" ry="2" />
1376
<text text-anchor="" x="723.58" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1377
</g>
1378
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1379
<title>put_prev_task_rt (4 samples, 0.01%)</title><rect x="1116.5" y="149" width="0.1" height="15.0" fill="rgb(235,130,25)" rx="2" ry="2" />
1380
<text text-anchor="" x="1119.48" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1381
</g>
1382
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1383
<title>_raw_spin_unlock (46 samples, 0.13%)</title><rect x="279.1" y="229" width="1.6" height="15.0" fill="rgb(243,112,3)" rx="2" ry="2" />
1384
<text text-anchor="" x="282.10" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1385
</g>
1386
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1387
<title>clear_inode (360 samples, 1.05%)</title><rect x="863.7" y="149" width="12.3" height="15.0" fill="rgb(230,121,37)" rx="2" ry="2" />
1388
<text text-anchor="" x="866.67" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1389
</g>
1390
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1391
<title>hrtimer_try_to_cancel (16 samples, 0.05%)</title><rect x="1111.8" y="197" width="0.5" height="15.0" fill="rgb(205,131,11)" rx="2" ry="2" />
1392
<text text-anchor="" x="1114.75" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1393
</g>
1394
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1395
<title>new_inode_pseudo (2,689 samples, 7.81%)</title><rect x="385.9" y="213" width="92.3" height="15.0" fill="rgb(220,26,1)" rx="2" ry="2" />
1396
<text text-anchor="" x="388.95" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >new_inode_p..</text>
1397
</g>
1398
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1399
<title>timerfd_poll (21 samples, 0.06%)</title><rect x="1118.0" y="229" width="0.7" height="15.0" fill="rgb(229,175,21)" rx="2" ry="2" />
1400
<text text-anchor="" x="1121.03" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1401
</g>
1402
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1403
<title>preempt_count_sub (26 samples, 0.08%)</title><rect x="279.8" y="213" width="0.9" height="15.0" fill="rgb(225,133,11)" rx="2" ry="2" />
1404
<text text-anchor="" x="282.79" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1405
</g>
1406
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1407
<title>tick_sched_timer (4 samples, 0.01%)</title><rect x="38.9" y="229" width="0.1" height="15.0" fill="rgb(208,47,41)" rx="2" ry="2" />
1408
<text text-anchor="" x="41.87" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1409
</g>
1410
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1411
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="1154.1" y="229" width="0.1" height="15.0" fill="rgb(215,77,9)" rx="2" ry="2" />
1412
<text text-anchor="" x="1157.10" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1413
</g>
1414
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1415
<title>preempt_count_sub (14 samples, 0.04%)</title><rect x="273.3" y="197" width="0.5" height="15.0" fill="rgb(240,16,40)" rx="2" ry="2" />
1416
<text text-anchor="" x="276.27" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1417
</g>
1418
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1419
<title>preempt_count_add (63 samples, 0.18%)</title><rect x="455.8" y="117" width="2.2" height="15.0" fill="rgb(253,191,18)" rx="2" ry="2" />
1420
<text text-anchor="" x="458.83" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1421
</g>
1422
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1423
<title>entry_SYSCALL_64_after_hwframe (47 samples, 0.14%)</title><rect x="1174.5" y="309" width="1.6" height="15.0" fill="rgb(208,127,26)" rx="2" ry="2" />
1424
<text text-anchor="" x="1177.54" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1425
</g>
1426
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1427
<title>alloc_inode (2,322 samples, 6.75%)</title><rect x="398.5" y="197" width="79.7" height="15.0" fill="rgb(236,145,16)" rx="2" ry="2" />
1428
<text text-anchor="" x="401.53" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >alloc_inode</text>
1429
</g>
1430
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1431
<title>_atomic_dec_and_lock (378 samples, 1.10%)</title><rect x="913.6" y="149" width="12.9" height="15.0" fill="rgb(252,13,52)" rx="2" ry="2" />
1432
<text text-anchor="" x="916.56" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1433
</g>
1434
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1435
<title>dequeue_rt_stack (10 samples, 0.03%)</title><rect x="1114.3" y="149" width="0.3" height="15.0" fill="rgb(218,71,4)" rx="2" ry="2" />
1436
<text text-anchor="" x="1117.25" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1437
</g>
1438
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1439
<title>do_futex (148 samples, 0.43%)</title><rect x="1180.9" y="261" width="5.1" height="15.0" fill="rgb(221,153,20)" rx="2" ry="2" />
1440
<text text-anchor="" x="1183.88" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1441
</g>
1442
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1443
<title>__intel_pmu_enable_all.constprop.0 (12 samples, 0.03%)</title><rect x="1173.3" y="245" width="0.4" height="15.0" fill="rgb(244,217,28)" rx="2" ry="2" />
1444
<text text-anchor="" x="1176.30" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1445
</g>
1446
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1447
<title>__mod_memcg_state (63 samples, 0.18%)</title><rect x="547.2" y="69" width="2.2" height="15.0" fill="rgb(249,143,32)" rx="2" ry="2" />
1448
<text text-anchor="" x="550.25" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1449
</g>
1450
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1451
<title>preempt_count_sub (37 samples, 0.11%)</title><rect x="306.8" y="181" width="1.3" height="15.0" fill="rgb(222,213,52)" rx="2" ry="2" />
1452
<text text-anchor="" x="309.81" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1453
</g>
1454
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1455
<title>__strlen_avx2 (3 samples, 0.01%)</title><rect x="1188.0" y="309" width="0.1" height="15.0" fill="rgb(213,166,42)" rx="2" ry="2" />
1456
<text text-anchor="" x="1190.98" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1457
</g>
1458
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1459
<title>preempt_count_sub (29 samples, 0.08%)</title><rect x="660.9" y="165" width="1.0" height="15.0" fill="rgb(221,50,43)" rx="2" ry="2" />
1460
<text text-anchor="" x="663.88" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1461
</g>
1462
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1463
<title>__fget (8 samples, 0.02%)</title><rect x="1155.9" y="197" width="0.3" height="15.0" fill="rgb(217,196,7)" rx="2" ry="2" />
1464
<text text-anchor="" x="1158.92" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1465
</g>
1466
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1467
<title>__x86_indirect_thunk_rax (8 samples, 0.02%)</title><rect x="752.0" y="213" width="0.3" height="15.0" fill="rgb(222,164,16)" rx="2" ry="2" />
1468
<text text-anchor="" x="755.02" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1469
</g>
1470
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1471
<title>[unknown] (6 samples, 0.02%)</title><rect x="10.0" y="325" width="0.2" height="15.0" fill="rgb(212,5,42)" rx="2" ry="2" />
1472
<text text-anchor="" x="13.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1473
</g>
1474
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1475
<title>kmem_cache_free (447 samples, 1.30%)</title><rect x="808.1" y="149" width="15.3" height="15.0" fill="rgb(236,208,44)" rx="2" ry="2" />
1476
<text text-anchor="" x="811.05" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1477
</g>
1478
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1479
<title>all (34,413 samples, 100%)</title><rect x="10.0" y="357" width="1180.0" height="15.0" fill="rgb(249,62,24)" rx="2" ry="2" />
1480
<text text-anchor="" x="13.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1481
</g>
1482
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1483
<title>__local_bh_enable_ip (254 samples, 0.74%)</title><rect x="326.6" y="197" width="8.7" height="15.0" fill="rgb(228,54,40)" rx="2" ry="2" />
1484
<text text-anchor="" x="329.59" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1485
</g>
1486
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1487
<title>preempt_count_sub (28 samples, 0.08%)</title><rect x="397.6" y="181" width="0.9" height="15.0" fill="rgb(210,184,0)" rx="2" ry="2" />
1488
<text text-anchor="" x="400.57" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1489
</g>
1490
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1491
<title>do_sys_poll (332 samples, 0.96%)</title><rect x="1107.9" y="245" width="11.4" height="15.0" fill="rgb(239,138,8)" rx="2" ry="2" />
1492
<text text-anchor="" x="1110.88" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1493
</g>
1494
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1495
<title>do_vfs_ioctl (250 samples, 0.73%)</title><rect x="1162.3" y="245" width="8.6" height="15.0" fill="rgb(232,21,15)" rx="2" ry="2" />
1496
<text text-anchor="" x="1165.29" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1497
</g>
1498
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1499
<title>__audit_syscall_exit (6 samples, 0.02%)</title><rect x="1171.1" y="261" width="0.2" height="15.0" fill="rgb(218,130,17)" rx="2" ry="2" />
1500
<text text-anchor="" x="1174.11" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1501
</g>
1502
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1503
<title>cfree@GLIBC_2.2.5 (9 samples, 0.03%)</title><rect x="1136.9" y="309" width="0.3" height="15.0" fill="rgb(218,152,43)" rx="2" ry="2" />
1504
<text text-anchor="" x="1139.89" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1505
</g>
1506
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1507
<title>do_syscall_64 (156 samples, 0.45%)</title><rect x="1152.2" y="277" width="5.3" height="15.0" fill="rgb(232,129,5)" rx="2" ry="2" />
1508
<text text-anchor="" x="1155.18" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1509
</g>
1510
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1511
<title>in_lock_functions (25 samples, 0.07%)</title><rect x="396.0" y="165" width="0.9" height="15.0" fill="rgb(206,12,35)" rx="2" ry="2" />
1512
<text text-anchor="" x="399.00" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1513
</g>
1514
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1515
<title>cgroup_rstat_updated (3 samples, 0.01%)</title><rect x="1114.9" y="117" width="0.1" height="15.0" fill="rgb(236,8,3)" rx="2" ry="2" />
1516
<text text-anchor="" x="1117.91" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1517
</g>
1518
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1519
<title>__libc_accept (31,673 samples, 92.04%)</title><rect x="17.1" y="309" width="1086.0" height="15.0" fill="rgb(242,151,54)" rx="2" ry="2" />
1520
<text text-anchor="" x="20.10" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__libc_accept</text>
1521
</g>
1522
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1523
<title>futex_wait_setup (16 samples, 0.05%)</title><rect x="1148.6" y="213" width="0.6" height="15.0" fill="rgb(232,155,48)" rx="2" ry="2" />
1524
<text text-anchor="" x="1151.65" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1525
</g>
1526
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1527
<title>__mod_node_page_state (6 samples, 0.02%)</title><rect x="474.3" y="101" width="0.3" height="15.0" fill="rgb(225,145,8)" rx="2" ry="2" />
1528
<text text-anchor="" x="477.35" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1529
</g>
1530
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1531
<title>dl_main (3 samples, 0.01%)</title><rect x="1136.0" y="293" width="0.1" height="15.0" fill="rgb(219,79,22)" rx="2" ry="2" />
1532
<text text-anchor="" x="1139.03" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1533
</g>
1534
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1535
<title>get_futex_key (3 samples, 0.01%)</title><rect x="1175.6" y="229" width="0.1" height="15.0" fill="rgb(254,178,19)" rx="2" ry="2" />
1536
<text text-anchor="" x="1178.56" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1537
</g>
1538
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1539
<title>usb_hcd_link_urb_to_ep (3 samples, 0.01%)</title><rect x="1169.0" y="117" width="0.2" height="15.0" fill="rgb(213,193,47)" rx="2" ry="2" />
1540
<text text-anchor="" x="1172.05" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1541
</g>
1542
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1543
<title>hrtimer_active (8 samples, 0.02%)</title><rect x="1155.4" y="213" width="0.3" height="15.0" fill="rgb(239,148,35)" rx="2" ry="2" />
1544
<text text-anchor="" x="1158.40" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1545
</g>
1546
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1547
<title>queue_trb (6 samples, 0.02%)</title><rect x="1169.2" y="133" width="0.2" height="15.0" fill="rgb(230,173,6)" rx="2" ry="2" />
1548
<text text-anchor="" x="1172.19" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1549
</g>
1550
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1551
<title>handle_mm_fault (4 samples, 0.01%)</title><rect x="1177.8" y="261" width="0.1" height="15.0" fill="rgb(246,55,16)" rx="2" ry="2" />
1552
<text text-anchor="" x="1180.76" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1553
</g>
1554
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1555
<title>__fget_light (9 samples, 0.03%)</title><rect x="1162.0" y="245" width="0.3" height="15.0" fill="rgb(241,130,42)" rx="2" ry="2" />
1556
<text text-anchor="" x="1164.99" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1557
</g>
1558
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1559
<title>_raw_spin_lock_irqsave (6 samples, 0.02%)</title><rect x="1149.5" y="165" width="0.2" height="15.0" fill="rgb(228,114,45)" rx="2" ry="2" />
1560
<text text-anchor="" x="1152.54" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1561
</g>
1562
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1563
<title>inode_wait_for_writeback (333 samples, 0.97%)</title><rect x="876.0" y="149" width="11.4" height="15.0" fill="rgb(206,2,45)" rx="2" ry="2" />
1564
<text text-anchor="" x="879.01" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1565
</g>
1566
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1567
<title>do_filp_open (9 samples, 0.03%)</title><rect x="15.7" y="245" width="0.3" height="15.0" fill="rgb(236,151,40)" rx="2" ry="2" />
1568
<text text-anchor="" x="18.69" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1569
</g>
1570
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1571
<title>preempt_count_sub (28 samples, 0.08%)</title><rect x="633.4" y="133" width="1.0" height="15.0" fill="rgb(247,177,14)" rx="2" ry="2" />
1572
<text text-anchor="" x="636.45" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1573
</g>
1574
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1575
<title>__x64_sys_accept (13,087 samples, 38.03%)</title><rect x="237.7" y="261" width="448.8" height="15.0" fill="rgb(216,2,45)" rx="2" ry="2" />
1576
<text text-anchor="" x="240.72" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__x64_sys_accept</text>
1577
</g>
1578
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1579
<title>in_lock_functions (7 samples, 0.02%)</title><rect x="633.2" y="117" width="0.2" height="15.0" fill="rgb(209,76,43)" rx="2" ry="2" />
1580
<text text-anchor="" x="636.21" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1581
</g>
1582
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1583
<title>[libLimeSuite.so.19.04.0] (6 samples, 0.02%)</title><rect x="11.5" y="277" width="0.2" height="15.0" fill="rgb(229,24,30)" rx="2" ry="2" />
1584
<text text-anchor="" x="14.54" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1585
</g>
1586
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1587
<title>__intel_pmu_enable_all.constprop.0 (3 samples, 0.01%)</title><rect x="1145.7" y="133" width="0.1" height="15.0" fill="rgb(246,104,21)" rx="2" ry="2" />
1588
<text text-anchor="" x="1148.73" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1589
</g>
1590
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1591
<title>preempt_count_add (68 samples, 0.20%)</title><rect x="566.8" y="101" width="2.3" height="15.0" fill="rgb(249,53,38)" rx="2" ry="2" />
1592
<text text-anchor="" x="569.79" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1593
</g>
1594
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1595
<title>syscall_return_via_sysret (17 samples, 0.05%)</title><rect x="1186.1" y="309" width="0.6" height="15.0" fill="rgb(244,125,33)" rx="2" ry="2" />
1596
<text text-anchor="" x="1189.09" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1597
</g>
1598
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1599
<title>__this_cpu_preempt_check (9 samples, 0.03%)</title><rect x="585.3" y="149" width="0.3" height="15.0" fill="rgb(214,159,22)" rx="2" ry="2" />
1600
<text text-anchor="" x="588.27" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1601
</g>
1602
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1603
<title>inode_init_always (368 samples, 1.07%)</title><rect x="400.0" y="181" width="12.6" height="15.0" fill="rgb(225,228,24)" rx="2" ry="2" />
1604
<text text-anchor="" x="403.01" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1605
</g>
1606
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1607
<title>__intel_pmu_enable_all.constprop.0 (6 samples, 0.02%)</title><rect x="1187.1" y="165" width="0.2" height="15.0" fill="rgb(226,85,52)" rx="2" ry="2" />
1608
<text text-anchor="" x="1190.09" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1609
</g>
1610
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1611
<title>_raw_spin_lock (282 samples, 0.82%)</title><rect x="650.9" y="181" width="9.6" height="15.0" fill="rgb(225,206,22)" rx="2" ry="2" />
1612
<text text-anchor="" x="653.87" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1613
</g>
1614
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1615
<title>preempt_count_sub (31 samples, 0.09%)</title><rect x="482.6" y="181" width="1.1" height="15.0" fill="rgb(222,18,53)" rx="2" ry="2" />
1616
<text text-anchor="" x="485.64" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1617
</g>
1618
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1619
<title>fput_many (6 samples, 0.02%)</title><rect x="1109.6" y="229" width="0.2" height="15.0" fill="rgb(246,173,43)" rx="2" ry="2" />
1620
<text text-anchor="" x="1112.63" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1621
</g>
1622
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1623
<title>mntput (13 samples, 0.04%)</title><rect x="1028.4" y="229" width="0.5" height="15.0" fill="rgb(245,100,34)" rx="2" ry="2" />
1624
<text text-anchor="" x="1031.43" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1625
</g>
1626
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1627
<title>__waitpid (7 samples, 0.02%)</title><rect x="1177.2" y="325" width="0.3" height="15.0" fill="rgb(235,206,22)" rx="2" ry="2" />
1628
<text text-anchor="" x="1180.21" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1629
</g>
1630
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1631
<title>__sock_release (631 samples, 1.83%)</title><rect x="972.8" y="197" width="21.6" height="15.0" fill="rgb(236,151,33)" rx="2" ry="2" />
1632
<text text-anchor="" x="975.81" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
1633
</g>
1634
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1635
<title>_raw_spin_unlock (45 samples, 0.13%)</title><rect x="777.8" y="165" width="1.5" height="15.0" fill="rgb(233,189,48)" rx="2" ry="2" />
1636
<text text-anchor="" x="780.77" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1637
</g>
1638
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1639
<title>find_next_zero_bit (81 samples, 0.24%)</title><rect x="276.2" y="213" width="2.7" height="15.0" fill="rgb(253,149,31)" rx="2" ry="2" />
1640
<text text-anchor="" x="279.15" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1641
</g>
1642
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1643
<title>finish_task_switch (17 samples, 0.05%)</title><rect x="1145.5" y="165" width="0.6" height="15.0" fill="rgb(207,162,50)" rx="2" ry="2" />
1644
<text text-anchor="" x="1148.53" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1645
</g>
1646
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1647
<title>fput_many (785 samples, 2.28%)</title><rect x="281.2" y="229" width="26.9" height="15.0" fill="rgb(227,15,5)" rx="2" ry="2" />
1648
<text text-anchor="" x="284.16" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >f..</text>
1649
</g>
1650
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1651
<title>kmem_cache_alloc (1,851 samples, 5.38%)</title><rect x="518.1" y="149" width="63.5" height="15.0" fill="rgb(224,66,0)" rx="2" ry="2" />
1652
<text text-anchor="" x="521.13" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >kmem_c..</text>
1653
</g>
1654
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1655
<title>__do_page_fault (3 samples, 0.01%)</title><rect x="1188.5" y="229" width="0.1" height="15.0" fill="rgb(238,76,13)" rx="2" ry="2" />
1656
<text text-anchor="" x="1191.46" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1657
</g>
1658
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1659
<title>preempt_count_add (63 samples, 0.18%)</title><rect x="627.1" y="117" width="2.1" height="15.0" fill="rgb(233,127,13)" rx="2" ry="2" />
1660
<text text-anchor="" x="630.07" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1661
</g>
1662
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1663
<title>in_lock_functions (24 samples, 0.07%)</title><rect x="859.6" y="117" width="0.8" height="15.0" fill="rgb(236,12,36)" rx="2" ry="2" />
1664
<text text-anchor="" x="862.55" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1665
</g>
1666
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1667
<title>debug_smp_processor_id (19 samples, 0.06%)</title><rect x="381.9" y="197" width="0.7" height="15.0" fill="rgb(236,79,50)" rx="2" ry="2" />
1668
<text text-anchor="" x="384.94" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1669
</g>
1670
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1671
<title>kfree (3 samples, 0.01%)</title><rect x="1165.1" y="197" width="0.1" height="15.0" fill="rgb(239,116,4)" rx="2" ry="2" />
1672
<text text-anchor="" x="1168.14" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1673
</g>
1674
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1675
<title>set_next_entity (9 samples, 0.03%)</title><rect x="1146.5" y="149" width="0.3" height="15.0" fill="rgb(211,107,8)" rx="2" ry="2" />
1676
<text text-anchor="" x="1149.45" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1677
</g>
1678
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1679
<title>usb_hcd_submit_urb (57 samples, 0.17%)</title><rect x="1167.5" y="181" width="2.0" height="15.0" fill="rgb(236,201,28)" rx="2" ry="2" />
1680
<text text-anchor="" x="1170.51" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1681
</g>
1682
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1683
<title>put_unused_fd (274 samples, 0.80%)</title><rect x="365.9" y="229" width="9.4" height="15.0" fill="rgb(249,66,47)" rx="2" ry="2" />
1684
<text text-anchor="" x="368.89" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1685
</g>
1686
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1687
<title>[libm-2.29.so] (3 samples, 0.01%)</title><rect x="10.6" y="325" width="0.1" height="15.0" fill="rgb(246,107,44)" rx="2" ry="2" />
1688
<text text-anchor="" x="13.62" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1689
</g>
1690
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1691
<title>preempt_count_sub (30 samples, 0.09%)</title><rect x="926.9" y="133" width="1.0" height="15.0" fill="rgb(225,142,25)" rx="2" ry="2" />
1692
<text text-anchor="" x="929.86" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1693
</g>
1694
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1695
<title>__pthread_mutex_unlock (4 samples, 0.01%)</title><rect x="1135.2" y="309" width="0.1" height="15.0" fill="rgb(222,11,29)" rx="2" ry="2" />
1696
<text text-anchor="" x="1138.21" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1697
</g>
1698
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1699
<title>_raw_spin_unlock_irq (57 samples, 0.17%)</title><rect x="874.1" y="133" width="1.9" height="15.0" fill="rgb(246,174,3)" rx="2" ry="2" />
1700
<text text-anchor="" x="877.06" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1701
</g>
1702
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1703
<title>mark_wake_futex (7 samples, 0.02%)</title><rect x="1181.5" y="229" width="0.2" height="15.0" fill="rgb(218,14,44)" rx="2" ry="2" />
1704
<text text-anchor="" x="1184.46" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1705
</g>
1706
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1707
<title>apic_timer_interrupt (3 samples, 0.01%)</title><rect x="823.2" y="133" width="0.1" height="15.0" fill="rgb(214,2,1)" rx="2" ry="2" />
1708
<text text-anchor="" x="826.24" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1709
</g>
1710
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1711
<title>_raw_spin_lock_irqsave (5 samples, 0.01%)</title><rect x="1166.4" y="181" width="0.2" height="15.0" fill="rgb(230,226,0)" rx="2" ry="2" />
1712
<text text-anchor="" x="1169.41" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1713
</g>
1714
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1715
<title>__fsnotify_inode_delete (11 samples, 0.03%)</title><rect x="787.8" y="133" width="0.4" height="15.0" fill="rgb(251,121,37)" rx="2" ry="2" />
1716
<text text-anchor="" x="790.79" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1717
</g>
1718
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1719
<title>__mod_node_page_state (33 samples, 0.10%)</title><rect x="549.4" y="69" width="1.1" height="15.0" fill="rgb(223,135,45)" rx="2" ry="2" />
1720
<text text-anchor="" x="552.41" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1721
</g>
1722
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1723
<title>do_syscall_64 (27,083 samples, 78.70%)</title><rect x="117.7" y="277" width="928.7" height="15.0" fill="rgb(252,174,48)" rx="2" ry="2" />
1724
<text text-anchor="" x="120.70" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_syscall_64</text>
1725
</g>
1726
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1727
<title>sigProcLibSetup (3 samples, 0.01%)</title><rect x="1105.1" y="229" width="0.1" height="15.0" fill="rgb(215,62,21)" rx="2" ry="2" />
1728
<text text-anchor="" x="1108.10" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1729
</g>
1730
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1731
<title>copy_urb_data_to_user (14 samples, 0.04%)</title><rect x="1170.4" y="181" width="0.5" height="15.0" fill="rgb(233,172,3)" rx="2" ry="2" />
1732
<text text-anchor="" x="1173.39" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1733
</g>
1734
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1735
<title>preempt_count_add (88 samples, 0.26%)</title><rect x="372.3" y="197" width="3.0" height="15.0" fill="rgb(233,92,3)" rx="2" ry="2" />
1736
<text text-anchor="" x="375.27" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1737
</g>
1738
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1739
<title>__srcu_read_unlock (168 samples, 0.49%)</title><rect x="799.4" y="101" width="5.8" height="15.0" fill="rgb(245,47,26)" rx="2" ry="2" />
1740
<text text-anchor="" x="802.44" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1741
</g>
1742
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1743
<title>new_slab (564 samples, 1.64%)</title><rect x="536.0" y="101" width="19.4" height="15.0" fill="rgb(207,181,44)" rx="2" ry="2" />
1744
<text text-anchor="" x="539.03" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1745
</g>
1746
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1747
<title>__audit_syscall_exit (342 samples, 0.99%)</title><rect x="1019.7" y="245" width="11.7" height="15.0" fill="rgb(224,139,8)" rx="2" ry="2" />
1748
<text text-anchor="" x="1022.72" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1749
</g>
1750
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1751
<title>preempt_count_add (97 samples, 0.28%)</title><rect x="774.4" y="149" width="3.4" height="15.0" fill="rgb(248,49,34)" rx="2" ry="2" />
1752
<text text-anchor="" x="777.45" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1753
</g>
1754
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1755
<title>pick_next_task_fair (14 samples, 0.04%)</title><rect x="1115.8" y="165" width="0.5" height="15.0" fill="rgb(248,192,22)" rx="2" ry="2" />
1756
<text text-anchor="" x="1118.83" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1757
</g>
1758
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1759
<title>_raw_spin_lock (297 samples, 0.86%)</title><rect x="386.7" y="197" width="10.2" height="15.0" fill="rgb(240,46,47)" rx="2" ry="2" />
1760
<text text-anchor="" x="389.74" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1761
</g>
1762
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1763
<title>make_kuid (65 samples, 0.19%)</title><rect x="409.1" y="165" width="2.2" height="15.0" fill="rgb(205,149,33)" rx="2" ry="2" />
1764
<text text-anchor="" x="412.06" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1765
</g>
1766
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1767
<title>lock_hrtimer_base.isra.0 (6 samples, 0.02%)</title><rect x="1142.0" y="181" width="0.2" height="15.0" fill="rgb(244,30,13)" rx="2" ry="2" />
1768
<text text-anchor="" x="1144.96" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1769
</g>
1770
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1771
<title>__slab_alloc.isra.0 (620 samples, 1.80%)</title><rect x="534.1" y="133" width="21.3" height="15.0" fill="rgb(241,192,36)" rx="2" ry="2" />
1772
<text text-anchor="" x="537.15" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
1773
</g>
1774
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1775
<title>__perf_event_task_sched_in (7 samples, 0.02%)</title><rect x="1177.2" y="181" width="0.3" height="15.0" fill="rgb(242,152,12)" rx="2" ry="2" />
1776
<text text-anchor="" x="1180.21" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1777
</g>
1778
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1779
<title>__alloc_file (4 samples, 0.01%)</title><rect x="12.3" y="165" width="0.1" height="15.0" fill="rgb(218,59,8)" rx="2" ry="2" />
1780
<text text-anchor="" x="15.30" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1781
</g>
1782
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1783
<title>__alloc_fd (597 samples, 1.73%)</title><rect x="258.5" y="229" width="20.4" height="15.0" fill="rgb(217,114,17)" rx="2" ry="2" />
1784
<text text-anchor="" x="261.46" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1785
</g>
1786
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1787
<title>ksys_ioctl (268 samples, 0.78%)</title><rect x="1161.8" y="261" width="9.2" height="15.0" fill="rgb(250,176,26)" rx="2" ry="2" />
1788
<text text-anchor="" x="1164.81" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1789
</g>
1790
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1791
<title>xhci_queue_bulk_tx (21 samples, 0.06%)</title><rect x="1168.7" y="149" width="0.8" height="15.0" fill="rgb(207,114,25)" rx="2" ry="2" />
1792
<text text-anchor="" x="1171.74" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1793
</g>
1794
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1795
<title>__libc_start_main (52 samples, 0.15%)</title><rect x="1103.4" y="309" width="1.8" height="15.0" fill="rgb(242,31,21)" rx="2" ry="2" />
1796
<text text-anchor="" x="1106.42" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1797
</g>
1798
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1799
<title>__rcu_read_unlock (21 samples, 0.06%)</title><rect x="626.4" y="117" width="0.7" height="15.0" fill="rgb(226,151,16)" rx="2" ry="2" />
1800
<text text-anchor="" x="629.35" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1801
</g>
1802
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1803
<title>__audit_syscall_exit (8 samples, 0.02%)</title><rect x="1120.2" y="245" width="0.3" height="15.0" fill="rgb(211,24,40)" rx="2" ry="2" />
1804
<text text-anchor="" x="1123.19" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1805
</g>
1806
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1807
<title>d_set_d_op (62 samples, 0.18%)</title><rect x="593.5" y="165" width="2.1" height="15.0" fill="rgb(206,65,43)" rx="2" ry="2" />
1808
<text text-anchor="" x="596.50" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1809
</g>
1810
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1811
<title>finish_task_switch (18 samples, 0.05%)</title><rect x="16.1" y="261" width="0.7" height="15.0" fill="rgb(218,150,4)" rx="2" ry="2" />
1812
<text text-anchor="" x="19.14" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1813
</g>
1814
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1815
<title>___slab_alloc (241 samples, 0.70%)</title><rect x="469.1" y="133" width="8.2" height="15.0" fill="rgb(240,151,46)" rx="2" ry="2" />
1816
<text text-anchor="" x="472.07" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1817
</g>
1818
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1819
<title>ktime_get (9 samples, 0.03%)</title><rect x="1156.2" y="213" width="0.3" height="15.0" fill="rgb(252,43,23)" rx="2" ry="2" />
1820
<text text-anchor="" x="1159.22" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1821
</g>
1822
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1823
<title>setup_new_exec (6 samples, 0.02%)</title><rect x="1187.1" y="197" width="0.2" height="15.0" fill="rgb(215,117,54)" rx="2" ry="2" />
1824
<text text-anchor="" x="1190.09" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1825
</g>
1826
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1827
<title>irq_work_queue_on (22 samples, 0.06%)</title><rect x="1116.7" y="149" width="0.7" height="15.0" fill="rgb(212,188,7)" rx="2" ry="2" />
1828
<text text-anchor="" x="1119.69" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1829
</g>
1830
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1831
<title>__perf_event_task_sched_in (18 samples, 0.05%)</title><rect x="16.1" y="245" width="0.7" height="15.0" fill="rgb(213,224,0)" rx="2" ry="2" />
1832
<text text-anchor="" x="19.14" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1833
</g>
1834
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1835
<title>__fget (395 samples, 1.15%)</title><rect x="672.9" y="197" width="13.6" height="15.0" fill="rgb(215,25,38)" rx="2" ry="2" />
1836
<text text-anchor="" x="675.92" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1837
</g>
1838
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1839
<title>pipe_poll (12 samples, 0.03%)</title><rect x="1109.8" y="229" width="0.4" height="15.0" fill="rgb(207,91,40)" rx="2" ry="2" />
1840
<text text-anchor="" x="1112.83" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1841
</g>
1842
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1843
<title>preempt_count_add (70 samples, 0.20%)</title><rect x="382.6" y="197" width="2.4" height="15.0" fill="rgb(207,15,3)" rx="2" ry="2" />
1844
<text text-anchor="" x="385.59" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1845
</g>
1846
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1847
<title>rcu_segcblist_enqueue (150 samples, 0.44%)</title><rect x="722.5" y="213" width="5.2" height="15.0" fill="rgb(254,136,2)" rx="2" ry="2" />
1848
<text text-anchor="" x="725.53" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1849
</g>
1850
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1851
<title>__perf_event_task_sched_in (12 samples, 0.03%)</title><rect x="1173.3" y="261" width="0.4" height="15.0" fill="rgb(254,97,20)" rx="2" ry="2" />
1852
<text text-anchor="" x="1176.30" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1853
</g>
1854
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1855
<title>get_timespec64 (5 samples, 0.01%)</title><rect x="1150.0" y="245" width="0.2" height="15.0" fill="rgb(225,153,42)" rx="2" ry="2" />
1856
<text text-anchor="" x="1153.02" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1857
</g>
1858
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1859
<title>syscall_return_via_sysret (8 samples, 0.02%)</title><rect x="1176.1" y="309" width="0.3" height="15.0" fill="rgb(219,79,2)" rx="2" ry="2" />
1860
<text text-anchor="" x="1179.15" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1861
</g>
1862
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1863
<title>native_write_msr (3 samples, 0.01%)</title><rect x="1145.7" y="117" width="0.1" height="15.0" fill="rgb(238,91,35)" rx="2" ry="2" />
1864
<text text-anchor="" x="1148.73" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1865
</g>
1866
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1867
<title>security_file_alloc (49 samples, 0.14%)</title><rect x="581.6" y="149" width="1.7" height="15.0" fill="rgb(227,113,1)" rx="2" ry="2" />
1868
<text text-anchor="" x="584.60" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1869
</g>
1870
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1871
<title>rcu_is_watching (42 samples, 0.12%)</title><rect x="836.8" y="117" width="1.5" height="15.0" fill="rgb(229,187,26)" rx="2" ry="2" />
1872
<text text-anchor="" x="839.82" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1873
</g>
1874
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1875
<title>schedule (7 samples, 0.02%)</title><rect x="1177.2" y="229" width="0.3" height="15.0" fill="rgb(225,180,2)" rx="2" ry="2" />
1876
<text text-anchor="" x="1180.21" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1877
</g>
1878
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1879
<title>__module_get (5 samples, 0.01%)</title><rect x="278.9" y="229" width="0.2" height="15.0" fill="rgb(240,0,32)" rx="2" ry="2" />
1880
<text text-anchor="" x="281.93" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1881
</g>
1882
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1883
<title>record_times (4 samples, 0.01%)</title><rect x="1114.0" y="133" width="0.2" height="15.0" fill="rgb(241,28,5)" rx="2" ry="2" />
1884
<text text-anchor="" x="1117.01" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1885
</g>
1886
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1887
<title>kmem_cache_alloc_trace (9 samples, 0.03%)</title><rect x="1167.0" y="181" width="0.3" height="15.0" fill="rgb(243,5,34)" rx="2" ry="2" />
1888
<text text-anchor="" x="1169.96" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1889
</g>
1890
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1891
<title>ktime_get_coarse_real_ts64 (28 samples, 0.08%)</title><rect x="1045.3" y="245" width="1.0" height="15.0" fill="rgb(227,153,33)" rx="2" ry="2" />
1892
<text text-anchor="" x="1048.33" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1893
</g>
1894
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1895
<title>preempt_count_add (37 samples, 0.11%)</title><rect x="460.0" y="133" width="1.3" height="15.0" fill="rgb(254,28,0)" rx="2" ry="2" />
1896
<text text-anchor="" x="463.01" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1897
</g>
1898
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1899
<title>__x86_indirect_thunk_rax (7 samples, 0.02%)</title><rect x="994.5" y="229" width="0.3" height="15.0" fill="rgb(238,55,12)" rx="2" ry="2" />
1900
<text text-anchor="" x="997.52" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1901
</g>
1902
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1903
<title>pull_rt_task (8 samples, 0.02%)</title><rect x="1117.4" y="149" width="0.3" height="15.0" fill="rgb(219,215,20)" rx="2" ry="2" />
1904
<text text-anchor="" x="1120.44" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1905
</g>
1906
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1907
<title>update_rq_clock (6 samples, 0.02%)</title><rect x="1185.7" y="197" width="0.3" height="15.0" fill="rgb(246,206,26)" rx="2" ry="2" />
1908
<text text-anchor="" x="1188.75" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1909
</g>
1910
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1911
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="1168.5" y="149" width="0.1" height="15.0" fill="rgb(206,8,52)" rx="2" ry="2" />
1912
<text text-anchor="" x="1171.47" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1913
</g>
1914
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1915
<title>in_lock_functions (23 samples, 0.07%)</title><rect x="271.8" y="181" width="0.8" height="15.0" fill="rgb(221,187,34)" rx="2" ry="2" />
1916
<text text-anchor="" x="274.77" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1917
</g>
1918
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1919
<title>do_futex (15 samples, 0.04%)</title><rect x="1175.3" y="261" width="0.5" height="15.0" fill="rgb(234,61,40)" rx="2" ry="2" />
1920
<text text-anchor="" x="1178.26" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1921
</g>
1922
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1923
<title>hrtimer_try_to_cancel (13 samples, 0.04%)</title><rect x="1155.3" y="229" width="0.4" height="15.0" fill="rgb(242,223,35)" rx="2" ry="2" />
1924
<text text-anchor="" x="1158.26" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1925
</g>
1926
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1927
<title>[libudev.so.1.6.14] (3 samples, 0.01%)</title><rect x="1186.9" y="309" width="0.2" height="15.0" fill="rgb(248,25,19)" rx="2" ry="2" />
1928
<text text-anchor="" x="1189.95" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1929
</g>
1930
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1931
<title>preempt_count_add (52 samples, 0.15%)</title><rect x="305.0" y="181" width="1.8" height="15.0" fill="rgb(210,53,51)" rx="2" ry="2" />
1932
<text text-anchor="" x="308.03" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1933
</g>
1934
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1935
<title>__pthread_mutex_unlock_usercnt (14 samples, 0.04%)</title><rect x="1135.3" y="309" width="0.5" height="15.0" fill="rgb(206,84,39)" rx="2" ry="2" />
1936
<text text-anchor="" x="1138.34" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1937
</g>
1938
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1939
<title>__this_cpu_preempt_check (3 samples, 0.01%)</title><rect x="543.2" y="37" width="0.1" height="15.0" fill="rgb(238,140,5)" rx="2" ry="2" />
1940
<text text-anchor="" x="546.17" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1941
</g>
1942
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1943
<title>__update_load_avg_se (3 samples, 0.01%)</title><rect x="1146.6" y="133" width="0.1" height="15.0" fill="rgb(224,75,24)" rx="2" ry="2" />
1944
<text text-anchor="" x="1149.59" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1945
</g>
1946
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1947
<title>select_task_rq_rt (12 samples, 0.03%)</title><rect x="1182.4" y="197" width="0.4" height="15.0" fill="rgb(244,101,37)" rx="2" ry="2" />
1948
<text text-anchor="" x="1185.39" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1949
</g>
1950
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1951
<title>get_page_from_freelist (91 samples, 0.26%)</title><rect x="541.3" y="69" width="3.1" height="15.0" fill="rgb(222,224,21)" rx="2" ry="2" />
1952
<text text-anchor="" x="544.28" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1953
</g>
1954
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1955
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.03%)</title><rect x="15.7" y="293" width="0.3" height="15.0" fill="rgb(207,31,17)" rx="2" ry="2" />
1956
<text text-anchor="" x="18.69" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1957
</g>
1958
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1959
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="1155.2" y="197" width="0.1" height="15.0" fill="rgb(222,145,11)" rx="2" ry="2" />
1960
<text text-anchor="" x="1158.16" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1961
</g>
1962
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1963
<title>preempt_count_add (37 samples, 0.11%)</title><rect x="934.5" y="165" width="1.3" height="15.0" fill="rgb(243,201,18)" rx="2" ry="2" />
1964
<text text-anchor="" x="937.51" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1965
</g>
1966
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1967
<title>__x86_indirect_thunk_rax (3 samples, 0.01%)</title><rect x="686.5" y="261" width="0.1" height="15.0" fill="rgb(243,80,44)" rx="2" ry="2" />
1968
<text text-anchor="" x="689.46" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1969
</g>
1970
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1971
<title>__poll (454 samples, 1.32%)</title><rect x="1105.5" y="309" width="15.5" height="15.0" fill="rgb(208,218,6)" rx="2" ry="2" />
1972
<text text-anchor="" x="1108.48" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1973
</g>
1974
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1975
<title>in_lock_functions (6 samples, 0.02%)</title><rect x="629.0" y="101" width="0.2" height="15.0" fill="rgb(250,1,26)" rx="2" ry="2" />
1976
<text text-anchor="" x="632.03" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1977
</g>
1978
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1979
<title>perf (6 samples, 0.02%)</title><rect x="1187.1" y="341" width="0.2" height="15.0" fill="rgb(248,152,5)" rx="2" ry="2" />
1980
<text text-anchor="" x="1190.09" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1981
</g>
1982
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1983
<title>percpu_counter_add_batch (158 samples, 0.46%)</title><rect x="583.3" y="165" width="5.4" height="15.0" fill="rgb(252,76,28)" rx="2" ry="2" />
1984
<text text-anchor="" x="586.28" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1985
</g>
1986
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1987
<title>__rcu_read_unlock (17 samples, 0.05%)</title><rect x="751.4" y="213" width="0.6" height="15.0" fill="rgb(242,185,41)" rx="2" ry="2" />
1988
<text text-anchor="" x="754.44" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1989
</g>
1990
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1991
<title>dput (11 samples, 0.03%)</title><rect x="1029.6" y="213" width="0.3" height="15.0" fill="rgb(242,101,4)" rx="2" ry="2" />
1992
<text text-anchor="" x="1032.56" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1993
</g>
1994
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1995
<title>path_put (3 samples, 0.01%)</title><rect x="1157.1" y="229" width="0.1" height="15.0" fill="rgb(215,193,3)" rx="2" ry="2" />
1996
<text text-anchor="" x="1160.08" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1997
</g>
1998
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
1999
<title>generateEmptyBurst (13 samples, 0.04%)</title><rect x="1103.6" y="213" width="0.5" height="15.0" fill="rgb(234,202,49)" rx="2" ry="2" />
2000
<text text-anchor="" x="1106.63" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2001
</g>
2002
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2003
<title>blkcg_maybe_throttle_current (27 samples, 0.08%)</title><rect x="693.7" y="245" width="0.9" height="15.0" fill="rgb(216,32,44)" rx="2" ry="2" />
2004
<text text-anchor="" x="696.66" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2005
</g>
2006
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2007
<title>task_work_run (9,380 samples, 27.26%)</title><rect x="695.6" y="245" width="321.7" height="15.0" fill="rgb(240,135,34)" rx="2" ry="2" />
2008
<text text-anchor="" x="698.62" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >task_work_run</text>
2009
</g>
2010
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2011
<title>wake_up_q (124 samples, 0.36%)</title><rect x="1181.7" y="229" width="4.3" height="15.0" fill="rgb(205,152,19)" rx="2" ry="2" />
2012
<text text-anchor="" x="1184.70" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2013
</g>
2014
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2015
<title>schedule_tail (12 samples, 0.03%)</title><rect x="1173.3" y="293" width="0.4" height="15.0" fill="rgb(212,221,21)" rx="2" ry="2" />
2016
<text text-anchor="" x="1176.30" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2017
</g>
2018
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2019
<title>dequeue_rt_stack (5 samples, 0.01%)</title><rect x="1183.9" y="149" width="0.2" height="15.0" fill="rgb(224,28,52)" rx="2" ry="2" />
2020
<text text-anchor="" x="1186.93" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2021
</g>
2022
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2023
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="1182.1" y="197" width="0.2" height="15.0" fill="rgb(247,164,43)" rx="2" ry="2" />
2024
<text text-anchor="" x="1185.15" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2025
</g>
2026
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2027
<title>__audit_syscall_exit (3 samples, 0.01%)</title><rect x="1176.0" y="261" width="0.1" height="15.0" fill="rgb(229,115,41)" rx="2" ry="2" />
2028
<text text-anchor="" x="1178.98" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2029
</g>
2030
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2031
<title>_raw_spin_unlock (95 samples, 0.28%)</title><rect x="860.4" y="149" width="3.3" height="15.0" fill="rgb(239,201,8)" rx="2" ry="2" />
2032
<text text-anchor="" x="863.41" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2033
</g>
2034
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2035
<title>in_lock_functions (16 samples, 0.05%)</title><rect x="360.9" y="149" width="0.5" height="15.0" fill="rgb(221,125,16)" rx="2" ry="2" />
2036
<text text-anchor="" x="363.88" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2037
</g>
2038
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2039
<title>__inode_wait_for_writeback (73 samples, 0.21%)</title><rect x="876.5" y="133" width="2.5" height="15.0" fill="rgb(212,92,38)" rx="2" ry="2" />
2040
<text text-anchor="" x="879.49" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2041
</g>
2042
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2043
<title>[libusb-1.0.so.0.1.0] (44 samples, 0.13%)</title><rect x="12.6" y="309" width="1.5" height="15.0" fill="rgb(217,150,19)" rx="2" ry="2" />
2044
<text text-anchor="" x="15.57" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2045
</g>
2046
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2047
<title>mem_cgroup_handle_over_high (29 samples, 0.08%)</title><rect x="694.6" y="245" width="1.0" height="15.0" fill="rgb(236,109,53)" rx="2" ry="2" />
2048
<text text-anchor="" x="697.62" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2049
</g>
2050
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2051
<title>xhci_urb_enqueue (36 samples, 0.10%)</title><rect x="1168.2" y="165" width="1.3" height="15.0" fill="rgb(223,174,0)" rx="2" ry="2" />
2052
<text text-anchor="" x="1171.23" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2053
</g>
2054
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2055
<title>check_preempt_curr (9 samples, 0.03%)</title><rect x="1185.4" y="181" width="0.3" height="15.0" fill="rgb(218,141,13)" rx="2" ry="2" />
2056
<text text-anchor="" x="1188.41" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2057
</g>
2058
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2059
<title>entry_SYSCALL_64_after_hwframe (311 samples, 0.90%)</title><rect x="1140.0" y="293" width="10.7" height="15.0" fill="rgb(238,58,9)" rx="2" ry="2" />
2060
<text text-anchor="" x="1143.04" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2061
</g>
2062
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2063
<title>mutex_lock (12 samples, 0.03%)</title><rect x="1165.2" y="197" width="0.5" height="15.0" fill="rgb(229,215,54)" rx="2" ry="2" />
2064
<text text-anchor="" x="1168.24" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2065
</g>
2066
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2067
<title>debug_smp_processor_id (116 samples, 0.34%)</title><rect x="832.8" y="117" width="4.0" height="15.0" fill="rgb(239,228,4)" rx="2" ry="2" />
2068
<text text-anchor="" x="835.81" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2069
</g>
2070
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2071
<title>evict (1,935 samples, 5.62%)</title><rect x="844.2" y="165" width="66.3" height="15.0" fill="rgb(237,133,16)" rx="2" ry="2" />
2072
<text text-anchor="" x="847.16" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >evict</text>
2073
</g>
2074
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2075
<title>_copy_from_user (3 samples, 0.01%)</title><rect x="1150.1" y="229" width="0.1" height="15.0" fill="rgb(251,66,48)" rx="2" ry="2" />
2076
<text text-anchor="" x="1153.09" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2077
</g>
2078
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2079
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1187.1" y="309" width="0.2" height="15.0" fill="rgb(227,126,15)" rx="2" ry="2" />
2080
<text text-anchor="" x="1190.09" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2081
</g>
2082
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2083
<title>cgroup_base_stat_cputime_account_end.isra.0 (7 samples, 0.02%)</title><rect x="1145.2" y="133" width="0.2" height="15.0" fill="rgb(237,48,40)" rx="2" ry="2" />
2084
<text text-anchor="" x="1148.18" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2085
</g>
2086
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2087
<title>_raw_spin_lock (213 samples, 0.62%)</title><rect x="368.0" y="213" width="7.3" height="15.0" fill="rgb(221,159,43)" rx="2" ry="2" />
2088
<text text-anchor="" x="370.98" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2089
</g>
2090
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2091
<title>pthread_cond_timedwait@@GLIBC_2.3.2 (344 samples, 1.00%)</title><rect x="1139.3" y="309" width="11.7" height="15.0" fill="rgb(212,110,53)" rx="2" ry="2" />
2092
<text text-anchor="" x="1142.25" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2093
</g>
2094
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2095
<title>[libudev.so.1.6.14] (13 samples, 0.04%)</title><rect x="12.1" y="293" width="0.4" height="15.0" fill="rgb(208,64,18)" rx="2" ry="2" />
2096
<text text-anchor="" x="15.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2097
</g>
2098
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2099
<title>tick_sched_handle.isra.0 (3 samples, 0.01%)</title><rect x="686.6" y="181" width="0.1" height="15.0" fill="rgb(210,81,42)" rx="2" ry="2" />
2100
<text text-anchor="" x="689.56" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2101
</g>
2102
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2103
<title>_raw_spin_unlock_irq (133 samples, 0.39%)</title><rect x="1012.3" y="229" width="4.5" height="15.0" fill="rgb(224,199,16)" rx="2" ry="2" />
2104
<text text-anchor="" x="1015.28" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2105
</g>
2106
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2107
<title>timerqueue_del (3 samples, 0.01%)</title><rect x="1111.9" y="165" width="0.1" height="15.0" fill="rgb(248,125,45)" rx="2" ry="2" />
2108
<text text-anchor="" x="1114.85" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2109
</g>
2110
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2111
<title>setup_object_debug.isra.0 (23 samples, 0.07%)</title><rect x="476.5" y="101" width="0.8" height="15.0" fill="rgb(223,206,49)" rx="2" ry="2" />
2112
<text text-anchor="" x="479.54" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2113
</g>
2114
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2115
<title>poll_schedule_timeout.constprop.0 (211 samples, 0.61%)</title><rect x="1110.7" y="229" width="7.3" height="15.0" fill="rgb(221,95,0)" rx="2" ry="2" />
2116
<text text-anchor="" x="1113.72" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2117
</g>
2118
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2119
<title>__dentry_kill (4,757 samples, 13.82%)</title><rect x="765.1" y="181" width="163.1" height="15.0" fill="rgb(210,92,2)" rx="2" ry="2" />
2120
<text text-anchor="" x="768.12" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__dentry_kill</text>
2121
</g>
2122
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2123
<title>preempt_count_sub (24 samples, 0.07%)</title><rect x="875.2" y="117" width="0.8" height="15.0" fill="rgb(240,116,11)" rx="2" ry="2" />
2124
<text text-anchor="" x="878.19" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2125
</g>
2126
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2127
<title>preempt_count_add (159 samples, 0.46%)</title><rect x="855.0" y="133" width="5.4" height="15.0" fill="rgb(215,48,30)" rx="2" ry="2" />
2128
<text text-anchor="" x="857.96" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2129
</g>
2130
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2131
<title>__sched_text_start (7 samples, 0.02%)</title><rect x="1177.2" y="213" width="0.3" height="15.0" fill="rgb(228,119,9)" rx="2" ry="2" />
2132
<text text-anchor="" x="1180.21" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2133
</g>
2134
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2135
<title>__rcu_read_lock (36 samples, 0.10%)</title><rect x="625.1" y="117" width="1.3" height="15.0" fill="rgb(221,211,33)" rx="2" ry="2" />
2136
<text text-anchor="" x="628.12" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2137
</g>
2138
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2139
<title>page_counter_try_charge (7 samples, 0.02%)</title><rect x="546.1" y="53" width="0.3" height="15.0" fill="rgb(209,124,10)" rx="2" ry="2" />
2140
<text text-anchor="" x="549.15" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2141
</g>
2142
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2143
<title>ls (9 samples, 0.03%)</title><rect x="10.0" y="341" width="0.3" height="15.0" fill="rgb(236,115,45)" rx="2" ry="2" />
2144
<text text-anchor="" x="13.00" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2145
</g>
2146
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2147
<title>do_futex (270 samples, 0.78%)</title><rect x="1140.8" y="245" width="9.2" height="15.0" fill="rgb(228,136,10)" rx="2" ry="2" />
2148
<text text-anchor="" x="1143.76" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2149
</g>
2150
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2151
<title>ret_from_fork (13 samples, 0.04%)</title><rect x="1173.3" y="309" width="0.4" height="15.0" fill="rgb(252,63,45)" rx="2" ry="2" />
2152
<text text-anchor="" x="1176.27" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2153
</g>
2154
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2155
<title>should_failslab (9 samples, 0.03%)</title><rect x="581.3" y="133" width="0.3" height="15.0" fill="rgb(254,49,27)" rx="2" ry="2" />
2156
<text text-anchor="" x="584.30" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2157
</g>
2158
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2159
<title>syscall_trace_enter (11 samples, 0.03%)</title><rect x="1171.3" y="277" width="0.4" height="15.0" fill="rgb(223,90,19)" rx="2" ry="2" />
2160
<text text-anchor="" x="1174.31" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2161
</g>
2162
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2163
<title>syscall_slow_exit_work (7 samples, 0.02%)</title><rect x="1157.0" y="261" width="0.3" height="15.0" fill="rgb(244,116,45)" rx="2" ry="2" />
2164
<text text-anchor="" x="1160.05" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2165
</g>
2166
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2167
<title>__put_user_4 (3 samples, 0.01%)</title><rect x="1188.5" y="277" width="0.1" height="15.0" fill="rgb(209,13,40)" rx="2" ry="2" />
2168
<text text-anchor="" x="1191.46" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2169
</g>
2170
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2171
<title>__se_sys_poll (347 samples, 1.01%)</title><rect x="1107.7" y="261" width="11.9" height="15.0" fill="rgb(223,40,21)" rx="2" ry="2" />
2172
<text text-anchor="" x="1110.71" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2173
</g>
2174
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2175
<title>entry_SYSCALL_64 (21 samples, 0.06%)</title><rect x="1151.4" y="293" width="0.7" height="15.0" fill="rgb(251,153,30)" rx="2" ry="2" />
2176
<text text-anchor="" x="1154.42" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2177
</g>
2178
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2179
<title>scaleVector (30 samples, 0.09%)</title><rect x="1104.1" y="213" width="1.0" height="15.0" fill="rgb(246,123,23)" rx="2" ry="2" />
2180
<text text-anchor="" x="1107.07" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2181
</g>
2182
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2183
<title>get_random_u32 (53 samples, 0.15%)</title><rect x="474.7" y="101" width="1.8" height="15.0" fill="rgb(235,187,18)" rx="2" ry="2" />
2184
<text text-anchor="" x="477.72" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2185
</g>
2186
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2187
<title>__pollwait (3 samples, 0.01%)</title><rect x="1119.1" y="213" width="0.1" height="15.0" fill="rgb(242,163,12)" rx="2" ry="2" />
2188
<text text-anchor="" x="1122.06" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2189
</g>
2190
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2191
<title>findintfep.isra.0 (8 samples, 0.02%)</title><rect x="1166.7" y="181" width="0.3" height="15.0" fill="rgb(228,127,23)" rx="2" ry="2" />
2192
<text text-anchor="" x="1169.68" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2193
</g>
2194
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2195
<title>smp_apic_timer_interrupt (3 samples, 0.01%)</title><rect x="823.2" y="117" width="0.1" height="15.0" fill="rgb(215,22,32)" rx="2" ry="2" />
2196
<text text-anchor="" x="826.24" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2197
</g>
2198
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2199
<title>do_syscall_64 (402 samples, 1.17%)</title><rect x="1106.8" y="277" width="13.8" height="15.0" fill="rgb(234,66,35)" rx="2" ry="2" />
2200
<text text-anchor="" x="1109.78" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2201
</g>
2202
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2203
<title>bit_waitqueue (24 samples, 0.07%)</title><rect x="878.2" y="117" width="0.8" height="15.0" fill="rgb(238,45,54)" rx="2" ry="2" />
2204
<text text-anchor="" x="881.17" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2205
</g>
2206
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2207
<title>hrtimer_cancel (16 samples, 0.05%)</title><rect x="1149.2" y="213" width="0.5" height="15.0" fill="rgb(239,7,48)" rx="2" ry="2" />
2208
<text text-anchor="" x="1152.20" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2209
</g>
2210
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2211
<title>setup_object_debug.isra.0 (9 samples, 0.03%)</title><rect x="555.1" y="85" width="0.3" height="15.0" fill="rgb(222,22,43)" rx="2" ry="2" />
2212
<text text-anchor="" x="558.06" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2213
</g>
2214
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2215
<title>usbdev_poll (15 samples, 0.04%)</title><rect x="1118.7" y="229" width="0.6" height="15.0" fill="rgb(216,111,49)" rx="2" ry="2" />
2216
<text text-anchor="" x="1121.75" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2217
</g>
2218
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2219
<title>put_pid (7 samples, 0.02%)</title><rect x="965.9" y="213" width="0.3" height="15.0" fill="rgb(240,133,14)" rx="2" ry="2" />
2220
<text text-anchor="" x="968.92" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2221
</g>
2222
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2223
<title>hrtimer_interrupt (3 samples, 0.01%)</title><rect x="823.2" y="101" width="0.1" height="15.0" fill="rgb(232,182,52)" rx="2" ry="2" />
2224
<text text-anchor="" x="826.24" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2225
</g>
2226
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2227
<title>preempt_count_add (129 samples, 0.37%)</title><rect x="656.1" y="165" width="4.4" height="15.0" fill="rgb(249,93,10)" rx="2" ry="2" />
2228
<text text-anchor="" x="659.11" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2229
</g>
2230
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2231
<title>cpupri_set (14 samples, 0.04%)</title><rect x="1183.5" y="149" width="0.4" height="15.0" fill="rgb(254,155,21)" rx="2" ry="2" />
2232
<text text-anchor="" x="1186.45" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2233
</g>
2234
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2235
<title>__x64_sys_futex (4 samples, 0.01%)</title><rect x="1175.8" y="277" width="0.1" height="15.0" fill="rgb(224,155,0)" rx="2" ry="2" />
2236
<text text-anchor="" x="1178.77" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2237
</g>
2238
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2239
<title>lockref_mark_dead (9 samples, 0.03%)</title><rect x="927.9" y="165" width="0.3" height="15.0" fill="rgb(249,190,51)" rx="2" ry="2" />
2240
<text text-anchor="" x="930.93" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2241
</g>
2242
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2243
<title>in_lock_functions (9 samples, 0.03%)</title><rect x="964.5" y="181" width="0.3" height="15.0" fill="rgb(216,40,3)" rx="2" ry="2" />
2244
<text text-anchor="" x="967.51" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2245
</g>
2246
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2247
<title>task_work_add (459 samples, 1.33%)</title><rect x="292.3" y="213" width="15.8" height="15.0" fill="rgb(209,205,5)" rx="2" ry="2" />
2248
<text text-anchor="" x="295.34" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2249
</g>
2250
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2251
<title>__x64_sys_execve (6 samples, 0.02%)</title><rect x="1187.1" y="277" width="0.2" height="15.0" fill="rgb(230,219,21)" rx="2" ry="2" />
2252
<text text-anchor="" x="1190.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2253
</g>
2254
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2255
<title>_raw_spin_unlock_irqrestore (4 samples, 0.01%)</title><rect x="1163.8" y="181" width="0.2" height="15.0" fill="rgb(230,190,11)" rx="2" ry="2" />
2256
<text text-anchor="" x="1166.84" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2257
</g>
2258
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2259
<title>__do_execve_file.isra.0 (6 samples, 0.02%)</title><rect x="1187.1" y="245" width="0.2" height="15.0" fill="rgb(212,225,22)" rx="2" ry="2" />
2260
<text text-anchor="" x="1190.09" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2261
</g>
2262
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2263
<title>ret_from_fork (20 samples, 0.06%)</title><rect x="16.1" y="293" width="0.7" height="15.0" fill="rgb(236,80,37)" rx="2" ry="2" />
2264
<text text-anchor="" x="19.10" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2265
</g>
2266
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2267
<title>entry_SYSCALL_64 (23 samples, 0.07%)</title><rect x="1158.5" y="309" width="0.8" height="15.0" fill="rgb(227,134,22)" rx="2" ry="2" />
2268
<text text-anchor="" x="1161.49" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2269
</g>
2270
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2271
<title>____fput (40 samples, 0.12%)</title><rect x="707.0" y="229" width="1.3" height="15.0" fill="rgb(222,148,33)" rx="2" ry="2" />
2272
<text text-anchor="" x="709.97" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2273
</g>
2274
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2275
<title>get_random_u32 (111 samples, 0.32%)</title><rect x="551.3" y="85" width="3.8" height="15.0" fill="rgb(205,138,42)" rx="2" ry="2" />
2276
<text text-anchor="" x="554.26" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2277
</g>
2278
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2279
<title>get_futex_key_refs.isra.0 (4 samples, 0.01%)</title><rect x="1149.0" y="181" width="0.1" height="15.0" fill="rgb(213,180,15)" rx="2" ry="2" />
2280
<text text-anchor="" x="1151.96" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2281
</g>
2282
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2283
<title>syscall_trace_enter (433 samples, 1.26%)</title><rect x="1031.4" y="261" width="14.9" height="15.0" fill="rgb(219,175,19)" rx="2" ry="2" />
2284
<text text-anchor="" x="1034.45" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2285
</g>
2286
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2287
<title>preempt_count_add (3 samples, 0.01%)</title><rect x="1163.7" y="165" width="0.1" height="15.0" fill="rgb(221,180,17)" rx="2" ry="2" />
2288
<text text-anchor="" x="1166.73" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2289
</g>
2290
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2291
<title>__wcsmbs_load_conv (5 samples, 0.01%)</title><rect x="1189.6" y="325" width="0.1" height="15.0" fill="rgb(222,71,39)" rx="2" ry="2" />
2292
<text text-anchor="" x="1192.55" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2293
</g>
2294
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2295
<title>in_lock_functions (28 samples, 0.08%)</title><rect x="659.6" y="149" width="0.9" height="15.0" fill="rgb(244,172,37)" rx="2" ry="2" />
2296
<text text-anchor="" x="662.58" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2297
</g>
2298
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2299
<title>security_inode_free (43 samples, 0.12%)</title><rect x="806.5" y="133" width="1.4" height="15.0" fill="rgb(221,111,1)" rx="2" ry="2" />
2300
<text text-anchor="" x="809.47" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2301
</g>
2302
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2303
<title>preempt_count_sub (57 samples, 0.17%)</title><rect x="783.4" y="133" width="2.0" height="15.0" fill="rgb(234,227,4)" rx="2" ry="2" />
2304
<text text-anchor="" x="786.40" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2305
</g>
2306
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2307
<title>usb_hcd_map_urb_for_dma (10 samples, 0.03%)</title><rect x="1167.7" y="165" width="0.4" height="15.0" fill="rgb(206,60,0)" rx="2" ry="2" />
2308
<text text-anchor="" x="1170.75" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2309
</g>
2310
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2311
<title>record_times (5 samples, 0.01%)</title><rect x="1144.1" y="133" width="0.2" height="15.0" fill="rgb(207,82,4)" rx="2" ry="2" />
2312
<text text-anchor="" x="1147.09" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2313
</g>
2314
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2315
<title>__x86_indirect_thunk_rax (6 samples, 0.02%)</title><rect x="977.4" y="181" width="0.2" height="15.0" fill="rgb(240,3,10)" rx="2" ry="2" />
2316
<text text-anchor="" x="980.37" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2317
</g>
2318
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2319
<title>[unknown] (33,446 samples, 97.19%)</title><rect x="11.4" y="325" width="1146.8" height="15.0" fill="rgb(219,159,1)" rx="2" ry="2" />
2320
<text text-anchor="" x="14.41" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >[unknown]</text>
2321
</g>
2322
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2323
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="1118.6" y="197" width="0.1" height="15.0" fill="rgb(206,99,15)" rx="2" ry="2" />
2324
<text text-anchor="" x="1121.64" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2325
</g>
2326
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2327
<title>syscall_slow_exit_work (9 samples, 0.03%)</title><rect x="1171.0" y="277" width="0.3" height="15.0" fill="rgb(219,33,26)" rx="2" ry="2" />
2328
<text text-anchor="" x="1174.00" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2329
</g>
2330
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2331
<title>_raw_spin_trylock (220 samples, 0.64%)</title><rect x="928.2" y="181" width="7.6" height="15.0" fill="rgb(207,196,12)" rx="2" ry="2" />
2332
<text text-anchor="" x="931.23" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2333
</g>
2334
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2335
<title>_raw_spin_lock_irqsave (10 samples, 0.03%)</title><rect x="1118.1" y="213" width="0.3" height="15.0" fill="rgb(246,120,2)" rx="2" ry="2" />
2336
<text text-anchor="" x="1121.10" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2337
</g>
2338
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2339
<title>preempt_count_add (4 samples, 0.01%)</title><rect x="1118.3" y="197" width="0.1" height="15.0" fill="rgb(219,72,36)" rx="2" ry="2" />
2340
<text text-anchor="" x="1121.30" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2341
</g>
2342
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2343
<title>dentry_unlink_inode (176 samples, 0.51%)</title><rect x="779.3" y="165" width="6.1" height="15.0" fill="rgb(234,39,12)" rx="2" ry="2" />
2344
<text text-anchor="" x="782.32" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2345
</g>
2346
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2347
<title>timerfd_settime (203 samples, 0.59%)</title><rect x="1151.2" y="309" width="7.0" height="15.0" fill="rgb(234,40,42)" rx="2" ry="2" />
2348
<text text-anchor="" x="1154.22" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2349
</g>
2350
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2351
<title>prepare_exit_to_usermode (7 samples, 0.02%)</title><rect x="1046.8" y="277" width="0.2" height="15.0" fill="rgb(214,48,54)" rx="2" ry="2" />
2352
<text text-anchor="" x="1049.77" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2353
</g>
2354
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2355
<title>entry_SYSCALL_64_after_hwframe (9 samples, 0.03%)</title><rect x="12.2" y="261" width="0.3" height="15.0" fill="rgb(246,220,2)" rx="2" ry="2" />
2356
<text text-anchor="" x="15.16" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2357
</g>
2358
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2359
<title>__kmalloc (4 samples, 0.01%)</title><rect x="1168.3" y="149" width="0.2" height="15.0" fill="rgb(209,20,14)" rx="2" ry="2" />
2360
<text text-anchor="" x="1171.33" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2361
</g>
2362
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2363
<title>_raw_spin_unlock (35 samples, 0.10%)</title><rect x="272.6" y="213" width="1.2" height="15.0" fill="rgb(230,6,23)" rx="2" ry="2" />
2364
<text text-anchor="" x="275.55" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2365
</g>
2366
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2367
<title>syscall_trace_enter (7 samples, 0.02%)</title><rect x="1157.3" y="261" width="0.2" height="15.0" fill="rgb(238,123,20)" rx="2" ry="2" />
2368
<text text-anchor="" x="1160.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2369
</g>
2370
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2371
<title>unroll_tree_refs (3 samples, 0.01%)</title><rect x="1157.2" y="229" width="0.1" height="15.0" fill="rgb(253,179,27)" rx="2" ry="2" />
2372
<text text-anchor="" x="1160.19" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2373
</g>
2374
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2375
<title>kmem_cache_alloc (1,274 samples, 3.70%)</title><rect x="419.2" y="165" width="43.7" height="15.0" fill="rgb(218,208,43)" rx="2" ry="2" />
2376
<text text-anchor="" x="422.18" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >kmem..</text>
2377
</g>
2378
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2379
<title>do_syscall_64 (360 samples, 1.05%)</title><rect x="1159.3" y="293" width="12.4" height="15.0" fill="rgb(240,24,32)" rx="2" ry="2" />
2380
<text text-anchor="" x="1162.35" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2381
</g>
2382
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2383
<title>__rcu_read_unlock (32 samples, 0.09%)</title><rect x="620.4" y="133" width="1.1" height="15.0" fill="rgb(220,10,51)" rx="2" ry="2" />
2384
<text text-anchor="" x="623.39" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2385
</g>
2386
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2387
<title>do_syscall_64 (311 samples, 0.90%)</title><rect x="1140.0" y="277" width="10.7" height="15.0" fill="rgb(235,3,7)" rx="2" ry="2" />
2388
<text text-anchor="" x="1143.04" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2389
</g>
2390
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2391
<title>unroll_tree_refs (43 samples, 0.12%)</title><rect x="1030.0" y="229" width="1.4" height="15.0" fill="rgb(209,198,12)" rx="2" ry="2" />
2392
<text text-anchor="" x="1032.97" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2393
</g>
2394
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2395
<title>smp_thermal_interrupt (3 samples, 0.01%)</title><rect x="1103.0" y="277" width="0.1" height="15.0" fill="rgb(244,12,12)" rx="2" ry="2" />
2396
<text text-anchor="" x="1106.04" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2397
</g>
2398
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2399
<title>exit_to_usermode_loop (9,640 samples, 28.01%)</title><rect x="686.7" y="261" width="330.6" height="15.0" fill="rgb(230,137,25)" rx="2" ry="2" />
2400
<text text-anchor="" x="689.70" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >exit_to_usermode_loop</text>
2401
</g>
2402
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2403
<title>pick_next_task_idle (9 samples, 0.03%)</title><rect x="1116.3" y="165" width="0.3" height="15.0" fill="rgb(220,157,10)" rx="2" ry="2" />
2404
<text text-anchor="" x="1119.31" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2405
</g>
2406
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2407
<title>ret_from_fork (6 samples, 0.02%)</title><rect x="14.6" y="277" width="0.2" height="15.0" fill="rgb(230,62,50)" rx="2" ry="2" />
2408
<text text-anchor="" x="17.59" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2409
</g>
2410
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2411
<title>syscall_slow_exit_work (4 samples, 0.01%)</title><rect x="1175.9" y="277" width="0.2" height="15.0" fill="rgb(254,24,26)" rx="2" ry="2" />
2412
<text text-anchor="" x="1178.94" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2413
</g>
2414
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2415
<title>preempt_count_sub (33 samples, 0.10%)</title><rect x="569.1" y="101" width="1.2" height="15.0" fill="rgb(253,161,40)" rx="2" ry="2" />
2416
<text text-anchor="" x="572.12" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2417
</g>
2418
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2419
<title>preempt_count_sub (4 samples, 0.01%)</title><rect x="1118.5" y="197" width="0.1" height="15.0" fill="rgb(209,195,24)" rx="2" ry="2" />
2420
<text text-anchor="" x="1121.51" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2421
</g>
2422
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2423
<title>read_tsc (4 samples, 0.01%)</title><rect x="1156.4" y="197" width="0.1" height="15.0" fill="rgb(232,228,9)" rx="2" ry="2" />
2424
<text text-anchor="" x="1159.40" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2425
</g>
2426
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2427
<title>_raw_spin_unlock (29 samples, 0.08%)</title><rect x="348.3" y="181" width="1.0" height="15.0" fill="rgb(252,28,2)" rx="2" ry="2" />
2428
<text text-anchor="" x="351.33" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2429
</g>
2430
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2431
<title>hrtimer_start_range_ns (17 samples, 0.05%)</title><rect x="1111.2" y="197" width="0.6" height="15.0" fill="rgb(235,141,47)" rx="2" ry="2" />
2432
<text text-anchor="" x="1114.17" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2433
</g>
2434
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2435
<title>__call_rcu (55 samples, 0.16%)</title><rect x="33.9" y="293" width="1.9" height="15.0" fill="rgb(211,205,42)" rx="2" ry="2" />
2436
<text text-anchor="" x="36.93" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2437
</g>
2438
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2439
<title>exit_mmap (3 samples, 0.01%)</title><rect x="1189.8" y="229" width="0.1" height="15.0" fill="rgb(229,104,9)" rx="2" ry="2" />
2440
<text text-anchor="" x="1192.79" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2441
</g>
2442
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2443
<title>_raw_spin_unlock_irqrestore (6 samples, 0.02%)</title><rect x="1118.4" y="213" width="0.2" height="15.0" fill="rgb(211,229,4)" rx="2" ry="2" />
2444
<text text-anchor="" x="1121.44" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2445
</g>
2446
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2447
<title>enqueue_hrtimer (4 samples, 0.01%)</title><rect x="1141.8" y="181" width="0.2" height="15.0" fill="rgb(221,198,1)" rx="2" ry="2" />
2448
<text text-anchor="" x="1144.82" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2449
</g>
2450
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2451
<title>search_binary_handler (6 samples, 0.02%)</title><rect x="1187.1" y="229" width="0.2" height="15.0" fill="rgb(208,63,13)" rx="2" ry="2" />
2452
<text text-anchor="" x="1190.09" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2453
</g>
2454
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2455
<title>__sys_accept4 (12,940 samples, 37.60%)</title><rect x="242.8" y="245" width="443.7" height="15.0" fill="rgb(210,77,27)" rx="2" ry="2" />
2456
<text text-anchor="" x="245.76" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__sys_accept4</text>
2457
</g>
2458
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2459
<title>in_lock_functions (6 samples, 0.02%)</title><rect x="457.8" y="101" width="0.2" height="15.0" fill="rgb(235,161,38)" rx="2" ry="2" />
2460
<text text-anchor="" x="460.78" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2461
</g>
2462
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2463
<title>__pthread_mutex_lock (7 samples, 0.02%)</title><rect x="14.8" y="293" width="0.3" height="15.0" fill="rgb(215,139,18)" rx="2" ry="2" />
2464
<text text-anchor="" x="17.83" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2465
</g>
2466
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2467
<title>mntget (21 samples, 0.06%)</title><rect x="663.2" y="197" width="0.8" height="15.0" fill="rgb(217,212,5)" rx="2" ry="2" />
2468
<text text-anchor="" x="666.25" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2469
</g>
2470
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2471
<title>kfree (32 samples, 0.09%)</title><rect x="1027.3" y="229" width="1.1" height="15.0" fill="rgb(245,182,38)" rx="2" ry="2" />
2472
<text text-anchor="" x="1030.33" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2473
</g>
2474
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2475
<title>do_exit (3 samples, 0.01%)</title><rect x="1189.8" y="261" width="0.1" height="15.0" fill="rgb(219,50,17)" rx="2" ry="2" />
2476
<text text-anchor="" x="1192.79" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2477
</g>
2478
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2479
<title>pick_next_task_rt (32 samples, 0.09%)</title><rect x="1116.6" y="165" width="1.1" height="15.0" fill="rgb(222,89,36)" rx="2" ry="2" />
2480
<text text-anchor="" x="1119.62" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2481
</g>
2482
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2483
<title>get_futex_key (7 samples, 0.02%)</title><rect x="1148.9" y="197" width="0.2" height="15.0" fill="rgb(238,217,33)" rx="2" ry="2" />
2484
<text text-anchor="" x="1151.85" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2485
</g>
2486
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2487
<title>call_function_single_interrupt (3 samples, 0.01%)</title><rect x="39.1" y="293" width="0.1" height="15.0" fill="rgb(232,135,8)" rx="2" ry="2" />
2488
<text text-anchor="" x="42.08" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2489
</g>
2490
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2491
<title>__rcu_read_lock (39 samples, 0.11%)</title><rect x="754.5" y="197" width="1.3" height="15.0" fill="rgb(239,106,38)" rx="2" ry="2" />
2492
<text text-anchor="" x="757.49" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2493
</g>
2494
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2495
<title>preempt_count_sub (24 samples, 0.07%)</title><rect x="587.9" y="149" width="0.8" height="15.0" fill="rgb(250,108,33)" rx="2" ry="2" />
2496
<text text-anchor="" x="590.88" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2497
</g>
2498
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2499
<title>preempt_count_sub (28 samples, 0.08%)</title><rect x="385.0" y="197" width="0.9" height="15.0" fill="rgb(214,155,43)" rx="2" ry="2" />
2500
<text text-anchor="" x="387.99" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2501
</g>
2502
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2503
<title>lock_hrtimer_base.isra.0 (5 samples, 0.01%)</title><rect x="1112.1" y="181" width="0.2" height="15.0" fill="rgb(250,147,26)" rx="2" ry="2" />
2504
<text text-anchor="" x="1115.13" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2505
</g>
2506
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2507
<title>psi_task_change (37 samples, 0.11%)</title><rect x="1184.1" y="165" width="1.3" height="15.0" fill="rgb(254,39,29)" rx="2" ry="2" />
2508
<text text-anchor="" x="1187.10" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2509
</g>
2510
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2511
<title>__rcu_read_lock (15 samples, 0.04%)</title><rect x="439.8" y="133" width="0.5" height="15.0" fill="rgb(242,126,7)" rx="2" ry="2" />
2512
<text text-anchor="" x="442.82" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2513
</g>
2514
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2515
<title>hrtimer_try_to_cancel (15 samples, 0.04%)</title><rect x="1149.2" y="197" width="0.5" height="15.0" fill="rgb(244,57,22)" rx="2" ry="2" />
2516
<text text-anchor="" x="1152.23" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2517
</g>
2518
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2519
<title>copy_user_enhanced_fast_string (6 samples, 0.02%)</title><rect x="1170.7" y="149" width="0.2" height="15.0" fill="rgb(211,137,25)" rx="2" ry="2" />
2520
<text text-anchor="" x="1173.66" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2521
</g>
2522
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2523
<title>__init_rwsem (22 samples, 0.06%)</title><rect x="405.5" y="165" width="0.7" height="15.0" fill="rgb(216,193,13)" rx="2" ry="2" />
2524
<text text-anchor="" x="408.46" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2525
</g>
2526
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2527
<title>alloc_file_pseudo (5,427 samples, 15.77%)</title><rect x="479.1" y="213" width="186.1" height="15.0" fill="rgb(250,201,15)" rx="2" ry="2" />
2528
<text text-anchor="" x="482.15" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >alloc_file_pseudo</text>
2529
</g>
2530
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2531
<title>pull_rt_task (10 samples, 0.03%)</title><rect x="1147.9" y="149" width="0.3" height="15.0" fill="rgb(248,86,36)" rx="2" ry="2" />
2532
<text text-anchor="" x="1150.86" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2533
</g>
2534
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2535
<title>__pthread_mutex_destroy (4 samples, 0.01%)</title><rect x="1134.0" y="309" width="0.1" height="15.0" fill="rgb(239,181,42)" rx="2" ry="2" />
2536
<text text-anchor="" x="1137.01" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2537
</g>
2538
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2539
<title>native_sched_clock (3 samples, 0.01%)</title><rect x="1144.2" y="85" width="0.1" height="15.0" fill="rgb(249,23,28)" rx="2" ry="2" />
2540
<text text-anchor="" x="1147.16" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2541
</g>
2542
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2543
<title>in_lock_functions (7 samples, 0.02%)</title><rect x="568.8" y="85" width="0.3" height="15.0" fill="rgb(237,48,9)" rx="2" ry="2" />
2544
<text text-anchor="" x="571.85" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2545
</g>
2546
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2547
<title>__this_cpu_preempt_check (10 samples, 0.03%)</title><rect x="330.8" y="181" width="0.4" height="15.0" fill="rgb(211,201,22)" rx="2" ry="2" />
2548
<text text-anchor="" x="333.81" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2549
</g>
2550
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2551
<title>preempt_count_add (94 samples, 0.27%)</title><rect x="760.6" y="181" width="3.2" height="15.0" fill="rgb(207,79,31)" rx="2" ry="2" />
2552
<text text-anchor="" x="763.59" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2553
</g>
2554
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2555
<title>preempt_count_sub (40 samples, 0.12%)</title><rect x="1015.5" y="213" width="1.3" height="15.0" fill="rgb(224,175,24)" rx="2" ry="2" />
2556
<text text-anchor="" x="1018.47" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2557
</g>
2558
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2559
<title>_int_malloc (14 samples, 0.04%)</title><rect x="1177.5" y="325" width="0.5" height="15.0" fill="rgb(212,203,10)" rx="2" ry="2" />
2560
<text text-anchor="" x="1180.48" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2561
</g>
2562
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2563
<title>inet_accept (1,643 samples, 4.77%)</title><rect x="309.6" y="229" width="56.3" height="15.0" fill="rgb(227,62,23)" rx="2" ry="2" />
2564
<text text-anchor="" x="312.55" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >inet_..</text>
2565
</g>
2566
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2567
<title>__GI___libc_sigaction (3 samples, 0.01%)</title><rect x="1173.1" y="309" width="0.1" height="15.0" fill="rgb(208,78,5)" rx="2" ry="2" />
2568
<text text-anchor="" x="1176.13" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2569
</g>
2570
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2571
<title>[libudev.so.1.6.14] (14 samples, 0.04%)</title><rect x="12.1" y="309" width="0.5" height="15.0" fill="rgb(211,215,18)" rx="2" ry="2" />
2572
<text text-anchor="" x="15.09" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2573
</g>
2574
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2575
<title>_raw_spin_unlock (3 samples, 0.01%)</title><rect x="1154.3" y="229" width="0.1" height="15.0" fill="rgb(252,27,38)" rx="2" ry="2" />
2576
<text text-anchor="" x="1157.30" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2577
</g>
2578
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2579
<title>syscall_trace_enter (3 samples, 0.01%)</title><rect x="1120.5" y="261" width="0.1" height="15.0" fill="rgb(227,96,9)" rx="2" ry="2" />
2580
<text text-anchor="" x="1123.46" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2581
</g>
2582
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2583
<title>alloc_pages_current (9 samples, 0.03%)</title><rect x="550.9" y="85" width="0.4" height="15.0" fill="rgb(248,80,0)" rx="2" ry="2" />
2584
<text text-anchor="" x="553.95" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2585
</g>
2586
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2587
<title>__audit_syscall_entry (5 samples, 0.01%)</title><rect x="1171.5" y="261" width="0.2" height="15.0" fill="rgb(254,174,8)" rx="2" ry="2" />
2588
<text text-anchor="" x="1174.48" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2589
</g>
2590
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2591
<title>Transceiver::init (48 samples, 0.14%)</title><rect x="1103.6" y="245" width="1.6" height="15.0" fill="rgb(252,152,51)" rx="2" ry="2" />
2592
<text text-anchor="" x="1106.56" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2593
</g>
2594
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2595
<title>_raw_spin_lock_irqsave (6 samples, 0.02%)</title><rect x="1142.0" y="165" width="0.2" height="15.0" fill="rgb(227,65,46)" rx="2" ry="2" />
2596
<text text-anchor="" x="1144.96" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2597
</g>
2598
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2599
<title>__pthread_mutex_lock (3 samples, 0.01%)</title><rect x="1176.8" y="325" width="0.1" height="15.0" fill="rgb(249,137,39)" rx="2" ry="2" />
2600
<text text-anchor="" x="1179.80" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2601
</g>
2602
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2603
<title>[unknown] (46 samples, 0.13%)</title><rect x="14.1" y="309" width="1.6" height="15.0" fill="rgb(226,114,31)" rx="2" ry="2" />
2604
<text text-anchor="" x="17.08" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2605
</g>
2606
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2607
<title>__fget_light (582 samples, 1.69%)</title><rect x="666.5" y="213" width="20.0" height="15.0" fill="rgb(218,75,50)" rx="2" ry="2" />
2608
<text text-anchor="" x="669.50" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2609
</g>
2610
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2611
<title>__rcu_read_unlock (18 samples, 0.05%)</title><rect x="561.2" y="117" width="0.6" height="15.0" fill="rgb(247,211,14)" rx="2" ry="2" />
2612
<text text-anchor="" x="564.17" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2613
</g>
2614
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2615
<title>update_rt_rq_load_avg (4 samples, 0.01%)</title><rect x="1146.8" y="133" width="0.2" height="15.0" fill="rgb(223,164,3)" rx="2" ry="2" />
2616
<text text-anchor="" x="1149.83" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2617
</g>
2618
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2619
<title>memcg_kmem_get_cache (527 samples, 1.53%)</title><rect x="612.2" y="149" width="18.1" height="15.0" fill="rgb(225,100,35)" rx="2" ry="2" />
2620
<text text-anchor="" x="615.22" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2621
</g>
2622
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2623
<title>preempt_count_sub (31 samples, 0.09%)</title><rect x="629.2" y="117" width="1.1" height="15.0" fill="rgb(242,156,12)" rx="2" ry="2" />
2624
<text text-anchor="" x="632.23" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2625
</g>
2626
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2627
<title>page_fault (5 samples, 0.01%)</title><rect x="1177.7" y="309" width="0.2" height="15.0" fill="rgb(217,150,46)" rx="2" ry="2" />
2628
<text text-anchor="" x="1180.72" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2629
</g>
2630
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2631
<title>Complex&lt;float&gt;::operator* (13 samples, 0.04%)</title><rect x="1104.7" y="197" width="0.4" height="15.0" fill="rgb(206,7,30)" rx="2" ry="2" />
2632
<text text-anchor="" x="1107.65" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2633
</g>
2634
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2635
<title>_raw_spin_lock_irqsave (3 samples, 0.01%)</title><rect x="1119.2" y="197" width="0.1" height="15.0" fill="rgb(252,149,21)" rx="2" ry="2" />
2636
<text text-anchor="" x="1122.16" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2637
</g>
2638
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2639
<title>TransceiverState::init (45 samples, 0.13%)</title><rect x="1103.6" y="229" width="1.5" height="15.0" fill="rgb(237,167,4)" rx="2" ry="2" />
2640
<text text-anchor="" x="1106.56" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2641
</g>
2642
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2643
<title>preempt_count_add (56 samples, 0.16%)</title><rect x="631.5" y="133" width="1.9" height="15.0" fill="rgb(212,34,26)" rx="2" ry="2" />
2644
<text text-anchor="" x="634.53" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2645
</g>
2646
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2647
<title>_raw_spin_lock_irq (511 samples, 1.48%)</title><rect x="994.8" y="229" width="17.5" height="15.0" fill="rgb(208,64,34)" rx="2" ry="2" />
2648
<text text-anchor="" x="997.76" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2649
</g>
2650
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2651
<title>__this_cpu_preempt_check (24 samples, 0.07%)</title><rect x="35.8" y="293" width="0.8" height="15.0" fill="rgb(221,193,19)" rx="2" ry="2" />
2652
<text text-anchor="" x="38.82" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2653
</g>
2654
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2655
<title>fsnotify_destroy_marks (498 samples, 1.45%)</title><rect x="788.2" y="133" width="17.0" height="15.0" fill="rgb(216,42,23)" rx="2" ry="2" />
2656
<text text-anchor="" x="791.16" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2657
</g>
2658
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2659
<title>d_flags_for_inode (43 samples, 0.12%)</title><rect x="649.4" y="165" width="1.5" height="15.0" fill="rgb(243,139,34)" rx="2" ry="2" />
2660
<text text-anchor="" x="652.39" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2661
</g>
2662
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2663
<title>_copy_from_user (5 samples, 0.01%)</title><rect x="1109.4" y="229" width="0.2" height="15.0" fill="rgb(222,108,40)" rx="2" ry="2" />
2664
<text text-anchor="" x="1112.42" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2665
</g>
2666
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2667
<title>futex_wake (12 samples, 0.03%)</title><rect x="1175.4" y="245" width="0.4" height="15.0" fill="rgb(246,192,2)" rx="2" ry="2" />
2668
<text text-anchor="" x="1178.36" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2669
</g>
2670
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2671
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1173.7" y="309" width="0.1" height="15.0" fill="rgb(227,72,51)" rx="2" ry="2" />
2672
<text text-anchor="" x="1176.71" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2673
</g>
2674
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2675
<title>propagate_protected_usage (9 samples, 0.03%)</title><rect x="545.3" y="53" width="0.3" height="15.0" fill="rgb(225,87,13)" rx="2" ry="2" />
2676
<text text-anchor="" x="548.33" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2677
</g>
2678
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2679
<title>_raw_spin_lock (3 samples, 0.01%)</title><rect x="1148.7" y="197" width="0.2" height="15.0" fill="rgb(205,209,13)" rx="2" ry="2" />
2680
<text text-anchor="" x="1151.75" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2681
</g>
2682
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2683
<title>switch_fpu_return (6 samples, 0.02%)</title><rect x="1150.3" y="261" width="0.2" height="15.0" fill="rgb(251,193,28)" rx="2" ry="2" />
2684
<text text-anchor="" x="1153.29" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2685
</g>
2686
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2687
<title>call_rcu (12 samples, 0.03%)</title><rect x="1016.8" y="229" width="0.5" height="15.0" fill="rgb(222,149,54)" rx="2" ry="2" />
2688
<text text-anchor="" x="1019.84" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2689
</g>
2690
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2691
<title>syscall_return_via_sysret (10 samples, 0.03%)</title><rect x="1150.7" y="293" width="0.3" height="15.0" fill="rgb(240,71,51)" rx="2" ry="2" />
2692
<text text-anchor="" x="1153.70" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2693
</g>
2694
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2695
<title>__wake_up_bit (29 samples, 0.08%)</title><rect x="848.4" y="149" width="1.0" height="15.0" fill="rgb(210,55,46)" rx="2" ry="2" />
2696
<text text-anchor="" x="851.41" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2697
</g>
2698
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2699
<title>__rcu_read_unlock (25 samples, 0.07%)</title><rect x="755.8" y="197" width="0.9" height="15.0" fill="rgb(232,96,45)" rx="2" ry="2" />
2700
<text text-anchor="" x="758.83" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2701
</g>
2702
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2703
<title>preempt_count_sub (32 samples, 0.09%)</title><rect x="964.8" y="197" width="1.1" height="15.0" fill="rgb(246,115,25)" rx="2" ry="2" />
2704
<text text-anchor="" x="967.82" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2705
</g>
2706
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2707
<title>llist_add_batch (4 samples, 0.01%)</title><rect x="1117.1" y="133" width="0.1" height="15.0" fill="rgb(214,155,5)" rx="2" ry="2" />
2708
<text text-anchor="" x="1120.10" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2709
</g>
2710
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2711
<title>xhci_map_urb_for_dma (4 samples, 0.01%)</title><rect x="1168.1" y="165" width="0.1" height="15.0" fill="rgb(248,93,17)" rx="2" ry="2" />
2712
<text text-anchor="" x="1171.09" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2713
</g>
2714
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2715
<title>preempt_count_add (85 samples, 0.25%)</title><rect x="269.6" y="197" width="3.0" height="15.0" fill="rgb(251,74,23)" rx="2" ry="2" />
2716
<text text-anchor="" x="272.64" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2717
</g>
2718
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2719
<title>do_syscall_64 (46 samples, 0.13%)</title><rect x="1174.6" y="293" width="1.5" height="15.0" fill="rgb(244,176,28)" rx="2" ry="2" />
2720
<text text-anchor="" x="1177.57" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2721
</g>
2722
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2723
<title>alloc_pages_current (5 samples, 0.01%)</title><rect x="474.6" y="101" width="0.1" height="15.0" fill="rgb(246,226,5)" rx="2" ry="2" />
2724
<text text-anchor="" x="477.55" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2725
</g>
2726
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2727
<title>swapgs_restore_regs_and_return_to_usermode (8 samples, 0.02%)</title><rect x="1046.7" y="293" width="0.3" height="15.0" fill="rgb(247,42,13)" rx="2" ry="2" />
2728
<text text-anchor="" x="1049.74" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2729
</g>
2730
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2731
<title>syscall_slow_exit_work (5 samples, 0.01%)</title><rect x="1150.5" y="261" width="0.2" height="15.0" fill="rgb(222,67,28)" rx="2" ry="2" />
2732
<text text-anchor="" x="1153.50" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2733
</g>
2734
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2735
<title>__memset_avx2_unaligned_erms (6 samples, 0.02%)</title><rect x="1105.2" y="309" width="0.2" height="15.0" fill="rgb(227,12,13)" rx="2" ry="2" />
2736
<text text-anchor="" x="1108.20" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2737
</g>
2738
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2739
<title>__GI___openat64 (11 samples, 0.03%)</title><rect x="12.1" y="277" width="0.4" height="15.0" fill="rgb(224,27,41)" rx="2" ry="2" />
2740
<text text-anchor="" x="15.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2741
</g>
2742
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2743
<title>__slab_free (9 samples, 0.03%)</title><rect x="1164.4" y="181" width="0.3" height="15.0" fill="rgb(243,56,23)" rx="2" ry="2" />
2744
<text text-anchor="" x="1167.35" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2745
</g>
2746
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2747
<title>lime::LMS64CProtocol::TransferPacket (20 samples, 0.06%)</title><rect x="1178.5" y="325" width="0.7" height="15.0" fill="rgb(241,107,21)" rx="2" ry="2" />
2748
<text text-anchor="" x="1181.48" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2749
</g>
2750
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2751
<title>map_id_range_down (79 samples, 0.23%)</title><rect x="406.4" y="149" width="2.7" height="15.0" fill="rgb(216,73,25)" rx="2" ry="2" />
2752
<text text-anchor="" x="409.35" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2753
</g>
2754
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2755
<title>[unknown] (6 samples, 0.02%)</title><rect x="1187.1" y="325" width="0.2" height="15.0" fill="rgb(213,116,4)" rx="2" ry="2" />
2756
<text text-anchor="" x="1190.09" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2757
</g>
2758
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2759
<title>Vector&lt;Complex&lt;float&gt; &gt;::Vector (13 samples, 0.04%)</title><rect x="1103.6" y="181" width="0.5" height="15.0" fill="rgb(224,105,35)" rx="2" ry="2" />
2760
<text text-anchor="" x="1106.63" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2761
</g>
2762
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2763
<title>get_itimerspec64 (7 samples, 0.02%)</title><rect x="1156.5" y="245" width="0.3" height="15.0" fill="rgb(208,226,30)" rx="2" ry="2" />
2764
<text text-anchor="" x="1159.53" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2765
</g>
2766
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2767
<title>kmem_cache_alloc_trace (444 samples, 1.29%)</title><rect x="462.9" y="165" width="15.2" height="15.0" fill="rgb(219,135,15)" rx="2" ry="2" />
2768
<text text-anchor="" x="465.86" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2769
</g>
2770
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2771
<title>finish_task_switch (12 samples, 0.03%)</title><rect x="1173.3" y="277" width="0.4" height="15.0" fill="rgb(247,44,45)" rx="2" ry="2" />
2772
<text text-anchor="" x="1176.30" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2773
</g>
2774
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2775
<title>__condvar_dec_grefs (6 samples, 0.02%)</title><rect x="16.8" y="309" width="0.2" height="15.0" fill="rgb(240,10,30)" rx="2" ry="2" />
2776
<text text-anchor="" x="19.82" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2777
</g>
2778
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2779
<title>do_syscall_64 (9 samples, 0.03%)</title><rect x="12.2" y="245" width="0.3" height="15.0" fill="rgb(248,191,12)" rx="2" ry="2" />
2780
<text text-anchor="" x="15.16" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2781
</g>
2782
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2783
<title>__intel_pmu_enable_all.constprop.0 (18 samples, 0.05%)</title><rect x="16.1" y="229" width="0.7" height="15.0" fill="rgb(247,160,8)" rx="2" ry="2" />
2784
<text text-anchor="" x="19.14" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2785
</g>
2786
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2787
<title>preempt_count_add (28 samples, 0.08%)</title><rect x="648.4" y="149" width="1.0" height="15.0" fill="rgb(243,6,44)" rx="2" ry="2" />
2788
<text text-anchor="" x="651.43" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2789
</g>
2790
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2791
<title>memcpy_erms (112 samples, 0.33%)</title><rect x="634.8" y="165" width="3.8" height="15.0" fill="rgb(254,38,10)" rx="2" ry="2" />
2792
<text text-anchor="" x="637.79" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2793
</g>
2794
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2795
<title>preempt_count_add (93 samples, 0.27%)</title><rect x="923.3" y="117" width="3.2" height="15.0" fill="rgb(252,106,29)" rx="2" ry="2" />
2796
<text text-anchor="" x="926.33" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2797
</g>
2798
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2799
<title>schedule_tail (29 samples, 0.08%)</title><rect x="1188.5" y="293" width="1.0" height="15.0" fill="rgb(238,133,49)" rx="2" ry="2" />
2800
<text text-anchor="" x="1191.46" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2801
</g>
2802
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2803
<title>dentry_kill (5,228 samples, 15.19%)</title><rect x="763.8" y="197" width="179.3" height="15.0" fill="rgb(228,69,26)" rx="2" ry="2" />
2804
<text text-anchor="" x="766.82" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >dentry_kill</text>
2805
</g>
2806
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2807
<title>should_failslab (8 samples, 0.02%)</title><rect x="477.8" y="149" width="0.3" height="15.0" fill="rgb(253,137,13)" rx="2" ry="2" />
2808
<text text-anchor="" x="480.81" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2809
</g>
2810
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2811
<title>__hrtimer_run_queues (5 samples, 0.01%)</title><rect x="38.8" y="245" width="0.2" height="15.0" fill="rgb(230,152,36)" rx="2" ry="2" />
2812
<text text-anchor="" x="41.84" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2813
</g>
2814
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2815
<title>main (51 samples, 0.15%)</title><rect x="1103.5" y="293" width="1.7" height="15.0" fill="rgb(248,84,4)" rx="2" ry="2" />
2816
<text text-anchor="" x="1106.45" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2817
</g>
2818
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2819
<title>dput (5,721 samples, 16.62%)</title><rect x="752.3" y="213" width="196.2" height="15.0" fill="rgb(230,226,30)" rx="2" ry="2" />
2820
<text text-anchor="" x="755.33" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >dput</text>
2821
</g>
2822
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2823
<title>cpupri_set (9 samples, 0.03%)</title><rect x="1144.5" y="133" width="0.3" height="15.0" fill="rgb(242,46,19)" rx="2" ry="2" />
2824
<text text-anchor="" x="1147.53" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2825
</g>
2826
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2827
<title>__x2apic_send_IPI_dest (8 samples, 0.02%)</title><rect x="1147.1" y="133" width="0.3" height="15.0" fill="rgb(236,145,51)" rx="2" ry="2" />
2828
<text text-anchor="" x="1150.14" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2829
</g>
2830
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2831
<title>__remove_hrtimer (5 samples, 0.01%)</title><rect x="1111.8" y="181" width="0.2" height="15.0" fill="rgb(227,200,27)" rx="2" ry="2" />
2832
<text text-anchor="" x="1114.79" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2833
</g>
2834
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2835
<title>cpuacct_charge (3 samples, 0.01%)</title><rect x="1145.4" y="133" width="0.1" height="15.0" fill="rgb(249,141,6)" rx="2" ry="2" />
2836
<text text-anchor="" x="1148.42" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2837
</g>
2838
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2839
<title>__d_alloc (1,421 samples, 4.13%)</title><rect x="589.9" y="181" width="48.7" height="15.0" fill="rgb(230,3,18)" rx="2" ry="2" />
2840
<text text-anchor="" x="592.90" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__d_..</text>
2841
</g>
2842
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2843
<title>pthread_cond_broadcast@@GLIBC_2.3.2 (205 samples, 0.60%)</title><rect x="1179.6" y="325" width="7.1" height="15.0" fill="rgb(211,225,12)" rx="2" ry="2" />
2844
<text text-anchor="" x="1182.64" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2845
</g>
2846
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2847
<title>_raw_spin_lock (155 samples, 0.45%)</title><rect x="644.1" y="165" width="5.3" height="15.0" fill="rgb(219,160,40)" rx="2" ry="2" />
2848
<text text-anchor="" x="647.08" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2849
</g>
2850
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2851
<title>schedule_tail (19 samples, 0.06%)</title><rect x="16.1" y="277" width="0.7" height="15.0" fill="rgb(225,105,47)" rx="2" ry="2" />
2852
<text text-anchor="" x="19.10" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2853
</g>
2854
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2855
<title>__rcu_read_lock (32 samples, 0.09%)</title><rect x="560.1" y="117" width="1.1" height="15.0" fill="rgb(223,223,31)" rx="2" ry="2" />
2856
<text text-anchor="" x="563.07" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2857
</g>
2858
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2859
<title>irq_work_queue_on (25 samples, 0.07%)</title><rect x="1147.0" y="149" width="0.9" height="15.0" fill="rgb(212,70,25)" rx="2" ry="2" />
2860
<text text-anchor="" x="1150.00" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2861
</g>
2862
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2863
<title>sched_get_rd (3 samples, 0.01%)</title><rect x="1148.1" y="133" width="0.1" height="15.0" fill="rgb(229,68,11)" rx="2" ry="2" />
2864
<text text-anchor="" x="1151.10" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2865
</g>
2866
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2867
<title>get_timespec64 (7 samples, 0.02%)</title><rect x="1156.5" y="229" width="0.3" height="15.0" fill="rgb(238,163,49)" rx="2" ry="2" />
2868
<text text-anchor="" x="1159.53" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2869
</g>
2870
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2871
<title>d_instantiate (718 samples, 2.09%)</title><rect x="638.6" y="197" width="24.6" height="15.0" fill="rgb(213,205,24)" rx="2" ry="2" />
2872
<text text-anchor="" x="641.63" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >d..</text>
2873
</g>
2874
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2875
<title>sched_clock_cpu (3 samples, 0.01%)</title><rect x="1144.2" y="117" width="0.1" height="15.0" fill="rgb(253,168,18)" rx="2" ry="2" />
2876
<text text-anchor="" x="1147.16" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2877
</g>
2878
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2879
<title>update_curr_rt (19 samples, 0.06%)</title><rect x="1144.9" y="149" width="0.6" height="15.0" fill="rgb(250,159,16)" rx="2" ry="2" />
2880
<text text-anchor="" x="1147.88" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2881
</g>
2882
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2883
<title>native_write_msr (6 samples, 0.02%)</title><rect x="1187.1" y="149" width="0.2" height="15.0" fill="rgb(227,52,30)" rx="2" ry="2" />
2884
<text text-anchor="" x="1190.09" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2885
</g>
2886
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2887
<title>__clone (20 samples, 0.06%)</title><rect x="16.1" y="309" width="0.7" height="15.0" fill="rgb(217,32,52)" rx="2" ry="2" />
2888
<text text-anchor="" x="19.10" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2889
</g>
2890
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2891
<title>__mutex_init (19 samples, 0.06%)</title><rect x="517.4" y="149" width="0.7" height="15.0" fill="rgb(205,77,16)" rx="2" ry="2" />
2892
<text text-anchor="" x="520.45" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2893
</g>
2894
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2895
<title>copy_user_generic_unrolled (4 samples, 0.01%)</title><rect x="1109.5" y="213" width="0.1" height="15.0" fill="rgb(207,201,25)" rx="2" ry="2" />
2896
<text text-anchor="" x="1112.45" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2897
</g>
2898
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2899
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="1117.5" y="133" width="0.1" height="15.0" fill="rgb(251,10,48)" rx="2" ry="2" />
2900
<text text-anchor="" x="1120.51" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2901
</g>
2902
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2903
<title>[unknown] (4 samples, 0.01%)</title><rect x="1187.3" y="293" width="0.2" height="15.0" fill="rgb(217,30,53)" rx="2" ry="2" />
2904
<text text-anchor="" x="1190.33" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2905
</g>
2906
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2907
<title>__this_cpu_preempt_check (11 samples, 0.03%)</title><rect x="961.8" y="197" width="0.4" height="15.0" fill="rgb(235,108,30)" rx="2" ry="2" />
2908
<text text-anchor="" x="964.80" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2909
</g>
2910
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2911
<title>__libc_fork (33 samples, 0.10%)</title><rect x="1188.3" y="325" width="1.2" height="15.0" fill="rgb(246,35,12)" rx="2" ry="2" />
2912
<text text-anchor="" x="1191.32" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2913
</g>
2914
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2915
<title>copy_user_generic_unrolled (5 samples, 0.01%)</title><rect x="1156.6" y="197" width="0.2" height="15.0" fill="rgb(232,186,47)" rx="2" ry="2" />
2916
<text text-anchor="" x="1159.60" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2917
</g>
2918
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2919
<title>__rcu_read_lock (18 samples, 0.05%)</title><rect x="565.3" y="101" width="0.6" height="15.0" fill="rgb(245,23,35)" rx="2" ry="2" />
2920
<text text-anchor="" x="568.32" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2921
</g>
2922
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2923
<title>dl_main (3 samples, 0.01%)</title><rect x="1188.1" y="293" width="0.1" height="15.0" fill="rgb(213,21,32)" rx="2" ry="2" />
2924
<text text-anchor="" x="1191.08" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2925
</g>
2926
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2927
<title>__pthread_disable_asynccancel (193 samples, 0.56%)</title><rect x="1121.0" y="309" width="6.7" height="15.0" fill="rgb(223,58,28)" rx="2" ry="2" />
2928
<text text-anchor="" x="1124.04" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2929
</g>
2930
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2931
<title>native_write_msr (13 samples, 0.04%)</title><rect x="1115.2" y="117" width="0.5" height="15.0" fill="rgb(254,28,29)" rx="2" ry="2" />
2932
<text text-anchor="" x="1118.25" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2933
</g>
2934
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2935
<title>__do_page_fault (4 samples, 0.01%)</title><rect x="1177.8" y="277" width="0.1" height="15.0" fill="rgb(250,150,21)" rx="2" ry="2" />
2936
<text text-anchor="" x="1180.76" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2937
</g>
2938
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2939
<title>futex_wait_queue_me (212 samples, 0.62%)</title><rect x="1141.4" y="213" width="7.2" height="15.0" fill="rgb(208,106,33)" rx="2" ry="2" />
2940
<text text-anchor="" x="1144.38" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2941
</g>
2942
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2943
<title>in_lock_functions (5 samples, 0.01%)</title><rect x="384.8" y="181" width="0.2" height="15.0" fill="rgb(248,91,41)" rx="2" ry="2" />
2944
<text text-anchor="" x="387.82" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2945
</g>
2946
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2947
<title>memcpy (7 samples, 0.02%)</title><rect x="634.5" y="165" width="0.3" height="15.0" fill="rgb(222,143,23)" rx="2" ry="2" />
2948
<text text-anchor="" x="637.55" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2949
</g>
2950
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2951
<title>[unknown] (3 samples, 0.01%)</title><rect x="14.4" y="293" width="0.1" height="15.0" fill="rgb(208,100,49)" rx="2" ry="2" />
2952
<text text-anchor="" x="17.42" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2953
</g>
2954
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2955
<title>__fget (22 samples, 0.06%)</title><rect x="1108.7" y="213" width="0.7" height="15.0" fill="rgb(232,118,2)" rx="2" ry="2" />
2956
<text text-anchor="" x="1111.67" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2957
</g>
2958
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2959
<title>kmem_cache_alloc (1,135 samples, 3.30%)</title><rect x="595.6" y="165" width="38.9" height="15.0" fill="rgb(213,151,47)" rx="2" ry="2" />
2960
<text text-anchor="" x="598.63" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >kme..</text>
2961
</g>
2962
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2963
<title>page_fault (3 samples, 0.01%)</title><rect x="1188.5" y="261" width="0.1" height="15.0" fill="rgb(252,11,23)" rx="2" ry="2" />
2964
<text text-anchor="" x="1191.46" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2965
</g>
2966
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2967
<title>update_process_times (3 samples, 0.01%)</title><rect x="686.6" y="165" width="0.1" height="15.0" fill="rgb(248,42,34)" rx="2" ry="2" />
2968
<text text-anchor="" x="689.56" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2969
</g>
2970
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2971
<title>__strlen_avx2 (3 samples, 0.01%)</title><rect x="1135.8" y="309" width="0.1" height="15.0" fill="rgb(225,98,19)" rx="2" ry="2" />
2972
<text text-anchor="" x="1138.82" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2973
</g>
2974
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2975
<title>enqueue_hrtimer (7 samples, 0.02%)</title><rect x="1154.8" y="213" width="0.3" height="15.0" fill="rgb(246,113,5)" rx="2" ry="2" />
2976
<text text-anchor="" x="1157.82" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2977
</g>
2978
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2979
<title>debug_smp_processor_id (101 samples, 0.29%)</title><rect x="717.1" y="213" width="3.4" height="15.0" fill="rgb(247,176,12)" rx="2" ry="2" />
2980
<text text-anchor="" x="720.08" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2981
</g>
2982
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2983
<title>[unknown] (3 samples, 0.01%)</title><rect x="10.0" y="309" width="0.1" height="15.0" fill="rgb(215,110,52)" rx="2" ry="2" />
2984
<text text-anchor="" x="13.00" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2985
</g>
2986
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2987
<title>entry_SYSCALL_64 (1,896 samples, 5.51%)</title><rect x="47.6" y="293" width="65.0" height="15.0" fill="rgb(216,80,41)" rx="2" ry="2" />
2988
<text text-anchor="" x="50.58" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >entry_S..</text>
2989
</g>
2990
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2991
<title>get_mem_cgroup_from_mm (505 samples, 1.47%)</title><rect x="441.7" y="133" width="17.3" height="15.0" fill="rgb(250,106,50)" rx="2" ry="2" />
2992
<text text-anchor="" x="444.70" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2993
</g>
2994
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2995
<title>__rcu_read_unlock (24 samples, 0.07%)</title><rect x="685.6" y="181" width="0.8" height="15.0" fill="rgb(231,141,1)" rx="2" ry="2" />
2996
<text text-anchor="" x="688.60" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2997
</g>
2998
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
2999
<title>up_write (137 samples, 0.40%)</title><rect x="989.8" y="181" width="4.6" height="15.0" fill="rgb(231,7,53)" rx="2" ry="2" />
3000
<text text-anchor="" x="992.75" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3001
</g>
3002
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3003
<title>__perf_event_task_sched_in (6 samples, 0.02%)</title><rect x="14.6" y="229" width="0.2" height="15.0" fill="rgb(219,107,50)" rx="2" ry="2" />
3004
<text text-anchor="" x="17.59" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3005
</g>
3006
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3007
<title>schedule_hrtimeout_range_clock (202 samples, 0.59%)</title><rect x="1111.0" y="213" width="7.0" height="15.0" fill="rgb(234,46,24)" rx="2" ry="2" />
3008
<text text-anchor="" x="1114.03" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3009
</g>
3010
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3011
<title>entry_SYSCALL_64_after_hwframe (402 samples, 1.17%)</title><rect x="1106.8" y="293" width="13.8" height="15.0" fill="rgb(214,57,34)" rx="2" ry="2" />
3012
<text text-anchor="" x="1109.78" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3013
</g>
3014
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3015
<title>truncate_inode_pages_final (141 samples, 0.41%)</title><rect x="887.4" y="149" width="4.9" height="15.0" fill="rgb(214,173,39)" rx="2" ry="2" />
3016
<text text-anchor="" x="890.43" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3017
</g>
3018
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3019
<title>hrtimer_start_range_ns (14 samples, 0.04%)</title><rect x="1141.7" y="197" width="0.5" height="15.0" fill="rgb(218,5,31)" rx="2" ry="2" />
3020
<text text-anchor="" x="1144.69" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3021
</g>
3022
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3023
<title>get_task_policy.part.0 (4 samples, 0.01%)</title><rect x="474.6" y="85" width="0.1" height="15.0" fill="rgb(215,193,21)" rx="2" ry="2" />
3024
<text text-anchor="" x="477.55" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3025
</g>
3026
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3027
<title>kfree_call_rcu (10 samples, 0.03%)</title><rect x="843.8" y="133" width="0.4" height="15.0" fill="rgb(226,52,50)" rx="2" ry="2" />
3028
<text text-anchor="" x="846.81" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3029
</g>
3030
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3031
<title>sockfd_lookup_light (619 samples, 1.80%)</title><rect x="665.2" y="229" width="21.3" height="15.0" fill="rgb(211,213,14)" rx="2" ry="2" />
3032
<text text-anchor="" x="668.24" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3033
</g>
3034
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3035
<title>preempt_count_add (99 samples, 0.29%)</title><rect x="393.5" y="181" width="3.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
3036
<text text-anchor="" x="396.53" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3037
</g>
3038
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3039
<title>signalVector::signalVector (13 samples, 0.04%)</title><rect x="1103.6" y="197" width="0.5" height="15.0" fill="rgb(214,72,34)" rx="2" ry="2" />
3040
<text text-anchor="" x="1106.63" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3041
</g>
3042
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3043
<title>_raw_spin_unlock (39 samples, 0.11%)</title><rect x="660.5" y="181" width="1.4" height="15.0" fill="rgb(244,65,50)" rx="2" ry="2" />
3044
<text text-anchor="" x="663.54" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3045
</g>
3046
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3047
<title>get_next_ino (200 samples, 0.58%)</title><rect x="379.1" y="213" width="6.8" height="15.0" fill="rgb(205,34,13)" rx="2" ry="2" />
3048
<text text-anchor="" x="382.09" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3049
</g>
3050
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3051
<title>debug_smp_processor_id (14 samples, 0.04%)</title><rect x="722.1" y="197" width="0.4" height="15.0" fill="rgb(253,38,33)" rx="2" ry="2" />
3052
<text text-anchor="" x="725.05" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3053
</g>
3054
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3055
<title>rcu_segcblist_enqueue (161 samples, 0.47%)</title><rect x="838.3" y="117" width="5.5" height="15.0" fill="rgb(242,99,38)" rx="2" ry="2" />
3056
<text text-anchor="" x="841.26" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3057
</g>
3058
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3059
<title>hrtimer_init (7 samples, 0.02%)</title><rect x="1154.5" y="229" width="0.3" height="15.0" fill="rgb(224,189,9)" rx="2" ry="2" />
3060
<text text-anchor="" x="1157.51" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3061
</g>
3062
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3063
<title>timerfd_get_remaining (10 samples, 0.03%)</title><rect x="1156.2" y="229" width="0.3" height="15.0" fill="rgb(242,211,46)" rx="2" ry="2" />
3064
<text text-anchor="" x="1159.19" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3065
</g>
3066
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3067
<title>memcg_kmem_get_cache (431 samples, 1.25%)</title><rect x="555.5" y="133" width="14.8" height="15.0" fill="rgb(232,209,19)" rx="2" ry="2" />
3068
<text text-anchor="" x="558.48" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3069
</g>
3070
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3071
<title>[unknown] (28 samples, 0.08%)</title><rect x="1187.3" y="325" width="1.0" height="15.0" fill="rgb(252,7,14)" rx="2" ry="2" />
3072
<text text-anchor="" x="1190.29" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3073
</g>
3074
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3075
<title>entry_SYSCALL_64_after_hwframe (362 samples, 1.05%)</title><rect x="1159.3" y="309" width="12.4" height="15.0" fill="rgb(241,226,33)" rx="2" ry="2" />
3076
<text text-anchor="" x="1162.28" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3077
</g>
3078
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3079
<title>__audit_syscall_exit (4 samples, 0.01%)</title><rect x="1150.5" y="245" width="0.2" height="15.0" fill="rgb(249,130,8)" rx="2" ry="2" />
3080
<text text-anchor="" x="1153.53" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3081
</g>
3082
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3083
<title>alloc_empty_file (2,967 samples, 8.62%)</title><rect x="487.0" y="181" width="101.7" height="15.0" fill="rgb(226,81,8)" rx="2" ry="2" />
3084
<text text-anchor="" x="489.97" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >alloc_empty_..</text>
3085
</g>
3086
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3087
<title>x2apic_send_IPI (5 samples, 0.01%)</title><rect x="1117.3" y="133" width="0.1" height="15.0" fill="rgb(218,3,52)" rx="2" ry="2" />
3088
<text text-anchor="" x="1120.27" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3089
</g>
3090
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3091
<title>ttwu_do_wakeup.isra.0 (11 samples, 0.03%)</title><rect x="1185.4" y="197" width="0.3" height="15.0" fill="rgb(245,170,32)" rx="2" ry="2" />
3092
<text text-anchor="" x="1188.37" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3093
</g>
3094
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3095
<title>[unknown] (18 samples, 0.05%)</title><rect x="1187.3" y="309" width="0.6" height="15.0" fill="rgb(206,166,24)" rx="2" ry="2" />
3096
<text text-anchor="" x="1190.33" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3097
</g>
3098
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3099
<title>cpupri_set (8 samples, 0.02%)</title><rect x="1114.3" y="133" width="0.3" height="15.0" fill="rgb(247,153,21)" rx="2" ry="2" />
3100
<text text-anchor="" x="1117.29" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3101
</g>
3102
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3103
<title>fsnotify_grab_connector (453 samples, 1.32%)</title><rect x="789.7" y="117" width="15.5" height="15.0" fill="rgb(242,43,11)" rx="2" ry="2" />
3104
<text text-anchor="" x="792.67" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3105
</g>
3106
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3107
<title>security_socket_accept (22 samples, 0.06%)</title><rect x="375.3" y="229" width="0.7" height="15.0" fill="rgb(215,13,23)" rx="2" ry="2" />
3108
<text text-anchor="" x="378.28" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3109
</g>
3110
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3111
<title>kmem_cache_free (196 samples, 0.57%)</title><rect x="936.4" y="181" width="6.7" height="15.0" fill="rgb(243,214,41)" rx="2" ry="2" />
3112
<text text-anchor="" x="939.36" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3113
</g>
3114
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3115
<title>preempt_count_add (82 samples, 0.24%)</title><rect x="571.8" y="117" width="2.8" height="15.0" fill="rgb(229,67,50)" rx="2" ry="2" />
3116
<text text-anchor="" x="574.80" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3117
</g>
3118
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3119
<title>ret_from_fork (29 samples, 0.08%)</title><rect x="1188.5" y="309" width="1.0" height="15.0" fill="rgb(224,84,13)" rx="2" ry="2" />
3120
<text text-anchor="" x="1191.46" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3121
</g>
3122
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3123
<title>alloc_file (3,080 samples, 8.95%)</title><rect x="483.7" y="197" width="105.6" height="15.0" fill="rgb(220,107,52)" rx="2" ry="2" />
3124
<text text-anchor="" x="486.71" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >alloc_file</text>
3125
</g>
3126
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3127
<title>in_lock_functions (18 samples, 0.05%)</title><rect x="306.2" y="165" width="0.6" height="15.0" fill="rgb(241,209,22)" rx="2" ry="2" />
3128
<text text-anchor="" x="309.19" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3129
</g>
3130
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3131
<title>_raw_spin_lock (3 samples, 0.01%)</title><rect x="1183.3" y="149" width="0.2" height="15.0" fill="rgb(216,108,12)" rx="2" ry="2" />
3132
<text text-anchor="" x="1186.35" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3133
</g>
3134
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3135
<title>proc_do_submiturb (118 samples, 0.34%)</title><rect x="1165.7" y="197" width="4.1" height="15.0" fill="rgb(238,186,53)" rx="2" ry="2" />
3136
<text text-anchor="" x="1168.72" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3137
</g>
3138
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3139
<title>__intel_pmu_enable_all.constprop.0 (13 samples, 0.04%)</title><rect x="1115.2" y="133" width="0.5" height="15.0" fill="rgb(206,60,33)" rx="2" ry="2" />
3140
<text text-anchor="" x="1118.25" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3141
</g>
3142
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3143
<title>malloc (6 samples, 0.02%)</title><rect x="1179.3" y="325" width="0.2" height="15.0" fill="rgb(224,161,42)" rx="2" ry="2" />
3144
<text text-anchor="" x="1182.27" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3145
</g>
3146
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3147
<title>apic_timer_interrupt (8 samples, 0.02%)</title><rect x="38.8" y="293" width="0.3" height="15.0" fill="rgb(220,24,36)" rx="2" ry="2" />
3148
<text text-anchor="" x="41.80" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3149
</g>
3150
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3151
<title>prepare_transfer (8 samples, 0.02%)</title><rect x="1168.9" y="133" width="0.3" height="15.0" fill="rgb(239,38,13)" rx="2" ry="2" />
3152
<text text-anchor="" x="1171.91" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3153
</g>
3154
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3155
<title>_raw_spin_lock (321 samples, 0.93%)</title><rect x="849.4" y="149" width="11.0" height="15.0" fill="rgb(231,169,47)" rx="2" ry="2" />
3156
<text text-anchor="" x="852.40" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3157
</g>
3158
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3159
<title>x2apic_send_IPI (7 samples, 0.02%)</title><rect x="1147.6" y="133" width="0.3" height="15.0" fill="rgb(249,216,45)" rx="2" ry="2" />
3160
<text text-anchor="" x="1150.62" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3161
</g>
3162
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3163
<title>current_time (6 samples, 0.02%)</title><rect x="1164.0" y="197" width="0.2" height="15.0" fill="rgb(253,58,12)" rx="2" ry="2" />
3164
<text text-anchor="" x="1166.97" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3165
</g>
3166
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3167
<title>cgroup_base_stat_cputime_account_end.isra.0 (3 samples, 0.01%)</title><rect x="1114.9" y="133" width="0.1" height="15.0" fill="rgb(223,61,24)" rx="2" ry="2" />
3168
<text text-anchor="" x="1117.91" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3169
</g>
3170
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3171
<title>security_d_instantiate (40 samples, 0.12%)</title><rect x="661.9" y="181" width="1.3" height="15.0" fill="rgb(219,17,27)" rx="2" ry="2" />
3172
<text text-anchor="" x="664.88" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3173
</g>
3174
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3175
<title>sched_clock_cpu (3 samples, 0.01%)</title><rect x="1185.3" y="133" width="0.1" height="15.0" fill="rgb(205,35,27)" rx="2" ry="2" />
3176
<text text-anchor="" x="1188.27" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3177
</g>
3178
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3179
<title>dequeue_rt_stack (15 samples, 0.04%)</title><rect x="1144.4" y="149" width="0.5" height="15.0" fill="rgb(233,202,43)" rx="2" ry="2" />
3180
<text text-anchor="" x="1147.36" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3181
</g>
3182
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3183
<title>perf_event_exec (6 samples, 0.02%)</title><rect x="1187.1" y="181" width="0.2" height="15.0" fill="rgb(237,175,4)" rx="2" ry="2" />
3184
<text text-anchor="" x="1190.09" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3185
</g>
3186
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3187
<title>native_write_msr (8 samples, 0.02%)</title><rect x="1147.1" y="117" width="0.3" height="15.0" fill="rgb(216,162,4)" rx="2" ry="2" />
3188
<text text-anchor="" x="1150.14" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3189
</g>
3190
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3191
<title>_raw_spin_lock (246 samples, 0.71%)</title><rect x="879.0" y="133" width="8.4" height="15.0" fill="rgb(244,86,0)" rx="2" ry="2" />
3192
<text text-anchor="" x="882.00" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3193
</g>
3194
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3195
<title>makeTransceiver (48 samples, 0.14%)</title><rect x="1103.6" y="261" width="1.6" height="15.0" fill="rgb(235,136,28)" rx="2" ry="2" />
3196
<text text-anchor="" x="1106.56" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3197
</g>
3198
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3199
<title>put_prev_task_rt (6 samples, 0.02%)</title><rect x="1146.8" y="149" width="0.2" height="15.0" fill="rgb(217,168,18)" rx="2" ry="2" />
3200
<text text-anchor="" x="1149.76" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3201
</g>
3202
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3203
<title>locks_remove_file (73 samples, 0.21%)</title><rect x="954.0" y="213" width="2.5" height="15.0" fill="rgb(246,150,46)" rx="2" ry="2" />
3204
<text text-anchor="" x="957.02" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3205
</g>
3206
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3207
<title>__alloc_file (2,773 samples, 8.06%)</title><rect x="488.2" y="165" width="95.1" height="15.0" fill="rgb(214,70,25)" rx="2" ry="2" />
3208
<text text-anchor="" x="491.20" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__alloc_file</text>
3209
</g>
3210
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3211
<title>native_write_msr (12 samples, 0.03%)</title><rect x="1173.3" y="229" width="0.4" height="15.0" fill="rgb(220,52,45)" rx="2" ry="2" />
3212
<text text-anchor="" x="1176.30" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3213
</g>
3214
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3215
<title>lime::LMS64CProtocol::ProcessConnections (28 samples, 0.08%)</title><rect x="1138.0" y="309" width="1.0" height="15.0" fill="rgb(241,207,29)" rx="2" ry="2" />
3216
<text text-anchor="" x="1141.02" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3217
</g>
3218
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3219
<title>__check_object_size (4 samples, 0.01%)</title><rect x="1166.1" y="181" width="0.1" height="15.0" fill="rgb(239,196,2)" rx="2" ry="2" />
3220
<text text-anchor="" x="1169.07" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3221
</g>
3222
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3223
<title>_raw_spin_unlock (4 samples, 0.01%)</title><rect x="1145.8" y="133" width="0.2" height="15.0" fill="rgb(210,47,30)" rx="2" ry="2" />
3224
<text text-anchor="" x="1148.84" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3225
</g>
3226
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3227
<title>map_id_range_down (58 samples, 0.17%)</title><rect x="409.3" y="149" width="2.0" height="15.0" fill="rgb(214,3,48)" rx="2" ry="2" />
3228
<text text-anchor="" x="412.30" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3229
</g>
3230
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3231
<title>__sched_text_start (182 samples, 0.53%)</title><rect x="1142.3" y="181" width="6.2" height="15.0" fill="rgb(221,16,18)" rx="2" ry="2" />
3232
<text text-anchor="" x="1145.30" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3233
</g>
3234
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3235
<title>memcg_kmem_put_cache (120 samples, 0.35%)</title><rect x="630.3" y="149" width="4.1" height="15.0" fill="rgb(209,47,4)" rx="2" ry="2" />
3236
<text text-anchor="" x="633.29" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3237
</g>
3238
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3239
<title>_raw_spin_lock (242 samples, 0.70%)</title><rect x="264.3" y="213" width="8.3" height="15.0" fill="rgb(225,153,32)" rx="2" ry="2" />
3240
<text text-anchor="" x="267.26" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3241
</g>
3242
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3243
<title>_raw_spin_unlock_irq (4 samples, 0.01%)</title><rect x="1146.0" y="149" width="0.1" height="15.0" fill="rgb(207,191,38)" rx="2" ry="2" />
3244
<text text-anchor="" x="1148.97" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3245
</g>
3246
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3247
<title>___slab_alloc (610 samples, 1.77%)</title><rect x="534.5" y="117" width="20.9" height="15.0" fill="rgb(251,63,51)" rx="2" ry="2" />
3248
<text text-anchor="" x="537.46" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3249
</g>
3250
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3251
<title>update_rq_clock (3 samples, 0.01%)</title><rect x="1148.4" y="165" width="0.1" height="15.0" fill="rgb(217,35,29)" rx="2" ry="2" />
3252
<text text-anchor="" x="1151.44" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3253
</g>
3254
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3255
<title>preempt_count_add (218 samples, 0.63%)</title><rect x="1004.8" y="213" width="7.5" height="15.0" fill="rgb(214,193,45)" rx="2" ry="2" />
3256
<text text-anchor="" x="1007.80" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3257
</g>
3258
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3259
<title>_raw_spin_lock (230 samples, 0.67%)</title><rect x="918.6" y="133" width="7.9" height="15.0" fill="rgb(223,94,19)" rx="2" ry="2" />
3260
<text text-anchor="" x="921.63" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3261
</g>
3262
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3263
<title>_raw_spin_unlock_irqrestore (3 samples, 0.01%)</title><rect x="1110.3" y="213" width="0.1" height="15.0" fill="rgb(240,106,47)" rx="2" ry="2" />
3264
<text text-anchor="" x="1113.31" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3265
</g>
3266
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3267
<title>security_file_free (39 samples, 0.11%)</title><rect x="966.2" y="213" width="1.3" height="15.0" fill="rgb(227,12,1)" rx="2" ry="2" />
3268
<text text-anchor="" x="969.16" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3269
</g>
3270
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3271
<title>ktime_get_ts64 (6 samples, 0.02%)</title><rect x="1119.3" y="229" width="0.2" height="15.0" fill="rgb(217,137,14)" rx="2" ry="2" />
3272
<text text-anchor="" x="1122.33" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3273
</g>
3274
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3275
<title>libusb_handle_events_completed (3 samples, 0.01%)</title><rect x="1137.4" y="309" width="0.1" height="15.0" fill="rgb(218,135,1)" rx="2" ry="2" />
3276
<text text-anchor="" x="1140.37" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3277
</g>
3278
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3279
<title>_raw_spin_lock (208 samples, 0.60%)</title><rect x="756.7" y="197" width="7.1" height="15.0" fill="rgb(207,128,42)" rx="2" ry="2" />
3280
<text text-anchor="" x="759.69" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3281
</g>
3282
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3283
<title>module_put (19 samples, 0.06%)</title><rect x="957.9" y="213" width="0.6" height="15.0" fill="rgb(249,50,3)" rx="2" ry="2" />
3284
<text text-anchor="" x="960.86" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3285
</g>
3286
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3287
<title>sock_destroy_inode (606 samples, 1.76%)</title><rect x="823.4" y="149" width="20.8" height="15.0" fill="rgb(209,26,48)" rx="2" ry="2" />
3288
<text text-anchor="" x="826.38" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3289
</g>
3290
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3291
<title>[libusb-1.0.so.0.1.0] (18 samples, 0.05%)</title><rect x="10.8" y="325" width="0.6" height="15.0" fill="rgb(232,39,23)" rx="2" ry="2" />
3292
<text text-anchor="" x="13.79" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3293
</g>
3294
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3295
<title>add_wait_queue (3 samples, 0.01%)</title><rect x="1118.6" y="213" width="0.1" height="15.0" fill="rgb(207,19,45)" rx="2" ry="2" />
3296
<text text-anchor="" x="1121.64" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3297
</g>
3298
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3299
<title>entry_SYSCALL_64 (20 samples, 0.06%)</title><rect x="1106.1" y="293" width="0.7" height="15.0" fill="rgb(205,31,20)" rx="2" ry="2" />
3300
<text text-anchor="" x="1109.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3301
</g>
3302
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3303
<title>hrtimer_init (7 samples, 0.02%)</title><rect x="1149.7" y="213" width="0.3" height="15.0" fill="rgb(216,182,37)" rx="2" ry="2" />
3304
<text text-anchor="" x="1152.74" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3305
</g>
3306
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3307
<title>activate_task (75 samples, 0.22%)</title><rect x="1182.8" y="181" width="2.6" height="15.0" fill="rgb(220,24,33)" rx="2" ry="2" />
3308
<text text-anchor="" x="1185.80" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3309
</g>
3310
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3311
<title>tick_sched_timer (3 samples, 0.01%)</title><rect x="686.6" y="197" width="0.1" height="15.0" fill="rgb(243,40,4)" rx="2" ry="2" />
3312
<text text-anchor="" x="689.56" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3313
</g>
3314
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3315
<title>pick_next_task_stop (4 samples, 0.01%)</title><rect x="1148.2" y="165" width="0.2" height="15.0" fill="rgb(229,128,3)" rx="2" ry="2" />
3316
<text text-anchor="" x="1151.24" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3317
</g>
3318
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3319
<title>__virt_addr_valid (3 samples, 0.01%)</title><rect x="1170.6" y="149" width="0.1" height="15.0" fill="rgb(212,93,49)" rx="2" ry="2" />
3320
<text text-anchor="" x="1173.56" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3321
</g>
3322
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3323
<title>__memcg_kmem_charge_memcg (58 samples, 0.17%)</title><rect x="544.4" y="85" width="2.0" height="15.0" fill="rgb(218,214,26)" rx="2" ry="2" />
3324
<text text-anchor="" x="547.40" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3325
</g>
3326
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3327
<title>preempt_count_sub (71 samples, 0.21%)</title><rect x="861.2" y="133" width="2.5" height="15.0" fill="rgb(240,27,35)" rx="2" ry="2" />
3328
<text text-anchor="" x="864.23" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3329
</g>
3330
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3331
<title>trx_start (50 samples, 0.15%)</title><rect x="1103.5" y="277" width="1.7" height="15.0" fill="rgb(217,52,35)" rx="2" ry="2" />
3332
<text text-anchor="" x="1106.49" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3333
</g>
3334
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3335
<title>add_wait_queue (3 samples, 0.01%)</title><rect x="1119.2" y="213" width="0.1" height="15.0" fill="rgb(205,27,30)" rx="2" ry="2" />
3336
<text text-anchor="" x="1122.16" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3337
</g>
3338
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3339
<title>finish_task_switch (22 samples, 0.06%)</title><rect x="1115.1" y="165" width="0.7" height="15.0" fill="rgb(223,198,18)" rx="2" ry="2" />
3340
<text text-anchor="" x="1118.08" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3341
</g>
3342
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3343
<title>_copy_from_user (4 samples, 0.01%)</title><rect x="1156.8" y="229" width="0.1" height="15.0" fill="rgb(249,126,10)" rx="2" ry="2" />
3344
<text text-anchor="" x="1159.81" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3345
</g>
3346
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3347
<title>_raw_spin_lock (6 samples, 0.02%)</title><rect x="1142.9" y="165" width="0.2" height="15.0" fill="rgb(221,152,37)" rx="2" ry="2" />
3348
<text text-anchor="" x="1145.89" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3349
</g>
3350
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3351
<title>in_lock_functions (32 samples, 0.09%)</title><rect x="886.3" y="101" width="1.1" height="15.0" fill="rgb(213,9,42)" rx="2" ry="2" />
3352
<text text-anchor="" x="889.33" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3353
</g>
3354
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3355
<title>strlen (37 samples, 0.11%)</title><rect x="664.0" y="197" width="1.2" height="15.0" fill="rgb(211,98,43)" rx="2" ry="2" />
3356
<text text-anchor="" x="666.97" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3357
</g>
3358
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3359
<title>__audit_syscall_entry (100 samples, 0.29%)</title><rect x="1041.9" y="245" width="3.4" height="15.0" fill="rgb(252,18,27)" rx="2" ry="2" />
3360
<text text-anchor="" x="1044.90" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3361
</g>
3362
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3363
<title>__GI___libc_open (11 samples, 0.03%)</title><rect x="15.7" y="309" width="0.3" height="15.0" fill="rgb(236,25,1)" rx="2" ry="2" />
3364
<text text-anchor="" x="18.66" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3365
</g>
3366
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3367
<title>new_slab (4 samples, 0.01%)</title><rect x="1046.6" y="293" width="0.1" height="15.0" fill="rgb(208,199,53)" rx="2" ry="2" />
3368
<text text-anchor="" x="1049.60" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3369
</g>
3370
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3371
<title>security_inode_alloc (39 samples, 0.11%)</title><rect x="411.3" y="165" width="1.3" height="15.0" fill="rgb(224,103,29)" rx="2" ry="2" />
3372
<text text-anchor="" x="414.29" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3373
</g>
3374
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3375
<title>native_write_msr (6 samples, 0.02%)</title><rect x="1116.9" y="117" width="0.2" height="15.0" fill="rgb(226,163,25)" rx="2" ry="2" />
3376
<text text-anchor="" x="1119.90" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3377
</g>
3378
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3379
<title>link_path_walk (4 samples, 0.01%)</title><rect x="15.8" y="213" width="0.2" height="15.0" fill="rgb(248,117,44)" rx="2" ry="2" />
3380
<text text-anchor="" x="18.83" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3381
</g>
3382
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3383
<title>memcg_kmem_put_cache (103 samples, 0.30%)</title><rect x="459.0" y="149" width="3.6" height="15.0" fill="rgb(232,220,8)" rx="2" ry="2" />
3384
<text text-anchor="" x="462.02" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3385
</g>
3386
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3387
<title>preempt_count_add (66 samples, 0.19%)</title><rect x="585.6" y="149" width="2.3" height="15.0" fill="rgb(246,60,37)" rx="2" ry="2" />
3388
<text text-anchor="" x="588.62" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3389
</g>
3390
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3391
<title>ctx_sched_out (13 samples, 0.04%)</title><rect x="1112.9" y="149" width="0.4" height="15.0" fill="rgb(227,223,5)" rx="2" ry="2" />
3392
<text text-anchor="" x="1115.88" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3393
</g>
3394
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3395
<title>[unknown] (14 samples, 0.04%)</title><rect x="11.5" y="293" width="0.5" height="15.0" fill="rgb(246,210,49)" rx="2" ry="2" />
3396
<text text-anchor="" x="14.54" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3397
</g>
3398
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3399
<title>free_async (28 samples, 0.08%)</title><rect x="1164.2" y="197" width="0.9" height="15.0" fill="rgb(225,98,22)" rx="2" ry="2" />
3400
<text text-anchor="" x="1167.18" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3401
</g>
3402
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3403
<title>__srcu_read_lock (240 samples, 0.70%)</title><rect x="791.2" y="101" width="8.2" height="15.0" fill="rgb(244,185,50)" rx="2" ry="2" />
3404
<text text-anchor="" x="794.21" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3405
</g>
3406
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3407
<title>__pthread_enable_asynccancel (185 samples, 0.54%)</title><rect x="1127.7" y="309" width="6.3" height="15.0" fill="rgb(224,109,8)" rx="2" ry="2" />
3408
<text text-anchor="" x="1130.66" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3409
</g>
3410
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3411
<title>in_lock_functions (24 samples, 0.07%)</title><rect x="347.5" y="149" width="0.8" height="15.0" fill="rgb(237,14,51)" rx="2" ry="2" />
3412
<text text-anchor="" x="350.51" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3413
</g>
3414
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3415
<title>ttwu_do_activate (75 samples, 0.22%)</title><rect x="1182.8" y="197" width="2.6" height="15.0" fill="rgb(219,10,1)" rx="2" ry="2" />
3416
<text text-anchor="" x="1185.80" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3417
</g>
3418
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3419
<title>load_elf_binary (6 samples, 0.02%)</title><rect x="1187.1" y="213" width="0.2" height="15.0" fill="rgb(238,195,2)" rx="2" ry="2" />
3420
<text text-anchor="" x="1190.09" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3421
</g>
3422
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3423
<title>percpu_counter_add_batch (216 samples, 0.63%)</title><rect x="958.5" y="213" width="7.4" height="15.0" fill="rgb(209,67,12)" rx="2" ry="2" />
3424
<text text-anchor="" x="961.51" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3425
</g>
3426
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3427
<title>__perf_event_task_sched_in (14 samples, 0.04%)</title><rect x="1115.2" y="149" width="0.5" height="15.0" fill="rgb(254,48,44)" rx="2" ry="2" />
3428
<text text-anchor="" x="1118.25" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3429
</g>
3430
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3431
<title>timerqueue_del (3 samples, 0.01%)</title><rect x="1149.3" y="165" width="0.1" height="15.0" fill="rgb(248,126,30)" rx="2" ry="2" />
3432
<text text-anchor="" x="1152.26" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3433
</g>
3434
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3435
<title>fsnotify (161 samples, 0.47%)</title><rect x="948.5" y="213" width="5.5" height="15.0" fill="rgb(218,79,28)" rx="2" ry="2" />
3436
<text text-anchor="" x="951.50" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3437
</g>
3438
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3439
<title>__kmalloc (6 samples, 0.02%)</title><rect x="1167.3" y="165" width="0.2" height="15.0" fill="rgb(209,38,14)" rx="2" ry="2" />
3440
<text text-anchor="" x="1170.27" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3441
</g>
3442
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3443
<title>update_curr_rt (14 samples, 0.04%)</title><rect x="1114.6" y="149" width="0.5" height="15.0" fill="rgb(246,163,19)" rx="2" ry="2" />
3444
<text text-anchor="" x="1117.60" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3445
</g>
3446
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3447
<title>do_page_fault (3 samples, 0.01%)</title><rect x="1188.5" y="245" width="0.1" height="15.0" fill="rgb(245,81,3)" rx="2" ry="2" />
3448
<text text-anchor="" x="1191.46" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3449
</g>
3450
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3451
<title>memset_erms (3 samples, 0.01%)</title><rect x="1168.4" y="133" width="0.1" height="15.0" fill="rgb(253,16,41)" rx="2" ry="2" />
3452
<text text-anchor="" x="1171.36" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3453
</g>
3454
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3455
<title>finish_task_switch (7 samples, 0.02%)</title><rect x="1177.2" y="197" width="0.3" height="15.0" fill="rgb(230,35,28)" rx="2" ry="2" />
3456
<text text-anchor="" x="1180.21" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3457
</g>
3458
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3459
<title>release_sock (483 samples, 1.40%)</title><rect x="349.3" y="197" width="16.6" height="15.0" fill="rgb(224,188,3)" rx="2" ry="2" />
3460
<text text-anchor="" x="352.33" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3461
</g>
3462
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3463
<title>__this_cpu_preempt_check (4 samples, 0.01%)</title><rect x="543.3" y="37" width="0.2" height="15.0" fill="rgb(207,66,29)" rx="2" ry="2" />
3464
<text text-anchor="" x="546.34" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3465
</g>
3466
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3467
<title>__fput (7,781 samples, 22.61%)</title><rect x="727.7" y="229" width="266.8" height="15.0" fill="rgb(221,90,9)" rx="2" ry="2" />
3468
<text text-anchor="" x="730.71" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__fput</text>
3469
</g>
3470
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3471
<title>__unqueue_futex (5 samples, 0.01%)</title><rect x="1181.5" y="213" width="0.2" height="15.0" fill="rgb(241,197,7)" rx="2" ry="2" />
3472
<text text-anchor="" x="1184.53" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3473
</g>
3474
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3475
<title>memcg_kmem_put_cache (14 samples, 0.04%)</title><rect x="477.3" y="149" width="0.5" height="15.0" fill="rgb(221,223,49)" rx="2" ry="2" />
3476
<text text-anchor="" x="480.33" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3477
</g>
3478
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3479
<title>Vector&lt;Complex&lt;float&gt; &gt;::resize (12 samples, 0.03%)</title><rect x="1103.7" y="165" width="0.4" height="15.0" fill="rgb(248,41,22)" rx="2" ry="2" />
3480
<text text-anchor="" x="1106.66" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3481
</g>
3482
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3483
<title>interrupt_entry (3 samples, 0.01%)</title><rect x="1046.4" y="293" width="0.1" height="15.0" fill="rgb(206,156,32)" rx="2" ry="2" />
3484
<text text-anchor="" x="1049.36" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3485
</g>
3486
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3487
<title>futex_wait (266 samples, 0.77%)</title><rect x="1140.9" y="229" width="9.1" height="15.0" fill="rgb(206,183,48)" rx="2" ry="2" />
3488
<text text-anchor="" x="1143.90" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3489
</g>
3490
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3491
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1189.8" y="309" width="0.1" height="15.0" fill="rgb(210,48,19)" rx="2" ry="2" />
3492
<text text-anchor="" x="1192.79" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3493
</g>
3494
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3495
<title>finish_task_switch (6 samples, 0.02%)</title><rect x="14.6" y="245" width="0.2" height="15.0" fill="rgb(226,25,48)" rx="2" ry="2" />
3496
<text text-anchor="" x="17.59" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3497
</g>
3498
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3499
<title>__handle_mm_fault (4 samples, 0.01%)</title><rect x="1177.8" y="245" width="0.1" height="15.0" fill="rgb(218,51,41)" rx="2" ry="2" />
3500
<text text-anchor="" x="1180.76" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3501
</g>
3502
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3503
<title>__rcu_read_unlock (17 samples, 0.05%)</title><rect x="455.2" y="117" width="0.6" height="15.0" fill="rgb(222,128,50)" rx="2" ry="2" />
3504
<text text-anchor="" x="458.21" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3505
</g>
3506
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3507
<title>entry_SYSCALL_64 (13 samples, 0.04%)</title><rect x="1174.1" y="309" width="0.4" height="15.0" fill="rgb(237,137,47)" rx="2" ry="2" />
3508
<text text-anchor="" x="1177.09" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3509
</g>
3510
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3511
<title>__perf_event_task_sched_in (9 samples, 0.03%)</title><rect x="1145.7" y="149" width="0.3" height="15.0" fill="rgb(237,210,43)" rx="2" ry="2" />
3512
<text text-anchor="" x="1148.66" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3513
</g>
3514
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3515
<title>usb_submit_urb (6 samples, 0.02%)</title><rect x="1169.5" y="181" width="0.2" height="15.0" fill="rgb(245,115,49)" rx="2" ry="2" />
3516
<text text-anchor="" x="1172.46" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3517
</g>
3518
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3519
<title>enqueue_task_rt (35 samples, 0.10%)</title><rect x="1182.9" y="165" width="1.2" height="15.0" fill="rgb(209,207,49)" rx="2" ry="2" />
3520
<text text-anchor="" x="1185.90" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3521
</g>
3522
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3523
<title>usbdev_do_ioctl (239 samples, 0.69%)</title><rect x="1162.7" y="213" width="8.2" height="15.0" fill="rgb(254,24,25)" rx="2" ry="2" />
3524
<text text-anchor="" x="1165.67" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3525
</g>
3526
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3527
<title>timerqueue_add (3 samples, 0.01%)</title><rect x="1141.9" y="165" width="0.1" height="15.0" fill="rgb(249,214,22)" rx="2" ry="2" />
3528
<text text-anchor="" x="1144.86" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3529
</g>
3530
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3531
<title>schedule (186 samples, 0.54%)</title><rect x="1142.3" y="197" width="6.3" height="15.0" fill="rgb(231,97,14)" rx="2" ry="2" />
3532
<text text-anchor="" x="1145.27" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3533
</g>
3534
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
3535
<title>in_lock_functions (22 samples, 0.06%)</title><rect x="777.0" y="133" width="0.8" height="15.0" fill="rgb(225,127,35)" rx="2" ry="2" />
3536
<text text-anchor="" x="780.02" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3537
</g>
3538
</svg>
(1-1/2)
Add picture from clipboard (Maximum size: 48.8 MB)