Project

General

Profile

Talk #3118 » cpu-bash-flamegraph.svg

Pinke, Christopher, 2016-01-18 13:24

 
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="1080" height="626" onload="init(evt)" viewBox="0 0 1080 626" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
4
<defs >
5
	<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
6
		<stop stop-color="#eeeeee" offset="5%" />
7
		<stop stop-color="#eeeeb0" offset="95%" />
8
	</linearGradient>
9
</defs>
10
<style type="text/css">
11
	.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
12
</style>
13
<script type="text/ecmascript">
14
<![CDATA[
15
	var details, svg;
16
	function init(evt) { 
17
		details = document.getElementById("details").firstChild; 
18
		svg = document.getElementsByTagName("svg")[0];
19
	}
20
	function s(info) { details.nodeValue = "Function: " + info; }
21
	function c() { details.nodeValue = ' '; }
22
	function find_child(parent, name, attr) {
23
		var children = parent.childNodes;
24
		for (var i=0; i<children.length;i++) {
25
			if (children[i].tagName == name)
26
				return (attr != undefined) ? children[i].attributes[attr].value : children[i];
27
		}
28
		return;
29
	}
30
	function orig_save(e, attr, val) {
31
		if (e.attributes["_orig_"+attr] != undefined) return;
32
		if (e.attributes[attr] == undefined) return;
33
		if (val == undefined) val = e.attributes[attr].value;
34
		e.setAttribute("_orig_"+attr, val);
35
	}
36
	function orig_load(e, attr) {
37
		if (e.attributes["_orig_"+attr] == undefined) return;
38
		e.attributes[attr].value = e.attributes["_orig_"+attr].value;
39
		e.removeAttribute("_orig_"+attr);
40
	}
41
	function update_text(e) {
42
		var r = find_child(e, "rect");
43
		var t = find_child(e, "text");
44
		var w = parseFloat(r.attributes["width"].value) -3;
45
		var txt = find_child(e, "title").textContent.replace(/\([^(]*\)/,"");
46
		t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
47
		
48
		// Smaller than this size won't fit anything
49
		if (w < 2*12*0.59) {
50
			t.textContent = "";
51
			return;
52
		}
53
		
54
		t.textContent = txt;
55
		// Fit in full text width
56
		if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
57
			return;
58
		
59
		for (var x=txt.length-2; x>0; x--) {
60
			if (t.getSubStringLength(0, x+2) <= w) { 
61
				t.textContent = txt.substring(0,x) + "..";
62
				return;
63
			}
64
		}
65
		t.textContent = "";
66
	}
67
	function zoom_reset(e) {
68
		if (e.attributes != undefined) {
69
			orig_load(e, "x");
70
			orig_load(e, "width");
71
		}
72
		if (e.childNodes == undefined) return;
73
		for(var i=0, c=e.childNodes; i<c.length; i++) {
74
			zoom_reset(c[i]);
75
		}
76
	}
77
	function zoom_child(e, x, ratio) {
78
		if (e.attributes != undefined) {
79
			if (e.attributes["x"] != undefined) {
80
				orig_save(e, "x");
81
				e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
82
				if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
83
			}
84
			if (e.attributes["width"] != undefined) {
85
				orig_save(e, "width");
86
				e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
87
			}
88
		}
89
		
90
		if (e.childNodes == undefined) return;
91
		for(var i=0, c=e.childNodes; i<c.length; i++) {
92
			zoom_child(c[i], x-10, ratio);
93
		}
94
	}
95
	function zoom_parent(e) {
96
		if (e.attributes) {
97
			if (e.attributes["x"] != undefined) {
98
				orig_save(e, "x");
99
				e.attributes["x"].value = 10;
100
			}
101
			if (e.attributes["width"] != undefined) {
102
				orig_save(e, "width");
103
				e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
104
			}
105
		}
106
		if (e.childNodes == undefined) return;
107
		for(var i=0, c=e.childNodes; i<c.length; i++) {
108
			zoom_parent(c[i]);
109
		}
110
	}
111
	function zoom(node) { 
112
		var attr = find_child(node, "rect").attributes;
113
		var width = parseFloat(attr["width"].value);
114
		var xmin = parseFloat(attr["x"].value);
115
		var xmax = parseFloat(xmin + width);
116
		var ymin = parseFloat(attr["y"].value);
117
		var ratio = (svg.width.baseVal.value - 2*10) / width;
118
		
119
		// XXX: Workaround for JavaScript float issues (fix me)
120
		var fudge = 0.0001;
121
		
122
		var unzoombtn = document.getElementById("unzoom");
123
		unzoombtn.style["opacity"] = "1.0";
124
		
125
		var el = document.getElementsByTagName("g");
126
		for(var i=0;i<el.length;i++){
127
			var e = el[i];
128
			var a = find_child(e, "rect").attributes;
129
			var ex = parseFloat(a["x"].value);
130
			var ew = parseFloat(a["width"].value);
131
			// Is it an ancestor
132
			if (0 == 0) {
133
				var upstack = parseFloat(a["y"].value) > ymin;
134
			} else {
135
				var upstack = parseFloat(a["y"].value) < ymin;
136
			}
137
			if (upstack) {
138
				// Direct ancestor
139
				if (ex <= xmin && (ex+ew+fudge) >= xmax) {
140
					e.style["opacity"] = "0.5";
141
					zoom_parent(e);
142
					e.onclick = function(e){unzoom(); zoom(this);};
143
					update_text(e);
144
				}
145
				// not in current path
146
				else
147
					e.style["display"] = "none";
148
			}
149
			// Children maybe
150
			else {
151
				// no common path
152
				if (ex < xmin || ex + fudge >= xmax) {
153
					e.style["display"] = "none";
154
				}
155
				else {
156
					zoom_child(e, xmin, ratio);
157
					e.onclick = function(e){zoom(this);};
158
					update_text(e);
159
				}
160
			}
161
		}
162
	}
163
	function unzoom() {
164
		var unzoombtn = document.getElementById("unzoom");
165
		unzoombtn.style["opacity"] = "0.0";
166
		
167
		var el = document.getElementsByTagName("g");
168
		for(i=0;i<el.length;i++) {
169
			el[i].style["display"] = "block";
170
			el[i].style["opacity"] = "1";
171
			zoom_reset(el[i]);
172
			update_text(el[i]);
173
		}
174
	}	
175
]]>
176
</script>
177
<rect x="0.0" y="0" width="1080.0" height="626.0" fill="url(#background)"  />
178
<text text-anchor="middle" x="540.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)"  >Flame Graph</text>
179
<text text-anchor="" x="10.00" y="609" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
180
<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>
181
<g class="func_g" onmouseover="s('__strcpy_ssse3 (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
182
<title>__strcpy_ssse3 (2 samples, 0.07%)</title><rect x="805.3" y="337" width="0.7" height="15.0" fill="rgb(221,174,29)" rx="2" ry="2" />
183
<text text-anchor="" x="808.27" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
184
</g>
185
<g class="func_g" onmouseover="s('sh_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
186
<title>sh_malloc (2 samples, 0.07%)</title><rect x="942.6" y="321" width="0.8" height="15.0" fill="rgb(253,215,26)" rx="2" ry="2" />
187
<text text-anchor="" x="945.64" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
188
</g>
189
<g class="func_g" onmouseover="s('run_pending_traps (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
190
<title>run_pending_traps (1 samples, 0.03%)</title><rect x="1053.2" y="417" width="0.3" height="15.0" fill="rgb(208,101,20)" rx="2" ry="2" />
191
<text text-anchor="" x="1056.19" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
192
</g>
193
<g class="func_g" onmouseover="s('internal_getopt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
194
<title>internal_getopt (1 samples, 0.03%)</title><rect x="684.0" y="353" width="0.4" height="15.0" fill="rgb(252,203,31)" rx="2" ry="2" />
195
<text text-anchor="" x="686.99" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
196
</g>
197
<g class="func_g" onmouseover="s('sh_xfree (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
198
<title>sh_xfree (5 samples, 0.17%)</title><rect x="280.1" y="337" width="1.8" height="15.0" fill="rgb(241,209,23)" rx="2" ry="2" />
199
<text text-anchor="" x="283.10" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
200
</g>
201
<g class="func_g" onmouseover="s('sh_xfree (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
202
<title>sh_xfree (3 samples, 0.10%)</title><rect x="706.5" y="337" width="1.1" height="15.0" fill="rgb(213,98,29)" rx="2" ry="2" />
203
<text text-anchor="" x="709.53" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
204
</g>
205
<g class="func_g" onmouseover="s('ksize (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
206
<title>ksize (2 samples, 0.07%)</title><rect x="357.4" y="193" width="0.7" height="15.0" fill="rgb(211,71,51)" rx="2" ry="2" />
207
<text text-anchor="" x="360.37" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
208
</g>
209
<g class="func_g" onmouseover="s('sh_xfree (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
210
<title>sh_xfree (4 samples, 0.13%)</title><rect x="405.7" y="321" width="1.4" height="15.0" fill="rgb(206,160,19)" rx="2" ry="2" />
211
<text text-anchor="" x="408.67" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
212
</g>
213
<g class="func_g" onmouseover="s('hash_lookup (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
214
<title>hash_lookup (7 samples, 0.24%)</title><rect x="1025.6" y="305" width="2.5" height="15.0" fill="rgb(229,41,9)" rx="2" ry="2" />
215
<text text-anchor="" x="1028.64" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
216
</g>
217
<g class="func_g" onmouseover="s('test_builtin (171 samples, 5.77%)')" onmouseout="c()" onclick="zoom(this)">
218
<title>test_builtin (171 samples, 5.77%)</title><rect x="715.5" y="353" width="61.1" height="15.0" fill="rgb(214,73,15)" rx="2" ry="2" />
219
<text text-anchor="" x="718.47" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >test_b..</text>
220
</g>
221
<g class="func_g" onmouseover="s('dquot_active.isra.8 (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
222
<title>dquot_active.isra.8 (2 samples, 0.07%)</title><rect x="577.0" y="161" width="0.7" height="15.0" fill="rgb(216,88,30)" rx="2" ry="2" />
223
<text text-anchor="" x="580.03" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
224
</g>
225
<g class="func_g" onmouseover="s('xen_save_fl_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
226
<title>xen_save_fl_direct (1 samples, 0.03%)</title><rect x="615.3" y="289" width="0.4" height="15.0" fill="rgb(254,112,22)" rx="2" ry="2" />
227
<text text-anchor="" x="618.31" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
228
</g>
229
<g class="func_g" onmouseover="s('do_redirection_internal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
230
<title>do_redirection_internal (1 samples, 0.03%)</title><rect x="408.5" y="369" width="0.4" height="15.0" fill="rgb(224,12,38)" rx="2" ry="2" />
231
<text text-anchor="" x="411.53" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
232
</g>
233
<g class="func_g" onmouseover="s('sh_xmalloc (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
234
<title>sh_xmalloc (8 samples, 0.27%)</title><rect x="1050.3" y="401" width="2.9" height="15.0" fill="rgb(245,199,15)" rx="2" ry="2" />
235
<text text-anchor="" x="1053.32" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
236
</g>
237
<g class="func_g" onmouseover="s('begin_unwind_frame (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
238
<title>begin_unwind_frame (10 samples, 0.34%)</title><rect x="267.2" y="385" width="3.6" height="15.0" fill="rgb(234,151,16)" rx="2" ry="2" />
239
<text text-anchor="" x="270.22" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
240
</g>
241
<g class="func_g" onmouseover="s('putname (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
242
<title>putname (2 samples, 0.07%)</title><rect x="150.2" y="417" width="0.8" height="15.0" fill="rgb(225,182,22)" rx="2" ry="2" />
243
<text text-anchor="" x="153.24" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
244
</g>
245
<g class="func_g" onmouseover="s('internal_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
246
<title>internal_free (2 samples, 0.07%)</title><rect x="877.2" y="273" width="0.7" height="15.0" fill="rgb(251,167,9)" rx="2" ry="2" />
247
<text text-anchor="" x="880.18" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
248
</g>
249
<g class="func_g" onmouseover="s('check_events (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
250
<title>check_events (9 samples, 0.30%)</title><rect x="436.8" y="305" width="3.2" height="15.0" fill="rgb(205,74,31)" rx="2" ry="2" />
251
<text text-anchor="" x="439.79" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
252
</g>
253
<g class="func_g" onmouseover="s('common_perm (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
254
<title>common_perm (3 samples, 0.10%)</title><rect x="153.1" y="385" width="1.1" height="15.0" fill="rgb(212,166,46)" rx="2" ry="2" />
255
<text text-anchor="" x="156.10" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
256
</g>
257
<g class="func_g" onmouseover="s('find_variable_internal (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
258
<title>find_variable_internal (9 samples, 0.30%)</title><rect x="1024.9" y="337" width="3.2" height="15.0" fill="rgb(208,72,8)" rx="2" ry="2" />
259
<text text-anchor="" x="1027.92" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
260
</g>
261
<g class="func_g" onmouseover="s('is_basic (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
262
<title>is_basic (6 samples, 0.20%)</title><rect x="809.6" y="321" width="2.1" height="15.0" fill="rgb(234,147,35)" rx="2" ry="2" />
263
<text text-anchor="" x="812.56" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
264
</g>
265
<g class="func_g" onmouseover="s('create_page_buffers (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
266
<title>create_page_buffers (1 samples, 0.03%)</title><rect x="41.8" y="353" width="0.4" height="15.0" fill="rgb(247,134,11)" rx="2" ry="2" />
267
<text text-anchor="" x="44.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
268
</g>
269
<g class="func_g" onmouseover="s('path_lookupat (23 samples, 0.78%)')" onmouseout="c()" onclick="zoom(this)">
270
<title>path_lookupat (23 samples, 0.78%)</title><rect x="139.1" y="401" width="8.3" height="15.0" fill="rgb(239,148,33)" rx="2" ry="2" />
271
<text text-anchor="" x="142.15" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
272
</g>
273
<g class="func_g" onmouseover="s('add_to_page_cache_locked (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
274
<title>add_to_page_cache_locked (1 samples, 0.03%)</title><rect x="47.6" y="337" width="0.3" height="15.0" fill="rgb(252,198,27)" rx="2" ry="2" />
275
<text text-anchor="" x="50.56" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
276
</g>
277
<g class="func_g" onmouseover="s('sh_xmalloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
278
<title>sh_xmalloc (1 samples, 0.03%)</title><rect x="990.2" y="337" width="0.4" height="15.0" fill="rgb(250,53,49)" rx="2" ry="2" />
279
<text text-anchor="" x="993.22" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
280
</g>
281
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
282
<title>sh_xfree (1 samples, 0.03%)</title><rect x="647.5" y="241" width="0.4" height="15.0" fill="rgb(235,191,1)" rx="2" ry="2" />
283
<text text-anchor="" x="650.50" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
284
</g>
285
<g class="func_g" onmouseover="s('__tzfile_read (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
286
<title>__tzfile_read (2 samples, 0.07%)</title><rect x="118.4" y="529" width="0.7" height="15.0" fill="rgb(207,216,43)" rx="2" ry="2" />
287
<text text-anchor="" x="121.40" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
288
</g>
289
<g class="func_g" onmouseover="s('ext4_da_get_block_prep (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
290
<title>ext4_da_get_block_prep (1 samples, 0.03%)</title><rect x="42.2" y="353" width="0.4" height="15.0" fill="rgb(229,41,43)" rx="2" ry="2" />
291
<text text-anchor="" x="45.20" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
292
</g>
293
<g class="func_g" onmouseover="s('internal_malloc (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
294
<title>internal_malloc (9 samples, 0.30%)</title><rect x="655.0" y="225" width="3.2" height="15.0" fill="rgb(240,10,37)" rx="2" ry="2" />
295
<text text-anchor="" x="658.02" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
296
</g>
297
<g class="func_g" onmouseover="s('user_path_at (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
298
<title>user_path_at (1 samples, 0.03%)</title><rect x="137.0" y="465" width="0.4" height="15.0" fill="rgb(222,63,35)" rx="2" ry="2" />
299
<text text-anchor="" x="140.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
300
</g>
301
<g class="func_g" onmouseover="s('ext4_da_write_begin (36 samples, 1.21%)')" onmouseout="c()" onclick="zoom(this)">
302
<title>ext4_da_write_begin (36 samples, 1.21%)</title><rect x="40.1" y="385" width="12.8" height="15.0" fill="rgb(208,72,35)" rx="2" ry="2" />
303
<text text-anchor="" x="43.05" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
304
</g>
305
<g class="func_g" onmouseover="s('sh_malloc (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
306
<title>sh_malloc (5 samples, 0.17%)</title><rect x="232.2" y="353" width="1.7" height="15.0" fill="rgb(229,136,45)" rx="2" ry="2" />
307
<text text-anchor="" x="235.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
308
</g>
309
<g class="func_g" onmouseover="s('__gconv_transform_utf8_internal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
310
<title>__gconv_transform_utf8_internal (1 samples, 0.03%)</title><rect x="167.8" y="513" width="0.3" height="15.0" fill="rgb(249,179,42)" rx="2" ry="2" />
311
<text text-anchor="" x="170.77" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
312
</g>
313
<g class="func_g" onmouseover="s('signal_in_progress (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
314
<title>signal_in_progress (1 samples, 0.03%)</title><rect x="1048.9" y="401" width="0.4" height="15.0" fill="rgb(216,25,27)" rx="2" ry="2" />
315
<text text-anchor="" x="1051.89" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
316
</g>
317
<g class="func_g" onmouseover="s('sh_malloc (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
318
<title>sh_malloc (4 samples, 0.13%)</title><rect x="235.4" y="337" width="1.4" height="15.0" fill="rgb(208,89,22)" rx="2" ry="2" />
319
<text text-anchor="" x="238.38" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
320
</g>
321
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (62 samples, 2.09%)')" onmouseout="c()" onclick="zoom(this)">
322
<title>xen_hypercall_xen_version (62 samples, 2.09%)</title><rect x="519.4" y="273" width="22.2" height="15.0" fill="rgb(227,108,18)" rx="2" ry="2" />
323
<text text-anchor="" x="522.43" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >x..</text>
324
</g>
325
<g class="func_g" onmouseover="s('__strftime_l (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
326
<title>__strftime_l (1 samples, 0.03%)</title><rect x="682.9" y="353" width="0.4" height="15.0" fill="rgb(206,115,48)" rx="2" ry="2" />
327
<text text-anchor="" x="685.92" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
328
</g>
329
<g class="func_g" onmouseover="s('sh_xmalloc (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
330
<title>sh_xmalloc (10 samples, 0.34%)</title><rect x="1031.7" y="337" width="3.6" height="15.0" fill="rgb(220,15,3)" rx="2" ry="2" />
331
<text text-anchor="" x="1034.72" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
332
</g>
333
<g class="func_g" onmouseover="s('do_redirection_internal (61 samples, 2.06%)')" onmouseout="c()" onclick="zoom(this)">
334
<title>do_redirection_internal (61 samples, 2.06%)</title><rect x="381.0" y="337" width="21.8" height="15.0" fill="rgb(216,215,7)" rx="2" ry="2" />
335
<text text-anchor="" x="383.98" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >d..</text>
336
</g>
337
<g class="func_g" onmouseover="s('get_empty_filp (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
338
<title>get_empty_filp (1 samples, 0.03%)</title><rect x="560.9" y="257" width="0.4" height="15.0" fill="rgb(215,164,7)" rx="2" ry="2" />
339
<text text-anchor="" x="563.93" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
340
</g>
341
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
342
<title>int_check_syscall_exit_work (15 samples, 0.51%)</title><rect x="17.9" y="513" width="5.3" height="15.0" fill="rgb(241,53,2)" rx="2" ry="2" />
343
<text text-anchor="" x="20.87" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
344
</g>
345
<g class="func_g" onmouseover="s('setifs (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
346
<title>setifs (5 samples, 0.17%)</title><rect x="668.6" y="305" width="1.8" height="15.0" fill="rgb(232,183,52)" rx="2" ry="2" />
347
<text text-anchor="" x="671.61" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
348
</g>
349
<g class="func_g" onmouseover="s('internal_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
350
<title>internal_free (1 samples, 0.03%)</title><rect x="406.7" y="289" width="0.4" height="15.0" fill="rgb(223,26,36)" rx="2" ry="2" />
351
<text text-anchor="" x="409.74" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
352
</g>
353
<g class="func_g" onmouseover="s('mbschr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
354
<title>mbschr (1 samples, 0.03%)</title><rect x="830.0" y="353" width="0.3" height="15.0" fill="rgb(243,222,37)" rx="2" ry="2" />
355
<text text-anchor="" x="832.95" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
356
</g>
357
<g class="func_g" onmouseover="s('kmem_cache_alloc (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
358
<title>kmem_cache_alloc (9 samples, 0.30%)</title><rect x="757.3" y="129" width="3.3" height="15.0" fill="rgb(244,199,30)" rx="2" ry="2" />
359
<text text-anchor="" x="760.33" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
360
</g>
361
<g class="func_g" onmouseover="s('syscall_trace_enter (65 samples, 2.19%)')" onmouseout="c()" onclick="zoom(this)">
362
<title>syscall_trace_enter (65 samples, 2.19%)</title><rect x="519.1" y="305" width="23.2" height="15.0" fill="rgb(215,195,18)" rx="2" ry="2" />
363
<text text-anchor="" x="522.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
364
</g>
365
<g class="func_g" onmouseover="s('strlen (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
366
<title>strlen (1 samples, 0.03%)</title><rect x="12.1" y="513" width="0.4" height="15.0" fill="rgb(237,29,4)" rx="2" ry="2" />
367
<text text-anchor="" x="15.15" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
368
</g>
369
<g class="func_g" onmouseover="s('sh_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
370
<title>sh_malloc (2 samples, 0.07%)</title><rect x="309.4" y="305" width="0.7" height="15.0" fill="rgb(236,170,46)" rx="2" ry="2" />
371
<text text-anchor="" x="312.43" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
372
</g>
373
<g class="func_g" onmouseover="s('strlen (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
374
<title>strlen (1 samples, 0.03%)</title><rect x="1036.7" y="353" width="0.4" height="15.0" fill="rgb(250,161,4)" rx="2" ry="2" />
375
<text text-anchor="" x="1039.73" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
376
</g>
377
<g class="func_g" onmouseover="s('__errno_location (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
378
<title>__errno_location (3 samples, 0.10%)</title><rect x="695.8" y="337" width="1.1" height="15.0" fill="rgb(227,168,42)" rx="2" ry="2" />
379
<text text-anchor="" x="698.80" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
380
</g>
381
<g class="func_g" onmouseover="s('sys_newstat (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
382
<title>sys_newstat (1 samples, 0.03%)</title><rect x="133.1" y="513" width="0.3" height="15.0" fill="rgb(218,172,36)" rx="2" ry="2" />
383
<text text-anchor="" x="136.06" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
384
</g>
385
<g class="func_g" onmouseover="s('__memcpy_sse2 (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
386
<title>__memcpy_sse2 (2 samples, 0.07%)</title><rect x="108.0" y="529" width="0.7" height="15.0" fill="rgb(251,212,53)" rx="2" ry="2" />
387
<text text-anchor="" x="111.02" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
388
</g>
389
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
390
<title>int_check_syscall_exit_work (5 samples, 0.17%)</title><rect x="341.3" y="321" width="1.8" height="15.0" fill="rgb(225,206,9)" rx="2" ry="2" />
391
<text text-anchor="" x="344.27" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
392
</g>
393
<g class="func_g" onmouseover="s('cp_new_stat (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
394
<title>cp_new_stat (4 samples, 0.13%)</title><rect x="739.1" y="193" width="1.4" height="15.0" fill="rgb(246,87,38)" rx="2" ry="2" />
395
<text text-anchor="" x="742.09" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
396
</g>
397
<g class="func_g" onmouseover="s('file_remove_suid (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
398
<title>file_remove_suid (3 samples, 0.10%)</title><rect x="35.4" y="401" width="1.1" height="15.0" fill="rgb(233,200,46)" rx="2" ry="2" />
399
<text text-anchor="" x="38.40" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
400
</g>
401
<g class="func_g" onmouseover="s('add_unwind_protect_internal (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
402
<title>add_unwind_protect_internal (5 samples, 0.17%)</title><rect x="310.1" y="321" width="1.8" height="15.0" fill="rgb(227,187,5)" rx="2" ry="2" />
403
<text text-anchor="" x="313.15" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
404
</g>
405
<g class="func_g" onmouseover="s('copy_user_enhanced_fast_string (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
406
<title>copy_user_enhanced_fast_string (1 samples, 0.03%)</title><rect x="738.7" y="193" width="0.4" height="15.0" fill="rgb(252,130,16)" rx="2" ry="2" />
407
<text text-anchor="" x="741.73" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
408
</g>
409
<g class="func_g" onmouseover="s('dispose_word (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
410
<title>dispose_word (1 samples, 0.03%)</title><rect x="647.5" y="257" width="0.4" height="15.0" fill="rgb(230,56,14)" rx="2" ry="2" />
411
<text text-anchor="" x="650.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
412
</g>
413
<g class="func_g" onmouseover="s('sh_xmalloc (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
414
<title>sh_xmalloc (5 samples, 0.17%)</title><rect x="310.1" y="305" width="1.8" height="15.0" fill="rgb(245,133,14)" rx="2" ry="2" />
415
<text text-anchor="" x="313.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
416
</g>
417
<g class="func_g" onmouseover="s('_cond_resched (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
418
<title>_cond_resched (1 samples, 0.03%)</title><rect x="359.5" y="257" width="0.4" height="15.0" fill="rgb(215,1,27)" rx="2" ry="2" />
419
<text text-anchor="" x="362.52" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
420
</g>
421
<g class="func_g" onmouseover="s('unlock_page (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
422
<title>unlock_page (1 samples, 0.03%)</title><rect x="52.2" y="369" width="0.4" height="15.0" fill="rgb(244,144,36)" rx="2" ry="2" />
423
<text text-anchor="" x="55.21" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
424
</g>
425
<g class="func_g" onmouseover="s('internal_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
426
<title>internal_malloc (2 samples, 0.07%)</title><rect x="904.4" y="193" width="0.7" height="15.0" fill="rgb(231,205,42)" rx="2" ry="2" />
427
<text text-anchor="" x="907.36" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
428
</g>
429
<g class="func_g" onmouseover="s('sh_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
430
<title>sh_malloc (1 samples, 0.03%)</title><rect x="620.3" y="273" width="0.4" height="15.0" fill="rgb(230,18,11)" rx="2" ry="2" />
431
<text text-anchor="" x="623.31" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
432
</g>
433
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
434
<title>xen_hypercall_xen_version (11 samples, 0.37%)</title><rect x="389.2" y="257" width="3.9" height="15.0" fill="rgb(231,150,25)" rx="2" ry="2" />
435
<text text-anchor="" x="392.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
436
</g>
437
<g class="func_g" onmouseover="s('internal_malloc (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
438
<title>internal_malloc (9 samples, 0.30%)</title><rect x="811.7" y="289" width="3.2" height="15.0" fill="rgb(252,118,29)" rx="2" ry="2" />
439
<text text-anchor="" x="814.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
440
</g>
441
<g class="func_g" onmouseover="s('sh_xfree (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
442
<title>sh_xfree (2 samples, 0.07%)</title><rect x="907.2" y="289" width="0.7" height="15.0" fill="rgb(232,188,51)" rx="2" ry="2" />
443
<text text-anchor="" x="910.23" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
444
</g>
445
<g class="func_g" onmouseover="s('internal_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
446
<title>internal_malloc (1 samples, 0.03%)</title><rect x="636.8" y="257" width="0.3" height="15.0" fill="rgb(210,106,32)" rx="2" ry="2" />
447
<text text-anchor="" x="639.77" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
448
</g>
449
<g class="func_g" onmouseover="s('__overflow (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
450
<title>__overflow (5 samples, 0.17%)</title><rect x="679.7" y="353" width="1.8" height="15.0" fill="rgb(251,143,38)" rx="2" ry="2" />
451
<text text-anchor="" x="682.70" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
452
</g>
453
<g class="func_g" onmouseover="s('__GI___strcmp_ssse3 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
454
<title>__GI___strcmp_ssse3 (1 samples, 0.03%)</title><rect x="236.8" y="385" width="0.4" height="15.0" fill="rgb(209,163,29)" rx="2" ry="2" />
455
<text text-anchor="" x="239.81" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
456
</g>
457
<g class="func_g" onmouseover="s('xen_restore_fl_direct (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
458
<title>xen_restore_fl_direct (2 samples, 0.07%)</title><rect x="418.2" y="305" width="0.7" height="15.0" fill="rgb(212,118,37)" rx="2" ry="2" />
459
<text text-anchor="" x="421.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
460
</g>
461
<g class="func_g" onmouseover="s('current_kernel_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
462
<title>current_kernel_time (1 samples, 0.03%)</title><rect x="37.5" y="369" width="0.4" height="15.0" fill="rgb(240,98,2)" rx="2" ry="2" />
463
<text text-anchor="" x="40.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
464
</g>
465
<g class="func_g" onmouseover="s('inode_permission (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
466
<title>inode_permission (4 samples, 0.13%)</title><rect x="142.0" y="369" width="1.4" height="15.0" fill="rgb(238,29,21)" rx="2" ry="2" />
467
<text text-anchor="" x="145.01" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
468
</g>
469
<g class="func_g" onmouseover="s('make_bare_word (21 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
470
<title>make_bare_word (21 samples, 0.71%)</title><rect x="930.5" y="321" width="7.5" height="15.0" fill="rgb(205,6,41)" rx="2" ry="2" />
471
<text text-anchor="" x="933.48" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
472
</g>
473
<g class="func_g" onmouseover="s('radix_tree_lookup_slot (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
474
<title>radix_tree_lookup_slot (7 samples, 0.24%)</title><rect x="49.0" y="321" width="2.5" height="15.0" fill="rgb(226,130,6)" rx="2" ry="2" />
475
<text text-anchor="" x="51.99" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
476
</g>
477
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
478
<title>path_put (1 samples, 0.03%)</title><rect x="136.6" y="465" width="0.4" height="15.0" fill="rgb(232,15,42)" rx="2" ry="2" />
479
<text text-anchor="" x="139.64" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
480
</g>
481
<g class="func_g" onmouseover="s('lookup_dcache (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
482
<title>lookup_dcache (4 samples, 0.13%)</title><rect x="568.4" y="225" width="1.5" height="15.0" fill="rgb(233,78,40)" rx="2" ry="2" />
483
<text text-anchor="" x="571.44" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
484
</g>
485
<g class="func_g" onmouseover="s('itos (17 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
486
<title>itos (17 samples, 0.57%)</title><rect x="1029.2" y="353" width="6.1" height="15.0" fill="rgb(209,138,30)" rx="2" ry="2" />
487
<text text-anchor="" x="1032.22" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
488
</g>
489
<g class="func_g" onmouseover="s('legitimize_mnt (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
490
<title>legitimize_mnt (4 samples, 0.13%)</title><rect x="748.4" y="113" width="1.4" height="15.0" fill="rgb(230,209,53)" rx="2" ry="2" />
491
<text text-anchor="" x="751.39" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
492
</g>
493
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
494
<title>xen_hypercall_xen_version (15 samples, 0.51%)</title><rect x="466.5" y="289" width="5.3" height="15.0" fill="rgb(238,21,28)" rx="2" ry="2" />
495
<text text-anchor="" x="469.48" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
496
</g>
497
<g class="func_g" onmouseover="s('is_basic (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
498
<title>is_basic (11 samples, 0.37%)</title><rect x="630.3" y="257" width="4.0" height="15.0" fill="rgb(235,171,18)" rx="2" ry="2" />
499
<text text-anchor="" x="633.33" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
500
</g>
501
<g class="func_g" onmouseover="s('generic_file_buffered_write (126 samples, 4.25%)')" onmouseout="c()" onclick="zoom(this)">
502
<title>generic_file_buffered_write (126 samples, 4.25%)</title><rect x="38.6" y="401" width="45.1" height="15.0" fill="rgb(235,13,27)" rx="2" ry="2" />
503
<text text-anchor="" x="41.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >gene..</text>
504
</g>
505
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
506
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="420.3" y="289" width="0.4" height="15.0" fill="rgb(235,107,22)" rx="2" ry="2" />
507
<text text-anchor="" x="423.33" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
508
</g>
509
<g class="func_g" onmouseover="s('dispose_word (28 samples, 0.94%)')" onmouseout="c()" onclick="zoom(this)">
510
<title>dispose_word (28 samples, 0.94%)</title><rect x="293.3" y="369" width="10.1" height="15.0" fill="rgb(216,57,6)" rx="2" ry="2" />
511
<text text-anchor="" x="296.33" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
512
</g>
513
<g class="func_g" onmouseover="s('[unknown] (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
514
<title>[unknown] (1 samples, 0.03%)</title><rect x="10.0" y="513" width="0.4" height="15.0" fill="rgb(231,219,8)" rx="2" ry="2" />
515
<text text-anchor="" x="13.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
516
</g>
517
<g class="func_g" onmouseover="s('internal_strmatch (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
518
<title>internal_strmatch (3 samples, 0.10%)</title><rect x="627.1" y="273" width="1.1" height="15.0" fill="rgb(219,25,34)" rx="2" ry="2" />
519
<text text-anchor="" x="630.11" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
520
</g>
521
<g class="func_g" onmouseover="s('generic_permission (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
522
<title>generic_permission (6 samples, 0.20%)</title><rect x="752.0" y="65" width="2.1" height="15.0" fill="rgb(253,79,13)" rx="2" ry="2" />
523
<text text-anchor="" x="754.96" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
524
</g>
525
<g class="func_g" onmouseover="s('SYSC_newstat (62 samples, 2.09%)')" onmouseout="c()" onclick="zoom(this)">
526
<title>SYSC_newstat (62 samples, 2.09%)</title><rect x="134.1" y="481" width="22.2" height="15.0" fill="rgb(227,209,37)" rx="2" ry="2" />
527
<text text-anchor="" x="137.14" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >S..</text>
528
</g>
529
<g class="func_g" onmouseover="s('vfs_getattr (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
530
<title>vfs_getattr (2 samples, 0.07%)</title><rect x="764.1" y="177" width="0.7" height="15.0" fill="rgb(253,108,6)" rx="2" ry="2" />
531
<text text-anchor="" x="767.13" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
532
</g>
533
<g class="func_g" onmouseover="s('copy_word (25 samples, 0.84%)')" onmouseout="c()" onclick="zoom(this)">
534
<title>copy_word (25 samples, 0.84%)</title><rect x="790.2" y="337" width="9.0" height="15.0" fill="rgb(245,226,21)" rx="2" ry="2" />
535
<text text-anchor="" x="793.24" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
536
</g>
537
<g class="func_g" onmouseover="s('internal_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
538
<title>internal_malloc (1 samples, 0.03%)</title><rect x="707.6" y="305" width="0.4" height="15.0" fill="rgb(215,6,26)" rx="2" ry="2" />
539
<text text-anchor="" x="710.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
540
</g>
541
<g class="func_g" onmouseover="s('__mbrlen (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
542
<title>__mbrlen (2 samples, 0.07%)</title><rect x="781.3" y="337" width="0.7" height="15.0" fill="rgb(215,26,15)" rx="2" ry="2" />
543
<text text-anchor="" x="784.30" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
544
</g>
545
<g class="func_g" onmouseover="s('jbd2_journal_stop (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
546
<title>jbd2_journal_stop (1 samples, 0.03%)</title><rect x="60.4" y="305" width="0.4" height="15.0" fill="rgb(209,82,25)" rx="2" ry="2" />
547
<text text-anchor="" x="63.44" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
548
</g>
549
<g class="func_g" onmouseover="s('common_file_perm (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
550
<title>common_file_perm (2 samples, 0.07%)</title><rect x="91.9" y="417" width="0.7" height="15.0" fill="rgb(225,99,13)" rx="2" ry="2" />
551
<text text-anchor="" x="94.92" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
552
</g>
553
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
554
<title>__memcpy_sse2_unaligned (5 samples, 0.17%)</title><rect x="866.1" y="321" width="1.8" height="15.0" fill="rgb(224,136,43)" rx="2" ry="2" />
555
<text text-anchor="" x="869.09" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
556
</g>
557
<g class="func_g" onmouseover="s('internal_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
558
<title>internal_free (1 samples, 0.03%)</title><rect x="645.4" y="241" width="0.3" height="15.0" fill="rgb(254,122,0)" rx="2" ry="2" />
559
<text text-anchor="" x="648.36" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
560
</g>
561
<g class="func_g" onmouseover="s('strlen (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
562
<title>strlen (1 samples, 0.03%)</title><rect x="875.0" y="305" width="0.4" height="15.0" fill="rgb(209,207,9)" rx="2" ry="2" />
563
<text text-anchor="" x="878.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
564
</g>
565
<g class="func_g" onmouseover="s('__mark_inode_dirty (56 samples, 1.89%)')" onmouseout="c()" onclick="zoom(this)">
566
<title>__mark_inode_dirty (56 samples, 1.89%)</title><rect x="58.7" y="353" width="20.0" height="15.0" fill="rgb(241,173,13)" rx="2" ry="2" />
567
<text text-anchor="" x="61.65" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
568
</g>
569
<g class="func_g" onmouseover="s('__mark_inode_dirty (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
570
<title>__mark_inode_dirty (2 samples, 0.07%)</title><rect x="56.5" y="369" width="0.7" height="15.0" fill="rgb(253,150,54)" rx="2" ry="2" />
571
<text text-anchor="" x="59.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
572
</g>
573
<g class="func_g" onmouseover="s('vfs_open (29 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
574
<title>vfs_open (29 samples, 0.98%)</title><rect x="573.8" y="225" width="10.4" height="15.0" fill="rgb(252,147,31)" rx="2" ry="2" />
575
<text text-anchor="" x="576.81" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
576
</g>
577
<g class="func_g" onmouseover="s('hash_lookup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
578
<title>hash_lookup (1 samples, 0.03%)</title><rect x="167.8" y="529" width="0.3" height="15.0" fill="rgb(220,18,23)" rx="2" ry="2" />
579
<text text-anchor="" x="170.77" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
580
</g>
581
<g class="func_g" onmouseover="s('unary_test (146 samples, 4.93%)')" onmouseout="c()" onclick="zoom(this)">
582
<title>unary_test (146 samples, 4.93%)</title><rect x="724.4" y="273" width="52.2" height="15.0" fill="rgb(225,183,20)" rx="2" ry="2" />
583
<text text-anchor="" x="727.42" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >unary..</text>
584
</g>
585
<g class="func_g" onmouseover="s('check_events (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
586
<title>check_events (15 samples, 0.51%)</title><rect x="328.4" y="289" width="5.4" height="15.0" fill="rgb(221,38,31)" rx="2" ry="2" />
587
<text text-anchor="" x="331.39" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
588
</g>
589
<g class="func_g" onmouseover="s('internal_malloc (16 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
590
<title>internal_malloc (16 samples, 0.54%)</title><rect x="912.2" y="273" width="5.8" height="15.0" fill="rgb(228,194,39)" rx="2" ry="2" />
591
<text text-anchor="" x="915.23" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
592
</g>
593
<g class="func_g" onmouseover="s('ima_file_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
594
<title>ima_file_free (2 samples, 0.07%)</title><rect x="354.2" y="241" width="0.7" height="15.0" fill="rgb(218,122,7)" rx="2" ry="2" />
595
<text text-anchor="" x="357.15" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
596
</g>
597
<g class="func_g" onmouseover="s('unwind_protect_mem_internal (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
598
<title>unwind_protect_mem_internal (9 samples, 0.30%)</title><rect x="1041.4" y="353" width="3.2" height="15.0" fill="rgb(216,204,18)" rx="2" ry="2" />
599
<text text-anchor="" x="1044.38" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
600
</g>
601
<g class="func_g" onmouseover="s('run_pending_traps (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
602
<title>run_pending_traps (1 samples, 0.03%)</title><rect x="1047.1" y="401" width="0.4" height="15.0" fill="rgb(206,10,7)" rx="2" ry="2" />
603
<text text-anchor="" x="1050.10" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
604
</g>
605
<g class="func_g" onmouseover="s('execute_command_internal (2,255 samples, 76.11%)')" onmouseout="c()" onclick="zoom(this)">
606
<title>execute_command_internal (2,255 samples, 76.11%)</title><rect x="243.3" y="417" width="806.7" height="15.0" fill="rgb(243,115,10)" rx="2" ry="2" />
607
<text text-anchor="" x="246.25" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >execute_command_internal</text>
608
</g>
609
<g class="func_g" onmouseover="s('hash_search (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
610
<title>hash_search (2 samples, 0.07%)</title><rect x="905.8" y="225" width="0.7" height="15.0" fill="rgb(218,125,36)" rx="2" ry="2" />
611
<text text-anchor="" x="908.79" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
612
</g>
613
<g class="func_g" onmouseover="s('sh_xmalloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
614
<title>sh_xmalloc (1 samples, 0.03%)</title><rect x="636.8" y="289" width="0.3" height="15.0" fill="rgb(219,190,39)" rx="2" ry="2" />
615
<text text-anchor="" x="639.77" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
616
</g>
617
<g class="func_g" onmouseover="s('is_basic (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
618
<title>is_basic (2 samples, 0.07%)</title><rect x="941.2" y="305" width="0.7" height="15.0" fill="rgb(249,144,6)" rx="2" ry="2" />
619
<text text-anchor="" x="944.21" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
620
</g>
621
<g class="func_g" onmouseover="s('mbschr (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
622
<title>mbschr (6 samples, 0.20%)</title><rect x="640.0" y="273" width="2.1" height="15.0" fill="rgb(246,201,33)" rx="2" ry="2" />
623
<text text-anchor="" x="642.99" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
624
</g>
625
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (67 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
626
<title>xen_hypercall_xen_version (67 samples, 2.26%)</title><rect x="182.8" y="513" width="24.0" height="15.0" fill="rgb(205,33,3)" rx="2" ry="2" />
627
<text text-anchor="" x="185.79" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >x..</text>
628
</g>
629
<g class="func_g" onmouseover="s('path_get (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
630
<title>path_get (2 samples, 0.07%)</title><rect x="580.2" y="193" width="0.8" height="15.0" fill="rgb(248,48,31)" rx="2" ry="2" />
631
<text text-anchor="" x="583.25" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
632
</g>
633
<g class="func_g" onmouseover="s('bash (2,963 samples, 100.00%)')" onmouseout="c()" onclick="zoom(this)">
634
<title>bash (2,963 samples, 100.00%)</title><rect x="10.0" y="561" width="1060.0" height="15.0" fill="rgb(228,137,9)" rx="2" ry="2" />
635
<text text-anchor="" x="13.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >bash</text>
636
</g>
637
<g class="func_g" onmouseover="s('context_tracking_user_exit (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
638
<title>context_tracking_user_exit (3 samples, 0.10%)</title><rect x="558.1" y="305" width="1.0" height="15.0" fill="rgb(232,183,38)" rx="2" ry="2" />
639
<text text-anchor="" x="561.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
640
</g>
641
<g class="func_g" onmouseover="s('set_close_on_exec (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
642
<title>set_close_on_exec (2 samples, 0.07%)</title><rect x="510.1" y="305" width="0.7" height="15.0" fill="rgb(223,132,22)" rx="2" ry="2" />
643
<text text-anchor="" x="513.13" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
644
</g>
645
<g class="func_g" onmouseover="s('dnotify_flush (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
646
<title>dnotify_flush (1 samples, 0.03%)</title><rect x="464.0" y="289" width="0.3" height="15.0" fill="rgb(205,58,47)" rx="2" ry="2" />
647
<text text-anchor="" x="466.98" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
648
</g>
649
<g class="func_g" onmouseover="s('substring (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
650
<title>substring (1 samples, 0.03%)</title><rect x="929.0" y="305" width="0.4" height="15.0" fill="rgb(249,44,28)" rx="2" ry="2" />
651
<text text-anchor="" x="932.05" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
652
</g>
653
<g class="func_g" onmouseover="s('sh_xmalloc (23 samples, 0.78%)')" onmouseout="c()" onclick="zoom(this)">
654
<title>sh_xmalloc (23 samples, 0.78%)</title><rect x="909.7" y="305" width="8.3" height="15.0" fill="rgb(249,49,49)" rx="2" ry="2" />
655
<text text-anchor="" x="912.73" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
656
</g>
657
<g class="func_g" onmouseover="s('remove_quoted_nulls (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
658
<title>remove_quoted_nulls (3 samples, 0.10%)</title><rect x="995.9" y="321" width="1.1" height="15.0" fill="rgb(238,196,50)" rx="2" ry="2" />
659
<text text-anchor="" x="998.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
660
</g>
661
<g class="func_g" onmouseover="s('shell_expand_word_list (466 samples, 15.73%)')" onmouseout="c()" onclick="zoom(this)">
662
<title>shell_expand_word_list (466 samples, 15.73%)</title><rect x="830.3" y="353" width="166.7" height="15.0" fill="rgb(243,107,25)" rx="2" ry="2" />
663
<text text-anchor="" x="833.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >shell_expand_word_list</text>
664
</g>
665
<g class="func_g" onmouseover="s('var_lookup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
666
<title>var_lookup (1 samples, 0.03%)</title><rect x="906.5" y="273" width="0.4" height="15.0" fill="rgb(246,25,50)" rx="2" ry="2" />
667
<text text-anchor="" x="909.51" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
668
</g>
669
<g class="func_g" onmouseover="s('check_events (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
670
<title>check_events (15 samples, 0.51%)</title><rect x="466.5" y="305" width="5.3" height="15.0" fill="rgb(210,43,27)" rx="2" ry="2" />
671
<text text-anchor="" x="469.48" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
672
</g>
673
<g class="func_g" onmouseover="s('sh_xmalloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
674
<title>sh_xmalloc (2 samples, 0.07%)</title><rect x="309.4" y="321" width="0.7" height="15.0" fill="rgb(239,116,25)" rx="2" ry="2" />
675
<text text-anchor="" x="312.43" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
676
</g>
677
<g class="func_g" onmouseover="s('_dl_mcount_wrapper_check (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
678
<title>_dl_mcount_wrapper_check (1 samples, 0.03%)</title><rect x="166.7" y="529" width="0.4" height="15.0" fill="rgb(208,3,27)" rx="2" ry="2" />
679
<text text-anchor="" x="169.69" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
680
</g>
681
<g class="func_g" onmouseover="s('dispose_words (29 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
682
<title>dispose_words (29 samples, 0.98%)</title><rect x="835.0" y="337" width="10.3" height="15.0" fill="rgb(227,27,49)" rx="2" ry="2" />
683
<text text-anchor="" x="837.96" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
684
</g>
685
<g class="func_g" onmouseover="s('is_basic (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
686
<title>is_basic (8 samples, 0.27%)</title><rect x="826.7" y="321" width="2.9" height="15.0" fill="rgb(235,158,52)" rx="2" ry="2" />
687
<text text-anchor="" x="829.73" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
688
</g>
689
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
690
<title>__memcpy_sse2_unaligned (1 samples, 0.03%)</title><rect x="901.1" y="289" width="0.4" height="15.0" fill="rgb(236,31,30)" rx="2" ry="2" />
691
<text text-anchor="" x="904.14" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
692
</g>
693
<g class="func_g" onmouseover="s('sh_malloc (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
694
<title>sh_malloc (8 samples, 0.27%)</title><rect x="1050.3" y="385" width="2.9" height="15.0" fill="rgb(238,137,32)" rx="2" ry="2" />
695
<text text-anchor="" x="1053.32" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
696
</g>
697
<g class="func_g" onmouseover="s('path_init (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
698
<title>path_init (1 samples, 0.03%)</title><rect x="746.6" y="129" width="0.4" height="15.0" fill="rgb(226,225,27)" rx="2" ry="2" />
699
<text text-anchor="" x="749.60" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
700
</g>
701
<g class="func_g" onmouseover="s('num_fifos (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
702
<title>num_fifos (1 samples, 0.03%)</title><rect x="777.0" y="369" width="0.4" height="15.0" fill="rgb(237,9,50)" rx="2" ry="2" />
703
<text text-anchor="" x="780.01" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
704
</g>
705
<g class="func_g" onmouseover="s('add_exec_redirect (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
706
<title>add_exec_redirect (1 samples, 0.03%)</title><rect x="619.2" y="321" width="0.4" height="15.0" fill="rgb(246,94,10)" rx="2" ry="2" />
707
<text text-anchor="" x="622.24" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
708
</g>
709
<g class="func_g" onmouseover="s('sh_xmalloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
710
<title>sh_xmalloc (2 samples, 0.07%)</title><rect x="941.9" y="305" width="0.7" height="15.0" fill="rgb(242,160,48)" rx="2" ry="2" />
711
<text text-anchor="" x="944.93" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
712
</g>
713
<g class="func_g" onmouseover="s('check_events (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
714
<title>check_events (4 samples, 0.13%)</title><rect x="590.6" y="209" width="1.5" height="15.0" fill="rgb(247,8,10)" rx="2" ry="2" />
715
<text text-anchor="" x="593.62" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
716
</g>
717
<g class="func_g" onmouseover="s('memset (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
718
<title>memset (1 samples, 0.03%)</title><rect x="44.7" y="337" width="0.4" height="15.0" fill="rgb(225,191,32)" rx="2" ry="2" />
719
<text text-anchor="" x="47.70" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
720
</g>
721
<g class="func_g" onmouseover="s('syscall_trace_leave (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
722
<title>syscall_trace_leave (14 samples, 0.47%)</title><rect x="388.9" y="289" width="5.0" height="15.0" fill="rgb(239,130,3)" rx="2" ry="2" />
723
<text text-anchor="" x="391.85" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
724
</g>
725
<g class="func_g" onmouseover="s('legitimize_mnt (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
726
<title>legitimize_mnt (3 samples, 0.10%)</title><rect x="140.2" y="385" width="1.1" height="15.0" fill="rgb(250,22,16)" rx="2" ry="2" />
727
<text text-anchor="" x="143.22" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
728
</g>
729
<g class="func_g" onmouseover="s('chkexport (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
730
<title>chkexport (3 samples, 0.10%)</title><rect x="708.7" y="321" width="1.1" height="15.0" fill="rgb(227,91,48)" rx="2" ry="2" />
731
<text text-anchor="" x="711.68" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
732
</g>
733
<g class="func_g" onmouseover="s('terminate_walk (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
734
<title>terminate_walk (1 samples, 0.03%)</title><rect x="599.9" y="241" width="0.4" height="15.0" fill="rgb(209,180,0)" rx="2" ry="2" />
735
<text text-anchor="" x="602.92" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
736
</g>
737
<g class="func_g" onmouseover="s('sh_malloc (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
738
<title>sh_malloc (7 samples, 0.24%)</title><rect x="1042.1" y="321" width="2.5" height="15.0" fill="rgb(219,120,1)" rx="2" ry="2" />
739
<text text-anchor="" x="1045.10" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
740
</g>
741
<g class="func_g" onmouseover="s('__sb_start_write (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
742
<title>__sb_start_write (1 samples, 0.03%)</title><rect x="25.4" y="481" width="0.3" height="15.0" fill="rgb(213,45,15)" rx="2" ry="2" />
743
<text text-anchor="" x="28.38" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
744
</g>
745
<g class="func_g" onmouseover="s('ext4_da_write_end (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
746
<title>ext4_da_write_end (2 samples, 0.07%)</title><rect x="34.7" y="401" width="0.7" height="15.0" fill="rgb(233,218,27)" rx="2" ry="2" />
747
<text text-anchor="" x="37.68" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
748
</g>
749
<g class="func_g" onmouseover="s('find_variable_internal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
750
<title>find_variable_internal (1 samples, 0.03%)</title><rect x="709.0" y="289" width="0.4" height="15.0" fill="rgb(233,91,24)" rx="2" ry="2" />
751
<text text-anchor="" x="712.03" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
752
</g>
753
<g class="func_g" onmouseover="s('unwind_frame_discard_internal (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
754
<title>unwind_frame_discard_internal (8 samples, 0.27%)</title><rect x="237.2" y="385" width="2.8" height="15.0" fill="rgb(250,77,54)" rx="2" ry="2" />
755
<text text-anchor="" x="240.17" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
756
</g>
757
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
758
<title>xen_hypercall_xen_version (10 samples, 0.34%)</title><rect x="210.0" y="513" width="3.6" height="15.0" fill="rgb(234,3,4)" rx="2" ry="2" />
759
<text text-anchor="" x="212.98" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
760
</g>
761
<g class="func_g" onmouseover="s('____fput (39 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
762
<title>____fput (39 samples, 1.32%)</title><rect x="349.1" y="273" width="14.0" height="15.0" fill="rgb(247,74,41)" rx="2" ry="2" />
763
<text text-anchor="" x="352.14" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
764
</g>
765
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
766
<title>xen_hypercall_xen_version (4 samples, 0.13%)</title><rect x="590.6" y="193" width="1.5" height="15.0" fill="rgb(224,157,24)" rx="2" ry="2" />
767
<text text-anchor="" x="593.62" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
768
</g>
769
<g class="func_g" onmouseover="s('xstrmatch (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
770
<title>xstrmatch (2 samples, 0.07%)</title><rect x="634.3" y="305" width="0.7" height="15.0" fill="rgb(223,163,18)" rx="2" ry="2" />
771
<text text-anchor="" x="637.27" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
772
</g>
773
<g class="func_g" onmouseover="s('fsnotify (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
774
<title>fsnotify (3 samples, 0.10%)</title><rect x="582.0" y="177" width="1.1" height="15.0" fill="rgb(247,166,11)" rx="2" ry="2" />
775
<text text-anchor="" x="585.04" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
776
</g>
777
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
778
<title>sh_free (1 samples, 0.03%)</title><rect x="405.3" y="321" width="0.4" height="15.0" fill="rgb(212,104,19)" rx="2" ry="2" />
779
<text text-anchor="" x="408.31" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
780
</g>
781
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (26 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
782
<title>xen_hypercall_xen_version (26 samples, 0.88%)</title><rect x="172.4" y="513" width="9.3" height="15.0" fill="rgb(234,195,32)" rx="2" ry="2" />
783
<text text-anchor="" x="175.42" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
784
</g>
785
<g class="func_g" onmouseover="s('sh_free (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
786
<title>sh_free (9 samples, 0.30%)</title><rect x="841.8" y="289" width="3.2" height="15.0" fill="rgb(207,168,49)" rx="2" ry="2" />
787
<text text-anchor="" x="844.76" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
788
</g>
789
<g class="func_g" onmouseover="s('discard_unwind_frame (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
790
<title>discard_unwind_frame (18 samples, 0.61%)</title><rect x="283.3" y="385" width="6.5" height="15.0" fill="rgb(252,58,12)" rx="2" ry="2" />
791
<text text-anchor="" x="286.32" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
792
</g>
793
<g class="func_g" onmouseover="s('shell_expand_word_list (48 samples, 1.62%)')" onmouseout="c()" onclick="zoom(this)">
794
<title>shell_expand_word_list (48 samples, 1.62%)</title><rect x="646.1" y="289" width="17.1" height="15.0" fill="rgb(222,110,44)" rx="2" ry="2" />
795
<text text-anchor="" x="649.07" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
796
</g>
797
<g class="func_g" onmouseover="s('hash_string (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
798
<title>hash_string (3 samples, 0.10%)</title><rect x="666.5" y="225" width="1.0" height="15.0" fill="rgb(229,0,27)" rx="2" ry="2" />
799
<text text-anchor="" x="669.46" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
800
</g>
801
<g class="func_g" onmouseover="s('sh_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
802
<title>sh_free (2 samples, 0.07%)</title><rect x="922.6" y="289" width="0.7" height="15.0" fill="rgb(244,37,43)" rx="2" ry="2" />
803
<text text-anchor="" x="925.61" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
804
</g>
805
<g class="func_g" onmouseover="s('find_next_zero_bit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
806
<title>find_next_zero_bit (1 samples, 0.03%)</title><rect x="515.1" y="273" width="0.4" height="15.0" fill="rgb(206,163,41)" rx="2" ry="2" />
807
<text text-anchor="" x="518.14" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
808
</g>
809
<g class="func_g" onmouseover="s('sh_xfree (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
810
<title>sh_xfree (2 samples, 0.07%)</title><rect x="670.4" y="337" width="0.7" height="15.0" fill="rgb(246,78,44)" rx="2" ry="2" />
811
<text text-anchor="" x="673.40" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
812
</g>
813
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
814
<title>int_check_syscall_exit_work (18 samples, 0.61%)</title><rect x="126.6" y="513" width="6.5" height="15.0" fill="rgb(212,89,39)" rx="2" ry="2" />
815
<text text-anchor="" x="129.63" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
816
</g>
817
<g class="func_g" onmouseover="s('fcntl@plt (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
818
<title>fcntl@plt (2 samples, 0.07%)</title><rect x="625.0" y="337" width="0.7" height="15.0" fill="rgb(231,196,32)" rx="2" ry="2" />
819
<text text-anchor="" x="627.96" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
820
</g>
821
<g class="func_g" onmouseover="s('getenv (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
822
<title>getenv (5 samples, 0.17%)</title><rect x="10.4" y="513" width="1.7" height="15.0" fill="rgb(218,61,50)" rx="2" ry="2" />
823
<text text-anchor="" x="13.36" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
824
</g>
825
<g class="func_g" onmouseover="s('var_lookup (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
826
<title>var_lookup (2 samples, 0.07%)</title><rect x="905.8" y="257" width="0.7" height="15.0" fill="rgb(252,217,40)" rx="2" ry="2" />
827
<text text-anchor="" x="908.79" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
828
</g>
829
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (23 samples, 0.78%)')" onmouseout="c()" onclick="zoom(this)">
830
<title>xen_hypercall_xen_version (23 samples, 0.78%)</title><rect x="371.7" y="273" width="8.2" height="15.0" fill="rgb(222,42,50)" rx="2" ry="2" />
831
<text text-anchor="" x="374.68" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
832
</g>
833
<g class="func_g" onmouseover="s('bind_lastarg (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
834
<title>bind_lastarg (2 samples, 0.07%)</title><rect x="253.6" y="401" width="0.7" height="15.0" fill="rgb(231,207,39)" rx="2" ry="2" />
835
<text text-anchor="" x="256.62" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
836
</g>
837
<g class="func_g" onmouseover="s('jbd2_journal_grab_journal_head (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
838
<title>jbd2_journal_grab_journal_head (1 samples, 0.03%)</title><rect x="66.5" y="257" width="0.4" height="15.0" fill="rgb(207,212,9)" rx="2" ry="2" />
839
<text text-anchor="" x="69.52" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
840
</g>
841
<g class="func_g" onmouseover="s('copy_redirect (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
842
<title>copy_redirect (1 samples, 0.03%)</title><rect x="619.6" y="321" width="0.4" height="15.0" fill="rgb(247,219,54)" rx="2" ry="2" />
843
<text text-anchor="" x="622.60" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
844
</g>
845
<g class="func_g" onmouseover="s('find_variable_internal (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
846
<title>find_variable_internal (14 samples, 0.47%)</title><rect x="901.5" y="273" width="5.0" height="15.0" fill="rgb(226,167,14)" rx="2" ry="2" />
847
<text text-anchor="" x="904.50" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
848
</g>
849
<g class="func_g" onmouseover="s('sh_xmalloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
850
<title>sh_xmalloc (1 samples, 0.03%)</title><rect x="620.3" y="289" width="0.4" height="15.0" fill="rgb(244,123,54)" rx="2" ry="2" />
851
<text text-anchor="" x="623.31" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
852
</g>
853
<g class="func_g" onmouseover="s('copy_word (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
854
<title>copy_word (5 samples, 0.17%)</title><rect x="635.7" y="321" width="1.8" height="15.0" fill="rgb(237,2,32)" rx="2" ry="2" />
855
<text text-anchor="" x="638.70" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
856
</g>
857
<g class="func_g" onmouseover="s('dnotify_flush (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
858
<title>dnotify_flush (3 samples, 0.10%)</title><rect x="394.9" y="241" width="1.1" height="15.0" fill="rgb(246,170,24)" rx="2" ry="2" />
859
<text text-anchor="" x="397.93" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
860
</g>
861
<g class="func_g" onmouseover="s('strftime (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
862
<title>strftime (5 samples, 0.17%)</title><rect x="713.0" y="353" width="1.8" height="15.0" fill="rgb(253,132,48)" rx="2" ry="2" />
863
<text text-anchor="" x="715.97" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
864
</g>
865
<g class="func_g" onmouseover="s('_cond_resched (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
866
<title>_cond_resched (2 samples, 0.07%)</title><rect x="148.1" y="401" width="0.7" height="15.0" fill="rgb(223,160,50)" rx="2" ry="2" />
867
<text text-anchor="" x="151.09" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
868
</g>
869
<g class="func_g" onmouseover="s('kmem_cache_alloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
870
<title>kmem_cache_alloc (1 samples, 0.03%)</title><rect x="149.9" y="417" width="0.3" height="15.0" fill="rgb(253,168,4)" rx="2" ry="2" />
871
<text text-anchor="" x="152.88" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
872
</g>
873
<g class="func_g" onmouseover="s('strmatch (21 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
874
<title>strmatch (21 samples, 0.71%)</title><rect x="626.8" y="305" width="7.5" height="15.0" fill="rgb(254,91,51)" rx="2" ry="2" />
875
<text text-anchor="" x="629.75" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
876
</g>
877
<g class="func_g" onmouseover="s('fpurge (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
878
<title>fpurge (1 samples, 0.03%)</title><rect x="671.8" y="353" width="0.4" height="15.0" fill="rgb(238,100,40)" rx="2" ry="2" />
879
<text text-anchor="" x="674.83" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
880
</g>
881
<g class="func_g" onmouseover="s('__ext4_get_inode_loc (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
882
<title>__ext4_get_inode_loc (10 samples, 0.34%)</title><rect x="72.6" y="273" width="3.6" height="15.0" fill="rgb(247,82,9)" rx="2" ry="2" />
883
<text text-anchor="" x="75.61" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
884
</g>
885
<g class="func_g" onmouseover="s('hash_lookup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
886
<title>hash_lookup (1 samples, 0.03%)</title><rect x="997.7" y="369" width="0.4" height="15.0" fill="rgb(232,155,8)" rx="2" ry="2" />
887
<text text-anchor="" x="1000.74" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
888
</g>
889
<g class="func_g" onmouseover="s('ima_match_policy (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
890
<title>ima_match_policy (1 samples, 0.03%)</title><rect x="566.7" y="193" width="0.3" height="15.0" fill="rgb(212,57,52)" rx="2" ry="2" />
891
<text text-anchor="" x="569.65" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
892
</g>
893
<g class="func_g" onmouseover="s('is_basic (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
894
<title>is_basic (3 samples, 0.10%)</title><rect x="641.1" y="257" width="1.0" height="15.0" fill="rgb(243,185,24)" rx="2" ry="2" />
895
<text text-anchor="" x="644.06" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
896
</g>
897
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
898
<title>xen_hypercall_xen_version (18 samples, 0.61%)</title><rect x="445.4" y="289" width="6.4" height="15.0" fill="rgb(213,36,22)" rx="2" ry="2" />
899
<text text-anchor="" x="448.38" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
900
</g>
901
<g class="func_g" onmouseover="s('fget_raw_light (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
902
<title>fget_raw_light (9 samples, 0.30%)</title><rect x="515.5" y="289" width="3.2" height="15.0" fill="rgb(248,220,53)" rx="2" ry="2" />
903
<text text-anchor="" x="518.49" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
904
</g>
905
<g class="func_g" onmouseover="s('sh_xfree (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
906
<title>sh_xfree (2 samples, 0.07%)</title><rect x="303.4" y="369" width="0.7" height="15.0" fill="rgb(221,227,9)" rx="2" ry="2" />
907
<text text-anchor="" x="306.35" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
908
</g>
909
<g class="func_g" onmouseover="s('process_measurement (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
910
<title>process_measurement (2 samples, 0.07%)</title><rect x="566.3" y="209" width="0.7" height="15.0" fill="rgb(240,33,17)" rx="2" ry="2" />
911
<text text-anchor="" x="569.29" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
912
</g>
913
<g class="func_g" onmouseover="s('lookup_fast (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
914
<title>lookup_fast (2 samples, 0.07%)</title><rect x="145.2" y="385" width="0.7" height="15.0" fill="rgb(218,188,11)" rx="2" ry="2" />
915
<text text-anchor="" x="148.23" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
916
</g>
917
<g class="func_g" onmouseover="s('common_perm_cond (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
918
<title>common_perm_cond (3 samples, 0.10%)</title><rect x="153.1" y="401" width="1.1" height="15.0" fill="rgb(207,222,6)" rx="2" ry="2" />
919
<text text-anchor="" x="156.10" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
920
</g>
921
<g class="func_g" onmouseover="s('print_redirection (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
922
<title>print_redirection (7 samples, 0.24%)</title><rect x="1019.6" y="353" width="2.5" height="15.0" fill="rgb(222,68,21)" rx="2" ry="2" />
923
<text text-anchor="" x="1022.56" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
924
</g>
925
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
926
<title>xen_hypercall_xen_version (9 samples, 0.30%)</title><rect x="415.0" y="289" width="3.2" height="15.0" fill="rgb(212,127,13)" rx="2" ry="2" />
927
<text text-anchor="" x="417.97" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
928
</g>
929
<g class="func_g" onmouseover="s('find_variable_internal (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
930
<title>find_variable_internal (2 samples, 0.07%)</title><rect x="1028.1" y="353" width="0.8" height="15.0" fill="rgb(237,83,31)" rx="2" ry="2" />
931
<text text-anchor="" x="1031.14" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
932
</g>
933
<g class="func_g" onmouseover="s('xen_restore_fl_direct (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
934
<title>xen_restore_fl_direct (2 samples, 0.07%)</title><rect x="736.2" y="209" width="0.7" height="15.0" fill="rgb(252,144,42)" rx="2" ry="2" />
935
<text text-anchor="" x="739.22" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
936
</g>
937
<g class="func_g" onmouseover="s('jbd2_journal_add_journal_head (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
938
<title>jbd2_journal_add_journal_head (2 samples, 0.07%)</title><rect x="68.0" y="273" width="0.7" height="15.0" fill="rgb(207,111,33)" rx="2" ry="2" />
939
<text text-anchor="" x="70.95" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
940
</g>
941
<g class="func_g" onmouseover="s('new_fd_bitmap (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
942
<title>new_fd_bitmap (2 samples, 0.07%)</title><rect x="1055.0" y="433" width="0.7" height="15.0" fill="rgb(227,130,15)" rx="2" ry="2" />
943
<text text-anchor="" x="1057.97" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
944
</g>
945
<g class="func_g" onmouseover="s('getname_flags (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
946
<title>getname_flags (12 samples, 0.40%)</title><rect x="757.0" y="145" width="4.3" height="15.0" fill="rgb(244,139,32)" rx="2" ry="2" />
947
<text text-anchor="" x="759.97" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
948
</g>
949
<g class="func_g" onmouseover="s('var_lookup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
950
<title>var_lookup (1 samples, 0.03%)</title><rect x="709.4" y="289" width="0.4" height="15.0" fill="rgb(251,224,16)" rx="2" ry="2" />
951
<text text-anchor="" x="712.39" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
952
</g>
953
<g class="func_g" onmouseover="s('dequote_list (19 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
954
<title>dequote_list (19 samples, 0.64%)</title><rect x="868.9" y="321" width="6.8" height="15.0" fill="rgb(207,82,6)" rx="2" ry="2" />
955
<text text-anchor="" x="871.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
956
</g>
957
<g class="func_g" onmouseover="s('discard_unwind_frame (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
958
<title>discard_unwind_frame (9 samples, 0.30%)</title><rect x="236.8" y="417" width="3.2" height="15.0" fill="rgb(254,72,9)" rx="2" ry="2" />
959
<text text-anchor="" x="239.81" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
960
</g>
961
<g class="func_g" onmouseover="s('num_fifos (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
962
<title>num_fifos (4 samples, 0.13%)</title><rect x="1004.2" y="385" width="1.4" height="15.0" fill="rgb(222,64,30)" rx="2" ry="2" />
963
<text text-anchor="" x="1007.17" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
964
</g>
965
<g class="func_g" onmouseover="s('redirection_expand (98 samples, 3.31%)')" onmouseout="c()" onclick="zoom(this)">
966
<title>redirection_expand (98 samples, 3.31%)</title><rect x="635.3" y="337" width="35.1" height="15.0" fill="rgb(254,189,17)" rx="2" ry="2" />
967
<text text-anchor="" x="638.34" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >re..</text>
968
</g>
969
<g class="func_g" onmouseover="s('ext4_dirty_inode (51 samples, 1.72%)')" onmouseout="c()" onclick="zoom(this)">
970
<title>ext4_dirty_inode (51 samples, 1.72%)</title><rect x="60.1" y="337" width="18.2" height="15.0" fill="rgb(220,189,14)" rx="2" ry="2" />
971
<text text-anchor="" x="63.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
972
</g>
973
<g class="func_g" onmouseover="s('internal_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
974
<title>internal_malloc (1 samples, 0.03%)</title><rect x="620.3" y="257" width="0.4" height="15.0" fill="rgb(238,149,13)" rx="2" ry="2" />
975
<text text-anchor="" x="623.31" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
976
</g>
977
<g class="func_g" onmouseover="s('execute_builtin (292 samples, 9.85%)')" onmouseout="c()" onclick="zoom(this)">
978
<title>execute_builtin (292 samples, 9.85%)</title><rect x="672.5" y="369" width="104.5" height="15.0" fill="rgb(254,125,51)" rx="2" ry="2" />
979
<text text-anchor="" x="675.54" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >execute_buil..</text>
980
</g>
981
<g class="func_g" onmouseover="s('is_basic (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
982
<title>is_basic (3 samples, 0.10%)</title><rect x="814.9" y="337" width="1.1" height="15.0" fill="rgb(205,22,36)" rx="2" ry="2" />
983
<text text-anchor="" x="817.93" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
984
</g>
985
<g class="func_g" onmouseover="s('call_rcu_sched (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
986
<title>call_rcu_sched (2 samples, 0.07%)</title><rect x="352.4" y="241" width="0.7" height="15.0" fill="rgb(210,139,17)" rx="2" ry="2" />
987
<text text-anchor="" x="355.36" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
988
</g>
989
<g class="func_g" onmouseover="s('final_putname (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
990
<title>final_putname (2 samples, 0.07%)</title><rect x="150.2" y="401" width="0.8" height="15.0" fill="rgb(213,4,18)" rx="2" ry="2" />
991
<text text-anchor="" x="153.24" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
992
</g>
993
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
994
<title>xen_hypercall_xen_version (3 samples, 0.10%)</title><rect x="341.3" y="273" width="1.0" height="15.0" fill="rgb(240,151,13)" rx="2" ry="2" />
995
<text text-anchor="" x="344.27" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
996
</g>
997
<g class="func_g" onmouseover="s('strlen (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
998
<title>strlen (1 samples, 0.03%)</title><rect x="1049.3" y="401" width="0.3" height="15.0" fill="rgb(246,89,44)" rx="2" ry="2" />
999
<text text-anchor="" x="1052.25" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1000
</g>
1001
<g class="func_g" onmouseover="s('sh_xmalloc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1002
<title>sh_xmalloc (3 samples, 0.10%)</title><rect x="907.9" y="273" width="1.1" height="15.0" fill="rgb(238,153,33)" rx="2" ry="2" />
1003
<text text-anchor="" x="910.94" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1004
</g>
1005
<g class="func_g" onmouseover="s('set_pipestatus_from_exit (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1006
<title>set_pipestatus_from_exit (3 samples, 0.10%)</title><rect x="1047.5" y="401" width="1.0" height="15.0" fill="rgb(227,174,38)" rx="2" ry="2" />
1007
<text text-anchor="" x="1050.46" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1008
</g>
1009
<g class="func_g" onmouseover="s('context_tracking_user_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1010
<title>context_tracking_user_exit (1 samples, 0.03%)</title><rect x="729.1" y="225" width="0.3" height="15.0" fill="rgb(226,92,14)" rx="2" ry="2" />
1011
<text text-anchor="" x="732.07" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1012
</g>
1013
<g class="func_g" onmouseover="s('syscall_trace_leave (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1014
<title>syscall_trace_leave (1 samples, 0.03%)</title><rect x="504.0" y="321" width="0.4" height="15.0" fill="rgb(253,84,7)" rx="2" ry="2" />
1015
<text text-anchor="" x="507.05" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1016
</g>
1017
<g class="func_g" onmouseover="s('page_waitqueue (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1018
<title>page_waitqueue (1 samples, 0.03%)</title><rect x="51.9" y="369" width="0.3" height="15.0" fill="rgb(251,57,40)" rx="2" ry="2" />
1019
<text text-anchor="" x="54.86" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1020
</g>
1021
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1022
<title>sh_free (1 samples, 0.03%)</title><rect x="296.6" y="353" width="0.3" height="15.0" fill="rgb(216,75,54)" rx="2" ry="2" />
1023
<text text-anchor="" x="299.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1024
</g>
1025
<g class="func_g" onmouseover="s('__xstat64 (131 samples, 4.42%)')" onmouseout="c()" onclick="zoom(this)">
1026
<title>__xstat64 (131 samples, 4.42%)</title><rect x="119.8" y="529" width="46.9" height="15.0" fill="rgb(249,78,17)" rx="2" ry="2" />
1027
<text text-anchor="" x="122.83" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__xs..</text>
1028
</g>
1029
<g class="func_g" onmouseover="s('syscall_trace_enter (25 samples, 0.84%)')" onmouseout="c()" onclick="zoom(this)">
1030
<title>syscall_trace_enter (25 samples, 0.84%)</title><rect x="371.3" y="305" width="9.0" height="15.0" fill="rgb(242,69,4)" rx="2" ry="2" />
1031
<text text-anchor="" x="374.32" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1032
</g>
1033
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1034
<title>sh_free (1 samples, 0.03%)</title><rect x="312.3" y="321" width="0.4" height="15.0" fill="rgb(246,82,9)" rx="2" ry="2" />
1035
<text text-anchor="" x="315.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1036
</g>
1037
<g class="func_g" onmouseover="s('sh_xmalloc (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
1038
<title>sh_xmalloc (9 samples, 0.30%)</title><rect x="811.7" y="321" width="3.2" height="15.0" fill="rgb(246,23,1)" rx="2" ry="2" />
1039
<text text-anchor="" x="814.71" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1040
</g>
1041
<g class="func_g" onmouseover="s('in_group_p (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1042
<title>in_group_p (3 samples, 0.10%)</title><rect x="596.7" y="193" width="1.1" height="15.0" fill="rgb(217,57,35)" rx="2" ry="2" />
1043
<text text-anchor="" x="599.70" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1044
</g>
1045
<g class="func_g" onmouseover="s('add_unwind_protect_internal (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
1046
<title>add_unwind_protect_internal (5 samples, 0.17%)</title><rect x="265.4" y="353" width="1.8" height="15.0" fill="rgb(228,87,23)" rx="2" ry="2" />
1047
<text text-anchor="" x="268.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1048
</g>
1049
<g class="func_g" onmouseover="s('find_variable (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
1050
<title>find_variable (15 samples, 0.51%)</title><rect x="901.5" y="289" width="5.4" height="15.0" fill="rgb(213,12,14)" rx="2" ry="2" />
1051
<text text-anchor="" x="904.50" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1052
</g>
1053
<g class="func_g" onmouseover="s('find_lock_page (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
1054
<title>find_lock_page (8 samples, 0.27%)</title><rect x="48.6" y="353" width="2.9" height="15.0" fill="rgb(235,137,30)" rx="2" ry="2" />
1055
<text text-anchor="" x="51.64" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1056
</g>
1057
<g class="func_g" onmouseover="s('list_reverse (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1058
<title>list_reverse (1 samples, 0.03%)</title><rect x="829.6" y="353" width="0.4" height="15.0" fill="rgb(229,73,1)" rx="2" ry="2" />
1059
<text text-anchor="" x="832.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1060
</g>
1061
<g class="func_g" onmouseover="s('system_call (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1062
<title>system_call (1 samples, 0.03%)</title><rect x="1068.6" y="529" width="0.3" height="15.0" fill="rgb(248,155,21)" rx="2" ry="2" />
1063
<text text-anchor="" x="1071.57" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1064
</g>
1065
<g class="func_g" onmouseover="s('__dup2 (130 samples, 4.39%)')" onmouseout="c()" onclick="zoom(this)">
1066
<title>__dup2 (130 samples, 4.39%)</title><rect x="333.8" y="337" width="46.5" height="15.0" fill="rgb(252,126,29)" rx="2" ry="2" />
1067
<text text-anchor="" x="336.76" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__dup2</text>
1068
</g>
1069
<g class="func_g" onmouseover="s('__tzfile_compute (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
1070
<title>__tzfile_compute (5 samples, 0.17%)</title><rect x="116.6" y="529" width="1.8" height="15.0" fill="rgb(213,36,39)" rx="2" ry="2" />
1071
<text text-anchor="" x="119.61" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1072
</g>
1073
<g class="func_g" onmouseover="s('__ext4_handle_dirty_metadata (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1074
<title>__ext4_handle_dirty_metadata (1 samples, 0.03%)</title><rect x="61.2" y="305" width="0.3" height="15.0" fill="rgb(251,13,11)" rx="2" ry="2" />
1075
<text text-anchor="" x="64.16" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1076
</g>
1077
<g class="func_g" onmouseover="s('path_init (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1078
<title>path_init (4 samples, 0.13%)</title><rect x="145.9" y="385" width="1.5" height="15.0" fill="rgb(252,52,49)" rx="2" ry="2" />
1079
<text text-anchor="" x="148.94" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1080
</g>
1081
<g class="func_g" onmouseover="s('xen_irq_enable_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1082
<title>xen_irq_enable_direct (1 samples, 0.03%)</title><rect x="166.3" y="513" width="0.4" height="15.0" fill="rgb(254,220,3)" rx="2" ry="2" />
1083
<text text-anchor="" x="169.33" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1084
</g>
1085
<g class="func_g" onmouseover="s('main (2,311 samples, 78.00%)')" onmouseout="c()" onclick="zoom(this)">
1086
<title>main (2,311 samples, 78.00%)</title><rect x="229.3" y="529" width="826.7" height="15.0" fill="rgb(242,82,38)" rx="2" ry="2" />
1087
<text text-anchor="" x="232.30" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >main</text>
1088
</g>
1089
<g class="func_g" onmouseover="s('__longjmp (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1090
<title>__longjmp (1 samples, 0.03%)</title><rect x="1056.0" y="545" width="0.4" height="15.0" fill="rgb(211,190,33)" rx="2" ry="2" />
1091
<text text-anchor="" x="1059.05" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1092
</g>
1093
<g class="func_g" onmouseover="s('__srcu_read_lock (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1094
<title>__srcu_read_lock (3 samples, 0.10%)</title><rect x="31.1" y="465" width="1.1" height="15.0" fill="rgb(206,195,29)" rx="2" ry="2" />
1095
<text text-anchor="" x="34.11" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1096
</g>
1097
<g class="func_g" onmouseover="s('internal_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1098
<title>internal_malloc (2 samples, 0.07%)</title><rect x="1057.5" y="513" width="0.7" height="15.0" fill="rgb(214,101,43)" rx="2" ry="2" />
1099
<text text-anchor="" x="1060.48" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1100
</g>
1101
<g class="func_g" onmouseover="s('__dquot_initialize (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1102
<title>__dquot_initialize (1 samples, 0.03%)</title><rect x="576.7" y="161" width="0.3" height="15.0" fill="rgb(216,25,31)" rx="2" ry="2" />
1103
<text text-anchor="" x="579.67" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1104
</g>
1105
<g class="func_g" onmouseover="s('strncpy_from_user (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1106
<title>strncpy_from_user (2 samples, 0.07%)</title><rect x="760.6" y="129" width="0.7" height="15.0" fill="rgb(227,149,40)" rx="2" ry="2" />
1107
<text text-anchor="" x="763.55" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1108
</g>
1109
<g class="func_g" onmouseover="s('is_basic (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1110
<title>is_basic (3 samples, 0.10%)</title><rect x="929.4" y="321" width="1.1" height="15.0" fill="rgb(237,61,54)" rx="2" ry="2" />
1111
<text text-anchor="" x="932.41" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1112
</g>
1113
<g class="func_g" onmouseover="s('add_undo_redirect (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
1114
<title>add_undo_redirect (18 samples, 0.61%)</title><rect x="617.5" y="337" width="6.4" height="15.0" fill="rgb(248,38,46)" rx="2" ry="2" />
1115
<text text-anchor="" x="620.45" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1116
</g>
1117
<g class="func_g" onmouseover="s('context_tracking_user_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1118
<title>context_tracking_user_exit (1 samples, 0.03%)</title><rect x="440.4" y="321" width="0.3" height="15.0" fill="rgb(229,76,48)" rx="2" ry="2" />
1119
<text text-anchor="" x="443.37" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1120
</g>
1121
<g class="func_g" onmouseover="s('__ctype_get_mb_cur_max (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
1122
<title>__ctype_get_mb_cur_max (5 samples, 0.17%)</title><rect x="832.8" y="337" width="1.8" height="15.0" fill="rgb(208,130,48)" rx="2" ry="2" />
1123
<text text-anchor="" x="835.81" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1124
</g>
1125
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1126
<title>__memcpy_sse2_unaligned (2 samples, 0.07%)</title><rect x="651.8" y="257" width="0.7" height="15.0" fill="rgb(215,102,26)" rx="2" ry="2" />
1127
<text text-anchor="" x="654.80" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1128
</g>
1129
<g class="func_g" onmouseover="s('sh_xmalloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1130
<title>sh_xmalloc (2 samples, 0.07%)</title><rect x="874.0" y="289" width="0.7" height="15.0" fill="rgb(236,57,8)" rx="2" ry="2" />
1131
<text text-anchor="" x="876.96" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1132
</g>
1133
<g class="func_g" onmouseover="s('_IO_file_overflow@@GLIBC_2.2.5 (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1134
<title>_IO_file_overflow@@GLIBC_2.2.5 (3 samples, 0.10%)</title><rect x="170.6" y="545" width="1.1" height="15.0" fill="rgb(216,156,8)" rx="2" ry="2" />
1135
<text text-anchor="" x="173.63" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1136
</g>
1137
<g class="func_g" onmouseover="s('begin_unwind_frame (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1138
<title>begin_unwind_frame (1 samples, 0.03%)</title><rect x="253.3" y="401" width="0.3" height="15.0" fill="rgb(252,167,44)" rx="2" ry="2" />
1139
<text text-anchor="" x="256.27" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1140
</g>
1141
<g class="func_g" onmouseover="s('jbd2__journal_start (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
1142
<title>jbd2__journal_start (6 samples, 0.20%)</title><rect x="43.3" y="353" width="2.1" height="15.0" fill="rgb(246,30,39)" rx="2" ry="2" />
1143
<text text-anchor="" x="46.27" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1144
</g>
1145
<g class="func_g" onmouseover="s('quote_string (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1146
<title>quote_string (1 samples, 0.03%)</title><rect x="906.9" y="289" width="0.3" height="15.0" fill="rgb(211,114,53)" rx="2" ry="2" />
1147
<text text-anchor="" x="909.87" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1148
</g>
1149
<g class="func_g" onmouseover="s('get_random (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
1150
<title>get_random (11 samples, 0.37%)</title><rect x="901.5" y="257" width="3.9" height="15.0" fill="rgb(219,169,54)" rx="2" ry="2" />
1151
<text text-anchor="" x="904.50" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1152
</g>
1153
<g class="func_g" onmouseover="s('__GI___libc_close (55 samples, 1.86%)')" onmouseout="c()" onclick="zoom(this)">
1154
<title>__GI___libc_close (55 samples, 1.86%)</title><rect x="410.0" y="353" width="19.6" height="15.0" fill="rgb(220,22,37)" rx="2" ry="2" />
1155
<text text-anchor="" x="412.96" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1156
</g>
1157
<g class="func_g" onmouseover="s('copy_word (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1158
<title>copy_word (3 samples, 0.10%)</title><rect x="642.5" y="273" width="1.1" height="15.0" fill="rgb(232,106,21)" rx="2" ry="2" />
1159
<text text-anchor="" x="645.49" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1160
</g>
1161
<g class="func_g" onmouseover="s('syscall_trace_enter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1162
<title>syscall_trace_enter (1 samples, 0.03%)</title><rect x="461.1" y="337" width="0.4" height="15.0" fill="rgb(244,109,15)" rx="2" ry="2" />
1163
<text text-anchor="" x="464.12" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1164
</g>
1165
<g class="func_g" onmouseover="s('xen_restore_fl_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1166
<title>xen_restore_fl_direct (1 samples, 0.03%)</title><rect x="342.3" y="289" width="0.4" height="15.0" fill="rgb(217,22,23)" rx="2" ry="2" />
1167
<text text-anchor="" x="345.35" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1168
</g>
1169
<g class="func_g" onmouseover="s('find_variable (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
1170
<title>find_variable (10 samples, 0.34%)</title><rect x="1024.6" y="353" width="3.5" height="15.0" fill="rgb(211,184,13)" rx="2" ry="2" />
1171
<text text-anchor="" x="1027.57" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1172
</g>
1173
<g class="func_g" onmouseover="s('follow_managed (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1174
<title>follow_managed (1 samples, 0.03%)</title><rect x="584.9" y="241" width="0.4" height="15.0" fill="rgb(221,57,44)" rx="2" ry="2" />
1175
<text text-anchor="" x="587.90" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1176
</g>
1177
<g class="func_g" onmouseover="s('syscall_trace_leave (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
1178
<title>syscall_trace_leave (10 samples, 0.34%)</title><rect x="436.8" y="321" width="3.6" height="15.0" fill="rgb(252,59,45)" rx="2" ry="2" />
1179
<text text-anchor="" x="439.79" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1180
</g>
1181
<g class="func_g" onmouseover="s('check_events (33 samples, 1.11%)')" onmouseout="c()" onclick="zoom(this)">
1182
<title>check_events (33 samples, 1.11%)</title><rect x="490.8" y="289" width="11.8" height="15.0" fill="rgb(239,179,5)" rx="2" ry="2" />
1183
<text text-anchor="" x="493.81" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1184
</g>
1185
<g class="func_g" onmouseover="s('sh_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1186
<title>sh_malloc (1 samples, 0.03%)</title><rect x="265.4" y="337" width="0.4" height="15.0" fill="rgb(230,180,9)" rx="2" ry="2" />
1187
<text text-anchor="" x="268.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1188
</g>
1189
<g class="func_g" onmouseover="s('__GI___libc_close (29 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
1190
<title>__GI___libc_close (29 samples, 0.98%)</title><rect x="172.4" y="545" width="10.4" height="15.0" fill="rgb(253,39,12)" rx="2" ry="2" />
1191
<text text-anchor="" x="175.42" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1192
</g>
1193
<g class="func_g" onmouseover="s('do_redirection_internal (556 samples, 18.76%)')" onmouseout="c()" onclick="zoom(this)">
1194
<title>do_redirection_internal (556 samples, 18.76%)</title><rect x="472.2" y="353" width="198.9" height="15.0" fill="rgb(214,94,0)" rx="2" ry="2" />
1195
<text text-anchor="" x="475.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_redirection_internal</text>
1196
</g>
1197
<g class="func_g" onmouseover="s('mnt_want_write (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1198
<title>mnt_want_write (3 samples, 0.10%)</title><rect x="598.1" y="241" width="1.1" height="15.0" fill="rgb(250,38,39)" rx="2" ry="2" />
1199
<text text-anchor="" x="601.13" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1200
</g>
1201
<g class="func_g" onmouseover="s('_raw_spin_lock (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1202
<title>_raw_spin_lock (4 samples, 0.13%)</title><rect x="364.2" y="289" width="1.4" height="15.0" fill="rgb(244,29,46)" rx="2" ry="2" />
1203
<text text-anchor="" x="367.17" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1204
</g>
1205
<g class="func_g" onmouseover="s('security_file_fcntl (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1206
<title>security_file_fcntl (2 samples, 0.07%)</title><rect x="441.4" y="321" width="0.8" height="15.0" fill="rgb(217,32,53)" rx="2" ry="2" />
1207
<text text-anchor="" x="444.44" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1208
</g>
1209
<g class="func_g" onmouseover="s('mntput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1210
<title>mntput (1 samples, 0.03%)</title><rect x="137.4" y="449" width="0.3" height="15.0" fill="rgb(218,127,43)" rx="2" ry="2" />
1211
<text text-anchor="" x="140.36" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1212
</g>
1213
<g class="func_g" onmouseover="s('sh_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1214
<title>sh_malloc (2 samples, 0.07%)</title><rect x="941.9" y="289" width="0.7" height="15.0" fill="rgb(221,205,52)" rx="2" ry="2" />
1215
<text text-anchor="" x="944.93" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1216
</g>
1217
<g class="func_g" onmouseover="s('unwind_frame_discard_internal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1218
<title>unwind_frame_discard_internal (1 samples, 0.03%)</title><rect x="403.9" y="353" width="0.3" height="15.0" fill="rgb(224,67,7)" rx="2" ry="2" />
1219
<text text-anchor="" x="406.88" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1220
</g>
1221
<g class="func_g" onmouseover="s('inode_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1222
<title>inode_permission (1 samples, 0.03%)</title><rect x="570.6" y="209" width="0.3" height="15.0" fill="rgb(241,37,0)" rx="2" ry="2" />
1223
<text text-anchor="" x="573.59" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1224
</g>
1225
<g class="func_g" onmouseover="s('copy_user_enhanced_fast_string (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1226
<title>copy_user_enhanced_fast_string (2 samples, 0.07%)</title><rect x="39.3" y="385" width="0.8" height="15.0" fill="rgb(240,86,38)" rx="2" ry="2" />
1227
<text text-anchor="" x="42.34" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1228
</g>
1229
<g class="func_g" onmouseover="s('user_path_at_empty (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1230
<title>user_path_at_empty (1 samples, 0.03%)</title><rect x="763.8" y="177" width="0.3" height="15.0" fill="rgb(249,151,13)" rx="2" ry="2" />
1231
<text text-anchor="" x="766.77" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1232
</g>
1233
<g class="func_g" onmouseover="s('__GI___libc_write (17 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
1234
<title>__GI___libc_write (17 samples, 0.57%)</title><rect x="214.3" y="545" width="6.1" height="15.0" fill="rgb(223,137,11)" rx="2" ry="2" />
1235
<text text-anchor="" x="217.27" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1236
</g>
1237
<g class="func_g" onmouseover="s('get_unused_fd_flags (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1238
<title>get_unused_fd_flags (4 samples, 0.13%)</title><rect x="601.0" y="273" width="1.4" height="15.0" fill="rgb(213,30,52)" rx="2" ry="2" />
1239
<text text-anchor="" x="604.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1240
</g>
1241
<g class="func_g" onmouseover="s('unlink_fifo_list (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1242
<title>unlink_fifo_list (1 samples, 0.03%)</title><rect x="1054.6" y="417" width="0.4" height="15.0" fill="rgb(205,161,20)" rx="2" ry="2" />
1243
<text text-anchor="" x="1057.62" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1244
</g>
1245
<g class="func_g" onmouseover="s('make_variable_value (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1246
<title>make_variable_value (1 samples, 0.03%)</title><rect x="281.9" y="353" width="0.3" height="15.0" fill="rgb(210,89,15)" rx="2" ry="2" />
1247
<text text-anchor="" x="284.89" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1248
</g>
1249
<g class="func_g" onmouseover="s('current_kernel_time (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1250
<title>current_kernel_time (2 samples, 0.07%)</title><rect x="37.9" y="385" width="0.7" height="15.0" fill="rgb(214,182,53)" rx="2" ry="2" />
1251
<text text-anchor="" x="40.90" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1252
</g>
1253
<g class="func_g" onmouseover="s('expand_word_internal (43 samples, 1.45%)')" onmouseout="c()" onclick="zoom(this)">
1254
<title>expand_word_internal (43 samples, 1.45%)</title><rect x="647.9" y="273" width="15.3" height="15.0" fill="rgb(250,38,39)" rx="2" ry="2" />
1255
<text text-anchor="" x="650.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1256
</g>
1257
<g class="func_g" onmouseover="s('fget_light (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1258
<title>fget_light (4 samples, 0.13%)</title><rect x="25.7" y="481" width="1.5" height="15.0" fill="rgb(220,91,41)" rx="2" ry="2" />
1259
<text text-anchor="" x="28.74" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1260
</g>
1261
<g class="func_g" onmouseover="s('syscall_trace_leave (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
1262
<title>syscall_trace_leave (18 samples, 0.61%)</title><rect x="126.6" y="497" width="6.5" height="15.0" fill="rgb(245,115,52)" rx="2" ry="2" />
1263
<text text-anchor="" x="129.63" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1264
</g>
1265
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
1266
<title>int_check_syscall_exit_work (11 samples, 0.37%)</title><rect x="436.4" y="337" width="4.0" height="15.0" fill="rgb(243,113,40)" rx="2" ry="2" />
1267
<text text-anchor="" x="439.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1268
</g>
1269
<g class="func_g" onmouseover="s('fput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1270
<title>fput (1 samples, 0.03%)</title><rect x="420.7" y="289" width="0.3" height="15.0" fill="rgb(254,114,19)" rx="2" ry="2" />
1271
<text text-anchor="" x="423.69" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1272
</g>
1273
<g class="func_g" onmouseover="s('put_page (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1274
<title>put_page (1 samples, 0.03%)</title><rect x="81.2" y="369" width="0.3" height="15.0" fill="rgb(218,26,0)" rx="2" ry="2" />
1275
<text text-anchor="" x="84.19" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1276
</g>
1277
<g class="func_g" onmouseover="s('internal_free (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
1278
<title>internal_free (9 samples, 0.30%)</title><rect x="841.8" y="273" width="3.2" height="15.0" fill="rgb(221,158,54)" rx="2" ry="2" />
1279
<text text-anchor="" x="844.76" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1280
</g>
1281
<g class="func_g" onmouseover="s('sh_malloc (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
1282
<title>sh_malloc (5 samples, 0.17%)</title><rect x="278.3" y="305" width="1.8" height="15.0" fill="rgb(241,31,1)" rx="2" ry="2" />
1283
<text text-anchor="" x="281.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1284
</g>
1285
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (19 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
1286
<title>xen_hypercall_xen_version (19 samples, 0.64%)</title><rect x="729.4" y="193" width="6.8" height="15.0" fill="rgb(252,50,8)" rx="2" ry="2" />
1287
<text text-anchor="" x="732.43" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1288
</g>
1289
<g class="func_g" onmouseover="s('sh_xfree (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1290
<title>sh_xfree (2 samples, 0.07%)</title><rect x="877.2" y="305" width="0.7" height="15.0" fill="rgb(243,25,50)" rx="2" ry="2" />
1291
<text text-anchor="" x="880.18" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1292
</g>
1293
<g class="func_g" onmouseover="s('_IO_file_overflow@@GLIBC_2.2.5 (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1294
<title>_IO_file_overflow@@GLIBC_2.2.5 (2 samples, 0.07%)</title><rect x="679.0" y="353" width="0.7" height="15.0" fill="rgb(210,78,12)" rx="2" ry="2" />
1295
<text text-anchor="" x="681.98" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1296
</g>
1297
<g class="func_g" onmouseover="s('sh_xfree (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1298
<title>sh_xfree (2 samples, 0.07%)</title><rect x="407.5" y="337" width="0.7" height="15.0" fill="rgb(248,108,36)" rx="2" ry="2" />
1299
<text text-anchor="" x="410.46" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1300
</g>
1301
<g class="func_g" onmouseover="s('_IO_ferror (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1302
<title>_IO_ferror (2 samples, 0.07%)</title><rect x="694.7" y="337" width="0.7" height="15.0" fill="rgb(245,186,32)" rx="2" ry="2" />
1303
<text text-anchor="" x="697.72" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1304
</g>
1305
<g class="func_g" onmouseover="s('cprintf (20 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
1306
<title>cprintf (20 samples, 0.67%)</title><rect x="1008.5" y="337" width="7.1" height="15.0" fill="rgb(209,15,52)" rx="2" ry="2" />
1307
<text text-anchor="" x="1011.47" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1308
</g>
1309
<g class="func_g" onmouseover="s('lookup_dcache (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1310
<title>lookup_dcache (1 samples, 0.03%)</title><rect x="597.8" y="241" width="0.3" height="15.0" fill="rgb(224,120,27)" rx="2" ry="2" />
1311
<text text-anchor="" x="600.78" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1312
</g>
1313
<g class="func_g" onmouseover="s('__ext4_journal_start_sb (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
1314
<title>__ext4_journal_start_sb (10 samples, 0.34%)</title><rect x="42.6" y="369" width="3.5" height="15.0" fill="rgb(209,71,45)" rx="2" ry="2" />
1315
<text text-anchor="" x="45.55" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1316
</g>
1317
<g class="func_g" onmouseover="s('_copy_to_user (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1318
<title>_copy_to_user (1 samples, 0.03%)</title><rect x="134.1" y="465" width="0.4" height="15.0" fill="rgb(244,108,47)" rx="2" ry="2" />
1319
<text text-anchor="" x="137.14" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1320
</g>
1321
<g class="func_g" onmouseover="s('dispose_redirects (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1322
<title>dispose_redirects (3 samples, 0.10%)</title><rect x="407.1" y="353" width="1.1" height="15.0" fill="rgb(248,28,41)" rx="2" ry="2" />
1323
<text text-anchor="" x="410.10" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1324
</g>
1325
<g class="func_g" onmouseover="s('sh_xmalloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1326
<title>sh_xmalloc (2 samples, 0.07%)</title><rect x="663.6" y="289" width="0.7" height="15.0" fill="rgb(252,77,23)" rx="2" ry="2" />
1327
<text text-anchor="" x="666.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1328
</g>
1329
<g class="func_g" onmouseover="s('add_unwind_protect (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
1330
<title>add_unwind_protect (6 samples, 0.20%)</title><rect x="265.1" y="385" width="2.1" height="15.0" fill="rgb(238,199,1)" rx="2" ry="2" />
1331
<text text-anchor="" x="268.07" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1332
</g>
1333
<g class="func_g" onmouseover="s('__inode_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1334
<title>__inode_permission (1 samples, 0.03%)</title><rect x="141.7" y="369" width="0.3" height="15.0" fill="rgb(229,54,13)" rx="2" ry="2" />
1335
<text text-anchor="" x="144.65" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1336
</g>
1337
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1338
<title>sh_free (1 samples, 0.03%)</title><rect x="654.3" y="241" width="0.4" height="15.0" fill="rgb(254,128,21)" rx="2" ry="2" />
1339
<text text-anchor="" x="657.30" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1340
</g>
1341
<g class="func_g" onmouseover="s('sh_xfree (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1342
<title>sh_xfree (3 samples, 0.10%)</title><rect x="1035.3" y="353" width="1.1" height="15.0" fill="rgb(221,176,17)" rx="2" ry="2" />
1343
<text text-anchor="" x="1038.30" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1344
</g>
1345
<g class="func_g" onmouseover="s('cap_inode_permission (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1346
<title>cap_inode_permission (3 samples, 0.10%)</title><rect x="750.9" y="65" width="1.1" height="15.0" fill="rgb(233,44,34)" rx="2" ry="2" />
1347
<text text-anchor="" x="753.89" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1348
</g>
1349
<g class="func_g" onmouseover="s('kmem_cache_alloc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1350
<title>kmem_cache_alloc (3 samples, 0.10%)</title><rect x="603.9" y="241" width="1.0" height="15.0" fill="rgb(243,57,23)" rx="2" ry="2" />
1351
<text text-anchor="" x="606.86" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1352
</g>
1353
<g class="func_g" onmouseover="s('do_last (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1354
<title>do_last (2 samples, 0.07%)</title><rect x="560.2" y="257" width="0.7" height="15.0" fill="rgb(246,104,6)" rx="2" ry="2" />
1355
<text text-anchor="" x="563.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1356
</g>
1357
<g class="func_g" onmouseover="s('begin_unwind_frame (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
1358
<title>begin_unwind_frame (8 samples, 0.27%)</title><rect x="233.9" y="417" width="2.9" height="15.0" fill="rgb(230,7,33)" rx="2" ry="2" />
1359
<text text-anchor="" x="236.95" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1360
</g>
1361
<g class="func_g" onmouseover="s('vfs_getattr (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
1362
<title>vfs_getattr (13 samples, 0.44%)</title><rect x="151.3" y="449" width="4.7" height="15.0" fill="rgb(208,129,4)" rx="2" ry="2" />
1363
<text text-anchor="" x="154.31" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1364
</g>
1365
<g class="func_g" onmouseover="s('make_bare_word (20 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
1366
<title>make_bare_word (20 samples, 0.67%)</title><rect x="790.6" y="321" width="7.2" height="15.0" fill="rgb(249,134,0)" rx="2" ry="2" />
1367
<text text-anchor="" x="793.60" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1368
</g>
1369
<g class="func_g" onmouseover="s('bind_variable_internal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1370
<title>bind_variable_internal (1 samples, 0.03%)</title><rect x="282.2" y="369" width="0.4" height="15.0" fill="rgb(224,190,28)" rx="2" ry="2" />
1371
<text text-anchor="" x="285.24" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1372
</g>
1373
<g class="func_g" onmouseover="s('__strchr_sse2 (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1374
<title>__strchr_sse2 (2 samples, 0.07%)</title><rect x="681.5" y="353" width="0.7" height="15.0" fill="rgb(249,170,48)" rx="2" ry="2" />
1375
<text text-anchor="" x="684.49" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1376
</g>
1377
<g class="func_g" onmouseover="s('is_basic (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1378
<title>is_basic (3 samples, 0.10%)</title><rect x="897.9" y="305" width="1.1" height="15.0" fill="rgb(210,61,10)" rx="2" ry="2" />
1379
<text text-anchor="" x="900.92" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1380
</g>
1381
<g class="func_g" onmouseover="s('make_word_list (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1382
<title>make_word_list (2 samples, 0.07%)</title><rect x="799.2" y="337" width="0.7" height="15.0" fill="rgb(214,70,14)" rx="2" ry="2" />
1383
<text text-anchor="" x="802.19" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1384
</g>
1385
<g class="func_g" onmouseover="s('sh_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1386
<title>sh_free (2 samples, 0.07%)</title><rect x="407.5" y="321" width="0.7" height="15.0" fill="rgb(219,29,43)" rx="2" ry="2" />
1387
<text text-anchor="" x="410.46" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1388
</g>
1389
<g class="func_g" onmouseover="s('word_list_remove_quoted_nulls (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1390
<title>word_list_remove_quoted_nulls (1 samples, 0.03%)</title><rect x="997.4" y="353" width="0.3" height="15.0" fill="rgb(223,75,26)" rx="2" ry="2" />
1391
<text text-anchor="" x="1000.38" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1392
</g>
1393
<g class="func_g" onmouseover="s('_cond_resched (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1394
<title>_cond_resched (1 samples, 0.03%)</title><rect x="67.2" y="289" width="0.4" height="15.0" fill="rgb(227,228,24)" rx="2" ry="2" />
1395
<text text-anchor="" x="70.24" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1396
</g>
1397
<g class="func_g" onmouseover="s('internal_free (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
1398
<title>internal_free (13 samples, 0.44%)</title><rect x="944.1" y="289" width="4.6" height="15.0" fill="rgb(207,73,39)" rx="2" ry="2" />
1399
<text text-anchor="" x="947.07" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1400
</g>
1401
<g class="func_g" onmouseover="s('fput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1402
<title>fput (1 samples, 0.03%)</title><rect x="465.1" y="273" width="0.3" height="15.0" fill="rgb(215,214,4)" rx="2" ry="2" />
1403
<text text-anchor="" x="468.05" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1404
</g>
1405
<g class="func_g" onmouseover="s('sh_malloc (17 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
1406
<title>sh_malloc (17 samples, 0.57%)</title><rect x="911.9" y="289" width="6.1" height="15.0" fill="rgb(219,44,27)" rx="2" ry="2" />
1407
<text text-anchor="" x="914.88" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1408
</g>
1409
<g class="func_g" onmouseover="s('do_redirections (737 samples, 24.87%)')" onmouseout="c()" onclick="zoom(this)">
1410
<title>do_redirections (737 samples, 24.87%)</title><rect x="408.9" y="369" width="263.6" height="15.0" fill="rgb(214,123,29)" rx="2" ry="2" />
1411
<text text-anchor="" x="411.89" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_redirections</text>
1412
</g>
1413
<g class="func_g" onmouseover="s('strlen (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1414
<title>strlen (1 samples, 0.03%)</title><rect x="642.1" y="273" width="0.4" height="15.0" fill="rgb(228,176,5)" rx="2" ry="2" />
1415
<text text-anchor="" x="645.14" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1416
</g>
1417
<g class="func_g" onmouseover="s('generic_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1418
<title>generic_permission (1 samples, 0.03%)</title><rect x="142.7" y="337" width="0.4" height="15.0" fill="rgb(244,155,12)" rx="2" ry="2" />
1419
<text text-anchor="" x="145.72" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1420
</g>
1421
<g class="func_g" onmouseover="s('apparmor_inode_getattr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1422
<title>apparmor_inode_getattr (1 samples, 0.03%)</title><rect x="764.1" y="161" width="0.4" height="15.0" fill="rgb(245,134,41)" rx="2" ry="2" />
1423
<text text-anchor="" x="767.13" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1424
</g>
1425
<g class="func_g" onmouseover="s('sub_append_string (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
1426
<title>sub_append_string (14 samples, 0.47%)</title><rect x="658.2" y="257" width="5.0" height="15.0" fill="rgb(210,178,26)" rx="2" ry="2" />
1427
<text text-anchor="" x="661.23" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1428
</g>
1429
<g class="func_g" onmouseover="s('task_work_add (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1430
<title>task_work_add (2 samples, 0.07%)</title><rect x="370.2" y="257" width="0.8" height="15.0" fill="rgb(230,82,25)" rx="2" ry="2" />
1431
<text text-anchor="" x="373.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1432
</g>
1433
<g class="func_g" onmouseover="s('putchar (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
1434
<title>putchar (7 samples, 0.24%)</title><rect x="709.8" y="353" width="2.5" height="15.0" fill="rgb(235,104,40)" rx="2" ry="2" />
1435
<text text-anchor="" x="712.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1436
</g>
1437
<g class="func_g" onmouseover="s('sh_xmalloc (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1438
<title>sh_xmalloc (4 samples, 0.13%)</title><rect x="265.8" y="337" width="1.4" height="15.0" fill="rgb(229,20,2)" rx="2" ry="2" />
1439
<text text-anchor="" x="268.79" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1440
</g>
1441
<g class="func_g" onmouseover="s('_print_word_list (32 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
1442
<title>_print_word_list (32 samples, 1.08%)</title><rect x="1005.6" y="353" width="11.5" height="15.0" fill="rgb(237,17,40)" rx="2" ry="2" />
1443
<text text-anchor="" x="1008.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1444
</g>
1445
<g class="func_g" onmouseover="s('getname (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
1446
<title>getname (10 samples, 0.34%)</title><rect x="602.4" y="273" width="3.6" height="15.0" fill="rgb(209,35,11)" rx="2" ry="2" />
1447
<text text-anchor="" x="605.43" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1448
</g>
1449
<g class="func_g" onmouseover="s('unlock_page (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1450
<title>unlock_page (2 samples, 0.07%)</title><rect x="83.0" y="385" width="0.7" height="15.0" fill="rgb(247,209,51)" rx="2" ry="2" />
1451
<text text-anchor="" x="85.98" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1452
</g>
1453
<g class="func_g" onmouseover="s('add_unwind_protect_internal (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
1454
<title>add_unwind_protect_internal (9 samples, 0.30%)</title><rect x="267.6" y="337" width="3.2" height="15.0" fill="rgb(208,4,3)" rx="2" ry="2" />
1455
<text text-anchor="" x="270.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1456
</g>
1457
<g class="func_g" onmouseover="s('apparmor_file_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1458
<title>apparmor_file_permission (1 samples, 0.03%)</title><rect x="91.6" y="449" width="0.3" height="15.0" fill="rgb(211,104,11)" rx="2" ry="2" />
1459
<text text-anchor="" x="94.57" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1460
</g>
1461
<g class="func_g" onmouseover="s('dispose_exec_redirects (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1462
<title>dispose_exec_redirects (1 samples, 0.03%)</title><rect x="289.8" y="385" width="0.3" height="15.0" fill="rgb(246,56,47)" rx="2" ry="2" />
1463
<text text-anchor="" x="292.76" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1464
</g>
1465
<g class="func_g" onmouseover="s('shell_control_structure (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1466
<title>shell_control_structure (1 samples, 0.03%)</title><rect x="1048.5" y="401" width="0.4" height="15.0" fill="rgb(222,85,31)" rx="2" ry="2" />
1467
<text text-anchor="" x="1051.54" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1468
</g>
1469
<g class="func_g" onmouseover="s('internal_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1470
<title>internal_malloc (1 samples, 0.03%)</title><rect x="1032.8" y="321" width="0.4" height="15.0" fill="rgb(214,170,31)" rx="2" ry="2" />
1471
<text text-anchor="" x="1035.79" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1472
</g>
1473
<g class="func_g" onmouseover="s('__block_write_begin (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1474
<title>__block_write_begin (4 samples, 0.13%)</title><rect x="41.1" y="369" width="1.5" height="15.0" fill="rgb(229,213,1)" rx="2" ry="2" />
1475
<text text-anchor="" x="44.12" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1476
</g>
1477
<g class="func_g" onmouseover="s('jbd2_journal_stop (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1478
<title>jbd2_journal_stop (1 samples, 0.03%)</title><rect x="78.0" y="321" width="0.3" height="15.0" fill="rgb(213,205,53)" rx="2" ry="2" />
1479
<text text-anchor="" x="80.97" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1480
</g>
1481
<g class="func_g" onmouseover="s('signal_is_trapped (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1482
<title>signal_is_trapped (3 samples, 0.10%)</title><rect x="1053.5" y="417" width="1.1" height="15.0" fill="rgb(251,56,51)" rx="2" ry="2" />
1483
<text text-anchor="" x="1056.54" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1484
</g>
1485
<g class="func_g" onmouseover="s('internal_malloc (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
1486
<title>internal_malloc (13 samples, 0.44%)</title><rect x="793.1" y="273" width="4.7" height="15.0" fill="rgb(223,77,33)" rx="2" ry="2" />
1487
<text text-anchor="" x="796.10" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1488
</g>
1489
<g class="func_g" onmouseover="s('dispose_exec_redirects (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1490
<title>dispose_exec_redirects (3 samples, 0.10%)</title><rect x="407.1" y="369" width="1.1" height="15.0" fill="rgb(215,95,7)" rx="2" ry="2" />
1491
<text text-anchor="" x="410.10" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1492
</g>
1493
<g class="func_g" onmouseover="s('do_filp_open (113 samples, 3.81%)')" onmouseout="c()" onclick="zoom(this)">
1494
<title>do_filp_open (113 samples, 3.81%)</title><rect x="560.2" y="273" width="40.4" height="15.0" fill="rgb(233,59,9)" rx="2" ry="2" />
1495
<text text-anchor="" x="563.21" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_..</text>
1496
</g>
1497
<g class="func_g" onmouseover="s('copy_word_list (31 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
1498
<title>copy_word_list (31 samples, 1.05%)</title><rect x="788.8" y="353" width="11.1" height="15.0" fill="rgb(217,224,7)" rx="2" ry="2" />
1499
<text text-anchor="" x="791.81" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1500
</g>
1501
<g class="func_g" onmouseover="s('sh_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1502
<title>sh_malloc (1 samples, 0.03%)</title><rect x="277.6" y="321" width="0.4" height="15.0" fill="rgb(212,143,0)" rx="2" ry="2" />
1503
<text text-anchor="" x="280.59" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1504
</g>
1505
<g class="func_g" onmouseover="s('inode_permission (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1506
<title>inode_permission (2 samples, 0.07%)</title><rect x="747.7" y="113" width="0.7" height="15.0" fill="rgb(248,13,53)" rx="2" ry="2" />
1507
<text text-anchor="" x="750.67" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1508
</g>
1509
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
1510
<title>int_check_syscall_exit_work (14 samples, 0.47%)</title><rect x="388.9" y="305" width="5.0" height="15.0" fill="rgb(229,196,23)" rx="2" ry="2" />
1511
<text text-anchor="" x="391.85" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1512
</g>
1513
<g class="func_g" onmouseover="s('ext4_file_write (157 samples, 5.30%)')" onmouseout="c()" onclick="zoom(this)">
1514
<title>ext4_file_write (157 samples, 5.30%)</title><rect x="32.5" y="449" width="56.2" height="15.0" fill="rgb(226,134,41)" rx="2" ry="2" />
1515
<text text-anchor="" x="35.54" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ext4_..</text>
1516
</g>
1517
<g class="func_g" onmouseover="s('security_file_free (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
1518
<title>security_file_free (10 samples, 0.34%)</title><rect x="355.2" y="241" width="3.6" height="15.0" fill="rgb(219,186,38)" rx="2" ry="2" />
1519
<text text-anchor="" x="358.22" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1520
</g>
1521
<g class="func_g" onmouseover="s('sh_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1522
<title>sh_malloc (2 samples, 0.07%)</title><rect x="904.4" y="209" width="0.7" height="15.0" fill="rgb(245,184,13)" rx="2" ry="2" />
1523
<text text-anchor="" x="907.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1524
</g>
1525
<g class="func_g" onmouseover="s('__mnt_drop_write (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1526
<title>__mnt_drop_write (2 samples, 0.07%)</title><rect x="351.6" y="241" width="0.8" height="15.0" fill="rgb(252,89,37)" rx="2" ry="2" />
1527
<text text-anchor="" x="354.65" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1528
</g>
1529
<g class="func_g" onmouseover="s('fget_raw_light (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1530
<title>fget_raw_light (1 samples, 0.03%)</title><rect x="445.0" y="305" width="0.4" height="15.0" fill="rgb(254,209,27)" rx="2" ry="2" />
1531
<text text-anchor="" x="448.02" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1532
</g>
1533
<g class="func_g" onmouseover="s('__strcpy_ssse3 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1534
<title>__strcpy_ssse3 (1 samples, 0.03%)</title><rect x="1024.2" y="353" width="0.4" height="15.0" fill="rgb(243,149,49)" rx="2" ry="2" />
1535
<text text-anchor="" x="1027.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1536
</g>
1537
<g class="func_g" onmouseover="s('jbd2_journal_stop (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
1538
<title>jbd2_journal_stop (9 samples, 0.30%)</title><rect x="53.3" y="353" width="3.2" height="15.0" fill="rgb(218,200,38)" rx="2" ry="2" />
1539
<text text-anchor="" x="56.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1540
</g>
1541
<g class="func_g" onmouseover="s('sh_xmalloc (41 samples, 1.38%)')" onmouseout="c()" onclick="zoom(this)">
1542
<title>sh_xmalloc (41 samples, 1.38%)</title><rect x="948.7" y="321" width="14.7" height="15.0" fill="rgb(254,51,38)" rx="2" ry="2" />
1543
<text text-anchor="" x="951.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1544
</g>
1545
<g class="func_g" onmouseover="s('filename_lookup (32 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
1546
<title>filename_lookup (32 samples, 1.08%)</title><rect x="745.5" y="145" width="11.5" height="15.0" fill="rgb(249,194,22)" rx="2" ry="2" />
1547
<text text-anchor="" x="748.52" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1548
</g>
1549
<g class="func_g" onmouseover="s('__strchr_sse2 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1550
<title>__strchr_sse2 (1 samples, 0.03%)</title><rect x="264.7" y="385" width="0.4" height="15.0" fill="rgb(215,150,20)" rx="2" ry="2" />
1551
<text text-anchor="" x="267.71" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1552
</g>
1553
<g class="func_g" onmouseover="s('strmatch (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1554
<title>strmatch (1 samples, 0.03%)</title><rect x="635.0" y="321" width="0.3" height="15.0" fill="rgb(211,85,19)" rx="2" ry="2" />
1555
<text text-anchor="" x="637.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1556
</g>
1557
<g class="func_g" onmouseover="s('__mbrtowc (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
1558
<title>__mbrtowc (11 samples, 0.37%)</title><rect x="104.1" y="529" width="3.9" height="15.0" fill="rgb(212,106,0)" rx="2" ry="2" />
1559
<text text-anchor="" x="107.09" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1560
</g>
1561
<g class="func_g" onmouseover="s('putname (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1562
<title>putname (1 samples, 0.03%)</title><rect x="744.8" y="161" width="0.4" height="15.0" fill="rgb(253,92,31)" rx="2" ry="2" />
1563
<text text-anchor="" x="747.81" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1564
</g>
1565
<g class="func_g" onmouseover="s('strtoimax@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1566
<title>strtoimax@plt (1 samples, 0.03%)</title><rect x="708.0" y="337" width="0.3" height="15.0" fill="rgb(225,82,20)" rx="2" ry="2" />
1567
<text text-anchor="" x="710.96" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1568
</g>
1569
<g class="func_g" onmouseover="s('is_basic (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
1570
<title>is_basic (6 samples, 0.20%)</title><rect x="786.0" y="321" width="2.1" height="15.0" fill="rgb(231,135,5)" rx="2" ry="2" />
1571
<text text-anchor="" x="788.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1572
</g>
1573
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1574
<title>_raw_spin_unlock (1 samples, 0.03%)</title><rect x="514.8" y="273" width="0.3" height="15.0" fill="rgb(215,68,10)" rx="2" ry="2" />
1575
<text text-anchor="" x="517.78" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1576
</g>
1577
<g class="func_g" onmouseover="s('__GI___libc_open (205 samples, 6.92%)')" onmouseout="c()" onclick="zoom(this)">
1578
<title>__GI___libc_open (205 samples, 6.92%)</title><rect x="542.3" y="337" width="73.4" height="15.0" fill="rgb(250,79,31)" rx="2" ry="2" />
1579
<text text-anchor="" x="545.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__GI___l..</text>
1580
</g>
1581
<g class="func_g" onmouseover="s('dispose_fd_bitmap (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1582
<title>dispose_fd_bitmap (1 samples, 0.03%)</title><rect x="230.0" y="433" width="0.4" height="15.0" fill="rgb(218,147,32)" rx="2" ry="2" />
1583
<text text-anchor="" x="233.01" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1584
</g>
1585
<g class="func_g" onmouseover="s('__GI___libc_fcntl (76 samples, 2.56%)')" onmouseout="c()" onclick="zoom(this)">
1586
<title>__GI___libc_fcntl (76 samples, 2.56%)</title><rect x="182.8" y="545" width="27.2" height="15.0" fill="rgb(220,195,34)" rx="2" ry="2" />
1587
<text text-anchor="" x="185.79" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
1588
</g>
1589
<g class="func_g" onmouseover="s('do_dup2 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1590
<title>do_dup2 (1 samples, 0.03%)</title><rect x="363.5" y="305" width="0.3" height="15.0" fill="rgb(209,85,32)" rx="2" ry="2" />
1591
<text text-anchor="" x="366.45" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1592
</g>
1593
<g class="func_g" onmouseover="s('sh_free (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
1594
<title>sh_free (13 samples, 0.44%)</title><rect x="944.1" y="305" width="4.6" height="15.0" fill="rgb(209,38,52)" rx="2" ry="2" />
1595
<text text-anchor="" x="947.07" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1596
</g>
1597
<g class="func_g" onmouseover="s('make_word_list (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1598
<title>make_word_list (4 samples, 0.13%)</title><rect x="938.0" y="321" width="1.4" height="15.0" fill="rgb(218,173,36)" rx="2" ry="2" />
1599
<text text-anchor="" x="940.99" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1600
</g>
1601
<g class="func_g" onmouseover="s('security_file_fcntl (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1602
<title>security_file_fcntl (2 samples, 0.07%)</title><rect x="323.4" y="305" width="0.7" height="15.0" fill="rgb(211,61,51)" rx="2" ry="2" />
1603
<text text-anchor="" x="326.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1604
</g>
1605
<g class="func_g" onmouseover="s('inode_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1606
<title>inode_permission (1 samples, 0.03%)</title><rect x="594.2" y="241" width="0.4" height="15.0" fill="rgb(214,26,16)" rx="2" ry="2" />
1607
<text text-anchor="" x="597.20" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1608
</g>
1609
<g class="func_g" onmouseover="s('expand_word_list_internal (610 samples, 20.59%)')" onmouseout="c()" onclick="zoom(this)">
1610
<title>expand_word_list_internal (610 samples, 20.59%)</title><rect x="779.5" y="369" width="218.2" height="15.0" fill="rgb(250,43,28)" rx="2" ry="2" />
1611
<text text-anchor="" x="782.51" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >expand_word_list_internal</text>
1612
</g>
1613
<g class="func_g" onmouseover="s('sub_append_string (31 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
1614
<title>sub_append_string (31 samples, 1.05%)</title><rect x="976.6" y="321" width="11.1" height="15.0" fill="rgb(207,169,44)" rx="2" ry="2" />
1615
<text text-anchor="" x="979.63" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1616
</g>
1617
<g class="func_g" onmouseover="s('__strcmp_sse2 (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1618
<title>__strcmp_sse2 (3 samples, 0.10%)</title><rect x="1056.4" y="545" width="1.1" height="15.0" fill="rgb(236,10,20)" rx="2" ry="2" />
1619
<text text-anchor="" x="1059.41" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1620
</g>
1621
<g class="func_g" onmouseover="s('internal_malloc (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
1622
<title>internal_malloc (5 samples, 0.17%)</title><rect x="278.3" y="289" width="1.8" height="15.0" fill="rgb(252,80,2)" rx="2" ry="2" />
1623
<text text-anchor="" x="281.31" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1624
</g>
1625
<g class="func_g" onmouseover="s('alloc_word_desc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1626
<title>alloc_word_desc (1 samples, 0.03%)</title><rect x="636.4" y="289" width="0.4" height="15.0" fill="rgb(244,142,24)" rx="2" ry="2" />
1627
<text text-anchor="" x="639.41" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1628
</g>
1629
<g class="func_g" onmouseover="s('syscall_trace_enter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1630
<title>syscall_trace_enter (1 samples, 0.03%)</title><rect x="503.7" y="321" width="0.3" height="15.0" fill="rgb(225,86,19)" rx="2" ry="2" />
1631
<text text-anchor="" x="506.69" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1632
</g>
1633
<g class="func_g" onmouseover="s('radix_tree_lookup_element (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
1634
<title>radix_tree_lookup_element (7 samples, 0.24%)</title><rect x="49.0" y="305" width="2.5" height="15.0" fill="rgb(208,153,48)" rx="2" ry="2" />
1635
<text text-anchor="" x="51.99" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1636
</g>
1637
<g class="func_g" onmouseover="s('syscall_trace_enter (32 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
1638
<title>syscall_trace_enter (32 samples, 1.08%)</title><rect x="765.2" y="225" width="11.4" height="15.0" fill="rgb(215,150,35)" rx="2" ry="2" />
1639
<text text-anchor="" x="768.20" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1640
</g>
1641
<g class="func_g" onmouseover="s('__block_commit_write.isra.21 (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1642
<title>__block_commit_write.isra.21 (3 samples, 0.10%)</title><rect x="78.7" y="337" width="1.1" height="15.0" fill="rgb(240,90,33)" rx="2" ry="2" />
1643
<text text-anchor="" x="81.69" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1644
</g>
1645
<g class="func_g" onmouseover="s('internal_free (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
1646
<title>internal_free (7 samples, 0.24%)</title><rect x="287.3" y="305" width="2.5" height="15.0" fill="rgb(223,63,5)" rx="2" ry="2" />
1647
<text text-anchor="" x="290.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1648
</g>
1649
<g class="func_g" onmouseover="s('__d_lookup_rcu (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1650
<title>__d_lookup_rcu (2 samples, 0.07%)</title><rect x="143.8" y="353" width="0.7" height="15.0" fill="rgb(241,76,23)" rx="2" ry="2" />
1651
<text text-anchor="" x="146.80" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1652
</g>
1653
<g class="func_g" onmouseover="s('builtin_address_internal (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
1654
<title>builtin_address_internal (7 samples, 0.24%)</title><rect x="998.8" y="369" width="2.5" height="15.0" fill="rgb(230,62,7)" rx="2" ry="2" />
1655
<text text-anchor="" x="1001.81" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1656
</g>
1657
<g class="func_g" onmouseover="s('__sb_start_write (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1658
<title>__sb_start_write (2 samples, 0.07%)</title><rect x="572.0" y="209" width="0.7" height="15.0" fill="rgb(207,147,34)" rx="2" ry="2" />
1659
<text text-anchor="" x="575.02" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1660
</g>
1661
<g class="func_g" onmouseover="s('getname_flags (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1662
<title>getname_flags (1 samples, 0.03%)</title><rect x="138.4" y="433" width="0.4" height="15.0" fill="rgb(250,46,31)" rx="2" ry="2" />
1663
<text text-anchor="" x="141.43" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1664
</g>
1665
<g class="func_g" onmouseover="s('sh_xmalloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1666
<title>sh_xmalloc (1 samples, 0.03%)</title><rect x="643.2" y="257" width="0.4" height="15.0" fill="rgb(220,96,42)" rx="2" ry="2" />
1667
<text text-anchor="" x="646.21" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1668
</g>
1669
<g class="func_g" onmouseover="s('dispose_used_env_vars (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1670
<title>dispose_used_env_vars (2 samples, 0.07%)</title><rect x="242.5" y="417" width="0.8" height="15.0" fill="rgb(228,198,10)" rx="2" ry="2" />
1671
<text text-anchor="" x="245.53" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1672
</g>
1673
<g class="func_g" onmouseover="s('check_events (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
1674
<title>check_events (18 samples, 0.61%)</title><rect x="445.4" y="305" width="6.4" height="15.0" fill="rgb(206,118,28)" rx="2" ry="2" />
1675
<text text-anchor="" x="448.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1676
</g>
1677
<g class="func_g" onmouseover="s('__fsnotify_parent (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1678
<title>__fsnotify_parent (1 samples, 0.03%)</title><rect x="25.0" y="481" width="0.4" height="15.0" fill="rgb(214,42,23)" rx="2" ry="2" />
1679
<text text-anchor="" x="28.03" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1680
</g>
1681
<g class="func_g" onmouseover="s('list_append (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1682
<title>list_append (3 samples, 0.10%)</title><rect x="987.7" y="337" width="1.1" height="15.0" fill="rgb(209,103,44)" rx="2" ry="2" />
1683
<text text-anchor="" x="990.72" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1684
</g>
1685
<g class="func_g" onmouseover="s('is_basic (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1686
<title>is_basic (2 samples, 0.07%)</title><rect x="652.5" y="257" width="0.7" height="15.0" fill="rgb(209,57,33)" rx="2" ry="2" />
1687
<text text-anchor="" x="655.51" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1688
</g>
1689
<g class="func_g" onmouseover="s('ext4_release_file (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1690
<title>ext4_release_file (1 samples, 0.03%)</title><rect x="360.2" y="257" width="0.4" height="15.0" fill="rgb(242,126,15)" rx="2" ry="2" />
1691
<text text-anchor="" x="363.23" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1692
</g>
1693
<g class="func_g" onmouseover="s('unary_operator (148 samples, 4.99%)')" onmouseout="c()" onclick="zoom(this)">
1694
<title>unary_operator (148 samples, 4.99%)</title><rect x="723.7" y="289" width="52.9" height="15.0" fill="rgb(244,185,44)" rx="2" ry="2" />
1695
<text text-anchor="" x="726.70" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >unary..</text>
1696
</g>
1697
<g class="func_g" onmouseover="s('hash_lookup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1698
<title>hash_lookup (1 samples, 0.03%)</title><rect x="709.0" y="257" width="0.4" height="15.0" fill="rgb(234,220,17)" rx="2" ry="2" />
1699
<text text-anchor="" x="712.03" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1700
</g>
1701
<g class="func_g" onmouseover="s('int_very_careful (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1702
<title>int_very_careful (1 samples, 0.03%)</title><rect x="206.8" y="529" width="0.3" height="15.0" fill="rgb(218,52,39)" rx="2" ry="2" />
1703
<text text-anchor="" x="209.76" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1704
</g>
1705
<g class="func_g" onmouseover="s('sh_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1706
<title>sh_free (3 samples, 0.10%)</title><rect x="1035.3" y="337" width="1.1" height="15.0" fill="rgb(243,51,50)" rx="2" ry="2" />
1707
<text text-anchor="" x="1038.30" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1708
</g>
1709
<g class="func_g" onmouseover="s('internal_free (16 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
1710
<title>internal_free (16 samples, 0.54%)</title><rect x="297.6" y="321" width="5.8" height="15.0" fill="rgb(226,83,24)" rx="2" ry="2" />
1711
<text text-anchor="" x="300.63" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1712
</g>
1713
<g class="func_g" onmouseover="s('__GI___libc_open (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
1714
<title>__GI___libc_open (12 samples, 0.40%)</title><rect x="210.0" y="545" width="4.3" height="15.0" fill="rgb(250,146,28)" rx="2" ry="2" />
1715
<text text-anchor="" x="212.98" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1716
</g>
1717
<g class="func_g" onmouseover="s('inode_permission (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1718
<title>inode_permission (2 samples, 0.07%)</title><rect x="139.5" y="385" width="0.7" height="15.0" fill="rgb(229,125,42)" rx="2" ry="2" />
1719
<text text-anchor="" x="142.50" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1720
</g>
1721
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
1722
<title>int_check_syscall_exit_work (12 samples, 0.40%)</title><rect x="415.0" y="337" width="4.3" height="15.0" fill="rgb(209,128,48)" rx="2" ry="2" />
1723
<text text-anchor="" x="417.97" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1724
</g>
1725
<g class="func_g" onmouseover="s('hash_search (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
1726
<title>hash_search (8 samples, 0.27%)</title><rect x="664.7" y="241" width="2.8" height="15.0" fill="rgb(230,60,28)" rx="2" ry="2" />
1727
<text text-anchor="" x="667.67" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1728
</g>
1729
<g class="func_g" onmouseover="s('strlen (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1730
<title>strlen (1 samples, 0.03%)</title><rect x="637.1" y="305" width="0.4" height="15.0" fill="rgb(227,156,5)" rx="2" ry="2" />
1731
<text text-anchor="" x="640.13" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1732
</g>
1733
<g class="func_g" onmouseover="s('reset_internal_getopt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1734
<title>reset_internal_getopt (1 samples, 0.03%)</title><rect x="712.6" y="353" width="0.4" height="15.0" fill="rgb(234,123,44)" rx="2" ry="2" />
1735
<text text-anchor="" x="715.61" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1736
</g>
1737
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (19 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
1738
<title>xen_hypercall_xen_version (19 samples, 0.64%)</title><rect x="608.5" y="273" width="6.8" height="15.0" fill="rgb(213,165,23)" rx="2" ry="2" />
1739
<text text-anchor="" x="611.51" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1740
</g>
1741
<g class="func_g" onmouseover="s('check_events (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
1742
<title>check_events (15 samples, 0.51%)</title><rect x="17.9" y="481" width="5.3" height="15.0" fill="rgb(230,39,30)" rx="2" ry="2" />
1743
<text text-anchor="" x="20.87" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1744
</g>
1745
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
1746
<title>xen_hypercall_xen_version (15 samples, 0.51%)</title><rect x="328.4" y="273" width="5.4" height="15.0" fill="rgb(233,48,22)" rx="2" ry="2" />
1747
<text text-anchor="" x="331.39" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1748
</g>
1749
<g class="func_g" onmouseover="s('expand_word_internal (142 samples, 4.79%)')" onmouseout="c()" onclick="zoom(this)">
1750
<title>expand_word_internal (142 samples, 4.79%)</title><rect x="878.6" y="321" width="50.8" height="15.0" fill="rgb(215,70,49)" rx="2" ry="2" />
1751
<text text-anchor="" x="881.61" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >expan..</text>
1752
</g>
1753
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1754
<title>sh_xfree (1 samples, 0.03%)</title><rect x="1037.1" y="369" width="0.3" height="15.0" fill="rgb(222,178,51)" rx="2" ry="2" />
1755
<text text-anchor="" x="1040.09" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1756
</g>
1757
<g class="func_g" onmouseover="s('without_interrupts (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
1758
<title>without_interrupts (5 samples, 0.17%)</title><rect x="310.1" y="337" width="1.8" height="15.0" fill="rgb(242,198,33)" rx="2" ry="2" />
1759
<text text-anchor="" x="313.15" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1760
</g>
1761
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (36 samples, 1.21%)')" onmouseout="c()" onclick="zoom(this)">
1762
<title>int_check_syscall_exit_work (36 samples, 1.21%)</title><rect x="490.8" y="321" width="12.9" height="15.0" fill="rgb(244,129,50)" rx="2" ry="2" />
1763
<text text-anchor="" x="493.81" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1764
</g>
1765
<g class="func_g" onmouseover="s('chkexport (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1766
<title>chkexport (2 samples, 0.07%)</title><rect x="699.7" y="337" width="0.7" height="15.0" fill="rgb(206,59,51)" rx="2" ry="2" />
1767
<text text-anchor="" x="702.73" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1768
</g>
1769
<g class="func_g" onmouseover="s('tracesys (106 samples, 3.58%)')" onmouseout="c()" onclick="zoom(this)">
1770
<title>tracesys (106 samples, 3.58%)</title><rect x="504.4" y="321" width="37.9" height="15.0" fill="rgb(233,104,24)" rx="2" ry="2" />
1771
<text text-anchor="" x="507.40" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tra..</text>
1772
</g>
1773
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1774
<title>sh_free (1 samples, 0.03%)</title><rect x="647.5" y="225" width="0.4" height="15.0" fill="rgb(251,163,14)" rx="2" ry="2" />
1775
<text text-anchor="" x="650.50" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1776
</g>
1777
<g class="func_g" onmouseover="s('putname (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1778
<title>putname (3 samples, 0.10%)</title><rect x="606.7" y="273" width="1.1" height="15.0" fill="rgb(241,71,28)" rx="2" ry="2" />
1779
<text text-anchor="" x="609.72" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1780
</g>
1781
<g class="func_g" onmouseover="s('internal_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1782
<title>internal_free (1 samples, 0.03%)</title><rect x="647.5" y="209" width="0.4" height="15.0" fill="rgb(224,196,25)" rx="2" ry="2" />
1783
<text text-anchor="" x="650.50" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1784
</g>
1785
<g class="func_g" onmouseover="s('ext4_es_lookup_extent (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1786
<title>ext4_es_lookup_extent (1 samples, 0.03%)</title><rect x="42.2" y="337" width="0.4" height="15.0" fill="rgb(240,127,34)" rx="2" ry="2" />
1787
<text text-anchor="" x="45.20" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1788
</g>
1789
<g class="func_g" onmouseover="s('check_events (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
1790
<title>check_events (10 samples, 0.34%)</title><rect x="457.5" y="305" width="3.6" height="15.0" fill="rgb(244,208,43)" rx="2" ry="2" />
1791
<text text-anchor="" x="460.54" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1792
</g>
1793
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1794
<title>sh_xfree (1 samples, 0.03%)</title><rect x="312.3" y="337" width="0.4" height="15.0" fill="rgb(219,225,18)" rx="2" ry="2" />
1795
<text text-anchor="" x="315.29" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1796
</g>
1797
<g class="func_g" onmouseover="s('__sb_end_write (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1798
<title>__sb_end_write (1 samples, 0.03%)</title><rect x="571.3" y="209" width="0.4" height="15.0" fill="rgb(253,107,31)" rx="2" ry="2" />
1799
<text text-anchor="" x="574.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1800
</g>
1801
<g class="func_g" onmouseover="s('without_interrupts (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
1802
<title>without_interrupts (8 samples, 0.27%)</title><rect x="404.2" y="353" width="2.9" height="15.0" fill="rgb(238,116,10)" rx="2" ry="2" />
1803
<text text-anchor="" x="407.24" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1804
</g>
1805
<g class="func_g" onmouseover="s('apparmor_file_alloc_security (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1806
<title>apparmor_file_alloc_security (4 samples, 0.13%)</title><rect x="592.8" y="209" width="1.4" height="15.0" fill="rgb(249,40,53)" rx="2" ry="2" />
1807
<text text-anchor="" x="595.77" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1808
</g>
1809
<g class="func_g" onmouseover="s('path_openat (109 samples, 3.68%)')" onmouseout="c()" onclick="zoom(this)">
1810
<title>path_openat (109 samples, 3.68%)</title><rect x="561.6" y="257" width="39.0" height="15.0" fill="rgb(221,93,9)" rx="2" ry="2" />
1811
<text text-anchor="" x="564.64" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >pat..</text>
1812
</g>
1813
<g class="func_g" onmouseover="s('_IO_do_write@@GLIBC_2.2.5 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1814
<title>_IO_do_write@@GLIBC_2.2.5 (1 samples, 0.03%)</title><rect x="170.3" y="545" width="0.3" height="15.0" fill="rgb(224,84,4)" rx="2" ry="2" />
1815
<text text-anchor="" x="173.27" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1816
</g>
1817
<g class="func_g" onmouseover="s('memcg_check_events (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1818
<title>memcg_check_events (1 samples, 0.03%)</title><rect x="47.6" y="273" width="0.3" height="15.0" fill="rgb(242,203,24)" rx="2" ry="2" />
1819
<text text-anchor="" x="50.56" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1820
</g>
1821
<g class="func_g" onmouseover="s('internal_malloc (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
1822
<title>internal_malloc (5 samples, 0.17%)</title><rect x="269.0" y="289" width="1.8" height="15.0" fill="rgb(218,48,38)" rx="2" ry="2" />
1823
<text text-anchor="" x="272.01" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1824
</g>
1825
<g class="func_g" onmouseover="s('find_get_page (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1826
<title>find_get_page (2 samples, 0.07%)</title><rect x="47.9" y="353" width="0.7" height="15.0" fill="rgb(251,9,0)" rx="2" ry="2" />
1827
<text text-anchor="" x="50.92" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1828
</g>
1829
<g class="func_g" onmouseover="s('unquoted_glob_pattern_p (24 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
1830
<title>unquoted_glob_pattern_p (24 samples, 0.81%)</title><rect x="821.0" y="337" width="8.6" height="15.0" fill="rgb(229,90,51)" rx="2" ry="2" />
1831
<text text-anchor="" x="824.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1832
</g>
1833
<g class="func_g" onmouseover="s('dequote_string (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
1834
<title>dequote_string (14 samples, 0.47%)</title><rect x="869.7" y="305" width="5.0" height="15.0" fill="rgb(209,144,54)" rx="2" ry="2" />
1835
<text text-anchor="" x="872.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1836
</g>
1837
<g class="func_g" onmouseover="s('internal_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1838
<title>internal_malloc (1 samples, 0.03%)</title><rect x="942.3" y="273" width="0.3" height="15.0" fill="rgb(244,74,13)" rx="2" ry="2" />
1839
<text text-anchor="" x="945.28" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1840
</g>
1841
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (23 samples, 0.78%)')" onmouseout="c()" onclick="zoom(this)">
1842
<title>xen_hypercall_xen_version (23 samples, 0.78%)</title><rect x="94.1" y="465" width="8.2" height="15.0" fill="rgb(235,116,17)" rx="2" ry="2" />
1843
<text text-anchor="" x="97.07" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1844
</g>
1845
<g class="func_g" onmouseover="s('cprintf (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1846
<title>cprintf (2 samples, 0.07%)</title><rect x="1017.1" y="369" width="0.7" height="15.0" fill="rgb(250,48,32)" rx="2" ry="2" />
1847
<text text-anchor="" x="1020.05" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1848
</g>
1849
<g class="func_g" onmouseover="s('dput (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1850
<title>dput (2 samples, 0.07%)</title><rect x="743.0" y="177" width="0.7" height="15.0" fill="rgb(250,144,39)" rx="2" ry="2" />
1851
<text text-anchor="" x="746.02" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1852
</g>
1853
<g class="func_g" onmouseover="s('may_open (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1854
<title>may_open (3 samples, 0.10%)</title><rect x="569.9" y="225" width="1.0" height="15.0" fill="rgb(217,31,21)" rx="2" ry="2" />
1855
<text text-anchor="" x="572.87" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1856
</g>
1857
<g class="func_g" onmouseover="s('dequote_string (25 samples, 0.84%)')" onmouseout="c()" onclick="zoom(this)">
1858
<title>dequote_string (25 samples, 0.84%)</title><rect x="806.0" y="337" width="8.9" height="15.0" fill="rgb(244,229,52)" rx="2" ry="2" />
1859
<text text-anchor="" x="808.98" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1860
</g>
1861
<g class="func_g" onmouseover="s('kmem_cache_alloc (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
1862
<title>kmem_cache_alloc (10 samples, 0.34%)</title><rect x="588.5" y="225" width="3.6" height="15.0" fill="rgb(216,144,51)" rx="2" ry="2" />
1863
<text text-anchor="" x="591.47" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1864
</g>
1865
<g class="func_g" onmouseover="s('ext4_getattr (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1866
<title>ext4_getattr (4 samples, 0.13%)</title><rect x="154.2" y="417" width="1.4" height="15.0" fill="rgb(215,229,54)" rx="2" ry="2" />
1867
<text text-anchor="" x="157.17" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1868
</g>
1869
<g class="func_g" onmouseover="s('__ctype_get_mb_cur_max (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
1870
<title>__ctype_get_mb_cur_max (11 samples, 0.37%)</title><rect x="861.8" y="321" width="3.9" height="15.0" fill="rgb(232,138,35)" rx="2" ry="2" />
1871
<text text-anchor="" x="864.79" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1872
</g>
1873
<g class="func_g" onmouseover="s('sh_xmalloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1874
<title>sh_xmalloc (1 samples, 0.03%)</title><rect x="906.9" y="273" width="0.3" height="15.0" fill="rgb(221,98,39)" rx="2" ry="2" />
1875
<text text-anchor="" x="909.87" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1876
</g>
1877
<g class="func_g" onmouseover="s('ext4_get_group_desc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1878
<title>ext4_get_group_desc (1 samples, 0.03%)</title><rect x="76.2" y="273" width="0.3" height="15.0" fill="rgb(227,197,21)" rx="2" ry="2" />
1879
<text text-anchor="" x="79.18" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1880
</g>
1881
<g class="func_g" onmouseover="s('check_events (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1882
<title>check_events (3 samples, 0.10%)</title><rect x="341.3" y="289" width="1.0" height="15.0" fill="rgb(243,55,12)" rx="2" ry="2" />
1883
<text text-anchor="" x="344.27" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1884
</g>
1885
<g class="func_g" onmouseover="s('context_tracking_user_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1886
<title>context_tracking_user_exit (1 samples, 0.03%)</title><rect x="379.9" y="289" width="0.4" height="15.0" fill="rgb(252,72,51)" rx="2" ry="2" />
1887
<text text-anchor="" x="382.91" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1888
</g>
1889
<g class="func_g" onmouseover="s('syscall_trace_leave (36 samples, 1.21%)')" onmouseout="c()" onclick="zoom(this)">
1890
<title>syscall_trace_leave (36 samples, 1.21%)</title><rect x="490.8" y="305" width="12.9" height="15.0" fill="rgb(230,94,42)" rx="2" ry="2" />
1891
<text text-anchor="" x="493.81" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1892
</g>
1893
<g class="func_g" onmouseover="s('common_perm (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1894
<title>common_perm (1 samples, 0.03%)</title><rect x="764.5" y="113" width="0.3" height="15.0" fill="rgb(224,140,29)" rx="2" ry="2" />
1895
<text text-anchor="" x="767.49" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1896
</g>
1897
<g class="func_g" onmouseover="s('internal_malloc (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
1898
<title>internal_malloc (4 samples, 0.13%)</title><rect x="235.4" y="321" width="1.4" height="15.0" fill="rgb(254,147,30)" rx="2" ry="2" />
1899
<text text-anchor="" x="238.38" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1900
</g>
1901
<g class="func_g" onmouseover="s('syscall_trace_enter (16 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
1902
<title>syscall_trace_enter (16 samples, 0.54%)</title><rect x="396.7" y="289" width="5.7" height="15.0" fill="rgb(231,49,15)" rx="2" ry="2" />
1903
<text text-anchor="" x="399.72" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1904
</g>
1905
<g class="func_g" onmouseover="s('terminate_walk (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1906
<title>terminate_walk (1 samples, 0.03%)</title><rect x="573.4" y="225" width="0.4" height="15.0" fill="rgb(233,148,18)" rx="2" ry="2" />
1907
<text text-anchor="" x="576.45" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1908
</g>
1909
<g class="func_g" onmouseover="s('kmem_cache_alloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1910
<title>kmem_cache_alloc (1 samples, 0.03%)</title><rect x="41.8" y="289" width="0.4" height="15.0" fill="rgb(220,42,40)" rx="2" ry="2" />
1911
<text text-anchor="" x="44.84" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1912
</g>
1913
<g class="func_g" onmouseover="s('internal_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1914
<title>internal_free (2 samples, 0.07%)</title><rect x="240.7" y="385" width="0.8" height="15.0" fill="rgb(253,35,6)" rx="2" ry="2" />
1915
<text text-anchor="" x="243.75" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1916
</g>
1917
<g class="func_g" onmouseover="s('execute_command (2,311 samples, 78.00%)')" onmouseout="c()" onclick="zoom(this)">
1918
<title>execute_command (2,311 samples, 78.00%)</title><rect x="229.3" y="497" width="826.7" height="15.0" fill="rgb(229,63,36)" rx="2" ry="2" />
1919
<text text-anchor="" x="232.30" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >execute_command</text>
1920
</g>
1921
<g class="func_g" onmouseover="s('__percpu_counter_add (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1922
<title>__percpu_counter_add (1 samples, 0.03%)</title><rect x="561.6" y="241" width="0.4" height="15.0" fill="rgb(205,178,30)" rx="2" ry="2" />
1923
<text text-anchor="" x="564.64" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1924
</g>
1925
<g class="func_g" onmouseover="s('sh_xfree (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
1926
<title>sh_xfree (18 samples, 0.61%)</title><rect x="981.3" y="305" width="6.4" height="15.0" fill="rgb(233,91,26)" rx="2" ry="2" />
1927
<text text-anchor="" x="984.28" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1928
</g>
1929
<g class="func_g" onmouseover="s('strlen (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1930
<title>strlen (1 samples, 0.03%)</title><rect x="714.8" y="353" width="0.3" height="15.0" fill="rgb(236,157,44)" rx="2" ry="2" />
1931
<text text-anchor="" x="717.76" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1932
</g>
1933
<g class="func_g" onmouseover="s('sh_malloc (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
1934
<title>sh_malloc (12 samples, 0.40%)</title><rect x="933.7" y="289" width="4.3" height="15.0" fill="rgb(224,183,45)" rx="2" ry="2" />
1935
<text text-anchor="" x="936.70" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1936
</g>
1937
<g class="func_g" onmouseover="s('filp_close (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1938
<title>filp_close (1 samples, 0.03%)</title><rect x="466.1" y="305" width="0.4" height="15.0" fill="rgb(209,74,53)" rx="2" ry="2" />
1939
<text text-anchor="" x="469.13" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1940
</g>
1941
<g class="func_g" onmouseover="s('two_arguments (151 samples, 5.10%)')" onmouseout="c()" onclick="zoom(this)">
1942
<title>two_arguments (151 samples, 5.10%)</title><rect x="722.6" y="305" width="54.0" height="15.0" fill="rgb(236,1,47)" rx="2" ry="2" />
1943
<text text-anchor="" x="725.63" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >two_a..</text>
1944
</g>
1945
<g class="func_g" onmouseover="s('kmem_cache_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1946
<title>kmem_cache_free (3 samples, 0.10%)</title><rect x="606.7" y="241" width="1.1" height="15.0" fill="rgb(205,212,52)" rx="2" ry="2" />
1947
<text text-anchor="" x="609.72" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1948
</g>
1949
<g class="func_g" onmouseover="s('__gconv_transform_utf8_internal (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
1950
<title>__gconv_transform_utf8_internal (5 samples, 0.17%)</title><rect x="102.3" y="529" width="1.8" height="15.0" fill="rgb(209,124,19)" rx="2" ry="2" />
1951
<text text-anchor="" x="105.30" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1952
</g>
1953
<g class="func_g" onmouseover="s('xen_save_fl_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1954
<title>xen_save_fl_direct (1 samples, 0.03%)</title><rect x="342.7" y="289" width="0.4" height="15.0" fill="rgb(215,36,16)" rx="2" ry="2" />
1955
<text text-anchor="" x="345.70" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1956
</g>
1957
<g class="func_g" onmouseover="s('_IO_file_write@@GLIBC_2.2.5 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1958
<title>_IO_file_write@@GLIBC_2.2.5 (1 samples, 0.03%)</title><rect x="12.5" y="529" width="0.4" height="15.0" fill="rgb(232,174,37)" rx="2" ry="2" />
1959
<text text-anchor="" x="15.50" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1960
</g>
1961
<g class="func_g" onmouseover="s('sh_free (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
1962
<title>sh_free (14 samples, 0.47%)</title><rect x="924.0" y="273" width="5.0" height="15.0" fill="rgb(206,158,19)" rx="2" ry="2" />
1963
<text text-anchor="" x="927.04" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1964
</g>
1965
<g class="func_g" onmouseover="s('apparmor_file_permission (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
1966
<title>apparmor_file_permission (2 samples, 0.07%)</title><rect x="91.9" y="433" width="0.7" height="15.0" fill="rgb(233,18,24)" rx="2" ry="2" />
1967
<text text-anchor="" x="94.92" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1968
</g>
1969
<g class="func_g" onmouseover="s('the_printed_command_resize (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1970
<title>the_printed_command_resize (1 samples, 0.03%)</title><rect x="1021.7" y="337" width="0.4" height="15.0" fill="rgb(211,204,16)" rx="2" ry="2" />
1971
<text text-anchor="" x="1024.70" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1972
</g>
1973
<g class="func_g" onmouseover="s('filp_close (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1974
<title>filp_close (3 samples, 0.10%)</title><rect x="464.3" y="289" width="1.1" height="15.0" fill="rgb(240,8,43)" rx="2" ry="2" />
1975
<text text-anchor="" x="467.34" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1976
</g>
1977
<g class="func_g" onmouseover="s('internal_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
1978
<title>internal_free (3 samples, 0.10%)</title><rect x="706.5" y="305" width="1.1" height="15.0" fill="rgb(224,194,52)" rx="2" ry="2" />
1979
<text text-anchor="" x="709.53" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1980
</g>
1981
<g class="func_g" onmouseover="s('kmem_cache_alloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1982
<title>kmem_cache_alloc (1 samples, 0.03%)</title><rect x="761.3" y="145" width="0.3" height="15.0" fill="rgb(236,156,50)" rx="2" ry="2" />
1983
<text text-anchor="" x="764.27" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1984
</g>
1985
<g class="func_g" onmouseover="s('xtrace_fdchk (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1986
<title>xtrace_fdchk (1 samples, 0.03%)</title><rect x="402.8" y="337" width="0.4" height="15.0" fill="rgb(212,218,20)" rx="2" ry="2" />
1987
<text text-anchor="" x="405.80" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1988
</g>
1989
<g class="func_g" onmouseover="s('cleanup_redirects (256 samples, 8.64%)')" onmouseout="c()" onclick="zoom(this)">
1990
<title>cleanup_redirects (256 samples, 8.64%)</title><rect x="311.9" y="369" width="91.6" height="15.0" fill="rgb(226,104,42)" rx="2" ry="2" />
1991
<text text-anchor="" x="314.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >cleanup_re..</text>
1992
</g>
1993
<g class="func_g" onmouseover="s('_cond_resched (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
1994
<title>_cond_resched (1 samples, 0.03%)</title><rect x="343.1" y="289" width="0.3" height="15.0" fill="rgb(254,162,10)" rx="2" ry="2" />
1995
<text text-anchor="" x="346.06" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
1996
</g>
1997
<g class="func_g" onmouseover="s('ext4_file_open (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
1998
<title>ext4_file_open (9 samples, 0.30%)</title><rect x="575.6" y="193" width="3.2" height="15.0" fill="rgb(222,55,15)" rx="2" ry="2" />
1999
<text text-anchor="" x="578.60" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2000
</g>
2001
<g class="func_g" onmouseover="s('do_get_write_access (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2002
<title>do_get_write_access (5 samples, 0.17%)</title><rect x="68.7" y="257" width="1.8" height="15.0" fill="rgb(222,85,7)" rx="2" ry="2" />
2003
<text text-anchor="" x="71.67" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2004
</g>
2005
<g class="func_g" onmouseover="s('map_id_up (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2006
<title>map_id_up (2 samples, 0.07%)</title><rect x="739.8" y="177" width="0.7" height="15.0" fill="rgb(242,218,23)" rx="2" ry="2" />
2007
<text text-anchor="" x="742.80" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2008
</g>
2009
<g class="func_g" onmouseover="s('execute_command (2,305 samples, 77.79%)')" onmouseout="c()" onclick="zoom(this)">
2010
<title>execute_command (2,305 samples, 77.79%)</title><rect x="230.4" y="433" width="824.6" height="15.0" fill="rgb(230,18,46)" rx="2" ry="2" />
2011
<text text-anchor="" x="233.37" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >execute_command</text>
2012
</g>
2013
<g class="func_g" onmouseover="s('__inode_permission (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2014
<title>__inode_permission (5 samples, 0.17%)</title><rect x="596.0" y="209" width="1.8" height="15.0" fill="rgb(216,35,38)" rx="2" ry="2" />
2015
<text text-anchor="" x="598.99" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2016
</g>
2017
<g class="func_g" onmouseover="s('do_sys_open (136 samples, 4.59%)')" onmouseout="c()" onclick="zoom(this)">
2018
<title>do_sys_open (136 samples, 4.59%)</title><rect x="559.1" y="289" width="48.7" height="15.0" fill="rgb(216,126,18)" rx="2" ry="2" />
2019
<text text-anchor="" x="562.14" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_s..</text>
2020
</g>
2021
<g class="func_g" onmouseover="s('path_init (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
2022
<title>path_init (7 samples, 0.24%)</title><rect x="754.5" y="113" width="2.5" height="15.0" fill="rgb(230,12,27)" rx="2" ry="2" />
2023
<text text-anchor="" x="757.47" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2024
</g>
2025
<g class="func_g" onmouseover="s('sh_malloc (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
2026
<title>sh_malloc (9 samples, 0.30%)</title><rect x="811.7" y="305" width="3.2" height="15.0" fill="rgb(253,225,42)" rx="2" ry="2" />
2027
<text text-anchor="" x="814.71" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2028
</g>
2029
<g class="func_g" onmouseover="s('get_close_on_exec (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2030
<title>get_close_on_exec (1 samples, 0.03%)</title><rect x="441.1" y="321" width="0.3" height="15.0" fill="rgb(223,61,51)" rx="2" ry="2" />
2031
<text text-anchor="" x="444.08" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2032
</g>
2033
<g class="func_g" onmouseover="s('xstrmatch (21 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
2034
<title>xstrmatch (21 samples, 0.71%)</title><rect x="626.8" y="289" width="7.5" height="15.0" fill="rgb(220,51,7)" rx="2" ry="2" />
2035
<text text-anchor="" x="629.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2036
</g>
2037
<g class="func_g" onmouseover="s('make_word_list (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2038
<title>make_word_list (1 samples, 0.03%)</title><rect x="643.6" y="273" width="0.3" height="15.0" fill="rgb(231,0,38)" rx="2" ry="2" />
2039
<text text-anchor="" x="646.57" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2040
</g>
2041
<g class="func_g" onmouseover="s('sh_xfree (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2042
<title>sh_xfree (4 samples, 0.13%)</title><rect x="238.6" y="369" width="1.4" height="15.0" fill="rgb(230,227,27)" rx="2" ry="2" />
2043
<text text-anchor="" x="241.60" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2044
</g>
2045
<g class="func_g" onmouseover="s('context_tracking_user_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2046
<title>context_tracking_user_exit (1 samples, 0.03%)</title><rect x="133.8" y="497" width="0.3" height="15.0" fill="rgb(242,140,52)" rx="2" ry="2" />
2047
<text text-anchor="" x="136.78" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2048
</g>
2049
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (21 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
2050
<title>xen_hypercall_xen_version (21 samples, 0.71%)</title><rect x="422.1" y="289" width="7.5" height="15.0" fill="rgb(253,225,22)" rx="2" ry="2" />
2051
<text text-anchor="" x="425.12" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2052
</g>
2053
<g class="func_g" onmouseover="s('jbd2_journal_cancel_revoke (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2054
<title>jbd2_journal_cancel_revoke (2 samples, 0.07%)</title><rect x="71.5" y="257" width="0.7" height="15.0" fill="rgb(254,188,53)" rx="2" ry="2" />
2055
<text text-anchor="" x="74.53" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2056
</g>
2057
<g class="func_g" onmouseover="s('cprintf (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2058
<title>cprintf (2 samples, 0.07%)</title><rect x="1020.3" y="337" width="0.7" height="15.0" fill="rgb(234,184,50)" rx="2" ry="2" />
2059
<text text-anchor="" x="1023.27" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2060
</g>
2061
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
2062
<title>xen_hypercall_xen_version (13 samples, 0.44%)</title><rect x="214.3" y="513" width="4.6" height="15.0" fill="rgb(209,218,37)" rx="2" ry="2" />
2063
<text text-anchor="" x="217.27" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2064
</g>
2065
<g class="func_g" onmouseover="s('tracesys (111 samples, 3.75%)')" onmouseout="c()" onclick="zoom(this)">
2066
<title>tracesys (111 samples, 3.75%)</title><rect x="736.9" y="241" width="39.7" height="15.0" fill="rgb(210,163,32)" rx="2" ry="2" />
2067
<text text-anchor="" x="739.94" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tra..</text>
2068
</g>
2069
<g class="func_g" onmouseover="s('make_redirection (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
2070
<title>make_redirection (9 samples, 0.30%)</title><rect x="620.7" y="321" width="3.2" height="15.0" fill="rgb(214,128,46)" rx="2" ry="2" />
2071
<text text-anchor="" x="623.67" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2072
</g>
2073
<g class="func_g" onmouseover="s('syscall_trace_leave (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
2074
<title>syscall_trace_leave (15 samples, 0.51%)</title><rect x="17.9" y="497" width="5.3" height="15.0" fill="rgb(215,204,39)" rx="2" ry="2" />
2075
<text text-anchor="" x="20.87" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2076
</g>
2077
<g class="func_g" onmouseover="s('kfree (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2078
<title>kfree (2 samples, 0.07%)</title><rect x="355.6" y="209" width="0.7" height="15.0" fill="rgb(247,127,3)" rx="2" ry="2" />
2079
<text text-anchor="" x="358.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2080
</g>
2081
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (16 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
2082
<title>xen_hypercall_xen_version (16 samples, 0.54%)</title><rect x="396.7" y="257" width="5.7" height="15.0" fill="rgb(210,161,18)" rx="2" ry="2" />
2083
<text text-anchor="" x="399.72" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2084
</g>
2085
<g class="func_g" onmouseover="s('jbd2_journal_dirty_metadata (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2086
<title>jbd2_journal_dirty_metadata (4 samples, 0.13%)</title><rect x="65.8" y="273" width="1.4" height="15.0" fill="rgb(220,52,26)" rx="2" ry="2" />
2087
<text text-anchor="" x="68.81" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2088
</g>
2089
<g class="func_g" onmouseover="s('sys_close (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
2090
<title>sys_close (8 samples, 0.27%)</title><rect x="393.9" y="289" width="2.8" height="15.0" fill="rgb(205,120,39)" rx="2" ry="2" />
2091
<text text-anchor="" x="396.86" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2092
</g>
2093
<g class="func_g" onmouseover="s('internal_malloc (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
2094
<title>internal_malloc (10 samples, 0.34%)</title><rect x="934.1" y="273" width="3.5" height="15.0" fill="rgb(216,153,5)" rx="2" ry="2" />
2095
<text text-anchor="" x="937.06" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2096
</g>
2097
<g class="func_g" onmouseover="s('f_dupfd (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2098
<title>f_dupfd (2 samples, 0.07%)</title><rect x="514.8" y="289" width="0.7" height="15.0" fill="rgb(248,62,15)" rx="2" ry="2" />
2099
<text text-anchor="" x="517.78" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2100
</g>
2101
<g class="func_g" onmouseover="s('test_builtin (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2102
<title>test_builtin (4 samples, 0.13%)</title><rect x="777.7" y="369" width="1.5" height="15.0" fill="rgb(249,35,52)" rx="2" ry="2" />
2103
<text text-anchor="" x="780.72" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2104
</g>
2105
<g class="func_g" onmouseover="s('mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2106
<title>mutex_lock (1 samples, 0.03%)</title><rect x="599.2" y="241" width="0.4" height="15.0" fill="rgb(216,84,25)" rx="2" ry="2" />
2107
<text text-anchor="" x="602.21" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2108
</g>
2109
<g class="func_g" onmouseover="s('sh_xfree (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
2110
<title>sh_xfree (9 samples, 0.30%)</title><rect x="286.5" y="337" width="3.3" height="15.0" fill="rgb(211,43,43)" rx="2" ry="2" />
2111
<text text-anchor="" x="289.54" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2112
</g>
2113
<g class="func_g" onmouseover="s('check_events (23 samples, 0.78%)')" onmouseout="c()" onclick="zoom(this)">
2114
<title>check_events (23 samples, 0.78%)</title><rect x="371.7" y="289" width="8.2" height="15.0" fill="rgb(209,3,24)" rx="2" ry="2" />
2115
<text text-anchor="" x="374.68" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2116
</g>
2117
<g class="func_g" onmouseover="s('internal_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2118
<title>internal_malloc (1 samples, 0.03%)</title><rect x="906.9" y="241" width="0.3" height="15.0" fill="rgb(227,61,35)" rx="2" ry="2" />
2119
<text text-anchor="" x="909.87" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2120
</g>
2121
<g class="func_g" onmouseover="s('ima_file_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2122
<title>ima_file_free (1 samples, 0.03%)</title><rect x="360.6" y="257" width="0.3" height="15.0" fill="rgb(209,92,5)" rx="2" ry="2" />
2123
<text text-anchor="" x="363.59" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2124
</g>
2125
<g class="func_g" onmouseover="s('sh_xmalloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2126
<title>sh_xmalloc (2 samples, 0.07%)</title><rect x="653.2" y="241" width="0.7" height="15.0" fill="rgb(241,79,26)" rx="2" ry="2" />
2127
<text text-anchor="" x="656.23" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2128
</g>
2129
<g class="func_g" onmouseover="s('internal_malloc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2130
<title>internal_malloc (3 samples, 0.10%)</title><rect x="266.1" y="305" width="1.1" height="15.0" fill="rgb(250,83,21)" rx="2" ry="2" />
2131
<text text-anchor="" x="269.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2132
</g>
2133
<g class="func_g" onmouseover="s('check_bash_input (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2134
<title>check_bash_input (2 samples, 0.07%)</title><rect x="380.3" y="337" width="0.7" height="15.0" fill="rgb(231,229,24)" rx="2" ry="2" />
2135
<text text-anchor="" x="383.27" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2136
</g>
2137
<g class="func_g" onmouseover="s('test_command (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2138
<title>test_command (1 samples, 0.03%)</title><rect x="776.6" y="353" width="0.4" height="15.0" fill="rgb(239,204,3)" rx="2" ry="2" />
2139
<text text-anchor="" x="779.65" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2140
</g>
2141
<g class="func_g" onmouseover="s('_IO_ferror (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2142
<title>_IO_ferror (4 samples, 0.13%)</title><rect x="261.9" y="385" width="1.4" height="15.0" fill="rgb(210,61,9)" rx="2" ry="2" />
2143
<text text-anchor="" x="264.85" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2144
</g>
2145
<g class="func_g" onmouseover="s('sh_free (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2146
<title>sh_free (5 samples, 0.17%)</title><rect x="280.1" y="321" width="1.8" height="15.0" fill="rgb(235,43,53)" rx="2" ry="2" />
2147
<text text-anchor="" x="283.10" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2148
</g>
2149
<g class="func_g" onmouseover="s('bind_lastarg (33 samples, 1.11%)')" onmouseout="c()" onclick="zoom(this)">
2150
<title>bind_lastarg (33 samples, 1.11%)</title><rect x="270.8" y="385" width="11.8" height="15.0" fill="rgb(229,19,20)" rx="2" ry="2" />
2151
<text text-anchor="" x="273.80" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2152
</g>
2153
<g class="func_g" onmouseover="s('builtin_address_internal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2154
<title>builtin_address_internal (1 samples, 0.03%)</title><rect x="283.0" y="385" width="0.3" height="15.0" fill="rgb(250,173,18)" rx="2" ry="2" />
2155
<text text-anchor="" x="285.96" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2156
</g>
2157
<g class="func_g" onmouseover="s('_cond_resched (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2158
<title>_cond_resched (1 samples, 0.03%)</title><rect x="74.4" y="257" width="0.4" height="15.0" fill="rgb(218,105,30)" rx="2" ry="2" />
2159
<text text-anchor="" x="77.39" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2160
</g>
2161
<g class="func_g" onmouseover="s('__block_write_begin (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2162
<title>__block_write_begin (1 samples, 0.03%)</title><rect x="39.0" y="385" width="0.3" height="15.0" fill="rgb(235,23,30)" rx="2" ry="2" />
2163
<text text-anchor="" x="41.98" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2164
</g>
2165
<g class="func_g" onmouseover="s('mbsmbchar (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
2166
<title>mbsmbchar (15 samples, 0.51%)</title><rect x="628.9" y="273" width="5.4" height="15.0" fill="rgb(229,119,24)" rx="2" ry="2" />
2167
<text text-anchor="" x="631.90" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2168
</g>
2169
<g class="func_g" onmouseover="s('param_expand (27 samples, 0.91%)')" onmouseout="c()" onclick="zoom(this)">
2170
<title>param_expand (27 samples, 0.91%)</title><rect x="899.4" y="305" width="9.6" height="15.0" fill="rgb(212,151,10)" rx="2" ry="2" />
2171
<text text-anchor="" x="902.36" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2172
</g>
2173
<g class="func_g" onmouseover="s('__GI___libc_write (250 samples, 8.44%)')" onmouseout="c()" onclick="zoom(this)">
2174
<title>__GI___libc_write (250 samples, 8.44%)</title><rect x="12.9" y="529" width="89.4" height="15.0" fill="rgb(216,159,47)" rx="2" ry="2" />
2175
<text text-anchor="" x="15.86" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__GI___lib..</text>
2176
</g>
2177
<g class="func_g" onmouseover="s('sh_xfree (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2178
<title>sh_xfree (5 samples, 0.17%)</title><rect x="240.7" y="401" width="1.8" height="15.0" fill="rgb(233,66,45)" rx="2" ry="2" />
2179
<text text-anchor="" x="243.75" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2180
</g>
2181
<g class="func_g" onmouseover="s('path_lookupat (28 samples, 0.94%)')" onmouseout="c()" onclick="zoom(this)">
2182
<title>path_lookupat (28 samples, 0.94%)</title><rect x="747.0" y="129" width="10.0" height="15.0" fill="rgb(250,140,12)" rx="2" ry="2" />
2183
<text text-anchor="" x="749.96" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2184
</g>
2185
<g class="func_g" onmouseover="s('brace_expand_word_list (24 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
2186
<title>brace_expand_word_list (24 samples, 0.81%)</title><rect x="780.2" y="353" width="8.6" height="15.0" fill="rgb(250,167,41)" rx="2" ry="2" />
2187
<text text-anchor="" x="783.23" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2188
</g>
2189
<g class="func_g" onmouseover="s('putchar@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2190
<title>putchar@plt (1 samples, 0.03%)</title><rect x="712.3" y="353" width="0.3" height="15.0" fill="rgb(227,31,22)" rx="2" ry="2" />
2191
<text text-anchor="" x="715.25" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2192
</g>
2193
<g class="func_g" onmouseover="s('set_pipestatus_array (39 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
2194
<title>set_pipestatus_array (39 samples, 1.32%)</title><rect x="1023.1" y="369" width="14.0" height="15.0" fill="rgb(242,6,17)" rx="2" ry="2" />
2195
<text text-anchor="" x="1026.14" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2196
</g>
2197
<g class="func_g" onmouseover="s('__alloc_pages_nodemask (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2198
<title>__alloc_pages_nodemask (1 samples, 0.03%)</title><rect x="47.2" y="321" width="0.4" height="15.0" fill="rgb(227,87,37)" rx="2" ry="2" />
2199
<text text-anchor="" x="50.21" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2200
</g>
2201
<g class="func_g" onmouseover="s('sh_malloc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2202
<title>sh_malloc (3 samples, 0.10%)</title><rect x="310.9" y="289" width="1.0" height="15.0" fill="rgb(207,93,24)" rx="2" ry="2" />
2203
<text text-anchor="" x="313.86" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2204
</g>
2205
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (33 samples, 1.11%)')" onmouseout="c()" onclick="zoom(this)">
2206
<title>xen_hypercall_xen_version (33 samples, 1.11%)</title><rect x="490.8" y="273" width="11.8" height="15.0" fill="rgb(208,146,36)" rx="2" ry="2" />
2207
<text text-anchor="" x="493.81" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2208
</g>
2209
<g class="func_g" onmouseover="s('posixtest (156 samples, 5.26%)')" onmouseout="c()" onclick="zoom(this)">
2210
<title>posixtest (156 samples, 5.26%)</title><rect x="720.8" y="321" width="55.8" height="15.0" fill="rgb(225,59,13)" rx="2" ry="2" />
2211
<text text-anchor="" x="723.84" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >posix..</text>
2212
</g>
2213
<g class="func_g" onmouseover="s('page_waitqueue (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2214
<title>page_waitqueue (1 samples, 0.03%)</title><rect x="80.1" y="353" width="0.4" height="15.0" fill="rgb(211,155,23)" rx="2" ry="2" />
2215
<text text-anchor="" x="83.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2216
</g>
2217
<g class="func_g" onmouseover="s('sh_xmalloc (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
2218
<title>sh_xmalloc (7 samples, 0.24%)</title><rect x="268.3" y="321" width="2.5" height="15.0" fill="rgb(205,201,0)" rx="2" ry="2" />
2219
<text text-anchor="" x="271.29" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2220
</g>
2221
<g class="func_g" onmouseover="s('strlen (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2222
<title>strlen (3 samples, 0.10%)</title><rect x="1015.6" y="337" width="1.1" height="15.0" fill="rgb(251,187,27)" rx="2" ry="2" />
2223
<text text-anchor="" x="1018.62" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2224
</g>
2225
<g class="func_g" onmouseover="s('sys_newstat (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2226
<title>sys_newstat (1 samples, 0.03%)</title><rect x="1068.2" y="529" width="0.4" height="15.0" fill="rgb(210,152,30)" rx="2" ry="2" />
2227
<text text-anchor="" x="1071.21" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2228
</g>
2229
<g class="func_g" onmouseover="s('execute_builtin_or_function (1,325 samples, 44.72%)')" onmouseout="c()" onclick="zoom(this)">
2230
<title>execute_builtin_or_function (1,325 samples, 44.72%)</title><rect x="305.1" y="385" width="474.1" height="15.0" fill="rgb(208,88,15)" rx="2" ry="2" />
2231
<text text-anchor="" x="308.14" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >execute_builtin_or_function</text>
2232
</g>
2233
<g class="func_g" onmouseover="s('ext4_da_write_begin (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2234
<title>ext4_da_write_begin (2 samples, 0.07%)</title><rect x="34.0" y="401" width="0.7" height="15.0" fill="rgb(244,47,38)" rx="2" ry="2" />
2235
<text text-anchor="" x="36.97" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2236
</g>
2237
<g class="func_g" onmouseover="s('add_to_page_cache_lru (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2238
<title>add_to_page_cache_lru (1 samples, 0.03%)</title><rect x="47.6" y="353" width="0.3" height="15.0" fill="rgb(240,145,20)" rx="2" ry="2" />
2239
<text text-anchor="" x="50.56" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2240
</g>
2241
<g class="func_g" onmouseover="s('__dup2 (56 samples, 1.89%)')" onmouseout="c()" onclick="zoom(this)">
2242
<title>__dup2 (56 samples, 1.89%)</title><rect x="451.8" y="353" width="20.0" height="15.0" fill="rgb(236,35,33)" rx="2" ry="2" />
2243
<text text-anchor="" x="454.82" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2244
</g>
2245
<g class="func_g" onmouseover="s('filename_lookup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2246
<title>filename_lookup (1 samples, 0.03%)</title><rect x="138.1" y="433" width="0.3" height="15.0" fill="rgb(238,136,4)" rx="2" ry="2" />
2247
<text text-anchor="" x="141.07" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2248
</g>
2249
<g class="func_g" onmouseover="s('fget_raw_light (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2250
<title>fget_raw_light (2 samples, 0.07%)</title><rect x="322.7" y="305" width="0.7" height="15.0" fill="rgb(228,211,41)" rx="2" ry="2" />
2251
<text text-anchor="" x="325.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2252
</g>
2253
<g class="func_g" onmouseover="s('__libc_siglongjmp (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2254
<title>__libc_siglongjmp (1 samples, 0.03%)</title><rect x="715.5" y="337" width="0.3" height="15.0" fill="rgb(213,229,45)" rx="2" ry="2" />
2255
<text text-anchor="" x="718.47" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2256
</g>
2257
<g class="func_g" onmouseover="s('complete_walk (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2258
<title>complete_walk (1 samples, 0.03%)</title><rect x="746.2" y="129" width="0.4" height="15.0" fill="rgb(248,76,40)" rx="2" ry="2" />
2259
<text text-anchor="" x="749.24" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2260
</g>
2261
<g class="func_g" onmouseover="s('mem_cgroup_cache_charge (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2262
<title>mem_cgroup_cache_charge (1 samples, 0.03%)</title><rect x="47.6" y="321" width="0.3" height="15.0" fill="rgb(226,7,3)" rx="2" ry="2" />
2263
<text text-anchor="" x="50.56" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2264
</g>
2265
<g class="func_g" onmouseover="s('fd_is_bash_input (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2266
<title>fd_is_bash_input (2 samples, 0.07%)</title><rect x="623.9" y="321" width="0.7" height="15.0" fill="rgb(210,65,20)" rx="2" ry="2" />
2267
<text text-anchor="" x="626.89" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2268
</g>
2269
<g class="func_g" onmouseover="s('copy_redirects (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2270
<title>copy_redirects (2 samples, 0.07%)</title><rect x="620.0" y="321" width="0.7" height="15.0" fill="rgb(227,51,16)" rx="2" ry="2" />
2271
<text text-anchor="" x="622.96" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2272
</g>
2273
<g class="func_g" onmouseover="s('__ctype_b_loc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2274
<title>__ctype_b_loc (3 samples, 0.10%)</title><rect x="895.4" y="305" width="1.1" height="15.0" fill="rgb(226,184,52)" rx="2" ry="2" />
2275
<text text-anchor="" x="898.42" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2276
</g>
2277
<g class="func_g" onmouseover="s('fmtumax (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
2278
<title>fmtumax (7 samples, 0.24%)</title><rect x="1029.2" y="337" width="2.5" height="15.0" fill="rgb(253,104,45)" rx="2" ry="2" />
2279
<text text-anchor="" x="1032.22" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2280
</g>
2281
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
2282
<title>int_check_syscall_exit_work (15 samples, 0.51%)</title><rect x="552.7" y="321" width="5.4" height="15.0" fill="rgb(212,11,52)" rx="2" ry="2" />
2283
<text text-anchor="" x="555.70" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2284
</g>
2285
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2286
<title>path_put (1 samples, 0.03%)</title><rect x="744.1" y="177" width="0.4" height="15.0" fill="rgb(233,13,34)" rx="2" ry="2" />
2287
<text text-anchor="" x="747.09" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2288
</g>
2289
<g class="func_g" onmouseover="s('sys_fcntl (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
2290
<title>sys_fcntl (9 samples, 0.30%)</title><rect x="442.2" y="321" width="3.2" height="15.0" fill="rgb(226,144,40)" rx="2" ry="2" />
2291
<text text-anchor="" x="445.16" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2292
</g>
2293
<g class="func_g" onmouseover="s('make_word_list (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2294
<title>make_word_list (1 samples, 0.03%)</title><rect x="653.9" y="257" width="0.4" height="15.0" fill="rgb(252,222,40)" rx="2" ry="2" />
2295
<text text-anchor="" x="656.94" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2296
</g>
2297
<g class="func_g" onmouseover="s('__d_lookup (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2298
<title>__d_lookup (4 samples, 0.13%)</title><rect x="568.4" y="193" width="1.5" height="15.0" fill="rgb(219,117,31)" rx="2" ry="2" />
2299
<text text-anchor="" x="571.44" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2300
</g>
2301
<g class="func_g" onmouseover="s('__mnt_want_write (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2302
<title>__mnt_want_write (1 samples, 0.03%)</title><rect x="571.7" y="209" width="0.3" height="15.0" fill="rgb(221,70,42)" rx="2" ry="2" />
2303
<text text-anchor="" x="574.66" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2304
</g>
2305
<g class="func_g" onmouseover="s('context_tracking_user_enter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2306
<title>context_tracking_user_enter (1 samples, 0.03%)</title><rect x="436.4" y="321" width="0.4" height="15.0" fill="rgb(254,37,37)" rx="2" ry="2" />
2307
<text text-anchor="" x="439.43" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2308
</g>
2309
<g class="func_g" onmouseover="s('grab_cache_page_write_begin (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
2310
<title>grab_cache_page_write_begin (15 samples, 0.51%)</title><rect x="46.5" y="369" width="5.4" height="15.0" fill="rgb(248,99,10)" rx="2" ry="2" />
2311
<text text-anchor="" x="49.49" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2312
</g>
2313
<g class="func_g" onmouseover="s('file_remove_suid (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2314
<title>file_remove_suid (2 samples, 0.07%)</title><rect x="85.8" y="417" width="0.8" height="15.0" fill="rgb(205,102,4)" rx="2" ry="2" />
2315
<text text-anchor="" x="88.84" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2316
</g>
2317
<g class="func_g" onmouseover="s('find_function (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2318
<title>find_function (1 samples, 0.03%)</title><rect x="997.7" y="385" width="0.4" height="15.0" fill="rgb(229,12,19)" rx="2" ry="2" />
2319
<text text-anchor="" x="1000.74" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2320
</g>
2321
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2322
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="569.5" y="177" width="0.4" height="15.0" fill="rgb(206,122,33)" rx="2" ry="2" />
2323
<text text-anchor="" x="572.51" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2324
</g>
2325
<g class="func_g" onmouseover="s('expand_words (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2326
<title>expand_words (3 samples, 0.10%)</title><rect x="1044.6" y="401" width="1.1" height="15.0" fill="rgb(220,43,49)" rx="2" ry="2" />
2327
<text text-anchor="" x="1047.60" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2328
</g>
2329
<g class="func_g" onmouseover="s('print_simple_command (46 samples, 1.55%)')" onmouseout="c()" onclick="zoom(this)">
2330
<title>print_simple_command (46 samples, 1.55%)</title><rect x="1005.6" y="385" width="16.5" height="15.0" fill="rgb(254,44,45)" rx="2" ry="2" />
2331
<text text-anchor="" x="1008.61" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2332
</g>
2333
<g class="func_g" onmouseover="s('security_inode_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2334
<title>security_inode_permission (1 samples, 0.03%)</title><rect x="143.1" y="353" width="0.3" height="15.0" fill="rgb(251,68,5)" rx="2" ry="2" />
2335
<text text-anchor="" x="146.08" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2336
</g>
2337
<g class="func_g" onmouseover="s('inode_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2338
<title>inode_permission (1 samples, 0.03%)</title><rect x="567.0" y="225" width="0.4" height="15.0" fill="rgb(216,162,1)" rx="2" ry="2" />
2339
<text text-anchor="" x="570.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2340
</g>
2341
<g class="func_g" onmouseover="s('alloc_page_buffers (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2342
<title>alloc_page_buffers (1 samples, 0.03%)</title><rect x="41.8" y="321" width="0.4" height="15.0" fill="rgb(239,222,41)" rx="2" ry="2" />
2343
<text text-anchor="" x="44.84" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2344
</g>
2345
<g class="func_g" onmouseover="s('__strcpy_ssse3 (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2346
<title>__strcpy_ssse3 (3 samples, 0.10%)</title><rect x="251.8" y="401" width="1.1" height="15.0" fill="rgb(250,219,11)" rx="2" ry="2" />
2347
<text text-anchor="" x="254.84" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2348
</g>
2349
<g class="func_g" onmouseover="s('syscall_trace_enter (25 samples, 0.84%)')" onmouseout="c()" onclick="zoom(this)">
2350
<title>syscall_trace_enter (25 samples, 0.84%)</title><rect x="157.4" y="497" width="8.9" height="15.0" fill="rgb(240,182,0)" rx="2" ry="2" />
2351
<text text-anchor="" x="160.39" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2352
</g>
2353
<g class="func_g" onmouseover="s('sys_open (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2354
<title>sys_open (2 samples, 0.07%)</title><rect x="213.6" y="529" width="0.7" height="15.0" fill="rgb(236,167,6)" rx="2" ry="2" />
2355
<text text-anchor="" x="216.56" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2356
</g>
2357
<g class="func_g" onmouseover="s('d_lookup (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2358
<title>d_lookup (4 samples, 0.13%)</title><rect x="568.4" y="209" width="1.5" height="15.0" fill="rgb(238,213,32)" rx="2" ry="2" />
2359
<text text-anchor="" x="571.44" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2360
</g>
2361
<g class="func_g" onmouseover="s('xen_irq_enable_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2362
<title>xen_irq_enable_direct (1 samples, 0.03%)</title><rect x="220.0" y="529" width="0.4" height="15.0" fill="rgb(238,180,10)" rx="2" ry="2" />
2363
<text text-anchor="" x="223.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2364
</g>
2365
<g class="func_g" onmouseover="s('security_inode_getattr (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2366
<title>security_inode_getattr (3 samples, 0.10%)</title><rect x="153.1" y="433" width="1.1" height="15.0" fill="rgb(207,202,33)" rx="2" ry="2" />
2367
<text text-anchor="" x="156.10" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2368
</g>
2369
<g class="func_g" onmouseover="s('check_events (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
2370
<title>check_events (8 samples, 0.27%)</title><rect x="318.4" y="289" width="2.8" height="15.0" fill="rgb(229,198,36)" rx="2" ry="2" />
2371
<text text-anchor="" x="321.38" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2372
</g>
2373
<g class="func_g" onmouseover="s('[unknown] (448 samples, 15.12%)')" onmouseout="c()" onclick="zoom(this)">
2374
<title>[unknown] (448 samples, 15.12%)</title><rect x="10.0" y="545" width="160.3" height="15.0" fill="rgb(207,42,37)" rx="2" ry="2" />
2375
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >[unknown]</text>
2376
</g>
2377
<g class="func_g" onmouseover="s('find_string_in_alist (25 samples, 0.84%)')" onmouseout="c()" onclick="zoom(this)">
2378
<title>find_string_in_alist (25 samples, 0.84%)</title><rect x="626.0" y="321" width="9.0" height="15.0" fill="rgb(253,89,30)" rx="2" ry="2" />
2379
<text text-anchor="" x="629.04" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2380
</g>
2381
<g class="func_g" onmouseover="s('path_put (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2382
<title>path_put (1 samples, 0.03%)</title><rect x="137.7" y="449" width="0.4" height="15.0" fill="rgb(239,100,34)" rx="2" ry="2" />
2383
<text text-anchor="" x="140.72" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2384
</g>
2385
<g class="func_g" onmouseover="s('__ext4_journal_start_sb (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2386
<title>__ext4_journal_start_sb (1 samples, 0.03%)</title><rect x="60.1" y="321" width="0.3" height="15.0" fill="rgb(224,196,31)" rx="2" ry="2" />
2387
<text text-anchor="" x="63.08" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2388
</g>
2389
<g class="func_g" onmouseover="s('__GI___strcmp_ssse3 (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
2390
<title>__GI___strcmp_ssse3 (6 samples, 0.20%)</title><rect x="273.7" y="321" width="2.1" height="15.0" fill="rgb(226,45,3)" rx="2" ry="2" />
2391
<text text-anchor="" x="276.66" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2392
</g>
2393
<g class="func_g" onmouseover="s('mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2394
<title>mutex_lock (1 samples, 0.03%)</title><rect x="573.1" y="225" width="0.3" height="15.0" fill="rgb(210,40,9)" rx="2" ry="2" />
2395
<text text-anchor="" x="576.09" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2396
</g>
2397
<g class="func_g" onmouseover="s('__tz_convert (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2398
<title>__tz_convert (2 samples, 0.07%)</title><rect x="115.9" y="529" width="0.7" height="15.0" fill="rgb(243,224,31)" rx="2" ry="2" />
2399
<text text-anchor="" x="118.89" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2400
</g>
2401
<g class="func_g" onmouseover="s('sh_free (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2402
<title>sh_free (4 samples, 0.13%)</title><rect x="238.6" y="353" width="1.4" height="15.0" fill="rgb(249,64,48)" rx="2" ry="2" />
2403
<text text-anchor="" x="241.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2404
</g>
2405
<g class="func_g" onmouseover="s('tracesys (91 samples, 3.07%)')" onmouseout="c()" onclick="zoom(this)">
2406
<title>tracesys (91 samples, 3.07%)</title><rect x="133.8" y="513" width="32.5" height="15.0" fill="rgb(252,11,22)" rx="2" ry="2" />
2407
<text text-anchor="" x="136.78" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tr..</text>
2408
</g>
2409
<g class="func_g" onmouseover="s('ext4_has_inline_data (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2410
<title>ext4_has_inline_data (2 samples, 0.07%)</title><rect x="81.5" y="385" width="0.8" height="15.0" fill="rgb(236,55,19)" rx="2" ry="2" />
2411
<text text-anchor="" x="84.55" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2412
</g>
2413
<g class="func_g" onmouseover="s('lockref_get_not_dead (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2414
<title>lockref_get_not_dead (2 samples, 0.07%)</title><rect x="747.0" y="97" width="0.7" height="15.0" fill="rgb(223,7,16)" rx="2" ry="2" />
2415
<text text-anchor="" x="749.96" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2416
</g>
2417
<g class="func_g" onmouseover="s('unlink_fifo_list (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2418
<title>unlink_fifo_list (1 samples, 0.03%)</title><rect x="1055.7" y="433" width="0.3" height="15.0" fill="rgb(252,215,6)" rx="2" ry="2" />
2419
<text text-anchor="" x="1058.69" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2420
</g>
2421
<g class="func_g" onmouseover="s('check_events (31 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
2422
<title>check_events (31 samples, 1.05%)</title><rect x="765.6" y="209" width="11.0" height="15.0" fill="rgb(213,77,10)" rx="2" ry="2" />
2423
<text text-anchor="" x="768.56" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2424
</g>
2425
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2426
<title>sh_free (1 samples, 0.03%)</title><rect x="639.3" y="273" width="0.3" height="15.0" fill="rgb(205,102,47)" rx="2" ry="2" />
2427
<text text-anchor="" x="642.27" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2428
</g>
2429
<g class="func_g" onmouseover="s('__inode_permission (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2430
<title>__inode_permission (3 samples, 0.10%)</title><rect x="142.0" y="353" width="1.1" height="15.0" fill="rgb(249,15,49)" rx="2" ry="2" />
2431
<text text-anchor="" x="145.01" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2432
</g>
2433
<g class="func_g" onmouseover="s('check_events (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2434
<title>check_events (2 samples, 0.07%)</title><rect x="72.6" y="241" width="0.7" height="15.0" fill="rgb(225,22,41)" rx="2" ry="2" />
2435
<text text-anchor="" x="75.61" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2436
</g>
2437
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2438
<title>sh_free (1 samples, 0.03%)</title><rect x="658.6" y="241" width="0.4" height="15.0" fill="rgb(210,115,2)" rx="2" ry="2" />
2439
<text text-anchor="" x="661.59" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2440
</g>
2441
<g class="func_g" onmouseover="s('ext4_journal_check_start (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2442
<title>ext4_journal_check_start (1 samples, 0.03%)</title><rect x="42.9" y="353" width="0.4" height="15.0" fill="rgb(216,90,19)" rx="2" ry="2" />
2443
<text text-anchor="" x="45.91" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2444
</g>
2445
<g class="func_g" onmouseover="s('set_pipestatus_from_exit (42 samples, 1.42%)')" onmouseout="c()" onclick="zoom(this)">
2446
<title>set_pipestatus_from_exit (42 samples, 1.42%)</title><rect x="1022.4" y="385" width="15.0" height="15.0" fill="rgb(235,112,52)" rx="2" ry="2" />
2447
<text text-anchor="" x="1025.42" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2448
</g>
2449
<g class="func_g" onmouseover="s('check_bash_input (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2450
<title>check_bash_input (1 samples, 0.03%)</title><rect x="471.8" y="353" width="0.4" height="15.0" fill="rgb(207,200,46)" rx="2" ry="2" />
2451
<text text-anchor="" x="474.85" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2452
</g>
2453
<g class="func_g" onmouseover="s('sh_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2454
<title>sh_free (3 samples, 0.10%)</title><rect x="241.5" y="385" width="1.0" height="15.0" fill="rgb(236,122,20)" rx="2" ry="2" />
2455
<text text-anchor="" x="244.46" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2456
</g>
2457
<g class="func_g" onmouseover="s('generic_file_aio_write (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2458
<title>generic_file_aio_write (3 samples, 0.10%)</title><rect x="88.7" y="449" width="1.1" height="15.0" fill="rgb(247,59,37)" rx="2" ry="2" />
2459
<text text-anchor="" x="91.70" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2460
</g>
2461
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
2462
<title>xen_hypercall_xen_version (8 samples, 0.27%)</title><rect x="318.4" y="273" width="2.8" height="15.0" fill="rgb(247,207,41)" rx="2" ry="2" />
2463
<text text-anchor="" x="321.38" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2464
</g>
2465
<g class="func_g" onmouseover="s('fix_assignment_words (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
2466
<title>fix_assignment_words (7 samples, 0.24%)</title><rect x="1001.3" y="385" width="2.5" height="15.0" fill="rgb(249,176,8)" rx="2" ry="2" />
2467
<text text-anchor="" x="1004.31" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2468
</g>
2469
<g class="func_g" onmouseover="s('ext4_inode_table (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2470
<title>ext4_inode_table (2 samples, 0.07%)</title><rect x="76.5" y="273" width="0.8" height="15.0" fill="rgb(241,129,23)" rx="2" ry="2" />
2471
<text text-anchor="" x="79.54" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2472
</g>
2473
<g class="func_g" onmouseover="s('task_work_run (41 samples, 1.38%)')" onmouseout="c()" onclick="zoom(this)">
2474
<title>task_work_run (41 samples, 1.38%)</title><rect x="348.4" y="289" width="14.7" height="15.0" fill="rgb(233,218,34)" rx="2" ry="2" />
2475
<text text-anchor="" x="351.43" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2476
</g>
2477
<g class="func_g" onmouseover="s('strlen (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2478
<title>strlen (2 samples, 0.07%)</title><rect x="788.1" y="337" width="0.7" height="15.0" fill="rgb(244,94,34)" rx="2" ry="2" />
2479
<text text-anchor="" x="791.10" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2480
</g>
2481
<g class="func_g" onmouseover="s('dnotify_flush (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2482
<title>dnotify_flush (3 samples, 0.10%)</title><rect x="366.3" y="273" width="1.1" height="15.0" fill="rgb(216,10,52)" rx="2" ry="2" />
2483
<text text-anchor="" x="369.31" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2484
</g>
2485
<g class="func_g" onmouseover="s('inode_permission (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
2486
<title>inode_permission (10 samples, 0.34%)</title><rect x="750.9" y="97" width="3.6" height="15.0" fill="rgb(249,18,12)" rx="2" ry="2" />
2487
<text text-anchor="" x="753.89" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2488
</g>
2489
<g class="func_g" onmouseover="s('vfs_fstatat (53 samples, 1.79%)')" onmouseout="c()" onclick="zoom(this)">
2490
<title>vfs_fstatat (53 samples, 1.79%)</title><rect x="137.4" y="465" width="18.9" height="15.0" fill="rgb(233,86,38)" rx="2" ry="2" />
2491
<text text-anchor="" x="140.36" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2492
</g>
2493
<g class="func_g" onmouseover="s('__fput (27 samples, 0.91%)')" onmouseout="c()" onclick="zoom(this)">
2494
<title>__fput (27 samples, 0.91%)</title><rect x="349.1" y="257" width="9.7" height="15.0" fill="rgb(226,7,2)" rx="2" ry="2" />
2495
<text text-anchor="" x="352.14" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2496
</g>
2497
<g class="func_g" onmouseover="s('fpurge (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2498
<title>fpurge (1 samples, 0.03%)</title><rect x="1003.8" y="385" width="0.4" height="15.0" fill="rgb(233,20,9)" rx="2" ry="2" />
2499
<text text-anchor="" x="1006.82" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2500
</g>
2501
<g class="func_g" onmouseover="s('unwind_frame_discard_internal (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
2502
<title>unwind_frame_discard_internal (14 samples, 0.47%)</title><rect x="284.7" y="353" width="5.1" height="15.0" fill="rgb(219,106,23)" rx="2" ry="2" />
2503
<text text-anchor="" x="287.75" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2504
</g>
2505
<g class="func_g" onmouseover="s('kmem_cache_alloc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2506
<title>kmem_cache_alloc (3 samples, 0.10%)</title><rect x="604.9" y="257" width="1.1" height="15.0" fill="rgb(239,61,9)" rx="2" ry="2" />
2507
<text text-anchor="" x="607.93" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2508
</g>
2509
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2510
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="353.4" y="209" width="0.4" height="15.0" fill="rgb(231,81,19)" rx="2" ry="2" />
2511
<text text-anchor="" x="356.44" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2512
</g>
2513
<g class="func_g" onmouseover="s('expand_word_internal (398 samples, 13.43%)')" onmouseout="c()" onclick="zoom(this)">
2514
<title>expand_word_internal (398 samples, 13.43%)</title><rect x="845.3" y="337" width="142.4" height="15.0" fill="rgb(233,163,17)" rx="2" ry="2" />
2515
<text text-anchor="" x="848.34" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >expand_word_internal</text>
2516
</g>
2517
<g class="func_g" onmouseover="s('internal_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2518
<title>internal_free (2 samples, 0.07%)</title><rect x="407.5" y="305" width="0.7" height="15.0" fill="rgb(230,27,36)" rx="2" ry="2" />
2519
<text text-anchor="" x="410.46" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2520
</g>
2521
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2522
<title>xen_hypercall_xen_version (2 samples, 0.07%)</title><rect x="352.4" y="209" width="0.7" height="15.0" fill="rgb(224,59,15)" rx="2" ry="2" />
2523
<text text-anchor="" x="355.36" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2524
</g>
2525
<g class="func_g" onmouseover="s('check_events (19 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
2526
<title>check_events (19 samples, 0.64%)</title><rect x="729.4" y="209" width="6.8" height="15.0" fill="rgb(248,111,50)" rx="2" ry="2" />
2527
<text text-anchor="" x="732.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2528
</g>
2529
<g class="func_g" onmouseover="s('inode_permission (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2530
<title>inode_permission (5 samples, 0.17%)</title><rect x="596.0" y="225" width="1.8" height="15.0" fill="rgb(225,63,7)" rx="2" ry="2" />
2531
<text text-anchor="" x="598.99" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2532
</g>
2533
<g class="func_g" onmouseover="s('groups_search (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2534
<title>groups_search (3 samples, 0.10%)</title><rect x="753.0" y="33" width="1.1" height="15.0" fill="rgb(212,19,15)" rx="2" ry="2" />
2535
<text text-anchor="" x="756.04" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2536
</g>
2537
<g class="func_g" onmouseover="s('sh_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2538
<title>sh_malloc (1 samples, 0.03%)</title><rect x="707.6" y="321" width="0.4" height="15.0" fill="rgb(237,212,4)" rx="2" ry="2" />
2539
<text text-anchor="" x="710.60" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2540
</g>
2541
<g class="func_g" onmouseover="s('syscall_trace_enter (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
2542
<title>syscall_trace_enter (15 samples, 0.51%)</title><rect x="328.4" y="305" width="5.4" height="15.0" fill="rgb(240,207,23)" rx="2" ry="2" />
2543
<text text-anchor="" x="331.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2544
</g>
2545
<g class="func_g" onmouseover="s('internal_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2546
<title>internal_free (3 samples, 0.10%)</title><rect x="169.2" y="497" width="1.1" height="15.0" fill="rgb(249,94,26)" rx="2" ry="2" />
2547
<text text-anchor="" x="172.20" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2548
</g>
2549
<g class="func_g" onmouseover="s('kmem_cache_free (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2550
<title>kmem_cache_free (4 samples, 0.13%)</title><rect x="55.1" y="337" width="1.4" height="15.0" fill="rgb(231,204,2)" rx="2" ry="2" />
2551
<text text-anchor="" x="58.08" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2552
</g>
2553
<g class="func_g" onmouseover="s('__GI___libc_close (56 samples, 1.89%)')" onmouseout="c()" onclick="zoom(this)">
2554
<title>__GI___libc_close (56 samples, 1.89%)</title><rect x="382.4" y="321" width="20.0" height="15.0" fill="rgb(211,78,29)" rx="2" ry="2" />
2555
<text text-anchor="" x="385.41" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2556
</g>
2557
<g class="func_g" onmouseover="s('unwind_protect_mem (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2558
<title>unwind_protect_mem (1 samples, 0.03%)</title><rect x="1049.6" y="401" width="0.4" height="15.0" fill="rgb(253,25,48)" rx="2" ry="2" />
2559
<text text-anchor="" x="1052.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2560
</g>
2561
<g class="func_g" onmouseover="s('ext4_release_file (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2562
<title>ext4_release_file (1 samples, 0.03%)</title><rect x="353.8" y="241" width="0.4" height="15.0" fill="rgb(251,124,24)" rx="2" ry="2" />
2563
<text text-anchor="" x="356.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2564
</g>
2565
<g class="func_g" onmouseover="s('substring (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2566
<title>substring (3 samples, 0.10%)</title><rect x="907.9" y="289" width="1.1" height="15.0" fill="rgb(248,120,39)" rx="2" ry="2" />
2567
<text text-anchor="" x="910.94" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2568
</g>
2569
<g class="func_g" onmouseover="s('xen_restore_fl_direct (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2570
<title>xen_restore_fl_direct (2 samples, 0.07%)</title><rect x="541.6" y="289" width="0.7" height="15.0" fill="rgb(209,140,48)" rx="2" ry="2" />
2571
<text text-anchor="" x="544.61" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2572
</g>
2573
<g class="func_g" onmouseover="s('tracesys (28 samples, 0.94%)')" onmouseout="c()" onclick="zoom(this)">
2574
<title>tracesys (28 samples, 0.94%)</title><rect x="419.6" y="337" width="10.0" height="15.0" fill="rgb(217,224,14)" rx="2" ry="2" />
2575
<text text-anchor="" x="422.62" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2576
</g>
2577
<g class="func_g" onmouseover="s('sh_xmalloc (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2578
<title>sh_xmalloc (5 samples, 0.17%)</title><rect x="232.2" y="369" width="1.7" height="15.0" fill="rgb(225,221,13)" rx="2" ry="2" />
2579
<text text-anchor="" x="235.16" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2580
</g>
2581
<g class="func_g" onmouseover="s('fd_is_bash_input (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2582
<title>fd_is_bash_input (1 samples, 0.03%)</title><rect x="402.4" y="305" width="0.4" height="15.0" fill="rgb(213,210,31)" rx="2" ry="2" />
2583
<text text-anchor="" x="405.45" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2584
</g>
2585
<g class="func_g" onmouseover="s('_IO_ferror (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2586
<title>_IO_ferror (4 samples, 0.13%)</title><rect x="677.6" y="353" width="1.4" height="15.0" fill="rgb(251,23,18)" rx="2" ry="2" />
2587
<text text-anchor="" x="680.55" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2588
</g>
2589
<g class="func_g" onmouseover="s('memset (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2590
<title>memset (2 samples, 0.07%)</title><rect x="358.1" y="209" width="0.7" height="15.0" fill="rgb(209,25,33)" rx="2" ry="2" />
2591
<text text-anchor="" x="361.09" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2592
</g>
2593
<g class="func_g" onmouseover="s('tracesys (220 samples, 7.42%)')" onmouseout="c()" onclick="zoom(this)">
2594
<title>tracesys (220 samples, 7.42%)</title><rect x="23.6" y="513" width="78.7" height="15.0" fill="rgb(246,122,53)" rx="2" ry="2" />
2595
<text text-anchor="" x="26.59" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tracesys</text>
2596
</g>
2597
<g class="func_g" onmouseover="s('ext4_nonda_switch (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2598
<title>ext4_nonda_switch (1 samples, 0.03%)</title><rect x="82.3" y="385" width="0.3" height="15.0" fill="rgb(246,40,6)" rx="2" ry="2" />
2599
<text text-anchor="" x="85.26" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2600
</g>
2601
<g class="func_g" onmouseover="s('is_basic (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2602
<title>is_basic (1 samples, 0.03%)</title><rect x="874.7" y="305" width="0.3" height="15.0" fill="rgb(249,171,0)" rx="2" ry="2" />
2603
<text text-anchor="" x="877.67" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2604
</g>
2605
<g class="func_g" onmouseover="s('sh_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2606
<title>sh_free (3 samples, 0.10%)</title><rect x="706.5" y="321" width="1.1" height="15.0" fill="rgb(231,155,47)" rx="2" ry="2" />
2607
<text text-anchor="" x="709.53" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2608
</g>
2609
<g class="func_g" onmouseover="s('user_path_at (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2610
<title>user_path_at (3 samples, 0.10%)</title><rect x="741.9" y="193" width="1.1" height="15.0" fill="rgb(224,20,35)" rx="2" ry="2" />
2611
<text text-anchor="" x="744.95" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2612
</g>
2613
<g class="func_g" onmouseover="s('filp_close (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2614
<title>filp_close (1 samples, 0.03%)</title><rect x="371.0" y="289" width="0.3" height="15.0" fill="rgb(249,89,51)" rx="2" ry="2" />
2615
<text text-anchor="" x="373.97" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2616
</g>
2617
<g class="func_g" onmouseover="s('mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2618
<title>mutex_lock (1 samples, 0.03%)</title><rect x="565.9" y="209" width="0.4" height="15.0" fill="rgb(250,206,46)" rx="2" ry="2" />
2619
<text text-anchor="" x="568.94" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2620
</g>
2621
<g class="func_g" onmouseover="s('sh_malloc (30 samples, 1.01%)')" onmouseout="c()" onclick="zoom(this)">
2622
<title>sh_malloc (30 samples, 1.01%)</title><rect x="952.7" y="305" width="10.7" height="15.0" fill="rgb(237,79,13)" rx="2" ry="2" />
2623
<text text-anchor="" x="955.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2624
</g>
2625
<g class="func_g" onmouseover="s('check_events (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
2626
<title>check_events (9 samples, 0.30%)</title><rect x="415.0" y="305" width="3.2" height="15.0" fill="rgb(241,115,44)" rx="2" ry="2" />
2627
<text text-anchor="" x="417.97" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2628
</g>
2629
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (17 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
2630
<title>xen_hypercall_xen_version (17 samples, 0.57%)</title><rect x="126.6" y="465" width="6.1" height="15.0" fill="rgb(209,188,49)" rx="2" ry="2" />
2631
<text text-anchor="" x="129.63" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2632
</g>
2633
<g class="func_g" onmouseover="s('internal_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2634
<title>internal_malloc (1 samples, 0.03%)</title><rect x="664.0" y="257" width="0.3" height="15.0" fill="rgb(245,220,48)" rx="2" ry="2" />
2635
<text text-anchor="" x="666.96" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2636
</g>
2637
<g class="func_g" onmouseover="s('sys_write (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2638
<title>sys_write (2 samples, 0.07%)</title><rect x="218.9" y="529" width="0.7" height="15.0" fill="rgb(230,182,37)" rx="2" ry="2" />
2639
<text text-anchor="" x="221.92" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2640
</g>
2641
<g class="func_g" onmouseover="s('remove_quoted_nulls (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2642
<title>remove_quoted_nulls (1 samples, 0.03%)</title><rect x="989.9" y="337" width="0.3" height="15.0" fill="rgb(250,113,10)" rx="2" ry="2" />
2643
<text text-anchor="" x="992.87" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2644
</g>
2645
<g class="func_g" onmouseover="s('sh_xfree (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
2646
<title>sh_xfree (12 samples, 0.40%)</title><rect x="659.0" y="241" width="4.2" height="15.0" fill="rgb(229,144,16)" rx="2" ry="2" />
2647
<text text-anchor="" x="661.95" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2648
</g>
2649
<g class="func_g" onmouseover="s('__wake_up_bit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2650
<title>__wake_up_bit (1 samples, 0.03%)</title><rect x="69.4" y="209" width="0.3" height="15.0" fill="rgb(240,68,14)" rx="2" ry="2" />
2651
<text text-anchor="" x="72.39" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2652
</g>
2653
<g class="func_g" onmouseover="s('__mem_cgroup_commit_charge (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2654
<title>__mem_cgroup_commit_charge (1 samples, 0.03%)</title><rect x="47.6" y="289" width="0.3" height="15.0" fill="rgb(234,193,39)" rx="2" ry="2" />
2655
<text text-anchor="" x="50.56" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2656
</g>
2657
<g class="func_g" onmouseover="s('ext4_da_write_end (80 samples, 2.70%)')" onmouseout="c()" onclick="zoom(this)">
2658
<title>ext4_da_write_end (80 samples, 2.70%)</title><rect x="52.9" y="385" width="28.6" height="15.0" fill="rgb(214,70,16)" rx="2" ry="2" />
2659
<text text-anchor="" x="55.93" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >ex..</text>
2660
</g>
2661
<g class="func_g" onmouseover="s('ksize (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2662
<title>ksize (2 samples, 0.07%)</title><rect x="356.3" y="209" width="0.7" height="15.0" fill="rgb(223,18,4)" rx="2" ry="2" />
2663
<text text-anchor="" x="359.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2664
</g>
2665
<g class="func_g" onmouseover="s('dispose_word (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
2666
<title>dispose_word (6 samples, 0.20%)</title><rect x="875.7" y="321" width="2.2" height="15.0" fill="rgb(233,180,44)" rx="2" ry="2" />
2667
<text text-anchor="" x="878.74" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2668
</g>
2669
<g class="func_g" onmouseover="s('lockref_put_or_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2670
<title>lockref_put_or_lock (1 samples, 0.03%)</title><rect x="573.4" y="209" width="0.4" height="15.0" fill="rgb(221,7,33)" rx="2" ry="2" />
2671
<text text-anchor="" x="576.45" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2672
</g>
2673
<g class="func_g" onmouseover="s('reset_internal_getopt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2674
<title>reset_internal_getopt (1 samples, 0.03%)</title><rect x="706.2" y="337" width="0.3" height="15.0" fill="rgb(208,112,39)" rx="2" ry="2" />
2675
<text text-anchor="" x="709.17" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2676
</g>
2677
<g class="func_g" onmouseover="s('__alloc_fd (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2678
<title>__alloc_fd (4 samples, 0.13%)</title><rect x="601.0" y="257" width="1.4" height="15.0" fill="rgb(219,206,41)" rx="2" ry="2" />
2679
<text text-anchor="" x="604.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2680
</g>
2681
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2682
<title>sh_xfree (1 samples, 0.03%)</title><rect x="905.4" y="257" width="0.4" height="15.0" fill="rgb(245,143,50)" rx="2" ry="2" />
2683
<text text-anchor="" x="908.44" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2684
</g>
2685
<g class="func_g" onmouseover="s('mem_cgroup_charge_common (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2686
<title>mem_cgroup_charge_common (1 samples, 0.03%)</title><rect x="47.6" y="305" width="0.3" height="15.0" fill="rgb(252,24,21)" rx="2" ry="2" />
2687
<text text-anchor="" x="50.56" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2688
</g>
2689
<g class="func_g" onmouseover="s('dispose_words (39 samples, 1.32%)')" onmouseout="c()" onclick="zoom(this)">
2690
<title>dispose_words (39 samples, 1.32%)</title><rect x="290.1" y="385" width="14.0" height="15.0" fill="rgb(242,199,29)" rx="2" ry="2" />
2691
<text text-anchor="" x="293.11" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2692
</g>
2693
<g class="func_g" onmouseover="s('path_get (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2694
<title>path_get (1 samples, 0.03%)</title><rect x="583.5" y="209" width="0.3" height="15.0" fill="rgb(239,65,9)" rx="2" ry="2" />
2695
<text text-anchor="" x="586.47" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2696
</g>
2697
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (22 samples, 0.74%)')" onmouseout="c()" onclick="zoom(this)">
2698
<title>int_check_syscall_exit_work (22 samples, 0.74%)</title><rect x="729.1" y="241" width="7.8" height="15.0" fill="rgb(211,50,28)" rx="2" ry="2" />
2699
<text text-anchor="" x="732.07" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2700
</g>
2701
<g class="func_g" onmouseover="s('internal_malloc (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2702
<title>internal_malloc (5 samples, 0.17%)</title><rect x="232.2" y="337" width="1.7" height="15.0" fill="rgb(242,162,47)" rx="2" ry="2" />
2703
<text text-anchor="" x="235.16" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2704
</g>
2705
<g class="func_g" onmouseover="s('sv_ifs (17 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
2706
<title>sv_ifs (17 samples, 0.57%)</title><rect x="664.3" y="321" width="6.1" height="15.0" fill="rgb(211,158,18)" rx="2" ry="2" />
2707
<text text-anchor="" x="667.32" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2708
</g>
2709
<g class="func_g" onmouseover="s('internal_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2710
<title>internal_free (2 samples, 0.07%)</title><rect x="670.4" y="305" width="0.7" height="15.0" fill="rgb(215,6,16)" rx="2" ry="2" />
2711
<text text-anchor="" x="673.40" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2712
</g>
2713
<g class="func_g" onmouseover="s('__ctype_get_mb_cur_max@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2714
<title>__ctype_get_mb_cur_max@plt (1 samples, 0.03%)</title><rect x="865.7" y="321" width="0.4" height="15.0" fill="rgb(253,95,15)" rx="2" ry="2" />
2715
<text text-anchor="" x="868.73" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2716
</g>
2717
<g class="func_g" onmouseover="s('security_file_permission (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2718
<title>security_file_permission (2 samples, 0.07%)</title><rect x="91.9" y="449" width="0.7" height="15.0" fill="rgb(226,119,3)" rx="2" ry="2" />
2719
<text text-anchor="" x="94.92" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2720
</g>
2721
<g class="func_g" onmouseover="s('sh_xmalloc (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
2722
<title>sh_xmalloc (13 samples, 0.44%)</title><rect x="933.3" y="305" width="4.7" height="15.0" fill="rgb(218,110,47)" rx="2" ry="2" />
2723
<text text-anchor="" x="936.34" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2724
</g>
2725
<g class="func_g" onmouseover="s('fsnotify (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2726
<title>fsnotify (1 samples, 0.03%)</title><rect x="600.6" y="273" width="0.4" height="15.0" fill="rgb(224,222,22)" rx="2" ry="2" />
2727
<text text-anchor="" x="603.64" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2728
</g>
2729
<g class="func_g" onmouseover="s('__strcpy_ssse3 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2730
<title>__strcpy_ssse3 (1 samples, 0.03%)</title><rect x="645.0" y="273" width="0.4" height="15.0" fill="rgb(229,74,52)" rx="2" ry="2" />
2731
<text text-anchor="" x="648.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2732
</g>
2733
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2734
<title>sh_free (1 samples, 0.03%)</title><rect x="1038.2" y="369" width="0.3" height="15.0" fill="rgb(237,126,17)" rx="2" ry="2" />
2735
<text text-anchor="" x="1041.16" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2736
</g>
2737
<g class="func_g" onmouseover="s('sh_xmalloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2738
<title>sh_xmalloc (1 samples, 0.03%)</title><rect x="1036.4" y="353" width="0.3" height="15.0" fill="rgb(250,71,10)" rx="2" ry="2" />
2739
<text text-anchor="" x="1039.37" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2740
</g>
2741
<g class="func_g" onmouseover="s('localtime (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2742
<title>localtime (2 samples, 0.07%)</title><rect x="684.4" y="353" width="0.7" height="15.0" fill="rgb(253,196,38)" rx="2" ry="2" />
2743
<text text-anchor="" x="687.35" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2744
</g>
2745
<g class="func_g" onmouseover="s('sh_malloc (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
2746
<title>sh_malloc (6 samples, 0.20%)</title><rect x="1033.2" y="321" width="2.1" height="15.0" fill="rgb(247,142,24)" rx="2" ry="2" />
2747
<text text-anchor="" x="1036.15" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2748
</g>
2749
<g class="func_g" onmouseover="s('user_path_at_empty (35 samples, 1.18%)')" onmouseout="c()" onclick="zoom(this)">
2750
<title>user_path_at_empty (35 samples, 1.18%)</title><rect x="138.8" y="433" width="12.5" height="15.0" fill="rgb(241,42,54)" rx="2" ry="2" />
2751
<text text-anchor="" x="141.79" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2752
</g>
2753
<g class="func_g" onmouseover="s('__GI___libc_fcntl (58 samples, 1.96%)')" onmouseout="c()" onclick="zoom(this)">
2754
<title>__GI___libc_fcntl (58 samples, 1.96%)</title><rect x="313.0" y="337" width="20.8" height="15.0" fill="rgb(242,132,3)" rx="2" ry="2" />
2755
<text text-anchor="" x="316.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2756
</g>
2757
<g class="func_g" onmouseover="s('without_interrupts (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
2758
<title>without_interrupts (10 samples, 0.34%)</title><rect x="267.2" y="353" width="3.6" height="15.0" fill="rgb(217,90,46)" rx="2" ry="2" />
2759
<text text-anchor="" x="270.22" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2760
</g>
2761
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2762
<title>sh_xfree (1 samples, 0.03%)</title><rect x="845.0" y="321" width="0.3" height="15.0" fill="rgb(228,118,22)" rx="2" ry="2" />
2763
<text text-anchor="" x="847.98" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2764
</g>
2765
<g class="func_g" onmouseover="s('redir_open (26 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
2766
<title>redir_open (26 samples, 0.88%)</title><rect x="626.0" y="337" width="9.3" height="15.0" fill="rgb(226,225,31)" rx="2" ry="2" />
2767
<text text-anchor="" x="629.04" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2768
</g>
2769
<g class="func_g" onmouseover="s('mbschr (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
2770
<title>mbschr (14 samples, 0.47%)</title><rect x="783.1" y="337" width="5.0" height="15.0" fill="rgb(205,164,12)" rx="2" ry="2" />
2771
<text text-anchor="" x="786.09" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2772
</g>
2773
<g class="func_g" onmouseover="s('filp_close (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2774
<title>filp_close (5 samples, 0.17%)</title><rect x="394.6" y="257" width="1.8" height="15.0" fill="rgb(236,78,26)" rx="2" ry="2" />
2775
<text text-anchor="" x="397.58" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2776
</g>
2777
<g class="func_g" onmouseover="s('file_ra_state_init (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2778
<title>file_ra_state_init (2 samples, 0.07%)</title><rect x="579.5" y="193" width="0.7" height="15.0" fill="rgb(229,146,48)" rx="2" ry="2" />
2779
<text text-anchor="" x="582.53" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2780
</g>
2781
<g class="func_g" onmouseover="s('jbd2_journal_get_write_access (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
2782
<title>jbd2_journal_get_write_access (11 samples, 0.37%)</title><rect x="68.7" y="273" width="3.9" height="15.0" fill="rgb(249,70,48)" rx="2" ry="2" />
2783
<text text-anchor="" x="71.67" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2784
</g>
2785
<g class="func_g" onmouseover="s('get_empty_filp (25 samples, 0.84%)')" onmouseout="c()" onclick="zoom(this)">
2786
<title>get_empty_filp (25 samples, 0.84%)</title><rect x="585.3" y="241" width="8.9" height="15.0" fill="rgb(215,6,36)" rx="2" ry="2" />
2787
<text text-anchor="" x="588.25" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2788
</g>
2789
<g class="func_g" onmouseover="s('lookup_fast (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2790
<title>lookup_fast (3 samples, 0.10%)</title><rect x="143.4" y="369" width="1.1" height="15.0" fill="rgb(234,34,32)" rx="2" ry="2" />
2791
<text text-anchor="" x="146.44" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2792
</g>
2793
<g class="func_g" onmouseover="s('ext4_get_inode_loc (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
2794
<title>ext4_get_inode_loc (13 samples, 0.44%)</title><rect x="72.6" y="289" width="4.7" height="15.0" fill="rgb(252,209,44)" rx="2" ry="2" />
2795
<text text-anchor="" x="75.61" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2796
</g>
2797
<g class="func_g" onmouseover="s('check_events (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
2798
<title>check_events (10 samples, 0.34%)</title><rect x="210.0" y="529" width="3.6" height="15.0" fill="rgb(212,186,39)" rx="2" ry="2" />
2799
<text text-anchor="" x="212.98" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2800
</g>
2801
<g class="func_g" onmouseover="s('fget_raw_light (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2802
<title>fget_raw_light (1 samples, 0.03%)</title><rect x="440.7" y="321" width="0.4" height="15.0" fill="rgb(225,99,41)" rx="2" ry="2" />
2803
<text text-anchor="" x="443.73" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2804
</g>
2805
<g class="func_g" onmouseover="s('sys_write (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2806
<title>sys_write (1 samples, 0.03%)</title><rect x="23.2" y="513" width="0.4" height="15.0" fill="rgb(239,28,14)" rx="2" ry="2" />
2807
<text text-anchor="" x="26.24" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2808
</g>
2809
<g class="func_g" onmouseover="s('string_list (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2810
<title>string_list (3 samples, 0.10%)</title><rect x="663.2" y="321" width="1.1" height="15.0" fill="rgb(214,107,13)" rx="2" ry="2" />
2811
<text text-anchor="" x="666.24" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2812
</g>
2813
<g class="func_g" onmouseover="s('sh_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2814
<title>sh_free (2 samples, 0.07%)</title><rect x="877.2" y="289" width="0.7" height="15.0" fill="rgb(231,24,28)" rx="2" ry="2" />
2815
<text text-anchor="" x="880.18" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2816
</g>
2817
<g class="func_g" onmouseover="s('vfs_write (184 samples, 6.21%)')" onmouseout="c()" onclick="zoom(this)">
2818
<title>vfs_write (184 samples, 6.21%)</title><rect x="28.2" y="481" width="65.9" height="15.0" fill="rgb(209,228,46)" rx="2" ry="2" />
2819
<text text-anchor="" x="31.25" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >vfs_write</text>
2820
</g>
2821
<g class="func_g" onmouseover="s('add_unwind_protect (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2822
<title>add_unwind_protect (5 samples, 0.17%)</title><rect x="310.1" y="353" width="1.8" height="15.0" fill="rgb(205,103,38)" rx="2" ry="2" />
2823
<text text-anchor="" x="313.15" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2824
</g>
2825
<g class="func_g" onmouseover="s('check_bash_input (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2826
<title>check_bash_input (2 samples, 0.07%)</title><rect x="623.9" y="337" width="0.7" height="15.0" fill="rgb(211,155,20)" rx="2" ry="2" />
2827
<text text-anchor="" x="626.89" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2828
</g>
2829
<g class="func_g" onmouseover="s('hash_search (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
2830
<title>hash_search (4 samples, 0.13%)</title><rect x="275.8" y="321" width="1.4" height="15.0" fill="rgb(210,54,34)" rx="2" ry="2" />
2831
<text text-anchor="" x="278.80" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2832
</g>
2833
<g class="func_g" onmouseover="s('strlen (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2834
<title>strlen (3 samples, 0.10%)</title><rect x="797.8" y="321" width="1.0" height="15.0" fill="rgb(223,195,25)" rx="2" ry="2" />
2835
<text text-anchor="" x="800.76" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2836
</g>
2837
<g class="func_g" onmouseover="s('ext4_mark_iloc_dirty (16 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
2838
<title>ext4_mark_iloc_dirty (16 samples, 0.54%)</title><rect x="62.2" y="305" width="5.8" height="15.0" fill="rgb(243,126,9)" rx="2" ry="2" />
2839
<text text-anchor="" x="65.23" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2840
</g>
2841
<g class="func_g" onmouseover="s('internal_malloc (28 samples, 0.94%)')" onmouseout="c()" onclick="zoom(this)">
2842
<title>internal_malloc (28 samples, 0.94%)</title><rect x="953.0" y="289" width="10.0" height="15.0" fill="rgb(232,183,45)" rx="2" ry="2" />
2843
<text text-anchor="" x="956.02" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2844
</g>
2845
<g class="func_g" onmouseover="s('is_basic (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2846
<title>is_basic (3 samples, 0.10%)</title><rect x="872.9" y="289" width="1.1" height="15.0" fill="rgb(240,1,50)" rx="2" ry="2" />
2847
<text text-anchor="" x="875.88" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2848
</g>
2849
<g class="func_g" onmouseover="s('dispose_fd_bitmap (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
2850
<title>dispose_fd_bitmap (7 samples, 0.24%)</title><rect x="240.0" y="417" width="2.5" height="15.0" fill="rgb(251,100,7)" rx="2" ry="2" />
2851
<text text-anchor="" x="243.03" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2852
</g>
2853
<g class="func_g" onmouseover="s('add_unwind_protect_internal (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
2854
<title>add_unwind_protect_internal (8 samples, 0.27%)</title><rect x="233.9" y="369" width="2.9" height="15.0" fill="rgb(232,182,22)" rx="2" ry="2" />
2855
<text text-anchor="" x="236.95" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2856
</g>
2857
<g class="func_g" onmouseover="s('__fpurge (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
2858
<title>__fpurge (5 samples, 0.17%)</title><rect x="307.3" y="369" width="1.8" height="15.0" fill="rgb(231,82,18)" rx="2" ry="2" />
2859
<text text-anchor="" x="310.29" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2860
</g>
2861
<g class="func_g" onmouseover="s('find_next_zero_bit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2862
<title>find_next_zero_bit (1 samples, 0.03%)</title><rect x="602.1" y="241" width="0.3" height="15.0" fill="rgb(206,97,30)" rx="2" ry="2" />
2863
<text text-anchor="" x="605.07" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2864
</g>
2865
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (24 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
2866
<title>xen_hypercall_xen_version (24 samples, 0.81%)</title><rect x="157.4" y="465" width="8.6" height="15.0" fill="rgb(242,213,49)" rx="2" ry="2" />
2867
<text text-anchor="" x="160.39" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2868
</g>
2869
<g class="func_g" onmouseover="s('memset (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2870
<title>memset (2 samples, 0.07%)</title><rect x="592.1" y="225" width="0.7" height="15.0" fill="rgb(238,129,35)" rx="2" ry="2" />
2871
<text text-anchor="" x="595.05" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2872
</g>
2873
<g class="func_g" onmouseover="s('syscall_trace_enter (23 samples, 0.78%)')" onmouseout="c()" onclick="zoom(this)">
2874
<title>syscall_trace_enter (23 samples, 0.78%)</title><rect x="94.1" y="497" width="8.2" height="15.0" fill="rgb(250,51,7)" rx="2" ry="2" />
2875
<text text-anchor="" x="97.07" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2876
</g>
2877
<g class="func_g" onmouseover="s('lockref_put_or_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2878
<title>lockref_put_or_lock (1 samples, 0.03%)</title><rect x="353.4" y="225" width="0.4" height="15.0" fill="rgb(232,146,12)" rx="2" ry="2" />
2879
<text text-anchor="" x="356.44" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2880
</g>
2881
<g class="func_g" onmouseover="s('do_notify_resume (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2882
<title>do_notify_resume (2 samples, 0.07%)</title><rect x="340.6" y="321" width="0.7" height="15.0" fill="rgb(238,13,43)" rx="2" ry="2" />
2883
<text text-anchor="" x="343.56" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2884
</g>
2885
<g class="func_g" onmouseover="s('tracesys (47 samples, 1.59%)')" onmouseout="c()" onclick="zoom(this)">
2886
<title>tracesys (47 samples, 1.59%)</title><rect x="363.5" y="321" width="16.8" height="15.0" fill="rgb(249,172,38)" rx="2" ry="2" />
2887
<text text-anchor="" x="366.45" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2888
</g>
2889
<g class="func_g" onmouseover="s('sh_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2890
<title>sh_free (3 samples, 0.10%)</title><rect x="717.3" y="321" width="1.0" height="15.0" fill="rgb(254,203,21)" rx="2" ry="2" />
2891
<text text-anchor="" x="720.26" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2892
</g>
2893
<g class="func_g" onmouseover="s('vfs_fstatat (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2894
<title>vfs_fstatat (1 samples, 0.03%)</title><rect x="764.8" y="209" width="0.4" height="15.0" fill="rgb(254,168,7)" rx="2" ry="2" />
2895
<text text-anchor="" x="767.84" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2896
</g>
2897
<g class="func_g" onmouseover="s('__ext4_journal_stop (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2898
<title>__ext4_journal_stop (1 samples, 0.03%)</title><rect x="60.4" y="321" width="0.4" height="15.0" fill="rgb(245,229,9)" rx="2" ry="2" />
2899
<text text-anchor="" x="63.44" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2900
</g>
2901
<g class="func_g" onmouseover="s('kmem_cache_alloc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2902
<title>kmem_cache_alloc (3 samples, 0.10%)</title><rect x="148.8" y="401" width="1.1" height="15.0" fill="rgb(213,145,18)" rx="2" ry="2" />
2903
<text text-anchor="" x="151.81" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2904
</g>
2905
<g class="func_g" onmouseover="s('check_events (67 samples, 2.26%)')" onmouseout="c()" onclick="zoom(this)">
2906
<title>check_events (67 samples, 2.26%)</title><rect x="182.8" y="529" width="24.0" height="15.0" fill="rgb(224,107,19)" rx="2" ry="2" />
2907
<text text-anchor="" x="185.79" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >c..</text>
2908
</g>
2909
<g class="func_g" onmouseover="s('common_perm_cond (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2910
<title>common_perm_cond (1 samples, 0.03%)</title><rect x="764.5" y="129" width="0.3" height="15.0" fill="rgb(207,190,46)" rx="2" ry="2" />
2911
<text text-anchor="" x="767.49" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2912
</g>
2913
<g class="func_g" onmouseover="s('dispose_redirects (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2914
<title>dispose_redirects (1 samples, 0.03%)</title><rect x="408.2" y="369" width="0.3" height="15.0" fill="rgb(206,65,38)" rx="2" ry="2" />
2915
<text text-anchor="" x="411.17" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2916
</g>
2917
<g class="func_g" onmouseover="s('sys_dup2 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2918
<title>sys_dup2 (1 samples, 0.03%)</title><rect x="228.9" y="529" width="0.4" height="15.0" fill="rgb(205,23,42)" rx="2" ry="2" />
2919
<text text-anchor="" x="231.94" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2920
</g>
2921
<g class="func_g" onmouseover="s('balance_dirty_pages_ratelimited (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2922
<title>balance_dirty_pages_ratelimited (1 samples, 0.03%)</title><rect x="33.6" y="401" width="0.4" height="15.0" fill="rgb(225,11,3)" rx="2" ry="2" />
2923
<text text-anchor="" x="36.61" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2924
</g>
2925
<g class="func_g" onmouseover="s('sh_stat (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2926
<title>sh_stat (1 samples, 0.03%)</title><rect x="724.1" y="273" width="0.3" height="15.0" fill="rgb(220,46,25)" rx="2" ry="2" />
2927
<text text-anchor="" x="727.06" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2928
</g>
2929
<g class="func_g" onmouseover="s('__inode_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2930
<title>__inode_permission (1 samples, 0.03%)</title><rect x="750.5" y="97" width="0.4" height="15.0" fill="rgb(206,111,8)" rx="2" ry="2" />
2931
<text text-anchor="" x="753.53" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2932
</g>
2933
<g class="func_g" onmouseover="s('sys_dup2 (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
2934
<title>sys_dup2 (14 samples, 0.47%)</title><rect x="461.5" y="321" width="5.0" height="15.0" fill="rgb(219,123,1)" rx="2" ry="2" />
2935
<text text-anchor="" x="464.47" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2936
</g>
2937
<g class="func_g" onmouseover="s('internal_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2938
<title>internal_free (3 samples, 0.10%)</title><rect x="241.5" y="369" width="1.0" height="15.0" fill="rgb(233,19,38)" rx="2" ry="2" />
2939
<text text-anchor="" x="244.46" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2940
</g>
2941
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2942
<title>sh_xfree (1 samples, 0.03%)</title><rect x="639.3" y="289" width="0.3" height="15.0" fill="rgb(252,160,18)" rx="2" ry="2" />
2943
<text text-anchor="" x="642.27" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2944
</g>
2945
<g class="func_g" onmouseover="s('block_write_end (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2946
<title>block_write_end (2 samples, 0.07%)</title><rect x="57.2" y="369" width="0.7" height="15.0" fill="rgb(223,16,27)" rx="2" ry="2" />
2947
<text text-anchor="" x="60.22" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2948
</g>
2949
<g class="func_g" onmouseover="s('kzfree (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
2950
<title>kzfree (3 samples, 0.10%)</title><rect x="357.0" y="209" width="1.1" height="15.0" fill="rgb(251,6,0)" rx="2" ry="2" />
2951
<text text-anchor="" x="360.01" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2952
</g>
2953
<g class="func_g" onmouseover="s('hash_string (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2954
<title>hash_string (1 samples, 0.03%)</title><rect x="906.2" y="209" width="0.3" height="15.0" fill="rgb(245,90,47)" rx="2" ry="2" />
2955
<text text-anchor="" x="909.15" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2956
</g>
2957
<g class="func_g" onmouseover="s('list_reverse (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
2958
<title>list_reverse (2 samples, 0.07%)</title><rect x="988.8" y="337" width="0.7" height="15.0" fill="rgb(253,103,47)" rx="2" ry="2" />
2959
<text text-anchor="" x="991.79" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2960
</g>
2961
<g class="func_g" onmouseover="s('jbd2_journal_put_journal_head (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2962
<title>jbd2_journal_put_journal_head (1 samples, 0.03%)</title><rect x="66.9" y="257" width="0.3" height="15.0" fill="rgb(237,208,51)" rx="2" ry="2" />
2963
<text text-anchor="" x="69.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2964
</g>
2965
<g class="func_g" onmouseover="s('printf_builtin (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2966
<title>printf_builtin (1 samples, 0.03%)</title><rect x="777.4" y="369" width="0.3" height="15.0" fill="rgb(236,27,24)" rx="2" ry="2" />
2967
<text text-anchor="" x="780.36" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2968
</g>
2969
<g class="func_g" onmouseover="s('sh_malloc (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
2970
<title>sh_malloc (14 samples, 0.47%)</title><rect x="792.7" y="289" width="5.1" height="15.0" fill="rgb(222,221,6)" rx="2" ry="2" />
2971
<text text-anchor="" x="795.75" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2972
</g>
2973
<g class="func_g" onmouseover="s('discard_unwind_frame (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
2974
<title>discard_unwind_frame (10 samples, 0.34%)</title><rect x="403.5" y="369" width="3.6" height="15.0" fill="rgb(227,66,44)" rx="2" ry="2" />
2975
<text text-anchor="" x="406.52" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2976
</g>
2977
<g class="func_g" onmouseover="s('make_bare_word (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2978
<title>make_bare_word (1 samples, 0.03%)</title><rect x="642.9" y="257" width="0.3" height="15.0" fill="rgb(224,11,40)" rx="2" ry="2" />
2979
<text text-anchor="" x="645.85" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2980
</g>
2981
<g class="func_g" onmouseover="s('generic_segment_checks (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2982
<title>generic_segment_checks (1 samples, 0.03%)</title><rect x="87.6" y="417" width="0.4" height="15.0" fill="rgb(220,3,26)" rx="2" ry="2" />
2983
<text text-anchor="" x="90.63" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2984
</g>
2985
<g class="func_g" onmouseover="s('sh_malloc (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
2986
<title>sh_malloc (6 samples, 0.20%)</title><rect x="268.7" y="305" width="2.1" height="15.0" fill="rgb(209,116,48)" rx="2" ry="2" />
2987
<text text-anchor="" x="271.65" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2988
</g>
2989
<g class="func_g" onmouseover="s('sh_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2990
<title>sh_malloc (1 samples, 0.03%)</title><rect x="909.0" y="305" width="0.4" height="15.0" fill="rgb(242,151,39)" rx="2" ry="2" />
2991
<text text-anchor="" x="912.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2992
</g>
2993
<g class="func_g" onmouseover="s('in_group_p (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2994
<title>in_group_p (1 samples, 0.03%)</title><rect x="754.1" y="65" width="0.4" height="15.0" fill="rgb(245,190,37)" rx="2" ry="2" />
2995
<text text-anchor="" x="757.11" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
2996
</g>
2997
<g class="func_g" onmouseover="s('execute_command (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
2998
<title>execute_command (1 samples, 0.03%)</title><rect x="229.3" y="449" width="0.4" height="15.0" fill="rgb(251,80,38)" rx="2" ry="2" />
2999
<text text-anchor="" x="232.30" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3000
</g>
3001
<g class="func_g" onmouseover="s('internal_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3002
<title>internal_free (2 samples, 0.07%)</title><rect x="907.2" y="257" width="0.7" height="15.0" fill="rgb(209,173,47)" rx="2" ry="2" />
3003
<text text-anchor="" x="910.23" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3004
</g>
3005
<g class="func_g" onmouseover="s('mark_buffer_dirty (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3006
<title>mark_buffer_dirty (1 samples, 0.03%)</title><rect x="79.8" y="337" width="0.3" height="15.0" fill="rgb(211,30,36)" rx="2" ry="2" />
3007
<text text-anchor="" x="82.76" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3008
</g>
3009
<g class="func_g" onmouseover="s('free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3010
<title>free (2 samples, 0.07%)</title><rect x="167.1" y="529" width="0.7" height="15.0" fill="rgb(209,66,17)" rx="2" ry="2" />
3011
<text text-anchor="" x="170.05" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3012
</g>
3013
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3014
<title>xen_hypercall_xen_version (2 samples, 0.07%)</title><rect x="72.6" y="225" width="0.7" height="15.0" fill="rgb(225,1,33)" rx="2" ry="2" />
3015
<text text-anchor="" x="75.61" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3016
</g>
3017
<g class="func_g" onmouseover="s('strlen (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3018
<title>strlen (2 samples, 0.07%)</title><rect x="1021.0" y="337" width="0.7" height="15.0" fill="rgb(218,49,53)" rx="2" ry="2" />
3019
<text text-anchor="" x="1023.99" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3020
</g>
3021
<g class="func_g" onmouseover="s('tracesys (29 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
3022
<title>tracesys (29 samples, 0.98%)</title><rect x="461.5" y="337" width="10.3" height="15.0" fill="rgb(245,199,24)" rx="2" ry="2" />
3023
<text text-anchor="" x="464.47" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3024
</g>
3025
<g class="func_g" onmouseover="s('sys_fcntl (23 samples, 0.78%)')" onmouseout="c()" onclick="zoom(this)">
3026
<title>sys_fcntl (23 samples, 0.78%)</title><rect x="510.8" y="305" width="8.3" height="15.0" fill="rgb(214,172,41)" rx="2" ry="2" />
3027
<text text-anchor="" x="513.84" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3028
</g>
3029
<g class="func_g" onmouseover="s('add_unwind_protect_internal (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3030
<title>add_unwind_protect_internal (2 samples, 0.07%)</title><rect x="309.4" y="337" width="0.7" height="15.0" fill="rgb(240,100,8)" rx="2" ry="2" />
3031
<text text-anchor="" x="312.43" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3032
</g>
3033
<g class="func_g" onmouseover="s('__wake_up (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3034
<title>__wake_up (1 samples, 0.03%)</title><rect x="54.7" y="337" width="0.4" height="15.0" fill="rgb(236,85,24)" rx="2" ry="2" />
3035
<text text-anchor="" x="57.72" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3036
</g>
3037
<g class="func_g" onmouseover="s('wait_for_stable_page (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3038
<title>wait_for_stable_page (1 samples, 0.03%)</title><rect x="52.6" y="369" width="0.3" height="15.0" fill="rgb(220,120,51)" rx="2" ry="2" />
3039
<text text-anchor="" x="55.57" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3040
</g>
3041
<g class="func_g" onmouseover="s('put_page (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3042
<title>put_page (2 samples, 0.07%)</title><rect x="80.5" y="353" width="0.7" height="15.0" fill="rgb(212,80,35)" rx="2" ry="2" />
3043
<text text-anchor="" x="83.48" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3044
</g>
3045
<g class="func_g" onmouseover="s('generic_permission (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3046
<title>generic_permission (2 samples, 0.07%)</title><rect x="596.0" y="193" width="0.7" height="15.0" fill="rgb(244,188,28)" rx="2" ry="2" />
3047
<text text-anchor="" x="598.99" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3048
</g>
3049
<g class="func_g" onmouseover="s('strncpy_from_user (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3050
<title>strncpy_from_user (1 samples, 0.03%)</title><rect x="763.4" y="145" width="0.4" height="15.0" fill="rgb(246,71,21)" rx="2" ry="2" />
3051
<text text-anchor="" x="766.41" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3052
</g>
3053
<g class="func_g" onmouseover="s('test_command (161 samples, 5.43%)')" onmouseout="c()" onclick="zoom(this)">
3054
<title>test_command (161 samples, 5.43%)</title><rect x="719.1" y="337" width="57.5" height="15.0" fill="rgb(254,50,21)" rx="2" ry="2" />
3055
<text text-anchor="" x="722.05" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >test_c..</text>
3056
</g>
3057
<g class="func_g" onmouseover="s('locks_remove_posix (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3058
<title>locks_remove_posix (2 samples, 0.07%)</title><rect x="465.4" y="289" width="0.7" height="15.0" fill="rgb(252,215,4)" rx="2" ry="2" />
3059
<text text-anchor="" x="468.41" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3060
</g>
3061
<g class="func_g" onmouseover="s('dispose_words (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
3062
<title>dispose_words (6 samples, 0.20%)</title><rect x="637.5" y="321" width="2.1" height="15.0" fill="rgb(239,171,36)" rx="2" ry="2" />
3063
<text text-anchor="" x="640.49" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3064
</g>
3065
<g class="func_g" onmouseover="s('all (2,963 samples, 100%)')" onmouseout="c()" onclick="zoom(this)">
3066
<title>all (2,963 samples, 100%)</title><rect x="10.0" y="577" width="1060.0" height="15.0" fill="rgb(236,164,11)" rx="2" ry="2" />
3067
<text text-anchor="" x="13.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3068
</g>
3069
<g class="func_g" onmouseover="s('string_extract_double_quoted (33 samples, 1.11%)')" onmouseout="c()" onclick="zoom(this)">
3070
<title>string_extract_double_quoted (33 samples, 1.11%)</title><rect x="963.4" y="321" width="11.8" height="15.0" fill="rgb(219,9,7)" rx="2" ry="2" />
3071
<text text-anchor="" x="966.39" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3072
</g>
3073
<g class="func_g" onmouseover="s('without_interrupts (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3074
<title>without_interrupts (2 samples, 0.07%)</title><rect x="309.4" y="353" width="0.7" height="15.0" fill="rgb(215,171,32)" rx="2" ry="2" />
3075
<text text-anchor="" x="312.43" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3076
</g>
3077
<g class="func_g" onmouseover="s('sh_xmalloc (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3078
<title>sh_xmalloc (10 samples, 0.34%)</title><rect x="654.7" y="257" width="3.5" height="15.0" fill="rgb(220,229,22)" rx="2" ry="2" />
3079
<text text-anchor="" x="657.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3080
</g>
3081
<g class="func_g" onmouseover="s('print_redirection_list (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
3082
<title>print_redirection_list (12 samples, 0.40%)</title><rect x="1017.8" y="369" width="4.3" height="15.0" fill="rgb(208,36,51)" rx="2" ry="2" />
3083
<text text-anchor="" x="1020.77" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3084
</g>
3085
<g class="func_g" onmouseover="s('file_update_time (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
3086
<title>file_update_time (6 samples, 0.20%)</title><rect x="36.5" y="401" width="2.1" height="15.0" fill="rgb(230,64,21)" rx="2" ry="2" />
3087
<text text-anchor="" x="39.47" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3088
</g>
3089
<g class="func_g" onmouseover="s('hash_search (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3090
<title>hash_search (1 samples, 0.03%)</title><rect x="709.0" y="241" width="0.4" height="15.0" fill="rgb(211,4,12)" rx="2" ry="2" />
3091
<text text-anchor="" x="712.03" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3092
</g>
3093
<g class="func_g" onmouseover="s('sys_close (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3094
<title>sys_close (1 samples, 0.03%)</title><rect x="419.3" y="337" width="0.3" height="15.0" fill="rgb(242,208,40)" rx="2" ry="2" />
3095
<text text-anchor="" x="422.26" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3096
</g>
3097
<g class="func_g" onmouseover="s('generic_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3098
<title>generic_permission (1 samples, 0.03%)</title><rect x="570.6" y="177" width="0.3" height="15.0" fill="rgb(250,221,11)" rx="2" ry="2" />
3099
<text text-anchor="" x="573.59" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3100
</g>
3101
<g class="func_g" onmouseover="s('ext4_inode_attach_jinode (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3102
<title>ext4_inode_attach_jinode (2 samples, 0.07%)</title><rect x="578.8" y="193" width="0.7" height="15.0" fill="rgb(226,40,37)" rx="2" ry="2" />
3103
<text text-anchor="" x="581.82" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3104
</g>
3105
<g class="func_g" onmouseover="s('try_module_get (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3106
<title>try_module_get (1 samples, 0.03%)</title><rect x="583.1" y="193" width="0.4" height="15.0" fill="rgb(234,41,42)" rx="2" ry="2" />
3107
<text text-anchor="" x="586.11" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3108
</g>
3109
<g class="func_g" onmouseover="s('ima_match_policy (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3110
<title>ima_match_policy (1 samples, 0.03%)</title><rect x="566.3" y="177" width="0.4" height="15.0" fill="rgb(240,76,23)" rx="2" ry="2" />
3111
<text text-anchor="" x="569.29" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3112
</g>
3113
<g class="func_g" onmouseover="s('check_events (21 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
3114
<title>check_events (21 samples, 0.71%)</title><rect x="422.1" y="305" width="7.5" height="15.0" fill="rgb(239,205,47)" rx="2" ry="2" />
3115
<text text-anchor="" x="425.12" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3116
</g>
3117
<g class="func_g" onmouseover="s('__strtoll_internal (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3118
<title>__strtoll_internal (2 samples, 0.07%)</title><rect x="699.0" y="337" width="0.7" height="15.0" fill="rgb(244,189,18)" rx="2" ry="2" />
3119
<text text-anchor="" x="702.02" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3120
</g>
3121
<g class="func_g" onmouseover="s('ima_template_desc_current (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3122
<title>ima_template_desc_current (1 samples, 0.03%)</title><rect x="565.6" y="209" width="0.3" height="15.0" fill="rgb(247,38,20)" rx="2" ry="2" />
3123
<text text-anchor="" x="568.58" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3124
</g>
3125
<g class="func_g" onmouseover="s('dispose_word (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3126
<title>dispose_word (1 samples, 0.03%)</title><rect x="878.2" y="305" width="0.4" height="15.0" fill="rgb(222,212,28)" rx="2" ry="2" />
3127
<text text-anchor="" x="881.25" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3128
</g>
3129
<g class="func_g" onmouseover="s('dispose_words (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3130
<title>dispose_words (1 samples, 0.03%)</title><rect x="878.2" y="321" width="0.4" height="15.0" fill="rgb(231,216,36)" rx="2" ry="2" />
3131
<text text-anchor="" x="881.25" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3132
</g>
3133
<g class="func_g" onmouseover="s('xen_restore_fl_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3134
<title>xen_restore_fl_direct (1 samples, 0.03%)</title><rect x="440.0" y="305" width="0.4" height="15.0" fill="rgb(213,160,51)" rx="2" ry="2" />
3135
<text text-anchor="" x="443.01" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3136
</g>
3137
<g class="func_g" onmouseover="s('kmem_cache_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3138
<title>kmem_cache_free (2 samples, 0.07%)</title><rect x="150.2" y="385" width="0.8" height="15.0" fill="rgb(214,188,10)" rx="2" ry="2" />
3139
<text text-anchor="" x="153.24" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3140
</g>
3141
<g class="func_g" onmouseover="s('mutex_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3142
<title>mutex_lock (1 samples, 0.03%)</title><rect x="88.3" y="433" width="0.4" height="15.0" fill="rgb(241,193,8)" rx="2" ry="2" />
3143
<text text-anchor="" x="91.35" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3144
</g>
3145
<g class="func_g" onmouseover="s('make_builtin_argv (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3146
<title>make_builtin_argv (3 samples, 0.10%)</title><rect x="685.1" y="353" width="1.0" height="15.0" fill="rgb(224,175,23)" rx="2" ry="2" />
3147
<text text-anchor="" x="688.07" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3148
</g>
3149
<g class="func_g" onmouseover="s('from_kuid_munged (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3150
<title>from_kuid_munged (2 samples, 0.07%)</title><rect x="135.9" y="465" width="0.7" height="15.0" fill="rgb(248,29,8)" rx="2" ry="2" />
3151
<text text-anchor="" x="138.93" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3152
</g>
3153
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3154
<title>int_check_syscall_exit_work (10 samples, 0.34%)</title><rect x="318.4" y="321" width="3.6" height="15.0" fill="rgb(208,215,41)" rx="2" ry="2" />
3155
<text text-anchor="" x="321.38" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3156
</g>
3157
<g class="func_g" onmouseover="s('apparmor_file_alloc_security (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3158
<title>apparmor_file_alloc_security (2 samples, 0.07%)</title><rect x="587.8" y="225" width="0.7" height="15.0" fill="rgb(234,100,35)" rx="2" ry="2" />
3159
<text text-anchor="" x="590.76" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3160
</g>
3161
<g class="func_g" onmouseover="s('sh_malloc (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
3162
<title>sh_malloc (9 samples, 0.30%)</title><rect x="655.0" y="241" width="3.2" height="15.0" fill="rgb(232,134,44)" rx="2" ry="2" />
3163
<text text-anchor="" x="658.02" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3164
</g>
3165
<g class="func_g" onmouseover="s('getname_flags (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
3166
<title>getname_flags (7 samples, 0.24%)</title><rect x="147.4" y="417" width="2.5" height="15.0" fill="rgb(230,136,25)" rx="2" ry="2" />
3167
<text text-anchor="" x="150.37" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3168
</g>
3169
<g class="func_g" onmouseover="s('internal_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3170
<title>internal_free (1 samples, 0.03%)</title><rect x="654.3" y="225" width="0.4" height="15.0" fill="rgb(206,203,53)" rx="2" ry="2" />
3171
<text text-anchor="" x="657.30" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3172
</g>
3173
<g class="func_g" onmouseover="s('expand_word_list_internal (66 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
3174
<title>expand_word_list_internal (66 samples, 2.23%)</title><rect x="639.6" y="305" width="23.6" height="15.0" fill="rgb(242,101,39)" rx="2" ry="2" />
3175
<text text-anchor="" x="642.63" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >e..</text>
3176
</g>
3177
<g class="func_g" onmouseover="s('user_path_at (54 samples, 1.82%)')" onmouseout="c()" onclick="zoom(this)">
3178
<title>user_path_at (54 samples, 1.82%)</title><rect x="744.5" y="177" width="19.3" height="15.0" fill="rgb(233,179,17)" rx="2" ry="2" />
3179
<text text-anchor="" x="747.45" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3180
</g>
3181
<g class="func_g" onmouseover="s('internal_malloc (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
3182
<title>internal_malloc (7 samples, 0.24%)</title><rect x="1050.7" y="369" width="2.5" height="15.0" fill="rgb(251,179,54)" rx="2" ry="2" />
3183
<text text-anchor="" x="1053.68" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3184
</g>
3185
<g class="func_g" onmouseover="s('vfs_fstatat (61 samples, 2.06%)')" onmouseout="c()" onclick="zoom(this)">
3186
<title>vfs_fstatat (61 samples, 2.06%)</title><rect x="743.0" y="193" width="21.8" height="15.0" fill="rgb(245,137,42)" rx="2" ry="2" />
3187
<text text-anchor="" x="746.02" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >v..</text>
3188
</g>
3189
<g class="func_g" onmouseover="s('memset (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3190
<title>memset (1 samples, 0.03%)</title><rect x="168.1" y="529" width="0.4" height="15.0" fill="rgb(218,168,27)" rx="2" ry="2" />
3191
<text text-anchor="" x="171.12" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3192
</g>
3193
<g class="func_g" onmouseover="s('_IO_fflush (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3194
<title>_IO_fflush (1 samples, 0.03%)</title><rect x="409.6" y="353" width="0.4" height="15.0" fill="rgb(214,157,1)" rx="2" ry="2" />
3195
<text text-anchor="" x="412.60" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3196
</g>
3197
<g class="func_g" onmouseover="s('__strdup (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3198
<title>__strdup (2 samples, 0.07%)</title><rect x="1057.5" y="545" width="0.7" height="15.0" fill="rgb(251,41,49)" rx="2" ry="2" />
3199
<text text-anchor="" x="1060.48" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3200
</g>
3201
<g class="func_g" onmouseover="s('__offtime (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
3202
<title>__offtime (11 samples, 0.37%)</title><rect x="108.7" y="529" width="4.0" height="15.0" fill="rgb(234,132,11)" rx="2" ry="2" />
3203
<text text-anchor="" x="111.74" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3204
</g>
3205
<g class="func_g" onmouseover="s('SYSC_newstat (77 samples, 2.60%)')" onmouseout="c()" onclick="zoom(this)">
3206
<title>SYSC_newstat (77 samples, 2.60%)</title><rect x="737.3" y="209" width="27.5" height="15.0" fill="rgb(245,143,38)" rx="2" ry="2" />
3207
<text text-anchor="" x="740.30" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >S..</text>
3208
</g>
3209
<g class="func_g" onmouseover="s('get_unused_fd_flags (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3210
<title>get_unused_fd_flags (1 samples, 0.03%)</title><rect x="607.8" y="289" width="0.4" height="15.0" fill="rgb(237,194,36)" rx="2" ry="2" />
3211
<text text-anchor="" x="610.79" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3212
</g>
3213
<g class="func_g" onmouseover="s('cap_file_fcntl (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3214
<title>cap_file_fcntl (3 samples, 0.10%)</title><rect x="325.5" y="289" width="1.1" height="15.0" fill="rgb(230,163,48)" rx="2" ry="2" />
3215
<text text-anchor="" x="328.53" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3216
</g>
3217
<g class="func_g" onmouseover="s('int_signal (57 samples, 1.92%)')" onmouseout="c()" onclick="zoom(this)">
3218
<title>int_signal (57 samples, 1.92%)</title><rect x="343.1" y="321" width="20.4" height="15.0" fill="rgb(209,197,44)" rx="2" ry="2" />
3219
<text text-anchor="" x="346.06" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3220
</g>
3221
<g class="func_g" onmouseover="s('check_events (17 samples, 0.57%)')" onmouseout="c()" onclick="zoom(this)">
3222
<title>check_events (17 samples, 0.57%)</title><rect x="126.6" y="481" width="6.1" height="15.0" fill="rgb(231,56,3)" rx="2" ry="2" />
3223
<text text-anchor="" x="129.63" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3224
</g>
3225
<g class="func_g" onmouseover="s('find_variable (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3226
<title>find_variable (2 samples, 0.07%)</title><rect x="709.0" y="305" width="0.8" height="15.0" fill="rgb(213,206,13)" rx="2" ry="2" />
3227
<text text-anchor="" x="712.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3228
</g>
3229
<g class="func_g" onmouseover="s('syscall_trace_enter (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
3230
<title>syscall_trace_enter (15 samples, 0.51%)</title><rect x="466.5" y="321" width="5.3" height="15.0" fill="rgb(213,12,52)" rx="2" ry="2" />
3231
<text text-anchor="" x="469.48" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3232
</g>
3233
<g class="func_g" onmouseover="s('check_events (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3234
<title>check_events (1 samples, 0.03%)</title><rect x="54.7" y="321" width="0.4" height="15.0" fill="rgb(251,191,33)" rx="2" ry="2" />
3235
<text text-anchor="" x="57.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3236
</g>
3237
<g class="func_g" onmouseover="s('memset (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3238
<title>memset (1 samples, 0.03%)</title><rect x="623.2" y="273" width="0.3" height="15.0" fill="rgb(207,49,41)" rx="2" ry="2" />
3239
<text text-anchor="" x="626.18" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3240
</g>
3241
<g class="func_g" onmouseover="s('execute_simple_command (2,207 samples, 74.49%)')" onmouseout="c()" onclick="zoom(this)">
3242
<title>execute_simple_command (2,207 samples, 74.49%)</title><rect x="255.1" y="401" width="789.5" height="15.0" fill="rgb(220,60,50)" rx="2" ry="2" />
3243
<text text-anchor="" x="258.06" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >execute_simple_command</text>
3244
</g>
3245
<g class="func_g" onmouseover="s('__close_fd (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
3246
<title>__close_fd (5 samples, 0.17%)</title><rect x="419.6" y="305" width="1.8" height="15.0" fill="rgb(249,15,1)" rx="2" ry="2" />
3247
<text text-anchor="" x="422.62" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3248
</g>
3249
<g class="func_g" onmouseover="s('strvec_from_word_list (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3250
<title>strvec_from_word_list (1 samples, 0.03%)</title><rect x="716.5" y="321" width="0.4" height="15.0" fill="rgb(223,28,22)" rx="2" ry="2" />
3251
<text text-anchor="" x="719.55" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3252
</g>
3253
<g class="func_g" onmouseover="s('hash_lookup (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3254
<title>hash_lookup (10 samples, 0.34%)</title><rect x="273.7" y="337" width="3.5" height="15.0" fill="rgb(223,2,5)" rx="2" ry="2" />
3255
<text text-anchor="" x="276.66" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3256
</g>
3257
<g class="func_g" onmouseover="s('mntget (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3258
<title>mntget (1 samples, 0.03%)</title><rect x="572.7" y="225" width="0.4" height="15.0" fill="rgb(242,95,8)" rx="2" ry="2" />
3259
<text text-anchor="" x="575.73" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3260
</g>
3261
<g class="func_g" onmouseover="s('find_variable (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
3262
<title>find_variable (9 samples, 0.30%)</title><rect x="664.3" y="305" width="3.2" height="15.0" fill="rgb(252,61,42)" rx="2" ry="2" />
3263
<text text-anchor="" x="667.32" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3264
</g>
3265
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3266
<title>sh_free (1 samples, 0.03%)</title><rect x="716.9" y="337" width="0.4" height="15.0" fill="rgb(233,212,32)" rx="2" ry="2" />
3267
<text text-anchor="" x="719.91" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3268
</g>
3269
<g class="func_g" onmouseover="s('internal_free (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3270
<title>internal_free (10 samples, 0.34%)</title><rect x="659.7" y="209" width="3.5" height="15.0" fill="rgb(205,225,37)" rx="2" ry="2" />
3271
<text text-anchor="" x="662.67" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3272
</g>
3273
<g class="func_g" onmouseover="s('context_tracking_user_enter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3274
<title>context_tracking_user_enter (1 samples, 0.03%)</title><rect x="502.6" y="289" width="0.4" height="15.0" fill="rgb(229,190,37)" rx="2" ry="2" />
3275
<text text-anchor="" x="505.62" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3276
</g>
3277
<g class="func_g" onmouseover="s('dput (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3278
<title>dput (2 samples, 0.07%)</title><rect x="584.2" y="241" width="0.7" height="15.0" fill="rgb(216,32,7)" rx="2" ry="2" />
3279
<text text-anchor="" x="587.18" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3280
</g>
3281
<g class="func_g" onmouseover="s('groups_search (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3282
<title>groups_search (1 samples, 0.03%)</title><rect x="596.3" y="177" width="0.4" height="15.0" fill="rgb(252,73,18)" rx="2" ry="2" />
3283
<text text-anchor="" x="599.34" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3284
</g>
3285
<g class="func_g" onmouseover="s('add_unwind_protect_internal (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
3286
<title>add_unwind_protect_internal (5 samples, 0.17%)</title><rect x="232.2" y="385" width="1.7" height="15.0" fill="rgb(253,22,5)" rx="2" ry="2" />
3287
<text text-anchor="" x="235.16" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3288
</g>
3289
<g class="func_g" onmouseover="s('ext4_mark_inode_dirty (48 samples, 1.62%)')" onmouseout="c()" onclick="zoom(this)">
3290
<title>ext4_mark_inode_dirty (48 samples, 1.62%)</title><rect x="60.8" y="321" width="17.2" height="15.0" fill="rgb(235,124,44)" rx="2" ry="2" />
3291
<text text-anchor="" x="63.80" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3292
</g>
3293
<g class="func_g" onmouseover="s('block_write_end (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
3294
<title>block_write_end (4 samples, 0.13%)</title><rect x="78.7" y="353" width="1.4" height="15.0" fill="rgb(215,49,6)" rx="2" ry="2" />
3295
<text text-anchor="" x="81.69" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3296
</g>
3297
<g class="func_g" onmouseover="s('syscall_trace_enter (22 samples, 0.74%)')" onmouseout="c()" onclick="zoom(this)">
3298
<title>syscall_trace_enter (22 samples, 0.74%)</title><rect x="421.8" y="321" width="7.8" height="15.0" fill="rgb(235,36,52)" rx="2" ry="2" />
3299
<text text-anchor="" x="424.77" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3300
</g>
3301
<g class="func_g" onmouseover="s('ext4_reserve_inode_write (26 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
3302
<title>ext4_reserve_inode_write (26 samples, 0.88%)</title><rect x="68.0" y="305" width="9.3" height="15.0" fill="rgb(242,201,4)" rx="2" ry="2" />
3303
<text text-anchor="" x="70.95" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3304
</g>
3305
<g class="func_g" onmouseover="s('__inode_permission (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3306
<title>__inode_permission (2 samples, 0.07%)</title><rect x="595.3" y="225" width="0.7" height="15.0" fill="rgb(244,143,51)" rx="2" ry="2" />
3307
<text text-anchor="" x="598.27" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3308
</g>
3309
<g class="func_g" onmouseover="s('sh_xfree (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
3310
<title>sh_xfree (12 samples, 0.40%)</title><rect x="816.4" y="337" width="4.3" height="15.0" fill="rgb(231,104,14)" rx="2" ry="2" />
3311
<text text-anchor="" x="819.36" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3312
</g>
3313
<g class="func_g" onmouseover="s('memset (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3314
<title>memset (1 samples, 0.03%)</title><rect x="989.5" y="337" width="0.4" height="15.0" fill="rgb(216,48,19)" rx="2" ry="2" />
3315
<text text-anchor="" x="992.51" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3316
</g>
3317
<g class="func_g" onmouseover="s('syscall_trace_leave (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
3318
<title>syscall_trace_leave (15 samples, 0.51%)</title><rect x="552.7" y="305" width="5.4" height="15.0" fill="rgb(228,56,35)" rx="2" ry="2" />
3319
<text text-anchor="" x="555.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3320
</g>
3321
<g class="func_g" onmouseover="s('generic_fillattr (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3322
<title>generic_fillattr (2 samples, 0.07%)</title><rect x="154.9" y="401" width="0.7" height="15.0" fill="rgb(252,22,5)" rx="2" ry="2" />
3323
<text text-anchor="" x="157.89" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3324
</g>
3325
<g class="func_g" onmouseover="s('syscall_trace_leave (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3326
<title>syscall_trace_leave (10 samples, 0.34%)</title><rect x="457.5" y="321" width="3.6" height="15.0" fill="rgb(210,54,18)" rx="2" ry="2" />
3327
<text text-anchor="" x="460.54" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3328
</g>
3329
<g class="func_g" onmouseover="s('fput (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3330
<title>fput (3 samples, 0.10%)</title><rect x="369.2" y="257" width="1.0" height="15.0" fill="rgb(245,1,46)" rx="2" ry="2" />
3331
<text text-anchor="" x="372.18" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3332
</g>
3333
<g class="func_g" onmouseover="s('make_bare_word (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3334
<title>make_bare_word (2 samples, 0.07%)</title><rect x="636.4" y="305" width="0.7" height="15.0" fill="rgb(231,216,10)" rx="2" ry="2" />
3335
<text text-anchor="" x="639.41" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3336
</g>
3337
<g class="func_g" onmouseover="s('sh_xmalloc (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
3338
<title>sh_xmalloc (7 samples, 0.24%)</title><rect x="234.3" y="353" width="2.5" height="15.0" fill="rgb(219,225,47)" rx="2" ry="2" />
3339
<text text-anchor="" x="237.31" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3340
</g>
3341
<g class="func_g" onmouseover="s('locks_remove_posix (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3342
<title>locks_remove_posix (1 samples, 0.03%)</title><rect x="421.0" y="289" width="0.4" height="15.0" fill="rgb(219,129,13)" rx="2" ry="2" />
3343
<text text-anchor="" x="424.05" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3344
</g>
3345
<g class="func_g" onmouseover="s('__strftime_internal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3346
<title>__strftime_internal (1 samples, 0.03%)</title><rect x="10.0" y="497" width="0.4" height="15.0" fill="rgb(235,164,51)" rx="2" ry="2" />
3347
<text text-anchor="" x="13.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3348
</g>
3349
<g class="func_g" onmouseover="s('var_lookup (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
3350
<title>var_lookup (8 samples, 0.27%)</title><rect x="664.7" y="273" width="2.8" height="15.0" fill="rgb(238,221,42)" rx="2" ry="2" />
3351
<text text-anchor="" x="667.67" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3352
</g>
3353
<g class="func_g" onmouseover="s('syscall_trace_leave (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
3354
<title>syscall_trace_leave (5 samples, 0.17%)</title><rect x="341.3" y="305" width="1.8" height="15.0" fill="rgb(234,147,7)" rx="2" ry="2" />
3355
<text text-anchor="" x="344.27" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3356
</g>
3357
<g class="func_g" onmouseover="s('module_put (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3358
<title>module_put (2 samples, 0.07%)</title><rect x="361.7" y="257" width="0.7" height="15.0" fill="rgb(236,10,35)" rx="2" ry="2" />
3359
<text text-anchor="" x="364.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3360
</g>
3361
<g class="func_g" onmouseover="s('execute_command_internal (2,311 samples, 78.00%)')" onmouseout="c()" onclick="zoom(this)">
3362
<title>execute_command_internal (2,311 samples, 78.00%)</title><rect x="229.3" y="481" width="826.7" height="15.0" fill="rgb(231,227,3)" rx="2" ry="2" />
3363
<text text-anchor="" x="232.30" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >execute_command_internal</text>
3364
</g>
3365
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3366
<title>_raw_spin_unlock (1 samples, 0.03%)</title><rect x="513.3" y="289" width="0.4" height="15.0" fill="rgb(213,76,27)" rx="2" ry="2" />
3367
<text text-anchor="" x="516.35" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3368
</g>
3369
<g class="func_g" onmouseover="s('get_close_on_exec (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3370
<title>get_close_on_exec (1 samples, 0.03%)</title><rect x="518.7" y="289" width="0.4" height="15.0" fill="rgb(235,82,47)" rx="2" ry="2" />
3371
<text text-anchor="" x="521.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3372
</g>
3373
<g class="func_g" onmouseover="s('sh_free (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
3374
<title>sh_free (8 samples, 0.27%)</title><rect x="286.9" y="321" width="2.9" height="15.0" fill="rgb(210,25,17)" rx="2" ry="2" />
3375
<text text-anchor="" x="289.90" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3376
</g>
3377
<g class="func_g" onmouseover="s('execute_builtin (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3378
<title>execute_builtin (2 samples, 0.07%)</title><rect x="304.4" y="385" width="0.7" height="15.0" fill="rgb(244,67,30)" rx="2" ry="2" />
3379
<text text-anchor="" x="307.42" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3380
</g>
3381
<g class="func_g" onmouseover="s('sh_xfree (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3382
<title>sh_xfree (3 samples, 0.10%)</title><rect x="1037.4" y="385" width="1.1" height="15.0" fill="rgb(230,217,33)" rx="2" ry="2" />
3383
<text text-anchor="" x="1040.45" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3384
</g>
3385
<g class="func_g" onmouseover="s('printf_builtin (66 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
3386
<title>printf_builtin (66 samples, 2.23%)</title><rect x="686.1" y="353" width="23.7" height="15.0" fill="rgb(222,63,22)" rx="2" ry="2" />
3387
<text text-anchor="" x="689.14" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >p..</text>
3388
</g>
3389
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3390
<title>sh_free (1 samples, 0.03%)</title><rect x="645.4" y="257" width="0.3" height="15.0" fill="rgb(236,135,24)" rx="2" ry="2" />
3391
<text text-anchor="" x="648.36" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3392
</g>
3393
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3394
<title>xen_hypercall_xen_version (1 samples, 0.03%)</title><rect x="54.7" y="305" width="0.4" height="15.0" fill="rgb(232,105,24)" rx="2" ry="2" />
3395
<text text-anchor="" x="57.72" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3396
</g>
3397
<g class="func_g" onmouseover="s('kmem_cache_alloc (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
3398
<title>kmem_cache_alloc (4 samples, 0.13%)</title><rect x="43.3" y="337" width="1.4" height="15.0" fill="rgb(248,131,23)" rx="2" ry="2" />
3399
<text text-anchor="" x="46.27" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3400
</g>
3401
<g class="func_g" onmouseover="s('tracesys (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3402
<title>tracesys (1 samples, 0.03%)</title><rect x="219.6" y="529" width="0.4" height="15.0" fill="rgb(243,66,46)" rx="2" ry="2" />
3403
<text text-anchor="" x="222.64" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3404
</g>
3405
<g class="func_g" onmouseover="s('create_empty_buffers (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3406
<title>create_empty_buffers (1 samples, 0.03%)</title><rect x="41.8" y="337" width="0.4" height="15.0" fill="rgb(207,200,41)" rx="2" ry="2" />
3407
<text text-anchor="" x="44.84" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3408
</g>
3409
<g class="func_g" onmouseover="s('alloc_buffer_head (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3410
<title>alloc_buffer_head (1 samples, 0.03%)</title><rect x="41.8" y="305" width="0.4" height="15.0" fill="rgb(249,179,16)" rx="2" ry="2" />
3411
<text text-anchor="" x="44.84" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3412
</g>
3413
<g class="func_g" onmouseover="s('sh_xfree (16 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
3414
<title>sh_xfree (16 samples, 0.54%)</title><rect x="923.3" y="289" width="5.7" height="15.0" fill="rgb(209,18,22)" rx="2" ry="2" />
3415
<text text-anchor="" x="926.32" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3416
</g>
3417
<g class="func_g" onmouseover="s('syscall_trace_enter (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
3418
<title>syscall_trace_enter (18 samples, 0.61%)</title><rect x="445.4" y="321" width="6.4" height="15.0" fill="rgb(244,37,38)" rx="2" ry="2" />
3419
<text text-anchor="" x="448.38" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3420
</g>
3421
<g class="func_g" onmouseover="s('syscall_trace_leave (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3422
<title>syscall_trace_leave (10 samples, 0.34%)</title><rect x="318.4" y="305" width="3.6" height="15.0" fill="rgb(241,202,19)" rx="2" ry="2" />
3423
<text text-anchor="" x="321.38" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3424
</g>
3425
<g class="func_g" onmouseover="s('_IO_file_write@@GLIBC_2.2.5 (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3426
<title>_IO_file_write@@GLIBC_2.2.5 (2 samples, 0.07%)</title><rect x="171.7" y="545" width="0.7" height="15.0" fill="rgb(242,219,12)" rx="2" ry="2" />
3427
<text text-anchor="" x="174.70" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3428
</g>
3429
<g class="func_g" onmouseover="s('security_file_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3430
<title>security_file_free (2 samples, 0.07%)</title><rect x="362.4" y="257" width="0.7" height="15.0" fill="rgb(209,16,14)" rx="2" ry="2" />
3431
<text text-anchor="" x="365.38" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3432
</g>
3433
<g class="func_g" onmouseover="s('is_basic (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3434
<title>is_basic (3 samples, 0.10%)</title><rect x="974.1" y="305" width="1.1" height="15.0" fill="rgb(246,18,25)" rx="2" ry="2" />
3435
<text text-anchor="" x="977.12" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3436
</g>
3437
<g class="func_g" onmouseover="s('itos (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3438
<title>itos (1 samples, 0.03%)</title><rect x="1022.8" y="369" width="0.3" height="15.0" fill="rgb(238,138,9)" rx="2" ry="2" />
3439
<text text-anchor="" x="1025.78" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3440
</g>
3441
<g class="func_g" onmouseover="s('internal_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3442
<title>internal_free (1 samples, 0.03%)</title><rect x="639.3" y="257" width="0.3" height="15.0" fill="rgb(208,51,19)" rx="2" ry="2" />
3443
<text text-anchor="" x="642.27" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3444
</g>
3445
<g class="func_g" onmouseover="s('syscall_trace_leave (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
3446
<title>syscall_trace_leave (12 samples, 0.40%)</title><rect x="415.0" y="321" width="4.3" height="15.0" fill="rgb(215,112,51)" rx="2" ry="2" />
3447
<text text-anchor="" x="417.97" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3448
</g>
3449
<g class="func_g" onmouseover="s('glob_expand_word_list (83 samples, 2.80%)')" onmouseout="c()" onclick="zoom(this)">
3450
<title>glob_expand_word_list (83 samples, 2.80%)</title><rect x="799.9" y="353" width="29.7" height="15.0" fill="rgb(247,164,19)" rx="2" ry="2" />
3451
<text text-anchor="" x="802.90" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >gl..</text>
3452
</g>
3453
<g class="func_g" onmouseover="s('check_bash_input (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3454
<title>check_bash_input (1 samples, 0.03%)</title><rect x="402.4" y="321" width="0.4" height="15.0" fill="rgb(226,205,20)" rx="2" ry="2" />
3455
<text text-anchor="" x="405.45" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3456
</g>
3457
<g class="func_g" onmouseover="s('sh_malloc (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
3458
<title>sh_malloc (7 samples, 0.24%)</title><rect x="621.4" y="289" width="2.5" height="15.0" fill="rgb(240,101,11)" rx="2" ry="2" />
3459
<text text-anchor="" x="624.39" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3460
</g>
3461
<g class="func_g" onmouseover="s('__strftime_internal (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
3462
<title>__strftime_internal (9 samples, 0.30%)</title><rect x="112.7" y="529" width="3.2" height="15.0" fill="rgb(222,213,16)" rx="2" ry="2" />
3463
<text text-anchor="" x="115.67" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3464
</g>
3465
<g class="func_g" onmouseover="s('xen_restore_fl_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3466
<title>xen_restore_fl_direct (1 samples, 0.03%)</title><rect x="363.1" y="289" width="0.4" height="15.0" fill="rgb(218,136,13)" rx="2" ry="2" />
3467
<text text-anchor="" x="366.09" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3468
</g>
3469
<g class="func_g" onmouseover="s('ext4_has_inline_data (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3470
<title>ext4_has_inline_data (1 samples, 0.03%)</title><rect x="155.6" y="417" width="0.4" height="15.0" fill="rgb(252,120,10)" rx="2" ry="2" />
3471
<text text-anchor="" x="158.60" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3472
</g>
3473
<g class="func_g" onmouseover="s('list_reverse (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3474
<title>list_reverse (1 samples, 0.03%)</title><rect x="816.0" y="337" width="0.4" height="15.0" fill="rgb(229,85,9)" rx="2" ry="2" />
3475
<text text-anchor="" x="819.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3476
</g>
3477
<g class="func_g" onmouseover="s('vfs_getattr_nosec (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
3478
<title>vfs_getattr_nosec (5 samples, 0.17%)</title><rect x="154.2" y="433" width="1.8" height="15.0" fill="rgb(236,175,41)" rx="2" ry="2" />
3479
<text text-anchor="" x="157.17" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3480
</g>
3481
<g class="func_g" onmouseover="s('without_interrupts (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
3482
<title>without_interrupts (9 samples, 0.30%)</title><rect x="236.8" y="401" width="3.2" height="15.0" fill="rgb(205,18,51)" rx="2" ry="2" />
3483
<text text-anchor="" x="239.81" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3484
</g>
3485
<g class="func_g" onmouseover="s('check_events (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
3486
<title>check_events (14 samples, 0.47%)</title><rect x="343.4" y="289" width="5.0" height="15.0" fill="rgb(236,94,6)" rx="2" ry="2" />
3487
<text text-anchor="" x="346.42" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3488
</g>
3489
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
3490
<title>xen_hypercall_xen_version (15 samples, 0.51%)</title><rect x="552.7" y="273" width="5.4" height="15.0" fill="rgb(212,225,53)" rx="2" ry="2" />
3491
<text text-anchor="" x="555.70" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3492
</g>
3493
<g class="func_g" onmouseover="s('sh_free (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
3494
<title>sh_free (11 samples, 0.37%)</title><rect x="659.3" y="225" width="3.9" height="15.0" fill="rgb(250,131,1)" rx="2" ry="2" />
3495
<text text-anchor="" x="662.31" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3496
</g>
3497
<g class="func_g" onmouseover="s('from_kuid_munged (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
3498
<title>from_kuid_munged (4 samples, 0.13%)</title><rect x="740.5" y="193" width="1.4" height="15.0" fill="rgb(241,221,47)" rx="2" ry="2" />
3499
<text text-anchor="" x="743.52" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3500
</g>
3501
<g class="func_g" onmouseover="s('path_init (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3502
<title>path_init (1 samples, 0.03%)</title><rect x="561.3" y="257" width="0.3" height="15.0" fill="rgb(230,95,13)" rx="2" ry="2" />
3503
<text text-anchor="" x="564.29" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3504
</g>
3505
<g class="func_g" onmouseover="s('find_shell_builtin (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
3506
<title>find_shell_builtin (9 samples, 0.30%)</title><rect x="998.1" y="385" width="3.2" height="15.0" fill="rgb(225,61,3)" rx="2" ry="2" />
3507
<text text-anchor="" x="1001.09" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3508
</g>
3509
<g class="func_g" onmouseover="s('vfs_open (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3510
<title>vfs_open (1 samples, 0.03%)</title><rect x="600.3" y="241" width="0.3" height="15.0" fill="rgb(236,64,54)" rx="2" ry="2" />
3511
<text text-anchor="" x="603.28" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3512
</g>
3513
<g class="func_g" onmouseover="s('find_variable_internal (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
3514
<title>find_variable_internal (8 samples, 0.27%)</title><rect x="664.7" y="289" width="2.8" height="15.0" fill="rgb(218,132,38)" rx="2" ry="2" />
3515
<text text-anchor="" x="667.67" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3516
</g>
3517
<g class="func_g" onmouseover="s('kfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3518
<title>kfree (1 samples, 0.03%)</title><rect x="357.0" y="193" width="0.4" height="15.0" fill="rgb(253,45,18)" rx="2" ry="2" />
3519
<text text-anchor="" x="360.01" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3520
</g>
3521
<g class="func_g" onmouseover="s('__GI___strcmp_ssse3 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3522
<title>__GI___strcmp_ssse3 (1 samples, 0.03%)</title><rect x="998.5" y="369" width="0.3" height="15.0" fill="rgb(241,122,54)" rx="2" ry="2" />
3523
<text text-anchor="" x="1001.45" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3524
</g>
3525
<g class="func_g" onmouseover="s('sh_free (16 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
3526
<title>sh_free (16 samples, 0.54%)</title><rect x="297.6" y="337" width="5.8" height="15.0" fill="rgb(210,4,7)" rx="2" ry="2" />
3527
<text text-anchor="" x="300.63" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3528
</g>
3529
<g class="func_g" onmouseover="s('__GI___strcmp_ssse3 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3530
<title>__GI___strcmp_ssse3 (1 samples, 0.03%)</title><rect x="1025.6" y="289" width="0.4" height="15.0" fill="rgb(247,38,46)" rx="2" ry="2" />
3531
<text text-anchor="" x="1028.64" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3532
</g>
3533
<g class="func_g" onmouseover="s('sys_dup2 (21 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
3534
<title>sys_dup2 (21 samples, 0.71%)</title><rect x="363.8" y="305" width="7.5" height="15.0" fill="rgb(247,29,14)" rx="2" ry="2" />
3535
<text text-anchor="" x="366.81" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3536
</g>
3537
<g class="func_g" onmouseover="s('internal_free (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
3538
<title>internal_free (11 samples, 0.37%)</title><rect x="816.7" y="305" width="4.0" height="15.0" fill="rgb(246,36,38)" rx="2" ry="2" />
3539
<text text-anchor="" x="819.72" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3540
</g>
3541
<g class="func_g" onmouseover="s('__tzstring (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3542
<title>__tzstring (2 samples, 0.07%)</title><rect x="1058.2" y="545" width="0.7" height="15.0" fill="rgb(210,118,53)" rx="2" ry="2" />
3543
<text text-anchor="" x="1061.19" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3544
</g>
3545
<g class="func_g" onmouseover="s('sh_xmalloc (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
3546
<title>sh_xmalloc (9 samples, 0.30%)</title><rect x="1041.4" y="337" width="3.2" height="15.0" fill="rgb(231,90,21)" rx="2" ry="2" />
3547
<text text-anchor="" x="1044.38" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3548
</g>
3549
<g class="func_g" onmouseover="s('word_list_remove_quoted_nulls (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
3550
<title>word_list_remove_quoted_nulls (12 samples, 0.40%)</title><rect x="992.7" y="337" width="4.3" height="15.0" fill="rgb(248,161,46)" rx="2" ry="2" />
3551
<text text-anchor="" x="995.73" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3552
</g>
3553
<g class="func_g" onmouseover="s('copy_redirect (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3554
<title>copy_redirect (1 samples, 0.03%)</title><rect x="620.3" y="305" width="0.4" height="15.0" fill="rgb(247,158,26)" rx="2" ry="2" />
3555
<text text-anchor="" x="623.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3556
</g>
3557
<g class="func_g" onmouseover="s('unwind_protect_mem (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
3558
<title>unwind_protect_mem (11 samples, 0.37%)</title><rect x="1040.7" y="385" width="3.9" height="15.0" fill="rgb(235,142,42)" rx="2" ry="2" />
3559
<text text-anchor="" x="1043.66" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3560
</g>
3561
<g class="func_g" onmouseover="s('internal_malloc (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
3562
<title>internal_malloc (5 samples, 0.17%)</title><rect x="621.4" y="273" width="1.8" height="15.0" fill="rgb(244,220,49)" rx="2" ry="2" />
3563
<text text-anchor="" x="624.39" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3564
</g>
3565
<g class="func_g" onmouseover="s('rw_verify_area (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
3566
<title>rw_verify_area (6 samples, 0.20%)</title><rect x="90.5" y="465" width="2.1" height="15.0" fill="rgb(216,99,48)" rx="2" ry="2" />
3567
<text text-anchor="" x="93.49" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3568
</g>
3569
<g class="func_g" onmouseover="s('final_putname (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3570
<title>final_putname (3 samples, 0.10%)</title><rect x="606.7" y="257" width="1.1" height="15.0" fill="rgb(230,120,18)" rx="2" ry="2" />
3571
<text text-anchor="" x="609.72" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3572
</g>
3573
<g class="func_g" onmouseover="s('sh_xmalloc (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
3574
<title>sh_xmalloc (6 samples, 0.20%)</title><rect x="278.0" y="321" width="2.1" height="15.0" fill="rgb(231,119,30)" rx="2" ry="2" />
3575
<text text-anchor="" x="280.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3576
</g>
3577
<g class="func_g" onmouseover="s('ext4_getattr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3578
<title>ext4_getattr (1 samples, 0.03%)</title><rect x="152.7" y="433" width="0.4" height="15.0" fill="rgb(225,85,32)" rx="2" ry="2" />
3579
<text text-anchor="" x="155.74" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3580
</g>
3581
<g class="func_g" onmouseover="s('locks_remove_flock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3582
<title>locks_remove_flock (1 samples, 0.03%)</title><rect x="354.9" y="241" width="0.3" height="15.0" fill="rgb(248,173,52)" rx="2" ry="2" />
3583
<text text-anchor="" x="357.87" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3584
</g>
3585
<g class="func_g" onmouseover="s('rw_verify_area (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3586
<title>rw_verify_area (3 samples, 0.10%)</title><rect x="27.2" y="481" width="1.0" height="15.0" fill="rgb(234,214,22)" rx="2" ry="2" />
3587
<text text-anchor="" x="30.17" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3588
</g>
3589
<g class="func_g" onmouseover="s('__strcpy_ssse3 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3590
<title>__strcpy_ssse3 (1 samples, 0.03%)</title><rect x="642.5" y="257" width="0.4" height="15.0" fill="rgb(206,193,28)" rx="2" ry="2" />
3591
<text text-anchor="" x="645.49" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3592
</g>
3593
<g class="func_g" onmouseover="s('sh_xfree (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
3594
<title>sh_xfree (18 samples, 0.61%)</title><rect x="296.9" y="353" width="6.5" height="15.0" fill="rgb(235,208,20)" rx="2" ry="2" />
3595
<text text-anchor="" x="299.91" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3596
</g>
3597
<g class="func_g" onmouseover="s('malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3598
<title>malloc (2 samples, 0.07%)</title><rect x="1057.5" y="529" width="0.7" height="15.0" fill="rgb(222,220,48)" rx="2" ry="2" />
3599
<text text-anchor="" x="1060.48" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3600
</g>
3601
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3602
<title>xen_hypercall_xen_version (10 samples, 0.34%)</title><rect x="457.5" y="289" width="3.6" height="15.0" fill="rgb(216,67,51)" rx="2" ry="2" />
3603
<text text-anchor="" x="460.54" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3604
</g>
3605
<g class="func_g" onmouseover="s('sys_newstat (65 samples, 2.19%)')" onmouseout="c()" onclick="zoom(this)">
3606
<title>sys_newstat (65 samples, 2.19%)</title><rect x="134.1" y="497" width="23.3" height="15.0" fill="rgb(241,54,28)" rx="2" ry="2" />
3607
<text text-anchor="" x="137.14" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
3608
</g>
3609
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
3610
<title>xen_hypercall_xen_version (15 samples, 0.51%)</title><rect x="17.9" y="465" width="5.3" height="15.0" fill="rgb(207,78,46)" rx="2" ry="2" />
3611
<text text-anchor="" x="20.87" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3612
</g>
3613
<g class="func_g" onmouseover="s('strvec_from_word_list (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3614
<title>strvec_from_word_list (2 samples, 0.07%)</title><rect x="718.3" y="337" width="0.8" height="15.0" fill="rgb(227,142,48)" rx="2" ry="2" />
3615
<text text-anchor="" x="721.34" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3616
</g>
3617
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3618
<title>sh_xfree (1 samples, 0.03%)</title><rect x="672.2" y="353" width="0.3" height="15.0" fill="rgb(212,178,51)" rx="2" ry="2" />
3619
<text text-anchor="" x="675.19" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3620
</g>
3621
<g class="func_g" onmouseover="s('var_lookup (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
3622
<title>var_lookup (8 samples, 0.27%)</title><rect x="1025.3" y="321" width="2.8" height="15.0" fill="rgb(237,20,23)" rx="2" ry="2" />
3623
<text text-anchor="" x="1028.28" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3624
</g>
3625
<g class="func_g" onmouseover="s('hash_search (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
3626
<title>hash_search (6 samples, 0.20%)</title><rect x="1026.0" y="289" width="2.1" height="15.0" fill="rgb(211,35,22)" rx="2" ry="2" />
3627
<text text-anchor="" x="1029.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3628
</g>
3629
<g class="func_g" onmouseover="s('check_events (24 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
3630
<title>check_events (24 samples, 0.81%)</title><rect x="157.4" y="481" width="8.6" height="15.0" fill="rgb(234,226,17)" rx="2" ry="2" />
3631
<text text-anchor="" x="160.39" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3632
</g>
3633
<g class="func_g" onmouseover="s('_cond_resched (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3634
<title>_cond_resched (2 samples, 0.07%)</title><rect x="603.1" y="241" width="0.8" height="15.0" fill="rgb(237,194,38)" rx="2" ry="2" />
3635
<text text-anchor="" x="606.14" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3636
</g>
3637
<g class="func_g" onmouseover="s('dquot_file_open (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
3638
<title>dquot_file_open (4 samples, 0.13%)</title><rect x="576.3" y="177" width="1.4" height="15.0" fill="rgb(215,202,37)" rx="2" ry="2" />
3639
<text text-anchor="" x="579.31" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3640
</g>
3641
<g class="func_g" onmouseover="s('without_interrupts (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3642
<title>without_interrupts (10 samples, 0.34%)</title><rect x="1041.0" y="369" width="3.6" height="15.0" fill="rgb(240,32,18)" rx="2" ry="2" />
3643
<text text-anchor="" x="1044.02" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3644
</g>
3645
<g class="func_g" onmouseover="s('__fpurge (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3646
<title>__fpurge (2 samples, 0.07%)</title><rect x="616.7" y="337" width="0.8" height="15.0" fill="rgb(213,227,43)" rx="2" ry="2" />
3647
<text text-anchor="" x="619.74" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3648
</g>
3649
<g class="func_g" onmouseover="s('fileno (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3650
<title>fileno (2 samples, 0.07%)</title><rect x="671.1" y="353" width="0.7" height="15.0" fill="rgb(242,129,17)" rx="2" ry="2" />
3651
<text text-anchor="" x="674.11" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3652
</g>
3653
<g class="func_g" onmouseover="s('alloc_word_desc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3654
<title>alloc_word_desc (3 samples, 0.10%)</title><rect x="867.9" y="321" width="1.0" height="15.0" fill="rgb(239,158,27)" rx="2" ry="2" />
3655
<text text-anchor="" x="870.87" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3656
</g>
3657
<g class="func_g" onmouseover="s('strvec_dispose (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3658
<title>strvec_dispose (1 samples, 0.03%)</title><rect x="997.0" y="353" width="0.4" height="15.0" fill="rgb(219,183,41)" rx="2" ry="2" />
3659
<text text-anchor="" x="1000.02" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3660
</g>
3661
<g class="func_g" onmouseover="s('mnt_want_write (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3662
<title>mnt_want_write (3 samples, 0.10%)</title><rect x="571.7" y="225" width="1.0" height="15.0" fill="rgb(216,127,53)" rx="2" ry="2" />
3663
<text text-anchor="" x="574.66" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3664
</g>
3665
<g class="func_g" onmouseover="s('without_interrupts (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
3666
<title>without_interrupts (5 samples, 0.17%)</title><rect x="265.4" y="369" width="1.8" height="15.0" fill="rgb(234,30,5)" rx="2" ry="2" />
3667
<text text-anchor="" x="268.43" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3668
</g>
3669
<g class="func_g" onmouseover="s('getenv (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3670
<title>getenv (1 samples, 0.03%)</title><rect x="1069.3" y="545" width="0.3" height="15.0" fill="rgb(213,142,15)" rx="2" ry="2" />
3671
<text text-anchor="" x="1072.28" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3672
</g>
3673
<g class="func_g" onmouseover="s('user_path_at (37 samples, 1.25%)')" onmouseout="c()" onclick="zoom(this)">
3674
<title>user_path_at (37 samples, 1.25%)</title><rect x="138.1" y="449" width="13.2" height="15.0" fill="rgb(242,115,18)" rx="2" ry="2" />
3675
<text text-anchor="" x="141.07" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3676
</g>
3677
<g class="func_g" onmouseover="s('getname_flags (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
3678
<title>getname_flags (7 samples, 0.24%)</title><rect x="602.4" y="257" width="2.5" height="15.0" fill="rgb(226,37,49)" rx="2" ry="2" />
3679
<text text-anchor="" x="605.43" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3680
</g>
3681
<g class="func_g" onmouseover="s('sys_write (193 samples, 6.51%)')" onmouseout="c()" onclick="zoom(this)">
3682
<title>sys_write (193 samples, 6.51%)</title><rect x="25.0" y="497" width="69.1" height="15.0" fill="rgb(237,69,52)" rx="2" ry="2" />
3683
<text text-anchor="" x="28.03" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sys_write</text>
3684
</g>
3685
<g class="func_g" onmouseover="s('sh_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3686
<title>sh_free (2 samples, 0.07%)</title><rect x="670.4" y="321" width="0.7" height="15.0" fill="rgb(235,33,11)" rx="2" ry="2" />
3687
<text text-anchor="" x="673.40" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3688
</g>
3689
<g class="func_g" onmouseover="s('internal_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3690
<title>internal_free (1 samples, 0.03%)</title><rect x="297.3" y="337" width="0.3" height="15.0" fill="rgb(210,0,12)" rx="2" ry="2" />
3691
<text text-anchor="" x="300.27" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3692
</g>
3693
<g class="func_g" onmouseover="s('check_events (26 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
3694
<title>check_events (26 samples, 0.88%)</title><rect x="172.4" y="529" width="9.3" height="15.0" fill="rgb(216,96,35)" rx="2" ry="2" />
3695
<text text-anchor="" x="175.42" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3696
</g>
3697
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3698
<title>sh_xfree (1 samples, 0.03%)</title><rect x="645.4" y="273" width="0.3" height="15.0" fill="rgb(252,122,14)" rx="2" ry="2" />
3699
<text text-anchor="" x="648.36" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3700
</g>
3701
<g class="func_g" onmouseover="s('jbd2_journal_put_journal_head (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3702
<title>jbd2_journal_put_journal_head (1 samples, 0.03%)</title><rect x="72.2" y="257" width="0.4" height="15.0" fill="rgb(234,208,19)" rx="2" ry="2" />
3703
<text text-anchor="" x="75.25" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3704
</g>
3705
<g class="func_g" onmouseover="s('fput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3706
<title>fput (1 samples, 0.03%)</title><rect x="396.4" y="257" width="0.3" height="15.0" fill="rgb(235,140,19)" rx="2" ry="2" />
3707
<text text-anchor="" x="399.37" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3708
</g>
3709
<g class="func_g" onmouseover="s('apparmor_file_open (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3710
<title>apparmor_file_open (3 samples, 0.10%)</title><rect x="581.0" y="177" width="1.0" height="15.0" fill="rgb(224,225,25)" rx="2" ry="2" />
3711
<text text-anchor="" x="583.96" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3712
</g>
3713
<g class="func_g" onmouseover="s('internal_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3714
<title>internal_malloc (2 samples, 0.07%)</title><rect x="874.0" y="257" width="0.7" height="15.0" fill="rgb(227,221,34)" rx="2" ry="2" />
3715
<text text-anchor="" x="876.96" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3716
</g>
3717
<g class="func_g" onmouseover="s('_IO_fflush (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3718
<title>_IO_fflush (1 samples, 0.03%)</title><rect x="263.3" y="385" width="0.3" height="15.0" fill="rgb(206,52,44)" rx="2" ry="2" />
3719
<text text-anchor="" x="266.28" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3720
</g>
3721
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
3722
<title>xen_hypercall_xen_version (14 samples, 0.47%)</title><rect x="343.4" y="273" width="5.0" height="15.0" fill="rgb(231,76,24)" rx="2" ry="2" />
3723
<text text-anchor="" x="346.42" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3724
</g>
3725
<g class="func_g" onmouseover="s('strlen@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3726
<title>strlen@plt (1 samples, 0.03%)</title><rect x="875.4" y="305" width="0.3" height="15.0" fill="rgb(231,229,43)" rx="2" ry="2" />
3727
<text text-anchor="" x="878.39" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3728
</g>
3729
<g class="func_g" onmouseover="s('_cond_resched (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3730
<title>_cond_resched (3 samples, 0.10%)</title><rect x="84.8" y="417" width="1.0" height="15.0" fill="rgb(226,131,28)" rx="2" ry="2" />
3731
<text text-anchor="" x="87.77" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3732
</g>
3733
<g class="func_g" onmouseover="s('path_init (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3734
<title>path_init (1 samples, 0.03%)</title><rect x="138.8" y="401" width="0.3" height="15.0" fill="rgb(254,228,36)" rx="2" ry="2" />
3735
<text text-anchor="" x="141.79" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3736
</g>
3737
<g class="func_g" onmouseover="s('hash_lookup (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
3738
<title>hash_lookup (8 samples, 0.27%)</title><rect x="664.7" y="257" width="2.8" height="15.0" fill="rgb(220,118,4)" rx="2" ry="2" />
3739
<text text-anchor="" x="667.67" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3740
</g>
3741
<g class="func_g" onmouseover="s('final_putname (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
3742
<title>final_putname (4 samples, 0.13%)</title><rect x="761.6" y="129" width="1.5" height="15.0" fill="rgb(217,151,50)" rx="2" ry="2" />
3743
<text text-anchor="" x="764.62" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3744
</g>
3745
<g class="func_g" onmouseover="s('internal_free (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
3746
<title>internal_free (5 samples, 0.17%)</title><rect x="280.1" y="305" width="1.8" height="15.0" fill="rgb(211,178,22)" rx="2" ry="2" />
3747
<text text-anchor="" x="283.10" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3748
</g>
3749
<g class="func_g" onmouseover="s('__tz_convert (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3750
<title>__tz_convert (1 samples, 0.03%)</title><rect x="683.3" y="353" width="0.3" height="15.0" fill="rgb(240,209,47)" rx="2" ry="2" />
3751
<text text-anchor="" x="686.28" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3752
</g>
3753
<g class="func_g" onmouseover="s('dispose_word (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
3754
<title>dispose_word (4 samples, 0.13%)</title><rect x="638.2" y="305" width="1.4" height="15.0" fill="rgb(209,53,41)" rx="2" ry="2" />
3755
<text text-anchor="" x="641.20" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3756
</g>
3757
<g class="func_g" onmouseover="s('_longjmp_unwind (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3758
<title>_longjmp_unwind (1 samples, 0.03%)</title><rect x="1068.9" y="545" width="0.4" height="15.0" fill="rgb(249,69,2)" rx="2" ry="2" />
3759
<text text-anchor="" x="1071.93" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3760
</g>
3761
<g class="func_g" onmouseover="s('getname_flags (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3762
<title>getname_flags (2 samples, 0.07%)</title><rect x="606.0" y="273" width="0.7" height="15.0" fill="rgb(214,102,23)" rx="2" ry="2" />
3763
<text text-anchor="" x="609.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3764
</g>
3765
<g class="func_g" onmouseover="s('from_kuid_munged (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3766
<title>from_kuid_munged (1 samples, 0.03%)</title><rect x="739.4" y="177" width="0.4" height="15.0" fill="rgb(235,226,10)" rx="2" ry="2" />
3767
<text text-anchor="" x="742.44" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3768
</g>
3769
<g class="func_g" onmouseover="s('strlen@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3770
<title>strlen@plt (1 samples, 0.03%)</title><rect x="715.1" y="353" width="0.4" height="15.0" fill="rgb(218,71,27)" rx="2" ry="2" />
3771
<text text-anchor="" x="718.12" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3772
</g>
3773
<g class="func_g" onmouseover="s('mntput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3774
<title>mntput (1 samples, 0.03%)</title><rect x="743.7" y="177" width="0.4" height="15.0" fill="rgb(226,195,1)" rx="2" ry="2" />
3775
<text text-anchor="" x="746.74" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3776
</g>
3777
<g class="func_g" onmouseover="s('user_path_at_empty (52 samples, 1.75%)')" onmouseout="c()" onclick="zoom(this)">
3778
<title>user_path_at_empty (52 samples, 1.75%)</title><rect x="745.2" y="161" width="18.6" height="15.0" fill="rgb(217,35,8)" rx="2" ry="2" />
3779
<text text-anchor="" x="748.17" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3780
</g>
3781
<g class="func_g" onmouseover="s('gmatch (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3782
<title>gmatch (1 samples, 0.03%)</title><rect x="627.8" y="257" width="0.4" height="15.0" fill="rgb(229,25,2)" rx="2" ry="2" />
3783
<text text-anchor="" x="630.83" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3784
</g>
3785
<g class="func_g" onmouseover="s('filp_close (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3786
<title>filp_close (10 samples, 0.34%)</title><rect x="367.4" y="273" width="3.6" height="15.0" fill="rgb(215,8,30)" rx="2" ry="2" />
3787
<text text-anchor="" x="370.39" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3788
</g>
3789
<g class="func_g" onmouseover="s('internal_free (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
3790
<title>internal_free (4 samples, 0.13%)</title><rect x="238.6" y="337" width="1.4" height="15.0" fill="rgb(237,151,16)" rx="2" ry="2" />
3791
<text text-anchor="" x="241.60" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3792
</g>
3793
<g class="func_g" onmouseover="s('do_redirections (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3794
<title>do_redirections (1 samples, 0.03%)</title><rect x="304.1" y="385" width="0.3" height="15.0" fill="rgb(205,142,25)" rx="2" ry="2" />
3795
<text text-anchor="" x="307.07" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3796
</g>
3797
<g class="func_g" onmouseover="s('internal_malloc (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
3798
<title>internal_malloc (6 samples, 0.20%)</title><rect x="1042.5" y="305" width="2.1" height="15.0" fill="rgb(253,49,31)" rx="2" ry="2" />
3799
<text text-anchor="" x="1045.45" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3800
</g>
3801
<g class="func_g" onmouseover="s('memset (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3802
<title>memset (1 samples, 0.03%)</title><rect x="995.6" y="321" width="0.3" height="15.0" fill="rgb(244,145,15)" rx="2" ry="2" />
3803
<text text-anchor="" x="998.59" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3804
</g>
3805
<g class="func_g" onmouseover="s('__strchr_sse2 (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3806
<title>__strchr_sse2 (3 samples, 0.10%)</title><rect x="804.2" y="337" width="1.1" height="15.0" fill="rgb(215,189,11)" rx="2" ry="2" />
3807
<text text-anchor="" x="807.20" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3808
</g>
3809
<g class="func_g" onmouseover="s('add_unwind_protect_internal (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3810
<title>add_unwind_protect_internal (2 samples, 0.07%)</title><rect x="231.4" y="401" width="0.8" height="15.0" fill="rgb(212,78,6)" rx="2" ry="2" />
3811
<text text-anchor="" x="234.44" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3812
</g>
3813
<g class="func_g" onmouseover="s('complete_walk (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3814
<title>complete_walk (2 samples, 0.07%)</title><rect x="747.0" y="113" width="0.7" height="15.0" fill="rgb(240,1,10)" rx="2" ry="2" />
3815
<text text-anchor="" x="749.96" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3816
</g>
3817
<g class="func_g" onmouseover="s('fpurge (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3818
<title>fpurge (1 samples, 0.03%)</title><rect x="625.7" y="337" width="0.3" height="15.0" fill="rgb(219,173,46)" rx="2" ry="2" />
3819
<text text-anchor="" x="628.68" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3820
</g>
3821
<g class="func_g" onmouseover="s('__tzstring (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3822
<title>__tzstring (2 samples, 0.07%)</title><rect x="119.1" y="529" width="0.7" height="15.0" fill="rgb(242,149,27)" rx="2" ry="2" />
3823
<text text-anchor="" x="122.11" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3824
</g>
3825
<g class="func_g" onmouseover="s('xen_restore_fl_direct (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3826
<title>xen_restore_fl_direct (2 samples, 0.07%)</title><rect x="393.1" y="273" width="0.8" height="15.0" fill="rgb(235,62,13)" rx="2" ry="2" />
3827
<text text-anchor="" x="396.15" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3828
</g>
3829
<g class="func_g" onmouseover="s('memset (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3830
<title>memset (1 samples, 0.03%)</title><rect x="963.0" y="289" width="0.4" height="15.0" fill="rgb(206,21,47)" rx="2" ry="2" />
3831
<text text-anchor="" x="966.03" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3832
</g>
3833
<g class="func_g" onmouseover="s('page_mapping (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3834
<title>page_mapping (1 samples, 0.03%)</title><rect x="51.5" y="353" width="0.4" height="15.0" fill="rgb(247,202,25)" rx="2" ry="2" />
3835
<text text-anchor="" x="54.50" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3836
</g>
3837
<g class="func_g" onmouseover="s('dispose_word_desc (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
3838
<title>dispose_word_desc (4 samples, 0.13%)</title><rect x="896.5" y="305" width="1.4" height="15.0" fill="rgb(213,189,24)" rx="2" ry="2" />
3839
<text text-anchor="" x="899.49" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3840
</g>
3841
<g class="func_g" onmouseover="s('sh_free (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
3842
<title>sh_free (11 samples, 0.37%)</title><rect x="816.7" y="321" width="4.0" height="15.0" fill="rgb(253,184,2)" rx="2" ry="2" />
3843
<text text-anchor="" x="819.72" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3844
</g>
3845
<g class="func_g" onmouseover="s('__percpu_counter_add (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3846
<title>__percpu_counter_add (2 samples, 0.07%)</title><rect x="358.8" y="257" width="0.7" height="15.0" fill="rgb(249,26,20)" rx="2" ry="2" />
3847
<text text-anchor="" x="361.80" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3848
</g>
3849
<g class="func_g" onmouseover="s('security_file_open (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
3850
<title>security_file_open (6 samples, 0.20%)</title><rect x="581.0" y="193" width="2.1" height="15.0" fill="rgb(233,65,36)" rx="2" ry="2" />
3851
<text text-anchor="" x="583.96" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3852
</g>
3853
<g class="func_g" onmouseover="s('sh_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3854
<title>sh_malloc (2 samples, 0.07%)</title><rect x="653.2" y="225" width="0.7" height="15.0" fill="rgb(240,86,30)" rx="2" ry="2" />
3855
<text text-anchor="" x="656.23" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3856
</g>
3857
<g class="func_g" onmouseover="s('bit_waitqueue (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3858
<title>bit_waitqueue (1 samples, 0.03%)</title><rect x="69.0" y="225" width="0.4" height="15.0" fill="rgb(205,41,24)" rx="2" ry="2" />
3859
<text text-anchor="" x="72.03" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3860
</g>
3861
<g class="func_g" onmouseover="s('xen_restore_fl_direct (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3862
<title>xen_restore_fl_direct (2 samples, 0.07%)</title><rect x="503.0" y="289" width="0.7" height="15.0" fill="rgb(228,93,10)" rx="2" ry="2" />
3863
<text text-anchor="" x="505.97" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3864
</g>
3865
<g class="func_g" onmouseover="s('putchar (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
3866
<title>putchar (5 samples, 0.17%)</title><rect x="704.4" y="337" width="1.8" height="15.0" fill="rgb(209,93,5)" rx="2" ry="2" />
3867
<text text-anchor="" x="707.38" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3868
</g>
3869
<g class="func_g" onmouseover="s('__GI___libc_fcntl (191 samples, 6.45%)')" onmouseout="c()" onclick="zoom(this)">
3870
<title>__GI___libc_fcntl (191 samples, 6.45%)</title><rect x="474.0" y="337" width="68.3" height="15.0" fill="rgb(240,10,8)" rx="2" ry="2" />
3871
<text text-anchor="" x="477.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__GI___..</text>
3872
</g>
3873
<g class="func_g" onmouseover="s('fix_assignment_words (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3874
<title>fix_assignment_words (3 samples, 0.10%)</title><rect x="1045.7" y="401" width="1.0" height="15.0" fill="rgb(241,134,2)" rx="2" ry="2" />
3875
<text text-anchor="" x="1048.67" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3876
</g>
3877
<g class="func_g" onmouseover="s('add_unwind_protect (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3878
<title>add_unwind_protect (1 samples, 0.03%)</title><rect x="252.9" y="401" width="0.4" height="15.0" fill="rgb(213,137,32)" rx="2" ry="2" />
3879
<text text-anchor="" x="255.91" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3880
</g>
3881
<g class="func_g" onmouseover="s('command_print_word_list (32 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
3882
<title>command_print_word_list (32 samples, 1.08%)</title><rect x="1005.6" y="369" width="11.5" height="15.0" fill="rgb(219,193,3)" rx="2" ry="2" />
3883
<text text-anchor="" x="1008.61" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3884
</g>
3885
<g class="func_g" onmouseover="s('expand_words (610 samples, 20.59%)')" onmouseout="c()" onclick="zoom(this)">
3886
<title>expand_words (610 samples, 20.59%)</title><rect x="779.5" y="385" width="218.2" height="15.0" fill="rgb(212,211,48)" rx="2" ry="2" />
3887
<text text-anchor="" x="782.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >expand_words</text>
3888
</g>
3889
<g class="func_g" onmouseover="s('alloc_word_desc (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
3890
<title>alloc_word_desc (6 samples, 0.20%)</title><rect x="931.2" y="305" width="2.1" height="15.0" fill="rgb(226,30,44)" rx="2" ry="2" />
3891
<text text-anchor="" x="934.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3892
</g>
3893
<g class="func_g" onmouseover="s('var_lookup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3894
<title>var_lookup (1 samples, 0.03%)</title><rect x="709.0" y="273" width="0.4" height="15.0" fill="rgb(228,181,43)" rx="2" ry="2" />
3895
<text text-anchor="" x="712.03" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3896
</g>
3897
<g class="func_g" onmouseover="s('lockref_get_not_dead (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3898
<title>lockref_get_not_dead (2 samples, 0.07%)</title><rect x="563.4" y="209" width="0.7" height="15.0" fill="rgb(208,6,14)" rx="2" ry="2" />
3899
<text text-anchor="" x="566.43" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3900
</g>
3901
<g class="func_g" onmouseover="s('strlen (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3902
<title>strlen (1 samples, 0.03%)</title><rect x="820.7" y="337" width="0.3" height="15.0" fill="rgb(230,208,21)" rx="2" ry="2" />
3903
<text text-anchor="" x="823.65" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3904
</g>
3905
<g class="func_g" onmouseover="s('getname (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3906
<title>getname (1 samples, 0.03%)</title><rect x="608.2" y="289" width="0.3" height="15.0" fill="rgb(220,79,37)" rx="2" ry="2" />
3907
<text text-anchor="" x="611.15" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3908
</g>
3909
<g class="func_g" onmouseover="s('apparmor_inode_getattr (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3910
<title>apparmor_inode_getattr (3 samples, 0.10%)</title><rect x="151.7" y="433" width="1.0" height="15.0" fill="rgb(212,10,54)" rx="2" ry="2" />
3911
<text text-anchor="" x="154.67" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3912
</g>
3913
<g class="func_g" onmouseover="s('page_waitqueue (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3914
<title>page_waitqueue (1 samples, 0.03%)</title><rect x="52.2" y="353" width="0.4" height="15.0" fill="rgb(224,11,22)" rx="2" ry="2" />
3915
<text text-anchor="" x="55.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3916
</g>
3917
<g class="func_g" onmouseover="s('do_notify_resume (57 samples, 1.92%)')" onmouseout="c()" onclick="zoom(this)">
3918
<title>do_notify_resume (57 samples, 1.92%)</title><rect x="343.1" y="305" width="20.4" height="15.0" fill="rgb(243,88,34)" rx="2" ry="2" />
3919
<text text-anchor="" x="346.06" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3920
</g>
3921
<g class="func_g" onmouseover="s('make_builtin_argv (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3922
<title>make_builtin_argv (3 samples, 0.10%)</title><rect x="715.8" y="337" width="1.1" height="15.0" fill="rgb(243,57,31)" rx="2" ry="2" />
3923
<text text-anchor="" x="718.83" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3924
</g>
3925
<g class="func_g" onmouseover="s('_raw_spin_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3926
<title>_raw_spin_lock (1 samples, 0.03%)</title><rect x="394.2" y="257" width="0.4" height="15.0" fill="rgb(238,131,10)" rx="2" ry="2" />
3927
<text text-anchor="" x="397.22" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3928
</g>
3929
<g class="func_g" onmouseover="s('apparmor_inode_getattr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3930
<title>apparmor_inode_getattr (1 samples, 0.03%)</title><rect x="764.5" y="145" width="0.3" height="15.0" fill="rgb(212,26,0)" rx="2" ry="2" />
3931
<text text-anchor="" x="767.49" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3932
</g>
3933
<g class="func_g" onmouseover="s('link_path_walk (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
3934
<title>link_path_walk (9 samples, 0.30%)</title><rect x="141.3" y="385" width="3.2" height="15.0" fill="rgb(216,119,19)" rx="2" ry="2" />
3935
<text text-anchor="" x="144.29" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3936
</g>
3937
<g class="func_g" onmouseover="s('strlen (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
3938
<title>strlen (4 samples, 0.13%)</title><rect x="975.2" y="321" width="1.4" height="15.0" fill="rgb(227,170,19)" rx="2" ry="2" />
3939
<text text-anchor="" x="978.20" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3940
</g>
3941
<g class="func_g" onmouseover="s('filename_lookup (24 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
3942
<title>filename_lookup (24 samples, 0.81%)</title><rect x="138.8" y="417" width="8.6" height="15.0" fill="rgb(229,178,34)" rx="2" ry="2" />
3943
<text text-anchor="" x="141.79" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3944
</g>
3945
<g class="func_g" onmouseover="s('strlen (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3946
<title>strlen (1 samples, 0.03%)</title><rect x="905.1" y="241" width="0.3" height="15.0" fill="rgb(239,78,28)" rx="2" ry="2" />
3947
<text text-anchor="" x="908.08" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3948
</g>
3949
<g class="func_g" onmouseover="s('map_id_up (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3950
<title>map_id_up (2 samples, 0.07%)</title><rect x="135.2" y="449" width="0.7" height="15.0" fill="rgb(223,121,44)" rx="2" ry="2" />
3951
<text text-anchor="" x="138.21" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3952
</g>
3953
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3954
<title>dput (1 samples, 0.03%)</title><rect x="744.1" y="161" width="0.4" height="15.0" fill="rgb(217,174,36)" rx="2" ry="2" />
3955
<text text-anchor="" x="747.09" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3956
</g>
3957
<g class="func_g" onmouseover="s('cap_inode_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3958
<title>cap_inode_permission (1 samples, 0.03%)</title><rect x="142.4" y="337" width="0.3" height="15.0" fill="rgb(217,11,11)" rx="2" ry="2" />
3959
<text text-anchor="" x="145.37" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3960
</g>
3961
<g class="func_g" onmouseover="s('sh_xfree (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
3962
<title>sh_xfree (3 samples, 0.10%)</title><rect x="717.3" y="337" width="1.0" height="15.0" fill="rgb(223,207,27)" rx="2" ry="2" />
3963
<text text-anchor="" x="720.26" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3964
</g>
3965
<g class="func_g" onmouseover="s('__libc_start_main (2,311 samples, 78.00%)')" onmouseout="c()" onclick="zoom(this)">
3966
<title>__libc_start_main (2,311 samples, 78.00%)</title><rect x="229.3" y="545" width="826.7" height="15.0" fill="rgb(232,98,43)" rx="2" ry="2" />
3967
<text text-anchor="" x="232.30" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__libc_start_main</text>
3968
</g>
3969
<g class="func_g" onmouseover="s('int_check_syscall_exit_work (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
3970
<title>int_check_syscall_exit_work (10 samples, 0.34%)</title><rect x="457.5" y="337" width="3.6" height="15.0" fill="rgb(242,229,16)" rx="2" ry="2" />
3971
<text text-anchor="" x="460.54" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3972
</g>
3973
<g class="func_g" onmouseover="s('mntget (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3974
<title>mntget (2 samples, 0.07%)</title><rect x="580.2" y="177" width="0.8" height="15.0" fill="rgb(235,204,46)" rx="2" ry="2" />
3975
<text text-anchor="" x="583.25" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3976
</g>
3977
<g class="func_g" onmouseover="s('internal_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3978
<title>internal_malloc (2 samples, 0.07%)</title><rect x="653.2" y="209" width="0.7" height="15.0" fill="rgb(206,69,24)" rx="2" ry="2" />
3979
<text text-anchor="" x="656.23" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3980
</g>
3981
<g class="func_g" onmouseover="s('execute_simple_command (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3982
<title>execute_simple_command (1 samples, 0.03%)</title><rect x="1050.0" y="417" width="0.3" height="15.0" fill="rgb(246,127,5)" rx="2" ry="2" />
3983
<text text-anchor="" x="1052.97" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3984
</g>
3985
<g class="func_g" onmouseover="s('glob_expand_word_list (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
3986
<title>glob_expand_word_list (5 samples, 0.17%)</title><rect x="644.3" y="289" width="1.8" height="15.0" fill="rgb(211,225,4)" rx="2" ry="2" />
3987
<text text-anchor="" x="647.28" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3988
</g>
3989
<g class="func_g" onmouseover="s('without_interrupts (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
3990
<title>without_interrupts (8 samples, 0.27%)</title><rect x="233.9" y="385" width="2.9" height="15.0" fill="rgb(227,103,1)" rx="2" ry="2" />
3991
<text text-anchor="" x="236.95" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3992
</g>
3993
<g class="func_g" onmouseover="s('ext4_get_inode_loc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
3994
<title>ext4_get_inode_loc (2 samples, 0.07%)</title><rect x="61.5" y="305" width="0.7" height="15.0" fill="rgb(252,182,45)" rx="2" ry="2" />
3995
<text text-anchor="" x="64.52" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
3996
</g>
3997
<g class="func_g" onmouseover="s('kmem_cache_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
3998
<title>kmem_cache_free (1 samples, 0.03%)</title><rect x="763.1" y="129" width="0.3" height="15.0" fill="rgb(224,3,25)" rx="2" ry="2" />
3999
<text text-anchor="" x="766.05" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4000
</g>
4001
<g class="func_g" onmouseover="s('__GI_____strtoll_l_internal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4002
<title>__GI_____strtoll_l_internal (1 samples, 0.03%)</title><rect x="695.4" y="337" width="0.4" height="15.0" fill="rgb(252,51,15)" rx="2" ry="2" />
4003
<text text-anchor="" x="698.44" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4004
</g>
4005
<g class="func_g" onmouseover="s('syscall_trace_leave (21 samples, 0.71%)')" onmouseout="c()" onclick="zoom(this)">
4006
<title>syscall_trace_leave (21 samples, 0.71%)</title><rect x="729.4" y="225" width="7.5" height="15.0" fill="rgb(231,103,43)" rx="2" ry="2" />
4007
<text text-anchor="" x="732.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4008
</g>
4009
<g class="func_g" onmouseover="s('xen_save_fl_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4010
<title>xen_save_fl_direct (1 samples, 0.03%)</title><rect x="166.0" y="481" width="0.3" height="15.0" fill="rgb(252,185,4)" rx="2" ry="2" />
4011
<text text-anchor="" x="168.98" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4012
</g>
4013
<g class="func_g" onmouseover="s('do_last (62 samples, 2.09%)')" onmouseout="c()" onclick="zoom(this)">
4014
<title>do_last (62 samples, 2.09%)</title><rect x="562.0" y="241" width="22.2" height="15.0" fill="rgb(246,44,49)" rx="2" ry="2" />
4015
<text text-anchor="" x="565.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >d..</text>
4016
</g>
4017
<g class="func_g" onmouseover="s('dispose_words (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4018
<title>dispose_words (1 samples, 0.03%)</title><rect x="643.9" y="289" width="0.4" height="15.0" fill="rgb(237,193,2)" rx="2" ry="2" />
4019
<text text-anchor="" x="646.93" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4020
</g>
4021
<g class="func_g" onmouseover="s('tracesys (24 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
4022
<title>tracesys (24 samples, 0.81%)</title><rect x="393.9" y="305" width="8.5" height="15.0" fill="rgb(251,229,54)" rx="2" ry="2" />
4023
<text text-anchor="" x="396.86" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4024
</g>
4025
<g class="func_g" onmouseover="s('begin_unwind_frame (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4026
<title>begin_unwind_frame (5 samples, 0.17%)</title><rect x="310.1" y="369" width="1.8" height="15.0" fill="rgb(252,189,27)" rx="2" ry="2" />
4027
<text text-anchor="" x="313.15" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4028
</g>
4029
<g class="func_g" onmouseover="s('itos (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
4030
<title>itos (7 samples, 0.24%)</title><rect x="902.6" y="241" width="2.5" height="15.0" fill="rgb(254,189,36)" rx="2" ry="2" />
4031
<text text-anchor="" x="905.58" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4032
</g>
4033
<g class="func_g" onmouseover="s('legitimize_mnt (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4034
<title>legitimize_mnt (3 samples, 0.10%)</title><rect x="567.4" y="225" width="1.0" height="15.0" fill="rgb(244,158,35)" rx="2" ry="2" />
4035
<text text-anchor="" x="570.37" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4036
</g>
4037
<g class="func_g" onmouseover="s('__strcpy_ssse3 (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4038
<title>__strcpy_ssse3 (2 samples, 0.07%)</title><rect x="635.7" y="305" width="0.7" height="15.0" fill="rgb(241,1,23)" rx="2" ry="2" />
4039
<text text-anchor="" x="638.70" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4040
</g>
4041
<g class="func_g" onmouseover="s('security_inode_getattr (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4042
<title>security_inode_getattr (1 samples, 0.03%)</title><rect x="764.5" y="161" width="0.3" height="15.0" fill="rgb(223,35,19)" rx="2" ry="2" />
4043
<text text-anchor="" x="767.49" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4044
</g>
4045
<g class="func_g" onmouseover="s('fsnotify (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4046
<title>fsnotify (2 samples, 0.07%)</title><rect x="89.8" y="465" width="0.7" height="15.0" fill="rgb(246,146,14)" rx="2" ry="2" />
4047
<text text-anchor="" x="92.78" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4048
</g>
4049
<g class="func_g" onmouseover="s('syscall_trace_leave (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4050
<title>syscall_trace_leave (1 samples, 0.03%)</title><rect x="322.0" y="321" width="0.3" height="15.0" fill="rgb(231,71,54)" rx="2" ry="2" />
4051
<text text-anchor="" x="324.95" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4052
</g>
4053
<g class="func_g" onmouseover="s('__d_lookup_rcu (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4054
<title>__d_lookup_rcu (2 samples, 0.07%)</title><rect x="145.2" y="369" width="0.7" height="15.0" fill="rgb(217,29,46)" rx="2" ry="2" />
4055
<text text-anchor="" x="148.23" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4056
</g>
4057
<g class="func_g" onmouseover="s('unquoted_glob_pattern_p (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4058
<title>unquoted_glob_pattern_p (1 samples, 0.03%)</title><rect x="645.7" y="273" width="0.4" height="15.0" fill="rgb(219,0,43)" rx="2" ry="2" />
4059
<text text-anchor="" x="648.71" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4060
</g>
4061
<g class="func_g" onmouseover="s('link_path_walk (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
4062
<title>link_path_walk (9 samples, 0.30%)</title><rect x="594.6" y="241" width="3.2" height="15.0" fill="rgb(213,102,35)" rx="2" ry="2" />
4063
<text text-anchor="" x="597.56" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4064
</g>
4065
<g class="func_g" onmouseover="s('tracesys (32 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
4066
<title>tracesys (32 samples, 1.08%)</title><rect x="322.3" y="321" width="11.5" height="15.0" fill="rgb(215,202,33)" rx="2" ry="2" />
4067
<text text-anchor="" x="325.31" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4068
</g>
4069
<g class="func_g" onmouseover="s('getname_flags (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4070
<title>getname_flags (1 samples, 0.03%)</title><rect x="744.5" y="161" width="0.3" height="15.0" fill="rgb(246,12,44)" rx="2" ry="2" />
4071
<text text-anchor="" x="747.45" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4072
</g>
4073
<g class="func_g" onmouseover="s('__overflow (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
4074
<title>__overflow (6 samples, 0.20%)</title><rect x="696.9" y="337" width="2.1" height="15.0" fill="rgb(227,160,26)" rx="2" ry="2" />
4075
<text text-anchor="" x="699.87" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4076
</g>
4077
<g class="func_g" onmouseover="s('apparmor_inode_getattr (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4078
<title>apparmor_inode_getattr (3 samples, 0.10%)</title><rect x="153.1" y="417" width="1.1" height="15.0" fill="rgb(226,91,17)" rx="2" ry="2" />
4079
<text text-anchor="" x="156.10" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4080
</g>
4081
<g class="func_g" onmouseover="s('__page_cache_alloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4082
<title>__page_cache_alloc (1 samples, 0.03%)</title><rect x="47.2" y="353" width="0.4" height="15.0" fill="rgb(217,93,44)" rx="2" ry="2" />
4083
<text text-anchor="" x="50.21" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4084
</g>
4085
<g class="func_g" onmouseover="s('sh_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4086
<title>sh_malloc (2 samples, 0.07%)</title><rect x="874.0" y="273" width="0.7" height="15.0" fill="rgb(224,138,24)" rx="2" ry="2" />
4087
<text text-anchor="" x="876.96" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4088
</g>
4089
<g class="func_g" onmouseover="s('dispose_word_desc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4090
<title>dispose_word_desc (1 samples, 0.03%)</title><rect x="877.9" y="321" width="0.3" height="15.0" fill="rgb(240,148,51)" rx="2" ry="2" />
4091
<text text-anchor="" x="880.89" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4092
</g>
4093
<g class="func_g" onmouseover="s('start_this_handle (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4094
<title>start_this_handle (1 samples, 0.03%)</title><rect x="45.1" y="337" width="0.3" height="15.0" fill="rgb(222,117,26)" rx="2" ry="2" />
4095
<text text-anchor="" x="48.06" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4096
</g>
4097
<g class="func_g" onmouseover="s('sh_xfree (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
4098
<title>sh_xfree (10 samples, 0.34%)</title><rect x="841.4" y="305" width="3.6" height="15.0" fill="rgb(215,100,12)" rx="2" ry="2" />
4099
<text text-anchor="" x="844.40" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4100
</g>
4101
<g class="func_g" onmouseover="s('jbd2_journal_dirty_metadata (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4102
<title>jbd2_journal_dirty_metadata (1 samples, 0.03%)</title><rect x="67.6" y="289" width="0.4" height="15.0" fill="rgb(221,73,47)" rx="2" ry="2" />
4103
<text text-anchor="" x="70.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4104
</g>
4105
<g class="func_g" onmouseover="s('discard_unwind_frame (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4106
<title>discard_unwind_frame (1 samples, 0.03%)</title><rect x="254.3" y="401" width="0.4" height="15.0" fill="rgb(205,1,21)" rx="2" ry="2" />
4107
<text text-anchor="" x="257.34" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4108
</g>
4109
<g class="func_g" onmouseover="s('ima_get_action (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4110
<title>ima_get_action (1 samples, 0.03%)</title><rect x="566.3" y="193" width="0.4" height="15.0" fill="rgb(241,141,42)" rx="2" ry="2" />
4111
<text text-anchor="" x="569.29" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4112
</g>
4113
<g class="func_g" onmouseover="s('sh_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4114
<title>sh_malloc (1 samples, 0.03%)</title><rect x="906.9" y="257" width="0.3" height="15.0" fill="rgb(244,14,35)" rx="2" ry="2" />
4115
<text text-anchor="" x="909.87" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4116
</g>
4117
<g class="func_g" onmouseover="s('set_pipestatus_array (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4118
<title>set_pipestatus_array (1 samples, 0.03%)</title><rect x="1022.1" y="385" width="0.3" height="15.0" fill="rgb(254,45,36)" rx="2" ry="2" />
4119
<text text-anchor="" x="1025.06" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4120
</g>
4121
<g class="func_g" onmouseover="s('current_fs_time (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4122
<title>current_fs_time (1 samples, 0.03%)</title><rect x="37.5" y="385" width="0.4" height="15.0" fill="rgb(240,145,19)" rx="2" ry="2" />
4123
<text text-anchor="" x="40.55" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4124
</g>
4125
<g class="func_g" onmouseover="s('internal_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4126
<title>internal_free (3 samples, 0.10%)</title><rect x="1035.3" y="321" width="1.1" height="15.0" fill="rgb(223,106,36)" rx="2" ry="2" />
4127
<text text-anchor="" x="1038.30" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4128
</g>
4129
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4130
<title>sh_xfree (1 samples, 0.03%)</title><rect x="909.4" y="305" width="0.3" height="15.0" fill="rgb(244,77,10)" rx="2" ry="2" />
4131
<text text-anchor="" x="912.37" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4132
</g>
4133
<g class="func_g" onmouseover="s('__GI___strcmp_ssse3 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4134
<title>__GI___strcmp_ssse3 (1 samples, 0.03%)</title><rect x="284.4" y="353" width="0.3" height="15.0" fill="rgb(231,176,15)" rx="2" ry="2" />
4135
<text text-anchor="" x="287.39" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4136
</g>
4137
<g class="func_g" onmouseover="s('sh_free (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4138
<title>sh_free (2 samples, 0.07%)</title><rect x="907.2" y="273" width="0.7" height="15.0" fill="rgb(213,29,33)" rx="2" ry="2" />
4139
<text text-anchor="" x="910.23" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4140
</g>
4141
<g class="func_g" onmouseover="s('[unknown] (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
4142
<title>[unknown] (7 samples, 0.24%)</title><rect x="10.0" y="529" width="2.5" height="15.0" fill="rgb(211,153,33)" rx="2" ry="2" />
4143
<text text-anchor="" x="13.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4144
</g>
4145
<g class="func_g" onmouseover="s('generic_write_sync (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4146
<title>generic_write_sync (1 samples, 0.03%)</title><rect x="88.0" y="433" width="0.3" height="15.0" fill="rgb(233,54,50)" rx="2" ry="2" />
4147
<text text-anchor="" x="90.99" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4148
</g>
4149
<g class="func_g" onmouseover="s('__percpu_counter_add (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4150
<title>__percpu_counter_add (4 samples, 0.13%)</title><rect x="29.0" y="465" width="1.4" height="15.0" fill="rgb(209,196,12)" rx="2" ry="2" />
4151
<text text-anchor="" x="31.96" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4152
</g>
4153
<g class="func_g" onmouseover="s('__strcpy_ssse3 (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4154
<title>__strcpy_ssse3 (1 samples, 0.03%)</title><rect x="790.2" y="321" width="0.4" height="15.0" fill="rgb(234,38,0)" rx="2" ry="2" />
4155
<text text-anchor="" x="793.24" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4156
</g>
4157
<g class="func_g" onmouseover="s('_raw_spin_unlock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4158
<title>_raw_spin_unlock (1 samples, 0.03%)</title><rect x="421.4" y="305" width="0.4" height="15.0" fill="rgb(236,158,40)" rx="2" ry="2" />
4159
<text text-anchor="" x="424.41" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4160
</g>
4161
<g class="func_g" onmouseover="s('do_sync_write (161 samples, 5.43%)')" onmouseout="c()" onclick="zoom(this)">
4162
<title>do_sync_write (161 samples, 5.43%)</title><rect x="32.2" y="465" width="57.6" height="15.0" fill="rgb(219,154,22)" rx="2" ry="2" />
4163
<text text-anchor="" x="35.18" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_syn..</text>
4164
</g>
4165
<g class="func_g" onmouseover="s('cap_file_fcntl (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4166
<title>cap_file_fcntl (3 samples, 0.10%)</title><rect x="513.7" y="289" width="1.1" height="15.0" fill="rgb(230,166,23)" rx="2" ry="2" />
4167
<text text-anchor="" x="516.71" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4168
</g>
4169
<g class="func_g" onmouseover="s('__inode_permission (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4170
<title>__inode_permission (1 samples, 0.03%)</title><rect x="570.6" y="193" width="0.3" height="15.0" fill="rgb(249,57,30)" rx="2" ry="2" />
4171
<text text-anchor="" x="573.59" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4172
</g>
4173
<g class="func_g" onmouseover="s('__inode_permission (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
4174
<title>__inode_permission (10 samples, 0.34%)</title><rect x="750.9" y="81" width="3.6" height="15.0" fill="rgb(238,92,54)" rx="2" ry="2" />
4175
<text text-anchor="" x="753.89" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4176
</g>
4177
<g class="func_g" onmouseover="s('hash_lookup (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4178
<title>hash_lookup (2 samples, 0.07%)</title><rect x="905.8" y="241" width="0.7" height="15.0" fill="rgb(235,185,39)" rx="2" ry="2" />
4179
<text text-anchor="" x="908.79" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4180
</g>
4181
<g class="func_g" onmouseover="s('sh_malloc (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
4182
<title>sh_malloc (6 samples, 0.20%)</title><rect x="1038.5" y="369" width="2.2" height="15.0" fill="rgb(212,136,36)" rx="2" ry="2" />
4183
<text text-anchor="" x="1041.52" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4184
</g>
4185
<g class="func_g" onmouseover="s('jbd2_journal_add_journal_head (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4186
<title>jbd2_journal_add_journal_head (3 samples, 0.10%)</title><rect x="70.5" y="257" width="1.0" height="15.0" fill="rgb(214,92,5)" rx="2" ry="2" />
4187
<text text-anchor="" x="73.46" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4188
</g>
4189
<g class="func_g" onmouseover="s('__dquot_initialize (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4190
<title>__dquot_initialize (1 samples, 0.03%)</title><rect x="576.0" y="177" width="0.3" height="15.0" fill="rgb(250,181,41)" rx="2" ry="2" />
4191
<text text-anchor="" x="578.95" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4192
</g>
4193
<g class="func_g" onmouseover="s('free (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4194
<title>free (4 samples, 0.13%)</title><rect x="168.8" y="513" width="1.5" height="15.0" fill="rgb(232,74,1)" rx="2" ry="2" />
4195
<text text-anchor="" x="171.84" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4196
</g>
4197
<g class="func_g" onmouseover="s('make_word_list (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4198
<title>make_word_list (1 samples, 0.03%)</title><rect x="899.0" y="305" width="0.4" height="15.0" fill="rgb(226,10,38)" rx="2" ry="2" />
4199
<text text-anchor="" x="902.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4200
</g>
4201
<g class="func_g" onmouseover="s('generic_file_aio_write (155 samples, 5.23%)')" onmouseout="c()" onclick="zoom(this)">
4202
<title>generic_file_aio_write (155 samples, 5.23%)</title><rect x="32.5" y="433" width="55.5" height="15.0" fill="rgb(230,168,7)" rx="2" ry="2" />
4203
<text text-anchor="" x="35.54" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >gener..</text>
4204
</g>
4205
<g class="func_g" onmouseover="s('memset@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4206
<title>memset@plt (1 samples, 0.03%)</title><rect x="623.5" y="273" width="0.4" height="15.0" fill="rgb(248,132,14)" rx="2" ry="2" />
4207
<text text-anchor="" x="626.53" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4208
</g>
4209
<g class="func_g" onmouseover="s('execute_builtin_or_function (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4210
<title>execute_builtin_or_function (1 samples, 0.03%)</title><rect x="254.7" y="401" width="0.4" height="15.0" fill="rgb(252,169,5)" rx="2" ry="2" />
4211
<text text-anchor="" x="257.70" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4212
</g>
4213
<g class="func_g" onmouseover="s('check_events (26 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
4214
<title>check_events (26 samples, 0.88%)</title><rect x="1058.9" y="529" width="9.3" height="15.0" fill="rgb(218,12,51)" rx="2" ry="2" />
4215
<text text-anchor="" x="1061.91" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4216
</g>
4217
<g class="func_g" onmouseover="s('add_unwind_protect (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4218
<title>add_unwind_protect (3 samples, 0.10%)</title><rect x="309.1" y="369" width="1.0" height="15.0" fill="rgb(248,98,8)" rx="2" ry="2" />
4219
<text text-anchor="" x="312.08" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4220
</g>
4221
<g class="func_g" onmouseover="s('mark_page_accessed (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4222
<title>mark_page_accessed (3 samples, 0.10%)</title><rect x="73.3" y="241" width="1.1" height="15.0" fill="rgb(208,83,32)" rx="2" ry="2" />
4223
<text text-anchor="" x="76.32" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4224
</g>
4225
<g class="func_g" onmouseover="s('generic_file_buffered_write (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4226
<title>generic_file_buffered_write (3 samples, 0.10%)</title><rect x="86.6" y="417" width="1.0" height="15.0" fill="rgb(250,117,2)" rx="2" ry="2" />
4227
<text text-anchor="" x="89.56" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4228
</g>
4229
<g class="func_g" onmouseover="s('check_events (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
4230
<title>check_events (13 samples, 0.44%)</title><rect x="214.3" y="529" width="4.6" height="15.0" fill="rgb(213,68,11)" rx="2" ry="2" />
4231
<text text-anchor="" x="217.27" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4232
</g>
4233
<g class="func_g" onmouseover="s('ext4_get_group_desc (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4234
<title>ext4_get_group_desc (4 samples, 0.13%)</title><rect x="74.8" y="257" width="1.4" height="15.0" fill="rgb(242,81,45)" rx="2" ry="2" />
4235
<text text-anchor="" x="77.75" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4236
</g>
4237
<g class="func_g" onmouseover="s('security_file_fcntl (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
4238
<title>security_file_fcntl (6 samples, 0.20%)</title><rect x="508.0" y="305" width="2.1" height="15.0" fill="rgb(239,96,40)" rx="2" ry="2" />
4239
<text text-anchor="" x="510.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4240
</g>
4241
<g class="func_g" onmouseover="s('kmem_cache_alloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4242
<title>kmem_cache_alloc (1 samples, 0.03%)</title><rect x="45.4" y="353" width="0.4" height="15.0" fill="rgb(205,188,31)" rx="2" ry="2" />
4243
<text text-anchor="" x="48.42" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4244
</g>
4245
<g class="func_g" onmouseover="s('expand_word_list_internal (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4246
<title>expand_word_list_internal (1 samples, 0.03%)</title><rect x="779.2" y="385" width="0.3" height="15.0" fill="rgb(225,82,46)" rx="2" ry="2" />
4247
<text text-anchor="" x="782.15" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4248
</g>
4249
<g class="func_g" onmouseover="s('fget_light (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4250
<title>fget_light (2 samples, 0.07%)</title><rect x="24.3" y="497" width="0.7" height="15.0" fill="rgb(219,198,23)" rx="2" ry="2" />
4251
<text text-anchor="" x="27.31" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4252
</g>
4253
<g class="func_g" onmouseover="s('sh_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4254
<title>sh_malloc (1 samples, 0.03%)</title><rect x="636.8" y="273" width="0.3" height="15.0" fill="rgb(229,11,10)" rx="2" ry="2" />
4255
<text text-anchor="" x="639.77" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4256
</g>
4257
<g class="func_g" onmouseover="s('strlen@plt (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4258
<title>strlen@plt (1 samples, 0.03%)</title><rect x="798.8" y="321" width="0.4" height="15.0" fill="rgb(220,202,36)" rx="2" ry="2" />
4259
<text text-anchor="" x="801.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4260
</g>
4261
<g class="func_g" onmouseover="s('mblen (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4262
<title>mblen (3 samples, 0.10%)</title><rect x="667.5" y="305" width="1.1" height="15.0" fill="rgb(207,150,46)" rx="2" ry="2" />
4263
<text text-anchor="" x="670.54" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4264
</g>
4265
<g class="func_g" onmouseover="s('internal_malloc (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
4266
<title>internal_malloc (6 samples, 0.20%)</title><rect x="1038.5" y="353" width="2.2" height="15.0" fill="rgb(237,157,13)" rx="2" ry="2" />
4267
<text text-anchor="" x="1041.52" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4268
</g>
4269
<g class="func_g" onmouseover="s('alloc_pages_current (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4270
<title>alloc_pages_current (1 samples, 0.03%)</title><rect x="47.2" y="337" width="0.4" height="15.0" fill="rgb(223,135,35)" rx="2" ry="2" />
4271
<text text-anchor="" x="50.21" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4272
</g>
4273
<g class="func_g" onmouseover="s('__getblk (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4274
<title>__getblk (5 samples, 0.17%)</title><rect x="72.6" y="257" width="1.8" height="15.0" fill="rgb(243,169,6)" rx="2" ry="2" />
4275
<text text-anchor="" x="75.61" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4276
</g>
4277
<g class="func_g" onmouseover="s('expand_words_no_vars (66 samples, 2.23%)')" onmouseout="c()" onclick="zoom(this)">
4278
<title>expand_words_no_vars (66 samples, 2.23%)</title><rect x="639.6" y="321" width="23.6" height="15.0" fill="rgb(218,41,12)" rx="2" ry="2" />
4279
<text text-anchor="" x="642.63" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >e..</text>
4280
</g>
4281
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4282
<title>sh_xfree (1 samples, 0.03%)</title><rect x="654.3" y="257" width="0.4" height="15.0" fill="rgb(246,163,27)" rx="2" ry="2" />
4283
<text text-anchor="" x="657.30" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4284
</g>
4285
<g class="func_g" onmouseover="s('fmtumax (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4286
<title>fmtumax (1 samples, 0.03%)</title><rect x="1028.9" y="353" width="0.3" height="15.0" fill="rgb(218,1,8)" rx="2" ry="2" />
4287
<text text-anchor="" x="1031.86" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4288
</g>
4289
<g class="func_g" onmouseover="s('is_basic (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4290
<title>is_basic (3 samples, 0.10%)</title><rect x="782.0" y="337" width="1.1" height="15.0" fill="rgb(209,3,24)" rx="2" ry="2" />
4291
<text text-anchor="" x="785.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4292
</g>
4293
<g class="func_g" onmouseover="s('locks_remove_flock (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4294
<title>locks_remove_flock (2 samples, 0.07%)</title><rect x="360.9" y="257" width="0.8" height="15.0" fill="rgb(231,223,33)" rx="2" ry="2" />
4295
<text text-anchor="" x="363.95" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4296
</g>
4297
<g class="func_g" onmouseover="s('sh_xmalloc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4298
<title>sh_xmalloc (3 samples, 0.10%)</title><rect x="904.0" y="225" width="1.1" height="15.0" fill="rgb(228,68,54)" rx="2" ry="2" />
4299
<text text-anchor="" x="907.01" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4300
</g>
4301
<g class="func_g" onmouseover="s('sys_close (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4302
<title>sys_close (3 samples, 0.10%)</title><rect x="181.7" y="529" width="1.1" height="15.0" fill="rgb(234,193,42)" rx="2" ry="2" />
4303
<text text-anchor="" x="184.72" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4304
</g>
4305
<g class="func_g" onmouseover="s('wake_up_bit (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4306
<title>wake_up_bit (3 samples, 0.10%)</title><rect x="69.4" y="225" width="1.1" height="15.0" fill="rgb(250,224,18)" rx="2" ry="2" />
4307
<text text-anchor="" x="72.39" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4308
</g>
4309
<g class="func_g" onmouseover="s('the_printed_command_resize (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4310
<title>the_printed_command_resize (5 samples, 0.17%)</title><rect x="1013.8" y="321" width="1.8" height="15.0" fill="rgb(230,204,11)" rx="2" ry="2" />
4311
<text text-anchor="" x="1016.83" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4312
</g>
4313
<g class="func_g" onmouseover="s('cap_file_fcntl (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4314
<title>cap_file_fcntl (1 samples, 0.03%)</title><rect x="444.7" y="305" width="0.3" height="15.0" fill="rgb(251,10,53)" rx="2" ry="2" />
4315
<text text-anchor="" x="447.66" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4316
</g>
4317
<g class="func_g" onmouseover="s('check_events (19 samples, 0.64%)')" onmouseout="c()" onclick="zoom(this)">
4318
<title>check_events (19 samples, 0.64%)</title><rect x="608.5" y="289" width="6.8" height="15.0" fill="rgb(235,52,41)" rx="2" ry="2" />
4319
<text text-anchor="" x="611.51" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4320
</g>
4321
<g class="func_g" onmouseover="s('context_tracking_user_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4322
<title>context_tracking_user_exit (1 samples, 0.03%)</title><rect x="736.9" y="225" width="0.4" height="15.0" fill="rgb(246,184,44)" rx="2" ry="2" />
4323
<text text-anchor="" x="739.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4324
</g>
4325
<g class="func_g" onmouseover="s('the_printed_command_resize (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4326
<title>the_printed_command_resize (1 samples, 0.03%)</title><rect x="1016.7" y="337" width="0.4" height="15.0" fill="rgb(237,110,5)" rx="2" ry="2" />
4327
<text text-anchor="" x="1019.70" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4328
</g>
4329
<g class="func_g" onmouseover="s('string_extract_double_quoted (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4330
<title>string_extract_double_quoted (1 samples, 0.03%)</title><rect x="990.6" y="337" width="0.3" height="15.0" fill="rgb(239,214,48)" rx="2" ry="2" />
4331
<text text-anchor="" x="993.58" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4332
</g>
4333
<g class="func_g" onmouseover="s('lockref_get_not_dead (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4334
<title>lockref_get_not_dead (2 samples, 0.07%)</title><rect x="144.5" y="385" width="0.7" height="15.0" fill="rgb(244,50,52)" rx="2" ry="2" />
4335
<text text-anchor="" x="147.51" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4336
</g>
4337
<g class="func_g" onmouseover="s('is_basic (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4338
<title>is_basic (2 samples, 0.07%)</title><rect x="628.2" y="273" width="0.7" height="15.0" fill="rgb(230,22,24)" rx="2" ry="2" />
4339
<text text-anchor="" x="631.18" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4340
</g>
4341
<g class="func_g" onmouseover="s('internal_free (14 samples, 0.47%)')" onmouseout="c()" onclick="zoom(this)">
4342
<title>internal_free (14 samples, 0.47%)</title><rect x="924.0" y="257" width="5.0" height="15.0" fill="rgb(246,116,10)" rx="2" ry="2" />
4343
<text text-anchor="" x="927.04" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4344
</g>
4345
<g class="func_g" onmouseover="s('fput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4346
<title>fput (1 samples, 0.03%)</title><rect x="396.0" y="241" width="0.4" height="15.0" fill="rgb(217,154,12)" rx="2" ry="2" />
4347
<text text-anchor="" x="399.01" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4348
</g>
4349
<g class="func_g" onmouseover="s('reader_loop (2,311 samples, 78.00%)')" onmouseout="c()" onclick="zoom(this)">
4350
<title>reader_loop (2,311 samples, 78.00%)</title><rect x="229.3" y="513" width="826.7" height="15.0" fill="rgb(230,149,50)" rx="2" ry="2" />
4351
<text text-anchor="" x="232.30" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >reader_loop</text>
4352
</g>
4353
<g class="func_g" onmouseover="s('sys_newstat (78 samples, 2.63%)')" onmouseout="c()" onclick="zoom(this)">
4354
<title>sys_newstat (78 samples, 2.63%)</title><rect x="737.3" y="225" width="27.9" height="15.0" fill="rgb(227,206,53)" rx="2" ry="2" />
4355
<text text-anchor="" x="740.30" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >s..</text>
4356
</g>
4357
<g class="func_g" onmouseover="s('context_tracking_user_exit (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4358
<title>context_tracking_user_exit (3 samples, 0.10%)</title><rect x="504.8" y="305" width="1.0" height="15.0" fill="rgb(221,163,1)" rx="2" ry="2" />
4359
<text text-anchor="" x="507.76" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4360
</g>
4361
<g class="func_g" onmouseover="s('sh_malloc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4362
<title>sh_malloc (3 samples, 0.10%)</title><rect x="266.1" y="321" width="1.1" height="15.0" fill="rgb(240,168,18)" rx="2" ry="2" />
4363
<text text-anchor="" x="269.15" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4364
</g>
4365
<g class="func_g" onmouseover="s('check_events (24 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
4366
<title>check_events (24 samples, 0.81%)</title><rect x="220.4" y="529" width="8.5" height="15.0" fill="rgb(242,120,20)" rx="2" ry="2" />
4367
<text text-anchor="" x="223.35" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4368
</g>
4369
<g class="func_g" onmouseover="s('cp_new_stat (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4370
<title>cp_new_stat (4 samples, 0.13%)</title><rect x="134.5" y="465" width="1.4" height="15.0" fill="rgb(249,79,3)" rx="2" ry="2" />
4371
<text text-anchor="" x="137.50" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4372
</g>
4373
<g class="func_g" onmouseover="s('bind_variable_internal (29 samples, 0.98%)')" onmouseout="c()" onclick="zoom(this)">
4374
<title>bind_variable_internal (29 samples, 0.98%)</title><rect x="271.5" y="353" width="10.4" height="15.0" fill="rgb(215,119,18)" rx="2" ry="2" />
4375
<text text-anchor="" x="274.51" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4376
</g>
4377
<g class="func_g" onmouseover="s('__strchr_sse2 (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4378
<title>__strchr_sse2 (5 samples, 0.17%)</title><rect x="993.8" y="321" width="1.8" height="15.0" fill="rgb(210,26,23)" rx="2" ry="2" />
4379
<text text-anchor="" x="996.80" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4380
</g>
4381
<g class="func_g" onmouseover="s('security_file_permission (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4382
<title>security_file_permission (4 samples, 0.13%)</title><rect x="92.6" y="465" width="1.5" height="15.0" fill="rgb(209,12,44)" rx="2" ry="2" />
4383
<text text-anchor="" x="95.64" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4384
</g>
4385
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4386
<title>sh_free (1 samples, 0.03%)</title><rect x="406.7" y="305" width="0.4" height="15.0" fill="rgb(252,174,42)" rx="2" ry="2" />
4387
<text text-anchor="" x="409.74" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4388
</g>
4389
<g class="func_g" onmouseover="s('dispose_redirects (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4390
<title>dispose_redirects (1 samples, 0.03%)</title><rect x="312.3" y="353" width="0.4" height="15.0" fill="rgb(210,203,25)" rx="2" ry="2" />
4391
<text text-anchor="" x="315.29" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4392
</g>
4393
<g class="func_g" onmouseover="s('brace_expand_word_list (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
4394
<title>brace_expand_word_list (8 samples, 0.27%)</title><rect x="639.6" y="289" width="2.9" height="15.0" fill="rgb(248,30,8)" rx="2" ry="2" />
4395
<text text-anchor="" x="642.63" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4396
</g>
4397
<g class="func_g" onmouseover="s('__strftime_internal (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4398
<title>__strftime_internal (2 samples, 0.07%)</title><rect x="682.2" y="353" width="0.7" height="15.0" fill="rgb(244,15,35)" rx="2" ry="2" />
4399
<text text-anchor="" x="685.20" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4400
</g>
4401
<g class="func_g" onmouseover="s('getpid (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4402
<title>getpid (2 samples, 0.07%)</title><rect x="901.9" y="241" width="0.7" height="15.0" fill="rgb(222,50,35)" rx="2" ry="2" />
4403
<text text-anchor="" x="904.86" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4404
</g>
4405
<g class="func_g" onmouseover="s('sub_append_string (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4406
<title>sub_append_string (2 samples, 0.07%)</title><rect x="992.0" y="337" width="0.7" height="15.0" fill="rgb(232,204,36)" rx="2" ry="2" />
4407
<text text-anchor="" x="995.01" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4408
</g>
4409
<g class="func_g" onmouseover="s('make_variable_value (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
4410
<title>make_variable_value (8 samples, 0.27%)</title><rect x="277.2" y="337" width="2.9" height="15.0" fill="rgb(249,207,47)" rx="2" ry="2" />
4411
<text text-anchor="" x="280.24" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4412
</g>
4413
<g class="func_g" onmouseover="s('execute_while_command (2,311 samples, 78.00%)')" onmouseout="c()" onclick="zoom(this)">
4414
<title>execute_while_command (2,311 samples, 78.00%)</title><rect x="229.3" y="465" width="826.7" height="15.0" fill="rgb(249,54,16)" rx="2" ry="2" />
4415
<text text-anchor="" x="232.30" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >execute_while_command</text>
4416
</g>
4417
<g class="func_g" onmouseover="s('print_simple_command (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4418
<title>print_simple_command (1 samples, 0.03%)</title><rect x="1046.7" y="401" width="0.4" height="15.0" fill="rgb(230,64,34)" rx="2" ry="2" />
4419
<text text-anchor="" x="1049.75" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4420
</g>
4421
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (24 samples, 0.81%)')" onmouseout="c()" onclick="zoom(this)">
4422
<title>xen_hypercall_xen_version (24 samples, 0.81%)</title><rect x="220.4" y="513" width="8.5" height="15.0" fill="rgb(219,94,31)" rx="2" ry="2" />
4423
<text text-anchor="" x="223.35" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4424
</g>
4425
<g class="func_g" onmouseover="s('sv_tz (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4426
<title>sv_tz (4 samples, 0.13%)</title><rect x="708.3" y="337" width="1.5" height="15.0" fill="rgb(220,82,42)" rx="2" ry="2" />
4427
<text text-anchor="" x="711.32" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4428
</g>
4429
<g class="func_g" onmouseover="s('dispose_words (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4430
<title>dispose_words (3 samples, 0.10%)</title><rect x="646.8" y="273" width="1.1" height="15.0" fill="rgb(206,207,1)" rx="2" ry="2" />
4431
<text text-anchor="" x="649.79" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4432
</g>
4433
<g class="func_g" onmouseover="s('do_redirections (253 samples, 8.54%)')" onmouseout="c()" onclick="zoom(this)">
4434
<title>do_redirections (253 samples, 8.54%)</title><rect x="312.7" y="353" width="90.5" height="15.0" fill="rgb(234,207,42)" rx="2" ry="2" />
4435
<text text-anchor="" x="315.65" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >do_redirec..</text>
4436
</g>
4437
<g class="func_g" onmouseover="s('internal_malloc (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
4438
<title>internal_malloc (6 samples, 0.20%)</title><rect x="1033.2" y="305" width="2.1" height="15.0" fill="rgb(231,104,8)" rx="2" ry="2" />
4439
<text text-anchor="" x="1036.15" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4440
</g>
4441
<g class="func_g" onmouseover="s('quote_string (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
4442
<title>quote_string (9 samples, 0.30%)</title><rect x="939.4" y="321" width="3.2" height="15.0" fill="rgb(212,134,24)" rx="2" ry="2" />
4443
<text text-anchor="" x="942.42" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4444
</g>
4445
<g class="func_g" onmouseover="s('vfs_getattr_nosec (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4446
<title>vfs_getattr_nosec (1 samples, 0.03%)</title><rect x="156.0" y="449" width="0.3" height="15.0" fill="rgb(238,220,44)" rx="2" ry="2" />
4447
<text text-anchor="" x="158.96" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4448
</g>
4449
<g class="func_g" onmouseover="s('xen_irq_disable_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4450
<title>xen_irq_disable_direct (1 samples, 0.03%)</title><rect x="209.6" y="529" width="0.4" height="15.0" fill="rgb(246,208,43)" rx="2" ry="2" />
4451
<text text-anchor="" x="212.62" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4452
</g>
4453
<g class="func_g" onmouseover="s('new_fd_bitmap (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
4454
<title>new_fd_bitmap (8 samples, 0.27%)</title><rect x="1050.3" y="417" width="2.9" height="15.0" fill="rgb(241,67,1)" rx="2" ry="2" />
4455
<text text-anchor="" x="1053.32" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4456
</g>
4457
<g class="func_g" onmouseover="s('sh_xfree (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
4458
<title>sh_xfree (15 samples, 0.51%)</title><rect x="943.4" y="321" width="5.3" height="15.0" fill="rgb(248,213,30)" rx="2" ry="2" />
4459
<text text-anchor="" x="946.36" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4460
</g>
4461
<g class="func_g" onmouseover="s('sys_open (138 samples, 4.66%)')" onmouseout="c()" onclick="zoom(this)">
4462
<title>sys_open (138 samples, 4.66%)</title><rect x="559.1" y="305" width="49.4" height="15.0" fill="rgb(240,155,18)" rx="2" ry="2" />
4463
<text text-anchor="" x="562.14" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >sys_..</text>
4464
</g>
4465
<g class="func_g" onmouseover="s('generic_file_open (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4466
<title>generic_file_open (3 samples, 0.10%)</title><rect x="577.7" y="177" width="1.1" height="15.0" fill="rgb(241,162,24)" rx="2" ry="2" />
4467
<text text-anchor="" x="580.74" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4468
</g>
4469
<g class="func_g" onmouseover="s('generic_write_end (65 samples, 2.19%)')" onmouseout="c()" onclick="zoom(this)">
4470
<title>generic_write_end (65 samples, 2.19%)</title><rect x="57.9" y="369" width="23.3" height="15.0" fill="rgb(230,103,32)" rx="2" ry="2" />
4471
<text text-anchor="" x="60.94" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >g..</text>
4472
</g>
4473
<g class="func_g" onmouseover="s('apparmor_file_free_security (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
4474
<title>apparmor_file_free_security (10 samples, 0.34%)</title><rect x="355.2" y="225" width="3.6" height="15.0" fill="rgb(218,176,33)" rx="2" ry="2" />
4475
<text text-anchor="" x="358.22" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4476
</g>
4477
<g class="func_g" onmouseover="s('kmem_cache_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4478
<title>kmem_cache_free (3 samples, 0.10%)</title><rect x="762.0" y="113" width="1.1" height="15.0" fill="rgb(214,138,45)" rx="2" ry="2" />
4479
<text text-anchor="" x="764.98" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4480
</g>
4481
<g class="func_g" onmouseover="s('check_events (11 samples, 0.37%)')" onmouseout="c()" onclick="zoom(this)">
4482
<title>check_events (11 samples, 0.37%)</title><rect x="389.2" y="273" width="3.9" height="15.0" fill="rgb(245,91,9)" rx="2" ry="2" />
4483
<text text-anchor="" x="392.21" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4484
</g>
4485
<g class="func_g" onmouseover="s('__fsnotify_parent (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4486
<title>__fsnotify_parent (2 samples, 0.07%)</title><rect x="350.9" y="241" width="0.7" height="15.0" fill="rgb(220,8,51)" rx="2" ry="2" />
4487
<text text-anchor="" x="353.93" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4488
</g>
4489
<g class="func_g" onmouseover="s('__generic_file_aio_write (144 samples, 4.86%)')" onmouseout="c()" onclick="zoom(this)">
4490
<title>__generic_file_aio_write (144 samples, 4.86%)</title><rect x="33.3" y="417" width="51.5" height="15.0" fill="rgb(248,75,42)" rx="2" ry="2" />
4491
<text text-anchor="" x="36.25" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__gen..</text>
4492
</g>
4493
<g class="func_g" onmouseover="s('internal_free (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
4494
<title>internal_free (18 samples, 0.61%)</title><rect x="981.3" y="273" width="6.4" height="15.0" fill="rgb(221,88,45)" rx="2" ry="2" />
4495
<text text-anchor="" x="984.28" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4496
</g>
4497
<g class="func_g" onmouseover="s('printstr (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
4498
<title>printstr (9 samples, 0.30%)</title><rect x="701.2" y="337" width="3.2" height="15.0" fill="rgb(217,136,11)" rx="2" ry="2" />
4499
<text text-anchor="" x="704.16" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4500
</g>
4501
<g class="func_g" onmouseover="s('fget_raw_light (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4502
<title>fget_raw_light (5 samples, 0.17%)</title><rect x="326.6" y="289" width="1.8" height="15.0" fill="rgb(241,93,49)" rx="2" ry="2" />
4503
<text text-anchor="" x="329.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4504
</g>
4505
<g class="func_g" onmouseover="s('_raw_spin_lock (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4506
<title>_raw_spin_lock (2 samples, 0.07%)</title><rect x="463.3" y="305" width="0.7" height="15.0" fill="rgb(216,0,18)" rx="2" ry="2" />
4507
<text text-anchor="" x="466.26" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4508
</g>
4509
<g class="func_g" onmouseover="s('without_interrupts (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4510
<title>without_interrupts (5 samples, 0.17%)</title><rect x="232.2" y="401" width="1.7" height="15.0" fill="rgb(213,90,47)" rx="2" ry="2" />
4511
<text text-anchor="" x="235.16" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4512
</g>
4513
<g class="func_g" onmouseover="s('ima_file_check (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
4514
<title>ima_file_check (7 samples, 0.24%)</title><rect x="564.5" y="225" width="2.5" height="15.0" fill="rgb(226,219,28)" rx="2" ry="2" />
4515
<text text-anchor="" x="567.51" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4516
</g>
4517
<g class="func_g" onmouseover="s('internal_getopt (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4518
<title>internal_getopt (2 samples, 0.07%)</title><rect x="700.4" y="337" width="0.8" height="15.0" fill="rgb(250,71,17)" rx="2" ry="2" />
4519
<text text-anchor="" x="703.45" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4520
</g>
4521
<g class="func_g" onmouseover="s('alloc_word_desc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4522
<title>alloc_word_desc (2 samples, 0.07%)</title><rect x="790.6" y="305" width="0.7" height="15.0" fill="rgb(227,112,8)" rx="2" ry="2" />
4523
<text text-anchor="" x="793.60" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4524
</g>
4525
<g class="func_g" onmouseover="s('_IO_file_sync@@GLIBC_2.2.5 (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4526
<title>_IO_file_sync@@GLIBC_2.2.5 (3 samples, 0.10%)</title><rect x="263.6" y="385" width="1.1" height="15.0" fill="rgb(248,92,54)" rx="2" ry="2" />
4527
<text text-anchor="" x="266.64" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4528
</g>
4529
<g class="func_g" onmouseover="s('vfs_fstatat (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4530
<title>vfs_fstatat (2 samples, 0.07%)</title><rect x="156.7" y="481" width="0.7" height="15.0" fill="rgb(226,195,31)" rx="2" ry="2" />
4531
<text text-anchor="" x="159.68" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4532
</g>
4533
<g class="func_g" onmouseover="s('dequote_list (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4534
<title>dequote_list (1 samples, 0.03%)</title><rect x="834.6" y="337" width="0.4" height="15.0" fill="rgb(254,117,27)" rx="2" ry="2" />
4535
<text text-anchor="" x="837.60" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4536
</g>
4537
<g class="func_g" onmouseover="s('complete_walk (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4538
<title>complete_walk (2 samples, 0.07%)</title><rect x="563.4" y="225" width="0.7" height="15.0" fill="rgb(241,109,9)" rx="2" ry="2" />
4539
<text text-anchor="" x="566.43" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4540
</g>
4541
<g class="func_g" onmouseover="s('create_page_buffers (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4542
<title>create_page_buffers (1 samples, 0.03%)</title><rect x="46.1" y="369" width="0.4" height="15.0" fill="rgb(221,99,20)" rx="2" ry="2" />
4543
<text text-anchor="" x="49.13" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4544
</g>
4545
<g class="func_g" onmouseover="s('internal_free (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4546
<title>internal_free (3 samples, 0.10%)</title><rect x="717.3" y="305" width="1.0" height="15.0" fill="rgb(224,83,51)" rx="2" ry="2" />
4547
<text text-anchor="" x="720.26" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4548
</g>
4549
<g class="func_g" onmouseover="s('mark_page_accessed (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4550
<title>mark_page_accessed (3 samples, 0.10%)</title><rect x="83.7" y="401" width="1.1" height="15.0" fill="rgb(217,176,41)" rx="2" ry="2" />
4551
<text text-anchor="" x="86.70" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4552
</g>
4553
<g class="func_g" onmouseover="s('sh_xmalloc (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
4554
<title>sh_xmalloc (18 samples, 0.61%)</title><rect x="791.3" y="305" width="6.5" height="15.0" fill="rgb(220,165,35)" rx="2" ry="2" />
4555
<text text-anchor="" x="794.32" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4556
</g>
4557
<g class="func_g" onmouseover="s('sh_free (18 samples, 0.61%)')" onmouseout="c()" onclick="zoom(this)">
4558
<title>sh_free (18 samples, 0.61%)</title><rect x="981.3" y="289" width="6.4" height="15.0" fill="rgb(207,228,8)" rx="2" ry="2" />
4559
<text text-anchor="" x="984.28" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4560
</g>
4561
<g class="func_g" onmouseover="s('__xstat64 (145 samples, 4.89%)')" onmouseout="c()" onclick="zoom(this)">
4562
<title>__xstat64 (145 samples, 4.89%)</title><rect x="724.8" y="257" width="51.8" height="15.0" fill="rgb(244,144,34)" rx="2" ry="2" />
4563
<text text-anchor="" x="727.78" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >__xst..</text>
4564
</g>
4565
<g class="func_g" onmouseover="s('__errno_location (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4566
<title>__errno_location (3 samples, 0.10%)</title><rect x="615.7" y="337" width="1.0" height="15.0" fill="rgb(230,99,3)" rx="2" ry="2" />
4567
<text text-anchor="" x="618.66" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4568
</g>
4569
<g class="func_g" onmouseover="s('unlock_buffer (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4570
<title>unlock_buffer (4 samples, 0.13%)</title><rect x="69.0" y="241" width="1.5" height="15.0" fill="rgb(222,43,40)" rx="2" ry="2" />
4571
<text text-anchor="" x="72.03" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4572
</g>
4573
<g class="func_g" onmouseover="s('_copy_to_user (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4574
<title>_copy_to_user (4 samples, 0.13%)</title><rect x="737.3" y="193" width="1.4" height="15.0" fill="rgb(219,145,20)" rx="2" ry="2" />
4575
<text text-anchor="" x="740.30" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4576
</g>
4577
<g class="func_g" onmouseover="s('__close_fd (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
4578
<title>__close_fd (8 samples, 0.27%)</title><rect x="393.9" y="273" width="2.8" height="15.0" fill="rgb(242,1,15)" rx="2" ry="2" />
4579
<text text-anchor="" x="396.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4580
</g>
4581
<g class="func_g" onmouseover="s('sys_fcntl (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
4582
<title>sys_fcntl (7 samples, 0.24%)</title><rect x="207.1" y="529" width="2.5" height="15.0" fill="rgb(225,142,47)" rx="2" ry="2" />
4583
<text text-anchor="" x="210.12" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4584
</g>
4585
<g class="func_g" onmouseover="s('internal_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4586
<title>internal_free (1 samples, 0.03%)</title><rect x="1038.2" y="353" width="0.3" height="15.0" fill="rgb(222,110,54)" rx="2" ry="2" />
4587
<text text-anchor="" x="1041.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4588
</g>
4589
<g class="func_g" onmouseover="s('generic_write_end (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4590
<title>generic_write_end (1 samples, 0.03%)</title><rect x="82.6" y="385" width="0.4" height="15.0" fill="rgb(226,146,9)" rx="2" ry="2" />
4591
<text text-anchor="" x="85.62" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4592
</g>
4593
<g class="func_g" onmouseover="s('sys_fcntl (12 samples, 0.40%)')" onmouseout="c()" onclick="zoom(this)">
4594
<title>sys_fcntl (12 samples, 0.40%)</title><rect x="324.1" y="305" width="4.3" height="15.0" fill="rgb(237,152,37)" rx="2" ry="2" />
4595
<text text-anchor="" x="327.10" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4596
</g>
4597
<g class="func_g" onmouseover="s('tracesys (161 samples, 5.43%)')" onmouseout="c()" onclick="zoom(this)">
4598
<title>tracesys (161 samples, 5.43%)</title><rect x="558.1" y="321" width="57.6" height="15.0" fill="rgb(224,15,43)" rx="2" ry="2" />
4599
<text text-anchor="" x="561.07" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >tracesys</text>
4600
</g>
4601
<g class="func_g" onmouseover="s('find_get_page (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
4602
<title>find_get_page (8 samples, 0.27%)</title><rect x="48.6" y="337" width="2.9" height="15.0" fill="rgb(208,128,23)" rx="2" ry="2" />
4603
<text text-anchor="" x="51.64" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4604
</g>
4605
<g class="func_g" onmouseover="s('bit_waitqueue (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4606
<title>bit_waitqueue (2 samples, 0.07%)</title><rect x="69.7" y="209" width="0.8" height="15.0" fill="rgb(212,226,46)" rx="2" ry="2" />
4607
<text text-anchor="" x="72.74" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4608
</g>
4609
<g class="func_g" onmouseover="s('__ext4_journal_get_write_access (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
4610
<title>__ext4_journal_get_write_access (13 samples, 0.44%)</title><rect x="68.0" y="289" width="4.6" height="15.0" fill="rgb(214,95,3)" rx="2" ry="2" />
4611
<text text-anchor="" x="70.95" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4612
</g>
4613
<g class="func_g" onmouseover="s('security_file_alloc (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4614
<title>security_file_alloc (4 samples, 0.13%)</title><rect x="592.8" y="225" width="1.4" height="15.0" fill="rgb(229,14,0)" rx="2" ry="2" />
4615
<text text-anchor="" x="595.77" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4616
</g>
4617
<g class="func_g" onmouseover="s('dput (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4618
<title>dput (1 samples, 0.03%)</title><rect x="359.9" y="257" width="0.3" height="15.0" fill="rgb(236,84,15)" rx="2" ry="2" />
4619
<text text-anchor="" x="362.88" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4620
</g>
4621
<g class="func_g" onmouseover="s('__dup2 (25 samples, 0.84%)')" onmouseout="c()" onclick="zoom(this)">
4622
<title>__dup2 (25 samples, 0.84%)</title><rect x="220.4" y="545" width="8.9" height="15.0" fill="rgb(240,76,42)" rx="2" ry="2" />
4623
<text text-anchor="" x="223.35" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4624
</g>
4625
<g class="func_g" onmouseover="s('internal_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4626
<title>internal_free (1 samples, 0.03%)</title><rect x="909.4" y="273" width="0.3" height="15.0" fill="rgb(250,191,7)" rx="2" ry="2" />
4627
<text text-anchor="" x="912.37" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4628
</g>
4629
<g class="func_g" onmouseover="s('__percpu_counter_add (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4630
<title>__percpu_counter_add (1 samples, 0.03%)</title><rect x="572.4" y="193" width="0.3" height="15.0" fill="rgb(228,194,13)" rx="2" ry="2" />
4631
<text text-anchor="" x="575.38" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4632
</g>
4633
<g class="func_g" onmouseover="s('try_module_get (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4634
<title>try_module_get (1 samples, 0.03%)</title><rect x="583.8" y="209" width="0.4" height="15.0" fill="rgb(206,85,2)" rx="2" ry="2" />
4635
<text text-anchor="" x="586.82" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4636
</g>
4637
<g class="func_g" onmouseover="s('sub_append_string (31 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
4638
<title>sub_append_string (31 samples, 1.05%)</title><rect x="918.0" y="305" width="11.0" height="15.0" fill="rgb(210,88,29)" rx="2" ry="2" />
4639
<text text-anchor="" x="920.96" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4640
</g>
4641
<g class="func_g" onmouseover="s('copy_word_list (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4642
<title>copy_word_list (4 samples, 0.13%)</title><rect x="642.5" y="289" width="1.4" height="15.0" fill="rgb(243,142,37)" rx="2" ry="2" />
4643
<text text-anchor="" x="645.49" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4644
</g>
4645
<g class="func_g" onmouseover="s('dispose_word (22 samples, 0.74%)')" onmouseout="c()" onclick="zoom(this)">
4646
<title>dispose_word (22 samples, 0.74%)</title><rect x="837.1" y="321" width="7.9" height="15.0" fill="rgb(252,74,29)" rx="2" ry="2" />
4647
<text text-anchor="" x="840.11" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4648
</g>
4649
<g class="func_g" onmouseover="s('in_group_p (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4650
<title>in_group_p (3 samples, 0.10%)</title><rect x="753.0" y="49" width="1.1" height="15.0" fill="rgb(251,205,26)" rx="2" ry="2" />
4651
<text text-anchor="" x="756.04" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4652
</g>
4653
<g class="func_g" onmouseover="s('add_unwind_protect (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
4654
<title>add_unwind_protect (10 samples, 0.34%)</title><rect x="267.2" y="369" width="3.6" height="15.0" fill="rgb(252,8,31)" rx="2" ry="2" />
4655
<text text-anchor="" x="270.22" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4656
</g>
4657
<g class="func_g" onmouseover="s('__xstat64 (28 samples, 0.94%)')" onmouseout="c()" onclick="zoom(this)">
4658
<title>__xstat64 (28 samples, 0.94%)</title><rect x="1058.9" y="545" width="10.0" height="15.0" fill="rgb(251,140,47)" rx="2" ry="2" />
4659
<text text-anchor="" x="1061.91" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4660
</g>
4661
<g class="func_g" onmouseover="s('sys_close (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
4662
<title>sys_close (6 samples, 0.20%)</title><rect x="419.6" y="321" width="2.2" height="15.0" fill="rgb(219,35,29)" rx="2" ry="2" />
4663
<text text-anchor="" x="422.62" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4664
</g>
4665
<g class="func_g" onmouseover="s('context_tracking_user_enter (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4666
<title>context_tracking_user_enter (1 samples, 0.03%)</title><rect x="132.7" y="481" width="0.4" height="15.0" fill="rgb(217,77,8)" rx="2" ry="2" />
4667
<text text-anchor="" x="135.71" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4668
</g>
4669
<g class="func_g" onmouseover="s('getintmax (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4670
<title>getintmax (1 samples, 0.03%)</title><rect x="683.6" y="353" width="0.4" height="15.0" fill="rgb(210,110,44)" rx="2" ry="2" />
4671
<text text-anchor="" x="686.63" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4672
</g>
4673
<g class="func_g" onmouseover="s('dput (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4674
<title>dput (2 samples, 0.07%)</title><rect x="353.1" y="241" width="0.7" height="15.0" fill="rgb(205,66,8)" rx="2" ry="2" />
4675
<text text-anchor="" x="356.08" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4676
</g>
4677
<g class="func_g" onmouseover="s('__ext4_handle_dirty_metadata (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4678
<title>__ext4_handle_dirty_metadata (4 samples, 0.13%)</title><rect x="65.8" y="289" width="1.4" height="15.0" fill="rgb(227,2,10)" rx="2" ry="2" />
4679
<text text-anchor="" x="68.81" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4680
</g>
4681
<g class="func_g" onmouseover="s('do_dentry_open (26 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
4682
<title>do_dentry_open (26 samples, 0.88%)</title><rect x="574.2" y="209" width="9.3" height="15.0" fill="rgb(226,135,19)" rx="2" ry="2" />
4683
<text text-anchor="" x="577.16" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4684
</g>
4685
<g class="func_g" onmouseover="s('lockref_put_or_lock (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4686
<title>lockref_put_or_lock (1 samples, 0.03%)</title><rect x="744.1" y="145" width="0.4" height="15.0" fill="rgb(233,27,31)" rx="2" ry="2" />
4687
<text text-anchor="" x="747.09" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4688
</g>
4689
<g class="func_g" onmouseover="s('context_tracking_user_exit (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4690
<title>context_tracking_user_exit (1 samples, 0.03%)</title><rect x="322.3" y="305" width="0.4" height="15.0" fill="rgb(218,73,6)" rx="2" ry="2" />
4691
<text text-anchor="" x="325.31" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4692
</g>
4693
<g class="func_g" onmouseover="s('fget_raw_light (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4694
<title>fget_raw_light (5 samples, 0.17%)</title><rect x="506.2" y="305" width="1.8" height="15.0" fill="rgb(206,47,40)" rx="2" ry="2" />
4695
<text text-anchor="" x="509.19" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4696
</g>
4697
<g class="func_g" onmouseover="s('[unknown] (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4698
<title>[unknown] (2 samples, 0.07%)</title><rect x="676.8" y="353" width="0.8" height="15.0" fill="rgb(217,197,39)" rx="2" ry="2" />
4699
<text text-anchor="" x="679.84" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4700
</g>
4701
<g class="func_g" onmouseover="s('mnt_drop_write (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4702
<title>mnt_drop_write (2 samples, 0.07%)</title><rect x="570.9" y="225" width="0.8" height="15.0" fill="rgb(250,181,4)" rx="2" ry="2" />
4703
<text text-anchor="" x="573.94" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4704
</g>
4705
<g class="func_g" onmouseover="s('internal_malloc (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4706
<title>internal_malloc (3 samples, 0.10%)</title><rect x="310.9" y="273" width="1.0" height="15.0" fill="rgb(240,208,44)" rx="2" ry="2" />
4707
<text text-anchor="" x="313.86" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4708
</g>
4709
<g class="func_g" onmouseover="s('check_events (23 samples, 0.78%)')" onmouseout="c()" onclick="zoom(this)">
4710
<title>check_events (23 samples, 0.78%)</title><rect x="94.1" y="481" width="8.2" height="15.0" fill="rgb(238,141,52)" rx="2" ry="2" />
4711
<text text-anchor="" x="97.07" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4712
</g>
4713
<g class="func_g" onmouseover="s('sh_xmalloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4714
<title>sh_xmalloc (1 samples, 0.03%)</title><rect x="707.6" y="337" width="0.4" height="15.0" fill="rgb(213,91,8)" rx="2" ry="2" />
4715
<text text-anchor="" x="710.60" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4716
</g>
4717
<g class="func_g" onmouseover="s('map_id_up (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4718
<title>map_id_up (1 samples, 0.03%)</title><rect x="739.4" y="161" width="0.4" height="15.0" fill="rgb(237,172,54)" rx="2" ry="2" />
4719
<text text-anchor="" x="742.44" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4720
</g>
4721
<g class="func_g" onmouseover="s('start_this_handle (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4722
<title>start_this_handle (1 samples, 0.03%)</title><rect x="45.8" y="353" width="0.3" height="15.0" fill="rgb(252,78,45)" rx="2" ry="2" />
4723
<text text-anchor="" x="48.77" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4724
</g>
4725
<g class="func_g" onmouseover="s('check_events (16 samples, 0.54%)')" onmouseout="c()" onclick="zoom(this)">
4726
<title>check_events (16 samples, 0.54%)</title><rect x="396.7" y="273" width="5.7" height="15.0" fill="rgb(206,182,45)" rx="2" ry="2" />
4727
<text text-anchor="" x="399.72" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4728
</g>
4729
<g class="func_g" onmouseover="s('strncpy_from_user (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4730
<title>strncpy_from_user (1 samples, 0.03%)</title><rect x="151.0" y="417" width="0.3" height="15.0" fill="rgb(235,226,40)" rx="2" ry="2" />
4731
<text text-anchor="" x="153.95" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4732
</g>
4733
<g class="func_g" onmouseover="s('link_path_walk (13 samples, 0.44%)')" onmouseout="c()" onclick="zoom(this)">
4734
<title>link_path_walk (13 samples, 0.44%)</title><rect x="749.8" y="113" width="4.7" height="15.0" fill="rgb(230,101,17)" rx="2" ry="2" />
4735
<text text-anchor="" x="752.82" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4736
</g>
4737
<g class="func_g" onmouseover="s('__ext4_journal_stop (10 samples, 0.34%)')" onmouseout="c()" onclick="zoom(this)">
4738
<title>__ext4_journal_stop (10 samples, 0.34%)</title><rect x="52.9" y="369" width="3.6" height="15.0" fill="rgb(227,118,13)" rx="2" ry="2" />
4739
<text text-anchor="" x="55.93" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4740
</g>
4741
<g class="func_g" onmouseover="s('check_events (62 samples, 2.09%)')" onmouseout="c()" onclick="zoom(this)">
4742
<title>check_events (62 samples, 2.09%)</title><rect x="519.4" y="289" width="22.2" height="15.0" fill="rgb(240,75,32)" rx="2" ry="2" />
4743
<text text-anchor="" x="522.43" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >c..</text>
4744
</g>
4745
<g class="func_g" onmouseover="s('putname (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4746
<title>putname (5 samples, 0.17%)</title><rect x="761.6" y="145" width="1.8" height="15.0" fill="rgb(208,144,38)" rx="2" ry="2" />
4747
<text text-anchor="" x="764.62" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4748
</g>
4749
<g class="func_g" onmouseover="s('unwind_frame_discard_internal (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
4750
<title>unwind_frame_discard_internal (8 samples, 0.27%)</title><rect x="404.2" y="337" width="2.9" height="15.0" fill="rgb(242,183,13)" rx="2" ry="2" />
4751
<text text-anchor="" x="407.24" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4752
</g>
4753
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (31 samples, 1.05%)')" onmouseout="c()" onclick="zoom(this)">
4754
<title>xen_hypercall_xen_version (31 samples, 1.05%)</title><rect x="765.6" y="193" width="11.0" height="15.0" fill="rgb(246,206,47)" rx="2" ry="2" />
4755
<text text-anchor="" x="768.56" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4756
</g>
4757
<g class="func_g" onmouseover="s('memset (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4758
<title>memset (1 samples, 0.03%)</title><rect x="937.6" y="273" width="0.4" height="15.0" fill="rgb(254,174,5)" rx="2" ry="2" />
4759
<text text-anchor="" x="940.63" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4760
</g>
4761
<g class="func_g" onmouseover="s('check_events (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
4762
<title>check_events (15 samples, 0.51%)</title><rect x="552.7" y="289" width="5.4" height="15.0" fill="rgb(239,14,33)" rx="2" ry="2" />
4763
<text text-anchor="" x="555.70" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4764
</g>
4765
<g class="func_g" onmouseover="s('f_dupfd (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4766
<title>f_dupfd (1 samples, 0.03%)</title><rect x="505.8" y="305" width="0.4" height="15.0" fill="rgb(245,158,47)" rx="2" ry="2" />
4767
<text text-anchor="" x="508.84" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4768
</g>
4769
<g class="func_g" onmouseover="s('xen_save_fl_direct (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4770
<title>xen_save_fl_direct (1 samples, 0.03%)</title><rect x="418.9" y="305" width="0.4" height="15.0" fill="rgb(206,148,8)" rx="2" ry="2" />
4771
<text text-anchor="" x="421.90" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4772
</g>
4773
<g class="func_g" onmouseover="s('from_kuid (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4774
<title>from_kuid (2 samples, 0.07%)</title><rect x="77.3" y="305" width="0.7" height="15.0" fill="rgb(220,198,43)" rx="2" ry="2" />
4775
<text text-anchor="" x="80.26" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4776
</g>
4777
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (9 samples, 0.30%)')" onmouseout="c()" onclick="zoom(this)">
4778
<title>xen_hypercall_xen_version (9 samples, 0.30%)</title><rect x="436.8" y="289" width="3.2" height="15.0" fill="rgb(253,23,15)" rx="2" ry="2" />
4779
<text text-anchor="" x="439.79" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4780
</g>
4781
<g class="func_g" onmouseover="s('add_unwind_protect (7 samples, 0.24%)')" onmouseout="c()" onclick="zoom(this)">
4782
<title>add_unwind_protect (7 samples, 0.24%)</title><rect x="231.4" y="417" width="2.5" height="15.0" fill="rgb(222,148,31)" rx="2" ry="2" />
4783
<text text-anchor="" x="234.44" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4784
</g>
4785
<g class="func_g" onmouseover="s('__GI___libc_fcntl (62 samples, 2.09%)')" onmouseout="c()" onclick="zoom(this)">
4786
<title>__GI___libc_fcntl (62 samples, 2.09%)</title><rect x="429.6" y="353" width="22.2" height="15.0" fill="rgb(219,219,29)" rx="2" ry="2" />
4787
<text text-anchor="" x="432.64" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >_..</text>
4788
</g>
4789
<g class="func_g" onmouseover="s('sh_xmalloc (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
4790
<title>sh_xmalloc (8 samples, 0.27%)</title><rect x="621.0" y="305" width="2.9" height="15.0" fill="rgb(206,120,41)" rx="2" ry="2" />
4791
<text text-anchor="" x="624.03" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4792
</g>
4793
<g class="func_g" onmouseover="s('xen_restore_fl_direct (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4794
<title>xen_restore_fl_direct (2 samples, 0.07%)</title><rect x="321.2" y="289" width="0.8" height="15.0" fill="rgb(248,69,14)" rx="2" ry="2" />
4795
<text text-anchor="" x="324.24" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4796
</g>
4797
<g class="func_g" onmouseover="s('__sb_start_write (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4798
<title>__sb_start_write (2 samples, 0.07%)</title><rect x="30.4" y="465" width="0.7" height="15.0" fill="rgb(240,88,37)" rx="2" ry="2" />
4799
<text text-anchor="" x="33.39" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4800
</g>
4801
<g class="func_g" onmouseover="s('string_list_internal (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4802
<title>string_list_internal (3 samples, 0.10%)</title><rect x="663.2" y="305" width="1.1" height="15.0" fill="rgb(254,211,45)" rx="2" ry="2" />
4803
<text text-anchor="" x="666.24" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4804
</g>
4805
<g class="func_g" onmouseover="s('tracesys (32 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
4806
<title>tracesys (32 samples, 1.08%)</title><rect x="440.4" y="337" width="11.4" height="15.0" fill="rgb(245,206,35)" rx="2" ry="2" />
4807
<text text-anchor="" x="443.37" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4808
</g>
4809
<g class="func_g" onmouseover="s('bind_variable (32 samples, 1.08%)')" onmouseout="c()" onclick="zoom(this)">
4810
<title>bind_variable (32 samples, 1.08%)</title><rect x="270.8" y="369" width="11.4" height="15.0" fill="rgb(211,187,8)" rx="2" ry="2" />
4811
<text text-anchor="" x="273.80" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4812
</g>
4813
<g class="func_g" onmouseover="s('add_unwind_protect (8 samples, 0.27%)')" onmouseout="c()" onclick="zoom(this)">
4814
<title>add_unwind_protect (8 samples, 0.27%)</title><rect x="233.9" y="401" width="2.9" height="15.0" fill="rgb(229,16,51)" rx="2" ry="2" />
4815
<text text-anchor="" x="236.95" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4816
</g>
4817
<g class="func_g" onmouseover="s('is_basic (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4818
<title>is_basic (1 samples, 0.03%)</title><rect x="639.6" y="273" width="0.4" height="15.0" fill="rgb(253,218,29)" rx="2" ry="2" />
4819
<text text-anchor="" x="642.63" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4820
</g>
4821
<g class="func_g" onmouseover="s('do_dup2 (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
4822
<title>do_dup2 (15 samples, 0.51%)</title><rect x="365.6" y="289" width="5.4" height="15.0" fill="rgb(240,183,37)" rx="2" ry="2" />
4823
<text text-anchor="" x="368.60" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4824
</g>
4825
<g class="func_g" onmouseover="s('__block_commit_write.isra.21 (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4826
<title>__block_commit_write.isra.21 (2 samples, 0.07%)</title><rect x="57.9" y="353" width="0.8" height="15.0" fill="rgb(249,3,46)" rx="2" ry="2" />
4827
<text text-anchor="" x="60.94" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4828
</g>
4829
<g class="func_g" onmouseover="s('do_dup2 (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
4830
<title>do_dup2 (6 samples, 0.20%)</title><rect x="464.0" y="305" width="2.1" height="15.0" fill="rgb(215,46,53)" rx="2" ry="2" />
4831
<text text-anchor="" x="466.98" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4832
</g>
4833
<g class="func_g" onmouseover="s('malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4834
<title>malloc (1 samples, 0.03%)</title><rect x="1069.6" y="545" width="0.4" height="15.0" fill="rgb(248,159,51)" rx="2" ry="2" />
4835
<text text-anchor="" x="1072.64" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4836
</g>
4837
<g class="func_g" onmouseover="s('without_interrupts (15 samples, 0.51%)')" onmouseout="c()" onclick="zoom(this)">
4838
<title>without_interrupts (15 samples, 0.51%)</title><rect x="284.4" y="369" width="5.4" height="15.0" fill="rgb(207,123,40)" rx="2" ry="2" />
4839
<text text-anchor="" x="287.39" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4840
</g>
4841
<g class="func_g" onmouseover="s('internal_malloc (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4842
<title>internal_malloc (2 samples, 0.07%)</title><rect x="309.4" y="289" width="0.7" height="15.0" fill="rgb(241,217,23)" rx="2" ry="2" />
4843
<text text-anchor="" x="312.43" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4844
</g>
4845
<g class="func_g" onmouseover="s('internal_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4846
<title>internal_free (1 samples, 0.03%)</title><rect x="312.3" y="305" width="0.4" height="15.0" fill="rgb(215,23,48)" rx="2" ry="2" />
4847
<text text-anchor="" x="315.29" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4848
</g>
4849
<g class="func_g" onmouseover="s('execute_while_or_until (2,310 samples, 77.96%)')" onmouseout="c()" onclick="zoom(this)">
4850
<title>execute_while_or_until (2,310 samples, 77.96%)</title><rect x="229.7" y="449" width="826.3" height="15.0" fill="rgb(212,162,48)" rx="2" ry="2" />
4851
<text text-anchor="" x="232.66" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  >execute_while_or_until</text>
4852
</g>
4853
<g class="func_g" onmouseover="s('sh_xmalloc (6 samples, 0.20%)')" onmouseout="c()" onclick="zoom(this)">
4854
<title>sh_xmalloc (6 samples, 0.20%)</title><rect x="1038.5" y="385" width="2.2" height="15.0" fill="rgb(210,136,51)" rx="2" ry="2" />
4855
<text text-anchor="" x="1041.52" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4856
</g>
4857
<g class="func_g" onmouseover="s('copy_redirects (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4858
<title>copy_redirects (1 samples, 0.03%)</title><rect x="624.6" y="337" width="0.4" height="15.0" fill="rgb(249,71,29)" rx="2" ry="2" />
4859
<text text-anchor="" x="627.61" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4860
</g>
4861
<g class="func_g" onmouseover="s('fmtumax (4 samples, 0.13%)')" onmouseout="c()" onclick="zoom(this)">
4862
<title>fmtumax (4 samples, 0.13%)</title><rect x="902.6" y="225" width="1.4" height="15.0" fill="rgb(240,143,52)" rx="2" ry="2" />
4863
<text text-anchor="" x="905.58" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4864
</g>
4865
<g class="func_g" onmouseover="s('path_init (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4866
<title>path_init (1 samples, 0.03%)</title><rect x="599.6" y="241" width="0.3" height="15.0" fill="rgb(251,131,22)" rx="2" ry="2" />
4867
<text text-anchor="" x="602.56" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4868
</g>
4869
<g class="func_g" onmouseover="s('make_bare_word (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4870
<title>make_bare_word (2 samples, 0.07%)</title><rect x="653.2" y="257" width="0.7" height="15.0" fill="rgb(217,161,16)" rx="2" ry="2" />
4871
<text text-anchor="" x="656.23" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4872
</g>
4873
<g class="func_g" onmouseover="s('sh_free (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4874
<title>sh_free (1 samples, 0.03%)</title><rect x="909.4" y="289" width="0.3" height="15.0" fill="rgb(251,180,9)" rx="2" ry="2" />
4875
<text text-anchor="" x="912.37" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4876
</g>
4877
<g class="func_g" onmouseover="s('syscall_trace_enter (20 samples, 0.67%)')" onmouseout="c()" onclick="zoom(this)">
4878
<title>syscall_trace_enter (20 samples, 0.67%)</title><rect x="608.5" y="305" width="7.2" height="15.0" fill="rgb(222,72,28)" rx="2" ry="2" />
4879
<text text-anchor="" x="611.51" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4880
</g>
4881
<g class="func_g" onmouseover="s('ext4_mark_inode_dirty (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4882
<title>ext4_mark_inode_dirty (1 samples, 0.03%)</title><rect x="78.3" y="337" width="0.4" height="15.0" fill="rgb(243,159,3)" rx="2" ry="2" />
4883
<text text-anchor="" x="81.33" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4884
</g>
4885
<g class="func_g" onmouseover="s('internal_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4886
<title>internal_malloc (1 samples, 0.03%)</title><rect x="908.7" y="241" width="0.3" height="15.0" fill="rgb(226,193,23)" rx="2" ry="2" />
4887
<text text-anchor="" x="911.66" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4888
</g>
4889
<g class="func_g" onmouseover="s('dquot_file_open (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4890
<title>dquot_file_open (1 samples, 0.03%)</title><rect x="575.2" y="193" width="0.4" height="15.0" fill="rgb(215,160,53)" rx="2" ry="2" />
4891
<text text-anchor="" x="578.24" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4892
</g>
4893
<g class="func_g" onmouseover="s('strlen (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4894
<title>strlen (3 samples, 0.10%)</title><rect x="990.9" y="337" width="1.1" height="15.0" fill="rgb(221,225,31)" rx="2" ry="2" />
4895
<text text-anchor="" x="993.94" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4896
</g>
4897
<g class="func_g" onmouseover="s('kick_process (3 samples, 0.10%)')" onmouseout="c()" onclick="zoom(this)">
4898
<title>kick_process (3 samples, 0.10%)</title><rect x="369.2" y="241" width="1.0" height="15.0" fill="rgb(206,44,17)" rx="2" ry="2" />
4899
<text text-anchor="" x="372.18" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4900
</g>
4901
<g class="func_g" onmouseover="s('cp_new_stat (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4902
<title>cp_new_stat (1 samples, 0.03%)</title><rect x="156.3" y="481" width="0.4" height="15.0" fill="rgb(253,114,31)" rx="2" ry="2" />
4903
<text text-anchor="" x="159.32" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4904
</g>
4905
<g class="func_g" onmouseover="s('syscall_trace_leave (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4906
<title>syscall_trace_leave (1 samples, 0.03%)</title><rect x="133.4" y="513" width="0.4" height="15.0" fill="rgb(243,25,31)" rx="2" ry="2" />
4907
<text text-anchor="" x="136.42" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4908
</g>
4909
<g class="func_g" onmouseover="s('sh_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4910
<title>sh_malloc (1 samples, 0.03%)</title><rect x="664.0" y="273" width="0.3" height="15.0" fill="rgb(251,204,19)" rx="2" ry="2" />
4911
<text text-anchor="" x="666.96" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4912
</g>
4913
<g class="func_g" onmouseover="s('sh_malloc (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4914
<title>sh_malloc (1 samples, 0.03%)</title><rect x="908.7" y="257" width="0.3" height="15.0" fill="rgb(220,32,45)" rx="2" ry="2" />
4915
<text text-anchor="" x="911.66" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4916
</g>
4917
<g class="func_g" onmouseover="s('tzset_internal (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4918
<title>tzset_internal (5 samples, 0.17%)</title><rect x="168.5" y="529" width="1.8" height="15.0" fill="rgb(218,84,42)" rx="2" ry="2" />
4919
<text text-anchor="" x="171.48" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4920
</g>
4921
<g class="func_g" onmouseover="s('xen_hypercall_xen_version (26 samples, 0.88%)')" onmouseout="c()" onclick="zoom(this)">
4922
<title>xen_hypercall_xen_version (26 samples, 0.88%)</title><rect x="1058.9" y="513" width="9.3" height="15.0" fill="rgb(242,54,10)" rx="2" ry="2" />
4923
<text text-anchor="" x="1061.91" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4924
</g>
4925
<g class="func_g" onmouseover="s('d_lookup (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4926
<title>d_lookup (1 samples, 0.03%)</title><rect x="564.1" y="225" width="0.4" height="15.0" fill="rgb(216,33,32)" rx="2" ry="2" />
4927
<text text-anchor="" x="567.15" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4928
</g>
4929
<g class="func_g" onmouseover="s('bind_variable (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4930
<title>bind_variable (1 samples, 0.03%)</title><rect x="282.6" y="385" width="0.4" height="15.0" fill="rgb(245,215,14)" rx="2" ry="2" />
4931
<text text-anchor="" x="285.60" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4932
</g>
4933
<g class="func_g" onmouseover="s('check_events (2 samples, 0.07%)')" onmouseout="c()" onclick="zoom(this)">
4934
<title>check_events (2 samples, 0.07%)</title><rect x="352.4" y="225" width="0.7" height="15.0" fill="rgb(245,114,45)" rx="2" ry="2" />
4935
<text text-anchor="" x="355.36" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4936
</g>
4937
<g class="func_g" onmouseover="s('hash_string (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4938
<title>hash_string (1 samples, 0.03%)</title><rect x="1027.8" y="273" width="0.3" height="15.0" fill="rgb(214,53,7)" rx="2" ry="2" />
4939
<text text-anchor="" x="1030.79" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4940
</g>
4941
<g class="func_g" onmouseover="s('sh_xfree (1 samples, 0.03%)')" onmouseout="c()" onclick="zoom(this)">
4942
<title>sh_xfree (1 samples, 0.03%)</title><rect x="403.2" y="353" width="0.3" height="15.0" fill="rgb(228,35,0)" rx="2" ry="2" />
4943
<text text-anchor="" x="406.16" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4944
</g>
4945
<g class="func_g" onmouseover="s('__memcpy_sse2_unaligned (5 samples, 0.17%)')" onmouseout="c()" onclick="zoom(this)">
4946
<title>__memcpy_sse2_unaligned (5 samples, 0.17%)</title><rect x="1006.7" y="337" width="1.8" height="15.0" fill="rgb(230,9,24)" rx="2" ry="2" />
4947
<text text-anchor="" x="1009.68" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)"  ></text>
4948
</g>
4949
</svg>
(1-1/2)